diff options
| author | Darkelarious <darkelarious@333networks.com> | 2021-09-05 20:35:44 +0200 |
|---|---|---|
| committer | Darkelarious <darkelarious@333networks.com> | 2021-09-05 20:35:44 +0200 |
| commit | 3470e2605595bf52b3ba07bf0b3886e5a61d3e06 (patch) | |
| tree | 36e7fcf008183b464aca47b7eeba0953dd36feef | |
| download | WebInterface-Perl-3470e2605595bf52b3ba07bf0b3886e5a61d3e06.tar.gz WebInterface-Perl-3470e2605595bf52b3ba07bf0b3886e5a61d3e06.zip | |
first version of masterinterface
284 files changed, 27430 insertions, 0 deletions
diff --git a/COPYING.md b/COPYING.md new file mode 100755 index 0000000..a752001 --- /dev/null +++ b/COPYING.md @@ -0,0 +1,25 @@ +# Web Interface for MasterServer-Qt5 +--- + +## COPYING +Copyright (c) 2005-2021 Darkelarious & 333networks.com + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/Changelog b/Changelog new file mode 100755 index 0000000..d327fa9 --- /dev/null +++ b/Changelog @@ -0,0 +1,5 @@ +Changelog: + +23-05-2021: first version of masterinterface +* initial working version of webinterface compatible with MasterServer-Qt5 +* descriptive readme with user instructions diff --git a/README.md b/README.md new file mode 100755 index 0000000..5e8023a --- /dev/null +++ b/README.md @@ -0,0 +1,90 @@ +## Web Interface for MasterServer-Qt5 +Web interface in Perl for MasterServer-Qt5. + +## DESCRIPTION +This repository contains software for a web interface to display information obtained by the 333networks MasterServer for the support of various legacy games. + +## AUTHOR +* Darkelarious +* darkelarious@333networks.com + +## REQUIREMENTS +* MasterServer-Qt5 (code.333networks.com) +* Apache/httpd +* Perl 5.10 or above +* The following CPAN modules: + * DBI + * DBD::SQLite + * TUWF (http://dev.yorhel.nl/tuwf) + +## INSTALL +This repository consists of Perl modules and is run by a http deamon. First, the MasterServer-Qt5 repository should be installed and configured in order to run this web interface. This web interface requires access to the database generated and updated by MasterServer-Qt5. + +## CONFIGURATION +The 333networks masterserver interface comes with options. These options are found in configuration file `data/settings.pl`. First provide the site name and URL. These are used for the title bar and links. +``` + # site (for sharing options) + site_url => "http://master.333networks.com", + site_name => "333networks", + email => 'master@333networks.com', +``` + +Configure the path to the database that the masterserver uses. The location of this database is found in the documentation of `MasterServer-Qt5`. +``` + # database connection + db_login => ["dbi:SQLite:dbname=/server/masterserver/qt5/data/masterserver.db",'',''], +``` + +When more than one website style exists, it can be selected in the following option. If no additional style files are (manually) installed, do not alter this option. +``` + # display + style => "classic2", +``` + +By default, only servers that have updated in the last half hour are shown. To show servers for a shorter or longer period of time after the last update increase or decrease the value of the option `window_time`. This value is provided in seconds (3600 seconds is 1 hour). +``` + # do not display servers older than [seconds] + window_time => 1800, +``` + +## Apache settings +``` +LoadModule rewrite_module modules/mod_rewrite.so +AddHandler cgi-script .cgi .pl +``` + +Update the vhost configuration for the Web Interface to match your repository folder path: + +``` +# +# Master Web Interface +# +<VirtualHost *:80> +ServerAdmin master@yourdomain.com +ServerName master.yourdomain.com + +DocumentRoot "/path/to/WebInterface-Perl-MS-Qt5/s" +AddHandler cgi-script .pl + +RewriteEngine On +RewriteCond "%{DOCUMENT_ROOT}/%{REQUEST_URI}" !-s +RewriteRule ^/ /masterinterface.pl + +ErrorLog /path/to/WebInterface-Perl-MS-Qt5/log/Error.log +CustomLog /path/to/WebInterface-Perl-MS-Qt5/log/Access.log combined + +<Directory "/path/to/WebInterface-Perl-MS-Qt5/s"> + Options +FollowSymLinks +ExecCGI + AllowOverride None + Require all granted +</Directory> +</VirtualHost> +``` + +## KNOWN ISSUES +There are a few known issues that will be resolved in future versions. The following issues are listed and do not need to be reported. +* No additional styling available for third parties. Will come when the rest of the website is stable. +* Country name/flag is always "Earth". There is a third party script that updates these in the database, which may or may not be released in the future. + +## COPYING +See COPYING file diff --git a/data/settings.pl b/data/settings.pl new file mode 100755 index 0000000..20f1db5 --- /dev/null +++ b/data/settings.pl @@ -0,0 +1,20 @@ +package MasterWebInterface; + +our %S = (%S, # retain options from parent script + + # site info + site_url => "http://master.333networks.com", + site_name => "333networks", + email => 'master@333networks.com', + + # database connection + db_login => ["dbi:SQLite:dbname=/path/to/your/data/masterserver.db",'',''], + + # display + style => "default", + + # do not display servers older than [seconds] + window_time => 1800, +); + +1; diff --git a/lib/MasterWebInterface/Database/Games.pm b/lib/MasterWebInterface/Database/Games.pm new file mode 100755 index 0000000..02b6ad9 --- /dev/null +++ b/lib/MasterWebInterface/Database/Games.pm @@ -0,0 +1,61 @@ +package MasterWebInterface::Database::Games; +use strict; +use warnings; +use Exporter 'import'; +our @EXPORT = qw| dbGameListGet dbGetGameDesc |; + +# Get list of games +sub dbGameListGet +{ + my $s = shift; + my %o = ( + page => 1, + results => 50, + sort => '', + @_ + ); + + # search criteria + my %where = ( + $o{search} ? ('lower(label) LIKE lower(?)' => "%$o{search}%") : (), + !$o{all} ? ( 'num_total > ?' => 0) : (), + ); + + # what to get from db + my @select = ( + qw| label gamename num_direct num_total | + ); + + # sort order + my $order = sprintf { + label => 'label %s', + gamename => 'gamename %s', + num_total => 'num_total %s', + }->{ $o{sort}||'num_total' }, $o{reverse} ? 'DESC' : 'ASC'; + + # query + my($r, $np) = $s->dbPage( + \%o, + q| SELECT !s FROM gameinfo !W ORDER BY !s|, + join(', ', @select), + \%where, + $order + ); + + # page numbering + my $p = $s->dbAll( + q| SELECT COUNT(*) AS num FROM gameinfo !W|, + \%where, + )->[0]{num}; + + return wantarray ? ($r, $np, $p) : $r; +} + +# Get description for a game by gamename +sub dbGetGameDesc +{ + my ($self, $gn) = @_; + return $self->dbAll("SELECT label FROM gameinfo WHERE gamename = ?", $gn)->[0]{label}; +} + +1; diff --git a/lib/MasterWebInterface/Database/ServerInfo.pm b/lib/MasterWebInterface/Database/ServerInfo.pm new file mode 100755 index 0000000..6aeddd4 --- /dev/null +++ b/lib/MasterWebInterface/Database/ServerInfo.pm @@ -0,0 +1,40 @@ +package MasterWebInterface::Database::ServerInfo; +use strict; +use warnings; +use Exporter 'import'; +our @EXPORT = qw| dbGetServerInfo dbGetPlayerInfoList |; + +## get server details for list of servers (gamename/all/recent) +sub dbGetServerInfo +{ + my $s = shift; + my %o = @_; + + my %where = ( + $o{ip} ? ( 'ip = ?' => $o{ip}) : (), + $o{port} ? ( 'queryport = ?' => $o{port}) : (), + $o{hostport} ? ( 'hostport = ?' => $o{hostport}) : (), + ); + + return $s->dbAll( q|SELECT * FROM serverlist + LEFT JOIN serverinfo ON serverlist.id = serverinfo.sid + !W LIMIT 1|, \%where ); +} + + +## get player details for one particular server +sub dbGetPlayerInfoList +{ + my $s = shift; + my %o = (sort => '', @_ ); + + my %where = ( + $o{sid} ? ( 'sid = ?' => $o{sid}) : (), + ); + + my @select = ( qw| name team frags mesh skin face ping | ); + + return $s->dbAll( q|SELECT * FROM playerinfo !W ORDER BY team, name|, \%where ); +} + +1; diff --git a/lib/MasterWebInterface/Database/Servers.pm b/lib/MasterWebInterface/Database/Servers.pm new file mode 100755 index 0000000..d02bcd7 --- /dev/null +++ b/lib/MasterWebInterface/Database/Servers.pm @@ -0,0 +1,61 @@ +package MasterWebInterface::Database::Servers; +use strict; +use warnings; +use Exporter 'import'; +our @EXPORT = qw| dbServerListGet |; + +################################################################################ +## get the serverlist +################################################################################ +sub dbServerListGet { + my $s = shift; + my %o = ( page => 1, + results => 50, + gamename => "all", + @_ + ); + + my %where = ( + # gamename and char are "all" or value + $o{gamename} !~ /all/ ? ('serverlist.gamename = ?' => $o{gamename}) : (), + $o{nolist} ? ('serverlist.gamename <> ?' => $o{nolist}) : (), + $o{search} ? ('LOWER(hostname) LIKE LOWER(?)' => "%$o{search}%") : (), + $o{gametype} ? ('LOWER(gametype) LIKE LOWER(?)' => $o{gametype}) : (), + $o{updated} ? ('dt_updated > ?' => (time-$o{updated})) : (), + ('hostport >= ?' => 0), # sanity check + ); + + my @select = ( qw| id ip hostport hostname serverlist.gamename country numplayers maxplayers maptitle mapname gametype dt_added label dt_updated| ); + + my $order = sprintf { + hostname => 'hostname %s', + gamename => 'serverlist.gamename %s, gametype', + country => 'country %s', + dt_added => 'dt_added %s', + gametype => 'gametype %s, mapname', + numplayers => 'numplayers %s, maxplayers', + maptitle => 'maptitle %s', + mapname => 'mapname %s', + }->{ $o{sort} // 'dt_added' }, $o{reverse} ? 'DESC' : 'ASC'; + + my($r, $np) = $s->dbPage(\%o, q| + SELECT !s FROM serverlist + LEFT JOIN serverinfo ON serverlist.id = serverinfo.sid + LEFT JOIN gameinfo ON serverlist.gamename = gameinfo.gamename + !W + ORDER BY !s |, + join(', ', @select), \%where, $order + ); + + my $p = $s->dbAll( q| + SELECT COUNT(*) AS num + FROM serverlist + LEFT JOIN serverinfo ON serverlist.id = serverinfo.sid + !W|, \%where, + )->[0]{num}; + return wantarray ? ($r, $np, $p) : $r; + +} + + +1; diff --git a/lib/MasterWebInterface/Handler/ErrorPages.pm b/lib/MasterWebInterface/Handler/ErrorPages.pm new file mode 100755 index 0000000..dc386fc --- /dev/null +++ b/lib/MasterWebInterface/Handler/ErrorPages.pm @@ -0,0 +1,72 @@ +package MasterWebInterface::Handler::ErrorPages; +use strict; +use TUWF ':html'; + +# handle 404 and 500 +TUWF::set( + error_404_handler => \&handle404, + error_500_handler => \&handle500, +); + +TUWF::register( + qr{500} => sub {die "Process died on purpose, but with a lot of text to test if the whole error is correctly displayed on the screen when debug information is enabled in the website configuration, "}, +); + +sub handle404 +{ + my $self = shift; + + $self->resStatus(404); + $self->htmlHeader(title => '404 - Not Found'); + $self->htmlSearchBox(title => "Servers", action => "/s", sel => 's', fq => ''); + + div class => "mainbox warning"; + div class => "header"; + h1 'Page not found'; + p "Error 404: the page could not be found."; + end; + + div class => "description"; + p; + txt 'It seems the page you were looking for does not exist,'; + br; + txt 'perhaps our search function may yield results?'; + end; + end; + end; + $self->htmlFooter; +} + +sub handle500 +{ + my($self, $error) = @_; + + $self->resStatus(500); + $self->htmlHeader(title => '500 - Internal Server Error'); + $self->htmlSearchBox(title => "Servers", action => "/s", sel => 's', fq => ''); + + div class => "mainbox warning"; + div class => "header"; + h1 'Internal Server Error'; + p "Error 500: loading this page caused an internal error."; + end; + + div class => "description"; + p; + txt 'Something went wrong on our side. The problem was logged '; + br; + txt 'and will be fixed shortly. Please try again later.'; + end; + end; + + if ($self->debug) + { + div class => "code warning"; + txt $error; + end; + } + end; + $self->htmlFooter; +} + +1; diff --git a/lib/MasterWebInterface/Handler/Games.pm b/lib/MasterWebInterface/Handler/Games.pm new file mode 100755 index 0000000..bf50655 --- /dev/null +++ b/lib/MasterWebInterface/Handler/Games.pm @@ -0,0 +1,142 @@ +package MasterWebInterface::Handler::Games; + +use strict; +use utf8; + +use TUWF ':html'; +use Exporter 'import'; + +TUWF::register( + qr{g} => \&gamelist, + qr{g(|/all)} => \&gamelist, +); + +################################################################################ +# LIST GAMES +# Generate a list of games in the database (arg: gamename) +################################################################################ +sub gamelist +{ + my ($self, $all) = @_; + + # process additional query information, such as order, sorting, page, etc + my $f = $self->formValidate( + { + get => 's', + required => 0, + default => 'num_total', + enum => [ qw| label gamename num_total | ] + }, + { + get => 'o', + required => 0, + default => 'd', + enum => [ 'a','d' ] + }, + { + get => 'p', + required => 0, + default => 1, + template => 'page' + }, + { + get => 'q', + required => 0, + default => '', + maxlength => 30 + }, + { + get => 'r', + required => 0, + default => 50, + template => 'page' + } + ); + return $self->resNotFound if $f->{_err}; + + # load server list from database + my($list, $np, $p) = $self->dbGameListGet( + sort => $f->{s}, + reverse => $f->{o} eq 'd', + page => $f->{p}, + search => $f->{q}, + results => $f->{r}, + all => $all, + + ); + + # + # page + # + + $self->htmlHeader(title => "Browse Games"); + $self->htmlSearchBox(title => "Games", action => "/g/all", sel => 'g', fq => $f->{q}); + + # + # game list + # + + # table url (full table or only active servers?) + my $url = ($all) ? "/g/all" : "/g"; + $self->htmlBrowse( + items => $list, + options => $f, + total => $p, + nextpage => [$p,$f->{r}], + pageurl => "$url?o=$f->{o};s=$f->{s};q=$f->{q}", + sorturl => "$url?q=$f->{q}", + class => "gamelist", + (! $np and ! $all or $p <= 0) ? (footer => sub + { + Tr $p % $f->{r} ? (class => 'odd') : (); + td colspan => 3, class => 'tc2'; + txt "No (more) games with active servers. Browse "; + a class => "link", href => "/g/all", "all game titles"; + txt " instead."; + end; + end 'tr'; + }) : (), + header => [ + ['Release Title', 'label' ], + ['Game', ''], + ['Servers', 'num_total' ], + ], + row => sub + { + my($s, $n, $l) = @_; + + my $gn = $l->{gamename} // ""; + my $lb = $l->{label} // ""; + + + Tr $n % 2 ? (class => 's odd') : (class => 's'); + + # label + link + td class => "tc1"; + a href => "/s/$gn", $lb; + end; + + # icon or gamename + if (-e "$self->{root}/s/icon32/$gn.png" ) + { + td class => "tc2 icon", + style => "background-image: url(/icon32/$gn.png);", + title => $gn, + ''; + } + else + { + td $gn; + } + + # number of beacons / servers + td title => ($l->{num_direct} // 0) . "/" . ($l->{num_total} // 0), + $l->{num_total} // 0; + end; + }, + ); + + $self->htmlFooter; +} + +1; diff --git a/lib/MasterWebInterface/Handler/Json/ApiDoc.pm b/lib/MasterWebInterface/Handler/Json/ApiDoc.pm new file mode 100755 index 0000000..bbfe620 --- /dev/null +++ b/lib/MasterWebInterface/Handler/Json/ApiDoc.pm @@ -0,0 +1,437 @@ +package MasterWebInterface::Handler::Json::ApiDoc; +use strict; +use TUWF ':html'; +use Exporter 'import'; +use JSON; + +TUWF::register( + qr{json} => \&json_docs, +); + +################################################################################ +# Json Documentation +# Documentation about the Json API +################################################################################ +sub json_docs +{ + my $self = shift; + $self->htmlHeader(title => "Json API"); + $self->htmlSearchBox(title => "Servers", action => "/s", sel => 'j', fq => ''); + + div class => "mainbox apidoc"; + div class => "header"; + h1 "Json API"; + p "333networks has a Json API. With this API, it is possible to obtain server lists and specific server information for your own banners, ubrowser or other application."; + end; + + # + # ToS + # + + h2 "Permission & Terms of Use"; + p; + txt "The following permissions and conditions are in effect for making use of the Json API: "; + end; + + p "You are allowed to access our API with any application and/or script, self-made or not, to obtain our server lists and server information on the condition that somewhere, anywhere in your application or script you mention that the information is obtained from 333networks."; + + p "You are not allowed to flood the API with requests or query our API continuously or with a short interval. If you draw too much network traffic from 333networks, we consider this flooding and will terminate your ability to query our API. Server information is updated every 15 minutes, there is no point in requesting information at a faster rate as there will be no new information available."; + + p "Intended use: use the serverlist request to get show a list of all servers. After loading the list, your visitors/users can select a single server to display detailed information. Do NOT use the serverlist to immediately show detailed information for ALL servers, this causes a ludicrous amount of information requests and will get you excluded from our API. Not sure whether you are doing it right? Contact us!"; + + # + # use + # + h2 "Use"; + p "The Json API consists of three functions to query for information. The methods occur over HTTP and are presented as Json data. The first function requests the \"Message of the Day\", often used to make announcements about the game. The second method returns a list of servers and can be manipulated by gamename. The third method returns detailed server information for an individual server."; + + + h2 "Message of the Day"; + p; + txt "It is possible to pull announcements from the 333networks Json API with the "; + span class => "code", "motd"; + txt " command. This command returns an html string with the current 333networks announcements for the selected "; + span class => "code", "gamename"; + txt ". This string is suitable for direct JQuery's "; + span class => "code", ".html()"; + txt " function. Additionally, it contains the amount of servers and players as described for the serverlist. This method can be used to announce service messages."; + end; + + div class => "code"; + txt "$self->{site_url}/json/(.[\\w]{1,20})/motd"; + end; + + + h2 "Serverlist"; + p "With the API you can pull a serverlist directly from the masterserver. The API applies the following regex to process your request:"; + div class => "code"; + txt "$self->{site_url}/json/(.[\\w]{1,20})"; + end; + p; + txt "In this regex, "; + span class => "code", "(.[\\w]{1,20})"; + txt " refers to the "; + span class => "ext", "gamename"; + txt ". This is the abbreviation that every game specifies in their masterserver protocol. A comprehensive list of gamenames is found on the "; + a href => "/g/all", "games"; + txt " page by looking at the last part of the URL."; + end; + + p; + txt "It is also possible to provide "; + span class => "code", "GET"; + txt " information in the url. Allowed options are:"; + end; + + ul; + li; + span class => "code", "s"; + txt " - sort by country, hostname, gametype, ip, hostport, numplayers and mapname."; + end; + li; + span class => "code", "o"; + txt " - sorting order: 'a' for ascending and 'd' for descending."; + end; + li; + span class => "code", "r"; + txt " - number of results. Defaults to 50 if not specified. Minimum 1, maximum 1000."; + end; + li; + span class => "code", "p"; + txt " - page. Show the specified page with results. Total number of entries is included in the result."; + end; + li; + span class => "code", "q"; + txt " - search query. Identical to the search query on the "; + a href => "/s", "servers"; + txt " page. Maximum query length is 90 characters."; + end; + end; + + # + # list request format + # + + h2 "Serverlist request examples:"; + p; + txt "The following examples have different outcomes. In the first example, we request a serverlist of "; + span class => "code", "all"; + txt " servers, regardless of type and/or name. The second example requests only servers of the game "; + span class => "code", "Unreal"; + txt ". In the last example, we request a serverlist with the gamename "; + span class => "code", "333networks"; + txt ", with only "; + span class => "code", "2"; + txt " results per page, page "; + span class => "code", "1"; + txt " and with the search word "; + span class => "code", "master"; + txt "."; + end; + + div class => "code"; + txt "$self->{site_url}/json/"; + span class => "ext", "all"; + br; + txt "$self->{site_url}/json/"; + span class => "ext", "unreal"; + br; + txt "$self->{site_url}/json/"; + span class => "ext", "333networks"; + txt "?r="; + span class => "ext", "2"; + txt "&p="; + span class => "ext", "1"; + txt "&q="; + span class => "ext", "master"; + end; + + h2 "Serverlist result examples:"; + p "The API returns Json data in the following format, using the third request as an example. This is example data and may vary from what you receive when performing the same query."; + + div class => "code"; + pre json_result_1(); + end; + + p; + txt "The result contains an array of server entries and the "; + span class => "code", "total"; + txt " amount of entries. In this case, that is "; + span class => "code", "2"; + txt " entries listed and "; + span class => "code", "5"; + txt " total entries, implying that there is one more server not shown or on a next page. With the specified number of results specified by the user and the total amount of servers provided by the API, you can calculate how many pages there are to be specified. If applicable, it also shows the current number of "; + span class => "code", "players"; + txt " that are currently in the selected servers. Every server entry has a number of unsorted keywords. Timestamps are linux epoch, in UTC."; + end; + + p "The available keywords that are returned by the API are: "; + div class => "code", join (" ", qw| id ip hostport hostname gamename label country numplayers maxplayers maptitle mapname gametype dt_added dt_updated|); + + p "There are more keywords available for individual servers. Detailed information about a server is obtained with the individual request as described below. Keywords of both requests are described in the tables below. "; + + + h2 "Server details"; + p "Your application or script can also request detailed information for a single server. This is done in a similar way as requesting a server list. The following general regex is used by 333networks:"; + + div class => "code"; + txt "$self->{site_url}/json/(.[\\w]{1,20})/([\\:\\.\\w]{9,35})"; + end; + + p; + txt "This restricts requests to the correct url with a gamename "; + span class => "code", "(.[\\w]{1,20})"; + txt " and an IP:port "; + span class => "code", "([\\:\\.\\w]{9,35})"; + txt " for IPv4 and IPv6 addresses and numerical port number. There are no additional query options or GET options. It is possible that the gamename specified does not match the "; + txt "gamename"; + txt " as stored in our database. The result will include the correct gamename that was specified in our database."; + end; + + p "The following example requests detailed information by IP address and hostport."; + + # + # individual server details request format + # + + h3 "Server details request:"; + div class => "code"; + txt "$self->{site_url}/json/"; + span class => "ext", "333networks"; + txt "/"; + span class => "ext", "84.83.176.234"; + txt ":"; + span class => "ext", "28900"; + end; + + h3 "Server details result:"; + p "The API returns Json data in the following format, using the requests above as an example. This is example data and may vary from what you receive when performing the same query."; + + div class => "code"; + # snippet 1, below + pre json_result_2(); + end; + + p "The result has a single entry of parameters with a number of unsorted keywords. The available keywords are in addition to the keywords are specified in multiple tables below."; + + p; + txt "The player object "; + span class => "code", "player_n"; + txt " represent the players in the server. This is a Json object as part of the larger object above. The available keywords are specified in the table below."; + end; + + h2 "Keyword reference"; + p "Values, type and descriptions of fields that are returned by the Json API:"; + + # generate reference tables + json_database_ref(); + + h2 "Feedback"; + p; + txt "We wrote the Json API with the intention to make the 333networks masterserver data as accessible as possible. If you feel like any functionality is missing or incorrectly shared, do not hesitate to contact us to provide feedback. Additionally, we request that you follow the advise on usage as we described under the Terms of Use on top of this page, so we can keep providing this API."; + end; + + end; # mainbox + $self->htmlFooter(last_change => "May 2021"); +} + +# list of value / type / descriptions directly from database +sub json_database_ref +{ + my @keyval = ( + { title => "Server identifier information", + table => [ + ["id", "int", "gameserver ID in list database"], + ["sid", "int", "reference ID for detailed information"], + ["ip", "text", "server IP address (in IPv6 format)"], + ["queryport", "int", "UDP status query port"], + ["hostport", "int", "hostport to join the server"], + ["hostname", "text", "name of the specific server"], + ["country", "text", "2-letter country code where the server is hosted"], + ["location", "text", "GameSpy regional indication (continent index or 0 for world)"], + ], + }, + { title => "Server flags \& datetime", + table => [ + ["f_protocol", "int", "protocol index to distinguish between GameSpy v0 and others"], + ["f_blacklist", "int", "server blacklisted?"], + ["f_auth", "int", "authenticated response to the secure/validate challenge?"], + ["f_direct", "int", "direct beacon to the masterserver?"], + ["dt_added", "long", "UTC epoch time that the server was added"], + ["dt_beacon", "long", "UTC epoch time that the server sent a heartbeat"], + ["dt_sync", "long", "UTC epoch time that the server was last synced from another masterserver"], + ["dt_updated", "long", "UTC epoch time that the server information was updated"], + ["dt_serverinfo", "long", "UTC epoch time that the detailed server information was updated"], + ], + }, + { title => "Gamedata", + table => [ + # gamedata + ["gamename", "text", "gamename of the server"], + ["label", "text", "comprehensible game title associated with gamename"], + ["gamever", "text", "game version of the server"], + ["minnetver", "text", "minimal required game version to join"], + ], + }, + { title => "Game settings (detailed information)", + table => [ + ["listenserver", "text", "dedicated server indication"], + ["adminname", "text", "server administrator's name"], + ["adminemail", "text", "server administrator's contact information"], + ["password", "text", "passworded or non-public server"], + ["gametype", "text", "type of game: capture the flag, deathmatch, assault and more"], + ["gamestyle", "text", "in-game playing style"], + ["changelevels", "text", "automatically change levels after match end"], + ["mapurl", "text", "direct url of the map thumbnail relative from this site's domain"], + ["mapname", "text", "filename of current map"], + ["maptitle", "text", "title or description of current map"], + ["minplayers", "int", "minimum number of players to start the game"], + ["numplayers", "int", "current number of players"], + ["maxplayers", "int", "maximum number of players simultaneously allowed on the server"], + ["botskill", "text", "skill level of bots"], + ["balanceteams", "text", "team balancing on join"], + ["playersbalanceteams", "text", "players can toggle automatic team balancing"], + ["friendlyfire", "text", "friendly fire rate"], + ["maxteams", "text", "maximum number of teams"], + ["timelimit", "text", "time limit per match"], + ["goalteamscore", "text", "score limit per match"], + ["fraglimit", "text", "score limit per deathmatch"], + ["mutators", "text", "comma-separated mutator/mod list"], + ["misc", "text", "miscellaneous server attributes (reserved)"], + ["player_#", "text", "player information as Json object for player #, see table below"], + ], + }, + { title => "Player information", + table => [ + ["sid", "int", "associated server ID (per player)"], + ["name", "text", "player display name"], + ["team", "text", "player indication as team number, color code or text string"], + ["frags", "int", "number of frags or points"], + ["mesh", "text", "player model / mesh"], + ["skin", "text", "player body texture"], + ["face", "text", "player facial texture"], + ["ping", "int", "player ping"], + ["misc", "text", "miscellaneous player attributes (reserved)"], + ["dt_player", "long", "UTC epoch time that the player information was updated"], + ], + }, + ); + + + use Data::Dumper 'Dumper'; + + for my $keytype (@keyval) + { + h3 $keytype->{title}; + table class => "keyval"; + Tr; + th class => "tc1", "Value"; + th class => "tc2", "Type"; + th "Description"; + end; + + for my $r (@{$keytype->{table}}) + { + my @tr = @{$r}; + Tr; + td class => "tc1"; + span class => "code", $tr[0]; + end; + td class => "tc2", $tr[1]; + td $tr[2]; + end; + } + end; + } +} + +# json output for example 1 +sub json_result_1 +{ + return '[ + [ + { + "id":1990, + "ip":"::ffff:84.83.176.234" + "hostport":28900, + "hostname":"master.333networks.com (333networks MasterServer)", + "gamename":"333networks", + "gametype":"MasterServer", + "label":"333networks Masterserver", + "country":"NL", + "numplayers":15, + "maxplayers":2966, + "maptitle":null, + "mapname":"333networks", + "dt_added":1616895602, + "dt_updated":1621019250, + }, + { + "id":1117, + "ip":"::ffff:162.154.33.129", + "hostport":28900 + "hostname":"master.gonespy.com", + "gamename":"333networks", + "gametype":"Masterserver", + "label":"333networks Masterserver", + "country":"US", + "numplayers":5, + "maxplayers":847, + "maptitle":"", + "mapname":"333networks", + "dt_added":1616593343, + "dt_updated":1621019247, + } + ], + { + "players":20, + "total":5 + } +]'; +} + +sub json_result_2 +{ + return '{ + "id":3, + "ip":"::ffff:45.74.100.250", + "hostport":10205, + "mapname":"DXMP_iceworld2", + "adminname":"Canna the visionary l Disciple Derp191 and RoninMastaFX", + "hostname":"~Canna\'s Buddhist Server~", + "mapurl":"/map/default/333networks.jpg", + "gamever":"1100", + "gametype":"CDX BDM", + "gamename":"deusex", + "country":"CA", + "dt_updated":1621022768, + "player_0": + { + "sid":3, + "name":"Dark191", + "team":"0", + "frags":8, + "mesh":"cmJCDenton", + "skin":"None", + "face":"" + "ping":63, + "dt_player":1621022768, + "misc":"", + }, + "player_1": + { + "sid":3, + "name":"Anya", + "team":"0", + "frags":12, + "mesh":"cmJCDenton", + "skin":"None", + "face":"" + "ping":54, + "dt_player":1621022768, + "misc":"", + }, + }'; +} + +1; diff --git a/lib/MasterWebInterface/Handler/Json/JsonServerInfo.pm b/lib/MasterWebInterface/Handler/Json/JsonServerInfo.pm new file mode 100755 index 0000000..e6f5b44 --- /dev/null +++ b/lib/MasterWebInterface/Handler/Json/JsonServerInfo.pm @@ -0,0 +1,99 @@ +package MasterWebInterface::Handler::Json::JsonServerInfo; +use strict; +use TUWF ':html'; +use Exporter 'import'; +use JSON; + +TUWF::register( + qr{json/(.[\w]{1,20})/([\:\.\w]{9,35})} => \&json_serverinfo, +); + +################################################################################ +# Server Info +# Show server info for an individual server +# Same as &server_info, but with json output. +# returns "error:1" if errors occurred +################################################################################ +sub json_serverinfo +{ + my ($self, $gamename, $s_addr, $s_port) = @_; + + # parse from ipv4/6 and soft sanity check + my ($ip, $port) = $self->from_addr_str($s_addr); + + # select server from database + my $info = $self->dbGetServerInfo( + ip => $ip, + hostport => $port, + limit => 1, + )->[0] if ($ip && $port); + + # display an error in case of an invalid IP or port + unless ($info) + { + my %err = (error => 1, ip => $ip, port => $port); + my $e = \%err; + my $json_data = encode_json $e; + my $json_data_size = keys %$e; + + # return json data as the response + print { $self->resFd() } $json_data; + + # set content type at the end + $self->resHeader("Access-Control-Allow-Origin", "*"); + $self->resHeader("Content-Type", "application/json; charset=UTF-8"); + return; + } + + # load player data if available + my %players = (); + my $pl_list = $self->dbGetPlayerInfoList(sid => $info->{id}); + + for (my $i=0; defined $pl_list->[$i]->{name}; $i++) + { + $players{"player_$i"} = $pl_list->[$i]; + } + + use Data::Dumper 'Dumper'; + my $str = Dumper $pl_list; + + # merge + #$info = { %$info, %$details } if $details; + $info = { %$info, %players } if %players; + + + # find the correct thumbnail, otherwise game default, otherwise 333 default + my $mapname = lc $info->{mapname}; + + # if map figure exists, use it + if (-e "$self->{root}/s/map/$info->{gamename}/$mapname.jpg") + { + # map image + $info->{mapurl} = "/map/$info->{gamename}/$mapname.jpg"; + } + # if not, game default image + elsif (-e "$self->{root}/s/map/default/$info->{gamename}.jpg") + { + # game image + $info->{mapurl} = "/map/default/$info->{gamename}.jpg"; + } + # otherwise 333networks default + else + { + # 333networks default + $info->{mapurl} = "/map/default/333networks.jpg"; + } + + # encode + my $json_data = encode_json $info; + my $json_data_size = keys %$info; + + # return json data as the response + print { $self->resFd() } $json_data; + + # set content type and allow off-domain access (for example jQuery) + $self->resHeader("Access-Control-Allow-Origin", "*"); + $self->resHeader("Content-Type", "application/json; charset=UTF-8"); +} + +1; diff --git a/lib/MasterWebInterface/Handler/Json/JsonServerList.pm b/lib/MasterWebInterface/Handler/Json/JsonServerList.pm new file mode 100755 index 0000000..ecd6c36 --- /dev/null +++ b/lib/MasterWebInterface/Handler/Json/JsonServerList.pm @@ -0,0 +1,95 @@ +package MasterWebInterface::Handler::Json::JsonServerList; +use strict; +use TUWF ':html'; +use Exporter 'import'; +use JSON; + +TUWF::register( + qr{json/(.[\w]{1,20})} => \&serverlist_json, + qr{json/(.[\w]{1,20})/(all|[0a-z])} => \&serverlist_json, +); + +################################################################################ +# LIST SERVERS +# Generate a list of selected games in the database per game (arg: gamename) +# Same as &serverlist, but with json output. +################################################################################ +sub serverlist_json +{ + my($self, $gamename, $char) = @_; + $gamename = "all" unless $gamename; + + # TODO DEPRECATE $char + + # sorting, page + my $f = $self->formValidate( + { + get => 's', + required => 0, + default => 'gamename', + enum => [ qw| hostname gamename country added gametype numplayers mapname | ] + }, + { + get => 'o', + required => 0, + default => 'a', + enum => [ 'a','d' ] + }, + { + get => 'p', + required => 0, + default => 1, + template => 'page', + }, + { + get => 'q', + required => 0, + default => '', + maxlength => 90 + }, + { + get => 'r', + required => 0, + default => 100, + template => 'page' + }, + { + get => 'g', + required => 0, + default => '', + maxlength => 90 + }, + ); + return $self->resNotFound if $f->{_err}; + + # load server list from database + my ( $list, $np, $p ) = $self->dbServerListGet( + sort => $f->{s}, + reverse => $f->{o} eq 'd', + gamename => $gamename, + search => $f->{q}, + page => $f->{p}, + results => $f->{r}, + updated => $self->{window_time}, + gametype => $f->{g}, # TODO: implement in DB query + ); + + # get total number of players + my $pl = 0; + for (@{$list}) + { + $pl += $_->{numplayers} + } + + # return json data as the response + my $json_data = encode_json [$list, {total => $p, players => $pl}]; + print { + $self->resFd() + } $json_data; + + # set content type and allow off-domain access (for example jQuery) + $self->resHeader("Access-Control-Allow-Origin", "*"); + $self->resHeader("Content-Type", "application/json; charset=UTF-8"); +} + +1; diff --git a/lib/MasterWebInterface/Handler/Json/Motd.pm b/lib/MasterWebInterface/Handler/Json/Motd.pm new file mode 100755 index 0000000..c473f12 --- /dev/null +++ b/lib/MasterWebInterface/Handler/Json/Motd.pm @@ -0,0 +1,51 @@ +package MasterWebInterface::Handler::Json::Motd; + +use strict; +use utf8; +use JSON; +use TUWF ':html'; +use Exporter 'import'; +our @EXPORT = qw| motd_static |; + +TUWF::register( + qr{json/(.[\w]{1,20})/motd} => \&json_motd, +); + +# Message of the Day for things like the JSON API or updateserver page +sub motd_static +{ + my ($self, $gamedesc) = @_; + return "<h1>$gamedesc</h1><p>Thank you for using the $self->{site_name} masterserver. For more information, visit <a href=\"$self->{site_url}\">$self->{site_url}</a>.</p>"; +} + +# MOTD for json api +sub json_motd +{ + my ($self, $gamename) = @_; + + # gamename defined + my $gn_desc = $self->dbGetGameDesc($gamename) || $gamename; + my $html = $self->motd_static($gn_desc); + + # get numServers + my ($l,$x,$s) = $self->dbServerListGet( + gamename => $gamename, + results => 100, + ); + + my $p = 0; + for (@{$l}) + { + $p += $_->{numplayers} + } + + # return json data as the response + my $json_data = encode_json [{motd => $html}, {total => $s, players => $p}]; + print { $self->resFd() } $json_data; + + # set content type and allow off-domain access (for example jQuery) + $self->resHeader("Access-Control-Allow-Origin", "*"); + $self->resHeader("Content-Type", "application/json; charset=UTF-8"); +} + +1; diff --git a/lib/MasterWebInterface/Handler/ServInfo.pm b/lib/MasterWebInterface/Handler/ServInfo.pm new file mode 100755 index 0000000..be30fd0 --- /dev/null +++ b/lib/MasterWebInterface/Handler/ServInfo.pm @@ -0,0 +1,550 @@ +package MasterWebInterface::Handler::ServInfo; +use strict; +use warnings; +use utf8; +use TUWF ':html'; +use POSIX 'strftime'; +use Exporter 'import'; + +TUWF::register( + qr{(.[\w]{1,20})/([\:\.\w]{9,35})} => \&show_server, +); + +################################################################################ +# Display server information +# Verify if game and server (ip:hostport) exist. Display as many available +# values as possible. +# Display error pages if not found or incorrect. +################################################################################ +sub show_server +{ + my ($self, $gamename, $s_addr) = @_; + + # parse from ipv4/6 and soft sanity check + my ($ip, $port) = $self->from_addr_str($s_addr); + + # select server from database + my $info = $self->dbGetServerInfo( + ip => $ip, + hostport => $port, + limit => 1, + )->[0]; + + # either redirect or show error when no info was found + if (!defined $info) + { + # try if query port was provided instead + my $attempt = $self->dbGetServerInfo( + ip => $ip, + port => $port, + limit => 1 + )->[0]; + + # if it exists now, automatically redirect to this page (don't show info here) + if (defined $attempt && defined $attempt->{gamename} && defined $attempt->{hostport} ) + { + $self->resRedirect("/$attempt->{gamename}/$ip:$attempt->{hostport}"); + return; + } + + # otherwise not found in database, soft error page (no 404 status) + $self->htmlHeader(title => 'Server not found'); + $self->htmlSearchBox(title => "Servers", action => "/s", sel => 's', fq => ''); + + div class => "mainbox warning"; + div class => "header"; + h1 'Server not found'; + p "The requested information is not in our database."; + end; + + div class => "description"; + p; + txt 'It seems the server you were looking for does not exist in our database,'; + br; + txt 'perhaps our search function may yield results?'; + end; + + p; + txt "You tried to access "; + span class => "hilit", $self->to_ipv4_str($s_addr) // "[no ip]"; + txt " in "; + span class => "hilit", $gamename; + txt "."; + end; + end; + end; + $self->htmlFooter; + + return; + } + + + # + # info exists. sanity checks + $gamename = $info->{gamename} // $gamename; + my $gamedescription = $self->dbGetGameDesc($info->{gamename}) // $info->{gamename}; + + # + # generate info page + $self->htmlHeader(title => $info->{hostname} // "Server"); + $self->htmlSearchBox( + title => "$gamedescription Servers", + action => "/s/$gamename", + sel => 's', + fq => '' + ); + + # serverinfo box + div class => "mainbox detail"; + + div class => "header"; + h1 title => $info->{hostname} // "[unnamed $gamename server]", + $info->{hostname} // "[unnamed $gamename server]"; + end; + + # + # Map thumbnail and bot info + # + div class => "container"; + + # find the correct thumbnail, otherwise game default, otherwise 333 default + div class => "thumbnail"; + my $mapfig = "/map/default/333networks.jpg"; + my $mapfile = lc ($info->{mapname} // ""); + + # if map figure exists, use it + if (-e "$self->{root}/s/map/$gamename/$mapfile.jpg") + { + # map image + $mapfig = "/map/$gamename/$mapfile.jpg"; + } + # if not, game default image + elsif (-e "$self->{root}/s/map/default/$gamename.jpg") + { + # game image + $mapfig = "/map/default/$gamename.jpg"; + } + # otherwise 333networks default + else + { + # 333networks default + $mapfig = "/map/default/333networks.jpg"; + } + + # map title/name (not lowercase) + my $mapname = $info->{mapname} // $info->{maptitle} // "Untitled"; + my $maptitle = ( $info->{maptitle} && lc $info->{maptitle} ne "untitled" ) + ? $info->{maptitle} + : $mapname; + + img src => $mapfig, + alt => $mapfig, + title => $mapname; + span $maptitle; + end; + + table class => "mapinfo"; + # numplayer field + Tr; + td class => "wc1", "Players:"; + td; + txt $info->{numplayers} // 0; + txt "/"; + txt $info->{maxplayers} // 0; + end; + end; + + + Tr; + td "Bots:"; + td; + if ($info->{botskill} or $info->{minplayers}) + { + txt $info->{minplayers} // 0; + txt " "; + txt $info->{botskill} // ""; + txt " bot"; + txt ($info->{minplayers} && $info->{minplayers} == 1 ? "" : "s"); + } + else + { + txt "No"; + } + end; + end; + end; #table + end; # container + + # + # specific server entry information + table class => "serverinfo"; + Tr; + th class => "wc1", title => "Server ID: " . ($info->{id} // "-1"), "Server Info"; + th ""; + end; + + # server address + Tr; + td "Address:"; + td title => $info->{queryport} // 0; + txt $self->to_ipv4_str($info->{ip}) // "0.0.0.0"; + txt ":"; + txt $info->{hostport} // 0; + end; + end; + + # contact + if ($info->{adminname}) + { + Tr; + td "Admin:"; + td $info->{adminname}; + end; + } + + # always display contact + Tr; + td class => "wc1", "Contact:"; + td; + if ($info->{adminemail}) + { + txt $info->{adminemail} + } + else + { + i; + txt "This server has no contact information listed "; + a href => "https://ut99.org/viewtopic.php?f=33&t=6660", "[?]"; + end; + } + end; + end; + + # location data + Tr; + td class => "wc1", "Location:"; + + my ($flag, $country) = $self->countryflag($info->{country} // ""); + td; + img class => "flag", src => "/flag/$flag.svg"; + txt " ". $country; + end; + end; + + # added / updated + Tr; + { + td "Added:"; + my @t = gmtime( time - ( $info->{dt_added} // 0 ) ); + my $sig = 0; + my $diff = ""; + if ($t[5]-70) + { + $diff .= $t[5]-70 + . " year" + . ( ($t[5]-70==1) ? "" : "s" ); + $sig++; + } + if ($t[7]) + { + $diff .= ($sig?", ":"") + . $t[7] + . " day" + . ( ($t[7]==1) ? "" : "s") + } + + if ($diff eq "") + { + $diff = "Less than one day"; + } + td $diff . " ago (" . (strftime "%e %b %Y", gmtime ($info->{dt_added} // 0) ) .")"; + } + end; + + Tr; + { + td "Last seen:"; + td; + my @t = gmtime( time - ( $info->{dt_updated} // 0 ) ); + if ($t[5]-70 // $t[7]) + { + # more than 1 day? show date + span class => "r", (strftime "%e %b %Y", gmtime ($info->{dt_updated} // 0) ); + } + else + { + # less than 1 day? show "time ago" + my $diff = ""; + $diff .= ($t[2] ? $t[2]." hour" . ( $t[2]>1 ? "s, " : ", ") : ""); + $diff .= ($t[1] ? $t[1]." minute". ( $t[1]>1 ? "s, " : ", ") : ""); + $diff .= ($t[0] ? $t[0]." second". ( $t[0]>1 ? "s" : " " ) : "0 seconds"); + $diff .= " ago"; + span $diff; + } + end; + } + end; + + + # TODO: move flags to header + Tr; + td "Flags: "; + td; + # uplink/sync + span title => "direct uplink or manually added?", + ($info->{f_direct} ? "💻 uplink" : "🤚 manual"); + + txt ", "; + + span title => "authenticated game server?", + ($info->{f_auth} ? "✅ authed" : "❌ insecure"); + txt ", "; + + span title => "server blacklisted for violating 333networks policy?", + ($info->{f_blacklist} ? "blacklisted" : "compliant"); + + txt ", "; + span title => "does the server require a password to join?", + ($info->{passworded} ? + ($info->{passworded} =~ /(true|1)/i ? "🔒 password" : "🔓 open") + : "🔓 open"); + end; + end; + end; # table serverinfo + + # + # Specific game and version information + table class => "gameinfo"; + Tr; + th class => "wc1", "Game Info"; + th ""; + end; + + Tr; + td "Game:"; + td; + a href => "/s/$gamename", $gamedescription; + end; + end; + if ($info->{gametype}) + { + Tr; + td "Type:"; + td $info->{gametype}; + end; + } + if ($info->{gamestyle}) + { + Tr; + td "Style:"; + td $info->{gamestyle}; + end; + } + if ($info->{gamever}) + { + Tr; + td "Version:"; + td $info->{gamever}; + end; + } + end; #gameinfo + + # + # Mutator list + table class => "mutators"; + Tr; + th "Mutators"; + end; + Tr; + td; + if (defined $info->{mutators} && $info->{mutators} ne "None") + { + txt $info->{mutators}; + } + else + { + i "This server does not have any mutators listed."; + } + end; + end; + end; #mutators + + # + # Player info + table class => "players"; + my $player = $self->dbGetPlayerInfoList(sid => $info->{id}); + my %team = (0 => "#e66", + 1 => "#66e", + 2 => "#6e6", + 3 => "#ee6", + 4 => "#fe6", + 255 => "#aaa"); + + # iterate players and colors + Tr; + th class => "wc1", 'Player Info'; + th class => "frags", 'Frags'; + th class => "mesh", 'Mesh'; + th class => "skin", 'Skin'; + th class => "ping", 'Ping'; + end; + + for (my $i = 0; defined $player->[$i]->{name}; $i++) + { + # determine teamcolor + my $teamcolor = ( defined $player->[$i]->{team} && + $player->[$i]->{team} =~ m/^([0-4]|255)$/i) + ? $team{$player->[$i]->{team}} + : "#aaa"; + + Tr $i % 2 ? (class => 'odd') : (), style => 'color:'.$teamcolor; + td class => "wc1", title => $player->[$i]->{team} // "None"; + txt $player->[$i]->{name} // "[no name]"; + if ($player->[$i]->{ngsecret} && $player->[$i]->{ngsecret} =~ m/^bot$/i) + { + txt " (bot)"; + } + end; + td class => "frags", $player->[$i]->{frags} // 0; + td class => "mesh", $player->[$i]->{mesh} // ""; + td class => "skin", $player->[$i]->{skin} // ""; + td class => "ping", $player->[$i]->{ping} // 0; + end; + } + if ( ! defined $player->[0]->{name}) + { + Tr; + td colspan => 5; + i "There is no player information available."; + end; + end; + } + end; # playerinfo + + # + # Team info + table class => "teaminfo"; + Tr; + th class => "wc1", "Team Info"; + th ""; + end; + Tr; + td "Balance Teams:"; + td ( (defined $info->{balanceteams} && + $info->{balanceteams} =~ m/true/i ) ? "Yes" : "No"); + end; + Tr; + td "Players Balance Teams:"; + td ( defined $info->{playersbalanceteams} && + $info->{playersbalanceteams} ? "Yes" : "No"); + end; + Tr; + td "Friendly Fire:"; + td ($info->{friendlyfire} // "0%"); + end; + Tr; + td "Max Teams:"; + td ($info->{maxteams} // 1); + end; + end; + + # + # Game Limits + table class => "limits"; + Tr; + th class => "wc1", "Limits"; + th ""; + end; + Tr; + td "Time Limit:"; + td (($info->{timelimit} // 0). " min"); + end; + Tr; + td "Score Limit:"; + td ($info->{goalteamscore} // 0); + end; + Tr; + td "Frag Limit:"; + td ($info->{fraglimit} // 0); + end; + end; + + # + # Share options (copy fields) + my $url = $self->{site_url} + . "/" + . $gamename + . "/" + . ( $self->to_ipv4_str($info->{ip}) // "0.0.0.0" ) + . ":" + . ($info->{hostport} // 0); + + table class => "shareopts"; + Tr; + th class => "wc1", "Share"; + th ""; + end; + Tr; + td class => "tc1", "Link"; + td class => "tc2"; + input type => 'text', + class => 'text', + name => 'url', + value => $url; + end; + end; + Tr; + td class => "tc1"; + a href => "/json", + title => "The url to access this server over the 333networks Json API", + "Json API"; + end; + td class => "tc2"; + input type => 'text', + class => 'text', + name => 'url', + value => $self->{site_url} + . "/json/" + . $gamename + . "/" + . ( $self->to_ipv4_str($info->{ip}) // "0.0.0.0" ) + . ":" + . ($info->{hostport} // 0); + end; + end; + Tr; + td "Forum Link"; + td; + textarea type => 'textarea', + class => 'text', + rows => 3, + name => 'paste'; + txt "\[url=$url\]";lit "\n"; + txt $info->{hostname} // "[unnamed $gamename server]"; + lit "\n"; + txt "\[/url\]"; + end; + end; + end; + Tr; + td "HTML Code"; + td; + textarea type => 'textarea', + class => 'text', + rows => 3, + name => 'paste'; + txt "<a href=\"$url\">"; + lit "\n"; + txt $info->{hostname} // "[unnamed $gamename server]"; + lit "\n"; + txt "</a>"; + end; + end; + end; + end; # share options + + end; # mainbox details + $self->htmlFooter; +} + +1; diff --git a/lib/MasterWebInterface/Handler/Servers.pm b/lib/MasterWebInterface/Handler/Servers.pm new file mode 100755 index 0000000..374cddf --- /dev/null +++ b/lib/MasterWebInterface/Handler/Servers.pm @@ -0,0 +1,180 @@ +package MasterWebInterface::Handler::Servers; +use strict; +use utf8; +use TUWF ':html'; +use Exporter 'import'; + +TUWF::register( + qr{} => \&serverlist, + qr{s} => \&serverlist, + qr{s/(.[\w]{1,20})} => \&serverlist, +); + +################################################################################ +# List servers +# Generate a list of selected games in the database per game (arg: gamename) +################################################################################ +sub serverlist +{ + my($self, $gamename) = @_; + $gamename = "all" unless $gamename; + + # sorting, page + my $f = $self->formValidate( + { + get => 's', + required => 0, + default => 'gamename', + enum => [ qw| hostname gamename country dt_added gametype numplayers mapname | ] + }, + { + get => 'o', + required => 0, + default => 'a', + enum => [ 'a','d' ] + }, + { + get => 'p', + required => 0, + default => 1, + template => 'page', + }, + { + get => 'q', + required => 0, + default => '', + maxlength => 90 + }, + { + get => 'r', + required => 0, + default => 50, + template => 'page' + }, + { + get => 'g', + required => 0, + default => '', + maxlength => 90 + }, + ); + return $self->resNotFound if $f->{_err}; + + # load server list from database + my ( $list, $np, $p ) = $self->dbServerListGet( + sort => $f->{s}, + reverse => $f->{o} eq 'd', + gamename => $gamename, + search => $f->{q}, + page => $f->{p}, + updated => $self->{window_time}, + results => $f->{r}, + gametype => $f->{g}, + # don't show 333networks in default list + $gamename ne "333networks" ? ( nolist => "333networks") : (), + ); + + # game name description in title + my $gn_desc = $self->dbGetGameDesc($gamename) // $gamename; + + # + # page + # + + # Write page + $self->htmlHeader(title => "Browse $gn_desc game servers"); + $self->htmlSearchBox( + title => "$gn_desc Servers", + action => "/s/$gamename", + sel => 's', + fq => $f->{q} + ); + + + # + # server list + $self->htmlBrowse( + items => $list, + options => $f, + total => $p, + nextpage => [$p,$f->{r}], + pageurl => "/s/$gamename?o=$f->{o};s=$f->{s};q=$f->{q}", + sorturl => "/s/$gamename?q=$f->{q}", + class => "serverlist", + ($p <= 0) ? (footer => sub + { + Tr; + td colspan => 6, class => 'tc2', 'No online servers found'; + end 'tr'; + }) : (), + header => [ + [ '', 'country' ], + [ 'Server Name', 'hostname' ], + [ 'Game', 'gamename' ], + [ 'Gametype', 'gametype' ], + [ 'Players', 'numplayers' ], + [ 'Map', 'mapname' ], + ], + row => sub + { + + my($s, $n, $l) = @_; + Tr $n % 2 ? (class => 's odd') : (class => 's'); + + # country flag + my ($flag, $country) = $self->countryflag($l->{country}); + td class => "tc1", + style => "background-image: url(/flag/$flag.svg);", + title => $country, + ''; + + # server name + my $ip = $self->to_ipv4_str($l->{ip}); + my $hp = $l->{hostport} // 0; + my $gn = $l->{gamename} // ""; + td class => "tc2"; + a href => "/$gn/$ip:$hp", + title => $l->{hostname} // "[unnamed $gn server]", + $l->{hostname} // "[unnamed $gn server]"; + end; + + # gamename + icon + if (-e "$self->{root}/s/icon32/$gn.png" ) + { + td class => "tc3 icon", + style => "background-image: url(/icon32/$gn.png);", + title => $l->{label}; + a href => "/s/$gn", ""; + end; + } + else + { + td $gn; + } + + # game type (CTF, DM, Masterserver, CoopGame) + td class => "tc4", + title => $l->{gametype} // "", + $l->{gametype} // ""; + + # number of players / maximum players + td class => "tc5"; + txt $l->{numplayers} // 0; + txt "/"; + txt $l->{maxplayers} // 0; + end; + + # map title/name + my $mapname = $l->{mapname} // $l->{maptitle} // ""; + my $maptitle = ( $l->{maptitle} && lc $l->{maptitle} ne "untitled" ) + ? $l->{maptitle} + : $mapname; + td class => "tc6", title => $mapname, $maptitle; + end; + }, + ); + + $self->htmlFooter; +} + +1; diff --git a/lib/MasterWebInterface/Util/AddressFormat.pm b/lib/MasterWebInterface/Util/AddressFormat.pm new file mode 100755 index 0000000..68cf82c --- /dev/null +++ b/lib/MasterWebInterface/Util/AddressFormat.pm @@ -0,0 +1,54 @@ +package MasterWebInterface::Util::AddressFormat; +use strict; +use warnings; +use TUWF ':html'; +use Exporter 'import'; +our @EXPORT = qw| from_addr_str + to_ipv4_str |; + +################################################################################ +# parse incoming addresses to IPv6 type used by MasterServer-Qt5 and port +# parses IPv4 to ::ffff:0.0.0.0 and port +# this is only a semi-sanity check -- invalid values (like port > 65535) +# are ignored since they will simply not be found in the database. +################################################################################ +sub from_addr_str { + my ($self, $str_addr) = @_; + my ($ip, $port); + + # ::ffff:127.0.0.1:7778 + if ($str_addr =~ /^::ffff:\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}:\d{1,5}$/) + { + # ipv4 in ipv6 format is already in the correct format + return ($ip, $port) = $str_addr =~ m/^(::ffff:\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}):(\d{1,5})$/; + } + + # ipv6 (without leading ::) and trailing :7778 / port + if ($str_addr =~ /^\w{4}:\w{4}:\w{4}:\w{4}:\w{4}:\w{4}:\w{4}:\w{4}:\d{1,5}$/) + { + # ipv6 already in the correct format + return ($ip, $port) = $str_addr =~ m/^(\w{4}:\w{4}:\w{4}:\w{4}:\w{4}:\w{4}:\w{4}:\w{4}):(\d{1,5})$/; + } + + # ipv4 (127.0.0.1:7778) + if ($str_addr =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}:\d{1,5}$/) + { + # rewrite to ::ffff:127.0.0.1 + ($ip, $port) = $str_addr =~ m/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}):(\d{1,5})$/; + return ("::ffff:".$ip, $port); + } + + # failure + return ("0.0.0.0", 0); +} + +# write ::ffff:0.0.0.0 to 0.0.0.0 format if possible +# return ipv6 addresses untouched +sub to_ipv4_str +{ + my ($self, $str_addr) = @_; + $str_addr =~ s/^::ffff://; + return $str_addr; +} + +1; diff --git a/lib/MasterWebInterface/Util/BrowseHTML.pm b/lib/MasterWebInterface/Util/BrowseHTML.pm new file mode 100755 index 0000000..f32e088 --- /dev/null +++ b/lib/MasterWebInterface/Util/BrowseHTML.pm @@ -0,0 +1,201 @@ +package MasterWebInterface::Util::BrowseHTML; +use strict; +use warnings; +use utf8; +use TUWF ':html', 'xml_escape'; +use Exporter 'import'; +use POSIX 'ceil'; +our @EXPORT = qw| htmlSearchBox htmlBrowse htmlBrowseNavigate |; + +# generates a search box, arguments: +# title => games/ (game) servers +# action => form action +# sel => g or s selected +# fq => form query string +sub htmlSearchBox +{ + my($self, %opt) = @_; + + div class => 'mainbox'; + div class => "header"; + h1 "Browse $opt{title}"; + p class => "alttitle", "An overview of games titles and servers that are currently online."; + end; + + # search box + form action => $opt{action}, 'accept-charset' => 'UTF-8', method => 'get'; + fieldset class => 'search'; + a href => '/g', $opt{sel} eq 'g' ? (class => 'sel') : (), 'Games'; + a href => '/s', $opt{sel} eq 's' ? (class => 'sel') : (), 'Servers'; + #a href => '/json', $opt{sel} eq 'j' ? (class => 'sel') : (), 'Json API'; + input type => 'text', name => 'q', id => 'q', class => 'text', + value => $opt{fq} || 'search...'; + input type => 'submit', class => 'submit', value => 'submit'; + end 'fieldset'; + + div class => "dropdown"; + a href => "#", onclick => "toggleAdvanced()"; + txt "advanced search "; + lit "\x{25BE}"; + end; + end; + + fieldset id => 'advancedsearch'; + #input type => 'text', name => 'aq', class => 'text', value => ''; + #input type => 'submit', class => 'submit', value => 'submit'; + txt "Patience, young one. With time, advanced search options will become available to you."; + end; + end; + + end 'div'; # mainbox +} + +# generates a browse box, arguments: +# items => arrayref with the list items +# options => hashref containing at least the keys s (sort key), o (order) and p (page) +# nextpage => whether there's a next page or not +# sorturl => base URL to append the sort options to (if there are any sortable columns) +# pageurl => base URL to append the page option to +# class => classname of the mainbox +# header => +# can be either an arrayref or subroutine reference, +# in the case of a subroutine, it will be called when the header should be written, +# in the case of an arrayref, the array should contain the header items. Each item +# can again be either an arrayref or subroutine ref. The arrayref would consist of +# two elements: the name of the header, and the name of the sorting column if it can +# be sorted +# row => subroutine ref, which is called for each item in $list, arguments will be +# $self, $item_number (starting from 0), $item_value +# footer => subroutine ref, called after all rows have been processed +# Mostly written by Yorhel --> https://g.blicky.net/vndb.git/tree/COPYING +sub htmlBrowse +{ + my($self, %opt) = @_; + + # get options + $opt{sorturl} .= $opt{sorturl} =~ /\?/ ? ';' : '?' if $opt{sorturl}; + + # top navigation + $self->htmlBrowseNavigate($opt{pageurl}, $opt{options}{p}, $opt{nextpage}, 't') if $opt{pageurl}; + + div class => 'mainbox browse'.($opt{class} ? ' '.$opt{class} : ''); + table class => 'stripe'; + + # header + thead; + Tr; + if(ref $opt{header} eq 'CODE') + { + $opt{header}->($self); + } + else + { + for(0..$#{$opt{header}}) + { + if(ref $opt{header}[$_] eq 'CODE') + { + $opt{header}[$_]->($self, $_+1); + } + elsif ($opt{simple}) + { + td class => $opt{header}[$_][3]||'tc'.($_+1), $opt{header}[$_][2] ? (colspan => $opt{header}[$_][2]) : (); + if($opt{header}[$_][1]) + { + lit qq|<a href="$opt{sorturl}o=d;s=$opt{header}[$_][1]">$opt{header}[$_][0]</a>|; + } + else + { + txt $opt{header}[$_][0]; + } + end; + } + else + { + td class => $opt{header}[$_][3]||'tc'.($_+1), $opt{header}[$_][2] ? (colspan => $opt{header}[$_][2]) : (); + if ( $opt{options}{s} eq $opt{header}[$_][1] ) + { # active sort + if ( $opt{options}{o} eq 'a' ) + { + a href => "$opt{sorturl}o=d;s=$opt{header}[$_][1]"; + lit $opt{header}[$_][0]; + lit " \x{25B4}"; + end; + } + else + { # eq 'd' + a href => "$opt{sorturl}o=a;s=$opt{header}[$_][1]"; + lit $opt{header}[$_][0]; + lit " \x{25BE}"; + end; + } + } + else + { # passive sort options + a href => "$opt{sorturl}o=d;s=$opt{header}[$_][1]"; + lit $opt{header}[$_][0]; + end; + } + end; + } + } + } + end; + end 'thead'; + + # footer + if($opt{footer}) + { + tfoot; + $opt{footer}->($self); + end; + } + + # rows + $opt{row}->($self, $_+1, $opt{items}[$_]) for 0..$#{$opt{items}}; + + end 'table'; + end 'div'; + + # bottom navigation + $self->htmlBrowseNavigate($opt{pageurl}, $opt{options}{p}, $opt{nextpage}, 'b') if $opt{pageurl}; +} + + +# creates next/previous buttons (tabs), if needed +# Arguments: page url, current page (1..n), nextpage (0/1 or [$total, $perpage]), alignment (t/b), noappend (0/1) +# Mostly written by Yorhel --> https://g.blicky.net/vndb.git/tree/COPYING +sub htmlBrowseNavigate { + my($self, $url, $p, $np, $al, $na) = @_; + my($cnt, $pp) = ref($np) ? @$np : ($p+$np, 1); + return if $p == 1 && $cnt <= $pp; + + $url .= $url =~ /\?/ ? ';p=' : '?p=' unless $na; + + my $tab = sub { + my($left, $page, $label) = @_; + li $left ? (class => 'left') : (); + a href => $url.$page; lit $label; end; + end; + }; + my $ell = sub { + li class => 'ellipsis'.(shift() ? ' left' : ''); + b '⋯'; + end; + }; + my $nc = 5; # max. number of buttons on each side + + ul class => 'maintabs browsetabs ' . ($al eq 't' ? 'notfirst' : 'bottom'); + $p > $nc and ref $np and $tab->(1, 1, '« first'); + $p > $nc and ref $np and $ell->(1); + $p > $_ and ref $np and $tab->(1, $p-$_, $p-$_) for (reverse 1..($nc>$p-1?$p-1:$nc-1)); + $p > 1 and $tab->(1, $p-1, '‹ previous'); + + my $l = ceil($cnt/$pp)-$p+1; + $l > $nc and $tab->(0, $l+$p-1, ('last').' »'); + $l > $nc and $ell->(0); + $l > $_ and $tab->(0, $p+$_, $p+$_) for (reverse 1..($nc>$l-1?$l-1:$nc-1)); + $l > 1 and $tab->(0, $p+1, ('next').' ›'); + end 'ul'; +} + +1; diff --git a/lib/MasterWebInterface/Util/Layout.pm b/lib/MasterWebInterface/Util/Layout.pm new file mode 100755 index 0000000..bf401c2 --- /dev/null +++ b/lib/MasterWebInterface/Util/Layout.pm @@ -0,0 +1,116 @@ +package MasterWebInterface::Util::Layout; +use strict; +use warnings; +use TUWF ':html'; +use Exporter 'import'; +our @EXPORT = qw| htmlHeader htmlFooter |; + +################################################################################ +# page header +# options: title, noindex +################################################################################ +sub htmlHeader +{ + my($self, %o) = @_; + + # CSS override: allow passing of style from GET --> ?style=classic + my $style = $self->{style}; + if (my $overrideStyle = $self->reqParam("style") ) + { + # default to custom style if specified option doesn't exist + $style = ( -e "$self->{root}/s/style/$overrideStyle" ) ? $overrideStyle : "basic"; + } + + html lang => "en"; + head; + title "$o{title} :: $self->{site_name} masterserver"; + Link type => 'image/x-icon', rel => 'shortcut icon', href => "/favicon.ico"; + Link type => "text/css", rel => 'stylesheet', href => "/style/$style/style.css", media => "all"; + if ( $o{noindex} ) + { + meta name => 'robots', content => 'noindex,nofollow,nosnippet,noodp,noarchive,noimageindex';end; + } + end 'head'; + + body; + + my $topbar = $self->reqParam("topbar"); + if ($topbar && lc $topbar eq "true" ) + { + # games, servers, search bar + div class => 'nav'; + # search box + form action => "/g", 'accept-charset' => 'UTF-8', method => 'get'; + fieldset class => 'search'; + p id => 'searchtabs'; + a href => '/g', class => 'sel', 'Games'; + a href => '/s', 'Servers'; + input type => 'text', name => 'q', id => 'q', class => 'text', value => ''; + input type => 'submit', class => 'submit', value => '', style => "display:none"; + end; + a style => "font-size:x-small", href => "#", "advanced search"; + end 'fieldset'; + end; + end; + } + + div id => "body"; + + # start the page content with a header logo box + div class => "titlebox"; + end; + + my $overrideStyle = $self->reqParam("style"); + if ($overrideStyle) { + # debug feature: force list of styles on floaty-box + div class => "mainbox", + style => "position:absolute; left: 20px; top: 20px; width:200px"; + + div class => "header"; + h1 "Development"; + p class => "alttitle"; + txt "This site is under development. Find "; + a href => "http://333networks.com", "333networks.com here!"; + br; + txt "Use the list below to test different house styles."; + end; + end; + + ul style => "margin: 3px 20px 10pt 40px"; + opendir(DIR, "$self->{root}/s/style") or die $!; + while (my $file = readdir(DIR)) + { + next if ($file =~ m/^\./); + li; + a href => "?style=$file", $file; + end; + } + closedir(DIR); + end; + end; + } +} + +################################################################################ +# page footer +# options: last_edited +################################################################################ +sub htmlFooter +{ + my ($self, %o) = @_; + + br style => "clear:both"; + + div id => 'footer'; + txt "$self->{site_name} | Powered by "; + a href => "http://333networks.com", "333networks"; + txt " | "; + txt $o{last_edited} || "2021"; + end; + end 'div'; # body + script type => 'text/javascript', src => "/masterscript.js", ''; + end 'body'; + end 'html'; +} + +1; diff --git a/lib/MasterWebInterface/Util/Misc.pm b/lib/MasterWebInterface/Util/Misc.pm new file mode 100755 index 0000000..f2979ea --- /dev/null +++ b/lib/MasterWebInterface/Util/Misc.pm @@ -0,0 +1,43 @@ +package MasterWebInterface::Util::Misc; +use strict; +use warnings; +use TUWF ':html'; +use POSIX 'strftime'; +use Exporter 'import'; +use Geography::Countries; +use Unicode::Normalize 'NFKD'; +our @EXPORT = qw| date_new timeformat countryflag |; + +# time formatting for when a server was added +sub date_new +{ + my ($s, $d) = @_; + return (strftime "%a %H:%M", gmtime $d); # no seconds +} + +# time formatting for when a server was added / last updated +sub timeformat +{ + my ($self, $time) = @_; + my @t = gmtime($time); + my $r = ""; + + # parse into d HH:mm:SS format + if ($t[7]){$r .= $t[7]."d "} + if ($t[2]){$r .= ($t[2] > 9) ? $t[2].":" : "0".$t[2].":" } + if ($t[1]){$r .= ($t[1] > 9) ? $t[1].":" : "0".$t[1].":" } else {$r .= "00:";} + if ($t[0]){$r .= ($t[0] > 9) ? $t[0] : "0".$t[0] } else {$r .= "00";} + + return $r; +} + +# returns flag, country name +sub countryflag +{ + my ($self, $c) = @_; + my $flag = ($c ? lc $c : 'earth'); + my $coun = $c ? ( $c eq 'EU' ? 'Europe' : country $c ) : 'Earth' ; + return $flag, $coun; +} + +1; diff --git a/log/log.txt b/log/log.txt new file mode 100644 index 0000000..4fcf6b8 --- /dev/null +++ b/log/log.txt @@ -0,0 +1 @@ +log files are created in this folder. diff --git a/s/favicon.ico b/s/favicon.ico Binary files differnew file mode 100755 index 0000000..1182ce4 --- /dev/null +++ b/s/favicon.ico diff --git a/s/flag/ad.svg b/s/flag/ad.svg new file mode 100755 index 0000000..5abdb07 --- /dev/null +++ b/s/flag/ad.svg @@ -0,0 +1,71 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#0000bd" d="M0 0h214.4v479.984H0z"/> + <path fill="#cc1900" d="M425.6 0H640v479.984H425.6z"/> + <path fill="#fff600" d="M214.4 0h211.2v479.984H214.4z"/> + </g> + <g stroke-width="1pt"> + <path d="M398.54 290.22c47.823.818 44.515-29.15 61.974-32.126 17.458-2.977 33.928 12.49 33.302 29.972 1.873 20.814-29.714 20.963-31.637 38.298-1.924 17.336 15.377 22.628 33.3 19.982s30.647-20.363 39.805-28.69c-13.32 7.494-24.218 4.78-25.21-8.557.673-17.498 18.103-23.848 26.345-17.96 6.476-5.3 6.09-7.424 13.21-6.247 4.827 2.944 6.142 2.86 8.998 7.418 3.717-2.354 5.27-3.54 12.204-.596 4.306 1.767 7.18 4.96 9.84 9.808 3.147-2.486 8.087-3.413 13.763-.197 3.61 1.837 8.108 7.182 8.72 12.995 8.45 1.696 11.38 3.654 14.034 7.953 15.764 21.775-2.436 58.473-1.433 77.205 1.004 18.73 16.65 19.98 16.65 19.98-14.716-9.42-.2-15.9 6.746-16.55 22.252 2.293 18.508 35.136-5.18 29.367-18.978-5.18 38.92 3.28 37.525 62.637-1.396 61.02-32.815 49.01-32.815 49.01s26.838 10.11 21.646 30.09c-5.192 13.507-32.934 22.456-30.58-3.448-8.24 11.186-10.607 15.913-10.58 32.916-1.147 21.713.657 31.63 6.846 42.3 1.48-9.934 8.206-10.36 13.952-9.1 8.1.085 12.607 6.443 9.563 14.685 4.08-1.035 7.802 1.757 9.403 5.12 1.255 6.207 4.037 8.957-2.44 11.312 6.477 1.178 9.61 2.024 10.378 11.05.18 7.26-12.595 11.245-26.135 8.89 7.065 3.533 29.983 50.025 26.922 103.44-2.12 47.905-86.038 43.64-123.53 42.305-37.488-1.332-72.512.775-87.133 13.052 11.247 7.182-1.302 29.542-10.864 19.064 0 8.242-9.45 20.98-22.497 12.718.534 14.885-14.238 25.328-27.12 25.328s-27.656-10.443-27.122-25.328c-13.047 8.26-22.496-4.476-22.496-12.718-9.562 10.478-22.11-11.882-10.864-19.064-14.62-12.277-49.645-14.384-87.133-13.052-37.49 1.334-121.41 5.6-123.53-42.305-3.06-53.418 23.7-99.91 30.764-103.44-13.54 2.355-26.315-1.63-26.135-8.89.767-9.026 3.9-9.872 10.377-11.05-6.476-2.355-3.694-5.105-2.44-11.31 1.602-3.365 5.324-6.157 9.403-5.122-3.044-8.242 1.462-14.6 9.563-14.684 5.746-1.26 12.472-.834 13.952 9.1 6.19-10.67 7.993-20.587 6.845-42.3.028-17.003-2.338-21.73-10.58-32.916 2.355 25.904-25.387 16.955-30.578 3.448-5.192-19.98 21.646-30.09 21.646-30.09s-31.42 12.01-32.815-49.01c-1.396-59.356 56.503-67.817 37.525-62.637-23.688 5.77-27.432-27.074-5.18-29.366 6.946.65 21.462 7.13 6.745 16.55 0 0 15.647-1.25 16.65-19.982 1.004-18.732-17.196-55.43-1.43-77.205 2.652-4.3 5.582-6.257 14.033-7.953.613-5.813 5.11-11.158 8.72-12.995 5.677-3.216 10.617-2.29 13.763.197 2.66-4.847 5.535-8.04 9.84-9.808 6.936-2.943 8.488-1.758 12.205.597 2.856-4.556 4.17-4.473 9-7.417 7.118-1.177 6.732.948 13.208 6.246 8.242-5.888 25.672.462 26.345 17.96-.99 13.335-11.888 16.05-25.21 8.557 9.16 8.326 21.88 26.043 39.805 28.69s35.225-2.647 33.302-19.983c-1.923-17.335-33.51-17.484-31.637-38.298-.626-17.483 15.844-32.95 33.302-29.972 17.46 2.977 14.15 32.944 62.182 32.126z" fill-rule="evenodd" transform="matrix(.55826 0 0 .52733 97.622 -66.238)" stroke="#000" fill="#cba323"/> + <path d="M356.44 346.62c-.575 17.96-31.258 14.828-51.514 13.86-26.326-1.232-77.59-46.08-44.263-69.89M164.84 449.52c-16.484 17.662 28.69 13.497 9.42-9.42-7.87-8.82-41.21 18.84-41.21 49.453s10.596 44.742 16.483 45.92c5.887 1.177 15.307-3.533 15.307-8.242 0-5.886-4.71-15.306-11.774-14.13-11.775 0-5.888 10.598 0 10.598" transform="matrix(.55826 0 0 .52733 97.622 -66.238)" stroke="#000" fill="none"/> + <path d="M163.39 451.39s-24.453 9.908-24.453 39.343c0 29.436 7.065 28.26 7.065 28.26" transform="matrix(.55826 0 0 .52733 97.622 -66.238)" stroke="#000" fill="none"/> + <path d="M166.02 430.68s24.726-3.533 23.55 18.838c-1.18 22.37-9.42 23.55-22.372 22.37-12.952-1.176-5.887-16.482-5.887-16.482M156.6 543.71s18.84-1.178 17.66-21.194c-1.176-20.016-15.305-21.194-23.547-20.016-8.242 1.177-10.74 5.803-8.242 12.88M150.71 567.26s3.936-8.158 16.887-8.158c12.952 0 18.982 30.386 17.805 63.354-1.178 32.968-33.515 61.37-40.58 59.015-7.064-2.354-10.597-3.532-4.71-8.24M172.39 643.31l-22.86 38.166" transform="matrix(.55826 0 0 .52733 97.622 -66.238)" stroke="#000" fill="none"/> + <path d="M141.29 667.34c0 .416 5.054-1.105 8.587 1.25 3.532 2.354 4.365 5.815 4.365 5.815" transform="matrix(.55826 0 0 .52733 97.048 -66.083)" stroke="#000" fill="none"/> + <path d="M144.82 650.86s4.517-1.82 10.404.536 5.695 7.662 5.695 7.662" transform="matrix(.50893 0 0 .37764 106.63 31.672)" stroke="#000" fill="none"/> + <path d="M171.78 731.95c12.25 6.364 24.282-25.18.67-26.726-16.887-.69-29.084 23.268-26.73 35.04 6.432 40.062 10.445 66.862 50.57 72.046 30.612 2.355 78.45-5.1 108.3-1.523 29.44 3.433 61.94 14.272 73.713 26.047 11.774 11.774 19.112 11.892 19.112 23.667 0 11.775-16.815 17.817-23.476 10.74" transform="matrix(.55826 0 0 .52733 97.02 -65.096)" stroke="#000" fill="none"/> + <path d="M369.84 876.92c4.305-2.914 14.556-20.425 4.722-30.815-15.194-15.4-26.165-21.48-33.658-23.977M347.55 863.28c5.828-3.532 6.684-15.298.594-24.274-6.09-8.975-21.94-16.165-53.073-18.8-23.582-1.98-87.843 8.445-111.39 1.38-33.058-12.72-53.844-34.15-48.772-87.39 1.52-20.622 11.917-34.466 32.278-37.106 22.858-.143 28.813 14.734 28.813 33.57 0 9.682-25.318 18.88-29.91 9.706-7.11-12.854-10.217-24.45 15.88-30.607" transform="matrix(.55826 0 0 .52733 97.02 -65.096)" stroke="#000" fill="none"/> + <path d="M337.41 844.59s9.765 5.685 7.41 10.395c-2.354 4.71-8.658 2.7-4.496-2.296" transform="matrix(.55826 0 0 .52733 97.02 -65.096)" stroke="#000" fill="none"/> + <path d="M238.95 291.4s-6.66 6.66-3.33 22.48 9.99 14.986 9.99 14.986M216.47 300.55c-.833 1.665-9.706 11.858-4.71 22.68 4.995 10.825 8.956 12.978 8.956 12.978M193.99 313.87s-7.195 10.622-8.567 29.555 7.79 45 7.533 54.698c-.58 20.61-24.012 30.84-24.012 30.84M159.85 543.66c1.665 0 34.135-29.972 34.135 76.597-2.498 61.61-38.298 67.438-38.298 67.438" transform="matrix(.55826 0 0 .52733 97.622 -66.238)" stroke="#000" fill="none"/> + <path d="M162.49 689.71c13.148-3.336 40.425 10.99 30.613 35.324" transform="matrix(.55826 0 0 .52733 98.568 -64.97)" stroke="#000" fill="none"/> + <path d="M167.78 681.47c8.44.785 15.32 6.904 18.458 15.343" transform="matrix(.55826 0 0 .52733 97.435 -65.9)" stroke="#000" fill="none"/> + <path d="M148.2 477.06s9.99 14.154 24.977 14.154 19.982-15.82 19.982-15.82" transform="matrix(.55826 0 0 .52733 97.622 -66.238)" stroke="#000" fill="none"/> + <path d="M146.53 484.55s9.158 16.652 24.977 17.484c15.82.833 21.647-10.823 21.647-10.823M179.84 509.52s11.657 4.996 11.657 19.15c0 14.153-10.824 10.823-10.824 10.823" transform="matrix(.55826 0 0 .52733 97.622 -66.238)" stroke="#000" fill="none"/> + <path d="M356.44 346.62c-.575 17.96-31.258 14.828-51.514 13.86-26.326-1.232-77.59-46.08-44.263-69.89M164.84 449.52c-16.484 17.662 28.69 13.497 9.42-9.42-7.87-8.82-41.21 18.84-41.21 49.453s10.596 44.742 16.483 45.92c5.887 1.177 15.307-3.533 15.307-8.242 0-5.886-4.71-15.306-11.774-14.13-11.775 0-5.888 10.598 0 10.598" transform="matrix(-.55826 0 0 .52733 542.482 -66.238)" stroke="#000" fill="none"/> + <path d="M163.39 451.39s-24.453 9.908-24.453 39.343c0 29.436 7.065 28.26 7.065 28.26" transform="matrix(-.55826 0 0 .52733 542.482 -66.238)" stroke="#000" fill="none"/> + <path d="M166.02 430.68s24.726-3.533 23.55 18.838c-1.18 22.37-9.42 23.55-22.372 22.37-12.952-1.176-5.887-16.482-5.887-16.482M156.6 543.71s18.84-1.178 17.66-21.194c-1.176-20.016-15.305-21.194-23.547-20.016-8.242 1.177-10.74 5.803-8.242 12.88M150.71 567.26s3.936-8.158 16.887-8.158c12.952 0 18.982 30.386 17.805 63.354-1.178 32.968-33.515 61.37-40.58 59.015-7.064-2.354-10.597-3.532-4.71-8.24M172.39 643.31l-22.86 38.166" transform="matrix(-.55826 0 0 .52733 542.482 -66.238)" stroke="#000" fill="none"/> + <path d="M141.29 667.34c0 .416 5.054-1.105 8.587 1.25 3.532 2.354 4.365 5.815 4.365 5.815" transform="matrix(-.55826 0 0 .52733 543.056 -65.9)" stroke="#000" fill="none"/> + <path d="M144.82 650.86s4.517-1.82 10.404.536 5.695 7.662 5.695 7.662" transform="matrix(-.50893 0 0 .37764 533.475 31.672)" stroke="#000" fill="none"/> + <path d="M170.42 741.5c-2.354 0 15.45-19.877-.688-23.897-20.284-3.872-28.744 16.55-26.39 28.323 5.073 28.746 16.898 64.033 52.946 66.388 30.613 2.355 78.45-5.1 108.3-1.523 29.44 3.434 61.94 14.273 73.714 26.048 11.774 11.774 19.112 11.892 19.112 23.667 0 11.774-16.815 17.816-23.476 10.74" transform="matrix(-.55826 0 0 .52733 540.804 -65.096)" stroke="#000" fill="none"/> + <path d="M369.84 876.92c4.305-2.914 14.556-20.425 4.722-30.815-15.194-15.4-26.165-21.48-33.658-23.977M347.55 863.28c5.828-3.532 6.684-15.298.594-24.274-6.09-8.975-21.94-16.165-53.073-18.8-23.582-1.98-87.843 8.445-111.39 1.38-43.928-18.378-53.504-42.635-52.508-81.734 1.52-20.62 12.257-36.587 32.618-39.227 22.858-.143 26.774 11.906 26.774 30.744 0 9.68-9.013 25.715-21.334 23.36-12.322-3.187-21.92-25.012-1.106-36.668" transform="matrix(-.55826 0 0 .52733 540.804 -65.096)" stroke="#000" fill="none"/> + <path d="M337.41 844.59s9.765 5.685 7.41 10.395c-2.354 4.71-8.658 2.7-4.496-2.296" transform="matrix(-.55826 0 0 .52733 540.804 -65.096)" stroke="#000" fill="none"/> + <path d="M238.95 291.4s-6.66 6.66-3.33 22.48 9.99 14.986 9.99 14.986M216.47 300.55c-.833 1.665-9.706 11.858-4.71 22.68 4.995 10.825 8.956 12.978 8.956 12.978M193.99 313.87s-7.195 10.622-8.567 29.555 7.79 45 7.533 54.698c-.58 20.61-24.012 30.84-24.012 30.84M159.85 543.66c1.665 0 34.135-29.972 34.135 76.597-2.498 61.61-38.298 67.438-38.298 67.438" transform="matrix(-.55826 0 0 .52733 542.482 -66.238)" stroke="#000" fill="none"/> + <path d="M158.07 701.03c16.205-14.296 47.22 13.112 35.708 38.506" transform="matrix(-.55826 0 0 .52733 542.668 -68.692)" stroke="#000" fill="none"/> + <path d="M167.78 681.47c8.44.785 17.357 6.197 20.496 14.636" transform="matrix(-.55826 0 0 .52733 544.762 -64.59)" stroke="#000" fill="none"/> + <path d="M148.2 477.06s9.99 14.154 24.977 14.154 19.982-15.82 19.982-15.82" transform="matrix(-.55826 0 0 .52733 542.482 -66.238)" stroke="#000" fill="none"/> + <path d="M146.53 484.55s9.158 16.652 24.977 17.484c15.82.833 21.647-10.823 21.647-10.823M179.84 509.52s11.657 4.996 11.657 19.15c0 14.153-10.824 10.823-10.824 10.823" transform="matrix(-.55826 0 0 .52733 542.482 -66.238)" stroke="#000" fill="none"/> + <path d="M353.01 313.46c.416-.416-1.665-9.16 8.326-8.742 9.99.416 6.244 9.574 14.57 12.904 7.91 2.082 22.063 4.164 22.528 4.164s14.62-2.082 22.528-4.164c8.326-3.33 4.58-12.488 14.57-12.904 9.99-.417 7.91 8.326 8.326 8.742" transform="matrix(.55826 0 0 .52733 97.622 -66.238)" stroke="#000" fill="none"/> + <path d="M373.28 349.42c-.294-4.12-1.25-9.55-6.87-9.966-10.526-.345-18.857 20.605 4.443 20.753 17.055.11 17.198-32.355.804-32.83-23.55-.668-26.788 13.388-26.402 16.142 5.957-50.398-33.246-40.207-31.373-59.77.207-10.607 10.85-11.823 22.48-9.858 17.458 2.8 14.15 30.967 62.077 30.198 47.926.77 44.618-27.4 62.077-30.198 11.63-1.965 22.272-.75 22.48 9.857 1.872 19.563-37.33 9.372-31.374 59.77.386-2.755-2.853-16.81-26.402-16.144-16.393.476-16.25 32.942.805 32.83 23.3-.147 14.97-21.097 4.444-20.752-5.623.416-6.578 5.845-6.872 9.966" transform="matrix(.55826 0 0 .52733 97.622 -66.238)" stroke="#000" fill="none"/> + <path d="M409.35 355.013l.067.4-6.284 1.55-.066-.4.4-.1c.35-.086.616-.23.804-.435.137-.14.227-.34.27-.607.036-.19-.006-.652-.127-1.388l-1.594-9.666c-.125-.75-.235-1.212-.332-1.384-.095-.17-.255-.3-.48-.388-.218-.098-.495-.105-.832-.022l-.4.098-.065-.4 6.284-1.548.066.4-.4.098c-.347.086-.616.23-.804.435-.136.14-.228.343-.277.61-.037.19.006.653.127 1.39l1.594 9.665c.125.75.234 1.213.33 1.384.102.17.262.304.48.4.225.088.504.09.84.007l.4-.097zM400.082 342.7l.426 4.022-.322.05c-.29-.896-.573-1.53-.848-1.892-.278-.373-.632-.647-1.063-.824-.242-.095-.647-.097-1.214-.007l-.903.142 1.216 11.465c.08.76.163 1.23.25 1.408.09.18.244.327.456.44.216.108.5.133.846.078l.402-.064.043.405-6.363 1.01-.043-.406.404-.065c.352-.056.628-.178.828-.366.143-.128.247-.32.31-.584.048-.187.032-.652-.047-1.397l-1.218-11.466-.878.14c-.818.13-1.39.435-1.716.92-.458.672-.697 1.568-.72 2.686l-.338.054-.427-4.022 10.92-1.732zM354.9 348.85l.404 6.136.352-.035c.54-.052.975-.194 1.304-.427.33-.23.596-.594.798-1.087.21-.494.324-1.145.344-1.953l.315-.03.495 7.5-.315.032c-.208-1.405-.58-2.308-1.12-2.705-.536-.406-1.126-.576-1.767-.513l-.352.035.302 4.572c.05.764.114 1.238.193 1.422.084.184.23.34.44.467.213.12.49.162.832.128l.406-.04.028.41-6.387.63-.026-.41.404-.04c.356-.034.635-.14.842-.314.15-.12.258-.306.325-.564.054-.184.057-.65.008-1.398l-.65-9.828c-.05-.763-.114-1.237-.193-1.423-.08-.183-.224-.335-.437-.454-.208-.13-.484-.177-.827-.143l-.404.04-.027-.406 10.307-1.016.282 4.285-.37.035c-.15-.997-.416-1.722-.795-2.173-.376-.45-.897-.743-1.565-.875-.367-.076-1.038-.064-2.01.032l-1.136.11zM331.466 349.083v4.055h-.325c-.192-.935-.406-1.607-.64-2.01-.237-.413-.56-.742-.968-.985-.23-.132-.63-.198-1.203-.198h-.913v11.56c0 .767.032 1.246.1 1.437.07.192.207.362.406.51.204.138.48.208.83.208h.407v.41h-6.417v-.41h.407c.355 0 .642-.077.86-.232.155-.104.278-.28.37-.53.066-.177.098-.64.098-1.392v-11.56h-.885c-.826 0-1.426.212-1.8.64-.523.596-.855 1.447-.994 2.552h-.343v-4.055h11.01zM318.794 363.664v.41h-6.408v-.41h.406c.356 0 .642-.077.86-.232.155-.104.277-.28.36-.53.066-.177.1-.64.1-1.392v-9.86c0-.766-.034-1.245-.1-1.437-.066-.19-.202-.357-.406-.496-.2-.15-.47-.223-.814-.223h-.406v-.407h6.408v.407h-.407c-.355 0-.642.078-.858.232-.158.104-.282.28-.373.532-.066.176-.098.64-.098 1.392v9.86c0 .766.03 1.245.097 1.435.073.193.21.362.408.51.205.14.48.21.822.21h.407zM302.683 349.083l6.047 9.294v-6.444c0-.898-.106-1.505-.317-1.822-.29-.427-.775-.633-1.455-.62v-.407h4.05v.407c-.52.082-.868.19-1.05.32-.174.127-.313.337-.415.63-.097.29-.145.786-.145 1.493v12.48h-.307l-8.287-12.48v9.528c0 .863.16 1.446.478 1.747.327.302.698.453 1.113.453h.29v.41h-4.348v-.41c.675-.007 1.144-.177 1.41-.507.265-.332.398-.896.398-1.692v-10.576l-.263-.398c-.26-.398-.487-.66-.686-.784-.2-.127-.486-.196-.86-.212v-.407h4.35zM297.582 348.1l-.013.406c-.45.066-.857.338-1.222.813-.265.356-.67 1.202-1.216 2.538l-4.6 11.23-.298-.014-3.802-12.116c-.457-1.46-.77-2.32-.935-2.58-.16-.257-.477-.432-.95-.523l.013-.407 5.87.293-.013.408-.2-.01c-.53-.026-.892.037-1.09.19-.143.104-.218.262-.225.475-.004.132.013.292.057.48.04.178.186.67.437 1.47l2.36 7.585 2.644-6.517c.316-.787.513-1.315.587-1.584.075-.27.117-.5.123-.69.007-.222-.034-.42-.125-.593-.09-.175-.228-.31-.41-.408-.256-.137-.598-.22-1.025-.24l.014-.407 4.018.2zM275.957 346.22l-.143 4.993-.37-.027c-.114-1.263-.494-2.298-1.143-3.105-.642-.813-1.36-1.25-2.154-1.308-.613-.045-1.11.123-1.49.5-.376.373-.576.82-.6 1.34-.017.332.032.63.145.898.158.357.422.72.79 1.087.272.264.902.74 1.895 1.433 1.39.965 2.316 1.85 2.777 2.65.457.802.66 1.694.613 2.68-.06 1.25-.514 2.298-1.357 3.146-.838.838-1.87 1.213-3.098 1.124-.385-.03-.747-.102-1.084-.223-.34-.12-.76-.33-1.265-.635-.28-.168-.514-.258-.7-.272-.158-.01-.326.05-.507.184-.183.134-.334.348-.458.643l-.333-.024.276-5.65.332.025c.188 1.607.637 2.86 1.35 3.75.716.89 1.51 1.363 2.382 1.426.674.05 1.22-.136 1.64-.555.424-.42.65-.93.68-1.524.018-.354-.044-.7-.184-1.043-.135-.342-.35-.672-.65-.988-.298-.325-.832-.755-1.603-1.29-1.08-.752-1.852-1.38-2.316-1.885-.466-.507-.816-1.06-1.053-1.66-.23-.6-.328-1.25-.294-1.95.058-1.192.466-2.18 1.223-2.966s1.678-1.14 2.767-1.06c.397.028.78.114 1.146.26.278.11.614.3 1.004.57.398.266.68.405.84.417.157.012.283-.037.378-.15.097-.11.195-.387.294-.83l.27.02zM267.58 345.734l-.04.405c-.45.024-.872.258-1.267.697-.286.332-.742 1.138-1.367 2.42l-5.28 10.777-.295-.042-3.046-12.43c-.366-1.5-.625-2.386-.774-2.66-.144-.27-.45-.474-.916-.61l.04-.404 5.835.832-.04.405-.197-.028c-.527-.075-.894-.046-1.1.088-.15.09-.233.242-.253.454-.013.13-.003.29.027.48.03.184.147.687.347 1.51l1.89 7.78 3.034-6.256c.362-.758.59-1.266.683-1.527.092-.262.147-.488.165-.677.02-.22-.008-.42-.09-.603-.078-.182-.207-.33-.384-.444-.244-.16-.58-.273-1.004-.334l.038-.405 3.995.57zM253.654 344.494l-.476 4.014-.322-.057c-.08-.96-.215-1.66-.4-2.102-.183-.45-.463-.83-.84-1.144-.21-.17-.6-.307-1.167-.407l-.905-.16-1.356 11.442c-.09.757-.115 1.236-.072 1.437.05.203.164.395.343.575.188.174.453.292.8.353l.403.072-.048.405-6.35-1.126.047-.405.4.072c.354.062.645.036.88-.08.165-.074.31-.226.427-.46.086-.162.174-.616.262-1.36l1.356-11.44-.878-.156c-.816-.145-1.434-.04-1.855.32-.59.497-1.015 1.28-1.283 2.35l-.34-.06.476-4.013 10.896 1.93zM224.544 353.9l-.08.398-6.227-1.845.08-.397.395.117c.344.102.638.11.878.02.173-.054.323-.19.454-.41.097-.153.22-.594.364-1.324l1.9-9.584c.146-.744.205-1.22.18-1.425-.028-.203-.128-.404-.3-.598-.166-.202-.415-.352-.748-.45l-.396-.118.08-.396 6.227 1.845-.078.396-.396-.118c-.344-.102-.638-.11-.878-.022-.173.056-.327.193-.462.41-.098.152-.22.595-.366 1.325l-1.898 9.582c-.148.745-.207 1.22-.18 1.424.033.21.132.413.297.613.172.195.425.342.758.44l.396.117zM220.118 338.24l-.085.393c-.45-.054-.895.106-1.336.473-.322.28-.866 1-1.633 2.16l-6.467 9.76-.288-.092-1.586-12.83c-.19-1.55-.343-2.47-.46-2.767-.11-.294-.39-.547-.837-.76l.085-.395 5.682 1.83-.085.393-.193-.062c-.513-.166-.88-.2-1.1-.103-.157.065-.258.2-.302.406-.028.128-.037.29-.03.483.01.185.068.703.17 1.55l.975 8.03 3.725-5.672c.448-.687.732-1.15.852-1.393.12-.244.2-.46.24-.643.047-.215.04-.418-.018-.612-.058-.194-.168-.362-.33-.506-.225-.2-.544-.37-.958-.503l.085-.393 3.89 1.252zM414.96 339.425c1.927-.395 3.573.048 4.936 1.325 1.37 1.276 2.17 3.017 2.404 5.224.2 1.886-.076 3.617-.825 5.19-.995 2.09-2.58 3.31-4.763 3.655-2.187.346-3.974-.293-5.36-1.916-1.1-1.28-1.75-2.905-1.96-4.87-.233-2.208.184-4.142 1.254-5.805 1.075-1.672 2.512-2.608 4.315-2.805zm.182.685c-1.11.176-1.883 1.004-2.315 2.486-.352 1.214-.414 2.888-.187 5.023.268 2.534.83 4.35 1.69 5.447.598.768 1.354 1.078 2.267.933.617-.097 1.112-.362 1.484-.792.478-.552.81-1.36.993-2.43.182-1.078.187-2.442.012-4.094-.21-1.964-.514-3.41-.916-4.334-.403-.93-.86-1.563-1.368-1.89-.503-.328-1.055-.446-1.66-.35zM368.16 346.463c1.94-.28 3.565.26 4.876 1.616 1.317 1.355 2.047 3.14 2.194 5.36.125 1.895-.217 3.607-1.03 5.135-1.076 2.03-2.71 3.15-4.9 3.368-2.2.217-3.96-.527-5.28-2.23-1.044-1.346-1.632-3.006-1.762-4.982-.147-2.218.346-4.125 1.48-5.722 1.14-1.606 2.614-2.455 4.42-2.545zm.154.695c-1.117.11-1.92.89-2.41 2.346-.4 1.192-.53 2.86-.388 5.006.168 2.547.66 4.395 1.473 5.54.565.805 1.308 1.16 2.228 1.068.618-.06 1.123-.296 1.512-.704.498-.522.86-1.31 1.086-2.368.227-1.065.284-2.428.175-4.088-.13-1.974-.376-3.436-.742-4.384-.365-.953-.795-1.61-1.29-1.967-.49-.36-1.037-.51-1.644-.45zM380.992 353.26l.442 4.164c.085.804.177 1.307.278 1.506.105.19.265.332.482.425.216.092.602.093 1.158.005l.043.406-6.22.987-.044-.406c.563-.09.936-.21 1.12-.366.19-.164.312-.355.367-.57.063-.218.05-.73-.035-1.534l-1.023-9.645c-.087-.803-.182-1.3-.287-1.49-.1-.202-.258-.348-.475-.44s-.602-.094-1.158-.005l-.043-.404 5.647-.895c1.47-.233 2.56-.28 3.268-.14.707.14 1.31.513 1.814 1.116.5.6.797 1.347.893 2.244.115 1.097-.112 2.053-.68 2.872-.365.518-.905.95-1.622 1.294l3.456 4.568c.45.59.767.95.944 1.087.27.187.567.266.892.237l.043.406-3.828.607-4.636-6.152-.798.127zm-.774-7.29l.69 6.51.512-.08c.83-.13 1.442-.322 1.834-.57.393-.255.68-.643.862-1.162.188-.527.24-1.18.157-1.963-.12-1.134-.428-1.935-.92-2.407-.488-.472-1.213-.633-2.176-.48l-.96.152zM427.5 345.093l.856 4.067c.165.785.306 1.27.426 1.453.123.174.297.29.52.35.225.06.608.002 1.15-.168l.084.396-6.075 1.91-.082-.396c.548-.172.906-.35 1.074-.53.17-.192.272-.4.307-.623.04-.223-.024-.73-.19-1.515l-1.98-9.42c-.164-.785-.308-1.264-.432-1.437-.12-.185-.29-.306-.514-.364s-.608-.004-1.15.166l-.083-.394 5.515-1.733c1.436-.452 2.51-.66 3.227-.627.718.033 1.355.312 1.912.836.558.518.928 1.216 1.112 2.093.225 1.07.096 2.054-.388 2.952-.31.568-.802 1.078-1.48 1.526l3.888 4.018c.507.517.854.83 1.046.938.285.146.59.18.908.102l.084.396-3.738 1.175-5.217-5.412-.78.245zm-1.496-7.12l1.337 6.36.5-.157c.81-.255 1.4-.535 1.763-.84.365-.312.61-.74.74-1.282.132-.55.118-1.208-.043-1.972-.232-1.107-.616-1.857-1.153-2.25-.532-.396-1.268-.448-2.206-.153l-.936.294zM233.39 348.923l-.516 4.15c-.1.802-.125 1.317-.074 1.542.06.22.18.41.367.572.188.16.558.293 1.113.397l-.05.404-6.202-1.156.05-.405c.56.104.946.113 1.158.027.22-.095.38-.236.483-.425.107-.19.213-.684.313-1.486l1.2-9.615c.1-.803.12-1.312.062-1.53-.052-.228-.17-.422-.358-.583-.186-.16-.558-.295-1.112-.398l.05-.404 5.63 1.05c1.466.274 2.523.597 3.17.97s1.146.938 1.49 1.688c.347.743.465 1.563.353 2.458-.136 1.093-.57 1.935-1.303 2.53-.468.374-1.085.606-1.852.694l2.287 5.56c.3.717.522 1.173.662 1.363.217.27.484.446.803.528l-.05.405-3.816-.712-3.063-7.48-.796-.147zm.908-7.267l-.81 6.49.51.096c.828.154 1.458.18 1.893.073.434-.112.798-.388 1.09-.825.3-.443.498-1.055.595-1.834.14-1.13.027-2.004-.34-2.624-.362-.62-1.022-1.02-1.98-1.198l-.957-.178zM339.358 359.737l-4.324.223-.465 1.485c-.154.493-.223.9-.212 1.216.014.42.162.723.446.908.168.11.57.177 1.21.202l.014.41-4.072.21-.014-.41c.437-.103.79-.343 1.06-.717.272-.384.594-1.156.97-2.32l3.97-12.172.17-.008 4.84 12.05c.46 1.142.832 1.857 1.114 2.144.212.218.505.337.88.353l.013.408-5.923.306-.014-.41.243-.012c.475-.024.806-.122.993-.294.128-.124.188-.297.18-.518-.004-.133-.027-.268-.067-.406-.015-.065-.114-.338-.3-.815l-.715-1.833zm-.335-.8l-2-5.064-1.702 5.255 3.703-.19z"/> + </g> + <g fill-rule="evenodd"> + <path fill="#fff600" d="M325.102 227.115h98.908v93.427h-98.908z"/> + <path fill="#cc1900" d="M339.232 133.688h14.13v93.427h-14.13zM367.49 133.688h14.13v93.427h-14.13zM395.75 133.688h14.13v93.427h-14.13z"/> + <path fill="#fff600" d="M325.102 133.688h14.13v93.427h-14.13zM353.362 133.688h14.13v93.427h-14.13zM381.62 133.688h14.13v93.427h-14.13zM409.88 133.688h14.13v93.427h-14.13z"/> + <path fill="#cc1900" d="M249.274 236.46h10.99v84.082h-10.99zM271.253 236.46h10.99v84.082h-10.99zM293.23 236.46h10.99v84.082h-10.99z"/> + <path fill="#fff600" d="M238.287 236.46h10.99v84.082h-10.99zM260.266 236.46h10.99v84.082h-10.99zM282.245 236.46h10.99v84.082h-10.99zM304.223 236.46h10.99v84.082h-10.99z"/> + <path fill="#cc1900" d="M227.295 236.46h10.99v84.082h-10.99z"/> + <path fill="#fff600" d="M216.308 236.46h10.99v84.082h-10.99z"/> + <path fill="#cc1900" d="M216.308 133.688h98.908v93.427h-98.908z"/> + <path d="M306.436 161.146c2.027-.544 2.324-3.242 2.634-5.465.62-4.445-3.147-8.585-8.41-9.24s-9.976 1.993-10.597 6.44l-4.098 1.564 5.71.71-6.16 2.51 7.628.95-61.476 51.346 3.364 3.696 61.477-51.345c1.623-1.355.45-3.22-1.343-4.753-2.114-1.807-1.572-2.164-1.295-4.153.404-2.898 3.183-4.135 6.34-3.742s5.42 2.877 5.047 5.544c-.186 1.334-.734 2.903-2.153 3.208-2.335 1.15 1.03 4.846 3.332 2.732z" fill="#fff600"/> + <path d="M194.88 361.42v336.61c0 35.434 16.978 53.15 50.934 53.15h118.85c33.957 0 33.957 35.433 33.957 35.433s0-35.433 33.957-35.433h118.85c33.957 0 50.935-17.716 50.935-53.15V361.42h-407.48zm17.716 17.717v177.16h177.17v-177.16h-177.17zm194.88 0v177.16h177.17v-177.16h-177.17zm-194.88 194.88v106.3c0 35.434 16.978 53.15 50.934 53.15H389.76v-159.45H212.6zm372.05 0v106.3c0 35.434-16.977 53.15-50.934 53.15H407.482v-159.45h177.16z" stroke="#000" stroke-width="1pt" fill="#cba323" transform="matrix(.55826 0 0 .52733 97.622 -66.238)"/> + <path d="M265.756 143.034l-19.78 20.02 6.086 36.035h27.39l6.085-36.036-19.78-20.02z" fill="#fff"/> + <path d="M264.24 150.504l-15.216 14.948 6.086 29.896h9.13v-44.842zm3.043 0v44.842h9.13l6.086-29.896-15.217-14.948z" fill="#fff600"/> + <path d="M270.705 199.087h-4.945s2.473 7.74 4.945 7.74c9.89 0 29.722-11.29 29.672-7.74 0 7.74-4.945 3.87-4.945 7.74s9.89 0 9.89-3.87 0-7.74-4.945-7.74-19.324 7.79-24.726 7.74c-4.945 0-4.945-3.87-4.945-3.87zM260.813 199.087h4.945s-2.472 7.74-4.945 7.74c-9.89 0-29.722-11.29-29.672-7.74 0 7.74 4.947 3.87 4.947 7.74s-9.89 0-9.89-3.87 0-7.74 4.944-7.74c4.947 0 19.325 7.79 24.728 7.74 4.945 0 4.945-3.87 4.945-3.87z" fill="#fffbff"/> + <path d="M70.866 574.02c0 35.433 28.704 36.668 17.717 53.15L53.15 680.32H35.434l17.716-53.15c5.905-17.717 17.716-65.374 17.716-53.15z" transform="matrix(.2077 .03556 -.04452 .16587 400.283 156.016)" stroke="#fff600" stroke-width="5" fill="#cc1900"/> + <path d="M35.433 423.42c0 3.667 2.242 31.888 0 35.067-2.242 3.18-8.97-18.684-12.977-16.28-4.008 2.406-7.603 24.16-12.902 25.505-5.298 1.35-12.3-17.71-18.412-17.71-6.112 0-11.937 19.062-17.235 17.717-5.298-1.347-10.07-23.1-14.08-25.505-4.007-2.405-10.734 19.458-12.976 16.28-2.24-3.18 0-31.4 0-35.068 0-14.67 19.843-26.575 44.292-26.575s44.29 11.906 44.29 26.575z" transform="matrix(.1662 0 0 .0849 390.115 224.105)" stroke="#fff600" stroke-width="7.99" fill="#cc1900"/> + <path d="M354.018 239.22c2.18 1.005 2.003 2.68 1.26 3.01-.74.327-1.768-.816-3.948-1.82s-4.692-1.494-3.95-1.822 4.458-.373 6.638.632z" fill="#008d00"/> + <path d="M-70.866 414.57v53.15h53.15v-17.717H-53.15V414.57h-17.715z" transform="matrix(.11356 .14336 -.1795 .0907 443.015 228.556)" stroke="#fff600" stroke-width="5" fill="#cc1900"/> + <path d="M70.866 574.02c0 35.433 28.704 36.668 17.717 53.15L53.15 680.32H35.434l17.716-53.15c5.905-17.717-17.716-35.434-70.866 0-12.224 0-70.866-8.964-70.866 0v53.15h-17.716v-53.15c0-6.942-35.433-53.15-35.433-70.867 0-12.224-53.15 0-53.15-17.716 0-8.86 35.432-17.717 35.432-35.433 0-17.717 35.433 0 53.15 0 0 17.716-17.717 35.433 17.716 35.433 24.45 0 177.17 0 177.17 17.716 0 17.717-17.717 5.493-17.717 17.717z" stroke="#fff600" stroke-width="5" fill="#cc1900" transform="matrix(.2124 0 0 .16964 384.88 156.03)"/> + <path d="M363.552 271.44c2.043-.012 2.78 1.506 2.427 2.09-.352.58-1.66.008-3.7.02s-4.054.602-3.702.02 2.932-2.12 4.974-2.13zM393.657 271.44c2.043-.012 2.778 1.506 2.427 2.09-.352.58-1.658.008-3.7.02s-4.053.602-3.702.02 2.932-2.12 4.975-2.13zM358.797 267.24c1.656-.954 3.358-.058 3.494.58.137.637-1.343.775-3 1.73s-2.864 2.367-3 1.73.85-3.085 2.507-4.04zM379.016 268.953c2.04-.055 2.828 1.447 2.496 2.037-.332.59-1.657.044-3.7.1s-4.03.69-3.698.1 2.86-2.182 4.902-2.237zM353.34 251.02l8.96-5.484 2.29 2.386-8.96 5.485z" fill="#008d00"/> + <path d="M357.06 254.91c0 .83-.51 1.502-1.142 1.502s-1.143-.673-1.143-1.503.512-1.504 1.143-1.504 1.143.673 1.143 1.503z" fill="#008d00"/> + <path d="M47.995 681.85c34.086.02 34.086 12.9 19.835 12.9-19.835 0-67.83 4.38-67.83 3.28 0-1.102-16.484-14.202-16.484-14.202-1.232-3.513 1.177 14.128-1.232 14.203-2.41.075-16.43-15.38-16.43-15.38s1.288 15.232 0 15.307c-1.287.074-17.66-9.42-17.66-9.42l-1.178 8.242-15.306 9.42 15.306 10.596v8.242l15.306-8.242 1.178 15.306 18.84-15.306s4.763 16.3 2.353 16.484c-2.41.185 16.484-16.484 16.484-16.484-1.178-1.05 54.051 0 87.405-1.05 33.355-1.048 32.747-51.937 17.717-53.15-15.033-1.213-58.306 3.33-58.306-.203" transform="matrix(.1104 0 0 .12676 390.87 165.343)" stroke="#fff600" stroke-width="5.055" fill="#cc1900"/> + <g> + <path d="M70.866 574.02c0 35.433 28.704 36.668 17.717 53.15L53.15 680.32H35.434l17.716-53.15c5.905-17.717 17.716-65.374 17.716-53.15z" transform="matrix(.2077 .03556 -.04452 .16587 400.283 193.388)" stroke="#fff600" stroke-width="5" fill="#cc1900"/> + <path d="M35.433 423.42c0 3.667 2.242 31.888 0 35.067-2.242 3.18-8.97-18.684-12.977-16.28-4.008 2.406-7.603 24.16-12.902 25.505-5.298 1.35-12.3-17.71-18.412-17.71-6.112 0-11.937 19.062-17.235 17.717-5.298-1.347-10.07-23.1-14.08-25.505-4.007-2.405-10.734 19.458-12.976 16.28-2.24-3.18 0-31.4 0-35.068 0-14.67 19.843-26.575 44.292-26.575s44.29 11.906 44.29 26.575z" transform="matrix(.1662 0 0 .0849 390.115 261.477)" stroke="#fff600" stroke-width="7.99" fill="#cc1900"/> + <path d="M354.018 276.592c2.18 1.005 2.003 2.68 1.26 3.01-.74.327-1.768-.817-3.948-1.822s-4.692-1.492-3.95-1.82 4.458-.373 6.638.632z" fill="#008d00"/> + <path d="M-70.866 414.57v53.15h53.15v-17.717H-53.15V414.57h-17.715z" transform="matrix(.11356 .14336 -.1795 .0907 443.015 265.928)" stroke="#fff600" stroke-width="5" fill="#cc1900"/> + <path d="M70.866 574.02c0 35.433 28.704 36.668 17.717 53.15L53.15 680.32H35.434l17.716-53.15c5.905-17.717-17.716-35.434-70.866 0-12.224 0-70.866-8.964-70.866 0v53.15h-17.716v-53.15c0-6.942-35.433-53.15-35.433-70.867 0-12.224-53.15 0-53.15-17.716 0-8.86 35.432-17.717 35.432-35.433 0-17.717 35.433 0 53.15 0 0 17.716-17.717 35.433 17.716 35.433 24.45 0 177.17 0 177.17 17.716 0 17.717-17.717 5.493-17.717 17.717z" stroke="#fff600" stroke-width="5" fill="#cc1900" transform="matrix(.2124 0 0 .16964 384.88 193.4)"/> + <path d="M363.552 308.81c2.043-.01 2.78 1.508 2.427 2.09-.352.583-1.66.01-3.7.02s-4.054.604-3.702.022 2.932-2.12 4.974-2.13zM393.657 308.81c2.043-.01 2.778 1.508 2.427 2.09-.352.583-1.658.01-3.7.02s-4.053.604-3.702.022 2.932-2.12 4.975-2.13zM358.797 304.612c1.656-.955 3.358-.058 3.494.58.137.637-1.343.775-3 1.73s-2.864 2.367-3 1.73.85-3.085 2.507-4.04zM379.016 306.325c2.04-.055 2.828 1.447 2.496 2.037-.332.59-1.657.044-3.7.1s-4.03.688-3.698.1 2.86-2.183 4.902-2.237zM353.34 288.393l8.96-5.485 2.29 2.386-8.96 5.485zM357.06 292.28c0 .83-.51 1.504-1.142 1.504s-1.143-.673-1.143-1.503.512-1.502 1.143-1.502 1.143.673 1.143 1.503z" fill="#008d00"/> + <path d="M47.995 681.85c34.086.02 34.086 12.9 19.835 12.9-19.835 0-67.83 4.38-67.83 3.28 0-1.102-16.484-14.202-16.484-14.202-1.232-3.513 1.177 14.128-1.232 14.203-2.41.075-16.43-15.38-16.43-15.38s1.288 15.232 0 15.307c-1.287.074-17.66-9.42-17.66-9.42l-1.178 8.242-15.306 9.42 15.306 10.596v8.242l15.306-8.242 1.178 15.306 18.84-15.306s4.763 16.3 2.353 16.484c-2.41.185 16.484-16.484 16.484-16.484-1.178-1.05 54.051 0 87.405-1.05 33.355-1.048 32.747-51.937 17.717-53.15-15.033-1.213-58.306 3.33-58.306-.203" transform="matrix(.1104 0 0 .12676 390.87 202.715)" stroke="#fff600" stroke-width="5.055" fill="#cc1900"/> + </g> + </g> +</svg> diff --git a/s/flag/ae.svg b/s/flag/ae.svg new file mode 100755 index 0000000..02e2942 --- /dev/null +++ b/s/flag/ae.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="480" width="640"> + <g clip-path="url(#a)" fill-rule="evenodd" transform="matrix(1.3333 0 0 1 -85.333 0)"> + <path fill="red" d="M0 0h192v512H0z"/> + <path d="M192 340.06h576V512H192z"/> + <path fill="#fff" d="M192 172.7h576v169.65H192z"/> + <path fill="#00732f" d="M192 0h576v172.7H192z"/> + </g> +</svg> diff --git a/s/flag/af.svg b/s/flag/af.svg new file mode 100755 index 0000000..57c6e09 --- /dev/null +++ b/s/flag/af.svg @@ -0,0 +1,433 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path d="M-85.333 0h682.65v512h-682.65z"/> + <path fill="#090" d="M369.762 0h227.555v512H369.762z"/> + <path fill="#bf0000" d="M142.22 0h227.556v512H142.22z"/> + </g> + <path d="M398.352 265.182c-.11.58 1.454 1.433 1.826.99 1.682-2.015 3.883-5.97 4.334-8.364.133-.697-2.107-1.485-2.586-.913-1.575 1.886-3.1 5.773-3.574 8.287zM188.016 387.838c-1.675 5.917-26.38-5.577-29.138-11.532 14.136 7.49 29.476 5.924 29.138 11.532zM109.91 266.973c1.236 1.47 3.318.485 1.42-1.504-1.552-1.61-1.04-2.117-1.987-4.075-.936-2.188-.887-3.395-2.016-4.96-1-1.482-2.5.03-1.495 1.28 1.263 1.476.915 2.564 1.687 3.992 1.426 2.444 1.08 3.727 2.39 5.265zm33.224 40.113c3.974 1.954 6.99 6.836 7.19 10.812.336 4.576.996 8.44 3.05 11.69-3.27-.91-4.837-6.124-5.302-11.118-.47-5.17-3.256-7.41-4.938-11.384zm8.29 9.576c2.75 5.077 6.597 7.013 6.794 10.78.333 4.335.662 4.557 1.837 8.82-3.237-.863-4.052-1.145-4.926-7.632-.54-4.56-4.19-7.775-3.706-11.968z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path stroke-linejoin="round" d="M215.673 343.95c4.208 3.446 6.938 7.382 8.21 12.467 1.328 4.738 3.195 8.515 5.933 12.774-4.46-3.04-7.265-7.18-8.668-12.165-1.232-4.9-2.686-8.563-5.475-13.075zm78.767 0c-4.302 3.466-7.093 7.425-8.394 12.54-1.357 4.766-3.265 8.566-6.064 12.85 4.56-3.06 7.427-7.223 8.86-12.24 1.26-4.928 2.746-8.613 5.597-13.15zm-5.295 0c-4.61 3.62-8.958 7.732-10.26 12.848-1.356 4.765-2.176 8.412-5.285 13.154 4.87-3.06 6.804-7.682 8.238-12.698 1.26-4.928 4.146-8.612 7.308-13.305zm-52.12 19.676c1.544 2.914 3.32 7.35 6.536 6.538.053-2.23-3.47-3.776-6.535-6.538zm4.805.994c6.25 2.56 11.645 1.928 12.317 5.855-5.86.633-8.005-1.775-12.316-5.856zm30.636-.604c-1.567 2.746-3.366 6.928-6.627 6.163-.054-2.105 3.517-3.56 6.625-6.165zm-4.38.836c-6.34 2.43-11.813 1.83-12.496 5.558 5.948.6 8.123-1.684 12.496-5.558z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M273.867 355.958c.124-.89-.482-1.666-1.21-1.9-1.42-.533-2.83-.967-4.237-1.368-1.6-.38-2.494.767-2.5 1.52-.007 1.254-.065 2.318 0 3.268.088 1.183.312 1.27 1.06 1.446 1.197.202 2.732.41 3.935 1.216.953.588 1.87.123 2.345-.91.308-.79.477-2.336.607-3.272zm-17.225 0c-.11-.89.357-1.742 1.007-1.976 1.265-.533 2.527-.663 3.86-.61 1.476-.022 1.85.313 1.853 1.066.008 1.253.06 2.47 0 3.42-.078 1.183-.052 1.27-.72 1.446-1.07.202-2.893.256-3.968 1.064-.852.588-1.823.123-1.87-.987.022-.834-.048-2.485-.164-3.42zm-20.902-.234c-.126-.89.484-1.666 1.215-1.9 1.425-.533 2.844-.967 4.257-1.368 1.606-.38 2.505.767 2.51 1.52.008 1.254.067 2.32 0 3.268-.087 1.184-.313 1.27-1.064 1.446-1.203.203-2.744.41-3.953 1.217-.957.588-1.878.123-2.357-.91-.31-.79-.48-2.337-.61-3.273zm17.302 0c.11-.89-.36-1.742-1.012-1.975-1.273-.535-2.54-.666-3.878-.61-1.485-.025-1.86.31-1.864 1.063-.008 1.254-.06 2.47 0 3.42.078 1.183.052 1.27.724 1.446 1.074.2 2.907.256 3.987 1.064.853.587 1.83.122 1.875-.987-.02-.837.05-2.488.166-3.424zM185.47 238.518c-2.012-3.23-4.42 4.48-12.69 10.216-3.85 2.62-6.53 9.6-6.556 14.195-.127 3.153.35 6.3-.002 9.352-.222 1.93-2.234 6.216-.858 7.312 3.64 2.705 8.35 8.848 10.537 10.967 1.89 1.658 3.53-8.55 4.947-13.117 1.52-4.895.84-10.745 5.055-15.27 2.99-3.052 10.525-6.057 9.678-7.418l-10.11-16.238z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M185.47 238.518c-2.012-3.23-4.42 4.48-12.69 10.216-3.85 2.62-6.53 9.6-6.556 14.195-.127 3.153.35 6.3-.002 9.352-.222 1.93-2.234 6.216-.858 7.312 3.64 2.705 8.35 8.848 10.537 10.967 1.89 1.658 3.53-8.55 4.947-13.117 1.52-4.895.84-10.745 5.055-15.27 2.99-3.052 10.525-6.057 9.678-7.418l-10.11-16.238z" fill-rule="evenodd" fill="#fff"/> + <path d="M173.246 248.074c-.788 5.468 2.256 7.287 5.13 8.346 2.973 1.057 5.41 4.247 6.667 7.133m-19.156 2.524c1.255 4.714 4.558 4.124 7.43 5.183 2.975 1.057 6.102 4.817 7.358 7.703" stroke="#000" stroke-width=".487" fill="none"/> + <path d="M182.686 235.19l1.506-.967 28.922 48.71-1.504.967-28.924-48.71z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M182.686 235.19l1.506-.967 28.922 48.71-1.504.967-28.924-48.71z" fill-rule="evenodd" fill="#fff"/> + <path d="M185.8 233.263c0 1.84-1.493 3.333-3.333 3.333s-3.334-1.492-3.334-3.333 1.493-3.333 3.334-3.333c1.84 0 3.333 1.492 3.333 3.333z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M185.8 233.263c0 1.84-1.493 3.333-3.333 3.333s-3.334-1.492-3.334-3.333 1.493-3.333 3.334-3.333c1.84 0 3.333 1.492 3.333 3.333z" fill-rule="evenodd" fill="#fff"/> + <path d="M274.79 144.77c-1.033-1.66-2.27 2.3-6.52 5.25-1.977 1.345-3.355 4.932-3.368 7.292-.065 1.62.18 3.238 0 4.806-.115.992-1.15 3.194-.442 3.757 1.87 1.39 4.29 4.546 5.414 5.635.97.85 1.812-4.393 2.54-6.74.782-2.515.432-5.52 2.598-7.845 1.535-1.57 5.407-3.113 4.972-3.812l-5.194-8.343z" fill-rule="evenodd" transform="matrix(-1.9453 0 0 2.0144 859.49 -52.133)" stroke="#000" stroke-width=".492" fill="#fff"/> + <path d="M324.944 239.495c2.01-3.342 4.415 4.635 12.68 10.574 3.85 2.71 6.53 9.935 6.555 14.69.124 3.264-.353 6.522 0 9.68.22 2 2.233 6.434.857 7.57-3.637 2.8-8.347 9.156-10.53 11.35-1.89 1.714-3.526-8.85-4.944-13.578-1.52-5.066-.84-11.12-5.052-15.803-2.985-3.16-10.517-6.27-9.67-7.68l10.103-16.806z" fill-rule="evenodd" fill="#fff"/> + <path d="M273.36 143.06l.774-.497 14.86 25.027-.773.497-14.86-25.027z" fill-rule="evenodd" transform="matrix(-1.9453 0 0 2.0144 859.49 -52.133)" stroke="#000" stroke-width=".492" fill="#fff"/> + <path d="M268.43 149.76c-.405 2.81 1.237 3.665 2.713 4.21 1.528.542 2.86 2.063 3.504 3.546" transform="matrix(-1.9453 0 0 2.0144 859.49 -52.133)" stroke="#000" stroke-width=".25" fill="none"/> + <path d="M267.35 151.26c.645 2.422 2.264 2.005 3.74 2.55 1.528.542 3.135 2.32 3.78 3.802" transform="matrix(-1.9453 0 0 2.0144 864.433 -36.44)" stroke="#000" stroke-width=".25" fill="none"/> + <path d="M327.725 236.05l-1.505-1-28.907 50.414 1.503 1 28.91-50.414z" fill-rule="evenodd" fill="#fff"/> + <path d="M274.96 142.07c0 .946-.767 1.713-1.713 1.713-.945 0-1.712-.767-1.712-1.713s.767-1.713 1.712-1.713c.946 0 1.713.767 1.713 1.713z" fill-rule="evenodd" transform="matrix(-1.9453 0 0 2.0144 859.49 -52.133)" stroke="#000" stroke-width=".492" fill="#fff"/> + <path d="M324.613 234.056c0 1.905 1.49 3.45 3.33 3.45s3.333-1.545 3.333-3.45-1.492-3.45-3.332-3.45c-1.84 0-3.33 1.545-3.33 3.45z" fill-rule="evenodd" fill="#fff"/> + <g fill-rule="evenodd" fill="#fff"> + <path stroke="#000" stroke-width=".973" d="M210.515 194.123h11.72v2.688h-11.72zm0 5.08h11.72v22.456h-11.72zm-.7-8.155l13 .076c.51-4.41-3.892-9.17-6.46-9.123-2.54.125-6.64 4.818-6.54 9.05zm77.695 3.132h11.72v2.69h-11.72zm0 5.1h11.72v22.457h-11.72zm-.708-8.156l13 .076c.51-4.41-3.89-9.17-6.46-9.122-2.54.122-6.64 4.815-6.54 9.046z"/> + <path d="M210.515 194.123h11.72v2.688h-11.72zm0 5.08h11.72v22.456h-11.72zm-.7-8.155l13 .076c.51-4.41-3.892-9.17-6.46-9.123-2.54.125-6.64 4.818-6.54 9.05zm77.695 3.132h11.72v2.69h-11.72zm0 5.1h11.72v22.457h-11.72zm-.708-8.156l13 .076c.51-4.41-3.89-9.17-6.46-9.122-2.54.122-6.64 4.815-6.54 9.046z"/> + </g> + <path fill-rule="evenodd" fill="#fff" d="M287.51 199.28h11.72v22.457h-11.72zm0-5.1h11.72v2.69h-11.72zm-.7-3.054l13 .076c.51-4.41-3.89-9.17-6.46-9.123-2.54.12-6.64 4.813-6.54 9.045zm-76.295 8.077h11.72v22.456h-11.72zm0-5.08h11.72v2.688h-11.72zm-.7-3.075l13 .076c.51-4.41-3.892-9.17-6.46-9.123-2.54.125-6.64 4.818-6.54 9.05z"/> + <g fill-rule="evenodd" fill="#fff"> + <path d="M200.764 225.478l7.452 8.21 92.757.153 7.604-8.21-23.72-.303-11.558-8.06-37.258-.15-10.797 8.362h-24.482z" stroke="#000" stroke-width=".973"/> + <path d="M200.764 225.478l7.452 8.21 92.757.153 7.604-8.21-23.72-.303-11.558-8.06-37.258-.15-10.797 8.362h-24.482z"/> + </g> + <path d="M238.736 212.808l32.03-.034c4.337-2.292 5.69-9.614 5.668-13.71-.06-12.103-8.525-17.907-17.02-18.217-1.273-.064-2.75-1.055-3.087-2.215-.837-2.627-.62-9.468-1.538-9.375-.817-.012-.578 6.697-1.304 9.16-.4 1.228-1.777 2.436-3.15 2.506-10.575.528-17.395 8.247-17.128 18.14.178 6.54.94 10.447 5.526 13.745z" stroke="#000" stroke-width=".973" fill="none"/> + <path d="M238.736 212.808l32.03-.034c4.337-2.292 5.69-9.614 5.668-13.71-.06-12.103-8.525-17.907-17.02-18.217-1.273-.064-2.75-1.055-3.087-2.215-.837-2.627-.62-9.315-1.538-9.375-.663.064-.578 6.697-1.304 9.16-.4 1.228-1.777 2.436-3.15 2.506-10.575.528-17.395 8.247-17.128 18.14.178 6.54.94 10.447 5.526 13.745z" fill-rule="evenodd" fill="#fff"/> + <path d="M236.732 202.142c.807 3.988 2.728 3.377 2.586 1.446-.473-6.16.026-12.227 5.473-16.27 1.73-1.266-.2-2.434-1.67-1.825-4.632 1.948-7.446 10.88-6.387 16.65z" stroke="#000" stroke-width=".487" fill="none"/> + <path d="M242.12 204.654c.808 3.988 4.107 3.815 3.5 1.218-1.236-4.973-1.04-12.226 3.343-15.358 1.73-1.26-.202-2.433-1.672-1.824-4.63 1.95-6.23 10.195-5.17 15.964z" stroke="#000" stroke-width=".487" fill="none"/> + <path d="M301.46 125.42c.415 2.05 1.402 1.735 1.33.743-.244-3.165.012-6.282 2.81-8.36.888-.65-.103-1.25-.858-.937-2.38 1-3.826 5.59-3.282 8.554z" transform="matrix(-1.9484 0 0 1.9463 860.365 -41.81)" stroke="#000" stroke-width=".25" fill="none"/> + <path d="M302.08 125.07c.415 2.05 2.11 1.96 1.798.626-.635-2.555-.534-6.282 1.718-7.89.89-.648-.104-1.25-.86-.938-2.38 1-3.2 5.238-2.656 8.202z" transform="matrix(-1.9484 0 0 1.9463 856.18 -38.618)" stroke="#000" stroke-width=".25" fill="none"/> + <g fill-rule="evenodd" fill="#fff"> + <path d="M186.01 330.247h137.62l-12.32-10.037H198.327l-12.316 10.037z" stroke="#000" stroke-width=".973"/> + <path d="M186.01 330.247h137.62l-12.32-10.037H198.327l-12.316 10.037z"/> + </g> + <g fill="#fff" fill-rule="evenodd"> + <g stroke="#000" stroke-width=".5"> + <path d="M209.892 239.94h13.077v18.094h-13.08zm.758 28.434h12.623v3.802H210.65zm-.29 6.676h12.925v14.142H210.36zm-.916 17.03h14.142v7.908h-14.142zm1.732-27.112h11.395l2.26-3.762h-15.697l2.044 3.762zm15.376-13.858l.107-9.89h7.85c-3.085 2.543-5.95 5.626-7.96 9.89zm72.888-11.17h-12.856v18.094h12.857zm-.213 28.434H286.82v3.802h12.407zm.233 6.676h-12.635v14.142h12.636zm.818 17.03h-13.902v7.908h13.902z" stroke-width=".973"/> + <path d="M288.44 157.7h5.855l1.16-1.933h-8.065l1.05 1.933z" transform="matrix(-1.9134 0 0 1.9463 850.108 -41.963)"/> + <path d="M296.23 150.58l.055-5.082h4.033c-1.584 1.307-3.057 2.89-4.088 5.082z" transform="matrix(-1.9134 0 0 1.9463 849.894 -41.963)"/> + </g> + <path d="M209.892 239.94h13.077v18.094h-13.08zm.758 28.434h12.623v3.802H210.65zm-.29 6.676h12.925v14.142H210.36zm-.916 17.03h14.142v7.908h-14.142zm1.732-27.112h11.395l2.26-3.762h-15.697l2.044 3.762zm15.376-13.858l.107-9.89h7.85c-3.085 2.543-5.95 5.626-7.96 9.89zm72.888-11.17h-12.856v18.094h12.857zm-.213 28.434H286.82v3.802h12.407zm.233 6.676h-12.635v14.142h12.636zm.818 17.03h-13.902v7.908h13.902zm-2.084-27.112H286.99l-2.22-3.762h15.433l-2.01 3.762zm-15.12-13.858l-.106-9.89h-7.716c3.03 2.543 5.85 5.626 7.822 9.89z"/> + </g> + <path d="M211.916 255.16c.078 2.115 2.474 1.17 2.474.106 0-3.264.043-6.793-.088-9.103-.015-1.703 4.058-1.277 4.035-.228.016 2.756.047 6.536.062 9.76-.03 1.572 2.63 1.436 2.593 0-.016-3.6-.018-8.837 0-11.488.023-3.414-8.963-3.34-9.033-.076.005 2.68-.048 7.48-.044 11.03zm76.944.38c.077 2.115 2.473 1.17 2.473.106 0-3.264.043-6.792-.087-9.103-.016-1.703 4.058-1.276 4.034-.227.016 2.756.047 6.535.062 9.76-.03 1.57 2.554 1.435 2.52 0-.017-3.678.057-8.838.075-11.49.023-3.413-8.963-3.34-9.033-.075.004 2.68-.05 7.48-.045 11.03zm-76.91 21.184h9.276v11.557h-9.276z" stroke="#000" stroke-width=".487" fill="none"/> + <path fill-rule="evenodd" d="M217.886 281.512h3.27v1.9h-3.27zm-5.703 0h3.194v1.9h-3.194z"/> + <path fill-rule="evenodd" d="M215.375 276.88h2.51v4.714h-2.51zm0 6.46h2.51v5.02h-2.51z"/> + <path stroke="#000" stroke-width=".487" fill="none" d="M288.59 276.648h9.275v11.557h-9.276z"/> + <path fill-rule="evenodd" d="M294.525 281.436h3.27v1.9h-3.27zm-5.703 0h3.194v1.9h-3.194z"/> + <path fill-rule="evenodd" d="M292.014 276.804h2.51v4.714h-2.51zm0 6.46h2.51v5.02h-2.51z"/> + <path fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff" d="M280.154 277.327h1.596v11.482h-1.596z"/> + <path d="M249.13 292.547l2.508 7.527h5.7l-4.56-7.53-3.648.003zm-3.192 7.527l1.444 7.45 6.69.076-2.434-7.528-5.7.002zm11.327.076l4.638 7.374h9.504l-7.45-7.452-6.692.078zm-56.112 16.878c5.043-4.69 8.262-8.692 8.288-14.445h12.318c.025 3.22 1.19 5.144 2.966 5.017l12.47-.076-.076-7.374h-9.048l-.003-40.223c-.33-14.217 17.285-22.505 24.484-22.43l-42.805-.075v-1.292h90.022l.076 1.292-43.414.076c12.874.026 25.29 12.217 25.394 22.507v11.404h-1.673l-.075-11.254c0-11.253-14.173-21.77-25.547-21.442-9.835.282-25.09 9.657-24.938 21.366v3.5l23.34.15-.227 4.03 3.665 2.34 7.31 2.33-.107 6.042 5.238 1.543.044 6.038 6.282 2.695v6.25l3.984 2.454-.183 6.347 5.4 3.8H271.56l7.983 8.896H267.76l-5.86-8.896h-7.753l3.498 8.82-8.286-.077-1.98-8.743h-10.11l.074 9.426-36.192.002zm36.116-24.407v7.453h8.667l-1.752-7.45h-6.917z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M249.13 292.547l2.508 7.527h5.7l-4.56-7.53-3.648.003zm-3.192 7.527l1.444 7.45 6.69.076-2.434-7.528-5.7.002zm11.327.076l4.638 7.374h9.504l-7.45-7.452-6.692.078zm-56.112 16.878c5.043-4.69 8.262-8.692 8.288-14.445h12.318c.025 3.22 1.19 5.144 2.966 5.017l12.47-.076-.076-7.374h-9.048l-.003-40.223c-.33-14.217 17.285-22.505 24.484-22.43l-42.805-.075v-1.292h90.022l.076 1.292-43.414.076c12.874.026 25.29 12.217 25.394 22.507v11.404h-1.673l-.075-11.254c0-11.253-14.173-21.77-25.547-21.442-9.835.282-25.09 9.657-24.938 21.366v3.5l23.34.15-.227 4.03 3.665 2.34 7.31 2.33-.107 6.042 5.238 1.543.044 6.038 6.282 2.695v6.25l3.984 2.454-.183 6.347 5.4 3.8H271.56l7.983 8.896H267.76l-5.86-8.896h-7.753l3.498 8.82-8.286-.077-1.98-8.743h-10.11l.074 9.426-36.192.002zm36.116-24.407v7.453h8.667l-1.752-7.45h-6.917z" fill-rule="evenodd" fill="#fff"/> + <path stroke="#000" stroke-width=".483" fill="none" d="M237.724 279.468h5.4v12.392h-5.4z"/> + <path d="M298.05 171.73h2.707l-.017-4.594c-.035-1.997 1.793-4.01 2.668-4.077.97-.038 2.4 1.883 2.448 3.92l.04 4.764 2.87-.006v-11.83l-10.716.056v11.764z" transform="matrix(1.9463 0 0 1.9848 -350 -48.13)" stroke="#000" stroke-width=".25" fill="none"/> + <path stroke="#000" stroke-width=".481" fill="none" d="M271.784 298.172h6.54v5.094h-6.54zm-3.874-8.758h6.54v5.093h-6.54zm-6.305-8.74h6.54v5.094h-6.54zm-5.41-7.374h6.54v5.092h-6.54z"/> + <path d="M251.874 292.762l6.69.227 11.936 10.567v-6.234l-4.03-2.89v-4.942l-5.853-3.343v-5.323l-5.703-1.9V271.7l-2.89-2.356-.15 23.418z" stroke="#000" stroke-width=".487" fill="none"/> + <path fill-rule="evenodd" fill="#fff" d="M280.154 277.327h1.596v11.482h-1.596z"/> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M163.755 161.05c.58 9.07-2.235 14.048-7.038 13.29-1.324-5.03 1.687-8.406 7.038-13.29zm-10.56 20.086c-4.27-2.172-1.19-18.756.45-25.708 1.213 8.955 3.24 21.683-.45 25.708z"/> + <path d="M154.723 181.93c7.178 2.497 12.86-5.233 14.782-14.186-5.924 8.176-15.566 8.186-14.782 14.186zm-5.447 8.36c-5.613-1.483-2.232-19.078-1.212-26.116 1.234 7.27 5.103 23.708 1.212 26.116zm1.917-.54c.314-6.067 6.363-4.314 10.538-7.553-.68 3.033-3.247 8.407-10.536 7.554zm-6.87 8.128c-5.562-1.5-2.22-20.436-2.534-28.233 1.63 6.736 6.793 26.407 2.532 28.233zm2.607-.828c4.557 1.48 10.593-1.48 11.068-6.905-3.924 2.662-10.19.626-11.067 6.905z"/> + <path d="M140.168 206.236c-5.32.425-2.94-15.702-2.935-30.722 1.954 14.04 7.277 26.89 2.935 30.722z"/> + <path d="M142.017 205.51c3.593 1.8 10.03-1.08 11.866-7.148-6.49 2.822-10.83.064-11.866 7.147z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M163.755 161.05c.58 9.07-2.235 14.048-7.038 13.29-1.324-5.03 1.687-8.406 7.038-13.29zm-10.56 20.086c-4.27-2.172-1.19-18.756.45-25.708 1.213 8.955 3.24 21.683-.45 25.708z"/> + <path d="M154.723 181.93c7.178 2.497 12.86-5.233 14.782-14.186-5.924 8.176-15.566 8.186-14.782 14.186zm-5.447 8.36c-5.613-1.483-2.232-19.078-1.212-26.116 1.234 7.27 5.103 23.708 1.212 26.116zm1.917-.54c.314-6.067 6.363-4.314 10.538-7.553-.68 3.033-3.247 8.407-10.536 7.554zm-6.87 8.128c-5.562-1.5-2.22-20.436-2.534-28.233 1.63 6.736 6.793 26.407 2.532 28.233zm2.607-.828c4.557 1.48 10.593-1.48 11.068-6.905-3.924 2.662-10.19.626-11.067 6.905z"/> + <path d="M140.168 206.236c-5.32.425-2.94-15.702-2.935-30.722 1.954 14.04 7.277 26.89 2.935 30.722z"/> + <path d="M142.017 205.51c3.593 1.8 10.03-1.08 11.866-7.148-6.49 2.822-10.83.064-11.866 7.147z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M183.773 169.444c-.946 7.867-4.16 12.445-8.965 11.687-1.323-5.03 2.57-8.244 8.965-11.685zm-12.71 20.203c7.98 1.132 10.855-4.993 16.227-12.823-7.53 5.448-16.53 6.58-16.227 12.823z"/> + <path d="M168.806 188.732c-4.35-5.22-.146-11.775 3.178-17.363-.714 8.31 2.118 12.935-3.178 17.36zm-1.926 8.622c-.492-5.105 8.206-6.24 12.14-9.078-1.324 2.95-3.328 10.894-12.14 9.078z"/> + <path d="M165.05 197.47c-6.015-.68-3.518-10.893.793-16.568-1.815 7.832 3.177 13.277-.794 16.57z"/> + <path d="M160.514 205.976c-6.845-3.026-2.458-11.612.115-16.68-1.1 6.657 4.385 11.725-.117 16.68z"/> + <path d="M161.877 205.178c3.593 4.69 10.592-1.4 12.028-8.51-6.09 5.07-10.59 4.236-12.028 8.51z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M183.773 169.444c-.946 7.867-4.16 12.445-8.965 11.687-1.323-5.03 2.57-8.244 8.965-11.685zm-12.71 20.203c7.98 1.132 10.855-4.993 16.227-12.823-7.53 5.448-16.53 6.58-16.227 12.823z"/> + <path d="M168.806 188.732c-4.35-5.22-.146-11.775 3.178-17.363-.714 8.31 2.118 12.935-3.178 17.36zm-1.926 8.622c-.492-5.105 8.206-6.24 12.14-9.078-1.324 2.95-3.328 10.894-12.14 9.078z"/> + <path d="M165.05 197.47c-6.015-.68-3.518-10.893.793-16.568-1.815 7.832 3.177 13.277-.794 16.57z"/> + <path d="M160.514 205.976c-6.845-3.026-2.458-11.612.115-16.68-1.1 6.657 4.385 11.725-.117 16.68z"/> + <path d="M161.877 205.178c3.593 4.69 10.592-1.4 12.028-8.51-6.09 5.07-10.59 4.236-12.028 8.51z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M326.65 170.222c.91 4.088 1.137 12.145 8.4 10.555 1.058-7.49-5.032-7.83-8.4-10.555z"/> + <path d="M339.01 189.53c-.263-7.717-8.585-6.016-15.77-12.37 1.967 6.694 8.925 14.865 15.77 12.37z"/> + <path d="M340.722 188.615c4.88-3.367 1.135-10.705-3.404-17.135 1.703 7-2.04 13.427 3.404 17.135zm2.14 8.74c-7.866.604-9.265-3.33-12.367-8.397 5.37 3.48 12.557 1.286 12.368 8.396zm1.948.232c-3.747-3.065.907-9.645-.682-16.226 2.95 4.16 7.49 14.11.682 16.228z"/> + <path d="M348.1 205.742c-7.868 1.853-10.402-2.306-12.37-9.303 6.392 5.86 9.948 3.1 12.37 9.3z"/> + <path d="M349.228 205.645c5.484-.076 3.026-10.93.226-15.886.757 5.976-4.047 12.86-.226 15.884z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M326.65 170.222c.91 4.088 1.137 12.145 8.4 10.555 1.058-7.49-5.032-7.83-8.4-10.555z"/> + <path d="M339.01 189.53c-.263-7.717-8.585-6.016-15.77-12.37 1.967 6.694 8.925 14.865 15.77 12.37z"/> + <path d="M340.722 188.615c4.88-3.367 1.135-10.705-3.404-17.135 1.703 7-2.04 13.427 3.404 17.135zm2.14 8.74c-7.866.604-9.265-3.33-12.367-8.397 5.37 3.48 12.557 1.286 12.368 8.396zm1.948.232c-3.747-3.065.907-9.645-.682-16.226 2.95 4.16 7.49 14.11.682 16.228z"/> + <path d="M348.1 205.742c-7.868 1.853-10.402-2.306-12.37-9.303 6.392 5.86 9.948 3.1 12.37 9.3z"/> + <path d="M349.228 205.645c5.484-.076 3.026-10.93.226-15.886.757 5.976-4.047 12.86-.226 15.884z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M345.873 161.1c.984 4.543-.917 13.513 6.344 13.443 3.037-5.132-3.435-9.96-6.344-13.443z"/> + <path d="M356.777 181.365c4.576-3.138.452-13.44-.97-25.04-1.11 10.343-3.563 21.638.97 25.04z"/> + <path d="M354.32 182.158c.573-5.664-8.356-6.927-14.478-14.422 1.587 6.01 6.112 14.79 14.477 14.422zm6.102 8.832c-4.81-4.36.905-16.87 1.143-26.568.745 8.95 4.677 24.98-1.143 26.567zm-2.734-1.258c-7.032.452-8.887-4.698-9.708-7.637 3.776 2.72 9.745 1.438 9.708 7.637zm7.064 7.754c5.407-.228 3.406-20.738 2.657-27.214-.537 6.89-6.176 24.72-2.66 27.214zm-2.38-.363c-4.672.713-9.41-2.002-10.694-6.642 4.035 1.757 10.707.366 10.695 6.644z"/> + <path d="M369.094 206.01c5.788 2.357 3.71-24.387 2.962-30.56-.535 7.88-7.39 27.23-2.962 30.56z"/> + <path d="M367.737 206.006c-5.815.864-10.097-2.686-11.76-7.554 5.935 2.213 10.555 1.427 11.76 7.554z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M363.553 237.72c.716-6.985-4.635-19.687-.837-26.458.517-.93-1.137-3.4-2.206-1.9-1.67 2.39-3.386 9.207-4.104 6.69-.76-2.736-.878-7.577-3.346-8.517-1.575-.55-3.8-.91-3.194 1.522.603 2.34 1.954 5.57.458 5.78-.87.125-3.37-3.186-5.475-4.715-1.7-1.365-4.23.77-1.75 2.812 8.065 6.577 15.88 9.537 20.452 24.786z" stroke="#000" stroke-width=".973"/> + <path d="M363.553 237.72c.716-6.985-4.635-19.687-.837-26.458.517-.93-1.137-3.4-2.206-1.9-1.67 2.39-3.386 9.207-4.104 6.69-.76-2.736-.878-7.577-3.346-8.517-1.575-.55-3.8-.91-3.194 1.522.603 2.34 1.954 5.57.458 5.78-.87.125-3.37-3.186-5.475-4.715-1.7-1.365-4.23.77-1.75 2.812 8.065 6.577 15.88 9.537 20.452 24.786z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M345.873 161.1c.984 4.543-.917 13.513 6.344 13.443 3.037-5.132-3.435-9.96-6.344-13.443z"/> + <path d="M356.777 181.365c4.576-3.138.452-13.44-.97-25.04-1.11 10.343-3.563 21.638.97 25.04z"/> + <path d="M354.32 182.158c.573-5.664-8.356-6.927-14.478-14.422 1.587 6.01 6.112 14.79 14.477 14.422zm6.102 8.832c-4.81-4.36.905-16.87 1.143-26.568.745 8.95 4.677 24.98-1.143 26.567zm-2.734-1.258c-7.032.452-8.887-4.698-9.708-7.637 3.776 2.72 9.745 1.438 9.708 7.637zm7.064 7.754c5.407-.228 3.406-20.738 2.657-27.214-.537 6.89-6.176 24.72-2.66 27.214zm-2.38-.363c-4.672.713-9.41-2.002-10.694-6.642 4.035 1.757 10.707.366 10.695 6.644z"/> + <path d="M369.094 206.01c5.788 2.357 3.71-24.387 2.962-30.56-.535 7.88-7.39 27.23-2.962 30.56z"/> + <path d="M367.737 206.006c-5.815.864-10.097-2.686-11.76-7.554 5.935 2.213 10.555 1.427 11.76 7.554z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M244.38 141.09c-1.017-1.062-.723-1.468.78-1.485 1.194-.075 3.558.73 4.455.078.822-.597.495-3.13.86-4.297.16-.65.615-1.673 1.64-.078 3.032 4.86 6.82 10.692 8.438 16.407.885 3.203.443 8.36-2.97 11.094l-2.42-7.034c-1.152-3.343-7.348-11.365-10.783-14.687z" transform="matrix(-1.937 0 0 1.9463 857.173 -41.533)" stroke="#000" stroke-width=".501"/> + <path d="M383.805 233.07c1.97-2.067 1.4-2.857-1.513-2.89-2.31-.146-6.89 1.423-8.627.152-1.592-1.162-.96-6.09-1.666-8.363-.31-1.27-1.193-3.258-3.18-.154-5.872 9.457-13.207 20.81-16.343 31.933-1.715 6.233-.858 16.27 5.75 21.59l4.692-13.685c2.23-6.507 14.23-22.12 20.884-28.586z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M390.38 216.058c-2.647 8.51-4.238 15.487-.417 16.308 4.083-.71 2.308-8.932.417-16.308zm-.272 23.89c4.354 2.31 9.046-8.787 8.07-17.528-2.192 7.492-9.577 12.118-8.07 17.527zm-1.614-.228c.675-6.052-1.81-5.892-5.067-11.675.345 6.532 1.972 12.01 5.067 11.674z"/> + <path d="M389.933 248.592c5.08 1.443 10.905-10.656 10.687-19.597-2.116 9.897-13.146 13.852-10.687 19.597z"/> + <path d="M388.273 248.366c2.037-4.69-2.12-4.116-4.878-12.52-.913 8.697.413 12.666 4.878 12.52zm1.473 9.124c6.594 1.134 9.994-13.425 13.27-20.396-6.485 9.14-14.255 14.23-13.27 20.395z"/> + <path d="M388.213 256.99c1.927-5.368-3.52-5.068-6.39-13.09.456 10.175 1.777 13.845 6.39 13.09zm1.9 9.247c4.17.3 11.667-11.342 11.828-18.533-3.56 7.92-14.74 13.167-11.825 18.533z"/> + <path d="M387.01 264.895c1.735-5.6-3.107-5.636-5.256-11.91-.152 9.458 1.324 12.666 5.257 11.91zm.16 10.09c7.352 1.287 9.234-8.406 13.572-18.266-4.28 7.846-13.95 12.25-13.573 18.264z"/> + <path d="M386.648 273.637c2.384-5.064-3.14-5.068-6.086-12.635-.152 10.706 1.7 13.846 6.086 12.635z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M390.38 216.058c-2.647 8.51-4.238 15.487-.417 16.308 4.083-.71 2.308-8.932.417-16.308zm-.272 23.89c4.354 2.31 9.046-8.787 8.07-17.528-2.192 7.492-9.577 12.118-8.07 17.527zm-1.614-.228c.675-6.052-1.81-5.892-5.067-11.675.345 6.532 1.972 12.01 5.067 11.674z"/> + <path d="M389.933 248.592c5.08 1.443 10.905-10.656 10.687-19.597-2.116 9.897-13.146 13.852-10.687 19.597z"/> + <path d="M388.273 248.366c2.037-4.69-2.12-4.116-4.878-12.52-.913 8.697.413 12.666 4.878 12.52zm1.473 9.124c6.594 1.134 9.994-13.425 13.27-20.396-6.485 9.14-14.255 14.23-13.27 20.395z"/> + <path d="M388.213 256.99c1.927-5.368-3.52-5.068-6.39-13.09.456 10.175 1.777 13.845 6.39 13.09zm1.9 9.247c4.17.3 11.667-11.342 11.828-18.533-3.56 7.92-14.74 13.167-11.825 18.533z"/> + <path d="M387.01 264.895c1.735-5.6-3.107-5.636-5.256-11.91-.152 9.458 1.324 12.666 5.257 11.91zm.16 10.09c7.352 1.287 9.234-8.406 13.572-18.266-4.28 7.846-13.95 12.25-13.573 18.264z"/> + <path d="M386.648 273.637c2.384-5.064-3.14-5.068-6.086-12.635-.152 10.706 1.7 13.846 6.086 12.635z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M256.81 166.87c3.334.016 3.985-4.687 3.985-5.937-1.64.312-4.61 3.28-3.985 5.937z" transform="matrix(-1.937 0 0 1.9463 857.387 -41.81)" stroke="#000" stroke-width=".501"/> + <path d="M359.927 282.968c-6.458.03-7.72-9.122-7.72-11.555 3.18.607 8.933 6.386 7.72 11.555z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M372.836 241.38c-2.647 8.51-3.705 12.596-.113 15.32 4.69-2.61 2.005-7.944.113-15.32zm-1.48 22.245c1.97-6.278-2.874-7.79-5.445-14.865-.262 9.344 1.06 16.19 5.448 14.865z"/> + <path d="M373.288 264.98c3.443 1.324 7.68-6.655 5.335-14.637-2.42 7.187-8.36 8.925-5.335 14.638zm-3.635 7.155c3.33-5.144-1.968-5.41-4.65-12.594-.15 9.46.717 13.35 4.65 12.596z"/> + <path d="M369.66 280.986c2.536-5.823-2.987-5.068-6.238-12.253-.152 10.706 1.625 13.01 6.238 12.253zm2.497-8.513c2.877.074 8.472-4.956 6.81-11.234-2.42 5.257-9.268 4.725-6.81 11.232z"/> + <path d="M371.36 280.068c4.692.983 8.246-6.2 7.718-11.12-3.67 4.58-8.704 4.954-7.72 11.12z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M372.836 241.38c-2.647 8.51-3.705 12.596-.113 15.32 4.69-2.61 2.005-7.944.113-15.32zm-1.48 22.245c1.97-6.278-2.874-7.79-5.445-14.865-.262 9.344 1.06 16.19 5.448 14.865z"/> + <path d="M373.288 264.98c3.443 1.324 7.68-6.655 5.335-14.637-2.42 7.187-8.36 8.925-5.335 14.638zm-3.635 7.155c3.33-5.144-1.968-5.41-4.65-12.594-.15 9.46.717 13.35 4.65 12.596z"/> + <path d="M369.66 280.986c2.536-5.823-2.987-5.068-6.238-12.253-.152 10.706 1.625 13.01 6.238 12.253zm2.497-8.513c2.877.074 8.472-4.956 6.81-11.234-2.42 5.257-9.268 4.725-6.81 11.232z"/> + <path d="M371.36 280.068c4.692.983 8.246-6.2 7.718-11.12-3.67 4.58-8.704 4.954-7.72 11.12z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M235.63 159.06c-.297-.385-1.15.01-.937.938.198 1.256 2.05 7.704 5.233 9.922 2.27 1.636 14.2 4.27 19.61 5.39 2.977.6 5.47 2.084 7.423 4.454-.81-3.1-1.46-5.395-2.5-8.203-1.016-2.466-3.703-5.166-6.486-5.31-5.17-.187-11.86-.627-16.72-2.736-2.51-1.048-4.01-2.464-5.625-4.453z" transform="matrix(-1.937 0 0 1.9463 857.173 -41.533)" stroke="#000" stroke-width=".501"/> + <path d="M400.754 268.045c.575-.75 2.228.02 1.815 1.826-.386 2.447-3.973 14.996-10.138 19.313-4.397 3.184-27.508 8.313-37.985 10.49-5.767 1.167-10.596 4.057-14.38 8.67 1.566-6.032 2.823-10.5 4.844-15.966 1.965-4.803 7.17-10.058 12.56-10.34 10.013-.363 22.97-1.22 32.387-5.324 4.86-2.04 7.77-4.795 10.896-8.667z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M386.598 297.655c1.057-4.228-.29-5.588.865-12.208-6.345 8.51-3.96 12.542-.865 12.208z"/> + <path d="M387.297 298.704c4.202 1.17 15.13-8.405 15.448-15.55-2.954 5.135-17.713 10.674-15.448 15.55zm-6.87 6.31c2.875-1.57 2.064-8.22-.542-10.464-.534 6.49-4.453 10.308.543 10.465z"/> + <path d="M383.394 306.83c5.082 1.593 10.83-7.615 15.02-11.614-4.777 4.118-19.226 6.096-15.02 11.613zm-6.99 4.573c3.556-2.33.236-6.93-.013-16.016-3.572 6.567-4.3 15.553.014 16.016z"/> + <path d="M377.083 313.74c1.814 2.43 15.24-5.943 18.595-12.148-11.468 8.53-21.585 7.39-18.595 12.147zm-1.34 7.578c3.294-2.402-2.837-8.718-4.11-17.196.076 10.327-1.34 18.18 4.11 17.196z"/> + <path d="M379.324 318.468c1.652 2.657 11.896-4.375 16.312-12.03-6.79 5.946-18.21 7.538-16.312 12.03zm-10.468 11.57c3.71-.66 3.2-10.046.37-17.69-3.194 9.23-4.608 18.595-.37 17.688z"/> + <path d="M378.16 324.92c1.28 1.518 16.38-9.062 16.162-13.363-4.778 6.855-20.747 8.225-16.162 13.363zm-17.524 13.883c5.12-2.1 2.713-10.39 3.72-19.327-4.03 8.732-8.79 17.496-3.72 19.327z"/> + <path d="M370.218 331.63c.815 2.808 13.112-2.4 19.048-10.968-7.17 5.566-21.096 6.323-19.048 10.967z"/> + <path d="M362.277 340.125c2.65 4.406 17.9-3.663 20.115-11.234-4.93 6.553-21.964 5.564-20.115 11.236z"/> + <path d="M369.272 343.56c2.8.302 9.31-5.03 11.142-7.812-5.234 2.596-12.308 6.17-11.142 7.812z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M346.304 310.784c3.332.483 7.69-5.634 4.78-11.833-1.446 6.19-11.144 10.69-4.78 11.835zm7.136-3.65c2.572 1.44 9.08-5.486 8.253-10.02-3.637 5.794-10.94 7.465-8.254 10.02z"/> + <path d="M345.837 317.308c2.5 2.43 14.784-10.048 18.443-15.72-10.63 9.06-21.508 11.343-18.443 15.72zm-2.937 7.476c1.956 2.96 10.146-5.97 15.324-13.398-6.563 6.477-17.68 9.44-15.324 13.398z"/> + <path d="M343.735 317.668c2.003-5.29-1.315-6.132-2.816-12.71-2.966 3.637-2.633 13.693 2.814 12.71zm-3.27 7.3c3.98-1.11-2.456-7.88-3.805-12.71-.607 8.883-.502 13.312 3.805 12.71zm-3.885 6.382c3.673-1.338-2.078-4.69-2.666-12.103-1.825 2.725-2.783 13.085 2.665 12.102z"/> + <path d="M331.086 332.914c2.342-1.267 1.378-7.31-2.217-8.11-.838 4.743-.73 8.18 2.215 8.11z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M346.304 310.784c3.332.483 7.69-5.634 4.78-11.833-1.446 6.19-11.144 10.69-4.78 11.835zm7.136-3.65c2.572 1.44 9.08-5.486 8.253-10.02-3.637 5.794-10.94 7.465-8.254 10.02z"/> + <path d="M345.837 317.308c2.5 2.43 14.784-10.048 18.443-15.72-10.63 9.06-21.508 11.343-18.443 15.72zm-2.937 7.476c1.956 2.96 10.146-5.97 15.324-13.398-6.563 6.477-17.68 9.44-15.324 13.398z"/> + <path d="M343.735 317.668c2.003-5.29-1.315-6.132-2.816-12.71-2.966 3.637-2.633 13.693 2.814 12.71zm-3.27 7.3c3.98-1.11-2.456-7.88-3.805-12.71-.607 8.883-.502 13.312 3.805 12.71zm-3.885 6.382c3.673-1.338-2.078-4.69-2.666-12.103-1.825 2.725-2.783 13.085 2.665 12.102z"/> + <path d="M331.086 332.914c2.342-1.267 1.378-7.31-2.217-8.11-.838 4.743-.73 8.18 2.215 8.11z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M386.598 297.655c1.057-4.228-.29-5.588.865-12.208-6.345 8.51-3.96 12.542-.865 12.208z"/> + <path d="M387.297 298.704c4.202 1.17 15.13-8.405 15.448-15.55-2.954 5.135-17.713 10.674-15.448 15.55zm-6.87 6.31c2.875-1.57 2.064-8.22-.542-10.464-.534 6.49-4.453 10.308.543 10.465z"/> + <path d="M383.394 306.83c5.082 1.593 10.83-7.615 15.02-11.614-4.777 4.118-19.226 6.096-15.02 11.613zm-6.99 4.573c3.556-2.33.236-6.93-.013-16.016-3.572 6.567-4.3 15.553.014 16.016z"/> + <path d="M377.083 313.74c1.814 2.43 15.24-5.943 18.595-12.148-11.468 8.53-21.585 7.39-18.595 12.147zm-1.34 7.578c3.294-2.402-2.837-8.718-4.11-17.196.076 10.327-1.34 18.18 4.11 17.196z"/> + <path d="M379.324 318.468c1.652 2.657 11.896-4.375 16.312-12.03-6.79 5.946-18.21 7.538-16.312 12.03zm-10.468 11.57c3.71-.66 3.2-10.046.37-17.69-3.194 9.23-4.608 18.595-.37 17.688z"/> + <path d="M378.16 324.92c1.28 1.518 16.38-9.062 16.162-13.363-4.778 6.855-20.747 8.225-16.162 13.363zm-17.524 13.883c5.12-2.1 2.713-10.39 3.72-19.327-4.03 8.732-8.79 17.496-3.72 19.327z"/> + <path d="M370.218 331.63c.815 2.808 13.112-2.4 19.048-10.968-7.17 5.566-21.096 6.323-19.048 10.967z"/> + <path d="M362.277 340.125c2.65 4.406 17.9-3.663 20.115-11.234-4.93 6.553-21.964 5.564-20.115 11.236z"/> + <path d="M369.272 343.56c2.8.302 9.31-5.03 11.142-7.812-5.234 2.596-12.308 6.17-11.142 7.812z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M235.83 159.52c-.377-.307-.876-.76-.704.176 1.41 7.41 1.855 9.483 8.35 12.044 6.6 2.508 8.967 1.63 14.588 1.533 3.034-.11 6.567 1.404 8.67 3.618.98 1.03 1.688 1.443 1.295.13-.396-1.312-.78-3.015-1.398-4.38-1.348-3-4.834-5.865-8.32-7.01-4.88-1.717-10.14-.854-15.165-2.164-2.62-.724-5.138-2.183-7.318-3.945z" transform="matrix(-1.7055 -.9227 -.9183 1.7137 926.17 287.993)" stroke="#000" stroke-width=".501"/> + <path d="M377.47 343.746c.926-.178 2.193-.494 1.04.95-9.208 11.4-11.872 14.54-25.3 12.937-13.562-1.795-16.792-5.48-26.29-10.835-5.07-2.99-12.488-3.654-18.11-1.8-2.617.86-4.2.91-2.324-.976 1.877-1.885 4.094-4.45 6.402-6.216 5.056-3.9 13.632-5.592 20.63-4.336 9.898 1.56 18.076 7.892 27.85 10.284 5.134 1.178 10.767 1 16.103-.008z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M287.66 208.42c.884.11 1.444 1.822 1.88.663.737-1.877.22-3.37-.61-3.205-.978.26-2.634 2.456-1.27 2.542z" transform="matrix(-1.9235 0 0 1.9463 853.242 -41.856)" stroke="#000" stroke-width=".503"/> + <path d="M299.92 363.792c-1.7.214-2.778 3.546-3.615 1.29-1.42-3.653-.425-6.558 1.17-6.237 1.883.508 5.068 4.78 2.444 4.947z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M318.535 348.932c4.813 1.252 6.063-4.296 6.535-8.327-4.34.935-8.887 3.45-6.535 8.327zm-1.935 4.928c.848 3.838 10.264-.118 12.094-5.493-6.694 3.906-13.298-.35-12.094 5.493z"/> + <path d="M313.233 353.672c4.3.712 1.907-6.028 1.66-12.676-2.41 5.42-5.848 12.1-1.66 12.676zM307.8 360.04c4.684.586 1.713-8.446.44-14.516-1.538 5.626-4.924 14.022-.44 14.516z"/> + <path d="M310.587 360.24c.57 5.11 10.252-.61 15.886-3.75-7.442 1.152-16.722-1.263-15.886 3.75zm-5.323 7.147c.57 5.11 10.25-.61 15.886-3.752-7.443 1.154-16.722-1.26-15.886 3.752z"/> + <path d="M302.79 367.182c4.454.13 1.18-9.587-.093-15.656-1.538 5.625-4.47 15.466.092 15.656zm-3.843 6.214c.57 5.11 9.417.073 14.9-3.448-7.52 1.61-15.736-1.566-14.9 3.448z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M318.535 348.932c4.813 1.252 6.063-4.296 6.535-8.327-4.34.935-8.887 3.45-6.535 8.327zm-1.935 4.928c.848 3.838 10.264-.118 12.094-5.493-6.694 3.906-13.298-.35-12.094 5.493z"/> + <path d="M313.233 353.672c4.3.712 1.907-6.028 1.66-12.676-2.41 5.42-5.848 12.1-1.66 12.676zm-5.433 6.368c4.684.586 1.713-8.446.44-14.516-1.538 5.626-4.924 14.022-.44 14.516z"/> + <path d="M310.587 360.24c.57 5.11 10.252-.61 15.886-3.75-7.442 1.152-16.722-1.263-15.886 3.75zm-5.323 7.147c.57 5.11 10.25-.61 15.886-3.752-7.443 1.154-16.722-1.26-15.886 3.752z"/> + <path d="M302.79 367.182c4.454.13 1.18-9.587-.093-15.656-1.538 5.625-4.47 15.466.092 15.656zm-3.843 6.214c.57 5.11 9.417.073 14.9-3.448-7.52 1.61-15.736-1.566-14.9 3.448z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M348.73 364.83c2.648 4.406 12.425-3.206 17.758-7.128-7.667 2.368-19.607 1.458-17.76 7.13z"/> + <path d="M338.75 369.407c.953 5.052 17.448.883 19.8-2.862-7.585 3.213-20.705-1.502-19.8 2.862z"/> + <path d="M330.983 373.26c.497 2.772 13.116 1.72 19.496-.428-6.9.858-20.78-4.01-19.498.43z"/> + <path d="M324.395 376.56c.04 2.542 14.712 4 19.648-.125-9.864 1.464-20.628-5.99-19.648.124z"/> + <path d="M312.79 378.94c-.568 3.53 15.395 2.783 20.407 1.014-8.57-.662-19.638-6.215-20.407-1.015z"/> + <path d="M312.56 375.724c3.597 3.3 12.85-11.443 15.86-17.938-7.118 7.423-19.966 15.052-15.86 17.938z"/> + <path d="M323.044 373.22c4.283 2.846 8.214-7.563 10.388-15.2-4.078 6.586-14.49 10.87-10.388 15.2z"/> + <path d="M331.335 370.387c4.283 2.845 6.695-6.576 7.73-12.466-2.938 5.07-11.832 8.138-7.73 12.468z"/> + <path d="M339.35 365.37c4.283 2.845 9.66-5.055 8.413-12.844-1.644 8.032-12.515 8.513-8.413 12.844zm-16.257 22.174c2.11 5.372 24.295-4.696 28.015-11.413-7.127 6.026-30.08 5.207-28.015 11.415z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M348.73 364.83c2.648 4.406 12.425-3.206 17.758-7.128-7.667 2.368-19.607 1.458-17.76 7.13z"/> + <path d="M338.75 369.407c.953 5.052 17.448.883 19.8-2.862-7.585 3.213-20.705-1.502-19.8 2.862z"/> + <path d="M330.983 373.26c.497 2.772 13.116 1.72 19.496-.428-6.9.858-20.78-4.01-19.498.43z"/> + <path d="M324.395 376.56c.04 2.542 14.712 4 19.648-.125-9.864 1.464-20.628-5.99-19.648.124z"/> + <path d="M312.79 378.94c-.568 3.53 15.395 2.783 20.407 1.014-8.57-.662-19.638-6.215-20.407-1.015z"/> + <path d="M312.56 375.724c3.597 3.3 12.85-11.443 15.86-17.938-7.118 7.423-19.966 15.052-15.86 17.938z"/> + <path d="M323.044 373.22c4.283 2.846 8.214-7.563 10.388-15.2-4.078 6.586-14.49 10.87-10.388 15.2z"/> + <path d="M331.335 370.387c4.283 2.845 6.695-6.576 7.73-12.466-2.938 5.07-11.832 8.138-7.73 12.468z"/> + <path d="M339.35 365.37c4.283 2.845 9.66-5.055 8.413-12.844-1.644 8.032-12.515 8.513-8.413 12.844zm-16.257 22.174c2.11 5.372 24.295-4.696 28.015-11.413-7.127 6.026-30.08 5.207-28.015 11.415z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M366.62 143.7c.368-3.59-2.38-10.115-.43-13.594.266-.478-.584-1.747-1.133-.977-.858 1.227-1.74 4.73-2.11 3.436-.39-1.406-.45-3.893-1.718-4.376-.81-.282-1.955-.467-1.643.783.31 1.202 1.004 2.862.235 2.97-.446.064-1.73-1.637-2.813-2.423-.873-.7-2.174.396-.9 1.445 4.145 3.38 8.16 4.9 10.51 12.735z" transform="matrix(-1.911 0 0 1.9463 846.858 -41.507)" stroke="#000" stroke-width=".5"/> + <path d="M146.235 238.176c-.703-6.985 4.55-19.686.822-26.458-.51-.93 1.116-3.4 2.165-1.9 1.64 2.39 3.325 9.207 4.03 6.69.747-2.736.862-7.577 3.285-8.517 1.546-.55 3.732-.91 3.136 1.524-.592 2.34-1.92 5.57-.45 5.78.853.125 3.31-3.185 5.377-4.715 1.666-1.366 4.152.77 1.716 2.81-7.92 6.578-15.592 9.538-20.08 24.787z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M132.01 343.318c-.93-.178-2.202-.494-1.044.95 9.252 11.4 11.93 14.54 25.42 12.936 13.63-1.794 16.874-5.48 26.416-10.834 5.097-2.99 12.55-3.654 18.198-1.802 2.63.86 4.22.913 2.335-.974-1.885-1.885-4.113-4.45-6.433-6.216-5.08-3.9-13.696-5.592-20.728-4.337-9.945 1.56-18.163 7.895-27.983 10.287-5.16 1.177-10.817 1-16.18-.008z" stroke="#000" stroke-width=".973"/> + <path d="M132.01 343.318c-.93-.178-2.202-.494-1.044.95 9.252 11.4 11.93 14.54 25.42 12.936 13.63-1.794 16.874-5.48 26.416-10.834 5.097-2.99 12.55-3.654 18.198-1.802 2.63.86 4.22.913 2.335-.974-1.885-1.885-4.113-4.45-6.433-6.216-5.08-3.9-13.696-5.592-20.728-4.337-9.945 1.56-18.163 7.895-27.983 10.287-5.16 1.177-10.817 1-16.18-.008z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M209.873 363.685c1.72.214 2.81 3.546 3.657 1.29 1.436-3.653.43-6.56-1.184-6.238-1.905.508-5.128 4.78-2.473 4.948z" stroke="#000" stroke-width=".973"/> + <path d="M209.873 363.685c1.72.214 2.81 3.546 3.657 1.29 1.436-3.653.43-6.56-1.184-6.238-1.905.508-5.128 4.78-2.473 4.948z"/> + </g> + <g fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M206.038 366.79c4.615 1.05 4.55-10.067-.162-14.78 2.075 7.14-3.468 13.668.162 14.78zM204.247 366.692c.304 5.283-12.966-.69-16.377-4.8 7.84 3.33 15.99.574 16.377 4.8zM198.43 359.137c.475 5.118-11.508.618-15.05-3.38 7.87 2.543 14.527-.832 15.05 3.38zm2.21.733c4.614 1.052 3.866-10.445-.62-14.396 2.153 7.672-3.01 13.287.62 14.397zm-4.862-7.003c4.615 1.05 1.967-8.85-1.454-12.802.556 7.217-1.72 12.223 1.454 12.802zm-2.434-.03c.475 5.27-8.847 1.224-12.465-3.76 7.79 2.542 11.94-.45 12.463 3.76zm-2.548-4.004c3.023-2.174-.184-7.923-5.94-7.567.564 3.472 2.552 9.58 5.94 7.567zM213.518 372.675c.305 5.283-12.968 2.656-17.137-2.974 8.374 1.584 16.75-1.25 17.14 2.976z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <g stroke="#000" stroke-width=".973"> + <path d="M125.637 232.64c-1.98-2.067-1.407-2.857 1.52-2.89 2.322-.146 6.923 1.423 8.67.152 1.6-1.162.962-6.09 1.672-8.363.31-1.27 1.195-3.26 3.19-.154 5.902 9.457 13.272 20.81 16.423 31.933 1.723 6.233.102 15.964-5.626 22.504.202-5.576-1.877-9.327-4.41-13.99-3.13-6.13-14.756-22.73-21.44-29.195z"/> + <path d="M149.966 282.368c6.49.03 7.604-8.667 7.604-11.1-3.194.608-8.82 5.93-7.604 11.1z"/> + </g> + <path d="M125.637 232.64c-1.98-2.067-1.407-2.857 1.52-2.89 2.322-.146 6.923 1.423 8.67.152 1.6-1.162.962-6.09 1.672-8.363.31-1.27 1.195-3.26 3.19-.154 5.902 9.457 13.272 20.81 16.423 31.933 1.723 6.233.102 15.964-5.626 22.504.202-5.576-1.877-9.327-4.41-13.99-3.13-6.13-14.756-22.73-21.44-29.195z"/> + <path d="M149.966 282.368c6.49.03 7.604-8.667 7.604-11.1-3.194.608-8.82 5.93-7.604 11.1z"/> + </g> + <path d="M206.038 366.79c4.615 1.05 4.55-10.067-.162-14.78 2.075 7.14-3.468 13.668.162 14.78zm-1.79-.098c.303 5.283-12.967-.69-16.378-4.8 7.84 3.33 15.99.574 16.377 4.8zm-5.818-7.555c.475 5.118-11.508.618-15.05-3.38 7.87 2.543 14.527-.832 15.05 3.38zm2.21.733c4.614 1.052 3.866-10.445-.62-14.396 2.153 7.672-3.01 13.287.62 14.397zm-4.862-7.003c4.615 1.05 1.967-8.85-1.454-12.802.556 7.217-1.72 12.223 1.454 12.802zm-2.434-.03c.475 5.27-8.847 1.224-12.465-3.76 7.79 2.542 11.94-.45 12.463 3.76zm-2.548-4.004c3.023-2.174-.184-7.923-5.94-7.567.564 3.472 2.552 9.58 5.94 7.567zm22.722 23.842c.305 5.283-12.968 2.656-17.137-2.974 8.374 1.584 16.75-1.25 17.14 2.976z" fill-rule="evenodd" fill="#fff"/> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M160.805 363.224c.476 5.27-14.015-.525-17.633-5.51 7.793 2.542 17.11 1.3 17.633 5.51zm8.878 2.254c3.023-2.174-3.15-7.772-8.067-9.088.563 3.472 4.68 11.1 8.067 9.088zm.933 3.65c.323 4.737-15.54 2.14-19.688-2.24 13.648 2.467 19.24-1.82 19.688 2.24z"/> + <path d="M178.036 372.292c1.76 4.4-13.464 3.327-18.81.768 8.638-.075 17.6-3.834 18.81-.768z"/> + <path d="M185.153 375.5c1.685 3.943-12.4 3.858-19.264 1.677 9.09-.074 17.595-5.58 19.262-1.678zm10.247 2.12c2.494 4.667-12.363 5.12-17.183 2.823 8.59-1.18 15.057-6.497 17.182-2.823z"/> + <path d="M177.993 369.627c-4.727 2.98-4.473-5.807-8.233-11.893 5.907 5.38 11.436 9.05 8.233 11.893zm8.392 3.153c-3.964 3.512-7.134-8.547-10.743-15.313 5.834 6.442 14.402 12.396 10.743 15.313zm11.065 3.37c-3.357 3.892-13.065-11.433-16.596-19.42 5.376 6.217 19.267 16.122 16.597 19.42z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M160.805 363.224c.476 5.27-14.015-.525-17.633-5.51 7.793 2.542 17.11 1.3 17.633 5.51zm8.878 2.254c3.023-2.174-3.15-7.772-8.067-9.088.563 3.472 4.68 11.1 8.067 9.088zm.933 3.65c.323 4.737-15.54 2.14-19.688-2.24 13.648 2.467 19.24-1.82 19.688 2.24z"/> + <path d="M178.036 372.292c1.76 4.4-13.464 3.327-18.81.768 8.638-.075 17.6-3.834 18.81-.768z"/> + <path d="M185.153 375.5c1.685 3.943-12.4 3.858-19.264 1.677 9.09-.074 17.595-5.58 19.262-1.678zm10.247 2.12c2.494 4.667-12.363 5.12-17.183 2.823 8.59-1.18 15.057-6.497 17.182-2.823zm-17.407-7.993c-4.727 2.98-4.473-5.807-8.233-11.893 5.907 5.38 11.436 9.05 8.233 11.893z"/> + <path d="M186.385 372.78c-3.964 3.512-7.134-8.547-10.743-15.313 5.834 6.442 14.402 12.396 10.743 15.313zm11.065 3.37c-3.357 3.892-13.065-11.433-16.596-19.42 5.376 6.217 19.267 16.122 16.597 19.42z"/> + </g> + <path d="M188.016 387.838c-1.675 5.917-26.38-5.577-29.138-11.532 14.136 7.49 29.476 5.924 29.138 11.532z" fill-rule="evenodd" fill="#fff"/> + <g fill-rule="evenodd" fill="#fff"> + <path d="M108.607 267.615c-.578-.75-2.24.02-1.824 1.826.385 2.447 3.99 14.996 10.185 19.313 4.418 3.184 27.64 8.313 38.167 10.49 5.794 1.167 10.646 4.057 14.447 8.67-1.572-6.032-2.835-10.5-4.865-15.966-1.974-4.803-7.204-10.058-12.62-10.34-10.06-.363-23.08-1.22-32.542-5.324-4.884-2.04-7.807-4.795-10.948-8.667z" stroke="#000" stroke-width=".973"/> + <path d="M108.607 267.615c-.578-.75-2.24.02-1.824 1.826.385 2.447 3.99 14.996 10.185 19.313 4.418 3.184 27.64 8.313 38.167 10.49 5.794 1.167 10.646 4.057 14.447 8.67-1.572-6.032-2.835-10.5-4.865-15.966-1.974-4.803-7.204-10.058-12.62-10.34-10.06-.363-23.08-1.22-32.542-5.324-4.884-2.04-7.807-4.795-10.948-8.667z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M166.28 317.26c3.172 2.336 6.673-6.034 2.644-13.99-.127 7.658-6.214 10.23-2.644 13.99z"/> + <path d="M169.328 324.955c4.387 1.347 5.76-6.414 2.872-12.622.482 6.67-6.897 10.687-2.872 12.622z"/> + <path d="M172.66 331.114c4.238 2.11 5.842-5.732 2.797-11.554.332 7.428-6.06 9.618-2.796 11.554z"/> + <path d="M170.907 331.586c-1.678 5.018-11.415-4.327-13.056-9.41 6.045 6.005 14.268 5.342 13.058 9.41z"/> + <path d="M166.502 323.904c-1.908 5.018-14.152-7.9-16.858-14.122 6.043 6.004 18.22 10.586 16.858 14.122z"/> + <path d="M164.064 316.385c-1.907 5.703-15.217-9.497-18.987-14.883 6.35 5.928 20.425 10.74 18.987 14.883z"/> + <path d="M163.654 310.74c4.687-.91-.266-4.814-6.01-11.158-.27 6.68.827 11.35 6.01 11.158zm-7.914-3.783c2.023-2.204-1.94-3.142-6.85-8.65-.723 3.714 4.554 10.514 6.85 8.65zM178.44 331.732c2.564 1.5 4.32-3.755 1.123-8.513-.73 5.145-3.476 6.575-1.124 8.51z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M166.28 317.26c3.172 2.336 6.673-6.034 2.644-13.99-.127 7.658-6.214 10.23-2.644 13.99z"/> + <path d="M169.328 324.955c4.387 1.347 5.76-6.414 2.872-12.622.482 6.67-6.897 10.687-2.872 12.622z"/> + <path d="M172.66 331.114c4.238 2.11 5.842-5.732 2.797-11.554.332 7.428-6.06 9.618-2.796 11.554z"/> + <path d="M170.907 331.586c-1.678 5.018-11.415-4.327-13.056-9.41 6.045 6.005 14.268 5.342 13.058 9.41z"/> + <path d="M166.502 323.904c-1.908 5.018-14.152-7.9-16.858-14.122 6.043 6.004 18.22 10.586 16.858 14.122z"/> + <path d="M164.064 316.385c-1.907 5.703-15.217-9.497-18.987-14.883 6.35 5.928 20.425 10.74 18.987 14.883zm-.41-5.645c4.687-.91-.266-4.814-6.01-11.158-.27 6.68.827 11.35 6.01 11.158z"/> + <path d="M155.74 306.957c2.023-2.204-1.94-3.142-6.85-8.65-.723 3.714 4.554 10.514 6.85 8.65zm22.7 24.775c2.564 1.5 4.32-3.755 1.123-8.513-.73 5.145-3.476 6.575-1.124 8.51z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M122.717 298.56c-5.446 3.265-14.095-9.762-16.402-15.12 4.778 6.15 17.43 11.768 16.402 15.12z"/> + <path d="M127.36 306.143c-3.012 3.34-12.497-5.732-15.793-10.33 5.084 4.4 17.127 4.925 15.794 10.33z"/> + <path d="M132.526 312.956c-.994 4.564-14.836-5.694-18.072-10.55 5.968 5.624 18.98 5.116 18.072 10.55z"/> + <path d="M130.39 317.91c-2.134 4.108-13.392-6.072-16.095-11.383 6.88 6.002 17.838 7.32 16.096 11.383zM124.618 297.884c3.552-3.746 2.04-5.5-.55-11.404-1.416 6.062-3.55 8.48.55 11.404zm4.714 7.066c6.443.285.062-7.555-1.46-14.14.56 7.505-1.652 13.42 1.46 14.14z"/> + <path d="M133.43 311.198c4.463-1.01 3.175-7.327-.247-14.978.71 8.266-3.78 13.042.246 14.978zM131.916 323.693c-1.68 5.02-14.38-6.607-16.4-11.006 6.423 5.396 17.535 7.243 16.4 11.006z"/> + <path d="M139.515 331.52c-1.906 5.02-15.216-5.16-19.288-10.7 8.02 6.307 20.272 5.722 19.288 10.7z"/> + <path d="M147.264 339.423c-2.134 6.995-16.052-4.172-20.2-9.636 8.855 6.763 21.334 4.657 20.2 9.636zM134.187 321.46c3.78 1.956 5.307-8.77 3.175-16.346.028 8.266-7.582 14.41-3.175 16.346z"/> + <path d="M140.66 329.965c4.542 1.35 3.102-10.215-.78-17.715-.502 7.43-3.854 14.488.78 17.715zm8.064 7.988c5.074.284 1.583-9.913-2.602-15.662.712 7.507-1.65 14.793 2.602 15.664zM139.82 342.307c-1.526 2.584-5.257-2.196-11.383-5.684 5.51 1.44 12.06 3.29 11.382 5.684z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M122.717 298.56c-5.446 3.265-14.095-9.762-16.402-15.12 4.778 6.15 17.43 11.768 16.402 15.12z"/> + <path d="M127.36 306.143c-3.012 3.34-12.497-5.732-15.793-10.33 5.084 4.4 17.127 4.925 15.794 10.33z"/> + <path d="M132.526 312.956c-.994 4.564-14.836-5.694-18.072-10.55 5.968 5.624 18.98 5.116 18.072 10.55z"/> + <path d="M130.39 317.91c-2.134 4.108-13.392-6.072-16.095-11.383 6.88 6.002 17.838 7.32 16.096 11.383zm-5.772-20.026c3.552-3.746 2.04-5.5-.55-11.404-1.416 6.062-3.55 8.48.55 11.404zm4.714 7.066c6.443.285.062-7.555-1.46-14.14.56 7.505-1.652 13.42 1.46 14.14z"/> + <path d="M133.43 311.198c4.463-1.01 3.175-7.327-.247-14.978.71 8.266-3.78 13.042.246 14.978zm-1.514 12.495c-1.68 5.02-14.38-6.607-16.4-11.006 6.423 5.396 17.535 7.243 16.4 11.006z"/> + <path d="M139.515 331.52c-1.906 5.02-15.216-5.16-19.288-10.7 8.02 6.307 20.272 5.722 19.288 10.7z"/> + <path d="M147.264 339.423c-2.134 6.995-16.052-4.172-20.2-9.636 8.855 6.763 21.334 4.657 20.2 9.636zm-13.077-17.963c3.78 1.956 5.307-8.77 3.175-16.346.028 8.266-7.582 14.41-3.175 16.346z"/> + <path d="M140.66 329.965c4.542 1.35 3.102-10.215-.78-17.715-.502 7.43-3.854 14.488.78 17.715zm8.064 7.988c5.074.284 1.583-9.913-2.602-15.662.712 7.507-1.65 14.793 2.602 15.664zm-8.904 4.354c-1.526 2.584-5.257-2.196-11.383-5.684 5.51 1.44 12.06 3.29 11.382 5.684z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M136.905 256.366c4.735-3.504 1.123-10.057 0-16.29-1.524 5.912-5.535 13.668 0 16.29zm-.155 8.758c-7.115-.854-6.044-10.055-6.258-15.886 2.14 7.916 7.97 9.253 6.257 15.886zm1.128-1.207c6.018-.348 5.7-7.195 6.02-14.122-3.05 6.366-6.662 7.355-6.02 14.122z"/> + <path d="M137.645 272.423c-4.68.373-7.114-4.226-8.185-11.394 4.44 6.604 8.478 4.545 8.185 11.392zm1.673-.565c6.018.775 5.057-6.232 4.815-11.395-1.845 4.922-6.74 6.473-4.815 11.395z"/> + <path d="M129.937 268.9c.48 4.574 3.37 12.437 8.025 10.67 1.925-5.616-4.093-6.74-8.025-10.67z"/> + <path d="M139.396 280.052c-2.086-4.01 4.734-6.02 6.178-11.234.83 7.462.134 12.357-6.178 11.234z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M136.905 256.366c4.735-3.504 1.123-10.057 0-16.29-1.524 5.912-5.535 13.668 0 16.29zm-.155 8.758c-7.115-.854-6.044-10.055-6.258-15.886 2.14 7.916 7.97 9.253 6.257 15.886zm1.128-1.207c6.018-.348 5.7-7.195 6.02-14.122-3.05 6.366-6.662 7.355-6.02 14.122z"/> + <path d="M137.645 272.423c-4.68.373-7.114-4.226-8.185-11.394 4.44 6.604 8.478 4.545 8.185 11.392zm1.673-.565c6.018.775 5.057-6.232 4.815-11.395-1.845 4.922-6.74 6.473-4.815 11.395z"/> + <path d="M129.937 268.9c.48 4.574 3.37 12.437 8.025 10.67 1.925-5.616-4.093-6.74-8.025-10.67z"/> + <path d="M139.396 280.052c-2.086-4.01 4.734-6.02 6.178-11.234.83 7.462.134 12.357-6.178 11.234z"/> + </g> + <g stroke-linejoin="round" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"> + <path d="M119.984 232.498c3.746-4.034.437-10.436-.686-16.668-1.523 5.91-4.165 13.743.686 16.668zm-.12 7.517c-6.58.667-8.174-12.715-8.843-18.47 2.14 7.915 9.72 11.533 8.844 18.47zm1.37-.12c4.65-2.403 3.57-7.576 5.03-11.463-3.125 4.77-5.977 5.454-5.03 11.462z"/> + <path d="M119.933 248.653c-6.884.59-10.985-14.237-11.2-20.068 2.14 7.916 12.002 12.22 11.2 20.068zm1.307-.225c6.474-1.49 5.7-5.676 4.73-12.45-2.062 6.823-5.675 5.377-4.73 12.45z"/> + <path d="M119.843 257.21c-7.57 1.284-7.037-10.69-13.048-19.376 5.2 6.452 14.56 14.582 13.048 19.375zm1.71-.41c5.714.166 6.272-8.436 5.955-11.926-1.314 3.476-8.032 6.777-5.956 11.927z"/> + <path d="M108.022 247.992c2.837 9.212 6.868 18.443 11.825 17.742 2.38-5.237-4.702-5.905-11.825-17.742z"/> + <path d="M121.63 264.39c-2.086-4.01 4.734-6.02 6.178-11.233.83 7.462.134 12.357-6.178 11.234zm-11.65-5.872c4.052 8.3 5.88 17.836 11.444 16.45 2.077-6.454-6.145-7.805-11.444-16.45z"/> + <path d="M122.56 273.4c-2.39-4.392 4.43-5.945 6.102-11.996.905 7.92.06 13.574-6.102 11.995z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M119.984 232.498c3.746-4.034.437-10.436-.686-16.668-1.523 5.91-4.165 13.743.686 16.668zm-.12 7.517c-6.58.667-8.174-12.715-8.843-18.47 2.14 7.915 9.72 11.533 8.844 18.47zm1.37-.12c4.65-2.403 3.57-7.576 5.03-11.463-3.125 4.77-5.977 5.454-5.03 11.462z"/> + <path d="M119.933 248.653c-6.884.59-10.985-14.237-11.2-20.068 2.14 7.916 12.002 12.22 11.2 20.068zm1.307-.225c6.474-1.49 5.7-5.676 4.73-12.45-2.062 6.823-5.675 5.377-4.73 12.45z"/> + <path d="M119.843 257.21c-7.57 1.284-7.037-10.69-13.048-19.376 5.2 6.452 14.56 14.582 13.048 19.375zm1.71-.41c5.714.166 6.272-8.436 5.955-11.926-1.314 3.476-8.032 6.777-5.956 11.927z"/> + <path d="M108.022 247.992c2.837 9.212 6.868 18.443 11.825 17.742 2.38-5.237-4.702-5.905-11.825-17.742z"/> + <path d="M121.63 264.39c-2.086-4.01 4.734-6.02 6.178-11.233.83 7.462.134 12.357-6.178 11.234zm-11.65-5.872c4.052 8.3 5.88 17.836 11.444 16.45 2.077-6.454-6.145-7.805-11.444-16.45z"/> + <path d="M122.56 273.4c-2.39-4.392 4.43-5.945 6.102-11.996.905 7.92.06 13.574-6.102 11.995z"/> + </g> + <path d="M134.24 217.226c3.993 1.08 8.182-3.404 6.73-10.115-4.564 1.138-6.66 5.28-6.73 10.117zm-12.788-3.366c.35 1.886 2.645 2.058 1.978-.61-.557-2.163-.652-3.79 0-5.55.893-2.205.595-5.96-.076-7.526-.678-1.654-2.922-.685-1.978.61 1.04 1.5 1.094 4.622.38 6.08-.94 2.152-.685 5.01-.304 6.995z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M134.24 217.226c3.993 1.08 8.182-3.404 6.73-10.115-4.564 1.138-6.66 5.28-6.73 10.117zm-12.788-3.366c.35 1.886 2.645 2.058 1.978-.61-.557-2.163-.652-3.79 0-5.55.893-2.205.595-5.96-.076-7.526-.678-1.654-2.922-.685-1.978.61 1.04 1.5 1.094 4.622.38 6.08-.94 2.152-.685 5.01-.304 6.995z" fill-rule="evenodd" fill="#fff"/> + <path d="M135.27 206.677c-.378 2.948-2.873 3.216-2.148-.95.605-3.38.71-5.92 0-8.668-.97-3.447-.647-9.31.083-11.757.736-2.584 3.174-1.07 2.15.95-1.13 2.345-1.19 7.22-.414 9.498 1.024 3.363.747 7.825.33 10.926zm18.588 29.467c-1.543 2.27-4.002.952-2.61-2.692 1.178-2.523 1.304-5.65 2.615-7.494 1.833-2.797 4.938-5.128 6.7-6.82 1.82-1.8 3.333-.065 1.663 1.48-2.028 2.028-4.228 4.553-5.45 6.466-2.28 3.716-1.276 6.68-2.918 9.06z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <g fill-rule="evenodd" fill="#fff"> + <path d="M242.54 131.62c.18.97 1.484.926 1.14-.444-.285-1.112-.932-2.18-.597-3.085.46-1.13.57-3.077.226-3.882-.35-.85-1.47-.28-.987.385.534.77.114 2.925-.253 3.674-.482 1.106.274 2.334.47 3.354z" transform="matrix(-2.453 -.9787 -1.138 2.5207 903.448 145.415)" stroke="#000" stroke-width=".36"/> + <path d="M158.688 239.805c-1.543 2.27-4.694.882-2.293-2.235 1.967-2.524 4.77-4.585 4.977-7.19.163-3.307 2.103-8.32 3.866-10.013 1.82-1.802 3.924.733 1.978 1.935-2.187 1.42-3.608 7.26-3.56 9.508-.074 3.26-3.326 5.616-4.968 7.995z"/> + </g> + <path d="M153.858 236.144c-1.543 2.27-4.002.952-2.61-2.692 1.178-2.523 1.304-5.65 2.615-7.494 1.833-2.797 4.938-5.128 6.7-6.82 1.82-1.8 3.333-.065 1.663 1.48-2.028 2.028-4.228 4.553-5.45 6.466-2.28 3.716-1.276 6.68-2.918 9.06z" fill-rule="evenodd" fill="#fff"/> + <g fill-rule="evenodd" fill="#fff"> + <path d="M242.23 131.78c-.094.784 1.23.974 1.172-.163-.06-1.187-1.824-2.273-.742-4.08.57-.884.58-2.504.234-3.365-.303-.854-1.58-.296-1.094.37.534.77-.1 2.25-.508 2.993-1.225 2.166 1.01 3.22.938 4.245z" transform="matrix(1.9463 0 0 4.087 -343.233 -314.153)" stroke="#000" stroke-width=".345"/> + <path d="M128.22 224.436c-.184 3.205 2.395 3.98 2.28-.666-.117-4.85-3.55-9.29-1.444-16.675 1.107-3.613 1.127-10.234.455-13.753-.587-3.49-3.07-1.21-2.127 1.508 1.04 3.15-.195 9.196-.99 12.237-2.383 8.852 1.967 13.164 1.827 17.35z"/> + </g> + <path d="M135.27 206.677c-.378 2.948-2.873 3.216-2.148-.95.605-3.38.71-5.92 0-8.668-.97-3.447-.647-9.31.083-11.757.736-2.584 3.174-1.07 2.15.95-1.13 2.345-1.19 7.22-.414 9.498 1.024 3.363.747 7.825.33 10.926zm-25.36 60.296c1.236 1.47 3.318.485 1.42-1.504-1.552-1.61-1.04-2.117-1.987-4.075-.936-2.188-.887-3.395-2.016-4.96-1-1.482-2.5.03-1.495 1.28 1.263 1.476.915 2.564 1.687 3.992 1.426 2.444 1.08 3.727 2.39 5.265zm33.224 40.113c3.974 1.954 6.99 6.836 7.19 10.812.336 4.576.996 8.44 3.05 11.69-3.27-.91-4.837-6.124-5.302-11.118-.47-5.17-3.256-7.41-4.938-11.384zm8.29 9.576c2.75 5.077 6.597 7.013 6.794 10.78.333 4.335.662 4.557 1.837 8.82-3.237-.863-4.052-1.145-4.926-7.632-.54-4.56-4.19-7.775-3.706-11.968z" fill-rule="evenodd" fill="#fff"/> + <path d="M301.504 401.657c.076 1.925.306 3.472 1.447 5.018-6.64-2.66-16.015-1.236-22.43 1.75-2.86 1.366-6.32-1.562-2.964-4.335 4.773-3.867 15.814-1.674 23.95-2.433zm-93.687-.1c.094 1.813-.116 3.475-.784 5.06 7.22-2.99 14.97-.507 22.262 2.434 5.013 2.075 5.418-1.514 4.533-2.756-1.522-2.203-4.467-4.622-8.192-4.675-2.48-.036-12.026-.12-17.82-.063zm6.094-35.26c-2.012-.868-4.352-.033-6.45 2.176-7.05 6.907-15.32 13.637-21.997 18.873-2.49 2.164-5.037 6.047 5.59 9.928.385.146 8.132 3.017 13.04 3.2 2.005-.057 2 2.937 1.627 3.735-.847 1.592-.234 2.2-1.945 3.735-1.783 1.504.19 3.452 1.592 2.13 5.983-5.196 15.685-1.872 25.035 1.168 2.21.612 6.252.44 6.217-2.608.037-3.32 2.442-5.667 3.914-5.753 3.816.662 22.676.872 28.486.166 3.387-.44 3.592 4.64 5.404 6.64 1.25 1.33 6.058 1.68 9.356.225 6.518-3.028 16.45-3.028 20.498-.134 1.664 1.267 2.978.24 2.032-1.047-1.22-1.76-1.19-2.575-1.797-3.965-1.52-3.094-.307-3.85 1.287-4.074 18.01-2.322 23.756-8.467 18.25-13.477-7.11-6.237-15.025-12.506-21.845-19.874-1.85-1.954-3.07-2.74-6.92-1.14-11.764 5.36-26.698 9.265-41.313 9.552-13.6.116-32.297-6.174-40.06-9.46z" fill-rule="evenodd" fill-opacity=".185" stroke="#000" stroke-width=".973"/> + <path d="M301.504 401.657c.076 1.925.306 3.472 1.447 5.018-6.64-2.66-16.015-1.236-22.43 1.75-2.86 1.366-6.32-1.562-2.964-4.335 4.773-3.867 15.814-1.674 23.95-2.433zm-93.687-.1c.094 1.813-.116 3.475-.784 5.06 7.22-2.99 14.97-.507 22.262 2.434 5.013 2.075 5.418-1.514 4.533-2.756-1.522-2.203-4.467-4.622-8.192-4.675-2.48-.036-12.026-.12-17.82-.063zm6.094-35.26c-2.012-.868-4.352-.033-6.45 2.176-7.05 6.907-15.32 13.637-21.997 18.873-2.49 2.164-5.037 6.047 5.59 9.928.385.146 8.132 3.017 13.04 3.2 2.005-.057 2 2.937 1.627 3.735-.847 1.592-.234 2.2-1.945 3.735-1.783 1.504.19 3.452 1.592 2.13 5.983-5.196 15.685-1.872 25.035 1.168 2.21.612 6.252.44 6.217-2.608.037-3.32 2.442-5.667 3.914-5.753 3.816.662 22.676.872 28.486.166 3.387-.44 3.592 4.64 5.404 6.64 1.25 1.33 6.058 1.68 9.356.225 6.518-3.028 16.45-3.028 20.498-.134 1.664 1.267 2.978.24 2.032-1.047-1.22-1.76-1.19-2.575-1.797-3.965-1.52-3.094-.307-3.85 1.287-4.074 18.01-2.322 23.756-8.467 18.25-13.477-7.11-6.237-15.025-12.506-21.845-19.874-1.85-1.954-3.07-2.74-6.92-1.14-11.764 5.36-26.698 9.265-41.313 9.552-13.6.116-32.297-6.174-40.06-9.46z" fill-rule="evenodd" fill="#fff"/> + <g fill-rule="evenodd" fill="#fff"> + <path d="M338.583 332.01c.816 2.81 12.048-2.323 17.757-13.55-7.476 8.15-19.576 8.07-17.757 13.55z" stroke="#000" stroke-width=".973"/> + <path d="M338.583 332.01c.816 2.81 12.048-2.323 17.757-13.55-7.476 8.15-19.576 8.07-17.757 13.55z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M253.45 178.87c1.695 2.578 3.958 4.444 4.06 6.487.173 2.35.344 2.47.954 4.783-1.68-.468-2.104-.62-2.558-4.14-.28-2.47-2.708-4.856-2.456-7.13z" transform="matrix(-2.0175 0 0 1.844 868.637 -14.906)" stroke="#000" stroke-width=".505"/> + <path d="M357.293 314.93c-3.42 4.755-7.986 8.196-8.192 11.963-.347 4.335-.692 4.557-1.922 8.82 3.39-.863 4.245-1.145 5.16-7.632.566-4.557 5.464-8.955 4.956-13.15z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M254.38 180.28c2.042 1.004 2.506 2.667 2.587 4.726.04 2.384.617 4.226 1.673 5.897-2.103.305-2.486-3.147-2.725-5.713-.242-2.656-.67-2.87-1.535-4.91z" transform="matrix(-2.039 0 0 1.9463 881.502 -42.498)" stroke="#000" stroke-width=".489"/> + <path d="M362.835 308.38c-4.163 1.955-5.11 5.192-5.274 9.2-.08 4.64-1.256 8.225-3.41 11.477 4.288.594 5.07-6.125 5.557-11.12.493-5.17 1.368-5.583 3.13-9.556z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M242.23 131.44c.18.97 1.36 1.058 1.016-.312-.286-1.112-.335-1.948 0-2.852.46-1.133.306-3.062-.04-3.867-.347-.85-1.5-.354-1.015.31.536.77.564 2.376.197 3.125-.483 1.106-.352 2.574-.156 3.594z" transform="matrix(2.0818 0 0 3.0397 -129.796 -193.086)" stroke="#000" stroke-width=".387"/> + <path d="M374.47 206.457c.372 2.948 2.83 3.216 2.115-.95-.596-3.38-.698-5.92 0-8.668.955-3.446.637-9.31-.08-11.757-.726-2.583-3.126-1.07-2.116.952 1.11 2.343 1.167 7.22.403 9.496-1.005 3.363-.732 7.825-.324 10.926z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M242.23 131.78c-.094.784 1.23.974 1.172-.163-.06-1.187-1.824-2.273-.742-4.08.57-.884.58-2.504.234-3.365-.303-.854-1.58-.296-1.094.37.534.77-.1 2.25-.508 2.993-1.225 2.166 1.01 3.22.938 4.245z" transform="matrix(-1.9157 0 0 4.087 845.476 -314.367)" stroke="#000" stroke-width=".348"/> + <path d="M381.43 224.222c.18 3.204-2.358 3.98-2.245-.666.115-4.85 3.494-9.29 1.42-16.675-1.09-3.61-1.108-10.232-.447-13.75.58-3.49 3.025-1.21 2.096 1.507-1.023 3.15.19 9.196.973 12.237 2.347 8.852-1.935 13.164-1.797 17.35z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M242.23 131.44c.18.97 1.36 1.058 1.016-.312-.286-1.112-.335-1.948 0-2.852.46-1.133.306-3.062-.04-3.867-.347-.85-1.5-.354-1.015.31.536.77.564 2.376.197 3.125-.483 1.106-.352 2.574-.156 3.594z" transform="matrix(-1.9157 0 0 1.9463 852.132 -42.178)" stroke="#000" stroke-width=".504"/> + <path d="M388.086 213.644c-.342 1.887-2.603 2.06-1.946-.608.548-2.164.642-3.79 0-5.55-.88-2.206-.586-5.96.075-7.527.666-1.656 2.875-.687 1.946.607-1.02 1.5-1.074 4.623-.37 6.08.924 2.153.673 5.01.297 6.996z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M374.235 217.334c-3.323 1.41-7.618-8.035-4.444-9.807 2.463-.62 8.098 8.01 4.446 9.807z" stroke="#000" stroke-width=".973"/> + <path d="M374.235 217.334c-3.323 1.41-7.618-8.035-4.444-9.807 2.463-.62 8.098 8.01 4.446 9.807z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M242.22 131.74c.18.97 1.234.857 1.32-.555-.012-1.006.432-2.074.267-2.87-.197-1.186-.906-2.386-1.25-3.19-.35-.85-1.142-.47-.806.273.386.954.75 2.098.876 2.905.208 1.555-.6 2.417-.405 3.437z" transform="matrix(2.367 -.9787 1.098 2.5207 -362.4 141.044)" stroke="#000" stroke-width=".367"/> + <path d="M355.57 236.05c1.488 2.27 3.86.952 2.517-2.692-1.136-2.523-1.258-5.65-2.522-7.495-1.77-2.796-4.765-5.127-6.465-6.82-1.757-1.8-3.216-.064-1.605 1.48 1.957 2.03 4.08 4.554 5.26 6.467 2.2 3.716 1.23 6.68 2.814 9.06z"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M242.54 131.62c.18.97 1.484.926 1.14-.444-.285-1.112-.932-2.18-.597-3.085.46-1.13.57-3.077.226-3.882-.35-.85-1.47-.28-.987.385.534.77.114 2.925-.253 3.674-.482 1.106.274 2.334.47 3.354z" transform="matrix(2.367 -.9787 1.098 2.5207 -367.113 144.086)" stroke="#000" stroke-width=".367"/> + <path d="M351.48 238.476c1.49 2.27 4.53.882 2.214-2.236-1.898-2.523-4.603-4.584-4.803-7.19-.155-3.306-2.027-8.32-3.73-10.012-1.755-1.802-3.784.733-1.906 1.934 2.11 1.42 3.482 7.262 3.435 9.51.07 3.26 3.21 5.615 4.792 7.994z"/> + </g> + <path stroke-linejoin="round" d="M220.83 343.95c4.512 3.6 8.765 7.687 10.037 12.773 1.328 4.737 2.13 8.363 5.172 13.077-4.767-3.042-6.66-7.637-8.06-12.624-1.234-4.9-4.058-8.562-7.15-13.227z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M220.83 343.95c4.512 3.6 8.765 7.687 10.037 12.773 1.328 4.737 2.13 8.363 5.172 13.077-4.767-3.042-6.66-7.637-8.06-12.624-1.234-4.9-4.058-8.562-7.15-13.227zm-5.157 0c4.208 3.446 6.938 7.382 8.21 12.467 1.328 4.738 3.195 8.515 5.933 12.774-4.46-3.04-7.265-7.18-8.668-12.165-1.232-4.9-2.686-8.563-5.475-13.075zm78.767 0c-4.302 3.466-7.093 7.425-8.394 12.54-1.357 4.766-3.265 8.566-6.064 12.85 4.56-3.06 7.427-7.223 8.86-12.24 1.26-4.928 2.746-8.613 5.597-13.15zm-5.295 0c-4.61 3.62-8.958 7.732-10.26 12.848-1.356 4.765-2.176 8.412-5.285 13.154 4.87-3.06 6.804-7.682 8.238-12.698 1.26-4.928 4.146-8.612 7.308-13.305zm-15.278 12.008c.124-.89-.482-1.666-1.21-1.9-1.42-.533-2.83-.967-4.237-1.368-1.6-.38-2.494.767-2.5 1.52-.007 1.254-.065 2.318 0 3.268.088 1.183.312 1.27 1.06 1.446 1.197.202 2.732.41 3.935 1.216.953.588 1.87.123 2.345-.91.308-.79.477-2.336.607-3.272zm-17.225 0c-.11-.89.357-1.742 1.007-1.976 1.265-.533 2.527-.663 3.86-.61 1.476-.022 1.85.313 1.853 1.066.008 1.253.06 2.47 0 3.42-.078 1.183-.052 1.27-.72 1.446-1.07.202-2.893.256-3.968 1.064-.852.588-1.823.123-1.87-.987.022-.834-.048-2.485-.164-3.42zm-20.902-.234c-.126-.89.484-1.666 1.215-1.9 1.425-.533 2.844-.967 4.257-1.368 1.606-.38 2.505.767 2.51 1.52.008 1.254.067 2.32 0 3.268-.087 1.184-.313 1.27-1.064 1.446-1.203.203-2.744.41-3.953 1.217-.957.588-1.878.123-2.357-.91-.31-.79-.48-2.337-.61-3.273zm17.302 0c.11-.89-.36-1.742-1.012-1.975-1.273-.535-2.54-.666-3.878-.61-1.485-.025-1.86.31-1.864 1.063-.008 1.254-.06 2.47 0 3.42.078 1.183.052 1.27.724 1.446 1.074.2 2.907.256 3.987 1.064.853.587 1.83.122 1.875-.987-.02-.837.05-2.488.166-3.424zm-16.018 7.902c1.545 2.914 3.32 7.35 6.537 6.538.053-2.23-3.47-3.776-6.535-6.538zm4.806.994c6.25 2.56 11.645 1.928 12.317 5.855-5.86.633-8.005-1.775-12.316-5.856zm30.636-.604c-1.567 2.746-3.366 6.928-6.627 6.163-.054-2.105 3.517-3.56 6.625-6.165zm-4.38.836c-6.34 2.43-11.813 1.83-12.496 5.558 5.948.6 8.123-1.684 12.496-5.558z" fill-rule="evenodd" fill="#fff"/> + <path d="M286.79 302.57l13.61.003c.052 5.144 3.066 10.67 7.3 13.836h-26.08c4.08-3.7 5.196-8.087 5.17-13.84z" fill-opacity=".534" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M286.79 302.57l13.61.003c.052 5.144 3.066 10.67 7.3 13.836h-26.08c4.08-3.7 5.196-8.087 5.17-13.84z" fill-rule="evenodd" fill="#fff"/> + <path d="M189.69 385.756c-.75.572-.7 2.29.76 2.888 13.593 4.877 26.717 13.89 64.476 13.535 38.12-.36 51.516-9.158 63.716-13.23 1.625-.62 3.155-1.88 1.064-3.65-6.855-5.604-14.264-10.108-19.16-17.033-.87-1.245-3.242-.54-4.715 0-14.55 5.11-27.992 8.692-41.97 8.667-13.645-.025-27.87-3.784-40.676-9.046-1.226-.525-3.234.065-4.182.985-5.94 5.92-12.403 11.663-19.31 16.88z" stroke="#000" stroke-width=".487" fill="none"/> + <path d="M208.004 376.394c-1.637-1.055-2.374.317-1.216 1.75 1.502 1.648 3.933 2.64 6.46 3.345 1.477.41 4.523-.11 6.086.074 1.216.152 1.903 2.606 4.106 2.51 2.223-.096 3.65-6.007 3.726-8.973.1-1.965-2.616-.71-2.357.08.71 1.953-.594 6.312-1.98 6.31-1.02-.064-2.114-2.178-3.65-2.434-1.2-.2-3.022.14-4.26.15-3.612.036-5.17-1.766-6.917-2.813z" fill-rule="evenodd"/> + <path d="M211.06 374.798c1.93.963 3.614-.76 4.716.457 2.814 3.194 6.434-1.53 2.205-1.368-1.71.066-1.975-1.294-4.942-.99-1.578.202-2.9 1.364-1.977 1.9zm.448 13.994c-1.524-.666-2.036.782-1.14 1.674 1.256 1.148 6.478 1.605 7.755.685 2.112-1.6.568-5.81-.38-6.995-.59-.722-2.374-.777-1.673 1.142.29.89 1.586 3.103.53 4.105-.964.924-3.635 0-5.092-.608zm11.716 1.285c.335-.86-.568-2.338-2.13-.61-1.29 1.363-.244 7.106 3.878 8.136 4.03.99 7.048-.46 7.602-2.66.384-1.466-1.823-2.74-.683-4.032.954-1.01 2.79.014 3.576-1.593.46-.902.496-2.75-1.978-3.955-1.072-.538-2.93.692-2.89 1.6.058 1.246 1.99.433 1.292 1.52-.51.826-2.794.48-3.496 2.43-.42 1.24 2.584 3.53.988 4.108-1.424.493-3.28.812-5.17-.228-1.17-.618-1.665-3.18-.988-4.713zm-14.52-7.902c-.957.14-2.28.836-2.354 1.977-.06.915.695 2.5 1.977 1.442 1.324-1.027.308-1.514.608-1.14.66.66-.308.714-1.52 2.36-.845 1.246-2.65 1.046-3.574.606-1.594-.823-.996-1.35-2.736-2.13-1.738-.854-2.79 1.15-1.14 2.054 1.823 1.045 4.81 3.133 7.755 1.598 1.75-.99 3.8-1.89 3.724-4.107-.1-1.44-.74-2.94-2.738-2.66zm94.572-.76c-1.345-.96-.522-2.705 1.446-2.053 1.674.62 4.453 2.59 4.636 5.17.208 2.824-4.34 4.89-6.08 4.793-2.98-.24-2.45-2.604-.23-2.435 1.72.125 3.834-.488 3.955-2.28.1-1.556-2.758-2.46-3.727-3.195zm-9.81-6.91c-1.738-1.752 1.9-3.65 2.964-1.52 1.404 2.708 3.074 5.373 4.335 8.364 1.004 2.453-.313 2.785-1.14 1.442-1.384-2.335-3.48-5.46-6.16-8.287zm-8.506 5.237c1.87-.814 1.825 1.52 1.14 1.977-1.234.685-2.89-1.14-1.14-1.98zm5.548-2.044c1.87-.813 1.824 1.52 1.14 1.977-1.236.688-2.89-1.14-1.14-1.977z" fill-rule="evenodd"/> + <path d="M232.49 380.968c-2.808-1.793.57-4.467 2.507-2.433 2.778 2.836 5.433 9.05 7.53 11.405 1.992 2.314.386-6.275.987-8.82.41-1.415 1.517-1.217 1.52.15.01 3.5-.53 10.62.38 11.18 1.7.966 1.394 2.545 2.812 2.28 1.522-.362 1.295-.76 2.663-.837 1.355 0 1.4 1.36 2.964 1.14.997-.13 1.296-1.26 2.507-1.294 1.105-.095.63 2.342-.073 2.737-1.146.644-4.716-.7-5.78-.607-1.264.034-3.54 1.207-4.942.684-1.71-.61-1.33-2.78-2.51-2.433-1.332.31-1.08 2.736-4.255 3.5-1.486.34-1.987-.997-1.216-1.9 1.38-1.477 4.16-2.655 3.725-4.03-1.288-3.835-5.175-8.454-8.82-10.72zm24.405.525c1.35 4.438 1.283 10.34 2.054 14.372.377 1.586 1.895.173 1.747-1.065-.597-4.33-.86-9.646-1.977-13.762-.462-1.425-2.34-1.148-1.825.455zm3.737 1.15c-.356-1.85 1.415-2.025 1.674-.916.913 3.57.796 11.744 2.585 12.014 3.088.355 7.417-.284 11.255-1.062 1.888-.376 2.275-1.742 2.205-2.283-.363-2.196 1.687-2.022 2.204.305.28 1.214-.272 3.392-2.584 3.876-4.518.872-10.736 2.217-14.296 1.445-3.118-.66-2.102-8.71-3.042-13.377z" fill-rule="evenodd"/> + <path d="M265.654 385.834c.077-2.342 1.835-2.686 1.823-.686.05 4.79 5.656 3.547 6.845 1.75.878-1.4.236-2.004-.61-3.573-1.05-2.03 1.175-2.602 2.13-.837.715 1.263 1.21 5.29-.075 6.312-1.78 1.41-6.594 2.104-8.67.53-1.1-.758-1.53-2.214-1.443-3.496zm-2.434-6.248c.25 1.5 4.333.99 4.18-.152-.14-.98-4.407-.76-4.18.152zm5.314 1.226c.16 1.512 2.803 1.067 2.66-.076-.14-1.208-2.812-1.446-2.66.076zm7.98-1.83c-1.34-1.852 1.27-1.97 2.13-.607 2.226 3.33 3.693 8.694 5.854 12.317.918 1.67 2.07.177 2.205-.228.144-.43-.7-1.09-.76-2.585-.106-1.164 2.27-2.608 3.954-1.52 1.574 1.06.286 2 1.064 2.583.744.556 2.616.206 2.893-.152.83-1.305-.302-.54-1.446-1.293-1.324-.948-.53-5.055 2.205-3.346 1.628.943 2.107 3.954 1.52 5.628-.517 1.55-3.24 2.077-4.713 1.748-1.66-.506-3-2.502-2.66-1.977.82 1.35-.204 2.68-.99 3.194-1.94 1.218-3.298 1.857-4.714-.152-2.51-3.76-3.893-10.103-6.54-13.61z" fill-rule="evenodd"/> + <path d="M205.65 121.273c-.112-2.246 3.37-2.418 2.97.67-.51 3.85 7.265 13.592 7.91 19.6.43 4.03-2.368 7.555-5.14 9.75-3.397 2.632-8.623 2.27-11.068.76-1.48-1.19-2.828-5.268-1.72-6.882.39-.54 2.162 5.987 6.062 5.96 5.308-.033 9.607-4.02 9.765-7.576.27-6.193-8.684-15.982-8.78-22.28zm15.55 15.297c.878-.626 2.28 2.112 1.29 2.797-.823.548-2.43-2.036-1.29-2.796zm2.336-5.546c-.444.215-1.326-.09-1.063-.467 1.242-1.774 3.89-4.444 5.808-5.377.59-.286 1.623.755 1.267 1.265-1.148 1.64-3.943 3.576-6.01 4.58zm20.534-16.29c.492-1.028 3.448-2.19 4.2-2.885.698-.716 1.03.6.733 1.223-.492 1.027-3.044 2.762-4.163 2.81-.602.024-1.07-.53-.77-1.15zm7.006.33c.64-1.804 2.705-4.54 4.126-5.44.73-.46 2.04-.098 1.794.594-.543 1.53-3.07 4.205-4.768 5.465-.516.46-1.3-.2-1.152-.62zm-6.014 4.516c-.428.214-.197 1.126.216 1.264.878.292 2.475.35 3.2-.05 1.05-.648.572-4.634-.835-2.505-.944 1.312-1.633.89-2.58 1.29zm-11.872 9.147c-2.147-1.672.577-4.014 2.82-2.378 4.373 3.295-6.52 15.93-12.447 21.833-1.084 1.157-2.036-1.756-.646-3.01 4.25-3.605 8.227-7.91 10.992-12.36.532-.855 1.042-2.7-.72-4.087zm24.873-10.86c.267-1.6-2.59.033-2.64-2.088-.028-1.124 3.12-1.91 4.435-.62 2.222 2.254.56 6.06-3.136 6.297-3.08.136-8.22 4.374-7.44 5.265.89 1.1 8.88 1.827 13.526 1.1 2.877-.404 2.273 2.17-.673 2.517-2.848.327-5.168.023-7.828.86-3.132.894-4.498 5.1-6.238 6.666-.39.273-1.435-1.378-1.038-1.998 1.254-1.962 3.253-4.962 5.452-5.82 1.388-.563-3.826-.74-5.49-1.215-1.32-.398-.937-2.075-.43-3.01.67-1.46 5.585-6.38 7.567-6.3 1.86.078 3.747-.464 3.93-1.658zm8.29.428c.926-.815 1.4-2.18 2.368-3.01.533-.533 1.38.105 1.24 1.39-.12 1.01-1.477 1.883-2.39 2.643-.744.557-1.61-.645-1.215-1.023zm10.53-3.755c1.377-.153 1.72 2.503.215 2.933-.913.305-1.71-2.777-.214-2.934zm-3.463 8.212c-.022 2.287 1.107 2.077 3.26 2 2.092-.08 3.93.053 3.923-2.013-.01-2.143-1.185-4.016-1.53-2.56-.303 1.37-.545 3.61-1.34 2.634-.752-.84-.454-1.023-1.746.354-.717.758-.798-.37-1.23-1.076-.298-.42-1.336.338-1.338.658zm-15.026 11.678c-.514 3.027-.043 7.264 1.506 7.312 1.916.062 5.878-6.617 7.754-10.082 1.125-1.933 3.058-2.27 2.252-.254-1.22 3.113-1.11 9.772-.04 11.728.577 1.054 4.83-.966 5.517-2.467 1.25-2.73.234-7.758.672-10.83.212-2.016 2.057-2.437 1.96-.568-.183 3.342-.5 9.472-.265 12.256.14 1.6 4.716 3.962 5.45-.884.39-3.05 1.96-6.06-.074-9.44-1.262-2.112 1.85-1.847 3.528 1.04 1.174 1.964-.99 5.215-.913 7.73.197 3.865-2.81 6.06-4.992 6.107-1.95.04-3.22-2.357-4.82-2.39-1.772-.114-3.594 2.76-5.06 2.656-5.68-.388-2.672-8.69-4.402-8.79-1.925-.114-4.194 8.135-6.565 7.84-2.336-.28-4.755-6.722-3.782-9.448.88-2.538 2.538-3.132 2.277-1.52z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M285.895 121.33c-2.77-1.69.175-6.085 1.53-4.54 2.616 3.132 5.253 10.568 7.096 11.182 1.17.39 1.115-5.496 1.94-8.172.53-1.977 2.92-1.33 2.463 1.2-.156.847-3.122 10.463-2.894 10.843 2.054 4.11 4.09 8.28 5.374 12.69.532 1.9-1.75.62-2.024.224-1.46-2.18-4.01-10.51-4.01-10.13-1.174 5.86-1.45 7.59-2.696 12.572-.38 1.595-2.73 1.304-2.2-1.507.51-2.31 3.87-13.674 3.68-14.003-2.64-4.66-5.055-8.35-8.26-10.36z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M290.897 148.366c-.773-.088-1.97 1.718 1.876 2.428 5.142.93 10.77-.8 12.496-5.843 1.973-6.004 3.28-11.69 4.31-13.836 1.29-2.5 2.938-2.298 1.72-5.948-.857-2.626-2.46-1.834-2.796-.43-.9 3.83-4.31 16.214-5.375 18.495-2.01 4.163-6.058 5.81-12.234 5.137z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M301.193 128.61c-.55-1.18-1.835-.266-1.606 1.026.137 1.168 1.084 1.803 2.036 1.77 1.127-.04 3.51.038 3.517-1.833.004-1.315-1.03-2.413-1.796-.962-.734 1.315-1.678 1.177-2.15 0zm1.285-4.943c-.395.274-.04 1.736.43 1.72 1.68-.056 4.06-.592 5.335-1.48.373-.26.218-1.142-.314-1.124-1.62.054-4.198.01-5.453.884zm14.266 3.678c1.216-1.9 4.572-2.094 3.365.62-.856 1.87-9.21 18.01-10.35 20.062-1.244 2.308-2.26 1.165-1.378-.632 1.19-2.313 7.98-19.488 8.36-20.05z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M304.17 151.382c-.355-1.284-2.348-3.184-2.124.252.397 6.238 8.966 4.266 11.56 2.05 2.356-2.088.312 7.04 3.442 8.018 1.724.553 4.97-1.8 6.566-3.87 4.426-5.744 7.243-13.976 11.5-19.647 1.607-2.217-.88-3.8-1.887-2.035-3.702 6.207-8.3 18.874-13.32 22.164-4.093 2.62-2.88-3.373-3.023-5.173-.18-1.32-1.79-3.262-3.935-1.48-1.503 1.174-3.835 2.128-5.946 1.937-1.225-.068-2.258-.047-2.834-2.213z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M319.47 139.802c.044-.352-1.813-.512-1.722 1.29.065 1.334 1.66 1.697 1.935 1.506 2.51-1.826-.533-.916-.214-2.796zm-3.66 7.298c-.495.116-.948 1.694.216 1.784 1.064.076 5.235-.372 6.388-.304.745-.028 1.03-1.453-.57-1.378-1.937.098-4.485-.388-6.034-.102zm27.618-1.85c1.71-6.41 5.854.99 2.205 4.64-5.635 5.518-7.332 16.054-16.27 17.64-2.41.518-6.652-1.084-7.91-1.977-.49-.35.318-2.638 1.825-1.52 2.178 1.7 6.676 2.084 9.05.15 5.08-4.985 9.216-11.588 11.1-18.932zm-92.878 14.248c-.403.464-1.635.388-1.746 1.038-.484 2.41 0 3.633-.53 5.955-.51 2.225-2.052 2.31-1.947.497.14-2.35 2.077-5.666.708-5.894-.91-.214-1.613-1.432-.67-2.034 1.778-1.234 2.733-1.046 3.956-.674.428.13.537.757.23 1.113z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M249.305 156.345c-2.36 2.063-4.547 2.906-6.717 5.514-.887 1.067-.862 2.556-1.392 3.92-.53 1.444-2.24 1.73-2.77 1.427-.885-.582-.756-3.264-1.745-1.82-.837 1.33-1.38 3.16-2.62 3.137-1.12-.023-3.234-2.316-2.162-2.427 3.67-.375 3.624-3.312 4.998-3.505 1.542-.206 1.643 2.425 2.595 1.898.748-.383 1.1-3.448 1.91-4.275 2.49-2.542 4.457-3.885 6.995-5.754 1.284-1.02 2.2.826.91 1.886zm8.602 7.902c-1.888.382-1.566 2.81-1.012 3.11.915.427 2.33.606 2.86-2.185.247-1.147.47 5.7 2.983 3.06 1.446-1.597 5.03.29 6.53-1.72 1.074-1.338 1.405-2.272.568-4.25-.243-.6-1.714-.305-1.63 1.154.073 1.23-.873 2.748-2.103 2.49-.597-.11.337-3.01-.263-3.796-.33-.432-.833-.385-1.16.063-.463.626.462 3.406-1.054 3.772-1.914.44-.91-1.86-1.72-2.28-2.605-1.313-2.856.34-4 .582zm14.733-4.67c1.385-.39.953-.39 3.13-2.175.85-.642 1.016 1.238.927 1.982-.158 1.263-1.658.37-2.123 1.483-.682 1.444-.405 4.803-.633 6.17-.154.704-1.28.644-1.39.09-.32-1.67.23-3.302.177-5.388-.017-.71-1.03-1.82-.085-2.165zm-6.5-7.514c-.335 1.51-.31 2.754-.31 3.79.077.836 1.606.297 1.6.19-.075-1.326.226-3.16-.165-3.67-.212-.276-1.047-.594-1.125-.31z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M205.65 121.273c-.112-2.246 3.37-2.418 2.97.67-.51 3.85 7.265 13.592 7.91 19.6.43 4.03-2.368 7.555-5.14 9.75-3.397 2.632-8.623 2.27-11.068.76-1.48-1.19-2.828-5.268-1.72-6.882.39-.54 2.162 5.987 6.062 5.96 5.308-.033 9.607-4.02 9.765-7.576.27-6.193-8.684-15.982-8.78-22.28z" fill-rule="evenodd" fill="#fff"/> + <path d="M214.894 119.97c.662.03 2.476 2.38 2.357 3.116-.08.347-1.94-.05-2.507-.532-.42-.356-.25-2.604.152-2.585zm-8.747 17.027c-1.658.905.263 2.69 1.505 1.936 4.66-3.018 11.656-6.19 13.118-12.167.47-2.025 2.35-5.13 4.138-5.822 1.726-.67 4.233 3.124 5.87.14.96-1.707 4.323 1.12 5.134-.707.99-2.205.518-3.42.56-5.53-.073-1.384-1.13-1.797-1.897.443-.4 1.014.07 2.038-.255 2.567-.247.403-1.018.792-1.465.456-.413-.31-.127-1.173-1.116-1.555-.385-.192-1-.352-1.267.14-1.173 2.092-1.823 4.044-3.466 1.82-1.464-1.916-2.205-5.228-3.278-.696-.386 1.6-2.817 3.92-4.25 3.92-1.79 0-1.34-4.713-5.276-3.996-2.022.432-1.882 4.3-1.58 5.73.496 1.988 6.405.56 6.11 1.86-1.01 4.515-7.276 8.807-12.588 11.46z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M169.156 158.506c-.25.755.753 2.806 1.795 2.958 1.023.076 1.545-2.215 1.216-2.958-.243-.547-2.83-.535-3.01 0zm5.41 7.96c-.655-.706-2.59 1.19-1.025 2.53.88.71 4.095 1.742 4.975.242 1.19-1.93-1.174-8.942-.127-9.868.818-.724 4.607 4.683 6.478 5.072 4.394.61 3.34-7.524 8.075-6.972 3.228.43 3.58-3.602 3.13-6.12-.36-2.416-4.27-5.904-6.07-7.464-2.365-1.97-3.42 1.452-1.935 2.58 1.912 1.53 5.273 4.623 5.808 6.668.253.965-2.335 2.884-3.29 2.365-2.2-1.203-4.248-6.353-6.173-7.53-.657-.4-2.27.505-1.494 2.11.874 1.724 4.734 4.39 4.96 6.227.204 1.676-1.72 5.3-2.984 5.3-1.39 0-4.932-4.38-6.038-6.44-.552-.987-2.467-.892-2.668.47-.317 2.046.296 6.375.784 9.057.388 2.54-1.43 2.668-2.403 1.77zM167.93 152.5c-.553.626 1.29 1.85 1.656 1.53.71-.614 3.47-3.758 2.937-4.857-.473-.98-4.266-3.126-4.883-2.063-1.145 1.84 3.575 2.663 2.836 3.202-.364.21-1.662 1.105-2.546 2.19zm6.812-13.778s1.185 4.055 2.15 2.365c.78-1.17-2.15-2.365-2.15-2.365zm1.928 6.452c-.435.237-1.658 1.205-.86 1.72 1.258.745 4.683 1.335 3.944-1.1-.45-1.436 5.165.04 3.797-3.846-.356-1.075-2.05-2.627-2.883-2.846-.53-.14-2.327.847-1.202 1.39.82.426 3.3 1.88 2.378 2.835-1.045.997-1.773-.448-3.073-.215-.655.124-.23 1.985-.597 2.492-.206.282-1.15-.623-1.504-.43zm8.913-15.42c-.71.353-1.978 2.274-2.024 3.162-.028.474.492 1.125.897.923.743-.373 1.892-2.19 1.934-3.026.03-.527-.37-1.28-.81-1.062zm4.632-.494c-1.368-1.672 1.452-4.155 2.72-.807.768 2.1 8.942 12.857 10.614 16.507 1.18 2.47-.045 3.49-1.508 1.72-4.14-5.282-7.536-11.865-11.828-17.42zm8.39.215c1.456-1.58 4.432-4.805 3.63-6.604-.615-1.545-2.423-1.39-2.73-1.034-1.77 2.11 1.255 1.58.82 2.303-.9 1.69-1.8 2.622-2.264 4.25-.107.38.28 1.37.545 1.086z" stroke-width=".973" stroke-linejoin="round" fill-rule="evenodd" stroke="#000" fill="#fff"/> + <path d="M169.156 158.506c-.25.755.753 2.806 1.795 2.958 1.023.076 1.545-2.215 1.216-2.958-.243-.547-2.83-.535-3.01 0zm5.41 7.96c-.655-.706-2.59 1.19-1.025 2.53.88.71 4.095 1.742 4.975.242 1.19-1.93-1.174-8.942-.127-9.868.818-.724 4.607 4.683 6.478 5.072 4.394.61 3.34-7.524 8.075-6.972 3.228.43 3.58-3.602 3.13-6.12-.36-2.416-4.27-5.904-6.07-7.464-2.365-1.97-3.42 1.452-1.935 2.58 1.912 1.53 5.273 4.623 5.808 6.668.253.965-2.335 2.884-3.29 2.365-2.2-1.203-4.248-6.353-6.173-7.53-.657-.4-2.27.505-1.494 2.11.874 1.724 4.734 4.39 4.96 6.227.204 1.676-1.72 5.3-2.984 5.3-1.39 0-4.932-4.38-6.038-6.44-.552-.987-2.467-.892-2.668.47-.317 2.046.296 6.375.784 9.057.388 2.54-1.43 2.668-2.403 1.77zM167.93 152.5c-.553.626 1.29 1.85 1.656 1.53.71-.614 3.47-3.758 2.937-4.857-.473-.98-4.266-3.126-4.883-2.063-1.145 1.84 3.575 2.663 2.836 3.202-.364.21-1.662 1.105-2.546 2.19zm6.812-13.778s1.185 4.055 2.15 2.365c.78-1.17-2.15-2.365-2.15-2.365zm1.928 6.452c-.435.237-1.658 1.205-.86 1.72 1.258.745 4.683 1.335 3.944-1.1-.45-1.436 5.165.04 3.797-3.846-.356-1.075-2.05-2.627-2.883-2.846-.53-.14-2.327.847-1.202 1.39.82.426 3.3 1.88 2.378 2.835-1.045.997-1.773-.448-3.073-.215-.655.124-.23 1.985-.597 2.492-.206.282-1.15-.623-1.504-.43zm8.913-15.42c-.71.353-1.978 2.274-2.024 3.162-.028.474.492 1.125.897.923.743-.373 1.892-2.19 1.934-3.026.03-.527-.37-1.28-.81-1.062zm4.632-.494c-1.368-1.672 1.452-4.155 2.72-.807.768 2.1 8.942 12.857 10.614 16.507 1.18 2.47-.045 3.49-1.508 1.72-4.14-5.282-7.536-11.865-11.828-17.42zm8.39.215c1.456-1.58 4.432-4.805 3.63-6.604-.615-1.545-2.423-1.39-2.73-1.034-1.77 2.11 1.255 1.58.82 2.303-.9 1.69-1.8 2.622-2.264 4.25-.107.38.28 1.37.545 1.086zM304.17 151.382c-.355-1.284-2.348-3.184-2.124.252.397 6.238 8.966 4.266 11.56 2.05 2.356-2.088.312 7.04 3.442 8.018 1.724.553 4.97-1.8 6.566-3.87 4.426-5.744 7.243-13.976 11.5-19.647 1.607-2.217-.88-3.8-1.887-2.035-3.702 6.207-8.3 18.874-13.32 22.164-4.093 2.62-2.88-3.373-3.023-5.173-.18-1.32-1.79-3.262-3.935-1.48-1.503 1.174-3.835 2.128-5.946 1.937-1.225-.068-2.258-.047-2.834-2.213zM221.2 136.57c.878-.626 2.28 2.112 1.29 2.797-.823.548-2.43-2.036-1.29-2.796z" fill-rule="evenodd" fill="#fff"/> + <path d="M325.327 134.76c-1.047-.847 1.03-4.958 2.435-3.345 3.858 4.464 5.65 18.958 6.765 29.806 0 0-1.734 1.448-1.747 1.218 0-5.778-2.322-23.456-7.453-27.676z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M223.536 131.024c-.444.215-1.326-.09-1.063-.467 1.242-1.774 3.89-4.444 5.808-5.377.59-.286 1.623.755 1.267 1.265-1.148 1.64-3.943 3.576-6.01 4.58zm101.79 3.736c-1.046-.847 1.03-4.958 2.436-3.345 3.858 4.464 5.65 18.958 6.765 29.806 0 0-1.734 1.448-1.747 1.218 0-5.778-2.322-23.456-7.453-27.676z" fill-rule="evenodd" fill="#fff"/> + <path d="M327.702 160.082c.696-1.94 9.96-17.49 11.177-20.91.62-1.65 3.28 2.83.683 5.245-2.28 2.053-9.01 13.09-10.266 16.957-.578 1.746-2.332.915-1.596-1.292z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M258.063 117.867c.267-1.6-2.59.033-2.64-2.088-.028-1.124 3.12-1.91 4.435-.62 2.222 2.254.56 6.06-3.136 6.297-3.08.136-8.22 4.374-7.44 5.265.89 1.1 8.88 1.827 13.526 1.1 2.877-.404 2.273 2.17-.673 2.517-2.848.327-5.168.023-7.828.86-3.132.894-4.498 5.1-6.238 6.666-.39.273-1.435-1.378-1.038-1.998 1.254-1.962 3.253-4.962 5.452-5.82 1.388-.563-3.826-.74-5.49-1.215-1.32-.398-.937-2.075-.43-3.01.67-1.46 5.585-6.38 7.567-6.3 1.86.078 3.747-.464 3.93-1.658zm-24.873 10.86c-2.147-1.672.577-4.014 2.82-2.378 4.373 3.295-6.52 15.93-12.447 21.833-1.084 1.157-2.036-1.756-.646-3.01 4.25-3.605 8.227-7.91 10.992-12.36.532-.855 1.042-2.7-.72-4.087z" fill-rule="evenodd" fill="#fff"/> + <path d="M238.834 120.65c-1.248-2.868 1.872-3.93 2.34-1.885 2.167 9.42 7.358 16.554 11.31 22.96 1.188 2.003.235 3.197-2.658 1.354-2.002-1.376-4.036-6.383-5.02-6.58-1.784-.33-6.05 8.134-14.777 5.72-2.26-.633-2.11-7.347-2.153-10.31-.095-1.39 1.44-1.76 1.493.137.08 2.734-.003 8.413 3.494 8.604 2.852.16 9.167-3.87 10.5-7.022 1.184-3.24-3.182-9.68-4.53-12.98z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M214.894 119.97c.662.03 2.476 2.38 2.357 3.116-.08.347-1.94-.05-2.507-.532-.42-.356-.25-2.604.152-2.585zm-8.747 17.027c-1.658.905.263 2.69 1.505 1.936 4.66-3.018 11.656-6.19 13.118-12.167.47-2.025 2.35-5.13 4.138-5.822 1.726-.67 4.233 3.124 5.87.14.96-1.707 4.323 1.12 5.134-.707.99-2.205.518-3.42.56-5.53-.073-1.384-1.13-1.797-1.897.443-.4 1.014.07 2.038-.255 2.567-.247.403-1.018.792-1.465.456-.413-.31-.127-1.173-1.116-1.555-.385-.192-1-.352-1.267.14-1.173 2.092-1.823 4.044-3.466 1.82-1.464-1.916-2.205-5.228-3.278-.696-.386 1.6-2.817 3.92-4.25 3.92-1.79 0-1.34-4.713-5.276-3.996-2.022.432-1.882 4.3-1.58 5.73.496 1.988 6.405.56 6.11 1.86-1.01 4.515-7.276 8.807-12.588 11.46zm32.687-16.347c-1.248-2.868 1.872-3.93 2.34-1.885 2.167 9.42 7.358 16.554 11.31 22.96 1.188 2.003.235 3.197-2.658 1.354-2.002-1.376-4.036-6.383-5.02-6.58-1.784-.33-6.05 8.134-14.777 5.72-2.26-.633-2.11-7.347-2.153-10.31-.095-1.39 1.44-1.76 1.493.137.08 2.734-.003 8.413 3.494 8.604 2.852.16 9.167-3.87 10.5-7.022 1.184-3.24-3.182-9.68-4.53-12.98zm5.236-5.917c.492-1.027 3.448-2.19 4.2-2.884.698-.716 1.03.6.733 1.223-.492 1.027-3.044 2.762-4.163 2.81-.602.024-1.07-.53-.77-1.15zm7.006.33c.64-1.803 2.705-4.54 4.126-5.44.73-.46 2.04-.097 1.794.595-.543 1.53-3.07 4.205-4.768 5.465-.516.46-1.3-.2-1.152-.62zm-6.014 4.517c-.428.214-.197 1.126.216 1.264.878.292 2.475.35 3.2-.05 1.05-.648.572-4.634-.835-2.505-.944 1.312-1.633.89-2.58 1.29zm21.292-1.285c.925-.815 1.398-2.18 2.367-3.01.533-.533 1.38.105 1.24 1.39-.12 1.01-1.477 1.883-2.39 2.643-.744.557-1.61-.645-1.215-1.023zm10.53-3.755c1.376-.153 1.718 2.503.214 2.933-.913.305-1.71-2.777-.214-2.934zm-3.464 8.212c-.022 2.287 1.107 2.077 3.26 2 2.092-.08 3.93.053 3.923-2.013-.01-2.143-1.185-4.016-1.53-2.56-.303 1.37-.545 3.61-1.34 2.634-.752-.84-.454-1.023-1.746.354-.717.758-.798-.37-1.23-1.076-.298-.42-1.336.338-1.338.658zm-15.026 11.678c-.514 3.027-.043 7.264 1.506 7.312 1.916.062 5.878-6.617 7.754-10.082 1.125-1.933 3.058-2.27 2.252-.254-1.22 3.113-1.11 9.772-.04 11.728.577 1.054 4.83-.966 5.517-2.467 1.25-2.73.234-7.758.672-10.83.212-2.016 2.057-2.437 1.96-.568-.183 3.342-.5 9.472-.265 12.256.14 1.6 4.716 3.962 5.45-.884.39-3.05 1.96-6.06-.074-9.44-1.262-2.112 1.85-1.847 3.528 1.04 1.174 1.964-.99 5.215-.913 7.73.197 3.865-2.81 6.06-4.992 6.107-1.95.04-3.22-2.357-4.82-2.39-1.772-.114-3.594 2.76-5.06 2.656-5.68-.388-2.672-8.69-4.402-8.79-1.925-.114-4.194 8.135-6.565 7.84-2.336-.28-4.755-6.722-3.782-9.448.88-2.538 2.538-3.132 2.277-1.52z" fill-rule="evenodd" fill="#fff"/> + <path d="M285.895 121.33c-2.77-1.69.175-6.085 1.53-4.54 2.616 3.132 5.253 10.568 7.096 11.182 1.17.39 1.115-5.496 1.94-8.172.53-1.977 2.92-1.33 2.463 1.2-.156.847-3.122 10.463-2.894 10.843 2.054 4.11 4.09 8.28 5.374 12.69.532 1.9-1.75.62-2.024.224-1.46-2.18-4.01-10.51-4.01-10.13-1.174 5.86-1.45 7.59-2.696 12.572-.38 1.595-2.73 1.304-2.2-1.507.51-2.31 3.87-13.674 3.68-14.003-2.64-4.66-5.055-8.35-8.26-10.36z" fill-rule="evenodd" fill="#fff"/> + <path d="M290.897 148.366c-.773-.088-1.97 1.718 1.876 2.428 5.142.93 10.77-.8 12.496-5.843 1.973-6.004 3.28-11.69 4.31-13.836 1.29-2.5 2.938-2.298 1.72-5.948-.857-2.626-2.46-1.834-2.796-.43-.9 3.83-4.31 16.214-5.375 18.495-2.01 4.163-6.058 5.81-12.234 5.137z" fill-rule="evenodd" fill="#fff"/> + <path d="M301.193 128.61c-.55-1.18-1.835-.266-1.606 1.026.137 1.168 1.084 1.803 2.036 1.77 1.127-.04 3.51.038 3.517-1.833.004-1.315-1.03-2.413-1.796-.962-.734 1.315-1.678 1.177-2.15 0zm1.285-4.943c-.395.274-.04 1.736.43 1.72 1.68-.056 4.06-.592 5.335-1.48.373-.26.218-1.142-.314-1.124-1.62.054-4.198.01-5.453.884zm14.266 3.678c1.216-1.9 4.572-2.094 3.365.62-.856 1.87-9.21 18.01-10.35 20.062-1.244 2.308-2.26 1.165-1.378-.632 1.19-2.313 7.98-19.488 8.36-20.05zm2.726 12.457c.044-.352-1.813-.512-1.722 1.29.065 1.334 1.66 1.697 1.935 1.506 2.51-1.826-.533-.916-.214-2.796z" fill-rule="evenodd" fill="#fff"/> + <path d="M327.702 160.082c.696-1.94 9.96-17.49 11.177-20.91.62-1.65 3.28 2.83.683 5.245-2.28 2.053-9.01 13.09-10.266 16.957-.578 1.746-2.332.915-1.596-1.292z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M315.81 147.1c-.495.116-.948 1.694.216 1.784 1.064.076 5.235-.372 6.388-.304.745-.028 1.03-1.453-.57-1.378-1.937.098-4.485-.388-6.034-.102zm11.892 12.982c.696-1.94 9.96-17.49 11.177-20.91.62-1.65 3.28 2.83.683 5.245-2.28 2.053-9.01 13.09-10.266 16.957-.578 1.746-2.332.915-1.596-1.292z" fill-rule="evenodd" fill="#fff"/> + <path d="M343.428 145.25c1.71-6.41 5.854.99 2.205 4.64-5.635 5.518-7.332 16.054-16.27 17.64-2.41.518-6.652-1.084-7.91-1.977-.49-.35.318-2.638 1.825-1.52 2.178 1.7 6.676 2.084 9.05.15 5.08-4.985 9.216-11.588 11.1-18.932z" fill-rule="evenodd" stroke="#000" stroke-width=".973" fill="#fff"/> + <path d="M343.428 145.25c1.71-6.41 5.854.99 2.205 4.64-5.635 5.518-7.332 16.054-16.27 17.64-2.41.518-6.652-1.084-7.91-1.977-.49-.35.318-2.638 1.825-1.52 2.178 1.7 6.676 2.084 9.05.15 5.08-4.985 9.216-11.588 11.1-18.932zm-85.52 18.997c-1.89.382-1.567 2.81-1.013 3.11.915.427 2.33.606 2.86-2.185.247-1.147.47 5.7 2.983 3.06 1.446-1.597 5.03.29 6.53-1.72 1.074-1.338 1.405-2.272.568-4.25-.243-.6-1.714-.305-1.63 1.154.073 1.23-.873 2.748-2.103 2.49-.597-.11.337-3.01-.263-3.796-.33-.432-.833-.385-1.16.063-.463.626.462 3.406-1.054 3.772-1.914.44-.91-1.86-1.72-2.28-2.605-1.313-2.856.34-4 .582zm14.732-4.67c1.385-.39.953-.39 3.13-2.175.85-.642 1.016 1.238.927 1.982-.158 1.263-1.658.37-2.123 1.483-.682 1.444-.405 4.803-.633 6.17-.154.704-1.28.644-1.39.09-.32-1.67.23-3.302.177-5.388-.017-.71-1.03-1.82-.085-2.165zm-6.5-7.514c-.335 1.51-.31 2.754-.31 3.79.077.836 1.606.297 1.6.19-.075-1.326.226-3.16-.165-3.67-.212-.276-1.047-.594-1.125-.31zm-16.835 4.282c-2.36 2.063-4.547 2.906-6.717 5.514-.887 1.067-.862 2.556-1.392 3.92-.53 1.444-2.24 1.73-2.77 1.427-.885-.582-.756-3.264-1.745-1.82-.837 1.33-1.38 3.16-2.62 3.137-1.12-.023-3.234-2.316-2.162-2.427 3.67-.375 3.624-3.312 4.998-3.505 1.542-.206 1.643 2.425 2.595 1.898.748-.383 1.1-3.448 1.91-4.275 2.49-2.542 4.457-3.885 6.995-5.754 1.284-1.02 2.2.826.91 1.886z" fill-rule="evenodd" fill="#fff"/> + <path d="M250.55 159.498c-.403.464-1.635.388-1.746 1.038-.484 2.41 0 3.633-.53 5.955-.51 2.225-2.052 2.31-1.947.497.14-2.35 2.077-5.666.708-5.894-.91-.214-1.613-1.432-.67-2.034 1.778-1.234 2.733-1.046 3.956-.674.428.13.537.757.23 1.113z" fill-rule="evenodd" fill="#fff"/> + <path d="M238.133 347.453c.815 1.812 2.007 1.732 1.828-.002-.345-2.22-1.016-5.29-1.396-7.955-.216-2.258-2.55-1.822-1.935.537.78 2.547.614 5.34 1.504 7.423zm6.987.117c-.01.918 1.413.834 1.4.108-.148-2.31-.324-5.432.32-6.56.503-.878 2.53-.258 4.41-.43.748-.11.593-2.17-.968-2.04-1.84.165-6.696-.433-6.99 1.288-.422 3.095 1.914-.185 1.828 7.633zm14.09-8.934c1.18.848 1.015 1.952-.43 1.61-1.72-.43-2.88-.29-2.856.653.025.927.75 1.11 1.808 2.137 1.012 1.06-.62.888-1.872 3.06-1.067 1.798 1.11 2.036 3.674 1.355.654-.187 1.513.938-.107 1.862-1.14.61-4.318 1.355-5.11-.952-1.5-3.99 2.514-4.542.823-5.605-.923-.557-1.256-1.395-1.088-2.51.358-2.568 4.184-2.227 5.16-1.612zm5.295 8.797c1.548-2.824 2.614-4.94 3.046-7.337.378-2.165 1.933-2.373 2.26-.538.42 2.437 1.816 4.852 3.51 7.065.992 1.373-1.005 2.58-1.79 1.513-1.438-1.826-1.498-4.37-2.347-4.352-.98.02-2.09 2.836-3.135 4.914-.304.604-2.16-.002-1.542-1.265z" stroke-width=".973" fill-rule="evenodd" stroke="#000" fill="#fff"/> + <path d="M238.133 347.453c.815 1.812 2.007 1.732 1.828-.002-.345-2.22-1.016-5.29-1.396-7.955-.216-2.258-2.55-1.822-1.935.537.78 2.547.614 5.34 1.504 7.423zm6.987.117c-.01.918 1.413.834 1.4.108-.148-2.31-.324-5.432.32-6.56.503-.878 2.53-.258 4.41-.43.748-.11.593-2.17-.968-2.04-1.84.165-6.696-.433-6.99 1.288-.422 3.095 1.914-.185 1.828 7.633zm14.09-8.934c1.18.848 1.015 1.952-.43 1.61-1.72-.43-2.88-.29-2.856.653.025.927.75 1.11 1.808 2.137 1.012 1.06-.62.888-1.872 3.06-1.067 1.798 1.11 2.036 3.674 1.355.654-.187 1.513.938-.107 1.862-1.14.61-4.318 1.355-5.11-.952-1.5-3.99 2.514-4.542.823-5.605-.923-.557-1.256-1.395-1.088-2.51.358-2.568 4.184-2.227 5.16-1.612zm5.295 8.797c1.548-2.824 2.614-4.94 3.046-7.337.378-2.165 1.933-2.373 2.26-.538.42 2.437 1.816 4.852 3.51 7.065.992 1.373-1.005 2.58-1.79 1.513-1.438-1.826-1.498-4.37-2.347-4.352-.98.02-2.09 2.836-3.135 4.914-.304.604-2.16-.002-1.542-1.265zM398.352 265.182c-.11.58 1.454 1.433 1.826.99 1.682-2.015 3.883-5.97 4.334-8.364.133-.697-2.107-1.485-2.586-.913-1.575 1.886-3.1 5.773-3.574 8.287z" fill-rule="evenodd" fill="#fff"/> +</svg> diff --git a/s/flag/ag.svg b/s/flag/ag.svg new file mode 100755 index 0000000..05bf052 --- /dev/null +++ b/s/flag/ag.svg @@ -0,0 +1,15 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-79.698 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" fill-rule="evenodd" transform="translate(74.717) scale(.9375)"> + <path fill="#fff" d="M-120 0h763.27v511.49H-120z"/> + <path d="M-118.31.617h760.88v216.09h-760.88z"/> + <path fill="#0061ff" d="M21.3 203.23h505.01v113.82H21.3z"/> + <path d="M642.75 1.753v510.25H262.03L642.75 1.753z" fill="#e20000"/> + <path d="M-118.69 1.753v510.25h380.72L-118.69 1.753z" fill="#e20000"/> + <path d="M440.37 203.34l-76.31-19.363L428.98 135l-79.726 11.39 41.003-69.475-70.616 41.003 12.53-80.867-47.837 63.783L264.97 26.8l-21.64 76.31-47.837-64.92 13.667 83.145-70.615-43.282 41.003 69.476-77.45-12.53 63.783 47.838-79.727 20.5h354.22z" fill="#ffd600"/> + </g> +</svg> diff --git a/s/flag/ai.svg b/s/flag/ai.svg new file mode 100755 index 0000000..3df7736 --- /dev/null +++ b/s/flag/ai.svg @@ -0,0 +1,771 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g clip-path="url(#a)"> + <path fill-rule="evenodd" fill="#fff" d="M.426.42H403.1v240.067H.427z"/> + <path d="M.426.422L.41 18.44l96.093 59.27 36.155 1.257L.424.422z" fill="#c00"/> + <path d="M41.573.422l116.494 73.046V.422H41.573z" fill="#006"/> + <path d="M173.607.422v93.25H.423v53.288h173.184v93.25h53.286v-93.25h173.185V93.673H226.893V.423h-53.286z" fill="#c00"/> + <path d="M242.435.422V69.25L356.407.955 242.435.422z" fill="#006"/> + <path d="M246.032 76.754l32.054-.31L402.604.955l-33.037.647-123.535 75.154z" fill="#c00"/> + <path d="M401.34 21.09l-95.12 56.62 93.853.42v84.37h-79.93l79.19 51.51 1.163 26.2-42.297-.605-115.763-68.222v68.828h-84.37v-68.827l-108.59 68.643-49.046.185v239.794h799.294V.426l-397.537-.43M.43 27.06l-.42 49.8 84.146 1.266L.43 27.06zM.426 162.497v51.066l79.93-50.533-79.93-.533z" fill="#006"/> + <path d="M308.217 164.606l-33.322-.31 125.597 75.067-.826-17.174-91.453-57.584zM31.637 240.63l117.767-74.225-30.93.247L.423 240.518" fill="#c00"/> + <g> + <path d="M525.376 247.8l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M527.406 247.8l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M521.315 249.83l2.03 2.032-2.03-2.03z" fill="#262678"/> + <path d="M523.346 249.83l2.03 2.032-2.03-2.03z" fill="#808067"/> + <path d="M529.436 249.83l2.03 2.032-2.03-2.03z" fill="#58587b"/> + <path d="M454.32 251.862l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M517.255 251.862l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M519.285 251.862l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M457.892 255.536c0 52.457-6.046 111.57 33.052 152.65 8.043 8.453 23.345 27.725 36.462 26.986 13.732-.773 31.39-21.093 39.246-31.045 34.034-44.77 28.624-98.17 29.78-150.134-15.368 6.902-23.022 9.176-36.462 9.136-9.954 1.022-25.31-5.67-34.493-10.045-6 4.007-14.706 8.786-30.35 9.323-18.07.795-23.795-2.267-37.235-6.872z" fill="#cc3"/> + <path d="M531.466 251.862l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M533.497 251.862l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M596.433 251.862l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M456.35 253.892l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M458.38 253.892l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M460.41 253.892l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M513.195 253.892l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M515.225 253.892l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M517.255 253.892l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M525.376 253.892l2.03 2.03-2.03-2.03z" fill="#d0d045"/> + <path d="M533.497 253.892l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M535.527 253.892l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M537.557 253.892l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M590.342 253.892l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M592.372 253.892l2.03 2.03-2.03-2.03z" fill="#53527c"/> + <path d="M594.403 253.892l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M464.47 255.922l2.03 2.03-2.03-2.03z" fill="#737370"/> + <path d="M466.5 255.922l2.03 2.03-2.03-2.03z" fill="#53527c"/> + <path d="M468.53 255.922l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M509.134 255.922l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M511.164 255.922l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M513.195 255.922l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M523.346 255.922l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M462.054 261.24c-1.092 27.557-.254 58.587 4.054 88.07 4.763 15.404 4.126 23.866 11.203 33.098l99.07-.772c5.97-9.712 10.397-24.44 10.968-30.295 5.532-29.776 5.664-62.636 5.796-92.028-9.962 5.296-23.008 9.05-35.67 7.402-10.152-.774-19.53-3.09-30.454-9.264-9.475 5.676-12.778 8.268-28.423 8.93-12.18.6-22.048 1.588-36.543-5.14z" fill="#fff"/> + <path d="M527.406 255.922l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/> + <path d="M529.436 255.922l2.03 2.03-2.03-2.03z" fill="#d9d868"/> + <path d="M537.557 255.922l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M539.587 255.922l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M541.617 255.922l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M543.648 255.922l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M584.252 255.922l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M586.282 255.922l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M588.312 255.922l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M590.342 255.922l2.03 2.03-2.03-2.03m-121.812 2.03l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M470.56 257.952l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M472.59 257.952l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M474.62 257.952l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M476.65 257.952l2.03 2.03-2.03-2.03m26.394 0l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M505.074 257.952l2.03 2.03-2.03-2.03z" fill="#53527c"/> + <path d="M507.104 257.952l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M509.134 257.952l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M519.285 257.952l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M521.315 257.952l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M531.466 257.952l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/> + <path d="M533.497 257.952l2.03 2.03-2.03-2.03z" fill="#d9d868"/> + <path d="M543.648 257.952l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M545.678 257.952l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M547.708 257.952l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M574.1 257.952l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M576.13 257.952l2.03 2.03-2.03-2.03z" fill="#32327b"/> + <path d="M578.16 257.952l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M580.19 257.952l2.03 2.03-2.03-2.03z" fill="#808067"/> + <path d="M583.582 258.622l1.352.677-1.352-.678z" fill="#a4a43d"/> + <path d="M460.41 259.982l2.03 2.03-2.03-2.03z" fill="#dddc7a"/> + <path d="M462.44 259.982l2.03 2.03-2.03-2.03z" fill="#d0d045"/> + <path d="M478.01 260.652l1.353.677-1.352-.678z" fill="#a4a43d"/> + <path d="M480.71 259.982l2.032 2.03-2.03-2.03z" fill="#808067"/> + <path d="M482.742 259.982l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M484.772 259.982l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M486.802 259.982l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M498.983 259.982l2.03 2.03-2.03-2.03z" fill="#737370"/> + <path d="M501.013 259.982l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M503.044 259.982l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M515.225 259.982l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M517.255 259.982l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M535.527 259.982l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/> + <path d="M537.557 259.982l2.03 2.03-2.03-2.03z" fill="#d9d868"/> + <path d="M549.068 260.652l1.352.677-1.352-.678z" fill="#a4a43d"/> + <path d="M551.768 259.982l2.03 2.03-2.03-2.03z" fill="#808067"/> + <path d="M553.8 259.982l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M555.83 259.982l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M557.86 259.982l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M567.34 260.652l1.352.677-1.352-.678z" fill="#58587b"/> + <path d="M570.04 259.982l2.03 2.03-2.03-2.03z" fill="#737370"/> + <path d="M572.07 259.982l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M574.1 259.982l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M590.342 259.982l2.03 2.03-2.03-2.03z" fill="#dddc7a"/> + <path d="M592.372 259.982l2.03 2.03-2.03-2.03z" fill="#d0d045"/> + <path d="M464.47 262.013l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/> + <path d="M466.5 262.013l2.03 2.03-2.03-2.03z" fill="#e0dea1"/> + <path d="M468.53 262.013l2.03 2.03-2.03-2.03z" fill="#dddc7a"/> + <path d="M509.134 262.013l2.03 2.03-2.03-2.03z" fill="#d9d868"/> + <path d="M511.164 262.013l2.03 2.03-2.03-2.03z" fill="#e5e3af"/> + <path d="M539.587 262.013l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/> + <path d="M541.617 262.013l2.03 2.03-2.03-2.03z" fill="#e1e18c"/> + <path d="M582.22 262.013l2.032 2.03-2.03-2.03z" fill="#d4d456"/> + <path d="M584.252 262.013l2.03 2.03-2.03-2.03z" fill="#e1e18c"/> + <path d="M586.282 262.013l2.03 2.03-2.03-2.03z" fill="#eeedc1"/> + <path d="M472.59 264.043l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/> + <path d="M474.62 264.043l2.03 2.03-2.03-2.03z" fill="#e0dea1"/> + <path d="M476.65 264.043l2.03 2.03-2.03-2.03z" fill="#dddc7a"/> + <path d="M478.68 264.043l2.03 2.03-2.03-2.03z" fill="#d0d045"/> + <path d="M503.044 264.043l2.03 2.03-2.03-2.03z" fill="#dddc7a"/> + <path d="M505.074 264.043l2.03 2.03-2.03-2.03z" fill="#e5e3af"/> + <path d="M507.104 264.043l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/> + <path d="M545.678 264.043l2.03 2.03-2.03-2.03z" fill="#eeedc1"/> + <path d="M547.708 264.043l2.03 2.03-2.03-2.03z" fill="#e1e18c"/> + <path d="M549.738 264.043l2.03 2.03-2.03-2.03z" fill="#d4d456"/> + <path d="M574.1 264.043l2.03 2.03-2.03-2.03z" fill="#d9d868"/> + <path d="M576.13 264.043l2.03 2.03-2.03-2.03z" fill="#e1e18c"/> + <path d="M578.16 264.043l2.03 2.03-2.03-2.03z" fill="#eeedc1"/> + <path d="M580.19 264.043l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/> + <path d="M482.742 266.073l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/> + <path d="M484.772 266.073l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/> + <path d="M486.802 266.073l2.03 2.03-2.03-2.03z" fill="#eeedc1"/> + <path d="M496.283 266.743l1.352.677-1.352-.677z" fill="#f2f1d2"/> + <path d="M498.983 266.073l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M509.134 266.073l4.06 4.06v-4.06h-4.06z" fill="#fef8f1"/> + <path d="M553.8 266.073l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/> + <path d="M555.83 266.073l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/> + <path d="M557.86 266.073l2.03 2.03-2.03-2.03z" fill="#e5e3af"/> + <path d="M561.25 266.743l1.352.677-1.353-.677z" fill="#e5e59d"/> + <path d="M563.95 266.073l2.03 2.03-2.03-2.03z" fill="#e0dea1"/> + <path d="M567.34 266.743l1.352.677-1.352-.677z" fill="#f2f1d2"/> + <path d="M570.04 266.073l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M505.074 268.103l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M507.104 268.103l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M505.074 270.133l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M509.134 270.133l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M505.074 272.164l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M509.134 272.164l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M503.044 274.194l2.03 2.03-2.03-2.03m8.12 0l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M521.315 274.194l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M523.346 274.194l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M531.466 274.194l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M533.497 274.194l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M503.044 276.224l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M511.164 276.224l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M515.225 276.224l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M517.255 276.224l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M519.285 276.224l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M535.527 276.224l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M537.557 276.224l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M503.044 278.254l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M513.195 278.254l2.03 2.03-2.03-2.03m26.392 0l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M541.617 278.254l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M460.41 280.284l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/> + <path d="M503.044 280.284l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M543.648 280.284l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M545.678 280.284l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M503.044 282.315l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M549.738 282.315l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M551.768 282.315l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M501.013 284.345l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M503.044 284.345l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M559.89 284.345l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M561.92 284.345l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M563.95 284.345l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M565.98 284.345l4.06 4.06-4.06-4.06z" fill="#f9d6aa"/> + <path d="M568.01 284.345l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M501.013 286.375l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M529.436 286.375l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M531.466 286.375l2.03 2.03-2.03-2.03zM539.587 286.375l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M541.617 286.375l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M498.983 288.405l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M525.376 288.405l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M527.406 288.405l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M543.648 288.405l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M545.678 288.405l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M557.86 288.405l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M559.89 288.405l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M561.92 288.405l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M563.95 288.405l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M498.983 290.435l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M523.346 290.435l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M547.708 290.435l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M555.83 290.435l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M496.953 292.466l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M521.315 292.466l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M549.738 292.466l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M555.83 292.466l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M496.953 294.496l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M519.285 294.496l2.03 2.03-2.03-2.03m32.483 0l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M555.83 294.496l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M460.41 296.526l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/> + <path d="M496.953 296.526l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M519.285 296.526l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M551.768 296.526l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M557.86 296.526l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M494.923 298.556l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M517.255 298.556l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M553.8 298.556l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M557.86 298.556l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M494.923 300.586l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M517.255 300.586l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M527.406 300.586l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M529.436 300.586l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M531.466 300.586l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M533.497 300.586l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M553.8 300.586l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M555.83 300.586l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M557.86 300.586l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M494.923 302.617l-2.03 6.09 2.03-6.09z" fill="#faca88"/> + <path d="M515.225 302.617l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M517.255 302.617l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M527.406 302.617l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M535.527 302.617l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M537.557 302.617l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M555.83 302.617l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M557.86 302.617l2.03 2.03-2.03-2.03z" fill="#f90"/> + <path d="M560.56 303.977l.677 1.353-.678-1.353z" fill="#fbead6"/> + <path d="M519.285 304.647l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M521.315 304.647l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M523.346 304.647l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M525.376 304.647l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M527.406 304.647l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M529.436 304.647l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M539.587 304.647l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M541.617 304.647l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M543.648 304.647l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M545.678 304.647l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M549.068 305.317l1.352.677-1.352-.677z" fill="#fae3c9"/> + <path d="M551.768 304.647l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M557.86 304.647l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M470.56 306.677l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M472.59 306.677l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M525.376 306.677l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M529.436 306.677l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M531.466 306.677l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M547.708 306.677l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M549.738 306.677l-2.03 4.06 2.03-4.06z" fill="#fcb144"/> + <path d="M553.8 306.677l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M555.83 306.677l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M557.86 306.677l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M470.56 308.707l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M472.59 308.707l4.06 4.06-4.06-4.06z" fill="#fe9f11"/> + <path d="M474.62 308.707l2.03 2.03-2.03-2.03zM492.893 308.707l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M494.923 308.707l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M513.195 308.707l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M515.225 308.707l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M517.255 308.707l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M523.346 308.707l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M525.376 308.707l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M533.497 308.707l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M549.738 308.707l2.03 2.03-2.03-2.03z" fill="#fff"/> + <path d="M551.768 308.707l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M559.89 308.707l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M470.56 310.737l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M476.65 310.737l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M486.802 310.737l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M496.953 310.737l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M500.343 311.407l1.353.677-1.353-.677z" fill="#f9d6aa"/> + <path d="M513.195 310.737l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M519.285 310.737l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M535.527 310.737l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M549.738 310.737l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M561.92 310.737l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M563.95 310.737l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M454.32 312.768l2.03 2.03-2.03-2.03z" fill="#53527c"/> + <path d="M472.59 312.768l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M476.65 312.768l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M484.772 312.768l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M488.832 312.768l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M490.862 312.768l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M496.953 312.768l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M498.983 312.768l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M501.013 312.768l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M511.164 312.768l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M537.557 312.768l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M563.95 312.768l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M596.433 312.768l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M460.41 314.798l2.03 2.03-2.03-2.03z" fill="#e5e3af"/> + <path d="M472.59 314.798l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M478.68 314.798l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M484.772 314.798l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M488.832 314.798l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M496.953 314.798l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M511.164 314.798l2.03 2.03-2.03-2.03m28.423 0l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M565.98 314.798l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M474.62 316.828l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M480.71 316.828l2.032 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M482.742 316.828l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M486.802 316.828l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M488.832 316.828l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M498.983 316.828l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M511.164 316.828l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M541.617 316.828l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M568.01 316.828l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M474.62 318.858l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M486.802 318.858l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M498.983 318.858l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M509.134 318.858l2.03 2.03-2.03-2.03m34.514 0l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M570.04 318.858l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M476.65 320.888l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M484.772 320.888l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M501.013 320.888l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M509.134 320.888l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M543.648 320.888l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M570.04 320.888l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M460.41 322.92l2.03 2.03-2.03-2.03z" fill="#d3d079"/> + <path d="M476.65 322.92l2.03 2.03-2.03-2.03zM501.013 322.92l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M509.134 322.92l2.03 2.03-2.03-2.03m34.514 0l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M572.07 322.92l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M590.342 322.92l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/> + <path d="M597.103 324.28l.678 1.352-.677-1.353z" fill="#58587b"/> + <path d="M461.08 326.31l.677 1.352-.678-1.353z" fill="#d9d868"/> + <path d="M476.65 324.95l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M541.617 324.95l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M543.648 324.95l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M572.07 324.95l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M591.012 326.31l.678 1.352-.678-1.353z" fill="#f2f1d2"/> + <path d="M476.65 326.98l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M539.587 326.98l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M541.617 326.98l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M547.708 326.98l-2.03 4.06 2.03-4.06z" fill="#fdab33"/> + <path d="M549.738 326.98l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M574.1 326.98l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M576.13 326.98l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M596.433 326.98l2.03 2.03-2.03-2.03z" fill="#53527c"/> + <path d="M457.02 330.37l.677 1.352-.678-1.353z" fill="#808067"/> + <path d="M478.68 329.01l2.03 2.03-2.03-2.03m6.092 0l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M507.104 329.01l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M539.587 329.01l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M547.708 329.01l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M551.768 329.01l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M578.16 329.01l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M580.19 329.01l4.062 4.06-4.06-4.06z" fill="#fef8f1"/> + <path d="M591.012 330.37l.678 1.352-.678-1.353z" fill="#e5e59d"/> + <path d="M597.103 330.37l.678 1.352-.677-1.353z" fill="#32327b"/> + <path d="M479.35 332.4l.68 1.352-.68-1.352z" fill="#fcb755"/> + <path d="M486.802 331.04l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M507.104 331.04l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M539.587 331.04l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M543.648 331.04l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M545.678 331.04l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M551.768 331.04l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M580.19 331.04l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M456.35 333.07l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M462.44 333.07l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/> + <path d="M486.802 333.07l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M503.044 333.07l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M505.074 333.07l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M507.104 333.07l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M541.617 333.07l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M543.648 333.07l2.03 2.03-2.03-2.03m10.15 0l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M582.22 333.07l2.032 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M590.342 333.07l2.03 2.03-2.03-2.03z" fill="#dddc7a"/> + <path d="M456.35 335.1l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M462.44 335.1l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/> + <path d="M479.35 336.46l.68 1.352-.68-1.352z" fill="#fcb144"/> + <path d="M486.802 335.1l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M507.104 335.1l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M509.134 335.1l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M513.195 335.1l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M515.225 335.1l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M541.617 335.1l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M543.648 335.1l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M553.8 335.1l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M555.83 335.1l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M584.252 335.1l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M590.342 335.1l2.03 2.03-2.03-2.03z" fill="#d9d868"/> + <path d="M456.35 337.13l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M462.44 337.13l2.03 2.03-2.03-2.03z" fill="#e5e3af"/> + <path d="M488.832 337.13l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M509.134 337.13l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M515.225 337.13l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M517.255 337.13l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M539.587 337.13l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M541.617 337.13l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M543.648 337.13l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M555.83 337.13l2.03 2.03-2.03-2.03m16.24 0l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M574.1 337.13l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M576.13 337.13l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M578.16 337.13l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M580.19 337.13l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M584.252 337.13l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M594.403 337.13l2.03 2.03-2.03-2.03z" fill="#808067"/> + <path d="M456.35 339.16l2.03 2.03-2.03-2.03z" fill="#32327b"/> + <path d="M459.05 340.52l.677 1.353-.678-1.353z" fill="#a4a43d"/> + <path d="M462.44 339.16l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M478.68 339.16l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M490.862 339.16l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M511.164 339.16l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M517.255 339.16l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M535.527 339.16l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M537.557 339.16l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M545.678 339.16l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M555.83 339.16l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M572.07 339.16l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M582.22 339.16l2.032 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M584.252 339.16l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M594.403 339.16l2.03 2.03-2.03-2.03z" fill="#737370"/> + <path d="M462.44 341.19l2.03 2.03-2.03-2.03z" fill="#d9d868"/> + <path d="M478.68 341.19l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M492.893 341.19l2.03 2.03-2.03-2.03m18.27 0l2.032 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M517.255 341.19l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M527.406 341.19l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M529.436 341.19l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M531.466 341.19l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M533.497 341.19l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M545.678 341.19l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M588.312 341.19l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/> + <path d="M594.403 341.19l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M458.38 343.22l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M462.44 343.22l2.03 2.03-2.03-2.03z" fill="#d0d045"/> + <path d="M494.923 343.22l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M496.953 343.22l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M511.164 343.22l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M519.285 343.22l2.03 2.03-2.03-2.03z" fill="#fcb755"/> + <path d="M521.315 343.22l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M523.346 343.22l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M525.376 343.22l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M541.617 343.22l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M543.648 343.22l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M572.07 343.22l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M588.312 343.22l2.03 2.03-2.03-2.03z" fill="#e0dea1"/> + <path d="M594.403 343.22l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M458.38 345.25l2.03 2.03-2.03-2.03z" fill="#737370"/> + <path d="M464.47 345.25l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M480.71 345.25l2.032 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M498.983 345.25l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M501.013 345.25l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M503.044 345.25l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M505.074 345.25l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M507.104 345.25l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M509.134 345.25l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M511.164 345.25l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M539.587 345.25l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M541.617 345.25l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M570.04 345.25l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M588.312 345.25l2.03 2.03-2.03-2.03z" fill="#e1e18c"/> + <path d="M593.042 346.61l.678 1.353-.678-1.352z" fill="#a4a43d"/> + <path d="M594.403 345.25l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M458.38 347.28l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M464.47 347.28l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/> + <path d="M480.71 347.28l2.032 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M535.527 347.28l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M537.557 347.28l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M555.83 347.28l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M570.04 347.28l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M588.312 347.28l2.03 2.03-2.03-2.03z" fill="#d4d456"/> + <path d="M458.38 349.31l2.03 2.03-2.03-2.03z" fill="#32327b"/> + <path d="M464.47 349.31l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M480.71 349.31l2.032 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M482.742 349.31l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M535.527 349.31l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M555.83 349.31l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M570.04 349.31l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M592.372 349.31l2.03 2.03-2.03-2.03z" fill="#808067"/> + <path d="M458.38 351.34l2.03 2.032-2.03-2.03z" fill="#0e0e6e"/> + <path d="M460.41 351.34l2.03 2.032-2.03-2.03z" fill="#a4a43d"/> + <path d="M464.47 351.34l2.03 2.032-2.03-2.03z" fill="#d9d868"/> + <path d="M482.742 351.34l2.03 2.032-2.03-2.03z" fill="#f8dcbb"/> + <path d="M553.8 351.34l2.03 2.032-2.03-2.03z" fill="#f9d6aa"/> + <path d="M568.01 351.34l2.03 2.032-2.03-2.03z" fill="#faca88"/> + <path d="M586.282 351.34l2.03 2.032-2.03-2.03z" fill="#f2f1d2"/> + <path d="M592.372 351.34l2.03 2.032-2.03-2.03z" fill="#58587b"/> + <path d="M460.41 353.372l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M484.772 353.372l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M525.376 353.372l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M527.406 353.372l2.03 2.03-2.03-2.03z" fill="#fff"/> + <path d="M530.796 354.042l1.353.678-1.354-.678z" fill="#fcb144"/> + <path d="M551.768 353.372l-2.03 4.06 2.03-4.06z" fill="#fef8f1"/> + <path d="M553.8 353.372l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M565.98 353.372l-2.03 4.06 2.03-4.06z" fill="#fdab33"/> + <path d="M586.282 353.372l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M592.372 353.372l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M460.41 355.402l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M466.5 355.402l2.03 2.03-2.03-2.03z" fill="#f2f1d2"/> + <path d="M486.802 355.402l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M525.376 355.402l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M527.406 355.402l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M529.436 355.402l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M531.466 355.402l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M551.768 355.402l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M565.98 355.402l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M586.282 355.402l2.03 2.03-2.03-2.03z" fill="#d9d868"/> + <path d="M590.342 355.402l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M592.372 355.402l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M460.41 357.432l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M466.5 357.432l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M488.832 357.432l4.06 4.06-4.06-4.06z" fill="#fae3c9"/> + <path d="M490.862 357.432l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M529.436 357.432l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M547.708 357.432l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M549.738 357.432l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M561.92 357.432l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M563.95 357.432l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M584.252 357.432l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M590.342 357.432l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M460.41 359.462l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M462.44 359.462l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M466.5 359.462l2.03 2.03-2.03-2.03z" fill="#d4d456"/> + <path d="M527.406 359.462l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M545.678 359.462l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M547.708 359.462l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M559.89 359.462l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M584.252 359.462l2.03 2.03-2.03-2.03z" fill="#eeedc1"/> + <path d="M590.342 359.462l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M462.44 361.492l2.03 2.03-2.03-2.03z" fill="#737370"/> + <path d="M468.53 361.492l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/> + <path d="M490.862 361.492l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M523.346 361.492l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M526.046 362.853l.678 1.352-.678-1.352z" fill="#f8dcbb"/> + <path d="M541.617 361.492l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M543.648 361.492l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M555.83 361.492l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M557.86 361.492l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M584.252 361.492l2.03 2.03-2.03-2.03z" fill="#d3d079"/> + <path d="M588.312 361.492l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M590.342 361.492l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M462.44 363.523l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M468.53 363.523l2.03 2.03-2.03-2.03z" fill="#e0dea1"/> + <path d="M488.832 363.523l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M517.255 363.523l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M519.285 363.523l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M521.315 363.523l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M527.406 363.523l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M553.8 363.523l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M588.312 363.523l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M462.44 365.553l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M464.47 365.553l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M468.53 365.553l2.03 2.03-2.03-2.03z" fill="#d4d456"/> + <path d="M486.802 365.553l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M488.832 365.553l2.03 2.03-2.03-2.03m10.15 0l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M501.013 365.553l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M503.044 365.553l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M511.164 365.553l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M513.195 365.553l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M515.225 365.553l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M531.466 365.553l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M533.497 365.553l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M535.527 365.553l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M537.557 365.553l2.03 2.03-2.03-2.03z" fill="#fbc477"/> + <path d="M539.587 365.553l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M549.738 365.553l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M551.768 365.553l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M582.22 365.553l2.032 2.03-2.03-2.03z" fill="#e5e3af"/> + <path d="M588.312 365.553l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M464.47 367.583l2.03 2.03-2.03-2.03z" fill="#737370"/> + <path d="M470.56 367.583l2.03 2.03-2.03-2.03z" fill="#f2f1d7"/> + <path d="M484.772 367.583l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M494.923 367.583l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M496.953 367.583l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M498.983 367.583l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M547.708 367.583l2.03 2.03-2.03-2.03z" fill="#fea522"/> + <path d="M549.738 367.583l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M582.22 367.583l2.032 2.03-2.03-2.03z" fill="#dddc7a"/> + <path d="M586.282 367.583l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M588.312 367.583l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M464.47 369.613l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M467.17 370.973l.678 1.353-.678-1.353z" fill="#a4a43d"/> + <path d="M470.56 369.613l2.03 2.03-2.03-2.03z" fill="#d3d079"/> + <path d="M486.802 369.613l2.03 2.03-2.03-2.03z" fill="#f9d099"/> + <path d="M488.832 369.613l2.03 2.03-2.03-2.03z" fill="#fcb144"/> + <path d="M490.862 369.613l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M492.893 369.613l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M494.923 369.613l2.03 2.03-2.03-2.03z" fill="#fef8f1"/> + <path d="M539.587 369.613l2.03 2.03-2.03-2.03z" fill="#f8dcbb"/> + <path d="M547.708 369.613l2.03 2.03-2.03-2.03z" fill="#fcf1e4"/> + <path d="M580.19 369.613l2.03 2.03-2.03-2.03z" fill="#f6f6e4"/> + <path d="M586.282 369.613l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M472.59 371.643l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M539.587 371.643l2.03 2.03-2.03-2.03z" fill="#fbbe66"/> + <path d="M545.678 371.643l2.03 2.03-2.03-2.03z" fill="#faca88"/> + <path d="M580.19 371.643l2.03 2.03-2.03-2.03z" fill="#e1e18c"/> + <path d="M586.282 371.643l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M466.5 373.674l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M472.59 373.674l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M539.587 373.674l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M543.648 373.674l2.03 2.03-2.03-2.03z" fill="#fdab33"/> + <path d="M578.16 373.674l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M584.252 373.674l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M586.282 373.674l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M466.5 375.704l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M468.53 375.704l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M472.59 375.704l2.03 2.03-2.03-2.03z" fill="#d0d045"/> + <path d="M537.557 375.704l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M541.617 375.704l2.03 2.03-2.03-2.03z" fill="#fe9f11"/> + <path d="M543.648 375.704l2.03 2.03-2.03-2.03z" fill="#fbead6"/> + <path d="M578.16 375.704l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M584.252 375.704l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M468.53 377.734l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M474.62 377.734l2.03 2.03-2.03-2.03z" fill="#e5e3af"/> + <path d="M538.227 379.094l.678 1.352-.678-1.352z" fill="#faca88"/> + <path d="M541.617 377.734l2.03 2.03-2.03-2.03z" fill="#fae3c9"/> + <path d="M576.13 377.734l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M582.22 377.734l2.032 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M584.252 377.734l2.03 2.03-2.03-2.03m-115.722 2.03l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M470.56 379.764l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M474.62 379.764l2.03 2.03-2.03-2.03z" fill="#d0d045"/> + <path d="M476.65 379.764l2.03 2.03-2.03-2.03z" fill="#fbfaf2"/> + <path d="M539.587 379.764l2.03 2.03-2.03-2.03z" fill="#f9d6aa"/> + <path d="M576.13 379.764l2.03 2.03-2.03-2.03z" fill="#e5e59d"/> + <path d="M582.22 379.764l2.032 2.03-2.03-2.03m-111.662 2.03l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M476.65 381.794l2.03 2.03-2.03-2.03z" fill="#8cbf84"/> + <path d="M477.524 381.794c7.05 14.84 31.99 49.848 51.04 49.166 18.5-.662 39.393-34.82 47.567-49.166h-98.606z" fill="#0cf"/> + <path d="M580.19 381.794l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M582.22 381.794l2.032 2.03-2.03-2.03m-111.662 2.03l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M472.59 383.825l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M476.65 383.825l2.03 2.03-2.03-2.03z" fill="#adb333"/> + <path d="M478.68 383.825l2.03 2.03-2.03-2.03z" fill="#1ac5b5"/> + <path d="M574.1 383.825l2.03 2.03-2.03-2.03z" fill="#68b070"/> + <path d="M580.19 383.825l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M472.59 385.855l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M478.68 385.855l2.03 2.03-2.03-2.03z" fill="#7fb15c"/> + <path d="M572.07 385.855l2.03 2.03-2.03-2.03z" fill="#27c2aa"/> + <path d="M578.16 385.855l-2.03 4.06 2.03-4.06z" fill="#a4a43d"/> + <path d="M580.19 385.855l2.03 2.03-2.03-2.03m-107.6 2.03l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M474.62 387.885l4.06 4.06-4.06-4.06z" fill="#a4a43d"/> + <path d="M480.71 387.885l2.032 2.03-2.03-2.03z" fill="#34be9e"/> + <path d="M572.07 387.885l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M578.16 387.885l2.03 2.03-2.03-2.03z" fill="#53527c"/> + <path d="M474.62 389.915l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M480.71 389.915l2.032 2.03-2.03-2.03z" fill="#a2b23d"/> + <path d="M482.742 389.915l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/> + <path d="M570.04 389.915l2.03 2.03-2.03-2.03z" fill="#5bb47c"/> + <path d="M576.13 389.915l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M476.65 391.945l2.03 2.03-2.03-2.03z" fill="#737370"/> + <path d="M482.742 391.945l2.03 2.03-2.03-2.03z" fill="#74b166"/> + <path d="M568.01 391.945l2.03 2.03-2.03-2.03z" fill="#27c2aa"/> + <path d="M574.1 391.945l-2.03 4.06 2.03-4.06z" fill="#a4a43d"/> + <path d="M576.13 391.945l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M476.65 393.976l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M478.68 393.976l4.062 4.06-4.06-4.06z" fill="#a4a43d"/> + <path d="M484.772 393.976l2.03 2.03-2.03-2.03z" fill="#42bb92"/> + <path d="M565.98 393.976l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/> + <path d="M568.01 393.976l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M574.1 393.976l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M478.68 396.006l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M484.772 396.006l2.03 2.03-2.03-2.03z" fill="#adb333"/> + <path d="M486.802 396.006l2.03 2.03-2.03-2.03z" fill="#27c2aa"/> + <path d="M565.98 396.006l2.03 2.03-2.03-2.03z" fill="#74b166"/> + <path d="M572.07 396.006l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M480.71 398.036l2.032 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M486.802 398.036l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M488.832 398.036l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/> + <path d="M563.95 398.036l2.03 2.03-2.03-2.03z" fill="#42bb92"/> + <path d="M570.04 398.036l-4.06 6.09 4.06-6.09z" fill="#a4a43d"/> + <path d="M572.07 398.036l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M480.71 400.066l2.032 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M482.742 400.066l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M488.832 400.066l2.03 2.03-2.03-2.03z" fill="#7fb15c"/> + <path d="M561.92 400.066l2.03 2.03-2.03-2.03z" fill="#34be9e"/> + <path d="M570.04 400.066l2.03 2.03-2.03-2.03z" fill="#3a3a7c"/> + <path d="M482.742 402.096l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M484.772 402.096l22.332 22.333-22.332-22.334z" fill="#a4a43d"/> + <path d="M490.862 402.096l2.03 2.03-2.03-2.03z" fill="#74b166"/> + <path d="M559.89 402.096l2.03 2.03-2.03-2.03z" fill="#27c2aa"/> + <path d="M561.92 402.096l2.03 2.03-2.03-2.03z" fill="#adb333"/> + <path d="M568.01 402.096l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M484.772 404.127l2.03 2.03-2.03-2.03z" fill="#32327b"/> + <path d="M492.893 404.127l2.03 2.03-2.03-2.03z" fill="#42bb92"/> + <path d="M557.86 404.127l-8.122 10.15 8.12-10.15z" fill="#0dc9c1"/> + <path d="M559.89 404.127l2.03 2.03-2.03-2.03z" fill="#adb333"/> + <path d="M565.98 404.127l2.03 2.03-2.03-2.03z" fill="#737370"/> + <path d="M486.802 406.157l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M494.923 406.157l2.03 2.03-2.03-2.03z" fill="#42bb92"/> + <path d="M557.86 406.157l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M563.95 406.157l-2.03 4.06 2.03-4.06z" fill="#8d8d5b"/> + <path d="M565.98 406.157l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M488.832 408.187l2.03 2.03-2.03-2.03z" fill="#53527c"/> + <path d="M496.953 408.187l2.03 2.03-2.03-2.03z" fill="#42bb92"/> + <path d="M555.83 408.187l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M563.95 408.187l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M490.862 410.217l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M498.983 410.217l2.03 2.03-2.03-2.03z" fill="#42bb92"/> + <path d="M553.8 410.217l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M559.89 410.217l-4.06 6.09 4.06-6.09z" fill="#a4a43d"/> + <path d="M561.92 410.217l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M492.893 412.247l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M501.013 412.247l2.03 2.03-2.03-2.03z" fill="#42bb92"/> + <path d="M551.768 412.247l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M559.89 412.247l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M494.923 414.278l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M503.044 414.278l2.03 2.03-2.03-2.03z" fill="#68b070"/> + <path d="M547.708 414.278l2.03 2.03-2.03-2.03z" fill="#27c2aa"/> + <path d="M549.738 414.278l2.03 2.03-2.03-2.03z" fill="#adb333"/> + <path d="M557.86 414.278l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M496.953 416.308l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M505.074 416.308l2.03 2.03-2.03-2.03z" fill="#74b166"/> + <path d="M545.678 416.308l2.03 2.03-2.03-2.03z" fill="#34be9e"/> + <path d="M547.708 416.308l2.03 2.03-2.03-2.03z" fill="#adb333"/> + <path d="M553.8 416.308l-2.032 4.06 2.03-4.06z" fill="#8d8d5b"/> + <path d="M555.83 416.308l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M498.983 418.338l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M507.104 418.338l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M509.134 418.338l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/> + <path d="M543.648 418.338l2.03 2.03-2.03-2.03z" fill="#42bb92"/> + <path d="M553.8 418.338l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M501.013 420.368l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M509.134 420.368l2.03 2.03-2.03-2.03z" fill="#a2b23d"/> + <path d="M511.164 420.368l2.03 2.03-2.03-2.03z" fill="#27c2aa"/> + <path d="M541.617 420.368l2.03 2.03-2.03-2.03z" fill="#74b166"/> + <path d="M547.708 420.368l-6.09 8.12 6.09-8.12z" fill="#a4a43d"/> + <path d="M549.738 420.368l2.03 2.03-2.03-2.03z" fill="#808067"/> + <path d="M551.768 420.368l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M503.044 422.398l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M511.164 422.398l2.03 2.03-2.03-2.03z" fill="#adb333"/> + <path d="M513.195 422.398l2.03 2.03-2.03-2.03z" fill="#42bb92"/> + <path d="M537.557 422.398l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/> + <path d="M539.587 422.398l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M547.708 422.398l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M505.074 424.43l2.03 2.03-2.03-2.03z" fill="#1b1b74"/> + <path d="M507.104 424.43l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M515.225 424.43l2.03 2.03-2.03-2.03z" fill="#74b166"/> + <path d="M517.255 424.43l2.03 2.03-2.03-2.03z" fill="#0dc9c1"/> + <path d="M535.527 424.43l2.03 2.03-2.03-2.03z" fill="#34be9e"/> + <path d="M537.557 424.43l2.03 2.03-2.03-2.03z" fill="#adb333"/> + <path d="M545.678 424.43l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M507.104 426.46l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M509.134 426.46l2.03 2.03-2.03-2.03z" fill="#6e6c70"/> + <path d="M511.164 426.46l4.06 4.06-4.06-4.06z" fill="#a4a43d"/> + <path d="M517.255 426.46l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M519.285 426.46l2.03 2.03-2.03-2.03z" fill="#27c2aa"/> + <path d="M533.497 426.46l2.03 2.03-2.03-2.03z" fill="#68b070"/> + <path d="M543.648 426.46l2.03 2.03-2.03-2.03z" fill="#32327b"/> + <path d="M511.164 428.49l2.03 2.03-2.03-2.03z" fill="#49497d"/> + <path d="M521.315 428.49l2.03 2.03-2.03-2.03z" fill="#5bb47c"/> + <path d="M529.436 428.49l2.03 2.03-2.03-2.03z" fill="#27c2aa"/> + <path d="M531.466 428.49l2.03 2.03-2.03-2.03z" fill="#96b247"/> + <path d="M537.557 428.49l-2.03 4.06 2.03-4.06z" fill="#a4a43d"/> + <path d="M539.587 428.49l2.03 2.03-2.03-2.03z" fill="#808067"/> + <path d="M541.617 428.49l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M513.195 430.52l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M515.225 430.52l2.03 2.03-2.03-2.03z" fill="#8d8d5b"/> + <path d="M523.346 430.52l2.03 2.03-2.03-2.03z" fill="#8bb252"/> + <path d="M525.376 430.52l2.03 2.03-2.03-2.03z" fill="#1ac5b5"/> + <path d="M527.406 430.52l2.03 2.03-2.03-2.03z" fill="#5bb47c"/> + <path d="M537.557 430.52l2.03 2.03-2.03-2.03z" fill="#58587b"/> + <path d="M515.225 432.55l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M517.255 432.55l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M519.285 432.55l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M533.497 432.55l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M535.527 432.55l2.03 2.03-2.03-2.03m-16.242 2.03l2.03 2.03-2.03-2.03z" fill="#32327b"/> + <path d="M521.315 434.58l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M529.436 434.58l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M531.466 434.58l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M533.497 434.58l2.03 2.03-2.03-2.03m-12.182 2.03l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M523.346 436.61l2.03 2.03-2.03-2.03z" fill="#667"/> + <path d="M525.376 436.61l2.03 2.03-2.03-2.03z" fill="#a4a43d"/> + <path d="M527.406 436.61l2.03 2.03-2.03-2.03z" fill="#99994e"/> + <path d="M529.436 436.61l2.03 2.03-2.03-2.03z" fill="#32327b"/> + <path d="M525.376 438.64l2.03 2.03-2.03-2.03z" fill="#262678"/> + <path d="M527.406 438.64l2.03 2.03-2.03-2.03z" fill="#0e0e6e"/> + <path d="M529.436 302.617c3.133 7.368 13.176 15.504 15.937 19.492-3.514 3.986-4.216 3.552-3.756 10.96 6.11-6.394 6.22-7.06 10.15-6.09 8.61 8.59 1.542 27.043-5.574 31.055-7.113 4.28-5.822-.148-16.485 5.216 4.89 4.18 10.553-.613 15.182.668 2.516 2.985-1.196 8.424.76 13.546 4.09-.394 3.6-8.653 4.55-11.647 2.99-10.97 20.957-18.623 21.87-28.687 3.79-1.778 7.575-.556 12.182 2.03-2.295-9.428-9.883-9.327-11.918-12.27-4.842-7.4-9.134-15.842-19.475-18.03-7.852-1.664-7.265.5-12.296-2.933-3.127-2.44-12.648-7.053-11.126-3.31z" fill="#f90"/> + <path d="M552.008 310.987c0 .904-.733 1.636-1.636 1.636-.904 0-1.637-.732-1.637-1.636 0-.904.733-1.636 1.637-1.636.903 0 1.636.733 1.636 1.637z" fill-rule="evenodd" fill="#fff"/> + <path d="M504.328 333.876c5.05-6.212 7.553-18.893 9.79-23.197 5.166 1.243 5.11 2.067 11.445-1.8-8.508-2.417-9.15-2.203-10.128-6.13 3.575-11.628 23.192-13.997 30.063-9.58 7.108 4.29 2.59 5.218 12.313 12.14 1.413-6.276-5.47-9.045-6.5-13.736 1.463-3.618 8.006-2.878 11.62-7-2.258-3.432-9.33.86-12.423 1.417-11.097 2.484-26.256-9.827-35.58-5.934-3.343-2.518-4.03-6.437-3.896-11.718-7.264 6.433-3.63 13.095-5.282 16.27-4.28 7.737-9.74 15.475-6.843 25.642 2.197 7.718 3.835 6.19 3.15 12.24-.696 3.905-.326 14.478 2.27 11.384z" fill="#f90"/> + <path d="M501.184 310.008c.8-.422 1.79-.117 2.21.682.423.8.118 1.79-.68 2.21-.8.424-1.79.118-2.212-.68-.423-.8-.117-1.79.682-2.212z" fill-rule="evenodd" fill="#fff"/> + <g> + <path d="M545.374 338.236c-7.93-1.11-20.076 3.308-24.916 3.62-1.608-5.065-.874-5.443-7.46-8.864 2.332 8.532 2.847 8.97-.01 11.84-11.798 2.954-23.974-12.61-23.748-20.775-.004-8.302 3.126-4.915 4.02-16.817-6.1 2.037-4.91 9.36-8.39 12.67-3.855.618-6.606-5.364-12.003-6.326-1.77 3.71 5.563 7.542 7.64 9.9 7.864 8.212 5.17 27.554 13.325 33.52-.427 4.164-3.425 6.78-8.014 9.396 9.263 2.89 13.085-3.667 16.656-3.895 8.837-.34 18.283.33 25.486-7.407 5.468-5.874 3.313-6.484 8.845-9.03 3.702-1.422 12.56-7.208 8.57-7.83z" fill="#f90"/> + <path d="M526.574 353.272c-.775-.465-1.026-1.47-.56-2.245.465-.775 1.47-1.025 2.245-.56.774.466 1.024 1.47.56 2.245-.466.775-1.472 1.026-2.246.56z" fill-rule="evenodd" fill="#fff"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/al.svg b/s/flag/al.svg new file mode 100755 index 0000000..2f8e26c --- /dev/null +++ b/s/flag/al.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <path fill-rule="evenodd" fill="#de2110" d="M0 0h640v480H0z"/> + <path d="M229.27 120.15c7.43-.725 8.94-.628 14.397.784-7.008 3.206-15.293 1.604-20.432-2.95-7.766-7.05-26.26-19.243-19.647-8.855 34.312 38.022 63.863 12.314 81.834 34.208 6.122 7.457 11.527 17.467 8.307 27.3-1.102 3.365-5.08 11.28-9.89 9.27-6.3-2.636 1.193-23.332-3.392-30.066-10.41-15.29-29.27-11.2-44.747-12.85-4.49 12.175-15.305 10.34-25.25 4.198-12.694-7.84-12.312-27.12-23.657-33.488-11.823-6.636-9.896 15.588-7.992 20.87 8.254 22.88 32.554 31.433 54.796 27.365-16.462 25.49-42.552-16.5-55.476-6.216-8.2 6.526 6.284 18.398 11.302 21.12 13.882 7.537 30.563 3.752 44.174-2.273-7.77 8.44-22.072 13.62-33.68 11.907-5.996-.885-18.008-8.42-23.47-3.398-8.432 7.752 12.154 16.947 17.154 18.034 16.853 3.666 28.79-5.227 42.1-13.914-8.358 8.354-17.282 19.794-29.47 22.295-7.6 1.56-24.377-6.197-29.29 1.856-5.872 9.63 9.7 15.722 16.66 15.12 16.487-1.425 31.795-14.69 44.206-24.535-8.53 12.1-21.695 24.905-35.786 30.372-7.396 2.87-20.112-1.57-25.68 4.873-8.578 9.926 10.308 15.785 17.26 14.095 20.29-4.936 31.115-27.138 50.52-34.603-13.162 12.124-27.106 30.906-42.29 39.893-7.544 4.467-19.847-1.007-25.814 5.582-13.486 14.893 20.3 18.076 29.847 10.186 15.988-13.213 23.652-32.155 42.467-43.032-12.548 17.066-28.44 42.55-44.402 56.325-7.598 6.56-24.28.805-29.093 8.097-9.666 14.645 21.51 17.16 29.28 11.984 25.514-16.987 26.908-56.362 58.95-65.88-9.078 19.448-18.138 45.77-39.995 52.627 3.28 9.88 14.874 10.742 22.326 3.54 12.788-12.354 10.148-40.48 32.405-41.43l-16.05 22.498c.853 9.19 17.325-3.136 22.366-11.974h2.106c-8.77 20.92-24.25 32.602-44.206 42.102.39 12.472-7.953 18.897-18.946 23.156-5.916-10.875-21.678-18.964-29.47-6.315 6.183.833 11.71 1.995 12.63 8.42-9.808-3.54-17.548-5.218-21.052 6.315 11.49-1.886 15.415-1.467 17.367 3.554-7.854 9.045-6.573 22.804 7.894 24.14-4.037-2.915-6.757-4.845-4.54-8.748 3.208-4.26 7.006.05 8.867-2.488 3.473-5.07.345-3.3 4.774-1.26 3.63 2.6 9.533-8.272 17.936 10.063 10.106-7.272.383-18.763-3.882-27.367l31.576-6.315 35.786-33.68 2.105 2.104c-11.566 18.2-28.213 33.826-50.52 35.786 7.467 13.542 22.116 6.56 33.68 2.105-5.028 9.812-18.084 9.866-22.466 17.986-8.986 16.652 28.56-.515 30.888-1.146-3 10.567-14.826 12.685-17.9 21.642-2.386 6.955 7.358 7.643 11.497 5.624 7.986-3.898 13.206-14.48 19.033-20.952-2.728 12.63 2.44 22.63-11.47 37.234l21.34 26.246 24.36-26.277c-13.448-11.634-5.19-25.24-7.783-37.86 5.696 6.68 7.635 17.644 15.73 21.61 3.773 1.848 11.564 1.907 10.617-4.31-1.34-8.8-14.272-13.323-17.007-22.958 2.694.89 39.09 17.96 30.72 1.146-3.97-7.968-17.397-8.42-22.3-17.986 11.698 4.504 23.707 10.184 33.68 0-18.538-6.442-46.115-17.413-48.415-39.996l36.386 31.33 30.977 10.772v2.105c-7.55 7.864-11.92 13.35-5.66 22.958l7.7 2.306c-4.935-5.44-3.29-8.248 0-10.397 5.57-2.656 8.92 2.497 11.077-2.82.978-2.58 1.322-3.795 1.818-.644.55 5.58 8.282 1.288 10.984 2.016 4.23 4.166-2.063 8.332-2.764 11.84 11.96-4.19 14.222-11.528 10.525-23.155.79-4.408 3.554-6.513 6.316-6.315 3.136.373 5.614 1.404 8.42 2.105-4.107-10.727-11.355-10.32-21.05-6.315.877-6.425 4.055-9.56 10.524-8.42-4.86-14.586-22.438-2.878-27.366 6.315-11.446-3.797-22.405-10-18.945-23.156-19.343-9.206-37.348-20.612-44.206-42.1h2.104c5.04 8.837 21.185 14.914 20.063 6.71L359.9 248.556c29.605 1.27 17.812 55.09 54.73 44.206v-4.21c-21.243-11.832-29.97-33.26-39.995-54.73 31.51 9.36 32.553 48.443 57.032 65.51 7.83 5.46 40.78 3.996 31.092-11.615-4.36-7.023-21.736-1.954-29.1-8.096-15.99-13.34-32.072-39.274-44.29-56.326 19.338 12.29 28.594 37.04 48.42 46.968 8.37 4.193 28.215 3.568 25.367-10.88-2.025-10.28-18.514-4.548-25.34-7.474-15.313-6.566-31.962-29.497-44.237-41.244 18.38 8.072 29.277 28.635 48.416 34.41 7.043 2.127 25.233-1.04 20.194-12.45-3.58-8.104-19.61-3.735-26.51-6.22-15.166-5.46-26.822-19.41-37.89-30.477 14.855 8.545 28.292 23 46.31 24.535 6.958.593 25.01-7.663 15.53-16.47-6.166-5.726-18.632.665-26.054-.177-11.957-1.358-22.01-11.9-29.47-20.518 17.387 10.682 71.356 15.232 61.9-7.105-6.564-5.46-13.736 4.05-26.646 4.41-13.527.03-26.943-3.18-38.017-11.712 14.104 4.762 30.29 9.815 44.83 3.003 5.17-2.422 23.68-17.756 11.718-23.02-9.325-4.103-18.936 9.11-26.42 12.454-9.275 4.143-20.097 1.123-29.47-1.186v-2.104c19.225-1.02 38.315-2.114 50.965-19.03 4.153-5.556 14.98-28.308 2.886-32.014-4.826-1.48-8.567 3.34-10.577 6.96-5.907 10.648-32.247 52.934-43.274 23.033-15.51 1.655-34.295-2.425-44.75 12.85-4.64 6.78 2.526 27.583-3.735 30.066-17.69 7.018-5.875-31.64-1.587-36.568 19.063-21.914 70.61-3.047 79.542-33.713.97-8.133-10.62 6.42-16.076 9.947-5.91 3.642-13.416 3.88-19.71 2.683 6.677-3.498 12.04-2.39 16.25-3.092-3.952-6.943-13.014-6.062-15.33-9.908-3.023-5.458-15.08-7.05-21.928-5.967-13.028 2.88-18.04 6.764-42.143.02l10.525 12.63-15.085 6.305 6.665 4.22-12.63 8.422c2.105.7 7.117.705 6.78 2.686l-10.176 17.306c-2.11-3.628-9.056-13.126-10.035-16.77-.49-1.627 2.446-2.387 6.42-3.106l-11.935-8.536 7.713-4.507-16.133-6.02 8.42-12.63c-13.424 8.956-24.947-3.56-40.49.1-6.626 1.507-11.977 8.885-18.216 7.654-5.263-.9-11.397 2.23-15.087 9.088z"/> + <path d="M132.34 331.3c.65.313 1.848.156 2.03.86-1.224.442-2.682.494-3.906.39.573-1.302 1.225-.807 1.876-1.25zM188.2 331.53c-.65.313-1.847.156-2.03.86 1.225.442 2.683.494 3.906.39-.572-1.302-1.225-.807-1.876-1.25z" fill-rule="evenodd" fill="#de2110"/> +</svg> diff --git a/s/flag/am.svg b/s/flag/am.svg new file mode 100755 index 0000000..75ff8f0 --- /dev/null +++ b/s/flag/am.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 0.5160635 3.096381"> + <path fill="red" d="M-1.806 0h4.128v1.032h-4.128z"/> + <path fill="#00f" d="M-1.806 1.032h4.128v1.032h-4.128z"/> + <path fill="orange" d="M-1.806 2.064h4.128v1.032h-4.128z"/> +</svg> diff --git a/s/flag/ao.svg b/s/flag/ao.svg new file mode 100755 index 0000000..b686581 --- /dev/null +++ b/s/flag/ao.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="red" d="M0 0h640v243.574H0z"/> + <path d="M0 236.428h640v243.574H0z"/> + </g> + <path d="M228.67 148.173c165.22 43.304 58.99 255.64-71.216 167.26l-8.817 13.545c76.628 54.658 152.57 10.66 173.9-46.358 22.297-58.788-7.52-141.48-92.51-150.03l-1.356 15.576z" fill-rule="evenodd" fill="#ffec00"/> + <path fill-rule="evenodd" fill="#ffec00" d="M169.955 330.827l21.73 10.125-10.142 21.696-21.73-10.125zM318.94 231.347h23.98v23.942h-23.98zM307.256 192.455l22.342-8.694 8.707 22.31-22.342 8.693zM281.362 163.267l17.035-16.85 16.877 17.01-17.035 16.85zM255.078 123.48l22.434 8.455-8.468 22.4-22.434-8.455zM316.1 270.01l22.265 8.888-8.902 22.23-22.265-8.887zM246.224 340.06l22.06-9.388 9.402 22.025-22.058 9.39zM206.72 342.83h23.98v23.94h-23.98zM248.01 226.893l-20.35-15.006-20.245 14.47 8.034-22.92-20.348-14.956 24.447-.17 8.567-22.55 7.782 22.702 24.7-.242-19.586 15.232 6.996 23.44z"/> + <path d="M336.03 346.376c-1.21.418-6.23 12.39-9.675 18.248 1.797.51 2.56.596 3.625 1.025 13.655 4.8 20.384 9.18 26.186 17.504 2.888 2.79 7.032 2.93 10.198.697 0 0 2.795-1.114 6.43-5.02 2.968-4.52 2.194-8.11-1.384-11.16-10.944-7.952-22.9-13.902-35.38-21.295z" fill-rule="evenodd" fill="#fe0"/> + <path d="M365.247 372.842c0 2.388-1.94 4.324-4.33 4.324s-4.333-1.936-4.333-4.324 1.94-4.325 4.332-4.325 4.33 1.936 4.33 4.325zM343.87 359.17c0 2.388-1.94 4.324-4.33 4.324s-4.333-1.936-4.333-4.324 1.94-4.325 4.332-4.325 4.33 1.936 4.33 4.325zM354.768 366.145c0 2.39-1.94 4.325-4.33 4.325s-4.333-1.936-4.333-4.325 1.94-4.324 4.332-4.324 4.33 1.937 4.33 4.325z" fill-rule="evenodd"/> + <path d="M324.47 363.667c-42.57-24.273-87.31-50.52-129.88-74.796-18.75-11.635-19.683-33.384-7.17-49.875 1.302-2.337 2.836-1.758 3.514-.524 1.463 8.03 5.97 16.325 11.37 21.496 44.693 28.383 87.732 55.804 131.71 85.613-3.448 5.767-6.104 12.32-9.55 18.086z" fill-rule="evenodd" fill="#fe0"/> + <path fill-rule="evenodd" fill="#ffec00" d="M297.174 305.457l17.85 15.986-16.01 17.824-17.85-15.986z"/> + <path d="M331.54 348.82L206.58 273.3M316.11 331.393l-42.24-27.28M292.08 346.8l-42.75-24.755" stroke="#000" stroke-width="3.05" fill="none"/> +</svg> diff --git a/s/flag/aq.svg b/s/flag/aq.svg new file mode 100755 index 0000000..f3c72af --- /dev/null +++ b/s/flag/aq.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="480" width="640"> + <path fill-rule="evenodd" fill="#3a7dce" d="M-85.333 0h682.67v512h-682.67z"/> + <path d="M111.82 240.35c-3.08-6.3-3.08-6.3-3.08-12.596-1.54 0-1.828.296-2.72.048-.89-.245-1.226 5.808-4.113 4.626-.48-.59 2.07-4.968-.698-6.788-.89-.593.216-4.184-.17-5.76 0 0-3.512 1.87-6.16-4.722-1.3-1.723-3.08 1.574-3.08 1.574s.77 2.017-.624 2.51c-1.973-1.477-3.418-.703-5.92-2.732-2.502-2.03.53-4.354-4.235-6.076 3.082-7.873 3.082-6.3 10.78-9.447-4.62-3.15-4.62-3.15-7.698-7.874-4.62-1.574-6.16-3.148-10.78-6.297-6.16-7.874-9.24-23.618-9.24-34.64 3.9-3.69 9.24 12.596 16.94 17.32l10.78 4.723c6.16 3.148 7.7 6.296 12.32 9.446l13.86 4.724c6.16 4.723 9.24 11.022 13.86 12.596 5.005 0 5.97-2.948 7.574-3.13 9.053-.476 13.674-1.668 15.478-4.448 1.828-2.214 6.207 1.28 18.527-3.444l-1.538-6.3s3.272-2.754 7.7-1.573c-.12-2.878-.41-10.553 3.95-14.016-2.648-2.84-.87-4.877-.87-4.877s2.454-2.412 2.742-3.69c-1.298-6.94 1.127-7.046 1.67-9.088.544-2.04-2.094-1.342-1.35-4.156.742-2.814 5.203-3.482 5.8-5.8.6-2.32-1.27-3.482-1.163-4.035.963-2.215.146-7.43 0-9.448 8.278-2.264 10.974-9.152 13.86-6.298 1.54-9.448 3.08-12.596 12.32-12.596 1.3-2.903-3.37-5.364-1.54-6.298 3.08-.394 5.438-.197 9.05 4.576 1.14 1.512 1.346-2.215 2.5-2.608 1.155-.394 3.92-.4 4.33-2.264.435-1.92 1.06-4.428 2.6-7.577 1.3-2.56 2.31.984 3.465 6.003 6.497.246 21.175 1.722 27.334 3.444 4.62 1.23 7.7-1.23 12.126-1.722 3.272 3.346 6.352.836 8.085 7.97 2.446 3.85 6.45.346 7.316 1.477 5.15 14.514 22.86 4.723 24.206 4.97 2.26 0 5.023 6.49 6.803 6.328 2.894-.498 2.075-2.516 4.6-1.704-.673 5.462 4.96 11.76 4.96 15.844 0 0 1.37.69 2.64-.523 1.27-1.21 2.436-4.323 3.566-4.25 2.696.394 3.788.748 6.894 1.303 8.35 2.917 12.603 3.575 15.846 5.07 1.51 2.823 2.97 4.268 6.03 3.74 2.526 1.736.683 4.01 2.175 4.157 3.08-1.575 4.09-3.297 7.17-1.722 3.08 1.574 6.16 4.724 7.7 7.873 0 1.574-1.54 7.872 0 17.32.77 3.148 1.143 5.645 4.45 11.046-.878 5.548 4.164 14.884 4.164 17.246 0 3.148-2.456 4.773-3.996 7.92 6.16 4.725 0 12.597-3.08 17.32 23.1 4.725 12.32 14.172 30.8 9.448-4.62 11.022-2.984 10.137 1.636 21.16-9.24 6.298-.192 8.216-6.35 16.088-.386.493 3.655 6.84 9.334 6.84-1.54 12.596-6.16 7.873-4.62 26.767-12.127-.244-7.22 14.123-15.4 12.597.48 9.005 4.668 9.792 3.08 18.894-6.16 1.576-6.16 1.576-9.24 6.3l-4.62-1.575c-1.54 7.873-4.62 9.447 0 17.32 0 0-5.967.197-7.7 0-.144 2.707 2.648 3.445 3.08 6.298-.24 1.132-8.758 6.1-15.4 6.3-1.73 3.886 4.62 8.02 4.236 9.987-7.22 1.427-10.395 10.48-10.395 10.48s3.705 1.526 3.08 3.15c-1.972-1.477-3.08-1.575-6.16-1.575-1.54.394-5.293-.096-8.892 6.114-3.95 1.33-5.814.85-8.81 4.9-1.327-3.86-3.235.037-5.568 1.534-2.33 1.5-5.47 5.226-5.893 5.067.097-1.082 1.444-5.02 1.444-5.02l-7.7 1.576-.948.097c-.606.06-.444-4.596-1.903-4.427-1.46.17-5.634 5.857-7.057 6.035-1.42.18-1.87-1.808-3.095-1.635-1.224.173-3.61 6-4.478 6.153-.867.155-4.306-3.54-7.253-3.025-15.16 5.463-17.567-10.775-19.924-1.622-3.176-1.722-2.626-.723-5.853.142-2.06.543-2.247-2.783-4.078-2.732-3.664.106-3.47 3.65-5.47 2.59-1.634-7.38-11.5-6.053-12.463-9.2-.782-3.285 4.275-3.27 5.91-5.495 1.25-3.21-1.306-4.43 3.77-7.527 6.613-4.574 2.81-6.3 3.97-9.736 2.074-4.964 2.086-6.175.354-10.554 0 0-5.15-14.17-6.16-14.17-3.08-.886-3.08 5.214-7.604 6.888-9.24 3.148-25.552-7.972-28.392-7.972-2.597.05-14.632 2.914-14.178-3.222-1.8 5.966-8.416 1.402-8.824 1.402-6.16 0-3.802 4.87-7.94 4.674-1.88-.64-20.838-1.77-20.838-1.77v3.148l-12.32-6.3-10.78-3.147c-9.24-3.15-4.62-11.023-20.02-6.3v-9.447h-7.7c3.08-18.895 0-9.447-1.54-26.767l-6.16 1.575c-6.16-8.512 8.566-6.888-4.62-12.595 0 0 .242-9.4-3.08-6.3-.673.395 1.54 4.725 1.54 4.725-12.32-1.574-15.4-4.724-15.4-17.32 0 0 10.155 1.477 9.24 0-1.443-2.36-3.32-17.713-2.983-18.747-.145-2.067 9.432-7.282 7.58-12.253 1.178-.443 4.642-.49 4.642-.49" fill="#fff"/> + <path stroke-linejoin="round" d="M527.55 303.26c-.493 1.108-.405 2.215.104 3.005.914-1.37.142-2.003-.104-3.005z" stroke="#fff" stroke-linecap="round" stroke-width="2.249" fill="none"/> + <path stroke-linejoin="round" d="M131.51 178.94s-2.583-.316-2.003 1.95c.844-1.74 1.95-1.844 2.003-1.95zM132.09 173.67c-1.423.053-3.163-.21-2.583 2.055.844-1.74 2.53-1.95 2.583-2.055zM141.81 203.87s2.214-.158 1.634 2.108c-.844-1.74-1.58-2.002-1.634-2.108z" stroke="#fff" stroke-width="2.108" fill="none"/> +</svg> diff --git a/s/flag/ar.svg b/s/flag/ar.svg new file mode 100755 index 0000000..120b46b --- /dev/null +++ b/s/flag/ar.svg @@ -0,0 +1,143 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#00c4ff" d="M0-.01h640.003v160.43H0z"/> + <path fill="#fff" d="M0 159.763h640.003v160.43H0z"/> + <path fill="#00c4ff" d="M0 319.536h640.003v160.43H0z"/> + </g> + <path d="M382.49 221.33c0 14.564-11.864 26.37-26.5 26.37s-26.498-11.806-26.498-26.37 11.864-26.37 26.5-26.37 26.498 11.806 26.498 26.37z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.6452 0 0 1.62 -265.894 -116.567)" stroke="#000" stroke-width=".625" fill="#ffd600"/> + <path d="M364.43 195.28c-4.34-1.05-8.785.422-10.185.318-1.925 0-6.79-1.68-10.185 0M338.71 200.49c4.305-3.01 9.115 1.086 10.394.315 3.492-2.294 6.736-1.868 10.08.21 2.155 1.272 5.914-3.71 10.29.315" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".5" fill="none"/> + <path d="M333.88 205.63c2.275-1.855 9.694-1.925 17.324 2.414 1.155-.28 1.89-1.084.945-2.204-5.74-1.995-12.425-4.515-18.585-2.625-1.68 1.19-1.26 1.96.315 2.415z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".5" fill="#efc000"/> + <path d="M333.88 205.63c2.275-1.855 9.694-1.925 17.324 2.414 1.155-.28 1.89-1.084.945-2.204-5.74-1.995-12.425-4.515-18.585-2.625-1.68 1.19-1.26 1.96.315 2.415z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 0 0 1.231 768.984 -28.912)" stroke="#000" stroke-width=".5" fill="#efc000"/> + <path stroke-linejoin="round" d="M330.84 211.83c7.525-4.83 17.464-2.31 21.63.315-6.09-1.155-6.196-1.68-10.606-1.785-3.115.106-7.7-.21-11.024 1.47z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="#f0bf00"/> + <path d="M348.06 211.3c-3.675 7.665-10.08 7.77-14.594-.42" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="none"/> + <path d="M308.78 234.09c-1.383 1.514-4.77 2.413-7.564 2.01s-3.937-1.96-2.553-3.474c1.384-1.514 4.77-2.413 7.565-2.01s3.937 1.96 2.553 3.474z" fill-rule="evenodd" fill-opacity=".368"/> + <path d="M301.898 232.147c.143.353-.297.82-.984 1.045s-1.358.12-1.5-.23c-.144-.354.297-.822.983-1.046s1.36-.12 1.5.23z" fill-rule="evenodd" fill="gold"/> + <path d="M349.18 224.5c-4.24 7.127 1.537 2.1 2.475 4.164 1.65 1.913 3.3 1.462 4.276 0 .977-1.65 7.128 3.113 2.927-3.938" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="none"/> + <path stroke-linejoin="round" d="M341.64 236.31c3.638-.413 9.753-3.188 11.93-.9 1.874-2.063 8.476.6 12.714.9-3.076 1.875-9.302.6-12.265 2.588-2.89-1.763-9.267-.15-12.38-2.588z" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-linecap="round" stroke-width=".625" fill="none"/> + <path stroke-linejoin="round" d="M347.5 239.58c5.514 2.25 6.752 1.913 12.716.225-1.238 3.264-4.398 3.95-6.19 3.826-1.857-.12-4.388.114-6.526-4.05z" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="none"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -119.922 -28.068)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" transform="matrix(-.908 -.861 -.8884 .88 837.014 353.18)" stroke="#000" stroke-width=".625" fill="none"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" transform="matrix(.889 .8794 -.9075 .8614 204.616 -258.71)" stroke="#000" stroke-width=".625" fill="none"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" transform="matrix(-.0073 -1.231 -1.2703 .007 601.74 676.9)" stroke="#000" stroke-width=".625" fill="none"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" transform="matrix(-1.1653 -.49 -.5057 1.1292 835.787 164.23)" stroke="#000" stroke-width=".625" fill="none"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" transform="matrix(-.905 -.864 -.8915 .877 827.91 348.79)" stroke="#000" stroke-width=".625" fill="none"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" transform="matrix(-.4964 -1.133 -1.1693 .481 748.115 528.492)" stroke="#000" stroke-width=".625" fill="none"/> + <path d="M349.18 224.5c-4.24 7.127 1.537 2.1 2.475 4.164 1.65 1.913 3.3 1.462 4.276 0 .977-1.65 7.128 3.113 2.927-3.938" stroke-opacity=".082" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="none"/> + <path stroke-linejoin="round" d="M341.64 236.31c3.638-.413 9.753-3.188 11.93-.9 1.874-2.063 8.476.6 12.714.9-3.076 1.875-9.302.6-12.265 2.588-2.89-1.763-9.267-.15-12.38-2.588z" stroke-opacity=".082" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-linecap="round" stroke-width=".625" fill="#f0bf00"/> + <path stroke-linejoin="round" d="M347.5 239.58c5.514 2.25 6.752 1.913 12.716.225-1.238 3.264-4.398 3.95-6.19 3.826-1.857-.12-4.388.114-6.526-4.05z" stroke-opacity=".082" fill-rule="evenodd" transform="matrix(1.2703 0 0 1.231 -130.873 -28.912)" stroke="#000" stroke-width=".625" fill="#f0bf00"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.908 -.861 -.8884 .88 837.014 353.18)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.889 .8794 -.9075 .8614 204.616 -258.71)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.0073 -1.231 -1.2703 .007 601.74 676.9)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-1.1653 -.49 -.5057 1.1292 835.787 164.23)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.905 -.864 -.8915 .877 827.91 348.79)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.4964 -1.133 -1.1693 .481 748.115 528.492)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(0 -1.231 1.2703 0 41.183 668.378)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 0 0 1.231 770.68 -28.276)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.908 -.861 .8884 .88 -196.843 353.81)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.889 .8794 .9075 .8614 435.564 -258.39)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.0073 -1.231 1.2703 .007 38.068 676.9)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.1653 -.49 .5057 1.1292 -195.68 164.874)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.905 -.864 .8915 .877 -188.602 348.79)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.4964 -1.133 1.1693 .481 -107.76 528.492)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.908 -.861 .8884 .88 -196.843 353.81)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.889 .8794 .9075 .8614 435.564 -258.39)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.0073 -1.231 1.2703 .007 38.068 676.9)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(1.1653 -.49 .5057 1.1292 -195.68 164.874)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.905 -.864 .8915 .877 -188.602 348.79)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.4964 -1.133 1.1693 .481 -107.76 528.492)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(0 1.231 -1.2703 0 598.48 -184.42)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(1.2703 0 0 -1.231 -131 512.223)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.908 .861 -.8884 -.88 836.514 130.14)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.889 -.8794 -.9075 -.8614 204.116 742.347)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.0073 1.231 -1.2703 -.007 601.612 -192.956)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.1653 .49 -.5057 -1.1292 835.352 319.092)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.905 .864 -.8915 -.877 828.282 135.16)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.4964 1.133 -1.1693 -.481 747.437 -44.55)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.908 .861 -.8884 -.88 836.514 130.14)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.889 -.8794 -.9075 -.8614 204.116 742.347)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.0073 1.231 -1.2703 -.007 601.612 -192.956)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-1.1653 .49 -.5057 -1.1292 835.352 319.092)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.905 .864 -.8915 -.877 828.282 135.16)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.4964 1.133 -1.1693 -.481 747.437 -44.55)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 0 0 -1.231 759.526 511.997)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(0 1.231 1.2703 0 40.634 -194.91)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.8884 -.88 .908 -.861 434.918 742.67)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(.9075 .8614 .889 -.8794 -196.835 129.834)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 -.007 .0073 -1.231 768.322 515.032)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.5057 -1.1292 1.1653 -.49 239.93 741.54)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-.8915 -.877 .905 -.864 429.72 734.68)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.1693 -.481 .4964 -1.133 615.186 656.337)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.8884 -.88 .908 -.861 434.918 742.67)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(.9075 .8614 .889 -.8794 -196.835 129.834)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-1.2703 -.007 .0073 -1.231 768.322 515.032)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.5057 -1.1292 1.1653 -.49 239.93 741.54)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-.8915 -.877 .905 -.864 429.72 734.68)" stroke="#000" stroke-width=".625" fill="gold"/> + <path stroke-linejoin="round" d="M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z" stroke-opacity=".149" fill-rule="evenodd" transform="matrix(-1.1693 -.481 .4964 -1.133 615.186 656.337)" stroke="#000" stroke-width=".625" fill="gold"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.2703 0 0 1.231 -130.216 -27.957)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.2703 0 0 1.231 -131.217 -25.465)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.4064 0 0 1.231 -176.307 -23.11)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.4064 0 0 1.231 -177.588 -20.892)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.6786 0 0 1.231 -267.194 -18.537)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.86 0 0 1.231 -326.593 -16.183)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.7693 0 0 1.231 -297.676 -13.552)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.724 0 0 1.231 -282.503 -10.92)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.7693 0 0 1.231 -297.39 -8.426)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(2.223 0 0 1.231 -444.825 -5.517)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".171" transform="matrix(1.9053 0 0 1.231 -341.188 -2.192)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -341.045 .162)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -340.044 3.348)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -339.902 6.12)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -338.186 9.167)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -336.47 11.66)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -334.9 14.57)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -333.04 17.34)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -331.753 19.97)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -329.038 23.165)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.225 0 0 1.231 -104.597 26.07)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -341.045 .162)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -340.044 3.348)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -339.902 6.12)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -338.186 9.167)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -336.47 11.66)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -334.9 14.57)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -333.04 17.34)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -331.753 19.97)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.9053 0 0 1.231 -329.038 23.165)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".078" transform="matrix(1.225 0 0 1.231 -103.975 25.828)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.2703 0 0 1.231 769.71 -28.594)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.2703 0 0 1.231 770.71 -26.1)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.4064 0 0 1.231 815.79 -23.746)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.4064 0 0 1.231 817.08 -21.53)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.6786 0 0 1.231 906.69 -19.175)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.86 0 0 1.231 966.086 -16.82)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.7693 0 0 1.231 937.163 -14.188)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.724 0 0 1.231 921.99 -11.555)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.7693 0 0 1.231 936.888 -9.062)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-2.223 0 0 1.231 1084.31 -6.153)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".134" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 980.676 -2.828)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 980.53 -.474)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 979.53 2.712)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 979.385 5.482)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 977.674 8.53)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 975.963 11.025)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 974.382 13.933)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 972.525 16.71)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 971.25 19.34)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.9053 0 0 1.231 968.523 22.52)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" fill-rule="evenodd" fill-opacity=".867" transform="matrix(-1.225 0 0 1.231 744.08 25.425)" stroke="#000" stroke-width="1pt" fill="#00699d"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 980.53 -.474)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 979.53 2.712)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 979.385 5.482)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 977.674 8.53)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 975.963 11.025)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 974.382 13.933)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 972.525 16.71)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 971.25 19.34)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.9053 0 0 1.231 968.523 22.52)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M328.14 202.55h-3.15" stroke-opacity=".063" transform="matrix(-1.225 0 0 1.231 744.08 25.425)" stroke="#000" stroke-width="1pt" fill="none"/> + <path stroke-linejoin="round" d="M330.84 211.83c7.525-4.83 17.464-2.31 21.63.315-6.09-1.155-6.196-1.68-10.606-1.785-3.115.106-7.7-.21-11.024 1.47z" stroke-opacity=".387" fill-rule="evenodd" transform="matrix(-1.2703 0 0 1.231 770.29 -29.23)" stroke="#000" stroke-width=".625" fill="#f0bf00"/> + <path d="M348.06 211.3c-3.675 7.665-10.08 7.77-14.594-.42" stroke-opacity=".387" transform="matrix(1.2703 0 0 1.231 -97.703 -29.548)" stroke="#000" stroke-width=".625" fill="none"/> + <path d="M341.925 233.537c-1.43 1.45-4.93 2.31-7.815 1.924s-4.067-1.874-2.637-3.324c1.43-1.45 4.928-2.31 7.815-1.924s4.067 1.876 2.637 3.325z" fill-rule="evenodd" fill-opacity=".368"/> + <path d="M335.073 231.518c.142.352-.298.82-.985 1.045s-1.358.12-1.5-.232c-.144-.35.297-.82.983-1.044s1.36-.12 1.503.232z" fill-rule="evenodd" fill="gold"/> +</svg> diff --git a/s/flag/as.svg b/s/flag/as.svg new file mode 100755 index 0000000..ef2e784 --- /dev/null +++ b/s/flag/as.svg @@ -0,0 +1,33 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g clip-path="url(#a)"> + <path fill="#006" d="M-374-16H650v512H-374z"/> + <path d="M-374 240L650 496V-16L-374 240z" fill-rule="evenodd" fill="#bd1021"/> + <path d="M650 11.43v457.14L-264.29 240 650 11.43z" fill-rule="evenodd" fill="#fff"/> + <g stroke="#000"> + <path stroke-linejoin="round" d="M478 297.4s-6.392-5.23 1.163-13.658c-4.068-3.486-.29-10.17-.29-10.17s-6.975-2.615.29-13.366c-5.23-3.487-2.906-11.333-2.906-11.333s-17.144-6.393-.87-12.494c-13.368 5.81-25.863-7.848-25.863-7.848l-19.468.582c-3.302-16.172-28.97-2.127-9.888-48.52-4.94-.872-10.46-2.324-15.982 1.744-5.522 4.067-21.212 12.784-30.51 4.067s6.1-21.212 6.392-21.502c.29-.29 20.63-10.75 23.536-17.725-.29-5.23-6.682-9.298-.872-20.63 6.683-10.753 47.65-20.923 66.26-24.41 9.007-4.068 13.076-11.914 13.076-11.914l2.034 7.555s41.262-12.205 43.296-18.016.872 5.23.872 5.23c16.272-1.453 36.903-15.4 39.81-9.008 13.656-2.615 39.81-14.238 39.81-14.238s9.006-.29 2.613 9.59c4.068 6.392-1.162 11.913-1.452 11.913-.29 0 1.743 6.394-3.487 9.88 1.745 5.522-3.197 9.88-3.197 9.88s2.326 6.684-6.973 10.17c.872 5.812-5.23 6.975-5.23 6.975s.872 6.102-3.196 8.717c0 4.65-4.65 6.974-4.65 6.974s2.906 1.743-1.163 4.65c-4.067 2.905-46.2 28.766-46.2 28.476 0-.29 30.8 5.52 32.834 6.683s25.28 16.564 25.28 16.564l-23.537 29.056s-26.15-2.905-27.312-1.452 5.52 2.034 6.973 4.358c1.455 2.324 3.78 7.847 8.428 7.265 4.65-.582-8.717 8.427-17.434 9.3 0 3.195 11.04 3.485 13.947.87 2.907-2.615-6.973 7.555-8.136 9.008s13.077-2.034 13.077-2.034-2.324 9.59-14.818 12.496c4.94 8.136 2.905 13.367 2.614 13.367s-8.136-8.137-15.69-6.684c2.033 7.845 8.136 15.108 9.88 16.272 1.742 1.162-13.658.87-15.692-3.488s-3.778 10.46 1.743 15.11c-6.392.29-11.914-3.487-11.914-3.487s-3.776 8.717-1.162 13.077c2.617 4.36-9.006-8.718-9.006-8.718l-22.084 9.3-4.94-8.428z" fill-rule="evenodd" stroke-width="1.760875" fill="#9c3900"/> + <path d="M307.325 280.1c.518 0 32.082-.518 46.572-8.797 7.244 11.384 17.076 19.146 17.076 19.146l4.658-16.56s11.385.518 12.42 3.106c-1.553 3.103-2.07 7.243-2.07 7.243s7.76.518 8.28 1.552c.516 1.035-2.07 9.83-2.07 9.83l33.116 7.763s2.587-12.936 5.175-11.384c2.588 1.554 13.972 17.595 30.013 18.63s17.076-13.455 17.076-13.455l3.62 2.07s6.728-14.487 7.763-14.487 2.588 2.07 11.384 2.07c2.587 3.104 3.623 10.347 3.623 10.347s-9.833 9.833-6.728 17.595 3.623 5.69 3.623 5.69l71.408 17.077s3.624 5.693-2.586 8.798c0 .517-71.927-16.56-71.927-16.56s-6.728 7.762-11.902 6.21-1.552 3.105-1.552 3.105l77.618 6.21s5.692 7.244 1.552 9.314c-5.174.517-83.827-5.174-83.827-5.174s-4.66 9.83-9.833 1.552c-3.62 5.69-7.762-1.552-7.762-1.552s-6.726 5.174-7.762-.52c-5.692 4.14-9.314-2.585-9.314-2.585l-33.118-2.07-2.07 3.104s5.692 1.55-3.105 5.174c-8.796 3.622 52.78 2.07 54.333 2.587 1.552.52-4.14 5.176-4.14 5.176s31.566 2.07 37.257-4.657c5.692-6.73-2.07 8.795-2.07 8.795s24.84-1.034 24.84-2.07-.52 7.763-17.595 6.727c10.35 6.728 23.285 10.867 23.285 10.867s-12.936 3.104-27.942-.518c2.586 6.727 13.972 12.936 13.972 12.936s-8.28 7.245-26.91-10.35c5.176 9.315 1.036 12.938.52 11.902-.52-1.035-9.315-13.97-30.013-18.628 12.936 8.28 7.243 11.902 7.243 11.902s-6.726-11.902-17.593 0c-4.14-10.867-20.18-17.076-39.844-18.112-6.21-7.243-9.83-5.174-24.32-9.314-8.28-9.313-20.18-19.663-20.18-19.663s.517-13.97 14.488-12.42c1.552 4.658 1.552 3.106 1.552 3.106s15.524-5.692 20.18 2.07c6.728-11.902 16.042-1.78 17.595 2.36 4.458.654 26.907 1.262 26.907 1.262s-2.588-4.657-1.035-4.14c1.552.518 13.97-4.656 13.454-6.208-.517-1.553-1.034-6.727 1.035-6.21 2.07.517-17.593-2.588-28.46 5.693-3.622-3.623-1.035-13.455-1.035-13.455l-32.08-6.726-1.554 8.28s-9.314 1.55-8.796-.518c.517-2.07-2.07 7.243-2.07 7.243s-12.42-3.104-12.42-3.62 3.623-18.63 3.623-18.112c0 .518-10.35 1.035-24.838 11.902-4.14-12.936-36.74-30.012-36.74-30.53z" fill-rule="evenodd" stroke-width="1.4087pt" fill="#ffc221"/> + <path d="M385.98 284.763l-6.727 30.013M392.188 296.146l-2.07 9.83M425.307 303.908l-3.105 9.314M482.748 367.03c-.517 0-16.558 2.07-18.63 1.554-2.068-.517 25.357 8.28 25.357 11.9M453.77 370.666s-16.04-10.348-18.628-9.314c-2.587 1.035 16.04-.517 17.594-2.07M420.65 358.762s-16.558.517-18.11-1.035 16.04 11.384 19.145 10.35M388.567 351.508c-.518 0-11.385-4.14-16.04-5.176 4.138 4.14 7.243 9.833 17.592 11.902M392.707 344.788c-.518-1.035-20.698-7.245-20.698-10.35 4.656 1.553 11.383 3.622 17.592 2.07M499.822 320.98l-2.07 9.314" stroke-width="1.4087pt" fill="none"/> + <path d="M347.688 237.67s-21.734 18.628 0 29.494c1.034-7.244 2.587-8.278 2.587-8.278s18.11 6.726 28.977-9.315c-4.657-6.725-12.937-4.138-12.937-4.138s-17.076 0-18.628-7.76z" fill-rule="evenodd" stroke-width="1.4087pt" fill="#ffc221"/> + <path d="M365.8 245.954l-15.006 12.936M412.016 335.8s3.46 3.814.354 8.47M484.82 339.618l-5.692.52M438.247 336.505l10.35 1.552M466.083 309.895s.29 10.46-8.427 10.17c-8.717-.29-5.812.29-5.812.29" stroke-width="1.4087pt" fill="none"/> + <path d="M472.774 308.148s3.487 1.162 2.616 3.778c-.872 2.614.87 10.17-9.298 17.434-10.753 2.324-9.59-9.007-9.59-9.007" stroke-width="1.4087pt" fill="none"/> + <path d="M476.55 311.346s6.392-3.777 7.264 2.325c.87 6.102-5.23 17.435-9.59 19.18-4.358 1.742-9.297-.292-8.717-3.197M484.396 313.966s5.813-4.65 7.555 1.452c1.745 6.103-4.648 19.76-7.264 20.05M492.524 315.417s2.907-1.453 4.94.29M483.227 336.336c-1.162.29-6.102.58-7.845-3.196M457.082 326.165c-.29 0-6.102.292-6.102.292M479.452 349.127l-.58-9.59-2.325-3.195-4.068 4.068s-.583 9.59-2.326 10.46M472.48 340.11c-.292-.58-3.198-6.1-3.198-6.1l-4.94 6.1s-.58 8.72-2.324 9.592M464.336 339.815c0-.29-2.034-5.81-2.034-5.81s-5.81 3.196-6.392 5.52c-.58 2.325-.872 8.717-2.325 9.3M455.912 338.364s.582-5.23-1.162-5.23c-1.742 0-9.59 7.265-9.88 13.657" stroke-width="1.4087pt" fill="none"/> + <path stroke-linejoin="round" d="M348.402 237.825s2.905-2.906 3.777-6.392c.87-3.487-1.163-7.265 2.324-10.46 3.487-3.198 49.397-22.666 53.176-26.444 3.777-3.778 10.75-11.914 11.623-13.658.87-1.743 3.487 8.717-4.36 13.367 8.428-2.326 13.95-4.94 17.435-3.78-3.487 4.94-12.785 13.078-17.144 13.078 10.17-3.778 19.47-6.975 22.084-4.94 2.615 2.034-12.495 12.204-18.597 12.785 10.17-2.615 23.83-6.683 25.572-2.325-5.52 1.744-3.78 3.195-15.11 9.59-1.453 1.163-8.717 1.452-8.717 1.452 8.717-.872 20.63-4.36 21.792 2.034-6.973 2.615-9.588 6.102-15.4 7.555-5.81 1.453-19.178 4.067-27.315 7.264-8.136 3.196-20.05 12.495-20.05 12.495s-25.86.87-25.86.58c0-.29-4.94-11.914-5.23-12.205z" fill-rule="evenodd" stroke-width="1.4087pt" fill="#fff"/> + <path d="M360.605 235.797s.29-5.81 2.906-7.845c2.616-2.034 15.693-6.975 18.6-11.333 2.904-4.36-4.36 7.554-3.198 10.75M365.836 227.077s6.393 2.326 4.94 7.265" stroke-width="1.4087pt" fill="none"/> + <path d="M373.39 230.422c0 2.648-2.146 4.795-4.794 4.795s-4.794-2.147-4.794-4.795 2.146-4.794 4.794-4.794 4.795 2.146 4.795 4.794z" stroke-width="1.22334pt" fill="none"/> + <path d="M570.116 220.104l50.27 9.59s5.52-6.394 2.615-9.88c7.556-1.743 5.522-11.623 5.522-11.623s8.717-3.776 1.452-12.495c4.942-4.94-1.162-8.717-1.162-8.717s2.034-8.717-4.36-9.59c1.745-6.972-11.04-9.297-11.04-9.297s-26.443 7.265-45.04 7.847c6.102 6.102-2.325 9.88-2.325 9.88s4.94 3.486 3.487 6.392c-1.453 2.905.872 6.1-5.52 8.136 8.426 3.778-.873 10.17-.873 10.17s9.3 6.392 6.976 9.588z" fill-rule="evenodd" stroke-width="1.4087pt" fill="#fff"/> + <path d="M565.17 209.356s44.46 5.23 46.494 5.23 9.88 2.616 11.333 5.23M567.495 206.735l61.893 1.453M567.79 205.285s58.698-3.487 62.766-9.59M569.524 192.5s58.988-6.394 59.57-5.522M567.495 185.234s57.244-9.007 57.825-7.555M404.193 148.332s18.016 19.76 16.272 33.126" stroke-width="1.4087pt" fill="none"/> + <path d="M419.303 170.997s5.81 8.426 8.136 9.298 22.665 2.034 23.827 10.752c1.162 5.52-4.358 3.777-3.486 7.845 1.453 5.23 15.11 11.913 29.93 4.068M464.055 207.03s12.203 18.017 30.22-1.45M484.974 213.427s14.82 7.845 27.023-12.495M496.3 215.16s7.264 6.102 22.376-2.033M539.603 204.99s22.375 4.647 23.828 6.1M548.027 200.058c.29 0 15.692.582 15.692.582M538.434 191.337s26.733-1.743 30.22 3.778M526.812 182.91s37.486 1.453 39.228 3.487M535.236 221.26s6.393-1.743 7.265-.87M520.713 236.952s8.426 7.265 19.18 4.068M525.36 249.166s9.59 4.358 20.923 1.742M528.56 256.42s9.588 6.393 15.98 5.23M524.206 260.21s6.683 4.94 6.973 7.555M514.91 266.014s2.033 10.46 9.298 14.237M509.964 270.662s-3.196 13.658 4.94 22.084M501.54 281.41c0 .29-.58 6.393-.29 6.975M449.235 228.528l15.692-.872s5.81-2.324 1.742-6.1M468.703 225.05c.292 0 14.82 1.16 18.598 5.52 3.778 4.358 8.428 13.075 11.042 14.53 2.616 1.45 3.197-.583 3.197-.583M495.145 242.192s-7.845 13.368-1.743 17.436M490.778 257.012s-6.973 9.3-1.453 13.948M487.876 269.79s-5.52 9.008 1.163 15.11M485.44 245.897c-.376.375-6.75 4.874-9 3.75M478.69 260.14s2.625 2.624 4.875 2.25M479 273.776l4.19 2.872M479.564 284.214l3.624 2.186M413.933 141.7s7.64 3.974 13.75 0c6.112-3.97 35.446-18.943 43.085-21.388 7.638-2.445 11.917-16.5 13.445-22.61M478.41 114.2l42.78-12.527s7.027-5.806 7.332-16.5M525.46 96.784s42.778-4.278 42.778-20.167M561.523 87.616S606.44 75.393 610.72 70.81" stroke-width="1.4087pt" fill="none"/> + <path d="M436.233 151.48s27.195-14.057 31.473-15.584c4.277-1.528 14.055-13.75-.61-13.75" stroke-width="1.4087pt" fill="none"/> + <path d="M449.376 156.98c.306 0 22.305-14.363 29.64-16.196 3.972-5.5 1.833-11.305-4.89-10.083" stroke-width="1.4087pt" fill="none"/> + <path d="M480.846 137.118c.612-.306 11.918-.612 7.945 8.25-5.802 4.278-30.86 16.806-30.86 16.806M475.042 127.645l47.67-15.89s3.973-8.25-1.832-9.472M560.607 87.92c0 .307 6.112 3.668 2.445 9.168-6.722 3.973-38.5 11.612-38.5 11.612M608.883 83.033L563.965 95.56M605.516 93.117l-39.11 11.917M602.164 102.895l-34.53 10.39M595.74 112.672c-.917 0-25.667 7.64-25.667 7.64M590.246 120.312l-15.89 6.417M586.273 128.867c-.61 0-13.75 5.805-13.75 5.805M582.3 135.895l-12.22 5.805M561.213 149.035s1.528.61 1.222 2.445M530.348 165.84s5.195 1.834.306 6.723c-2.444 3.36-9.472 2.445-13.75 8.556M563.664 97.395s6.418 1.528 1.528 9.778c-12.834 4.89-38.807 12.833-38.807 12.833s-1.22 2.14-4.582 3.973c-3.36 1.832-40.334 12.22-40.334 12.22M565.805 106.867s7.028 3.056 0 8.25c-7.945 4.584-35.75 13.14-35.75 13.14s-.307 2.444-1.528 3.36c-1.223.917-37.89 13.14-37.89 13.14" stroke-width="1.4087pt" fill="none"/> + <path d="M567.636 115.116s7.334 2.14.917 8.25c-7.64 4.584-32.084 12.834-32.084 12.834s-2.445 3.056-6.418 4.278c-3.972 1.222-29.333 11.61-29.333 11.61M569.468 123.367c2.14.917 7.945 1.834.917 7.334-8.25 3.667-28.417 11.612-28.417 11.612l-1.834 3.36-32.083 13.75M571.3 131.618s3.054 3.667-3.668 7.945c-7.334 3.972-23.222 10.083-23.222 10.083M567.636 140.173s3.36 2.14-.915 5.195c-4.89 2.444-24.14 12.528-24.14 12.528l-12.528 8.25" stroke-width="1.4087pt" fill="none"/> + <path d="M523.63 112.06c0 .307 5.194 4.584 3.36 9.473 4.584 3.362 3.667 7.028 3.667 7.028s6.416 3.668 5.5 8.863c6.417 1.528 6.11 5.194 6.11 5.194l-2.138 3.36s6.415-.304.916 7.946c3.36 1.833 1.834 3.972 1.834 3.972M541.04 154.23c-.917 0-22.305 7.944-27.806 12.833" stroke-width="1.4087pt" fill="none"/> + <path d="M489.41 144.757s6.418-.306 5.502 6.722c7.334-2.445 5.805 4.583 5.805 4.583s8.555-3.362 7.028 7.333c5.5-1.222 4.583 4.278 4.583 4.278s4.89-.306 4.89 2.444c3.36-3.055 7.028-1.527 7.028-1.527s2.444-3.36 5.805-2.444M495.215 151.174c0 .61-28.723 16.5-28.723 16.5M500.71 156.367l-21.696 13.445M508.048 163.09c0 .305-18.945 11.306-18.945 11.306M512.33 167.368s-13.444 11-16.5 10.39M516.91 170.73s-7.64 5.805-14.057 8.555M524.854 168.285s2.444 3.056-12.833 11" stroke-width="1.4087pt" fill="none"/> + </g> + </g> +</svg> diff --git a/s/flag/at.svg b/s/flag/at.svg new file mode 100755 index 0000000..ce61d8e --- /dev/null +++ b/s/flag/at.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd"> + <path fill="#fff" d="M640 480H0V0h640z"/> + <path fill="#df0000" d="M640 480H0V319.997h640zM640 160.125H0V.122h640z"/> + </g> +</svg> diff --git a/s/flag/au.svg b/s/flag/au.svg new file mode 100755 index 0000000..ca7e29d --- /dev/null +++ b/s/flag/au.svg @@ -0,0 +1,11 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g stroke-width="1pt"> + <path fill="#006" d="M0 0h640v480H0z"/> + <path d="M0 0v27.95L307.037 250h38.647v-27.95L38.647 0H0zm345.684 0v27.95L38.647 250H0v-27.95L307.037 0h38.647z" fill="#fff"/> + <path d="M144.035 0v250h57.614V0h-57.615zM0 83.333v83.333h345.684V83.333H0z" fill="#fff"/> + <path d="M0 100v50h345.684v-50H0zM155.558 0v250h34.568V0h-34.568zM0 250l115.228-83.334h25.765L25.765 250H0zM0 0l115.228 83.333H89.463L0 18.633V0zm204.69 83.333L319.92 0h25.764L230.456 83.333H204.69zM345.685 250l-115.228-83.334h25.765l89.464 64.7V250z" fill="#c00"/> + <g fill-rule="evenodd" fill="#fff"> + <path d="M299.762 392.523l-43.653 3.795 6.013 43.406-30.187-31.764-30.186 31.764 6.014-43.406-43.653-3.795 37.68-22.364-24.244-36.495 40.97 15.514 13.42-41.713 13.42 41.712 40.97-15.515-24.242 36.494M486.528 432.528l-10.537-15.854 17.81 6.742 5.824-18.125 5.825 18.126 17.807-6.742-10.537 15.854 16.37 9.718-18.965 1.65 2.616 18.85-13.116-13.793-13.117 13.794 2.616-18.85-18.964-1.65M486.528 150.433l-10.537-15.856 17.81 6.742 5.824-18.122 5.825 18.12 17.807-6.74-10.537 15.855 16.37 9.717-18.965 1.65 2.616 18.85-13.116-13.793-13.117 13.794 2.616-18.85-18.964-1.65M380.742 265.033l-10.537-15.853 17.808 6.742 5.825-18.125 5.825 18.125 17.808-6.742-10.536 15.853 16.37 9.72-18.965 1.65 2.615 18.85-13.117-13.795-13.117 13.795 2.617-18.85-18.964-1.65M580.586 236.824l-10.558-15.854 17.822 6.742 5.782-18.125 5.854 18.125 17.772-6.742-10.508 15.854 16.362 9.718-18.97 1.65 2.608 18.85-13.118-13.793-13.117 13.793 2.61-18.85-18.936-1.65M541.938 319.936l-10.367 6.425 2.914-11.84-9.316-7.863 12.165-.896 4.605-11.29 4.606 11.29 12.165.897-9.317 7.863 2.912 11.84"/> + </g> + </g> +</svg> diff --git a/s/flag/aw.svg b/s/flag/aw.svg new file mode 100755 index 0000000..5e2a85d --- /dev/null +++ b/s/flag/aw.svg @@ -0,0 +1,186 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h288v216H0z"/> + </clipPath> + </defs> + <g transform="scale(2.2222)" clip-path="url(#a)"> + <path fill="#39c" d="M0 0v216h324V0H0z"/> + <path fill="#ff0" d="M0 144v12h324v-12H0zM0 168v12h324v-12H0z"/> + </g> + <path fill="#9cc" d="M142.647 28.067l2.952 2.952-2.953-2.953zM139.695 33.97l2.952 2.953-2.952-2.952m5.904 0l2.95 2.953-2.95-2.952z"/> + <path fill="#ccf" d="M139.695 36.923l2.952 2.952-2.952-2.952m5.904 0l2.95 2.952-2.95-2.952z"/> + <path fill="#6cc" d="M136.743 42.827l2.952 2.952-2.952-2.953z"/> + <path fill="#c66" d="M142.647 42.827l2.952 2.952-2.953-2.953z"/> + <path fill="#6cc" d="M148.55 42.827l2.953 2.952-2.952-2.953z"/> + <path fill="#ccf" d="M136.743 45.78l2.952 2.95-2.952-2.95zM148.55 45.78l2.953 2.95-2.952-2.95z"/> + <path fill="#fcc" d="M139.695 48.73l2.952 2.954-2.952-2.953m5.904 0l2.95 2.954-2.95-2.953z"/> + <path fill="#6cc" d="M133.79 51.684l2.953 2.952-2.952-2.952z"/> + <path d="M142.16 34.065l-20.695 78.45-78.68 21.367 78.453 20.476 20.922 78.45 20.918-78.45 78.452-20.922-78.452-20.922-20.918-78.45z" stroke="#fff" stroke-width="3.690125" fill="#c00"/> + <path fill="#6cc" d="M151.503 51.684l2.952 2.952-2.952-2.952z"/> + <path fill="#9cf" d="M133.79 54.636l2.953 2.952-2.952-2.952m17.713 0l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M136.743 57.588l2.952 2.952-2.952-2.952m11.808 0l2.953 2.952-2.952-2.952z"/> + <path fill="#69c" d="M130.838 60.54l2.953 2.952-2.952-2.952z"/> + <path fill="#c33" d="M137.726 62.51l.984 1.967-.984-1.968m11.808 0l.984 1.967-.984-1.968z"/> + <path fill="#69c" d="M154.455 60.54l2.952 2.952-2.952-2.952z"/> + <path fill="#9cf" d="M130.838 63.492l2.953 2.952-2.952-2.952m23.617 0l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M133.79 66.444l2.953 2.952-2.952-2.952m17.713 0l2.952 2.952-2.952-2.952z"/> + <path fill="#69c" d="M127.886 69.396l2.952 2.952-2.952-2.952zM157.407 69.396l2.952 2.952-2.953-2.952z"/> + <path fill="#9cc" d="M127.886 72.348l2.952 2.952-2.952-2.952m29.52 0l2.953 2.952-2.953-2.952z"/> + <path fill="#cff" d="M127.886 75.3l2.952 2.952-2.952-2.952m29.52 0l2.953 2.952-2.953-2.952z"/> + <path fill="#69c" d="M124.934 78.252l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M130.838 78.252l2.953 2.952-2.952-2.952m23.617 0l2.952 2.952-2.952-2.952z"/> + <path fill="#69c" d="M160.36 78.252l2.95 2.952-2.95-2.952z"/> + <path fill="#9cc" d="M124.934 81.204l2.952 2.953-2.952-2.952z"/> + <path fill="#c33" d="M131.82 83.174l.986 1.967-.985-1.966m23.618 0l.984 1.967-.984-1.966z"/> + <path fill="#9cc" d="M160.36 81.204l2.95 2.953-2.95-2.952z"/> + <path fill="#cff" d="M124.934 84.157l2.952 2.952-2.952-2.953m35.425 0l2.95 2.952-2.95-2.953z"/> + <path fill="#fcc" d="M127.886 87.11l2.952 2.95-2.952-2.95m29.52 0l2.953 2.95-2.953-2.95z"/> + <path fill="#9cc" d="M121.982 90.06l2.952 2.953-2.952-2.952z"/> + <path fill="#c33" d="M128.87 92.03l.984 1.968-.985-1.968m29.52 0l.985 1.968-.985-1.968z"/> + <path fill="#9cc" d="M163.31 90.06l2.954 2.953-2.953-2.952z"/> + <path fill="#ccf" d="M121.982 93.013l2.952 2.952-2.952-2.952m41.33 0l2.952 2.952-2.953-2.952z"/> + <path fill="#fcc" d="M124.934 95.965l2.952 2.952-2.952-2.952m35.425 0l2.95 2.952-2.95-2.952z"/> + <path fill="#9cc" d="M119.03 98.917l2.952 2.952-2.952-2.953z"/> + <path fill="#c33" d="M125.917 100.886l.984 1.968-.983-1.968m35.425 0l.985 1.968-.985-1.968z"/> + <path fill="#9cc" d="M166.264 98.917l2.952 2.952-2.952-2.953z"/> + <path fill="#ccf" d="M119.03 101.87l2.952 2.95-2.952-2.95m47.234 0l2.952 2.95-2.952-2.95z"/> + <path fill="#fcc" d="M121.982 104.82l2.952 2.953-2.952-2.952m41.33 0l2.952 2.953-2.953-2.952z"/> + <path fill="#9cc" d="M116.078 107.773l2.952 2.952-2.952-2.952z"/> + <path fill="#c33" d="M121.982 107.773l2.952 2.952-2.952-2.952m41.33 0l2.952 2.952-2.953-2.952z"/> + <path fill="#9cc" d="M169.216 107.773l2.952 2.952-2.952-2.952m-61.994 2.952l2.952 2.953-2.952-2.952z"/> + <path fill="#ccf" d="M110.174 110.725l2.952 2.953-2.952-2.952m64.946 0l2.952 2.952-2.952-2.952z"/> + <path fill="#9cc" d="M178.072 110.725l2.952 2.953-2.952-2.952m-79.707 2.952l2.952 2.952-2.952-2.952z"/> + <path fill="#ccf" d="M101.317 113.678l2.953 2.952-2.953-2.952z"/> + <path fill="#fcc" d="M113.126 113.678l2.952 2.952-2.952-2.952z"/> + <path fill="#c33" d="M116.078 113.678l2.952 2.952-2.952-2.952m53.138 0l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M172.168 113.678l2.952 2.952-2.952-2.952z"/> + <path fill="#ccf" d="M183.976 113.678l2.952 2.952-2.952-2.952z"/> + <path fill="#9cc" d="M186.928 113.678l2.952 2.952-2.952-2.952z"/> + <path fill="#69c" d="M86.557 116.63l2.952 2.952-2.953-2.952z"/> + <path fill="#9cc" d="M89.51 116.63l2.95 2.952-2.95-2.952z"/> + <path fill="#cff" d="M92.46 116.63l2.953 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M104.27 116.63l2.952 2.952-2.952-2.952z"/> + <path fill="#c33" d="M109.19 117.613l1.97.984-1.97-.984m67.9 0l1.967.984-1.968-.984z"/> + <path fill="#fcc" d="M181.024 116.63l2.952 2.952-2.952-2.952z"/> + <path fill="#cff" d="M192.833 116.63l2.952 2.952-2.952-2.952z"/> + <path fill="#9cc" d="M195.785 116.63l2.952 2.952-2.952-2.952z"/> + <path fill="#69c" d="M198.737 116.63l2.952 2.952-2.953-2.952M77.7 119.582l2.953 2.952-2.952-2.952z"/> + <path fill="#9cc" d="M80.653 119.582l2.952 2.952-2.952-2.952z"/> + <path fill="#cff" d="M83.605 119.582l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M95.413 119.582l2.952 2.952-2.952-2.952z"/> + <path fill="#c33" d="M100.334 120.565l1.968.984-1.968-.985m85.61 0l1.97.984-1.97-.985z"/> + <path fill="#fcc" d="M189.88 119.582l2.953 2.952-2.953-2.952z"/> + <path fill="#cff" d="M201.69 119.582l2.95 2.952-2.95-2.952z"/> + <path fill="#9cc" d="M204.64 119.582l2.953 2.952-2.952-2.952z"/> + <path fill="#69c" d="M207.593 119.582l2.952 2.952-2.952-2.952m-138.75 2.952l2.953 2.952-2.952-2.952z"/> + <path fill="#9cf" d="M71.796 122.534l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M86.557 122.534l2.952 2.952-2.953-2.952z"/> + <path fill="#c33" d="M91.478 123.517l1.968.984-1.968-.983m103.324 0l1.967.984-1.968-.983z"/> + <path fill="#fcc" d="M198.737 122.534l2.952 2.952-2.953-2.952z"/> + <path fill="#9cf" d="M213.497 122.534l2.952 2.952-2.953-2.952z"/> + <path fill="#69c" d="M216.45 122.534l2.95 2.952-2.95-2.952z"/> + <path fill="#6cc" d="M59.988 125.486l2.952 2.952-2.952-2.952z"/> + <path fill="#9cf" d="M62.94 125.486l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M74.75 125.486l2.95 2.952-2.95-2.952zM210.545 125.486l2.952 2.952-2.952-2.952z"/> + <path fill="#9cf" d="M222.353 125.486l2.953 2.952-2.953-2.952z"/> + <path fill="#6cc" d="M225.306 125.486l2.952 2.952-2.952-2.952m-174.174 2.952l2.952 2.952-2.952-2.952z"/> + <path fill="#ccf" d="M54.084 128.438l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M65.892 128.438l2.952 2.952-2.952-2.952z"/> + <path fill="#c33" d="M70.813 129.42l1.968.985-1.967-.984m144.653 0l1.968.985-1.968-.984z"/> + <path fill="#fcc" d="M219.4 128.438l2.954 2.952-2.953-2.952z"/> + <path fill="#ccf" d="M231.21 128.438l2.952 2.952-2.952-2.952z"/> + <path fill="#6cc" d="M234.162 128.438l2.952 2.952-2.952-2.952z"/> + <path fill="#9cc" d="M42.275 131.39l2.952 2.952-2.952-2.952z"/> + <path fill="#ccf" d="M45.227 131.39l2.953 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M57.036 131.39l2.952 2.952-2.952-2.952zM228.258 131.39l2.952 2.952-2.952-2.952z"/> + <path fill="#ccf" d="M240.066 131.39l2.952 2.952-2.952-2.952z"/> + <path fill="#9cc" d="M243.018 131.39l2.952 2.952-2.952-2.952M36.37 134.342l2.953 2.952-2.952-2.952z"/> + <path fill="#c66" d="M51.132 134.342l2.952 2.952-2.952-2.952zM234.162 134.342l2.952 2.952-2.952-2.952z"/> + <path fill="#9cc" d="M248.922 134.342l2.953 2.952-2.953-2.952m-206.647 2.952l2.952 2.953-2.952-2.953z"/> + <path fill="#ccf" d="M45.227 137.294l2.953 2.953-2.952-2.953z"/> + <path fill="#fcc" d="M57.036 137.294l2.952 2.953-2.952-2.953m171.222 0l2.952 2.953-2.952-2.953z"/> + <path fill="#ccf" d="M240.066 137.294l2.952 2.953-2.952-2.953z"/> + <path fill="#9cc" d="M243.018 137.294l2.952 2.953-2.952-2.953z"/> + <path fill="#6cc" d="M51.132 140.247l2.952 2.952-2.952-2.953z"/> + <path fill="#ccf" d="M54.084 140.247l2.952 2.952-2.952-2.953z"/> + <path fill="#fcc" d="M65.892 140.247l2.952 2.952-2.952-2.953z"/> + <path fill="#c33" d="M70.813 141.23l1.968.984-1.967-.984m144.653 0l1.968.984-1.968-.984z"/> + <path fill="#fcc" d="M219.4 140.247l2.954 2.952-2.953-2.953z"/> + <path fill="#ccf" d="M231.21 140.247l2.952 2.952-2.952-2.953z"/> + <path fill="#6cc" d="M234.162 140.247l2.952 2.952-2.952-2.953M59.988 143.2l2.952 2.95-2.952-2.95z"/> + <path fill="#9cf" d="M62.94 143.2l2.952 2.95-2.952-2.95z"/> + <path fill="#fcc" d="M74.75 143.2l2.95 2.95-2.95-2.95zM210.545 143.2l2.952 2.95-2.952-2.95z"/> + <path fill="#9cf" d="M222.353 143.2l2.953 2.95-2.953-2.95z"/> + <path fill="#6cc" d="M225.306 143.2l2.952 2.95-2.952-2.95z"/> + <path fill="#69c" d="M68.844 146.15l2.952 2.953-2.952-2.952z"/> + <path fill="#9cf" d="M71.796 146.15l2.952 2.953-2.952-2.952z"/> + <path fill="#fcc" d="M86.557 146.15l2.952 2.953-2.953-2.952z"/> + <path fill="#c33" d="M91.478 147.134l1.968.984-1.968-.984m103.324 0l1.967.984-1.968-.984z"/> + <path fill="#fcc" d="M198.737 146.15l2.952 2.953-2.953-2.952z"/> + <path fill="#9cf" d="M213.497 146.15l2.952 2.953-2.953-2.952z"/> + <path fill="#69c" d="M216.45 146.15l2.95 2.953-2.95-2.952M77.7 149.104l2.953 2.952-2.952-2.952z"/> + <path fill="#9cc" d="M80.653 149.103l2.952 2.952-2.952-2.952z"/> + <path fill="#cff" d="M83.605 149.103l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M95.413 149.103l2.952 2.952-2.952-2.952z"/> + <path fill="#c33" d="M100.334 150.086l1.968.984-1.968-.984m85.61 0l1.97.984-1.97-.984z"/> + <path fill="#fcc" d="M189.88 149.103l2.953 2.952-2.953-2.952z"/> + <path fill="#cff" d="M201.69 149.103l2.95 2.952-2.95-2.952z"/> + <path fill="#9cc" d="M204.64 149.103l2.953 2.952-2.952-2.952z"/> + <path fill="#69c" d="M207.593 149.103l2.952 2.952-2.952-2.952m-121.036 2.952l2.952 2.952-2.953-2.952z"/> + <path fill="#9cc" d="M89.51 152.055l2.95 2.952-2.95-2.952z"/> + <path fill="#cff" d="M92.46 152.055l2.953 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M104.27 152.055l2.952 2.952-2.952-2.952z"/> + <path fill="#c33" d="M109.19 153.038l1.97.984-1.97-.984m67.9 0l1.967.984-1.968-.984z"/> + <path fill="#fcc" d="M181.024 152.055l2.952 2.952-2.952-2.952z"/> + <path fill="#cff" d="M192.833 152.055l2.952 2.952-2.952-2.952z"/> + <path fill="#9cc" d="M195.785 152.055l2.952 2.952-2.952-2.952z"/> + <path fill="#69c" d="M198.737 152.055l2.952 2.952-2.953-2.952z"/> + <path fill="#9cc" d="M98.365 155.007l2.952 2.952-2.952-2.953z"/> + <path fill="#ccf" d="M101.317 155.007l2.953 2.952-2.953-2.953z"/> + <path fill="#fcc" d="M113.126 155.007l2.952 2.952-2.952-2.953z"/> + <path fill="#c33" d="M116.078 155.007l2.952 2.952-2.952-2.953m53.138 0l2.952 2.952-2.952-2.953z"/> + <path fill="#fcc" d="M172.168 155.007l2.952 2.952-2.952-2.953z"/> + <path fill="#ccf" d="M183.976 155.007l2.952 2.952-2.952-2.953z"/> + <path fill="#9cc" d="M186.928 155.007l2.952 2.952-2.952-2.953m-79.706 2.952l2.952 2.95-2.952-2.95z"/> + <path fill="#ccf" d="M110.174 157.96l2.952 2.95-2.952-2.95m64.946 0l2.952 2.95-2.952-2.95z"/> + <path fill="#9cc" d="M178.072 157.96l2.952 2.95-2.952-2.95m-61.994 2.95l2.952 2.953-2.952-2.952z"/> + <path fill="#c33" d="M121.982 160.91l2.952 2.953-2.952-2.952m41.33 0l2.952 2.953-2.953-2.952z"/> + <path fill="#9cc" d="M169.216 160.91l2.952 2.953-2.952-2.952z"/> + <path fill="#fcc" d="M121.982 163.863l2.952 2.952-2.952-2.952m41.33 0l2.952 2.952-2.953-2.952z"/> + <path fill="#ccf" d="M119.03 166.815l2.952 2.953-2.952-2.953z"/> + <path fill="#c33" d="M125.917 168.784l.984 1.968-.983-1.968m35.425 0l.985 1.968-.985-1.968z"/> + <path fill="#ccf" d="M166.264 166.815l2.952 2.953-2.952-2.953z"/> + <path fill="#9cc" d="M119.03 169.768l2.952 2.952-2.952-2.952m47.234 0l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M124.934 172.72l2.952 2.952-2.952-2.952m35.425 0l2.95 2.952-2.95-2.952z"/> + <path fill="#ccf" d="M121.982 175.672l2.952 2.952-2.952-2.952z"/> + <path fill="#c33" d="M128.87 177.64l.984 1.97-.985-1.97m29.52 0l.985 1.97-.985-1.97z"/> + <path fill="#ccf" d="M163.31 175.672l2.954 2.952-2.953-2.952z"/> + <path fill="#9cc" d="M121.982 178.624l2.952 2.952-2.952-2.952m41.33 0l2.952 2.952-2.953-2.952z"/> + <path fill="#fcc" d="M127.886 181.576l2.952 2.952-2.952-2.952m29.52 0l2.953 2.952-2.953-2.952z"/> + <path fill="#cff" d="M124.934 184.528l2.952 2.952-2.952-2.952z"/> + <path fill="#c33" d="M131.82 186.497l.986 1.968-.985-1.968m23.618 0l.984 1.968-.984-1.968z"/> + <path fill="#cff" d="M160.36 184.528l2.95 2.952-2.95-2.952z"/> + <path fill="#9cc" d="M124.934 187.48l2.952 2.952-2.952-2.952m35.425 0l2.95 2.952-2.95-2.952z"/> + <path fill="#69c" d="M124.934 190.432l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M130.838 190.432l2.953 2.952-2.952-2.952m23.617 0l2.952 2.952-2.952-2.952z"/> + <path fill="#69c" d="M160.36 190.432l2.95 2.952-2.95-2.952z"/> + <path fill="#cff" d="M127.886 193.384l2.952 2.952-2.952-2.952zM157.407 193.384l2.952 2.952-2.953-2.952z"/> + <path fill="#9cc" d="M127.886 196.336l2.952 2.953-2.952-2.954m29.52 0l2.953 2.953-2.953-2.954z"/> + <path fill="#69c" d="M127.886 199.29l2.952 2.95-2.952-2.95m29.52 0l2.953 2.95-2.953-2.95z"/> + <path fill="#fcc" d="M133.79 202.24l2.953 2.953-2.952-2.952m17.713 0l2.952 2.953-2.952-2.952z"/> + <path fill="#9cf" d="M130.838 205.193l2.953 2.952-2.952-2.952z"/> + <path fill="#c33" d="M137.726 207.162l.984 1.968-.984-1.968m11.808 0l.984 1.968-.984-1.968z"/> + <path fill="#9cf" d="M154.455 205.193l2.952 2.952-2.952-2.952z"/> + <path fill="#69c" d="M130.838 208.145l2.953 2.952-2.952-2.952m23.617 0l2.952 2.952-2.952-2.952z"/> + <path fill="#fcc" d="M136.743 211.097l2.952 2.952-2.952-2.953m11.808 0l2.953 2.952-2.952-2.953z"/> + <path fill="#9cf" d="M133.79 214.05l2.953 2.95-2.952-2.95zM151.503 214.05l2.952 2.95-2.952-2.95z"/> + <path fill="#6cc" d="M133.79 217l2.953 2.953L133.79 217m17.713 0l2.952 2.953-2.952-2.952z"/> + <path fill="#fcc" d="M139.695 219.953l2.952 2.952-2.952-2.952m5.904 0l2.95 2.952-2.95-2.952z"/> + <path fill="#ccf" d="M136.743 222.905l2.952 2.952-2.952-2.952m11.808 0l2.953 2.952-2.952-2.952z"/> + <path fill="#6cc" d="M136.743 225.857l2.952 2.953-2.952-2.953z"/> + <path fill="#c66" d="M142.647 225.857l2.952 2.953-2.953-2.953z"/> + <path fill="#6cc" d="M148.55 225.857l2.953 2.953-2.952-2.953z"/> + <path fill="#ccf" d="M139.695 231.762l2.952 2.952-2.952-2.952m5.904 0l2.95 2.952-2.95-2.952z"/> + <path fill="#9cc" d="M139.695 234.714l2.952 2.952-2.952-2.952m5.904 0l2.95 2.952-2.95-2.952m-2.953 5.904l2.952 2.952-2.953-2.952z"/> +</svg> diff --git a/s/flag/ax.svg b/s/flag/ax.svg new file mode 100755 index 0000000..7cd9931 --- /dev/null +++ b/s/flag/ax.svg @@ -0,0 +1,18 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" viewBox="0 0 512 512" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M106.25 0h1133.3v850H106.25z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" transform="matrix(.6024 0 0 .6024 -149.33 0)"> + <path fill="#0053a5" d="M0 0h1300v850H0z"/> + <g fill="#ffce00"> + <path d="M400 0h250v850H400z"/> + <path d="M0 300h1300v250H0z"/> + </g> + <g fill="#d21034"> + <path d="M475 0h100v850H475z"/> + <path d="M0 375h1300v100H0z"/> + </g> + </g> +</svg> diff --git a/s/flag/az.svg b/s/flag/az.svg new file mode 100755 index 0000000..8809a72 --- /dev/null +++ b/s/flag/az.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g stroke-width="1pt"> + <g fill-rule="evenodd"> + <path fill="#c33" d="M0 160h639.996v160H0z"/> + <path fill="#09c" d="M0 0h639.996v160H0z"/> + <path fill="#093" d="M0 320h639.996v160H0z"/> + </g> + <path d="M434.468 239.33c.056 69.89-56.62 126.612-126.51 126.612-69.89.113-126.655-56.525-126.71-126.415-.17-69.89 56.41-126.696 126.3-126.81 69.89-.22 126.748 56.32 126.916 126.21v.403z" fill="#fff"/> + <path d="M441.502 239.33c.046 57.465-46.555 104.103-104.02 104.103-57.465.092-104.14-46.472-104.186-103.937-.138-57.465 46.39-104.178 103.854-104.27 57.465-.182 104.214 46.307 104.352 103.772v.332z" fill="#c33"/> + <path fill-rule="evenodd" fill="#fff" d="M448.536 168.99L462 206.833l36.28-17.247-17.247 36.28 37.843 13.464-37.843 13.463 17.247 36.28L462 271.828l-13.464 37.843-13.463-37.843-36.28 17.247 17.246-36.28-37.844-13.464 37.843-13.463-17.248-36.28 36.28 17.246"/> + </g> +</svg> diff --git a/s/flag/ba.svg b/s/flag/ba.svg new file mode 100755 index 0000000..a4945c4 --- /dev/null +++ b/s/flag/ba.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" viewBox="0 0 512 512" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-85.333 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)"> + <path fill="#009" d="M-85.333 0h682.67v512h-682.67z"/> + <path d="M-85.333 0l682.67 512V0h-682.67z" fill="#fc0"/> + <path fill="#fff" d="M-21.46 75.087L-45.857 57.36l-24.397 17.727 9.32-28.68-24.398-17.726h30.155L-45.857 0l9.32 28.68h30.154L-30.78 46.407M30.093 111.977L5.696 129.703l9.32-28.68-24.398-17.726h30.155l9.32-28.68 9.32 28.68h30.154L45.17 101.022l9.32 28.68M81.64 184.313l9.318-28.68-24.397-17.726h30.156l9.32-28.68 9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.397-17.725M166.906 210.252l-24.397-17.725h30.154l9.32-28.68 9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.396-17.725-24.397 17.726M218.458 247.137h30.155l9.32-28.68 9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68M324.563 301.747l9.32-28.68 9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68-24.398-17.726M409.823 327.687l9.32 28.68h30.154L424.9 374.092l9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68-24.398-17.726h30.155M485.773 382.297l9.32 28.68h30.154l-24.397 17.725 9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68-24.398-17.726h30.155M571.042 465.597h30.155L576.8 483.322l9.32 28.68-24.397-17.725-24.397 17.726 9.32-28.68-24.398-17.726h30.155l9.32-28.68"/> + </g> +</svg> diff --git a/s/flag/bb.svg b/s/flag/bb.svg new file mode 100755 index 0000000..3bf8e50 --- /dev/null +++ b/s/flag/bb.svg @@ -0,0 +1,10 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd"> + <g stroke-width="1pt"> + <path fill="#00009d" d="M0 0h213.337v480H0zM426.662 0H640v480H426.662z"/> + <path fill="#ffd400" d="M213.337 0h213.338v480H213.337z"/> + </g> + <path d="M320.308 387.582c11.615.81 5.198-.527 16.813.284l.81-68.884h44.575c-.264-82.27 31.692-151.61 69.823-210.388 2.292-2.95.794-4.217-1.75-3.565-28.778 4.494-58.385 19.603-78.666 40.576-2.366 2.905.34 3.357 1.678 3.185 11.106-3.33 8.918 9.11 8.113 14.1-11.384 36.37-21.32 71.61-24.967 113.458-.004 2.91-.462 5.027-1.842 5.168-5.133.27-10.153.196-15.342.182-1.892.017-2.305-2.073-2.43-4.05.27-42.143-.106-84.284.164-126.425.13-2.78 10.2-14.07 11.838-14.114 5.157-.134 7.33-.007 13.098-.104 1.503-.012 1.825-4.64.106-4.864-3.51 0-10.027-.32-13.538-.32-1.663.063-25.225-17.906-25.28-21.6-.27-5.67-.11-11.237-.38-16.91.31-1.395-6.578-1.716-6.483.108v15.77c-1.18 7.512 3.39 255.423 3.66 278.386z"/> + <path d="M319.695 387.582c-11.616.81-5.198-.527-16.814.284l-.81-68.884H257.5c.264-82.27-31.692-151.61-69.823-210.388-2.292-2.95-.794-4.217 1.75-3.565 28.777 4.494 58.384 19.603 78.666 40.576 2.367 2.905-.34 3.357-1.677 3.185-11.107-3.33-8.918 9.11-8.113 14.1 11.384 36.37 21.32 71.61 24.966 113.458.005 2.91.463 5.027 1.843 5.168 5.13.27 10.15.196 15.34.182 1.893.017 2.306-2.073 2.43-4.05-.27-42.143.106-84.284-.164-126.425-.13-2.78-10.2-14.07-11.837-14.114-5.158-.134-7.332-.007-13.1-.104-1.502-.012-1.824-4.64-.106-4.864 3.512 0 10.027-.32 13.54-.32 1.662.063 25.223-17.906 25.277-21.6.27-5.67.112-11.237.382-16.91-.31-1.395 6.578-1.716 6.483.108v15.77c1.18 7.512-3.39 255.423-3.66 278.386z"/> + </g> +</svg> diff --git a/s/flag/bd.svg b/s/flag/bd.svg new file mode 100755 index 0000000..231f3bf --- /dev/null +++ b/s/flag/bd.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g stroke-width="1pt" fill-rule="evenodd"> + <path fill="#0a5c12" d="M0 0h640v480H0z"/> + <ellipse rx="231.97" transform="matrix(.581 0 0 .581 -17.648 30.427)" ry="231.97" cy="360.7" cx="470.77" fill="#fc000f"/> + </g> +</svg> diff --git a/s/flag/be.svg b/s/flag/be.svg new file mode 100755 index 0000000..95d31de --- /dev/null +++ b/s/flag/be.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path d="M0 0h213.335v479.997H0z"/> + <path fill="#ffd90c" d="M213.335 0H426.67v479.997H213.335z"/> + <path fill="#f31830" d="M426.67 0h213.335v479.997H426.67z"/> + </g> +</svg> diff --git a/s/flag/bf.svg b/s/flag/bf.svg new file mode 100755 index 0000000..4c1e343 --- /dev/null +++ b/s/flag/bf.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd"> + <path fill="#de0000" d="M640.003 479.578H.378V0h639.625z"/> + <path fill="#35a100" d="M639.628 480H.003V240.216h639.625z"/> + <path fill="#fff300" d="M254.612 276.188l-106.066-72.434 131.043.122 40.386-117.322 40.388 117.322 131.043-.087-106.085 72.398 40.59 117.27-105.954-72.573-105.955 72.556"/> + </g> +</svg> diff --git a/s/flag/bg.svg b/s/flag/bg.svg new file mode 100755 index 0000000..19e9ba6 --- /dev/null +++ b/s/flag/bg.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#de2110" d="M0 319.997h640V480H0z"/> + <path fill="#fff" d="M0 0h640v160.003H0z"/> + <path fill="#319400" d="M0 160.003h640v160.003H0z"/> + </g> +</svg> diff --git a/s/flag/bh.svg b/s/flag/bh.svg new file mode 100755 index 0000000..c67e017 --- /dev/null +++ b/s/flag/bh.svg @@ -0,0 +1,11 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)"> + <path fill="#e10011" d="M-32.5 0h720v480h-720z"/> + <path d="M114.25 479.77L-32.5 480V0l146.06.075 94.242 30.306-93.554 29.542 93.554 30.458-93.554 29.542 93.554 30.458-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/bi.svg b/s/flag/bi.svg new file mode 100755 index 0000000..2250637 --- /dev/null +++ b/s/flag/bi.svg @@ -0,0 +1,15 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-90.533 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" fill-rule="evenodd" transform="translate(84.875) scale(.9375)"> + <path d="M-178 0l428.8 256L-178 512zM679.6 0L250.8 256l428.8 256z" fill="#00cf00"/> + <path d="M-178 0l428.8 256L679.6 0zM-178 512l428.8-256 428.8 256z" fill="red"/> + <path d="M679.6 0h-79.902l-777.7 464.3v47.703H-98.1l777.7-464.3z" fill="#fff"/> + <path d="M398.855 256c0 81.767-66.285 148.05-148.052 148.05S102.75 337.768 102.75 256s66.285-148.053 148.053-148.053S398.855 174.232 398.855 256z" fill="#fff"/> + <path d="M-178 0v47.703l777.7 464.3h79.902V464.3L-98.098 0z" fill="#fff"/> + <path stroke="#00de00" stroke-width="2.9257pt" fill="red" d="M279.943 200.164l-19.25.322-9.948 16.442-9.92-16.472-19.22-.41 9.303-16.822-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817zM215.443 311.784l-19.25.322-9.948 16.442-9.92-16.47-19.22-.41 9.303-16.824-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817zM346.013 311.784l-19.25.322-9.948 16.442-9.92-16.47-19.22-.41 9.303-16.824-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817z"/> + </g> +</svg> diff --git a/s/flag/bj.svg b/s/flag/bj.svg new file mode 100755 index 0000000..e0c9814 --- /dev/null +++ b/s/flag/bj.svg @@ -0,0 +1,14 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill="gray" d="M67.64-154h666v666h-666z"/> + </clipPath> + </defs> + <g transform="matrix(.961 0 0 .7207 -65 110.99)" clip-path="url(#a)"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#319400" d="M0-154h333v666H0z"/> + <path fill="#ffd600" d="M333-154h666v333H333z"/> + <path fill="#de2110" d="M333 179h666v333H333z"/> + </g> + </g> +</svg> diff --git a/s/flag/bl.svg b/s/flag/bl.svg new file mode 100755 index 0000000..5f468ab --- /dev/null +++ b/s/flag/bl.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#fff" d="M0 0h640v479.997H0z"/> + <path fill="#00267f" d="M0 0h213.33v479.997H0z"/> + <path fill="#f31830" d="M426.663 0h213.33v479.997h-213.33z"/> + </g> +</svg> diff --git a/s/flag/bm.svg b/s/flag/bm.svg new file mode 100755 index 0000000..c8d5a84 --- /dev/null +++ b/s/flag/bm.svg @@ -0,0 +1,133 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <path fill="#c00" d="M0 0h640v480H0z"/> + <g stroke-width="1pt"> + <path fill="#006" d="M0 0h512v256H0z"/> + <path fill="#fff" d="M0 0v28.622L454.757 256h57.24v-28.62L57.242 0H0zm511.998 0v28.62L57.24 256H0v-28.622L454.757 0h57.24z"/> + <path fill="#fff" d="M213.333 0v256h85.333V0h-85.333zM0 85.333v85.333h511.998V85.333H0z"/> + <path fill="#c00" d="M0 102.4v51.2h511.998v-51.2H0zM230.4 0v256h51.2V0h-51.2zM0 256l170.666-85.334h38.16L38.162 256H0zM0 0l170.666 85.333h-38.16L0 19.08V0zm303.17 85.333L473.838 0h38.16L341.333 85.333h-38.16zM512 256l-170.666-85.334h38.16L512 236.92V256z"/> + </g> + <path d="M481.688 463.152c3.368.464 128.206-32.03 127.974-82.726V132.242H353.706v248.184c-.232 50.695 127.974 82.726 127.974 82.726z" fill-rule="evenodd" fill="#fff"/> + <path d="M-903.54 822.05c1.22 325.7-655.51 534.47-673.23 531.49 0 0-674.45-205.79-673.23-531.49 7.16-10.536 9.96-14.595 10.43-27.844 2.29-6.875 1.64-15.152 1.64-23.02v-23.02c-1.73-5.203-1.64-13.796-1.64-21.377-.22-5.805-1.64-15.455-1.64-16.444 1.28 9.47 3.02 14.092 6.57 1.644 2.51-6.278 3.92-11.44 6.58-19.732.29-8.094 1.64-14.587 1.64-23.02 0-7.972.38-15.56 1.65-21.377 2.53-2.072 4.74-5.72 8.22-3.287-.31 8.37-2.27 12.79-3.29 21.376v46.04c.16 5.44.91 9.983 3.29 13.155.29-8.095 1.64-14.587 1.64-23.02 1.9-5.69 3.07-13.14 6.58-18.09 1.99-7.393 5.22-13.5 8.22-21.375 2.51-7.807 5.04-13.192 6.58-19.732 3.63-4.077 7.64-11.014 11.51-14.8 8.45-5.43 5.95 2.76 3.29 9.867v23.02c5.8 1.658 2.09-2.334 6.58-6.576 1.58-6.084 5.31-14.347 8.22-19.733 2.92-4.74 6.7-9.218 9.86-14.8 3.42-2.1 12.53-8.07 13.16-8.22-3.65 3.823-6.79 9.364-9.87 14.798-1.26 5.818-1.64 13.405-1.64 21.376.6 15.794 3.82 3.08 6.58-3.287 3.35-2.744 1.82-4.597 8.22-4.933 9.69-6.53 6.58.646 4.93 8.22-1.31 7.352-1.64 14.842-1.64 23.022 0 8.924 1.54 12.746 1.64 21.376 0 7.582-.09 16.175 1.65 21.376 1.17 8.88 3.58 12.586 6.57 19.732 2.51 7.252 5.42 11.873 8.22 18.088 6.44 7.893 3.29.717 3.29-8.222v-46.04c3.02-5.158 3.89-11.446 8.22-16.444 1.65-6.02 4.65-10.675 8.23-14.8 2.45-3.908 6.16-8.806 8.22-13.154v23.02c0 8.18.33 15.67 1.64 23.02 2.26 7.62 3.93 12.287 4.94 19.733 4.29 2.78 5.91 6.903 9.86 9.866 1.99-7.598 3.29-14.388 3.29-23.02v-23.02c1.37-7.685 2.92-14.074 4.93-19.733 2.22-6.977 3.68 1.805 4.94 4.933 2.84 6.012 5.79 9.158 9.86 16.443 4.83 3.45 6.08 8.786 9.87 13.155.87 4.035 1.29 13.116 3.29 16.444 1.77-8.002 4.74-12.822 6.57-21.376 4.93-4.83 7.83-8.23 13.16-11.51 8.36-1.61 12.2-3.916 19.73-4.933 10.41 0 8.54 1.064 1.64 6.577-2.61 4.246-6.36 10.867-9.86 14.8-1.02 7.513-2.97 11.21-3.29 19.73.6 8.43 3.02 15.09 4.93 21.377 4.12-4.612 8.7-14.516 11.51-19.733 4.41-5.036 6.44-12.48 9.87-16.443 3.54-4.29 8.13-7 14.8-8.222 4.08-3.065 8.89-3.288 16.44-3.288 15.09 4.827 31.93 3.435 47.69 4.933 12.19 0 19.9-2.238 31.24-4.933 12.34-2.54 25.39-2.794 37.82-4.933 12.52 0 26.39-1.113 37.82 1.645h32.88c11.89 0 23.53-.245 34.53-1.644 13.27 0 26.77.606 39.47-1.644 14.64 0 28.33-1.158 42.75-1.644 19.75 0 38.05-2.356 57.55-3.288 14.92-.634 26.89-5.416 41.11-8.222 9.53-2.17 20.71-1.644 31.24-1.644 12.48 0 22.46 2.218 34.53 3.288 10.27 0 19.68.85 29.6 1.645H-1349.99c12.08 0 23.18.744 34.53 1.645 10.31 0 19.66.83 29.6 1.644h26.31c7.22.86 16.21 1.02 23.02 3.288 9.55 0 17.27 1.32 26.31 1.644 8.51.516 15.72 1.644 24.66 1.644 8.26.295 15.31 1.91 23.02 3.29 6.98.942 12.59 2.732 18.09 4.932 4.64 2.197 12.24 5.28 16.44 8.222 9.13 0 13.09-1.725 19.74-3.29 4.58-3.536 9.64-3.653 9.86-6.576-5.07 4.52-9.44 5.577-11.51 13.154-1.03 2.565-4.34 12.035 0 9.866 6.04-3.525 10.35-7.542 13.16-13.154 4.7-6.623 6.86-10.678 11.51-16.444 3.44-6.616 9.21-10.764 13.15-14.798 4.6-6.76 7.28-10.17 3.29 1.644-1.41 7.913-2.72 14.015-3.29 21.376-.94 6.975-2.73 12.587-4.93 18.088 0 5.08-.42 10.4 1.64 13.154 7.59-2.167 15-6.207 19.73-9.866 6.51-1.774 11.97-5.252 18.09-9.866 8.1-2.025 13.33-2.29 14.8-4.933-4.43 4.523-8.65 8.448-13.15 11.51-2.19 4.613-5.98 7.346-4.94 11.51 5.11-1.11 14.94-1.69 19.73-3.288 7.71-2.667 11.16-4.304 19.74-6.577 14.765.192 2.498 2.24-4.94 6.577-4.46 3.036-9.07 7.542-14.8 11.51-3.67 6.82-6.16 12.17-9.86 16.444-1.93 7.158-4.59 12.248-8.22 16.444-1.46 6.188-3.54 11.66-4.94 18.088-1.42 10.552-5.32 13.11 6.58 8.22 5.1-5.56 10.03-10.195 13.16-14.798 3.03-4.728 7.17-10.545 11.51-14.8 2.26-6.385 5.81-8.91 9.86-16.442 3.66-3.837 8.797-9.617 13.157-14.8 3.764-3.59 8.946-7.382 14.798-9.865 9.013-3.004 7.87-8.78 4.933 1.645-3.466 4.196-5.575 9.794-6.577 16.443-3.57 14.82.356 9.164 6.578 4.933 5.34-4.412 3.347-7.48 11.51-9.866 1.802-1.517 10.547-6.293 8.222-1.644-1.116 7.408-3.903 10.798-6.577 16.443-3.615 6.525-6.483 11.715-8.222 18.088-2.908 3.88-5.026 8.337 0 6.578 8.472-1.883 11.08-4.92 16.445-8.222 3.2-7.303 6.352-9.63 9.866-14.8-2.012 8.053-4.9 13.58-6.577 19.733-3.786 4.37-5.75 9.307-8.22 16.443-3.604 7.016-4.822 10.37-4.934 19.732-2.216 7.477-5.064 12.895-1.646 19.732 5.21-5.417 9.865-8.835 13.155-16.443 3.385-4.098 5.153-10.394 6.576-16.442 1.567-6.658 3.942-10.753 4.933-18.088 2.29-6.875 1.644-15.153 1.644-23.02v-23.02c-.094-7.86-2.588-14.366 0-19.733 5.006 5.11 6.258 9.69 9.866 16.443 2.11 8.442 5.844 13.214 6.577 21.376 3.342 4.915 3.84 10.934 6.577 18.088.577 8.072 2.097 15.085 0 21.376-.496 5.29-3.066 9.066 0 13.155 5.308-4.385 5.538-10.92 6.577 3.29 0 7.197.253 14.07.837 21.265z" fill-rule="evenodd" fill-opacity=".996" transform="matrix(.19 0 0 .1557 781.422 252.48)" stroke="#002b00" stroke-width="11.125" fill="#007a0f"/> + <path d="M-2178.7 685.68c-.62 4.245-1.64 17.06-1.64 26.31 0 8.38.75 14.815 1.64 21.375.55 5.92 1.88 6.805 0 11.51M-2154.1 672.52c.63 4.245 1.65 17.062 1.65 26.31 0 8.735-1.08 14.022-1.65 21.376-.29 8.08-1.64 12.433-1.64 21.376v6.577M-2172.2 759.67c1.55 0 .93 4.205 1.64 9.866.95 6.998 2.51 12.974 4.93 18.088.35 9.41 2.15 11.425 8.23 14.8 5.87 5.787 8.03 9.684 11.51 14.798 4.19.74 4.91 1.85 6.57 4.933M-2229.7 809h1.64c8.48 1.413 20.16 1.238 26.31 3.29 6.33 1.468 13.95 4.537 18.09 8.22 6.65 7.382 9.26 12.74 18.08 16.444 7.4 4.315 14.86 5.888 23.03 8.22 7.59 3.203 12.6 5.625 18.08 8.223 7.81 3.994 14.04 8.476 23.02 9.866h23.02c7.7 0 12.64.26 16.45-3.29l-16.45 3.29c7.7 0 12.64.26 16.45-3.29M-2200.1 927.39H-2147.48c3.39 7.075 6.48 9.284 13.16 11.51 5.33 3.905 12.28 6.004 19.73 6.577h3.29M-2185.3 955.35c4.47-.92 17.27-4.287 26.31-4.933 9.62 0 14.8 2.073 19.73 6.577 5.04 3.425 7.99 6.602 14.8 9.866 7.27 2.51 14.62 3.29 23.02 3.29.78 2.318.48 1.643 3.29 1.643M-2163.9 988.23h29.6c5.9 2.794 10.77 3.15 13.15 9.865 6.82 5.74 9.83 9.5 19.73 9.87 3.81 1.97 11.83 1.64 18.09 1.64M-2085 1045.8h29.59c9.66.98 16.51.28 21.38 6.58 5.42 7.8 9.97 6.08 16.44 9.87 5.7 0 9.45 1.18 14.8 1.64M-2014.3 1091.8c4.25.62 17.06 1.64 26.31 1.64 9.08 1.23 9.76 3.39 14.8 9.87 2.74 9.6 7.48 8.92 18.09 9.86 7.2 0 12.97-.53 18.09-1.64M-2149.1 762.96c.55.548 1.09 1.096 1.64 1.644-3.73-3.73-1.93-2.363 1.65 6.578.62 8.063 2.05 12.855 4.93 19.732 3.91 5.61 7.18 10.98 9.87 16.443 2.92 6.68 6.81 11.845 11.51 16.443.69 2.087 1.2 2.593 3.28 3.29M-2114.6 769.54c.84 0 5.23 5.086 8.22 9.866 5.7 4.074 10.23 9.203 14.8 14.8 5.13 3.385 11.11 7.55 18.09 11.51 7.98 2.763 10.74 5.002 18.08 8.22 3.87 3.35 10.82 5.813 16.45 8.223 2.42 0 1.25-.39 3.29 1.643M-2076.8 753.1c-1.8 0 0 4.24 0 9.866 2.75 6.088 7.01 12.12 11.51 18.088 5.21 3.442 10.49 10.505 14.8 16.443 2.65 4.223 5.7 7.31 11.51 9.866M-2037.3 739.94c.06 5.876 1.62 16.938 3.29 26.31 2.86 6.823 4.98 11.276 6.58 18.087 1.03 6.853 3.62 12.832 8.22 18.088 3.77 4.78 10.23 9.5 16.44 11.51 6.35 2.72 10.81 4.826 19.73 4.933 6.56-.886 13-1.644 21.38-1.644h13.16" transform="matrix(.19 0 0 .1557 781.422 252.48)" stroke="#002b00" stroke-width="11.125" fill="none"/> + <path d="M-1999.5 753.1c.14 5.28-1.4 10.768 4.93 14.8 2.13 6.658 6.84 14.363 11.51 21.375 4.17 5.286 9.96 9.137 18.09 9.866 5.77 1.34 14.5 2.64 21.38 4.934 6.24 4.06 12.78 10.903 21.37 13.155l-21.37-13.156c6.24 4.06 12.78 10.903 21.37 13.155M-1984.7 753.1c4.35 5.55 16.15 17.8 24.67 26.31 5.88 4.86 11.94 8.735 18.08 11.51 7.52 1.163 15.81 4.454 21.38 6.577 3.59 1.537 4.61 3.012 9.86 3.29M-1961.7 733.36l1.65 1.645c-4.68-4.672-2.25-2.142 8.22 6.577 6.14 4.954 8.58 6.28 9.86 14.8 3.02 2.853 3.99 7.923 8.22 4.932-.52-9.732-5.03-13.12 3.29-8.222 3.03 6.332 6.75 11.464 11.51 14.8 3 3.172 6.52 4.742 13.16 4.932M-1790.7 955.35c4.13.516 21.43.566 29.6 3.29 7.35 1.31 14.84 1.643 23.02 1.643 8.32-.308 13.02-2.784 21.38 0 9.59.738 10.67 3.03 18.08 9.866 6.11 4.14 8.73 8.81 13.16 16.442 1.94 1.254 14.26 8.828 4.93 3.29M-1798.9 915.88c5.51 2.905 18.24 10.32 24.66 14.8 8.63 1.916 11.11 4.66 19.74 6.576 8.8-.104 14.34-2.338 21.37-3.288 5.52-1.84 14.39-2.33 21.38 0 7.45 2.58 12.13 4.848 18.09 8.22 3.26 4.08 13.55 11.504 3.28 3.29-2.74-3.837-3.83-4.385-8.22-6.577M-1764.4 912.6c6.03.172 21.04 2.167 31.24 3.288 6.88 2.293 15.55 2.755 23.02 3.29 8.66 1.545 15.09 2.11 21.38 6.576 4.43 2.98 10.56 8.747 14.8 13.155 9.3 4.03 3.64 2.988-3.29-3.29M-1739.7 897.8c6.48 0 16.65 1.448 26.31 3.288 3.82 4.62 9.98 5.905 18.09 8.222 5.73 1.4 9.92 4.725 16.44 8.222M-1616.4 1021.1l1.64-1.64c-3.62 3.62-2.4 1.79 6.58 0 9.97-2.69 19.28-3.77 29.6-1.65 8.04 0 15.89.14 23.02-1.64 3.3-2.48 7.45-1.31 9.86-4.94 4.74-.83 4.58-4.61 4.94 0M-1611.4 1047.4c8.69-.44 26.41-1.55 36.18-8.22 6.37-1.94 12.67-5.53 19.73-6.58 8.38 0 15.17-1.08 23.02-1.64 9.47-.51 17.94-1.65 27.95-1.65h24.67c8.29 0 15.43.74 23.02 1.65 6.47 1.13 14.19 4.91 18.09 8.22 5.84 1.27 12.44 1.88 18.08 0M-1442.1 1193.8c.55-.54 1.09-1.09 1.64-1.64-3.38 3.38-2.34 1.99 4.93-1.64 9.8 0 18.97-.48 27.96-1.65 8.59.28 17.5 1.19 23.02 4.93 7.66 2.47 15.09 3.36 21.37 6.58 8.01 2.96 13.02 4.97 21.38 6.58 4.48 2.24 15.13 1.73 21.38 3.29 8.04 0 15.89.13 23.02-1.65 8.55-1.83 13.37-4.8 21.37-6.57 5.35-5.16 12-8.15 19.74-9.87 3.18-3.85 7.65-8.33 11.51-11.51l-11.51 11.51c3.18-3.85 7.65-8.33 11.51-11.51M-1220.1 787.63c6.1-.42 18.58-2.76 26.31-6.577 6.46-1.82 14.22-5.025 18.09-8.222 6.51-1.776 10.7-4.02 18.09-6.576 6.89-4.925 14.68-9.035 18.08-13.155 9.14-4.186 11.31-6.837 14.8-14.8 1.86-2.48.95-4.152 3.29-4.933M-1083.6 733.36c-.84 0-5.23 5.086-8.22 9.866-5.65 5.273-11.05 12.922-14.8 19.732-4.39 2.986-8.99 7.95-14.8 11.51-7.43 6.356-13 10.315-21.38 14.8-6.2 4.133-11.79 6.456-19.73 8.22-7.7 2.668-11.15 4.305-19.73 6.578M-1049.1 738.3c-.55.548-1.1 1.096-1.64 1.644 4.12-4.126 2.12-2.248-4.94 6.578-5.63 5.145-11.9 12.18-14.8 16.443-4.66 3.108-12.7 11.297-18.08 14.8-7.3 6.077-14.09 8.025-19.73 13.154-8.1 3.12-13.17 6.54-21.38 9.865-4.69 2.222-11.82 3.87-16.44 6.577h-4.94M-1059 797.49c-.54.548-1.09 1.096-1.64 1.644 3.9-3.904 2.04-2.31-3.29 6.577-5.89 4.087-8.52 7.958-14.8 11.512 0 2.192.55 1.644-1.64 1.644M-988.24 769.54c0 .482-3.036 4.807-4.933 9.866-4.54 4.633-6.777 11.236-11.508 16.444-3.62 7.555-6.47 9.195-13.16 16.443-4.38 2.814-11.43 7.306-14.8 11.51-6.74 2.956-11 6.373-18.08 8.222M-1044.2 845.18c6.05-2.192 16.37-7.738 23.02-11.51 5.59-3.013 12.12-7.204 16.45-9.866 2.19-6.174 7.13-9.368 14.797-13.155 3.3-4.855 8.09-7.803 13.154-13.155 5.01-2.754 6.665-6.426 9.867-9.866M-1047.4 853.4c6.91-.06 19.93-.15 27.95-4.933 8.64-2.708 11.64-6.043 19.73-8.222 4.513-3.16 11.572-6.276 16.444-9.866l-16.443 9.865c4.513-3.16 11.572-6.276 16.444-9.866M-919.18 812.29c-3.606 5.99-11.343 19.205-19.732 24.665-3.205 3.88-11.49 7.53-16.444 11.51-5.166 2.447-12.76 5.717-19.732 9.866-7.788 1.67-13.168 3.717-19.73 6.578M-1050.7 897.8c5.66-2.39 16.06-8.195 24.66-11.51 4.1-2.048 8.2-1.645 13.16-1.645M-1012.9 907.66c.57 0 4.97-4.13 9.86-6.578 6.454-4.053 13.696-8.155 19.734-11.51 6.845-1.786 14.33-6.823 23.02-8.222 4.438 2.22 14.728 2.814 21.377 3.29h9.867M-991.53 920.82c7.102-.182 17.88-.32 24.665-4.933 5.422-.93 10.272-2.506 13.155-4.933M-1108.3 998.1c1.36.072 9.17 1.584 13.15 3.29 5.72 2.86 8.51 6.15 14.8 9.86 5.45 4.78 12.54 6.27 21.37 6.58h23.03c9.67-.55 14.08-2.96 23.02-3.29 7.71 0 13.062-1.08 18.084-3.29M-1126.4 1017.8c6.77.18 10.95 1.22 18.09 4.93 8.07 7.02 13.64 11.21 23.02 13.16 7.35.56 12.64 1.64 21.37 1.64 8.05 0 15.9-.13 23.02 1.65 6.36.18 8.03 1.64 14.8 1.64" transform="matrix(.19 0 0 .1557 781.422 252.48)" stroke="#002b00" stroke-width="11.125" fill="none"/> + <path d="M74.995 82.955c-1.044 0-2.29.08-2.907-.29-1.18-.217-1.99-.696-2.616-1.454-1.078-.747-1.423-1.44-2.325-2.324-.29-1.064-.822-1.887-1.454-2.616.02-1.647.31-2.236.872-3.198 1.375-.476 1.918-.86 3.488-1.163.757-.515 1.958-1.026 2.907-1.454-.436-.738-.894-1.183 0-2.035.736-.7 1.575-1.254 2.907-1.452 1.48.134 1.822.696 2.616 1.453 1.423 0 2.81-.023 4.07.292 1.17.32 1.91.72 3.197 1.453 1.18.394 1.727.784 2.326 2.035.935.91.316 1.513.29 2.907-.162 1.92-.79 1.79-1.744 2.616 1.316.673 2.317.818 3.78.872h8.138c1.364-.372 1.547-.817 2.034-2.035.368-.92.88-2.116 1.163-3.197.644-.744.98-1.694 1.744-2.326.525-1.095 1.198-1.946 2.036-2.616.818-1.185 1.522-1.704 2.616-2.324.903-1.06 1.703-1.403 0-1.454-1.39.244-1.977.92-3.488 1.163-.292-.73-.235-1.67.29-2.325.383-1.445 1.13-2.247 1.454-3.49.678-.78.905-1.843 1.453-3.196-.096-1.267-.338-2.374-.58-3.488-.406-1.014-.582-1.907-.582-3.488.292-1.238.568-1.984 1.454-2.616.537-.966 1.133-1.464 2.325-2.035.583-.817 1.396-1.28 2.326-1.744.653-.79 1.42-1.24 2.034-2.325.362-1.02.71-1.997.872-3.198.406-.813.537-2.54.58-3.78-.018-1.542-.194-2.377-.87-3.196-.362-.903-.643-2.14-1.164-2.907 0-1.58.176-2.474.58-3.488.31-1.55.292-1.948.292-1.164v-.29c1.662.978 2.116 1.38 4.07 1.453.815 0 1.34-.083 2.034-.292 1.652.18 2.27.185 2.326-1.744.258-1.035.49.355.58.872.644 1.286.695.47 1.454-.29.477-1.43 1.01-.6 2.035-.29.116-.35.493-.494.872-.873.217 1.09.538 2 1.453 2.325 1.467-.268 1.544-.85 1.744-2.325 1.04-.215 1.12-.544 1.162.872.766.158 1.377.492 2.034 0 .258-.646.555-1.207.872-1.744.378 1.703.513 1.968 2.326 2.036.586-.555.837-.872.872-2.035.658.798 1.49 1.327 2.906 1.454 1.17.11 1.016.543 2.326.582.332.702.483 1.955 1.162 2.616 1 .642 2.352.868 2.907.58 0-.808-.11-1.634.29-2.034 1.14-.38 2.13-.088 3.198.29 1.474.403 1.454.753 1.454 2.617-.1 1.404-.272 2.762-.872 3.488-.236 1.086-.265 2.593-.872 3.78-.502 1.623.43 1.712.58 3.487.235.982-.272 2.28-.29 3.78.02 1.61-.006 2.41 1.163 2.906.67.988 1.494 1.477 2.325 2.325.987 1.13 1.43 1.633 2.036 2.617 1.053 1.206 1.206 1.717 2.035 2.907.486.97.937 1.673 1.454 2.907.35 1.05.235 2.41 0 3.49-.93.733-1.396 1.59-1.453 3.196-.41.82-.498 2.416-.58 3.488.284 1.21.875 2.006 1.453 2.907.606.758 1.603 1.544 2.325 2.036.636.733 1.08 1.628 1.744 2.325.383 1.26.852 1.825.872 3.49.243 1.113.484 2.22.582 3.488.676.638.594.872 2.035.872.895.523 1.993.58 3.49.58 1.3.1 2.233.292 3.777.292 1.184 0 2.42-.007 3.198-.29.607-.953.95-2.58 1.453-3.49.098-1.266.34-2.374.582-3.487.685-.72 1.19-1.462 2.034-2.035 1.202-.617 1.964-.816 3.49-.872 1.407.4 2.374.777 3.196-.29 1.128-.31 1.833-.582 3.488-.582 1.722-.43 2.18-.198 2.907.872.238 1.094.47 2.35.872 3.197.66.45 1.693 1.18 2.325 1.744.408.86.582 1.473.582 2.906.523.873.122 1.89 0 2.907-.684.717-1.21 1.517-2.035 2.325-.355.432-.777.753-1.454.872l.58.582-10.17 10.172-106.09-.872-4.944-12.208z" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.4523 0 0 1.399 292.484 115.164)" stroke="#2b2b2b" stroke-width="1pt" fill="#d40f0f"/> + <path d="M129.93 29.47l.29.29c-.73-.73-.373-.393.872 1.163v4.07c0 1.655.274 2.36.582 3.488.397.326.474.838.872 1.164M138.65 29.76v.292c0-.856.05-.374-.872 1.162-.586 1.345-.58 2.153-.29 3.49.306.918.29 2.437.29 3.777-.155.467-.136.118-.29.583M144.76 37.318h-.29c.855 0 .373-.05-1.163.872-1.293.813-1.79 1.24-3.198 1.454-.948.928-1.504 1.142-3.198 1.162-.137.41-.085.29-.582.29M137.78 42.55v.292c.383-.144 1.727-.515 2.325-.582.728-.6 1.907-.838 2.616-1.453 1.117-.144.76-.544 2.036-.582l-2.035.582c1.117-.144.76-.544 2.036-.582M142.14 43.713c.496 0 2.54.085 3.488.29h1.453M108.42 50.4h.29c-.784 0-.38.017 1.164-.292 1.3-.1 2.38-.33 3.78-.58 1.552-.39 2.17-.393 3.196-1.455 1.164-.776 1.548-1.454 1.744-2.906.202-.93.326-2.03.872-2.616M121.21 46.33v1.453c0 1.496.058 2.594.582 3.488.597 1.25.973 1.796 2.034 2.327l2.907 1.163h.872M128.48 53.306h1.454c2.154 0 4.02.232 6.104.29h4.07c1.43-.05 2.578-.29 4.07-.29h2.905M121.79 43.423h1.453c1.203-.4 2.817-.357 4.07-.58.516.277.874.622 1.453.87M122.96 39.353h.29c-.783 0-.386-.02 1.164.29.718.623 1.426.984 2.616 1.163M123.83 36.446h.29c-.783 0-.386-.02 1.164.29.748.764 1.947 1.478 2.616 2.326.636.376 1.017.83 1.744 1.163M115.69 53.887v.29c0-.855-.05-.373.872 1.163.097 1.356.21 2.918.872 3.78.192 1.413.234 1.8-.29 2.906-.452 1.016-1.033 2.32-1.744 2.907-.58.853-1.443 1.206-2.035 2.034-.758.53-1.53 1.583-2.035 2.326-1.113 1.24-1.36 1.96-2.325 2.616-.374 1.12-.91 1.663-1.454 2.906-.87 1.028-1.512 2.024-2.033 3.197-.408.95-.465 2.557-.872 3.78v.87M112.49 80.048v-1.453c0-1.466.13-2.728.29-4.07.446-1.04.878-2.202 1.163-3.488.598-.88.852-1.78 1.454-2.907.31-1.136.89-2.017 1.744-2.616.365-1.092.828-1.734 1.454-2.907.457-.93 1.373-2.07 1.744-3.488.444-.528.606-1.394.872-2.326M123.83 58.247v.29c0-.812.036-.38-.58 1.163-.448 1.246-1.14 2.286-1.454 3.488-.605 1.302-1.014 2.702-1.454 4.07-.232 1.3-.29 2.623-.29 4.07v4.07c0 1.486-.274 2.602-.29 4.07-.372.74-.51 1.523-.292 1.742M127.03 59.41c-.275 0-.166.743-.29 1.744-.106 1.37-.292 2.417-.292 4.07-.295 1.378-.704 2.54-.872 3.778-.41 1.382-.813 2.142-.872 3.78.595.874 1.348 1.5 1.744 2.906.47.957 1.018 1.938 1.454 3.197 0 1.578.272 2.254.29 3.78 0 .716-.056 1.165.29 1.743M132.84 61.445v.29c0-.812.036-.38-.58 1.163-.92 1.246-1.504 2.334-2.036 3.198-.442 1.376-.943 2.69-.58 4.07.094 1.33.344 2.91.87 3.778.054 1.428.292 2.198.292 3.78.1 1.3.29 2.234.29 3.778 0 1.183-.006 2.42-.29 3.197-.547.233-.407.497-1.163.58M129.06 54.468c-.366 0 .17.778.29 1.744.402.67.29 2.09.29 3.198M134.29 55.34h.29c-.91 0-.366-.06 1.163 1.163.217 1 .436 2.12.58 3.197M140.4 54.468v1.453c.3 1.396.58 2.484.58 4.07l-.58-4.07c.3 1.396.58 2.484.58 4.07M143.88 54.76h.29c-.855 0-.373-.05 1.163.87v.873M142.14 61.735h-.29c.91 0 .35-.076-.873 1.453-.46.92-1.003 1.666-1.453 2.616-.533.987-.737 1.488-.872 2.617M137.2 62.317c-.168 0-.508.908-1.162 1.453-.26 1.19-.563 1.956-.582 3.488 0 1.885.35 2.204 1.163 3.49.68.786 1.054 1.505 1.162 2.905v8.14c-.2 1.335-.573 1.987-1.454 2.615-1.115.727-1.256.185-2.034-.872-.272-.897-.653-1.315-.872-2.325M144.76 61.735v.29c0-.784.02-.385-.29 1.163-.53 1.31-1.3 2.583-1.745 3.488-.405 1.014-.58 1.907-.58 3.49.243 1.363.528 2.61.58 4.068 0 1.595-.395 2.53-.58 3.78-.57 1.08-1.07 2.44-1.745 3.196-.155.465-.136.117-.29.582M148.24 58.538v.29c0-.812.036-.38-.58 1.163-.104 1.448-.42 2.575-.583 3.78-.384.898-1.056 2.596-1.453 3.488-.6.978-.872 1.447-.872 3.198.6 1.03 1.523 1.944 2.616 2.325.447.945.64 2.002 1.163 3.2.103 1.43.416 2.668.582 4.068v1.163M151.44 60.863l-.29.29c.64-.64.316-.424 0 1.163 0 1.483-.193 2.683-.292 4.07-.518 1.037-.995 2.247-1.162 3.488.252 1.38.907 1.687 2.034 2.325.676.644 1.656 1.2 2.616 1.743 1.086.634 1.83 1.35 2.617 2.326.866 1.073 1.41 1.31 2.034 2.615.167 1.235.555 2.402.29 3.488 0 .388.098.29-.29.29M153.48 54.178h.29c-.91 0-.35-.074.873 1.453.315 1.26.29 2.65.29 4.07.557.82.774 1.908.873 3.198.306.92.29 2.44.29 3.78-.097 1.133-.46 1.834 0 2.906 1.263.764 2.14 1.608 2.907 2.325 1.07.534 1.492 1 2.326 2.034.528.934 1.14 1.92 1.743 2.616.232 1.3.29 2.624.29 4.07 0 1.707.053 2.545-.872 3.488-.44 0-.926.078-.29.29M149.41 42.26v1.453c.205 1.38.858 2.296 1.744 3.198.543.8 1.236 1.492 2.035 2.036 1.12.38 1.53.58 2.905.58M152.9 50.98h.29c-.784 0-.387-.02 1.163.29.983.492 1.475 1.166 2.326 1.745.245.903.597 2.365 1.162 3.197.207 1.162.38 2.25.872 2.907M127.9 44.295v1.453c.835.725 1.55.872 3.197.872 1.3.1 2.235.29 3.78.29h4.07c1.552 0 1.868.024 2.324-1.452.597-.81-.193-1.09-.58-1.744l.58 1.744c.597-.81-.193-1.09-.58-1.744M166.56 84.7h.29c-.91 0-.366-.06 1.163 1.162.18.87.548 1.327.872 2.034" transform="matrix(1.4523 0 0 1.399 292.484 115.164)" stroke="#2b2b2b" stroke-width="1pt" fill="none"/> + <path d="M83.424 73.072h-.29c.855 0 .373-.05-1.163.872-.855.6-1.434 1.48-1.743 2.616-1.015.676-.442 1.125.87 1.163 1.74-.02 2.196-.195 3.2-1.163.704-.528 1.15-1.377.58-2.325l-.58 2.325c.704-.53 1.15-1.378-.873-3.488z" fill-rule="evenodd" transform="matrix(1.4523 0 0 1.399 292.484 115.164)" stroke="#000" stroke-width="1pt"/> + <path d="M171.21 85.57v.292c0-.785-.02-.386.29 1.162.155.36.263.66.582.872M174.12 85.28v1.453c.51.69.963 1.508 1.454 2.035M177.02 86.152v.29c0-.855-.05-.373.872 1.163.123.37.213.46.582.582M86.912 84.99v1.453c-.217 1.084-.898 1.828-1.453 2.326l1.452-2.327c-.217 1.084-.898 1.828-1.453 2.326M90.11 85.862v1.453c-.418.597-.657.947-1.163 1.163M92.726 85.28v1.453c-.07.713-.389 1.1-.58 1.744M96.505 84.7h.29c-.077.192 0 1.296 0 2.034-.314.583-.775.69-1.162 1.162" transform="matrix(1.4523 0 0 1.399 292.484 115.164)" stroke="#2b2b2b" stroke-width="1pt" fill="none"/> + <path d="M461.77 151.51h-.422c.147.38.59 2.276.844 2.846 1.167.803 1.78 2.074 2.533 3.252 1.05-1.168 1.266-2.167 1.266-4.472-.56-1.562-2.263-1.405-4.22-1.627zM511.163 153.136c-.123 0-1.234.75-2.533 1.22-.313 2.23-.174 2.472.844 4.066 2.016-.15 2.06-.586 2.533-2.44.933-1.198.278-.925-.844-2.846z" fill-rule="evenodd" fill="#2b2b2b"/> + <path d="M144.18 31.505h-1.163c-1.55-.277-2.404-.367-3.488.58-.335 1.25-.516 2.258.29 2.908.99.242 1.575.646 2.616.872.56-.91 1.018-1.574 1.744-2.616.67-.225.192-.722 0-1.745v1.744c.67-.225.192-.722 0-1.745M129.35 31.505l-.29-.29c.66.66.42.34-1.163-.29-1.34 0-2.86-.017-3.78.29-.364.73.442 1.277 1.164 1.743.8.544 1.492 1.236 2.035 2.035.808.594.984 1.426 2.035 1.744.47-.992.877-1.712 1.163-3.197-.183-.548-.664-1.148-1.163-2.035z" transform="matrix(1.4523 0 0 1.399 292.484 115.164)" stroke="#2b2b2b" stroke-width="1pt" fill="none"/> + <path d="M78.192 71.618c-.336 0-2.424-.02-3.197.29-.803 1.25-.635 1.936.29 2.617.243 1.61.778 1.678 2.616 1.744.773.578 1.507.37 1.745-.583.498-.828.257-1.737-.29-2.325 0-.91.06-.215-1.163-1.744zM72.088 77.14h-.29c.812 0 .326-.088-.29 1.454 0 .9-.076 1.84.29 2.326 1.043 0 2.29.08 2.906-.29.48-1.28.553-2.24-.58-2.617-.386-.576-.99-.568-2.036-.872zM83.134 80.63H81.68c-.613.53-1.365 1.17-1.744 2.034 1.217.332 1.576.994 2.326 1.744 1.896-.023 2.163-.113 2.325-2.035 0-1.135.043-.447-1.453-1.744zM182.25 82.083h-1.453c-1.363.44-1.622.91-1.744 2.616.853.514 1.938 1.113 3.197 1.452.91.533 2.122.747 3.49.29.565-.92 1.03-1.168 1.16-2.615-.995-.303-2.544-.9-3.196-1.453l3.197 1.453c-.995-.303-2.544-.9-4.65-1.744zM185.16 75.107h-.29c.91 0 .35-.076-.873 1.453-.308 1.42-.06 1.957.582 3.198 1.286.634 1.415 1.61 2.615 2.035.558.558.29-.752.29-1.454.248-1.54.754-1.95.873-3.49-.267-1.088-.616-1.683-1.744-2.034l1.744 2.035c-.267-1.088-.616-1.683-3.198-1.743zM191.85 75.98h-.29c.91 0 .35-.077-.873 1.452-.562.927-.58 2.33-.58 3.78.48 1.295 1.186.495 1.743-.29.985-.672 1.39-.942 1.453-2.618 0-1.372.016-.758-1.453-2.325zM195.92 80.048h-.29c.784 0 .387-.02-1.163.29-.965 1.106-1.697 1.676-2.035 3.198 1.363.296 2.25.092 3.78-.29.623-1.363.69-1.098-.292-3.198z" fill-rule="evenodd" transform="matrix(1.4523 0 0 1.399 292.484 115.164)" stroke="#000" stroke-width="1pt"/> + <path d="M477.714 160.033h-.988c-.387.492-.17 1.018.2 1.5.202.645.118.892.788 1.126.478.542 1.135.817 1.974.937 1.36-.117.84-.448.59-1.313-.458-.503-.444-1.032-1.184-1.313-.213-.305-.833-.585-1.38-.937zM498.348 160.14c-.166.038-1.08.456-1.477.69-.677.878-.926 1.16-.634 2.072.7.305 1.49.555 2.535.69 1.035-.217 1-.76 1.058-1.842-.224-.57-.75-.92-1.48-1.61zM475.53 182.397v2.329c.533 2.255.592 3.02 3.276 3.263h19.652c2.058-.193 1.87-.653 1.87-2.797.31-.478-.235-1.97-.935-2.796-1.85.654-2.307 2.35-4.68 2.796-2.695 0-3.962.03-5.146-1.398-1.345-.867-1.48-2.585-2.807-.933-1.51.91-2.92 1.398-5.615 1.398-2.86 0-2.9-.314-5.615-1.863z" fill-rule="evenodd"/> + <path d="M42.73-676.01h.29c-.91 0-.367-.062 1.163 1.163.123.696.29.847.29 1.744" transform="matrix(1.6097 0 0 1.6034 413.02 1254.833)" stroke="#2b2b2b" stroke-width="1.109" fill="none"/> + <path d="M481.103 174.016h-1.215c.352.447.616 2.798 1.215 3.713 6.072 0 3.23-.52 0-3.714zM490.216 175.102h-.293c.82 0 .383-.045-1.174.722-.563.977-1.39 1.45-.294 2.53 1.217.084 1.83.36 3.227.36v-2.53 2.53c0-.843 0-1.686-1.467-3.612z" fill-rule="evenodd"/> + <path d="M48.834-675.72h-.29c.784 0 .387-.02-1.163.29-.303.514-.736 1.05-1.162 1.454" transform="matrix(1.6097 0 0 1.6034 412.88 1254.833)" stroke="#2b2b2b" stroke-width="1.109" fill="none"/> + <g stroke="#2b2b2b" stroke-width="1pt"> + <path d="M81.97 123.07c-.637 0-3.022.044-4.36-.29-1.634.06-1.955.533-3.197.872-1.428-.053-2.198-.29-3.778-.29-1.137-.614-1.932-1.106-3.49-1.164-1.158-.156-2.296-.29-3.777-.29-1.695.02-2.308.525-3.49 1.162-.54.796-1.234 1.542-2.033 2.326-.64.94-1.2 1.342-2.326 2.325-.618.908-1.26 1.362-1.745 2.908 0 1.34-.016 2.86.29 3.78.19 1.408.537 2.116.582 3.777 0 1.527-.1 2.77-.58 4.07-.322 1.443-.874 2.345-1.454 3.78-.305.914-.49 2.51-.582 3.778.215 1.214.8 2.39 1.164 3.778.35 1.407.636 2.618 1.163 3.49.338 1.12.843 1.016.872 2.615 0 1.578.27 2.254.29 3.78.433.867.64 2.288.87 3.487.693.84.866 1.73 2.036 2.326.25-1.4.48-2.477.58-3.78.17-.94.22-2.594.583-3.196.316 1.163.844 1.743 1.162 2.906.555.673 1.034 1.98 1.453 2.907.597.163.58-.055.58-1.163.343-1.026.536-2.213.873-3.488v-1.162c.72.828 1.21 1.966 1.744 2.906.547.804 1.107 1.63 2.035 2.326 1.398.33 1.163.002 1.163-1.454v-4.07c.06 1.636.533 1.957.872 3.198.682.682 1.005 1.27 2.325 1.454.575-.933 1.174-1.425 1.744-2.616 0-1.603.127-2.526.583-3.488.865-1.074 1.252-1.46 2.325-2.326 1.133-1.01 2.21-2.012 3.488-2.616.715-1.03 1.562-1.705 2.616-2.616 1.182-1.095 2.178-2.384 2.907-3.78.846-.846 1.62-2.282 2.034-3.778.774-1.214 1.026-2.623 1.163-4.36.62-1.418 1.156-2.802 1.453-4.36 0-1.563-.125-2.846-.29-4.07-.72-1.21-1.198-2.683-1.745-3.488-.343-1.076-1.164-2.38-1.453-3.488-.746-1.395-.672-1.87-2.616-2.034-.914 0-.784-.113-2.035-.582z" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.3937 0 0 1.436 301.245 111.57)" fill="#d40f0f"/> + <path d="M55.52 129.46v.29c0-.784-.02-.385.29 1.163.156 1.16.29 2.298.29 3.78 0 1.48.134 2.618.29 3.778.146 1.207.404 1.858 1.454 2.617M58.426 136.44c.205 0 .313.895.872 1.454.294 1.078.82 2.19 1.453 3.488.288 1.485.694 2.205 1.164 3.197.273.68.377 1.566.872 2.034v-8.14c-.266-1.487-.57-2.418-.872-3.778v-1.744M63.95 137.31c.053.6.447 2.522.87 3.49.39 1.017.853 2.21 1.454 2.905.123.696.417 1.044.872 1.744 1.004-.81 1.76-1.456 2.035-2.907.44-1.027.773-2.192.873-3.49.104-1.445.42-2.572.582-3.777 0-1.524-.002-2.636-.582-3.488l.582 3.488c0-1.524-.002-2.636-.582-3.488M71.506 139.35v.29c0-.784-.02-.385.29 1.164.21.962.29 2.156.29 3.488-.314.21-.433.82-.58 1.162M74.123 134.99v1.453c0 1.27.12 2.957-.29 3.78 0 1.48-.135 2.618-.29 3.778.382 1.92.705-.11.87-.87.35-.917.717-2.435 1.163-3.2.18-1.516.527-2.298.582-3.777.294-1.178.29-2.443.29-3.78M78.192 128.88c.1 0 .88.73 1.744 1.163.202 1.34.685 1.81.872 3.197v1.453M77.9 126.85c.374.156 1.73 1.1 2.326 1.453.798.08 1.08.116 1.163.872M77.61 125.1h1.454c.697.077.635.29 1.454.29" transform="matrix(1.3937 0 0 1.436 301.245 111.57)" fill="none"/> + </g> + <g fill-opacity=".996" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1pt" fill="#d30f0f"> + <path d="M186.32 126.27h-1.454c-1.3.238-1.723.858-2.325 1.744l2.326-1.744c-1.3.238-1.723.858-2.325 1.744M186.9 124.52l-.29-.29c.64.64.424.316-1.163 0-.972-.202-1.063-.202-2.035 0" transform="matrix(1.3937 0 0 1.436 301.007 112.554)"/> + <path d="M184.29 122.49h1.454c1.76.14 3.182.56 4.94.58 1.467 0 2.73-.13 4.07-.29.823-.41 2.51-.29 3.78-.29 1.654 0 2.412.177 3.778.58.994.26 2.576.773 3.488 1.164.958.453 1.866.78 2.907 1.453 1.113.755 1.392 1.24 1.453 2.907-.155 1.15-.344 2.453-.58 3.78.1 1.432.414 2.668.58 4.068.315 1.26.29 2.648.29 4.07-.222 1.077-.693.997-1.162 2.035.82.54 1.822 1.584 2.326 2.325.243 1.364.53 2.61.58 4.07 0 1.63-.037 2.53-.58 3.778-.38 1.406-.832 2-1.163 3.488-.248 1.145-.728 2.315-1.162 3.198-.48.707-.812 2.278-1.162 3.197-.182 1.384-.627 2.7-1.163 3.488-.296 1.086-.443 1.9-1.453 2.327-.865-.216-.582-.776-.582-1.744.207-1.16.326-2.016 0-2.907-.95-.224-1.015.454-1.453 1.744-.617.663-.654 1.518-1.454 2.035-.99 1.2-1.34.777-2.033-.872 0-1.545-.19-2.48-.29-3.78-.157-1.875-.338 1.048-.582 1.454-.33 1.48-.835 1.993-1.163 3.198-1.195.437-1.654.426-1.744-1.163.232-1.3.29-2.623.29-4.07-.73-.84-.782-.178-1.162.582-.064 1.72-.497 1.928-1.163 2.907-.97.575-.747.583-1.163-.87-.462-1.103-.803-1.52-1.744-2.036-.835-.724-1.55-.872-3.197-.872-1.52-.056-2.26-.552-3.49-.872-1.16-.332-2.287-.587-2.906-1.163-.552-.812-1.348-1.857-2.035-3.197-.75-1.368-1.106-2.227-1.163-3.78-.25-1.395-.414-2.934-.582-4.36-.33-1.976-.816-4.128-1.162-6.103-.5-1.557-.988-2.93-1.163-4.65-.578-1.278-.896-2.667-1.163-4.07 0-1.34-.016-2.86.29-3.78.555-1.074 1.19-1.8 1.745-2.616.818-1.013 1.358-1.753 2.616-2.615.65-.775 1.93-1.303 2.907-1.744.657-.28 1.104-.365 2.325-.58z" transform="matrix(1.3937 0 0 1.436 301.007 112.554)"/> + <path d="M187.2 129.46v.29c0-.855.083-.34-1.453.582-.794.756-1.504 1.015-2.326 2.035-.185.435-.556.79 0 1.163M186.9 132.66v.29c0-.784-.02-.386.29 1.163.052 1.377.292 2 .292 3.488-.535.892-.22 2.138.29 3.2.456 1.268 1.035 2.15 1.454 3.196.62.207.29-.223.29-1.163-.376-1.13-.224-2.592 0-4.07v-3.487M194.75 132.08h-.29c.812 0 .326-.09-.29 1.454v4.07c-.307.92-.292 2.438-.292 3.778-.31 1.425-.515 1.846 1.163 2.325.44.677 1.017 1.068 1.455 1.744.552-1.362 1.137-2.595 1.453-4.068.465-.84.654-2.56.872-3.78.48-.58 1.085-1.655 1.453-2.324M202.31 132.37v.29c0-.784-.02-.385.29 1.163.023 1.27.29 2.194.29 3.488-.57.844-.652 2.03-1.16 3.2-.51 1.378-.854 2.445-.873 4.068 0 .976-.26 2.032.58 1.454.6-1.287 1.108-2.683 1.454-4.07.64-1.262.994-2.224 1.455-3.197.152-1.278.18-2.867.58-4.07l-.58 4.07c.152-1.278.18-2.867.58-4.07M209.29 130.34l-.29.29c.573-.572.324-.423 0 .873 0 1.336.15 3.187-.29 4.07-.207 1.73-.457 2.274-1.454 3.487-.202.505-.58 1.26-.872 1.454M192.72 140.22v.29c0-.784.02-.385-.29 1.164-.556.64-1.385 1.872-1.745 2.906-.24.08-.79.29-.29.29M191.85 143.42h.29c-.812 0-.327-.09.29 1.453.234.932.64.812.873 1.744" transform="matrix(1.3937 0 0 1.436 301.007 112.554)"/> + </g> + <path d="M77.32 201.26c-.275 0-.166.743-.29 1.744v4.07c.188 1.44.683 2.802 1.453 3.488.463.463 1.443 1.204 2.034 1.744 0-1.544.19-2.48.29-3.78.488-.83.638-2.132 1.164-2.906.13-1.667.73-1.68 1.164-3.197.497-.723-.534-.786-1.454-.872-1.085-.254-2.104-.616-2.907-1.162l2.907 1.163c-1.085-.254-2.104-.616-4.36-.29zM92.435 200.68h-.29c.855 0 .34-.084-.582 1.453 0 1.41.067 2.75.29 3.78.6.725.813 1.918 1.163 2.906.52.32.844-.468 1.163-1.164.588-1.454 1.25-2.135 1.452-3.488.32-1.17.868-1.652 1.163-2.907-.617-1.29-.944-1.848-2.616-2.033-.73.73-.18.202-1.745 1.453zM168.59 200.39h.29c-.157.42-.29 1.73-.29 2.616-.217 1.216-.45 2.29 0 3.49.834.366 1.373.643 1.744 1.452.68.572.83.87.872-.58.63-1.39.928-1.737 1.744-2.908.577-.987.8-1.656.58-3.198-.75-1.522-1.175-1.7-2.906-2.034-1.823 0-1.797 1.36-2.325 2.616M182.84 202.13h-.29c.232.608.58 1.864.58 2.907.232 1.3.29 2.624.29 4.07-.172 1.155-.464 1.162.873 1.162.544-1.296.973-2.27 1.744-2.907.372-1.222.815-1.956.872-3.49 0-1.2.09-2.726-.29-3.487-2.11 0-2.042.29-3.78 1.744zM195.63 195.74h-.29c.81 0 .38-.035-1.164.582-.72.943-1.826 1.415-1.453 2.907 1.453.49 2.267.847 2.907 1.743.925.508 1.596.89 2.034 1.744.53.353.84.906 1.163 1.453-.174-1.463-.48-2.444-.58-3.78-.02-1.645-.31-2.234-.873-3.196-.118-1.055-.425-.815-1.744-1.454zM197.66 189.92h-.29c.855 0 .373-.05-1.163.872-.65 1.176-.667 2.17-.29 3.197 1.423.21 1.994.83 2.615 1.743.867.867 1.468 1.452 2.326 2.035-.622-1.06-1.178-2.025-1.454-3.197-.048-1.292-.26-2.232-.58-3.197l.58 3.198c-.048-1.292-.26-2.232-1.744-4.65zM69.472 195.74c-.098 0-.93.537-1.453 1.163-1.415.78-2.176 1.23-2.327 2.907-.05 1.377-.29 2-.29 3.488.41.412.074 1.67.58 1.163.887-.974 1.343-1.86 2.326-2.615.658-.628 1.88-1.288 2.906-1.744 1.626-.472 1.5-.312.58-1.743-.516-.876-1.198-1.35-2.324-2.617zM67.437 190.22h-.29c.855 0 .373-.05-1.163.872-.728.91-1.626 1.173-2.035 2.325-.678.82-.855 1.654-.873 3.197.027.94.18 1.826.58 2.326.39-1.094.862-1.74 2.036-2.326.722-.467.92-1.093 1.744-1.453.6-.255 1.26-.1 1.453-.87-.19-1.783-.728-2.305-1.453-4.07z" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.3937 0 0 1.436 301.007 110.048)" stroke="#000" stroke-width="1pt" fill="#000f0f"/> + <path d="M89.82 181.2v.29c0-.855.05-.374-.873 1.163-1.014.405-1.907.58-3.488.58-.882.662-1.458.458-2.036 1.745-.78.817-1.136 1.27-2.325 1.745-1.342 0-2.86.015-3.78-.29-.976-.528-2.37-.92-3.488-1.164-1.578.018-2.367.39-3.488.87-1.2.284-1.955.654-2.617 1.455-.78.312-.78.78-.872 1.744.415.69.037 1.068.872 1.16.465.57.582.59.582 1.745.31 1.25.268 2.82.58 4.07.67 1.595 1.176 1.722 2.326 2.616.997.473 1.71.93 2.906 1.454 1.07.55 2.358.627 3.488.872.93 1.097 1.525 1.532 2.907 2.035 1.426-.214 1.65-.82 2.907-1.162.49-.49 1.255-.09 1.744-.872.427-.823.616-2.682 1.163-3.488.64-1.294 1.513-1.95 2.908-2.325.765-.574 1.65-.645 2.616-.29-.064 1.725-.616 1.796-.872 3.197-.5.922-.818 1.737-.29 2.616 1.214.405 2.678.29 4.07.29 1.875-.316 2.01-.745 2.033-2.616-.277-1.177-.697-1.9-.872-3.197 0-.898-.074-1.84.29-2.326.608.223 2.01.36 2.617.582.497.993.92 1.25 2.035.87.353-.55.893-.952 1.163-1.453.294.8.865 1.516 1.453 1.163.614-1.28 1.04-1.684 2.326-2.035 1.23-.267 2.04-.63 2.907-1.162.88-.542 1.427-1.245 2.326-1.744.615-.963 1.24-1.602 1.452-3.2 0-1.71-.346-2.84-.58-4.36-.65-1.016-.968-2.113-2.036-2.906-.847-.508-2.038-.124-3.198 0-1.3-.1-2.234-.29-3.778-.29-1.49 0-2.64.24-4.07.29h-4.07c-1.686 0-2.57.236-3.778.872-.856 0-.24-.083-1.163 1.454zM157.55 191.67c.5.125 1.824.77 2.907.872 1.127.06.872.365.872 1.453.416.24.82.91 1.452 1.163.232-.43.702-1.1 1.163-1.453.27.627.575 1.305 1.453 1.744.737-1.4.674-1.722 2.616-1.745 1.222 1.16.858 2.235 0 3.197-.428 1.24-.61 2.314-.872 3.78.57.704 1.325.58 2.616.58.872-.522 2.01-.274 2.616.29 1.745-.086 1.68-.316 1.744-2.034v-4.07c.643-.642 1.335-.815 2.035-.29.726.6 1.075 1.992 1.744 2.907.1 1.278.257 2.453.872 3.197.655 1.37.87 1.68 2.615 1.744 1.522-.018 2.365-.228 3.78-.58 1.3-.24 1.723-.86 2.325-1.745 1.44-.386 1.842-.81 3.488-.87 1.497-.334 1.958-.87 2.906-1.454.626-.723.904-1.807 1.454-2.617.435-1.087.963-1.586 1.163-2.907.12-1.548.747-1.91 1.163-3.198.258-1.03-.256-1.678-1.162-2.325-.745-.647-1.833-.805-2.906-1.163h-8.14c-1.482 0-2.682-.19-4.07-.29-1.17-.677-1.723-1.125-2.615-2.035-1.262-.188-2.46-.898-3.49-1.454-.82-1.018-1.63-1.195-2.324-2.034-1.183-.502-1.79-1.153-3.198-1.744-1.2-.64-1.873-.97-3.488-1.163-1.387-.1-2.587-.29-4.07-.29-1.674 0-2.582.49-3.778.87-1.01 1.067-1.767 1.155-2.035 2.617-.41.823-.29 2.508-.29 3.78.29 1.362.873 2.668 1.162 3.778.114 1.224.29 1.87.29 3.488z" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.3937 0 0 1.436 301.007 110.048)" stroke="#2b2b2b" stroke-width="1pt" fill="#d40f0f"/> + <path d="M82.843 189.92c-.633-.093-2.847-.29-4.36-.29-1.166.253-2.077.528-3.488.58-1.07.252-2.182.565-2.907 1.163-.976.092-1.28.403-2.325.582M83.134 192.54h-.29c.855 0 .373-.05-1.163.872-1.153 1.008-1.957 1.514-2.616 2.907-.788.656-1.01 1.24-2.034 1.452-.608.646-1.217 1.217-1.744 1.744M181.09 193.41h.29c-.812 0-.38-.036 1.163.58 1.216 1.063 1.267 1.596 2.907 1.745 1.532.558 1.696.89 2.325 2.326.212.494.29.916.29 1.745M181.67 189.63c.468.18 2.12 1.062 3.197 1.163 1.16.157 2.298.29 3.78.29 1.368.186 2.075.62 3.487 1.163h2.326" transform="matrix(1.3937 0 0 1.436 301.007 110.048)" stroke="#2b2b2b" stroke-width="1pt" fill="none"/> + <g> + <path d="M480.254 243.06c-.214 4.673-1.547 7.426-6.033 7.426-3.015 0-6.087-2.19-6.03-4.95.056-2.76 3.84-2.928 6.444-2.7.924-2.25-3.43-4.724-15.493-4.724-11.944-.13-21.224 10.236-36.9 9.9-15.676-.337-22.634-15.93-19.653-19.8-1.168 3.445-3.8 5.585-4.968 9.03-1.17 3.445 4.183 8.244 3.015 11.69-1.168 3.443-8.856 5.535-10.024 8.98s-.87 8.195-2.04 11.64c0-2.475 5.347-8.344 12.5-8.344 6.03 0 25.953-3.776 27.144 37.125 0 32.203-23.93 33.474-31.582 31.19-.018 3.88 2.654 15.95 14.884 28.3 13.133 12.375 28.303 14.103 31.28 13.93-1.4-3.444-7.152-7.424-1.717-7.47 3.613.046 4.758 6.434 4.758 6.434s5.88-3.665 7.838-1.838c1.89 2.874-5.967 5.35-5.967 5.35s3.988 7.79 9.047 12.374c6.033 6.54 14.768 8.716 18.097 8.804 1.618.043 4.745 1.09 4.633 3.572-.224 4.942-.217 7.33-3.136 7.424h21.702c-2.92-.095-2.912-2.482-3.136-7.424-.112-2.483 3.016-3.53 4.633-3.572 3.328-.088 12.064-2.263 18.096-8.804 5.06-4.584 9.05-12.375 9.05-12.375s-7.86-2.476-5.97-5.35c1.96-1.828 7.84 1.837 7.84 1.837s1.145-6.388 4.758-6.433c5.435.045-.317 4.025-1.717 7.47 2.978.172 18.148-1.556 31.283-13.93 12.228-12.35 14.9-24.42 14.882-28.302-7.652 2.285-31.583 1.014-31.583-31.19 1.19-40.9 21.112-37.124 27.144-37.124 7.152 0 12.5 5.87 12.5 8.344 0 .617.69-3.515-.625-7.275-1.316-3.76-7.885-6.47-9.637-11.79-1.752-5.322 1.314-13.257 0-17.326-1.315-4.067-3.756-4.95-3.756-4.95 2.98 3.87-3.978 19.464-19.655 19.8-15.676.337-24.956-10.028-36.9-9.9-12.065 0-16.417 2.476-15.494 4.724 2.603-.227 6.39-.058 6.446 2.702.056 2.76-3.017 4.95-6.033 4.95-4.484 0-5.817-2.754-6.03-7.425h-13.893z" fill-rule="evenodd" fill="#0068bd"/> + <g stroke="#000"> + <path d="M215.15 278.72c0 230.52-140.57 239.62-185.51 223.26-.11 27.793 15.59 114.18 87.422 202.59 77.143 88.58 166.25 100.95 183.74 99.72-8.22-24.66-42.01-53.15-10.087-53.47 21.226.32 27.953 46.05 27.953 46.05s34.536-26.24 46.04-13.16c11.11 20.58-35.05 38.3-35.05 38.3s23.432 55.77 53.15 88.58c35.434 46.82 86.746 62.39 106.3 63.02 9.5.31 27.872 7.8 27.21 25.57-1.314 35.376-1.272 52.466-18.418 53.146h127.47c-17.146-.68-17.104-17.77-18.42-53.146-.66-17.77 17.71-25.26 27.212-25.57 19.554-.63 70.866-16.2 106.3-63.02 29.718-32.81 53.15-88.58 53.15-88.58s-46.16-17.72-35.05-38.3c11.504-13.08 46.04 13.16 46.04 13.16s6.727-45.73 27.953-46.05c31.923.32-1.866 28.81-10.087 53.47 17.494 1.23 106.6-11.14 183.75-99.72 71.83-88.41 87.53-174.8 87.42-202.59-44.95 16.356-176.21 16.558-176.21-213.96-2.107-9.15-2.776-27.288-4.275-35.824-1.5-8.535-35.472 26.766-38.855 26.587-11.423-.36-46.732-32.686-71.856-37.07-11.852-1.894-50.628 33.304-60.175 33.993-12.495.726-28.51-35.973-55.13-32.205-19.595 3.104-35.643 36.54-40.445 31.76-12.35-12.3-25.95-20.023-41.7-22.943-23.548-2.04-36.935 16.41-49.59 31.592-.443-12.396-17.165-24.792-36.213-23.235-13.7-139.99-122.91-282.93-131.79-287.41-6.594-2.637-4.08 13.602-6.118 20.403-16.62-4.56-33.238-9.123-49.858-13.684-3.18 8.084-1.712 16.17-9.545 24.254-19.862-14.947-30.422-43.847-45.632-44.842-5.423 17.81-1.544 54.223-2.316 81.335l-37.724-25.094-3.03 26.54c-1.215 10.632-51.205-28.6-61.017-28.855-9.81-.254-21.478 27.454-30.294 27.305-8.817-.15 56.995 42.98 73.293 238.09z" fill-rule="evenodd" stroke-width="1.25" fill="#e8e1cb" transform="matrix(.1702 0 0 .1397 391.585 259.396)"/> + <path d="M199.99 175.68s23.255-32.556 51.16-27.905c27.905 4.65 58.135 106.97 58.135 106.97M279.05 40.803c0 4.65 18.603 79.065 34.88 102.32 16.28 23.254 53.486 41.857 72.09 69.762 18.603 27.906 27.904 104.64 27.904 104.64M320.91 5.922s6.977 37.207 18.604 65.112 39.532 37.206 53.484 60.46c13.953 23.255 23.255 69.763 23.255 69.763M211.61 336.13s32.555-4.65 60.46 32.556c27.906 37.207 32.556 86.04 32.556 86.04M813.9 284.97s20.93-2.326 34.88 13.952c13.954 16.278 11.628 27.905 9.303 27.905M811.57 308.23s18.603 0 25.58 4.65c6.976 4.652 9.3 27.906 9.3 27.906" stroke-width="1pt" fill="none" transform="matrix(.1702 0 0 .1397 391.585 259.396)"/> + <path d="M799.95 331.48c2.325 0 16.278-13.952 25.58-9.302 9.3 4.65 11.626 30.23 11.626 30.23M788.32 343.11s16.278-2.325 25.58 4.65 6.976 18.604 6.976 18.604M741.81 343.11c2.325 0 30.23 9.302 41.858 20.93 11.627 11.626 9.3 37.206 9.3 37.206M874.36 357.06s6.976-4.65 23.254 9.3c16.278 13.954 18.604 30.232 18.604 30.232M872.03 382.64s18.603 2.326 27.905 9.302c9.3 6.976 23.254 23.254 23.254 23.254M865.06 412.87s23.255-9.302 32.556-4.65c9.302 4.65 25.58 18.602 25.58 18.602" stroke-width="1pt" fill="none" transform="matrix(.1702 0 0 .1397 391.585 259.396)"/> + </g> + <g stroke-width="1pt"> + <path d="M-301.18-134.65v442.91h17.716v-442.91l-8.858-35.433-8.858 35.433z" fill-rule="evenodd" transform="matrix(.0928 -.0335 .0396 .074 487.065 299.89)" stroke="#000" fill="#b03f00"/> + <path d="M-301.18-134.65v407.48h17.716v-407.48l-8.858-35.433-8.858 35.433z" fill-rule="evenodd" transform="matrix(.0928 -.0335 .0396 .074 513.357 290.397)" stroke="#000" fill="#b03f00"/> + <g stroke="#000" fill="none"> + <path d="M-283.46-99.213l17.717 336.61" transform="matrix(.0928 -.0335 .0472 .088 514.106 291.794)"/> + <path d="M-318.9-99.212l53.15 336.61" transform="matrix(.0928 -.0335 .0472 .088 517.393 290.607)"/> + <path d="M-354.33-99.212l88.584 336.61" transform="matrix(.0928 -.0335 .0472 .088 520.68 289.42)"/> + <path d="M-389.76-99.212l124.01 336.61" transform="matrix(.0928 -.0335 .0472 .088 523.966 288.234)"/> + <path d="M-283.46-99.213l17.717 336.61" transform="matrix(-.0928 .0335 .0472 .088 459.878 311.373)"/> + <path d="M-318.9-99.212l53.15 336.61" transform="matrix(-.0928 .0335 .0472 .088 456.59 312.56)"/> + <path d="M-354.33-99.212l88.584 336.61" transform="matrix(-.0928 .0335 .0472 .088 453.305 313.747)"/> + <path d="M-389.76-99.212l124.01 336.61" transform="matrix(-.0928 .0335 .0472 .088 450.018 314.933)"/> + <path d="M-407.48-99.212l177.16 354.33" transform="matrix(-.0928 .0335 .0472 .088 448.375 315.527)"/> + <path d="M-407.48-99.212l177.16 354.33" transform="matrix(.0928 -.0335 .0472 .088 525.61 287.64)"/> + <path d="M-407.48 184.25h301.18M-124.02 148.82h-265.75M-372.05 113.39h230.32M-159.45 77.953h-194.88M-336.61 42.52c0 .58 159.45 0 159.45 0M-194.88 7.087H-318.9M-301.18-28.346c.58 0 89.343.034 88.583 0M-283.46-63.78h53.15" transform="matrix(.0928 -.0335 .0472 .088 510.82 292.98)"/> + <path d="M-283.46-99.213l17.717 336.61" transform="matrix(.0928 -.0335 .0472 .088 488.65 302.846)"/> + <path d="M-318.9-99.212l53.15 336.61" transform="matrix(.0928 -.0335 .0472 .088 491.936 301.66)"/> + <path d="M-354.33-99.212l88.584 336.61" transform="matrix(.0928 -.0335 .0472 .088 495.223 300.473)"/> + <path d="M-389.76-99.212l124.01 336.61" transform="matrix(.0928 -.0335 .0472 .088 498.51 299.286)"/> + <path d="M-283.46-99.213l17.717 336.61" transform="matrix(-.0928 .0335 .0472 .088 434.42 322.426)"/> + <path d="M-318.9-99.212l53.15 336.61" transform="matrix(-.0928 .0335 .0472 .088 431.135 323.612)"/> + <path d="M-354.33-99.212l88.584 336.61" transform="matrix(-.0928 .0335 .0472 .088 427.85 324.8)"/> + <path d="M-389.76-99.212l124.01 336.61" transform="matrix(-.0928 .0335 .0472 .088 424.56 325.986)"/> + <path d="M-407.48-99.212l177.16 354.33" transform="matrix(-.0928 .0335 .0472 .088 422.92 326.58)"/> + <path d="M-407.48-99.212l177.16 354.33" transform="matrix(.0928 -.0335 .0472 .088 500.152 298.693)"/> + <path d="M-407.48 184.25h301.18M-124.02 148.82h-265.75M-372.05 113.39h230.32M-159.45 77.953h-194.88M-336.61 42.52c0 .58 159.45 0 159.45 0M-194.88 7.087H-318.9M-301.18-28.346c.58 0 89.343.034 88.583 0M-283.46-63.78h53.15" transform="matrix(.0928 -.0335 .0472 .088 485.364 304.033)"/> + </g> + <g fill-rule="evenodd" stroke="#000" fill="#b03f00"> + <path d="M-407.48 237.4h372.05v53.15l17.717 17.716H-35.43V343.7h17.717l-17.717 17.715 53.15 70.866-106.3 212.6h-566.93V361.42h88.583v-70.865h53.15l106.3-53.15zM-566.93 361.42h531.5" transform="matrix(.0928 -.0335 .0396 .074 510.07 291.583)"/> + <path d="M-566.93 361.42h531.5" transform="matrix(.0928 -.0335 .0396 .074 509.368 290.273)"/> + <path d="M-566.93 361.42h531.5" transform="matrix(.0928 -.0335 .0396 .074 507.963 287.653)"/> + <path d="M-566.93 361.42h531.5" transform="matrix(.0835 -.03 .0396 .074 506.932 286.462)"/> + <path d="M-35.433 361.42l-141.73 283.46M-407.48 272.84h230.32M-442.91 255.12c34.35 1.54 407.48 0 407.48 0M-53.15 255.12l-17.716 35.433M-70.866 308.27l-17.717 35.433M-230.32 308.27l-17.716 35.433M-212.6 308.27l-17.717 35.433M-53.15 396.85h-88.582l17.716-35.433" transform="matrix(.0928 -.0335 .0396 .074 510.07 291.583)"/> + <path d="M-70.866 432.28h-88.583l18.762-36.853-1.044 1.42M-88.583 467.72h-88.582l17.716-35.434" transform="matrix(.0928 -.0335 .0396 .074 510.07 291.583)"/> + <path d="M-106.3 503.15h-88.583l17.717-35.433" transform="matrix(.0928 -.0335 .0396 .074 510.07 291.583)"/> + <path d="M-124.02 538.58h-88.582l17.716-35.433" transform="matrix(.0928 -.0335 .0396 .074 510.07 291.583)"/> + <path d="M-124.02 538.58h-88.582l17.716-35.433" transform="matrix(.0928 -.0335 .0396 .074 509.832 294.796)"/> + <path d="M-53.15 396.85l70.866 35.433M-88.583 467.72l70.866 35.433M-160.45 433.8l-495.32-1.16M-175.57 468.68c-1.162 1.162-480.2-2.326-480.2-2.326M-212.6 538.58c-35.433 0-442.91 0-442.01 1.023" transform="matrix(.0928 -.0335 .0396 .074 510.07 291.583)"/> + <path d="M-212.6 539.61s-442.91-1.023-442.01 0" transform="matrix(.0892 -.0322 .0396 .074 509.04 294.992)"/> + <path d="M-124.02 538.58h-88.582l17.716-35.433" transform="matrix(.0928 -.0335 .0396 .074 509.593 298.01)"/> + <path d="M-124.02 538.58h-88.582l17.716-35.433" transform="matrix(.0928 -.0335 .0396 .074 509.355 301.223)"/> + <path d="M-442.91 379.13l-17.717 17.716v35.433h70.866l17.716-17.717" transform="matrix(.0928 -.0335 .0264 .0493 510.15 302.708)"/> + <path d="M-442.91 379.13l-17.717 17.716v35.433h70.866l17.716-17.717" transform="matrix(.0928 -.0335 .0264 .0493 521.654 298.554)"/> + <path d="M-442.91 379.13l-17.717 17.716v35.433h70.866l17.716-17.717" transform="matrix(.0928 -.0335 .0264 .0493 514.366 310.567)"/> + <path d="M-442.91 379.13l-17.717 17.716v35.433h70.866l17.716-17.717" transform="matrix(.0928 -.0335 .0264 .0493 525.87 306.414)"/> + </g> + <path fill-rule="evenodd" d="M479.05 336.257l6.576-2.374.935 1.748-6.575 2.375zM490.557 332.102l6.577-2.374.935 1.748-6.577 2.374zM483.26 344.123l6.575-2.374.935 1.747-6.576 2.374zM494.767 339.968l6.576-2.374.936 1.75-6.578 2.373z"/> + <path fill-rule="evenodd" stroke="#000" fill="#b03f00" d="M-301.18-99.213h88.583v17.717h-88.583zM-584.65-99.213h88.583v17.717h-88.583z" transform="matrix(.0928 -.0335 .0396 .074 510.07 291.583)"/> + <g stroke="#000" fill="none"> + <path d="M-407.48 237.4v-17.717h372.05V237.4M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 510.07 291.583)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 511.714 290.99)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 513.357 290.397)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 515 289.803)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 516.644 289.21)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 518.287 288.617)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 519.93 288.023)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 521.574 287.43)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 523.217 286.837)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 524.86 286.243)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 526.504 285.65)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 528.146 285.057)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 529.79 284.464)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 531.434 283.87)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 533.076 283.277)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 534.72 282.684)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 536.363 282.09)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 538.006 281.497)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 539.65 280.903)"/> + <path d="M-389.76 219.68v17.717" transform="matrix(.0928 -.0335 .0396 .074 541.292 280.31)"/> + </g> + </g> + <g stroke="#000"> + <path d="M32.92 551.31c-.11 27.793 12.3 64.848 84.133 153.26 77.143 88.58 166.25 100.95 183.74 99.72-8.22-24.66-42.01-53.15-10.087-53.47 21.226.32 27.953 46.05 27.953 46.05s34.535-26.24 46.04-13.16c11.11 20.58-35.05 38.3-35.05 38.3s23.43 55.77 53.15 88.58c35.433 46.82 86.745 62.39 106.3 63.02 9.5.31 27.87 7.8 27.21 25.57-1.315 35.376-1.273 52.466-18.42 53.146h127.47c-17.145-.68-17.103-17.77-18.418-53.146-.66-17.77 17.71-25.26 27.21-25.57 19.555-.63 70.867-16.2 106.3-63.02 29.72-32.81 53.15-88.58 53.15-88.58s-46.16-17.72-35.05-38.3c11.505-13.08 46.04 13.16 46.04 13.16s6.728-45.73 27.954-46.05c31.923.32-1.866 28.81-10.087 53.47 17.493 1.23 106.6-11.14 183.75-99.72 71.83-88.41 87.53-151.78 87.42-179.57-2.81 1.02-59.78-13.78-69.48-4.288-12.98-10.24-38.09-20.59-57.602-20.965-22.8-.377-43.29 9.22-50.318 25.712-13.606-19.683-53.266-29.56-61.64-28.273-27.334 4.704-44.375 41.317-35.42 87.337-20.64-19.754-27.997-21.696-51.11-21.76-50.423-.12-55.38 89.82-129.14 89.282-58.4-.444-83.08-31.417-100.29-53.8 22.25-19.09 20.85-26.543 6.13-45.764-16.69-18.06-42.763-16.443-60.66 1.805-17.896-17.717-18.058-28.043-35.775-53.15-17.315-24.538-29.608-26.967-61-26.84-31.39.128-55.464 1.804-67.577 34.69-15.402 8.594-37.213 26.566-54.09 23.02-10.297-28.04-43.227-60.616-70.99-61s-72.79 56.44-82.746 82.924c-17.683-37.06-36.276-42.13-51.79-42.9-15.51-.77-21.082 24.88-27.18 40.31z" fill-rule="evenodd" stroke-width="1.25" fill="#00c8ff" transform="matrix(.1702 0 0 .1397 391.585 259.396)"/> + <path d="M167.72 490s16.443 9.866 36.175 39.464 3.29 42.752 3.29 42.752" stroke-width="1pt" fill="none" transform="matrix(.1702 0 0 .1397 391.585 259.396)"/> + <path d="M184.16 506.45s32.886 3.29 46.04 26.31c13.156 23.02 6.578 49.33 6.578 49.33M220.34 631.42s23.02-55.907 65.773-32.887c42.752 23.02 39.464 59.196 36.175 59.196h-3.29v3.288M263.09 687.32s23.02-9.866 49.33 0 9.866 32.886 9.866 32.886" stroke-width="1pt" fill="none" transform="matrix(.1702 0 0 .1397 391.585 259.396)"/> + <path d="M259.8 700.48s26.31-6.577 42.752 3.29 3.29 26.308 3.29 26.308M200.61 710.34s3.29 26.31 19.732 42.753c16.443 16.443 46.04 23.02 46.04 23.02M361.75 723.5c32.886 16.443 39.463 46.04 39.463 46.04M374.9 710.34c49.33 0 46.04 29.598 46.04 29.598M302.56 552.49s29.598-23.02 69.062 0c39.463 23.02 16.443 52.62 16.443 52.62M322.29 513.02s39.464-26.31 72.35 0c32.887 26.31 23.02 46.04 23.02 46.04M437.39 529.47l19.73 32.886c9.867 16.444 26.31 13.155 26.31 13.155M526.18 647.86s23.02 32.887 75.64 39.464c52.617 6.577 98.658-13.155 98.658-13.155M526.18 690.61s29.598 29.598 69.06 29.598c39.465 0 95.372-16.443 95.372-16.443M526.18 720.21s16.443 26.31 75.64 26.31c59.194 0 85.503-13.155 85.503-13.155M522.89 759.67s6.578 13.155 36.175 19.732c29.598 6.577 59.196-9.866 59.196-9.866M618.26 785.98s19.732 26.31 46.04 26.31 0-39.464 19.733-46.042c19.732-6.577 49.33 0 49.33 0" stroke-width="1pt" fill="none" transform="matrix(.1702 0 0 .1397 391.585 259.396)"/> + <path d="M605.11 825.45s19.732 26.31 49.33 19.732c29.598-6.578 65.773-55.907 65.773-55.907l23.02-16.443M388.06 887.93s3.288-16.443 39.464-9.866c36.175 6.577 0 55.907 39.463 55.907 39.464 0 75.64-23.02 98.66-26.308 23.02-3.29 65.772 23.02 88.793 29.598 23.02 6.577 65.773-26.31 65.773-26.31M568.94 956.99c3.29 0 13.155-6.578 36.175-3.29 23.02 3.29 49.33 3.29 49.33 3.29M559.07 989.88s16.444-6.577 29.598-6.577c13.155 0 9.866 19.73 9.866 19.73M483.43 624.84c-3.29 0 16.443 0 26.31 3.288 9.865 3.29 13.153 26.31 13.153 26.31M480.14 647.86s13.154-6.577 26.31 0 6.576 29.598 6.576 29.598M470.28 674.17c0-3.288 19.732-9.866 26.31-6.577s6.576 32.886 6.576 32.886M463.7 710.34s16.443-13.154 26.31-13.154 6.576 23.02 6.576 23.02M460.41 739.94l23.02-13.154 9.866 19.73M746.52 588.66s13.155-3.29 32.886 0c19.732 3.288 26.31 26.31 26.31 26.31M753.1 614.97c0-3.29 19.732-3.29 26.31 0 6.577 3.288 16.443 19.732 16.443 19.732M789.27 684.03c-3.288 0 3.29 13.155 6.578 29.598 3.288 16.443-13.155 32.886-13.155 32.886M855.05 670.88c-3.288 0 19.732 23.02 23.02 42.752 3.29 19.732-16.443 39.464-16.443 39.464" stroke-width="1pt" fill="none" transform="matrix(.1702 0 0 .1397 391.585 259.396)"/> + <path d="M871.49 661.01s23.02 32.886 23.02 49.33c0 16.443-16.442 42.752-16.442 42.752M894.51 637.99s9.866 13.155 13.154 29.598c3.29 16.443-6.577 42.752-6.577 42.752M924.11 677.46s16.443 19.732 9.866 36.175c-6.578 16.443-19.732 29.598-19.732 29.598M950.42 687.32c-3.29 3.288 6.577 23.02 3.288 32.886-3.288 9.866-19.73 26.31-19.73 26.31M957 634.7c0 3.288 23.02 23.02 23.02 46.04s-13.154 46.042-13.154 46.042" stroke-width="1pt" fill="none" transform="matrix(.1702 0 0 .1397 391.585 259.396)"/> + <path d="M920.82 598.53s16.443 3.29 19.732 19.732c3.29 16.444-9.866 32.887-9.866 32.887M927.4 568.93s26.31 29.597 32.887 39.463c6.577 9.866-3.29 32.887-3.29 32.887" transform="matrix(.1702 0 0 .1397 382.207 253.998)" stroke-width="1pt" fill="none"/> + <path d="M920.82 565.64c3.29 3.29 32.886 3.29 46.04 19.732s6.578 46.04 6.578 46.04" transform="matrix(.1702 0 0 .1397 382.207 253.998)" stroke-width="1pt" fill="none"/> + </g> + <path d="M503.45 7.085c5.813-4.65 24.417-15.115 59.298-13.953 34.88 1.162 59.3 17.44 59.3 17.44l-2.327-45.345S596.468-46.4 565.075-46.4s-58.136 6.976-58.136 6.976l-3.488 46.51z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#ffd400" transform="matrix(.1702 0 0 .1507 391.585 247.794)"/> + <g fill-rule="evenodd" stroke="#000" stroke-width="1.25" fill="#ffd400"> + <path d="M148.7 515.65c0 17.668 2.547 28.856 20.264 28.856 17.716 0 24.24-17.836 24.664-30.5.538-15.992 3.49-40.366 38.92-40.366 17.718 0 128.01-11.77 131.3 248.03 3.29 259.8-184.24 206.72-184.24 206.72s-20.174 88.58 90.068 232.5c84.663 104.07 205.54 106.88 205.54 106.88s18.724 41.77 56.29 95.64c54.317 77.9 124.02 61 124.02 78.72 0 17.71-17.546 9.92-17.718 25.93.172 19.42 9.363 27.9 26.51 27.22s17.103-17.77 18.418-53.15c.66-17.77-17.71-25.26-27.21-25.57-19.555-.63-70.867-16.2-106.3-63.02-29.72-32.81-53.15-88.58-53.15-88.58s46.16-17.72 35.05-38.3c-11.505-13.08-46.04 13.16-46.04 13.16s-6.728-45.73-27.954-46.05c-31.923.32 1.866 28.81 10.087 53.47-17.495 1.23-106.6-11.14-183.74-99.72-71.833-88.41-87.532-174.8-87.422-202.59 44.945 16.356 185.51 7.256 185.51-223.26-7.02-292.78-124.04-265.75-159.47-265.75-42.01 0-73.414 42.01-73.414 59.727z" transform="matrix(.1702 0 0 .1397 363.255 197.516)"/> + <path d="M148.7 515.65c0 17.668 2.547 28.856 20.264 28.856 17.716 0 24.24-17.836 24.664-30.5.538-15.992 3.49-40.366 38.92-40.366 17.718 0 128.01-11.77 131.3 248.03 3.29 259.8-184.24 206.72-184.24 206.72s-20.174 88.58 90.068 232.5c84.663 104.07 205.54 106.88 205.54 106.88s18.724 41.77 56.29 95.64c54.317 77.9 124.02 61 124.02 78.72 0 17.71-17.546 9.92-17.718 25.93.172 19.42 9.363 27.9 26.51 27.22s17.103-17.77 18.418-53.15c.66-17.77-17.71-25.26-27.21-25.57-19.555-.63-70.867-16.2-106.3-63.02-29.72-32.81-53.15-88.58-53.15-88.58s46.16-17.72 35.05-38.3c-11.505-13.08-46.04 13.16-46.04 13.16s-6.728-45.73-27.954-46.05c-31.923.32 1.866 28.81 10.087 53.47-17.495 1.23-106.6-11.14-183.74-99.72-71.833-88.41-87.532-174.8-87.422-202.59 44.945 16.356 185.51 7.256 185.51-223.26-7.02-292.78-124.04-265.75-159.47-265.75-42.01 0-73.414 42.01-73.414 59.727z" transform="matrix(-.1702 0 0 .1397 611.15 197.516)"/> + <path d="M238.56-187.8c26.42 0 22.65 26.716 17.717 42.978-4.933 16.26-35.433 27.888-63.117 10.172 7.642 26.836 27.684 106.3 109.4 108.34 95.37-2.037 103.64-71.797 209.37-72.35 105.73-.553 124.84 15.498 123.44 52.597-1.257 33.442-9.085 53.15-35.434 53.15-17.716 0-35.764-15.68-35.433-35.433.332-19.753 22.568-20.962 37.86-19.34 5.424-16.094-20.143-33.81-91.01-33.81-70.163-.924-124.67 73.274-216.75 70.866-92.08-2.407-132.95-114.04-115.45-141.73 18.526-33.81 31.257-35.433 59.402-35.433z" transform="matrix(-.1702 0 0 .1397 602.314 249.497)"/> + <path d="M238.56-187.8c26.42 0 22.65 26.716 17.717 42.978-4.933 16.26-35.433 27.888-63.117 10.172 7.642 26.836 27.684 106.3 109.4 108.34 95.37-2.037 103.64-71.797 209.37-72.35 105.73-.553 124.84 15.498 123.44 52.597-1.257 33.442-9.085 53.15-35.434 53.15-17.716 0-35.764-15.68-35.433-35.433.332-19.753 22.568-20.962 37.86-19.34 5.424-16.094-20.143-33.81-91.01-33.81-70.163-.924-124.67 73.274-216.75 70.866-92.08-2.407-132.95-114.04-115.45-141.73 18.526-33.81 31.257-35.433 59.402-35.433z" transform="matrix(.1702 0 0 .1397 372.086 249.497)"/> + </g> + </g> + <path d="M-1576.8 1353.5c17.72 2.98 674.45-205.79 673.23-531.49v-1594.5h-1346.5v1594.5c-1.22 325.7 673.23 531.49 673.23 531.49z" transform="matrix(.19 0 0 .1557 781.422 252.48)" stroke="#000" stroke-width="11.125" fill="none"/> +</svg> diff --git a/s/flag/bn.svg b/s/flag/bn.svg new file mode 100755 index 0000000..2eda082 --- /dev/null +++ b/s/flag/bn.svg @@ -0,0 +1,75 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)"> + <g stroke-width="1pt"> + <path d="M-160.218 33.142l.118 114.17L799.905 346.66V233.313l-960.12-200.17z" fill="#fff"/> + <path d="M-160.1 246.65V480h960.005v-33.325L-160.1 246.648zM799.905 233.344V-.006H-160.1v33.325l960.005 200.025z" fill="#fdd114"/> + <path d="M-160.1 146.713v100.004l960.314 199.96-.31-100.015-960.004-199.95z"/> + </g> + <path transform="matrix(1.1378 0 0 1.138 1.618 -513.14)" stroke="#000" stroke-width="1.562" fill="#cf1126" d="M274.57 617.61h9.54v25.46h-9.54z"/> + <path d="M415.12 645.68c-.24-33.566 1.125-65.845 3.766-75.002s6.556-11.06 11.416-15.608c-11.512-1.043-24.218 8.647-30.06 21.408-3.707-14.398-10.64-24.156-16.74-29.056-6.098 4.9-13.29 14.808-16.567 29.183-6.01-10.712-16.555-22.588-29.028-21.254 4.434 4.62 8.48 6.333 11.178 15.286s4.044 41.016 3.075 74.6" transform="matrix(.5185 0 0 .5925 120.52 -116.466)" stroke="#000" stroke-width="3.207" fill="#cf1126"/> + <path d="M414.44 641.96c-.24-33.565 1.37-62.22 3.677-71.327 2.31-9.106 5.993-10.806 11.258-14.746-11.512-1.043-22.48 1.756-28.902 17.355-3.592-14.5-10.64-21.623-16.74-26.523-6.098 4.9-13.29 12.273-16.567 26.648-7.053-15.474-16.903-18.94-29.376-17.606 5.186 4.316 9.262 5.927 11.8 14.855s2.86 37.315 1.89 70.9" transform="matrix(.5654 0 0 .711 102.41 -140.62)" stroke="#000" stroke-width="2.804" fill="#cf1126"/> + <path d="M417.5 590.83c-.312-7.812.76-18.303 2.535-22.357 1.776-4.055 4.254-7.016 6.754-10.453-10.723-1.546-21.626-.757-27.415 14.968-3.75-14.375-9.375-21.875-15.475-26.775-6.1 4.9-11.396 12.4-15.146 26.775-5.79-15.725-16.745-16.678-27.796-14.968 2.5 3.437 5.074 6.398 6.945 10.453 1.87 4.054 3.04 14.545 2.726 22.357" transform="matrix(.711 0 0 .711 46.45 -91.042)" stroke="#000" stroke-width="2.5" fill="#cf1126"/> + <path d="M378.95 610.77v32.21h11.37v-32.21h-11.37z" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-width="2.5" fill="#cf1126"/> + <path opacity=".99" stroke-linejoin="bevel" d="M457.89 1168.7c2.813 1.88 14.035 3.85 34.376.31 35.513-6.22 35.216-41.25 90.53-25-2.5-5-11.25-20.31-32.814-20.93 2.188-7.19 3.75-17.81-.312-24.38-4.167 9.27-10.618 13.58-15.296 16.61-1.44-.78-9.8-7.61-10.706-17.9-1.256-20.4-11.21-24-12.268-23.46-6.39-.18-44.87 60.65-127.27 61.05-81.19.39-121.82-60.51-126.41-61.05-1.057-.54-11.012 3.06-12.268 23.46-.906 10.29-9.363 16.82-10.784 17.73-4.658-2.9-11.05-7.17-15.218-16.44-4.062 6.57-2.5 17.19-.312 24.38-21.563.62-30.313 15.93-32.813 20.93 55.313-16.25 55.424 18.78 90.937 25 20.34 3.54 30.886 1.88 33.7.01" transform="matrix(.711 0 0 .711 45.954 -415.196)" stroke="#000" stroke-width="2.5" fill="#cf1126"/> + <path opacity=".99" stroke-linejoin="bevel" d="M286.28 1151.2c-19.265-.77-56.848-30.07-51.514-36.1 1.693-1.71 9.973.05 24.308 10.08 21.275 14.5 39.53 60.22 124.88 59.87 86.98-.35 104.83-45.37 126.1-59.87 14.335-10.03 23.28-11.63 24.288-9.67 5.12 5.78-32.5 35.01-51.764 35.78" transform="matrix(.711 0 0 .711 45.954 -415.196)" stroke="#000" stroke-width="2.5" fill="#cf1126"/> + <path d="M259.2 399.54c-76.11 80.185-35.168 264.36 123.02 267.02 159.04 1.782 205.43-184.26 126.41-267.37m-234.02 3.103c-40.49 68.178 1.604 187.64 109.88 187.64 109.17 0 149.18-120.33 109.08-188.05" transform="matrix(.711 0 0 .711 46.45 -91.042)" stroke="#000" stroke-width="2.5" fill="#cf1126"/> + <path d="M339.548 399.678c3.935.874 7.525 4.937 6.08 9.113-1.606 4.98-7.532 6.19-9.772 5.826-2.41-1.446-.965-3.533 6.424-4.337 4.817-1.768.43-5.026-3.212-6.586-1.98-.85-1.367-4.426.48-4.016zM327.345 398.395c1.83-2.082 3.316 4.298 3.722 8.72.533 4.32.59 9.647-1.152 9.91-1.062.18-.17-4.958-1.268-9.67-1.432-5.458-2.05-8.045-1.302-8.96z" stroke="#cf1126" stroke-width=".26635400000000004" fill="#fdd114"/> + <path d="M323.143 406.264c4.594 4.452-3.187 17.347-20.21 11.726-.965-1.767 6.76-.02 12.204-.964 10.36-1.636 5.916-12.737 8.006-10.762z" stroke="#cb4f46" stroke-width=".26635400000000004" fill="#fdd114"/> + <path d="M314.814 397.426c1.83-2.08.764 4.507 1.145 8.934.372 4.16-.093 9.22-2.066 8.565-1.07-.515.683-5.186-.414-9.577-1.176-5.52-.055-6.525 1.334-7.922zM303.13 395.658c3.25-.02 2.378.89 2.147 9.57-.254 9.723-8.466 10.81-10.418 8.143-1.64-2.092-1.04-2.722-8.38-2.02-1.64-.828-1.578-2.587-6.94-2.137-1.386.256-1.34-2.374-3.84-3.945-4.362-2.606-5.814 1.92-14.13-2.87-.52-.29-3.893-2.428-3.276-6.655.642-5.34-4.228.653-9.58-1.678-1.036-.462-4.173-1.767-6.94-4.196-3.907-3.36.184-4.04 5.462-.615 3.26 2.067 8.047-2.69 8.176-7.448.292-5.037-2.214-6.36 1.67-6.237 2.166.065 1.65 8.8-2.03 12.668-4.925 5.323-1.6 4.297.158 4.03 1.834-.46 10.178-10.8 11.57-9.912 2.166 1.473-6.506 8.083-4.564 14.34.928 2.79 6.097 5.46 10.353 5.894 5.003.833 5.017-5.962 7.045-4.675 2.807 1.842-5.363 5.31 3.215 7.838 1.894.568 2.99-4.257 4.11-4.047 2.69.44-1.76 5.634 3.053 6.46 3.355.558 2.436-4.85 4.516-4.522 2.406-.154.147 8.653 6.82 7.755 2.812-.37-1.588-15.722 1.8-15.742z" stroke="#cf1126" stroke-width=".26635400000000004" fill="#fdd114"/> + <path d="M242.656 384.23c1.932-.413 5.244-2.208 5.382-5.106.276-3.173-4.14-4.278-9.383-3.45-2.76.415-7.45-1.38-10.21-3.726-2.76-3.45-2.76-7.31-6.07-5.656-2.484 1.103 3.45 7.45 6.346 8.97 2.9 1.517 7.59 1.38 7.866 3.586.276 2.208-1.104 5.657 6.07 5.38zM360.07 399.036c-1.066.516-1.93 10.158 4.09 10.366 7.564.27 11.367-3.565 13.262-4.928 3.146-2.392 8.817-7.17 6.192-11.293-1.313-1.495-2.04 2.754-3.553 5.24-2.06 3.648-9.114 7.975-14.518 7.385-6.62-.407-4.125-7.114-5.472-6.77z" stroke="#cf1126" stroke-width=".26635400000000004" fill="#fdd114"/> + <path d="M375.615 394.57c-1.54-1.165 3.422-3.07 3.935-4.87.515-1.8-2.19-3.496-.687-5.468 1.578-2.597 1.664 4.895 3.67 5.11 5.55.58 1.587 4.165-.507 3.472-2.37-.707-5.482 2.63-6.41 1.755zM371.317 383.225c-.357 2.5 1.16 3.126 1.61 1.697.534-2.68-.985-3.93-1.61-1.697z" stroke="#cf1126" stroke-width=".26635400000000004" fill="#fdd114"/> + <path d="M375.337 380.634c-.894.07-1.018 3.173.145 3.26 1.256.098.676 2.216 1.73 2.188 1.254-.033 1.35-3.552-.07-3.585-1.32-.033-1.007-1.85-1.805-1.863zM385.386 380.04c-1.062 1.344-3.078-5.178 3.704-6.11 3.224.283 5.974 5.593 5.69 10.713-.108 1.894-.19 6.164-1.232 8.25-.855 1.992-3.983 8.536-5.5 7.967-1.517-.57.397-3.31 2.94-7.113 2.055-3.114 2.845-11.76 1.8-13.276s-2.092 3.795-4.266 4.933c-1.808.948-3.697-1.795-3.982-3.122-.225-1.573 1.21-2.54 2.18-.67.775 1.405 3.156-1.384 3.1-3.377.063-3.223-2.074-.667-4.434 1.807zM400 365.488c-.855 1.233-3.793 3.983-4.362 5.12s-.665 3.13.283 5.027c.95 1.896 2.94 4.93 2.562 7.68-.38 2.75-2.276 8.44-1.233 7.966 1.042-.474 3.602-6.07 3.033-10.336-.57-4.267-2.56-6.637-2.18-8.06.377-1.42 2.748-4.076 3.223-5.878.474-1.803-.285-6.638-.948-7.017s-3.034.473-2.276 2.085c.76 1.612 2.37.663 1.897 3.413z" stroke="#cf1126" stroke-width=".26635400000000004" fill="#fdd114"/> + <path d="M403.897 367.69c-1.065.97-.535 6.253.93 4.367 1.33-1.838-.078-5.23-.93-4.366z" stroke="#cf1126" stroke-width=".25061490000000003" fill="#fdd114"/> + <path d="M376.027 406.918c-.5 2.312 1.778 3.044 2.404 1.723.75-2.476-1.53-3.786-2.403-1.722z" stroke="#cf1126" stroke-width=".302675" fill="#fdd114"/> + <path d="M379.514 404.957c-.74 1.897 2.56 2.063 3.488.98 1.11-2.034-2.193-2.674-3.488-.98z" stroke="#cf1126" stroke-width=".33415320000000004" fill="#fdd114"/> + <path d="M242.244 377.607c-1.765-.79-1.655 2.76-.826 3.725.826.966 5.64-1.51.826-3.725z" stroke="#cf1126" stroke-width=".26635400000000004" fill="#cf1126"/> + <path d="M385.65 680.28c-24.945 4.993-42.073 19.615-34.043 24.588 4.917 3.278 28.013-5.728 32.886-13.373 8.86 13.523 32.9 18.624 38.706 15.592" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-linecap="round" stroke-width="2.5" fill="#cf1126"/> + <path d="M228.173 177.083c2.944 4.55 18.196 15.52 29.166 16.324 10.97.803 35.855 5.887 40.672 3.746 4.816-2.14 18.463-11.507 21.94-9.9 3.48 1.605 23.816 12.844 31.308 12.576 7.493-.268 55.925-13.916 57.53-16.592 1.606-2.676-9.633-9.634-16.857-9.634-7.225 0-163.76 3.747-163.76 3.48z" fill="#cf1126"/> + <path d="M316.2 703.33c.124 3.846 3.08 6.627 10.173 6.7 11.91.248 32.057-5.385 44.09-18.907" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-linecap="round" stroke-width="2.5" fill="#cf1126"/> + <path d="M280.47 697.62c-.62 3.226 4.715 7.444 15.136 7.568s46.772-4.342 58.434-16.5" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-linecap="round" stroke-width="2.5" fill="#cf1126"/> + <path d="M255.86 687.85c-5.583 7.195 12.204 9.774 22.873 9.65 10.67-.125 38.206-.267 50.54-9.447" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-linecap="round" stroke-width="2.5" fill="#cf1126"/> + <path d="M236.37 675.78c-5.335 7.072 12.59 13.283 34.426 12.787 20.098-.496 40.57-7.444 40.57-7.444M452.48 703.33c-.124 3.846-3.08 6.627-10.173 6.7-11.91.248-32.057-5.385-44.09-18.907" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-linecap="round" stroke-width="2.5" fill="#cf1126"/> + <path d="M488.21 697.62c.62 3.226-4.715 7.444-15.136 7.568s-46.772-4.342-58.434-16.5" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-linecap="round" stroke-width="2.5" fill="#cf1126"/> + <path d="M512.66 688c5.583 7.196-12.048 9.618-22.717 9.493-10.67-.124-38.206-.266-50.54-9.446" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-linecap="round" stroke-width="2.5" fill="#cf1126"/> + <path d="M532.37 675.66c5.335 7.072-12.65 13.404-34.486 12.908-20.098-.496-40.57-7.444-40.57-7.444" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-linecap="round" stroke-width="2.5" fill="#cf1126"/> + <path d="M279.21 675.12c-27.735 4.005-40.51 1.964-46.045-.682-6.915-3.043-18.757-12.31-1.265-12.646 11.59-.226 17.43.66 30.607.59 33.705-.422 82.36-27.036 97.11-27.145 13.7-.1 17.336 6.233 25.147 6.362 7.998.092 10.587-6.464 24.288-6.363 14.75.11 63.405 26.723 97.11 27.145 13.176.07 19.017-.816 30.607-.59 17.49.337 5.65 9.603-1.266 12.646-5.535 2.646-18.31 4.687-46.045.682" transform="matrix(.711 0 0 .711 45.954 -300.978)" stroke="#000" stroke-linecap="round" stroke-width="2.5" fill="#cf1126"/> + <path d="M383.55 280.29c-13.048.655-31.007-1.574-36.774 12.977-8.783 16.647-6.306 35.518-2.36 35.916 7.065.78 7.737-18.847 10.75-18.876 3.148-.036 3.145 17.04 9.306 16.91 4.588-.13 7.472-17.172 8.914-17.04s4.457 16.384 10.26 16.384c6.197 0 8.818-16.253 10.26-16.384s4.326 16.91 8.914 17.04c6.16.132 6.158-16.945 9.307-16.91 3.012.03 4.34 19.525 11.404 18.746 3.947-.398 5.9-19.138-2.883-35.785-5.767-14.55-24.12-12.322-37.097-12.977z" transform="matrix(.711 0 0 .711 46.45 -91.042)" stroke="#000" stroke-width="2.5" fill="#cf1126"/> + <path d="M352.22 286.25c3.504 5.887 30.835 5.747 32.377 5.747s25.37.28 30.975-5.466M378.62 224.86v58.032s.314 3.24 5.124 3.345 5.54-2.718 5.54-3.137l-.208-58.345" transform="matrix(.711 0 0 .711 46.45 -91.042)" stroke="#000" stroke-width="2.5" fill="#cf1126"/> + <path d="M384.25 231.59c21.864-1.12 28.383 11.774 34.55 14.577s8.97 3.924 17.38 3.363c8.41-.56-14.577 14.017-14.577 14.577l8.41 15.137c-7.85 1.12-22.713-6.125-28.592-10.09-6.65-3.928-14.015-1.683-16.818-2.244l-.352-35.32z" transform="matrix(.711 0 0 .711 46.45 -91.042)" stroke="#000" stroke-width="2.5" fill="#cf1126"/> + <path d="M313.4 264.67c0 4.333-3.893 7.85-8.69 7.85-4.796 0-8.69-3.517-8.69-7.85 0-4.332 3.894-7.848 8.69-7.848 4.797 0 8.69 3.516 8.69 7.848z" transform="matrix(1.0322 0 0 1.092 4.814 -227.95)" stroke="#000" stroke-width="1.674" fill="#cf1126"/> + <g stroke="#cf1126" stroke-width=".375" fill="#fdd114"> + <path d="M249.32 508.25c-1.666 2.33-3.103-3.8-8.827.5-3.228 2.758-4.52 6.986-4.498 15.82.02 7.492 4.33 12.493 6.83 11.993 3.83-.5 1.83-9.66 5.995-11.325 5.996-2.832 14.49 1.498 15.99 6.994s-2.833 11.492-7.496 10.826c-2.665-1 1.5-4.83 1.832-6.495.333-1.665.832-7.162-3.165-8.66-3.996-1.5-3.33 3.997-3.496 5.496-.166 1.498-2.998 6.16-6.162 5.994-3.164-.166-8.193-.15-13.158-5.495-2.632-2.744-5.83-10.16-2.997-19.488 2.83-9.326 7.66-10.16 10.326-10.326 2.664-.166 9.493 1.5 8.827 4.164zM242.49 547.06c-2.78-1.485 1.045-6.896-6.162-4.996-2.9.808 4.33 9.16 7.494 9.494 3.498-.334 2.523-2.604-1.332-4.498zM250.15 551.56c1.498 6.828 2.917 6.25 3.164 9.66.124 4.355-7.33 2.497-8.328 4.495-1 2-2.33 7.162 2.498 7.495 4.83.333 11.762-1.523 13.157 1.832 3.762 9.443 11.783 8.074 15.523 6.605 4.23-1.693 14.185-10.664 16.455-11.435 3.38-1.238-3.164-3.664-6.994-.333-1 1-9.327 9.493-13.657 9.66-3.163.35-8.063-7.667-7.828-10.493.332-2 7.62-.35 8.66-4.497.775-2.963.832-6.163-1.5-6.33-2.33-.166-13.323 1.333-13.656-.332-2-4.83 2-6.828.5-8.16-1.666-.667-7.828-1.666-7.994 1.832zM287.18 578.04c-3.524 3.69-12.8 9.6-12.8 13.774 0 2.366 2.588 6.075 4.73 6.957 3.195 1.26 8.097.945 11.826-1.947 4.217-3.426 6.114-6.9 4.314-7.513-6.378-1.823-6.54 6.968-9.6 7.235-2.926.243-7.375-4.453-1.53-10.297 5.842-5.843 13.913-11.687 13.634-13.357-.278-1.668-8.045 2.6-10.574 5.15z" transform="matrix(.711 0 0 .711 45.954 -95.367)"/> + <path d="M259.35 585.69c-.26 2.35 5.983 2.365 7.096.278.834-1.53-6.818-2.643-7.096-.278z" transform="matrix(.711 0 0 .711 54.957 -83.4)"/> + <path d="M273.84 583.06c-3.524 3.69.417 7.887 3.11 11.326 1.49 1.837 4.914 3.627 7.055 4.51 3.196 1.258 9.566.82 13.295-2.07 4.217-3.427 4.55-9.444 1.99-9.472-6.62-.074-2.012 8.804-5.074 9.07-2.925.244-11.126-1.605-15.115-10.052-2.278-4.98 4.203-5.93 3.233-8.094-.988-2.324-5.964 2.233-8.493 4.782z" transform="matrix(.711 0 0 .711 59.606 -80.427)"/> + <path d="M259.35 585.69c-.26 2.35 5.983 2.365 7.096.278.834-1.53-6.818-2.643-7.096-.278z" transform="matrix(.5305 -.4735 .4735 .5305 -148.353 146.045)"/> + <path d="M319.56 621.31c-.19 2.708.612 6.364-2.57 6.487-3.182.122-7.22-4.162-10.403-4.04-3.182.123-4.53 2.57-4.162 3.918.367 1.346 5.875 2.937 15.3 2.325s7.342 5.14 13.95 4.65c6.61-.49 7.59-2.692 7.1-4.16-.49-1.47-6.12-.49-8.2-.857-2.08-.368-5.752-3.672-6.242-6.487-.49-2.815-.49-7.667 1.958-7.71 4.53-.08 2.438 4.115 2.61 5.587.154 1.303 1.635 2.654 3.633.287 2.653-3.14 1.224-8.078-1.346-9.79s-11.148 3.2-11.627 9.79zM342.93 621.8c-.482 4.853-3.955 5.206-3.55 6.976.503 2.034 1.76 2.672 2.57 7.71.46 2.484 3.55 3.537 7.467 3.305 3.2-.087 5.39-4.423 7.465-4.283 2.935.157.49 6.8 7.344 6.732 5.507-.053 6.854-4.775 8.812-4.897 1.958-.123 1.713 5.507 6.242 5.507 4.528 0 6.486-5.14 8.567-5.262 2.203.122 2.203 5.507 8.934 5.14 6.733-.368 11.75-1.346 13.342-2.692 1.59-1.347 2.325-5.753 4.528-5.998 2.203-.244 5.63 4.16 8.69 4.16s9.423-7.708 11.38-7.83c1.96-.123 3.55 4.772 7.957 4.772 6.854-.122 7.655-9.033 10.847-9.454 5.754-.56 5.98-2.907 6.287-3.52.613-1.713-.043-9.748-1.35-13.417-.635-1.937-7.95-18.282-11.254-18.65-3.305-.366-2.326 4.407-.368 7.222 1.96 2.815 11.994 15.91 10.648 19.704-1.346 3.795-8.445-1.59-14.075-1.59-7.832 0-12.59 15.835-18.113 16.4-2.425.26-5.017-2.08-4.16-3.795 1.59-2.446 3.426-8.32-2.693-7.464-6.12.856-12.36 3.67-11.382 6.976.98 3.304 4.65 6.61.612 7.955s-11.015 1.714-14.442.612c-3.427-1.102-1.347-8.813-3.427-8.813-2.325 0-2.447 9.057-5.752 9.302-3.304.243-6.242-1.103-6.976-3.673-.735-2.57 1.224-5.752-.98-6.12-2.202-.367-4.406 10.16-7.71 9.914s-3.427-.978-5.385-3.06c-1.958-2.08 1.713-9.178-1.59-9.79-3.306-.612-6.61 10.526-8.813 10.404-2.205-.123-5.51-.245-6.488-2.448-.49-1.102-.353-7.993-.243-10.787-.062-1.323-3.183-.742-2.94.75zM454.18 591.81c6.03 9.13 11.463 21.48 14.81 22.152 2.227.327-6.978-16.52-10.037-20.316-2.57-3.916-9.96-9.795-4.773-1.836z" transform="matrix(.711 0 0 .711 45.954 -95.367)"/> + <path d="M342.16 613.74c-1.144 2.287-.735 4.493 1.225 4.166s4.492-4.166 3.84-4.9-3.513-1.39-5.065.734z" transform="matrix(.5597 0 0 .689 97.875 -81.5)"/> + <path d="M471.9 595.86c-.02 4.95 3.485 10.55 10.01 10.198 6.524-.352 13.678-7.568 14.207-14.974s-8.612-12.843-10.904-11.256c-2.293 1.587.86 7.11 6.716 7.45 2.507.153 1.688 5.057-3.117 8.937-5.035 3.98-12.49 3.904-14.312 1.158-1.41-3.88-2.693-3.907-2.6-1.513z" transform="matrix(.711 0 0 .711 45.954 -95.367)"/> + <path d="M475.83 580.86c-.954 1.96 1.035 6.48 3.192 6.28 2.187-.213-2.492-7.578-3.192-6.28zM494.98 577.35c1.27 2.937 2.78 7.414 5.457 7.414 2.678 0 4.84.72 4.84 2.986s-6.98 9.806-7.208 12.357c-.39 4.348 2.78 4.12 4.324 1.75 1.544-2.368 5.72-13.507 6.59-16.58.378-2.427 3.38-6.99 3.5-11.74-.19-5.353 4.737-1.027 7.106-.82 2.17.094 4.53-3.914 4.84-6.797.31-2.884-2.266-3.398-2.266-5.972 0-1.442 2.754-6.076 2.883-9.165.307-2.732-5.354-10.606-7.722-10.503-1.957.103-.31 2.986.824 4.222 1.13 1.236 4.014 3.81 2.985 6.075-1.854 4.428-10.916 5.56-11.327 10.298-.412 3.398.41 14.107-2.37 14.107s-5.055-6.69-9.37-6.694c-4.837-.13-4.09 6.825-3.088 9.062zM502.09 536.68c.133 1.907 4.12 10.194 6.487 10.194 3.398 0-1.545-3.912-1.236-5.354s5.178-3.614 3.193-4.12c-3.55-1.086-8.62-3.24-8.443-.72zM501.78 525.97c.72 2.677 11.738 6.693 16.475 8.032s10.503 7.002 12.666 5.148c2.163-1.853-14.518-8.443-16.99-9.37s-12.665-6.487-12.15-3.81zM535.04 543.27c4.12.102 1.853-8.033.823-9.99-1.03-1.956-2.574 3.708-2.368 5.356.206 1.647.31 4.53 1.545 4.634zM511.05 502.8c-.035 1.843 11.38.535 16.682 1.956 2.288.64 10.09 4.84 11.532 3.81 1.648-2.163-10.606-6.796-17.608-6.796-2.267.034-10.566-1.143-10.606 1.03zM508.06 508.05c-2.043 2.187 6.884 4.633 14.828 4.942 7.913.31 13.04 5.063 12.357 8.547-1.133 5.87-11.018 2.058-9.782 5.25.72 2.472 5.067 1.565 5.56 4.223.34 2.678 3.13 3.15 2.982-.152-.016-2.626 6.13-6.953 5.977-8.188-.31-2.47-4.016-11.12-13.49-12.048-9.473-.926-15.824-5.49-18.432-2.574z" transform="matrix(.711 0 0 .711 45.954 -95.367)"/> + </g> + <path d="M227.17 306.975c-.902-.522-4.12 2.37-2.966 3.017 2.19 1.24 4.34-2.25 2.967-3.017zM234.084 303.536c-1.563-.195-2.318 3.124-1.01 3.32 3.322.46 3.977-2.96 1.01-3.32zM402.59 312.847c-.74-.004-3.076 1.025-2.27 2.636.806 1.61 3.117 1.65 4.174.733.942-.892.73-3.354-1.904-3.37zM411.742 305.812c.237 1.772 1.532 1.485 2.562 1.098 1.172-.512 1.514-2.06.367-2.635-1.195-.598-3.17.273-2.928 1.537zM358.835 347.23c-1.578 3.485-.22 6.893 2.297 6.237s5.032-5.47 3.173-7.003-4.423-1.548-5.47.766z" stroke="#cf1126" stroke-width=".0883811" fill="#cf1126"/> + <g fill="#cf1126"> + <path d="M146.545 202.67c-5.87-.535-19.21-3.204-19.745-.535-.533 2.668 7.205 33.89 11.207 37.89 4.002 4.004 22.68 12.543 24.548 11.476 1.867-1.067-3.736-20.546-5.87-24.015-2.135-3.47-8.54-16.01-8.005-16.544.533-.532-2.402-8.27-2.135-8.27z"/> + <path d="M124.24 411.54c2.012-10.563 14.294 2.08 13.078 15.84-.6 4.67 2.012 9.813 4.527 12.328" transform="matrix(.711 0 0 .711 46.457 -91.04)" stroke="#000" stroke-width="2.5"/> + <path d="M134.8 412.04l-.46.614c6.16-10.424 12.115 4.416 13.035 21.518M113.62 410.41c-.356-8.536 13.51-10.988 12.65 19.87 6.046 3.912 13.16 18.85 13.516 24.186 4.537 1.067 12.093 6.646 13.933 11.27" transform="matrix(.711 0 0 .711 46.457 -91.04)" stroke="#000" stroke-width="2.5"/> + <path d="M147.62 581.4c.648-23.495 1.018-73.806-1.442-79.264-4.326-10.103-26.09-21.818-32.722-37.702-6.64-16.804-12.3-55.134-9.604-59.754 3.53-6.66 15.295 8.18 12.094 24.542 14.228 16.717 11.237 26.675 13.87 28.81 8.775 6.757 22.172 11.382 24.542 17.428 4.877 10.817-1.066-15.295-4.98-20.63-3.91-5.335-10.67-17.072-6.045-19.917 4.623-2.846 12.804 4.624 13.87 6.758s12.094 14.228 15.295 17.073c5.69 4.268 20.064 13.81 19.778 21.988-.015 13.223 1.16 100.21 1.16 100.21M144.97 612.37s-.09 9.457-.09 9.635c4.105 4.996 21.235 5.552 25.07 5.53 3.75-.11 19.87.18 23.616-5.976.09-.18.232-8.034.232-10.193" transform="matrix(.711 0 0 .711 46.457 -91.04)" stroke="#000" stroke-width="2.5"/> + <path d="M144.2 585.22c-4.745 1.055-5.985 6.852-2.637 11.073 2.715 3.424 13.973 7.38 26.89 7.646 12.918.26 30.055-4.22 30.845-11.338.264-7.118-6.42-6.684-5.63-6.42" transform="matrix(.711 0 0 .711 46.457 -81.667)" stroke="#000" stroke-width="2.5"/> + <path d="M144.2 585.31c-4.745 1.055-5.632 7.03-2.284 11.25 2.715 3.425 14.147 8.173 27.065 8.437 12.918.263 29.264-5.01 30.054-12.127.264-7.118-4.652-6.505-5.01-6.327" transform="matrix(.711 0 0 .711 46.457 -91.04)" stroke="#000" stroke-width="2.5"/> + <path d="M171.09 592.6c17.135.264 28.208-8.172 28.208-12.653 0-4.482-5.536-4.746-8.964-3.428-3.427 1.317-8.7 4.664-19.77 4.744-11.335.345-21.355-7.908-24.782-7.645-3.427.263-6.112 3.98-5.01 7.908 1.358 3.897 13.446 11.6 30.318 11.072z" transform="matrix(.711 0 0 .711 46.457 -91.04)" stroke="#000" stroke-width="2.5"/> + </g> + <g fill="#cf1126"> + <path d="M493.456 202.67c5.87-.535 19.21-3.204 19.745-.535.535 2.668-7.203 33.89-11.205 37.89-4.002 4.004-22.68 12.543-24.548 11.476-1.867-1.067 3.736-20.546 5.87-24.015 2.135-3.47 8.54-16.01 8.005-16.544-.533-.532 2.402-8.27 2.134-8.27z"/> + <path d="M124.24 411.54c2.012-10.563 14.294 2.08 13.078 15.84-.6 4.67 2.012 9.813 4.527 12.328" transform="matrix(-.711 0 0 .711 593.55 -91.04)" stroke="#000" stroke-width="2.5"/> + <path d="M134.8 412.04l-.46.614c6.16-10.424 12.115 4.416 13.035 21.518M113.62 410.41c-.356-8.536 13.51-10.988 12.65 19.87 6.046 3.912 13.16 18.85 13.516 24.186 4.537 1.067 12.093 6.646 13.933 11.27" transform="matrix(-.711 0 0 .711 593.55 -91.04)" stroke="#000" stroke-width="2.5"/> + <path d="M147.62 581.4c.648-23.495 1.018-73.806-1.442-79.264-4.326-10.103-26.09-21.818-32.722-37.702-6.64-16.804-12.3-55.134-9.604-59.754 3.53-6.66 15.295 8.18 12.094 24.542 14.228 16.717 11.237 26.675 13.87 28.81 8.775 6.757 22.172 11.382 24.542 17.428 4.877 10.817-1.066-15.295-4.98-20.63-3.91-5.335-10.67-17.072-6.045-19.917 4.623-2.846 12.804 4.624 13.87 6.758s12.094 14.228 15.295 17.073c5.69 4.268 20.064 13.81 19.778 21.988-.015 13.223 1.16 100.21 1.16 100.21M144.97 612.37s-.09 9.457-.09 9.635c4.105 4.996 21.235 5.552 25.07 5.53 3.75-.11 19.87.18 23.616-5.976.09-.18.232-8.034.232-10.193" transform="matrix(-.711 0 0 .711 593.55 -91.04)" stroke="#000" stroke-width="2.5"/> + <path d="M144.2 585.22c-4.745 1.055-5.985 6.852-2.637 11.073 2.715 3.424 13.973 7.38 26.89 7.646 12.918.26 30.055-4.22 30.845-11.338.264-7.118-6.42-6.684-5.63-6.42" transform="matrix(-.711 0 0 .711 593.55 -81.667)" stroke="#000" stroke-width="2.5"/> + <path d="M144.2 585.31c-4.745 1.055-5.632 7.03-2.284 11.25 2.715 3.425 14.147 8.173 27.065 8.437 12.918.263 29.264-5.01 30.054-12.127.264-7.118-4.652-6.505-5.01-6.327" transform="matrix(-.711 0 0 .711 593.55 -91.04)" stroke="#000" stroke-width="2.5"/> + <path d="M171.09 592.6c17.135.264 28.208-8.172 28.208-12.653 0-4.482-5.536-4.746-8.964-3.428-3.427 1.317-8.7 4.664-19.77 4.744-11.335.345-21.355-7.908-24.782-7.645-3.427.263-6.112 3.98-5.01 7.908 1.358 3.897 13.446 11.6 30.318 11.072z" transform="matrix(-.711 0 0 .711 593.55 -91.04)" stroke="#000" stroke-width="2.5"/> + </g> + </g> +</svg> diff --git a/s/flag/bo.svg b/s/flag/bo.svg new file mode 100755 index 0000000..3fae780 --- /dev/null +++ b/s/flag/bo.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" fill="#28ff09"> + <g fill-rule="evenodd"> + <path fill="#009a00" d="M0 323.1h640V480H0z"/> + <path fill="red" d="M0 0h640v164.063H0z"/> + <path fill="#ff0" d="M0 164.063h640v159.046H0z"/> + </g> +</svg> diff --git a/s/flag/bq.svg b/s/flag/bq.svg new file mode 100755 index 0000000..06006a1 --- /dev/null +++ b/s/flag/bq.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" viewBox="0 0 6.4 4.8"> + <path fill="#21468b" d="M0 0h6.4v4.8H0z"/> + <path fill="#fff" d="M0 0h6.4v3.2H0z"/> + <path fill="#ae1c28" d="M0 0h6.4v1.6H0z"/> +</svg> diff --git a/s/flag/br.svg b/s/flag/br.svg new file mode 100755 index 0000000..b0b457c --- /dev/null +++ b/s/flag/br.svg @@ -0,0 +1,45 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g stroke-width="1pt"> + <path fill-rule="evenodd" fill="#229e45" d="M0 0h640v480H0z"/> + <path d="M321.406 435.935l301.483-195.67-303.308-196.2L17.11 240.734l304.296 195.2z" fill-rule="evenodd" fill="#f8e509"/> + <path d="M452.77 240.005c0 70.328-57.103 127.34-127.544 127.34-70.442 0-127.544-57.012-127.544-127.34s57.104-127.34 127.544-127.34c70.442 0 127.545 57.012 127.545 127.34z" fill-rule="evenodd" fill="#2b49a3"/> + <path fill="#ffffef" fill-rule="evenodd" d="M283.3 316.274L279.357 314l-4.093 2.025.917-4.55-3.162-3.332 4.52-.53 2.124-4.08 1.894 4.22 4.46.81-3.345 3.13M368.77 337.917l-3.94-2.274-4.092 2.025.916-4.55-3.16-3.332 4.52-.53 2.122-4.08 1.894 4.22 4.46.81-3.345 3.13M331.93 303.343l-3.404-1.964-3.536 1.748.792-3.93-2.73-2.88 3.904-.457 1.834-3.523 1.636 3.645 3.853.7-2.89 2.705M418.254 290.91l-3.342-1.928-3.472 1.718.777-3.858-2.68-2.827 3.833-.45 1.8-3.46 1.607 3.58 3.783.686-2.837 2.657M330.37 265.03l-3.94-2.273-4.093 2.025.916-4.55-3.162-3.332 4.522-.53 2.123-4.08 1.894 4.22 4.46.81-3.346 3.13M225.13 225.52l-3.94-2.274-4.094 2.025.916-4.548-3.16-3.333 4.52-.53 2.122-4.08 1.894 4.22 4.46.81-3.345 3.13M237.786 278.08l-3.94-2.275-4.094 2.025.916-4.548-3.16-3.334 4.52-.53 2.123-4.08 1.894 4.22 4.46.81-3.345 3.132M369.114 206.17l-3.48-2.007-3.616 1.788.81-4.017-2.794-2.944 3.994-.47 1.875-3.603 1.673 3.728 3.94.715-2.955 2.766M361.896 240.366l-2.74-1.582-2.85 1.408.64-3.164-2.2-2.32 3.145-.368 1.477-2.838 1.318 2.936 3.103.563-2.327 2.18M219.263 287.603l-2.63-1.518-2.734 1.352.61-3.037-2.11-2.225 3.02-.354 1.416-2.723 1.264 2.818 2.978.54-2.233 2.09M418.984 299.71l-2.144-1.135-2.227 1.01.5-2.27-1.72-1.666 2.46-.265 1.154-2.038 1.03 2.108 2.426.404-1.82 1.563"/> + <path fill="#ffffef" fill-rule="evenodd" d="M219.263 287.603l-2.63-1.518-2.734 1.352.61-3.037-2.11-2.225 3.02-.354 1.416-2.723 1.264 2.818 2.978.54-2.233 2.09"/> + <path fill="#ffffef" fill-rule="evenodd" d="M219.263 287.603l-2.63-1.518-2.734 1.352.61-3.037-2.11-2.225 3.02-.354 1.416-2.723 1.264 2.818 2.978.54-2.233 2.09M261.143 287.594l-2.63-1.52-2.733 1.353.61-3.037-2.11-2.225 3.02-.354 1.416-2.722 1.265 2.817 2.978.54-2.233 2.09M255.94 301.525l-2.63-1.518-2.734 1.352.612-3.038-2.11-2.225 3.017-.354 1.417-2.724 1.265 2.817 2.977.54-2.233 2.09M342.902 276.164l-2.63-1.52-2.733 1.353.61-3.036-2.11-2.225 3.018-.353 1.417-2.724 1.265 2.817 2.977.54-2.233 2.09M317.384 276.154l-2.63-1.518-2.734 1.352.612-3.037-2.11-2.225 3.018-.353 1.417-2.724 1.264 2.817 2.98.54-2.234 2.09M248.167 267.258l-1.648-.952-1.714.847.384-1.902-1.323-1.394 1.89-.222.89-1.706.792 1.765 1.864.34-1.4 1.31M415.74 310.728l-2.63-1.518-2.733 1.35.612-3.035-2.11-2.226 3.017-.354 1.417-2.724 1.264 2.817 2.978.54-2.233 2.09M394.49 313.512l-2.178-1.26-2.264 1.122.507-2.522-1.748-1.848 2.5-.294 1.174-2.262 1.048 2.34 2.466.45-1.85 1.735M404.516 313.27l-2.03-1.173-2.108 1.044.472-2.344-1.63-1.718 2.33-.274 1.093-2.103.976 2.177 2.296.417-1.723 1.615M433.302 288.15l-1.955-1.13-2.03 1.006.454-2.257-1.567-1.655 2.243-.262 1.053-2.024.94 2.092 2.21.402-1.658 1.553M394.24 327.69l-2.554-1.395-2.652 1.24.594-2.786-2.05-2.043 2.93-.325 1.376-2.5 1.227 2.586 2.89.496-2.167 1.92M394.383 339.13l-2.33-1.395-2.418 1.24.542-2.786-1.87-2.044 2.673-.324 1.255-2.5 1.12 2.586 2.635.496-1.977 1.918M375.084 313.266l-1.955-1.13-2.032 1.006.455-2.257-1.568-1.653 2.242-.263 1.054-2.025.94 2.093 2.213.402-1.66 1.554M356.992 313.266l-1.954-1.13-2.03 1.006.454-2.257-1.57-1.653 2.244-.263 1.053-2.025.94 2.093 2.21.402-1.658 1.554M326.273 286.403l-1.955-1.128-2.03 1.004.454-2.257-1.568-1.654 2.243-.264 1.053-2.024.94 2.094 2.212.402-1.66 1.553M329.696 341.153l-1.656-.956-1.72.85.386-1.91-1.33-1.4 1.9-.223.893-1.715.795 1.772 1.874.34-1.407 1.316M283.3 252.597l-3.942-2.274-4.093 2.025.917-4.548-3.162-3.334 4.52-.53 2.124-4.08 1.894 4.22 4.46.81-3.345 3.132"/> + <path d="M444.368 285.817c1.944-5.083 4.45-12.75 5.783-19.786-67.742-59.508-143.26-89.993-238.68-83.72-3.422 6.558-6.16 13.423-8.47 20.853 113.063-10.786 195.936 39.27 241.37 82.654z" fill-rule="evenodd" fill="#fff"/> + <path d="M413.914 252.36l2.42 1.323c-.38.858-.48 1.61-.31 2.25.18.645.625 1.208 1.335 1.688.75.515 1.424.74 2.016.68.6-.06 1.045-.306 1.335-.734.183-.274.258-.563.225-.863-.027-.3-.192-.66-.495-1.075-.21-.28-.72-.873-1.53-1.777-1.04-1.16-1.66-2.138-1.86-2.936-.28-1.122-.11-2.14.51-3.06.4-.59.936-1.03 1.612-1.318.686-.29 1.433-.355 2.24-.198.81.157 1.664.54 2.55 1.143 1.453.987 2.33 2.048 2.63 3.184.305 1.138.117 2.253-.565 3.345l-2.404-1.484c.3-.665.375-1.24.218-1.723-.147-.485-.55-.95-1.21-1.397-.676-.46-1.302-.682-1.874-.663-.37.01-.654.168-.856.468-.186.277-.228.59-.13.943.13.45.668 1.193 1.625 2.234.953 1.04 1.604 1.89 1.95 2.547.355.657.516 1.34.482 2.05-.023.706-.284 1.427-.778 2.16-.45.667-1.053 1.163-1.812 1.493-.76.33-1.57.412-2.437.24-.86-.177-1.794-.607-2.798-1.29-1.462-.992-2.36-2.093-2.687-3.3-.322-1.213-.125-2.523.6-3.925zM402.436 244.827l2.472 1.22c-.345.872-.417 1.628-.22 2.26.208.637.672 1.183 1.4 1.635.775.482 1.455.68 2.043.596.6-.086 1.037-.346 1.306-.786.174-.28.236-.573.19-.87-.038-.302-.218-.655-.54-1.058-.22-.272-.75-.84-1.597-1.713-1.087-1.117-1.746-2.07-1.978-2.86-.323-1.11-.194-2.133.385-3.077.378-.606.896-1.066 1.56-1.38.674-.316 1.42-.413 2.23-.29.818.127 1.685.473 2.595 1.04 1.492.926 2.408 1.952 2.753 3.074.35 1.126.21 2.247-.427 3.365l-2.464-1.385c.275-.676.327-1.252.15-1.728-.168-.482-.59-.93-1.264-1.35-.697-.433-1.33-.628-1.9-.586-.37.025-.647.195-.838.504-.172.282-.204.594-.09.944.145.443.714 1.165 1.71 2.168.994 1 1.68 1.822 2.052 2.465.38.64.568 1.318.563 2.027.007.708-.227 1.437-.69 2.193-.42.68-1.008 1.202-1.75 1.565-.746.36-1.556.474-2.427.336-.865-.14-1.815-.536-2.848-1.175-1.498-.933-2.438-1.996-2.815-3.19-.374-1.2-.23-2.514.438-3.943zM388.23 241.02l7.276-11.966 8.837 5.416-1.23 2.026-6.43-3.942-1.615 2.652 5.983 3.668-1.225 2.015-5.984-3.667-1.977 3.256 6.657 4.08-1.228 2.017-9.063-5.557zM367.538 224.027l1.08-2.1 5.4 2.796-2.546 4.962c-.79.238-1.78.296-2.982.17-1.19-.13-2.295-.457-3.317-.986-1.3-.673-2.29-1.528-2.976-2.572-.683-1.05-1.01-2.205-.974-3.47.04-1.274.363-2.507.977-3.703.664-1.298 1.53-2.31 2.59-3.04 1.057-.727 2.25-1.09 3.57-1.09 1.008-.002 2.104.306 3.29.916 1.542.8 2.577 1.747 3.104 2.846.54 1.096.638 2.28.298 3.555l-2.728-.82c.14-.702.057-1.356-.25-1.957-.296-.606-.806-1.095-1.527-1.47-1.097-.567-2.146-.67-3.155-.305-1 .363-1.85 1.23-2.554 2.6-.76 1.48-1.005 2.76-.73 3.842.277 1.073.944 1.886 2.008 2.437.524.27 1.1.44 1.73.507.64.066 1.22.05 1.753-.05l.81-1.582-2.872-1.485zM277.296 201.648l2.034-13.867 4.172.62 1.123 9.826 3.86-9.093 4.188.618-2.033 13.87-2.59-.382 1.6-10.918-4.343 10.512-2.685-.398-1.134-11.32-1.6 10.915-2.592-.382zM263.188 200.01l1.305-13.96 10.307.974-.217 2.36-7.503-.706-.29 3.095 6.978.657-.22 2.352-6.98-.658-.353 3.8 7.764.73-.22 2.354-10.572-.998z" fill="#309e3a"/> + <g stroke-opacity=".502"> + <path d="M216.5 191.28c.04-1.43.284-2.62.736-3.58.335-.703.786-1.332 1.346-1.884.566-.552 1.18-.956 1.844-1.21.88-.347 1.888-.505 3.023-.475 2.056.06 3.682.744 4.877 2.057 1.205 1.315 1.775 3.114 1.714 5.395-.06 2.26-.72 4.017-1.982 5.264-1.26 1.24-2.914 1.834-4.963 1.777-2.077-.056-3.708-.736-4.9-2.037-1.19-1.308-1.755-3.078-1.694-5.307z" fill="#309e3a"/> + <path d="M219.414 191.252c-.043 1.586.29 2.8.997 3.643.708.837 1.625 1.27 2.748 1.3 1.122.03 2.055-.35 2.794-1.138.745-.797 1.14-2.007 1.184-3.633.043-1.605-.277-2.813-.96-3.622-.676-.81-1.595-1.23-2.757-1.262-1.162-.03-2.11.345-2.843 1.128-.733.777-1.12 1.972-1.163 3.584z" fill="#f7ffff"/> + </g> + <g stroke-opacity=".502"> + <path d="M233.052 198.51l.163-14.017 5.933.07c1.494.018 2.574.157 3.244.42.677.257 1.214.71 1.613 1.36s.593 1.385.584 2.215c-.013 1.052-.332 1.918-.956 2.598-.623.675-1.55 1.095-2.777 1.26.605.363 1.104.76 1.49 1.193.397.43.923 1.195 1.585 2.293l1.673 2.754-3.372-.04-2.002-3.074c-.71-1.098-1.198-1.788-1.46-2.072-.265-.29-.545-.487-.842-.593-.297-.11-.77-.17-1.418-.177l-.57-.008-.068 5.852-2.82-.033z" fill="#309e3a"/> + <path d="M235.976 190.455l2.086.024c1.353.016 2.198-.03 2.536-.142.337-.112.603-.305.796-.584s.293-.627.3-1.048c.004-.472-.118-.853-.37-1.142-.243-.296-.594-.486-1.05-.567-.23-.034-.915-.06-2.057-.072l-2.2-.026-.04 3.555z" fill="#fff"/> + </g> + <g stroke-opacity=".502"> + <path d="M249.003 185.188l5.147.26c1.16.06 2.04.195 2.64.405.804.283 1.484.75 2.036 1.396.553.646.958 1.426 1.218 2.34.26.907.356 2.015.29 3.326-.058 1.153-.252 2.138-.58 2.96-.4 1-.938 1.797-1.618 2.396-.51.453-1.19.79-2.034 1.016-.632.166-1.468.222-2.51.17l-5.295-.27.706-14z" fill="#309e3a"/> + <path d="M251.706 187.685l-.468 9.274 2.103.105c.786.042 1.357.025 1.71-.046.46-.093.85-.268 1.16-.526.32-.26.59-.695.81-1.31.223-.62.36-1.47.416-2.553s0-1.918-.16-2.507c-.16-.59-.404-1.053-.73-1.397-.327-.342-.75-.583-1.27-.724-.39-.11-1.157-.193-2.306-.25l-1.264-.067z" fill="#fff"/> + </g> + <g stroke-opacity=".502"> + <path d="M317.63 210.22l3.26-13.63 4.4 1.06c1.666.402 2.737.732 3.21.99.73.392 1.274.996 1.634 1.81.36.81.41 1.755.152 2.84-.2.836-.518 1.504-.958 2-.438.5-.932.854-1.48 1.07-.54.212-1.064.31-1.57.3-.685-.028-1.65-.19-2.89-.49l-1.786-.432-1.23 5.142-2.743-.66z" fill="#309e3a"/> + <path d="M323.086 199.552l-.926 3.868 1.5.362c1.082.26 1.82.364 2.218.308.4-.055.736-.21 1.013-.464.283-.253.473-.58.568-.984.12-.496.073-.94-.14-1.33-.214-.395-.533-.684-.957-.87-.312-.143-.96-.332-1.95-.57l-1.324-.32z" fill="#fff"/> + </g> + <g stroke-opacity=".502"> + <path d="M330.606 214.106l4.64-13.22 5.598 1.98c1.408.498 2.387.98 2.937 1.445.56.463.923 1.064 1.093 1.807s.12 1.505-.156 2.286c-.348.992-.928 1.71-1.736 2.153-.806.438-1.817.537-3.032.298.457.54.802 1.076 1.03 1.61.238.536.49 1.43.765 2.683l.704 3.15-3.18-1.126-.913-3.556c-.322-1.27-.562-2.08-.72-2.435-.158-.36-.36-.638-.607-.834-.246-.202-.673-.41-1.286-.627l-.536-.192-1.938 5.52-2.66-.942z" fill="#309e3a"/> + <path d="M335.938 207.426l1.967.695c1.276.452 2.09.68 2.445.683.355.005.67-.093.943-.295.272-.2.478-.5.616-.896.155-.445.162-.845.017-1.2-.135-.36-.408-.65-.813-.876-.206-.106-.847-.35-1.924-.73l-2.075-.736-1.177 3.356z" fill="#fff"/> + </g> + <g stroke-opacity=".502"> + <path d="M347.01 213.6c.424-1.363.982-2.444 1.673-3.24.517-.59 1.117-1.072 1.808-1.45.696-.377 1.397-.598 2.102-.665.94-.093 1.953.03 3.038.37 1.965.614 3.344 1.717 4.14 3.308.803 1.593.867 3.48.19 5.658-.67 2.162-1.78 3.67-3.33 4.528-1.548.852-3.302.97-5.26.357-1.982-.62-3.37-1.718-4.164-3.294-.793-1.583-.858-3.44-.196-5.57z" fill="#309e3a"/> + <path d="M349.826 214.385c-.47 1.514-.48 2.773-.026 3.778.455.996 1.22 1.663 2.293 2 1.073.334 2.07.223 2.996-.336.932-.562 1.64-1.62 2.122-3.172.476-1.535.495-2.783.056-3.75-.432-.962-1.204-1.618-2.313-1.964-1.11-.347-2.123-.243-3.04.312-.915.548-1.61 1.592-2.09 3.133z" fill="#fff"/> + </g> + <g stroke-opacity=".502"> + <path d="M374.305 233.12l6.415-12.45 5.27 2.736c1.326.69 2.23 1.3 2.71 1.84.49.532.768 1.18.835 1.94s-.092 1.505-.47 2.242c-.48.934-1.153 1.564-2.017 1.892-.86.322-1.872.28-3.043-.128.378.598.645 1.18.8 1.74.158.564.288 1.484.387 2.763l.262 3.215-2.993-1.555-.415-3.648c-.145-1.304-.27-2.14-.378-2.512-.105-.377-.27-.682-.487-.91-.214-.233-.61-.5-1.186-.798l-.507-.264-2.677 5.197-2.505-1.3z" fill="#309e3a"/> + <path d="M380.503 227.226l1.853.962c1.2.625 1.977.962 2.33 1.016.35.054.675 0 .973-.162.296-.16.54-.428.733-.803.216-.42.276-.814.184-1.186-.087-.374-.315-.702-.685-.98-.19-.134-.79-.465-1.808-.993l-1.952-1.013-1.63 3.16z" fill="#fff"/> + </g> + <g stroke-opacity=".502"> + <path d="M426.107 258.704c.797-1.183 1.642-2.056 2.536-2.62.662-.412 1.377-.7 2.146-.862.774-.16 1.507-.168 2.2-.028.93.184 1.864.596 2.805 1.235 1.704 1.156 2.708 2.612 3.014 4.366.31 1.758-.173 3.58-1.448 5.472-1.263 1.873-2.758 2.998-4.488 3.37-1.728.365-3.44-.028-5.14-1.182-1.718-1.168-2.732-2.622-3.04-4.362-.303-1.746.168-3.543 1.413-5.39z" fill="#309e3a"/> + <path d="M428.578 260.254c-.886 1.316-1.256 2.518-1.112 3.61.15 1.087.69 1.945 1.62 2.578.932.632 1.92.815 2.967.55 1.055-.27 2.037-1.077 2.944-2.425.896-1.33 1.273-2.52 1.13-3.572-.138-1.047-.688-1.898-1.65-2.552s-1.962-.85-3-.583c-1.033.26-1.998 1.06-2.9 2.394z" fill="#fff"/> + </g> + <path d="M301.824 204.523l2.248-9.84 7.268 1.675-.378 1.662-5.287-1.217-.504 2.18 4.926 1.136-.382 1.655-4.918-1.132-.614 2.677 5.475 1.26-.378 1.66-7.456-1.717z" fill="#309e3a"/> + </g> +</svg> diff --git a/s/flag/bs.svg b/s/flag/bs.svg new file mode 100755 index 0000000..5e7cc13 --- /dev/null +++ b/s/flag/bs.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-12 0h640v480H-12z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="translate(12)"> + <path fill="#fff" d="M968.53 480H-10.45V1.77h978.98z"/> + <path fill="#ffe900" d="M968.53 344.48H-10.45V143.3h978.98z"/> + <path fill="#08ced6" d="M968.53 480H-10.45V320.59h978.98zM968.53 161.31H-10.45V1.9h978.98z"/> + <path d="M-10.913 0c2.173 0 391.71 236.82 391.71 236.82l-392.8 242.38L-10.916 0z"/> + </g> +</svg> diff --git a/s/flag/bt.svg b/s/flag/bt.svg new file mode 100755 index 0000000..8de9197 --- /dev/null +++ b/s/flag/bt.svg @@ -0,0 +1,124 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <path d="M0 0v480L640 0H0z" fill-rule="evenodd" fill="#ffca00"/> + <path d="M0 480h640V0L0 480z" fill-rule="evenodd" fill="#ff6500"/> + <g stroke="#000"> + <path stroke-linejoin="round" d="M222.393 340.58s-18.31-.63-25.887 8.63c-7.576 9.26-36.75 35.224-39.145 37.044-1.085.728-24.415 5.47-24.415 5.47 11.455-11.434 24.267-15.61 34.777-35.636-5.245 10.048-9.256 14.446-15.39 19.972-5.333-2.482-19.168 8.28-30.75 13.35.21-.423 12.7-10.52 19.473-23.41-3.858 3.368-12.67 11.835-16.528 15.202-9.175.874-13.332 11.04-16.837 12.416-21.492 6.986-15.125 2.73-19.995 7.367-1.964 3.844-6.16 6.91-8.72 7.163-20.165 1.995-20.748 8.618-31.06 12.41-6.587 1.927-10.773.065-14.52-2.526 5.05-1.822 11.34-1.388 15.153-5.47 0 0 18.468-22.004 35.357-24.414 9.682-1.685 11.155-7.367 11.155-7.367s-28.623 7.998-33.463 12.208c-4.55 1.295-12.3 2.413-19.153 1.684 12.664-4.66 20.5-11.062 23.994-14.943 2.002-2.224 13.89-2.316 13.89-2.316s19.995-8.63 20.416-8.63 15.154-8.63 15.154-8.63-17.68 4.63-18.1 4.63-20.65.84-20.65.632c5.388-6.898 24.808-7.378 27.595-9.05 6.503-6.503 26.73-4 27.572-4.842.84-.84-21.258-7.577-30.518-5.682-9.26 1.894-23.362-9.68-23.362-9.68s19.363-2.95 25.677-.212 29.045 8.63 30.31 7.576c1.26-1.05 26.19-9.89 29.043-6.734-2.455-5.25-5.555-5.11-5.473-9.682 4.63.212 9.26.42 13.892.633 0 0 7.155-9.473 6.943-9.892-6.495-2.38-7.963-8.97-7.963-8.97 8.326 1.39 11.12.34 11.12.552 0 .21 7.368-8.21 7.368-8.21l5.052-7.997 3.788-17.26c-7.653 4.14-22.31-.208-22.098-.42 15.93-5.587 20.75-13.683 27.99-14.1-3.102-15.726 6.103-21.048 6.103-20.836 0 .208 6.316-13.684 6.316-13.684s-6.747-2.27-19.365 0c11.958-14.193 30.94-9.05 30.94-9.05 3.917-12.584 15.997-7.997 15.997-8.418-3.076-6.853 6.154-10.33 12.15-10.124-.86-5.107-6.333-10.5-8.436-14.78 10.028 6.448 20.476 3.945 25.75 13.328 3.158.35 6.313.702 9.47 1.053 0 0 10.523 1.894 10.735 1.894.21 0 10.944 1.05 10.944 1.05 1.882-5.333-4.764-4.653-3.16-17.678 12.82 6.37 11.938 19.03 22.1 26.238 8.01-.552 10.43 2.253 14.384 5.896 4.615-.98 10.252 1.068 13.188 5.75-.14-4.963 1.287-11.967 7.58-3.158l11.573-.42s-15.206-22.152-28.624-9.68c3.924-13.54 17.68-12.208 17.68-12.208s-3.575-6.198-3.366-13.05c-7.343-2.936-9.682-15.364-9.89-15.153-.213.21-12.51 2.437-18.103 17.048-10.487-11.4 3.723-25.555 4.56-28.073 1.444-5.392 2.888-10.784 4.334-16.176-1.134-5.313-.694-7.948 4.157-12.158-3.234-3.35-1.745-6.54 2.104-8.63-1.3-2.29-.238-4.58.352-6.87l51.42-2.938 11.58 15.912 1.895 8.63-4.42 11.365 13.26 15.785 4.84 5.05 10.102 5.895s9.474 3.998 9.683 4.21c.212.21 11.364 2.946 11.786 3.156.422.21 9.262 5.262 10.735 5.683s28.623 0 28.623 0l15.156-1.263-.212 24.835-7.998 1.894c-3.446 2.962-4.445 4.693-10.34 8.886-8.16 2.286-14.074 1.85-14.283 1.85-.21 0-8.21-2.107-8.418-2.317-.212-.208-9.052-2.945-9.052-2.945l-13.89-3.368c-5.713-.898-7.997 2.947-8.418 3.578-.42.632-2.736 27.993-2.736 27.993s-4.843 12.417-4.843 12.63c0 .208-4.488 8.298-7.998 11.154-.65 3.346-1.176 6.914-9.258 12.838-1.714 5.353-.326 10.514 5.47 11.576l8.42 3.367c4.208.983 8.418 1.963 12.627 2.946l13.892 2.947-9.892 21.678-24.414-4s-16.207-4.21-16.416-4.21c-.212 0-17.892-9.47-17.892-9.47s-5.683-12.838-5.683-13.05c0-.21-5.052-10.734-4.84-11.364.21-.63.21-6.733.21-6.945 0-.21-17.048-3.576-17.048-3.576l-17.89-1.896-19.574-5.263-14.943-4.418-9.683-3.367-10.734-.842s-14.1 2.103-14.1 2.315c0 .21-12.417 3.576-12.417 3.788 0 .21-7.997 18.732-7.997 18.732l-3.788 14.31 5.89 10.946 2.107 30.518-5.473 11.365 3.788 8.418 7.576 12.42 4.42 8.628-27.578 8.742-3.57-14.215s-9.472-23.36-9.26-23.572c.21-.21.42-7.79.42-7.998z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M250.288 306.99c5.733 1.72 5.84-9.547 10.414-13.746 3.632-15.193 23.278-14.663 29.506-4.47-20.83-1.568-12.814 10.136-19.222 15.2 16.385-7.74 31.47-6.394 34.87 4.47-6.586 12.52-12.74 24.173-19.325 36.69-10.492 5.24-15.218-1.928-26.723-8.522l-8.046-1.343c-.295-9.09-1.172-19.188-1.472-28.28zM263.11 377.456s28.028-.877 28.128 12.612c2.562 7.752 10.68 7.156-1.75 27.625.497-26.33-16.39-26.97-28.235-26.36 14.774 2.068 17.405 24.18 10.925 32.628-16.734-.598-30.732-4.232-47.467-4.83-5.845-6.462-12.757-21.575 9.787-32.286 9.54-3.13 19.076-6.26 28.613-9.388zM450.72 302.804l8.045-3.128s24.732-30.04 43.813-13.413c-13.097 1.97-23.768 17.786-23.768 17.786 7.1-5.288 33.77-3.62 30.9 19.79-28.555 8.454-29.36 23.432-27.697 41.258-19.007-.32-39.977-10.157-40.857-40.69 2.533-7.3 7.03-14.303 9.563-21.604zM553.028 175.584c0 10.345-8.387 18.732-18.732 18.732s-18.732-8.387-18.732-18.732 8.387-18.732 18.732-18.732 18.732 8.387 18.732 18.732z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M508.125 209.678c6.896 5.317 15.106 7.26 30.25 9.012 7.977-4.683 22.7-4.493 23.834-14.896 7.952-2.84 9.72-12.427 3.14-15.078-.28-2.813.168-13.73-12.06-13.982 1.642 4.06 3.107 15.2 3.107 15.2-6.373-.75-10.73 10.283-10.73 9.836 0-.223 3.514-17.49-13.504-18.015 5.855 9.787-1.695 17.568-1.695 17.568-1.79-2.235-1.8-6.158-5.086-7.362-8.45-3.556-10.06-13.863-9.7-19.39-4.43 3.743-7.734 7.486-7.57 12.447.066 8.158-.334 16.034.013 24.66z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M533 110.03c14.414-2.008 27.32-5.774 35.816-12.097 2.742-2.042 25.88 1.828 37.792-5.287-18.056-1.04-30.017-3.608-33.233-2.544-10.114 2.952-33.675 9.496-35.52 8.663-.163 1.67-3.03 8.942-4.855 11.264z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M537.9 98.633c10.312-2.413 12.672-7.418 18.762-11.073 9.322-3.73 14.5-3.865 23.797-13.474-24.174 3.293-26.887 4.142-26.887 4.142-5.012 3.05-11.91 7.732-17.335 14.837 1.642 1.747 1.544 3.55 1.663 5.568z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M536.18 93c0-.1 9.433-10.585 9.515-15.072.413-1.507 4.816-3.995 6.472-9.89 1.075-16.077 2.57-16.43 2.57-16.43 7.573-4.253 5.96-13.474 9.478-20.378 0 0-11.116 12.412-17.325 19.217-1.656 3.576-2.09 12.745-2.19 12.745-1.755 4.14-6.282 4.68-9.758 11.55-1.957 5.212-.326 9.983-3.277 16.767 2.014.035 3.1.53 4.514 1.49zM515.372 340.39c0 13.95-11.307 25.257-25.256 25.257S464.86 354.34 464.86 340.39s11.307-25.256 25.256-25.256 25.256 11.308 25.256 25.257z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M270.79 425.804c0 12.67-10.27 22.94-22.94 22.94s-22.94-10.27-22.94-22.94 10.27-22.94 22.94-22.94 22.94 10.27 22.94 22.94z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9933277199999999" fill="#fff"/> + <path stroke-linejoin="round" d="M312.25 325.64c0 10.926-8.857 19.784-19.783 19.784s-19.784-8.858-19.784-19.784 8.857-19.784 19.784-19.784 19.784 8.857 19.784 19.784zM221.89 348.634c-7.158.42-14.443 2.903-14.23 3.115.208.208 7.788 4.208 6.733 5.472-1.052 1.26-11.216 12.578-10.583 12.578 7.632 2.2 17.74-2.477 17.74-2.477s-4.124 6.64-4.807 8.68c6.803-3.665 13.184 1.122 14.732-2.542l-9.585-24.826zM372.094 282.91c-4.326 2.665-18.875-.332-18.875-.332 4.285 4.44 7 7.61 16.887 8.61-7.062 3.203-11.66 7.75-19.924 10.498 12.925 5.53 21.58-3.544 21.58-3.213s2.51 5.918.543 13.876c5.113-1.347 6.315-6.563 10.138-5.47-3.2-7.618-7.147-16.354-10.35-23.97zM453.157 216.21c-.366 2.4-.832 6.703-10.684 11.692 6.445 2.797 17.22-3.312 17.22-2.98s-8.76 15.602 6.29 22.185c-.4-11.785 1.656-21.192 1.656-21.192s5.533 7.61 9.602 16.557c6.5-6.99-2.318-20.2-2.318-20.2-7.176-1.656-14.837-4.406-21.767-6.06zM462.428 146.976s19.485 13.242 19.57 15.014c.08 1.77-1.773 9.11-8.096 12.398 15.18 1.77 16.782-7.76 16.782-7.76s-3.12 10.796-.59 14c8.35-5.144 8.097-13.325 8.097-13.325s5.567 8.434 4.303 12.99c1.77-.93 11.386-10.966 2.697-15.858 2.024-6.578 2.784-10.71-4.554-13.663-.786-3.964 1.293-5.23 1.94-7.844 0 0-7.254-2.193-8.096 4.048-.676 1.265-23.318-13.31-23.57-13.394-.076.383-8.482 13.48-8.482 13.394z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M467.647 139s18.043 9.58 19.225 11.857" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M530.722 91.472c-2.392 0-11.92-2.98-18.212 1.656-2.875-4.618-5.96-8.237-15.074-6.292.082-4.125-1.552-3.595-3.732-4.892-2.297-5.004-5.974-7.22-13.08-4.048-6.187-6.366-16.188-6.646-23.21-1.72-10.615-3.15-24.666.523-50.953.23-1.816-.06-10.884 3.194-5.213 10.762-10.917-6.75-15.49 5.665-4.635 7.616 2.65 2.65 5.63 8.278 5.63 8.278s-18.98-13.57-29.406 1.606c-3.38 15.35 12.912 4.36 21.015 10.15 4.857 4.304 9.496 8.775 14.35 13.08 8.06-1.656 14.945-1.707 23-2.128-7.284 2.097-13.396 1.355-20.68 3.452 1.753 2.413 4.678 3.222 10.998 2.98l-13.446 4.698c8.236 6.372 18.63 2.187 26.56 3.31-5.03 7.535-15.365 15.5-28.418 11.86 5.62 8.952 16.793 7.807 28.182-3.805 9.534 1.66 15.714 2.83 27.892-1.29.588-.77 9.555-14.115 9.174-15.258 1.632.49 26.31 9.332 27.802 12.075.188-3.403 4.914-6.903-23.842-14.9-5.42-4.41 13.908-9.935 13.908-9.935l-.33 7.947c5.437-3.318 5.726-4.645 6.953-6.623 1.987-1.323 6.29 2.65 6.29 2.65l.242 7.004c2.395-.87 3.733-1.043 5.39-3.36s4.83 2.766 4.83 2.766c4.95.49 13.312-1.847 17.47-8.766-1.882-7.027-.99-8.985 2.75-10.388 6.137-9.997 7.543-18.66-2.203-18.714z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M494.456 147.146s-3.038 3.795-2.448 11.133" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M406.638 139.705s7.778 11.852 10.433 12.593c2.655.74 20.99 19.384 21.977 20.186 1.174.494 11.42.247 11.42.247-7.53-6.5-13.828-13.374-20.742-20.062 0 0-10.617-5.247-10.678-5.37s-5.68-7.655-5.68-7.655c-1.79-.576-3.703-1.46-5.37-2.84l-1.36 2.902z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M481.98 162.074c3.456-.844 8.264 2.024 8.6 4.47 1.857-1.097 5.99-1.097 7.508.337.675-1.01 3.71-3.71 6.832-2.53M494.562 147.146s2.527 2.024 5.902 1.012" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M535.808 156.746c4.186-.597 38.452-20.62 46.815 4.682-2.887-21.416-18.625-21.018-18.625-21.018s-.697-10.26-15.14-8.566c9.465 6.973 1.494 12.55.797 13.547-2.458-6.607-3.52-10.026-11.057-12.948 3.023 11.62-3.32 13.18-4.98 18.726-3.35-2.39-5.91-6.773-7.868-10.06-2.657 7.703-.33 12.318 2.69 16.335 2.656-.664 5.11-.83 7.368-.697z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M530.245 120.66c1.32 2.417 6.88 9.362-2.877 22.604-3.078-4.282-4.734-6.914-4.734-6.914s-8.315 5.41-7.367 23.984c-3.112-7.46-7.735-16.866 1.857-30.997-6.924 11.145-9.18 12.378-14.477 12.223 8.112-5.785 9.89-12.046 10.045-12.046 1.48.497 10.634.024 17.553-8.855z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M524.02 90.52c1.82 6.79-3.182 11.495-7.028 15.12 8.35 16.368-18.454 15.05-8.787-.22" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M497.873 107.838s-1.976 2.527-.328 6.042M486.51 108.01c2.394.59 4.386 3.686.515 6.01-1.55.92-9.327-2.692-13.343 4.9" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M413.314 92.784c-3.144-.258-4.69 1.34-.927 5M416.308 82.01c-3.66-1.598-5.36 2.216-.98 5.257M426.824 82.32c-3.194-2.887-5.98 2.32-.874 4.278M442.746 82.32c-3.35-2.835-4.485 1.288-3.452 2.68" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M462.508 125.58c0 8.595-6.968 15.563-15.564 15.563s-15.563-6.968-15.563-15.564 6.97-15.564 15.564-15.564 15.564 6.968 15.564 15.563z" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M461.607 130.684c-.424-.9-9.987-10.366-13.007-9.078-2.472.107-10.035 16.604-9.704 17.267 7.83 5.52 19.895.65 22.703-8.188z" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M456.52 125.71c-1.178-.764-2.08-1.458-3.122.07-1.04 1.526-6.732 15.34-6.732 15.34M474.243 94.508c-10.41-5.83-29.733 2.813-16.89 8.852-10.968-3.332-10.483 6.108-10.483 6.108M451.938 84.73c4.127-6.13 9.825-8.228 13.555-.544 4.967 6.623 14.306 1.67 14.306 1.67" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M423.593 89.817s-4.636 2.152-.33 5.463M447.117 87.003s-4.472.663-2.983 5.464" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M442.136 95.28c-.164 0-4.636.165-3.144 4.966M436.997 103.393c-.167.166-5.63-2.318-2.816 4.636" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M457.607 76.237c-19.42-11.836-40.01-35.675-68.267-26.59 28.674 5.086 46.18 21.006 46.762 25.924 10.585-.832 13.502-.582 21.505.668z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M429.34 75.74c-2.582-3.168-12.336-20.756-32.172-20.422 15.17 7.752 24.255 18.338 25.09 21.005 2.83-.167 4.83-.417 7.083-.584z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M412.334 76.49s2.252-16.505 5.502-18.505S407 53.483 407.168 67.987c-11.84-9.67-23.005-8.002-24.84-7.335-1.834.667-27.84-.584-30.923 5.25 19.17-.415 24.67.835 26.422 2.752 11.754-3 18.422-1.25 26.258 8.085 3.584-.668 8.25 0 8.25-.25z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M393.843 85.157c-4.75-4.668-8.702-7.57-22.962-8.764-2.08-.265-7.573-1.425-10.96-2.572 9.067-6.28 36.59 2.585 39.674 6.67-.916 2.833.202 4.73 1.7 6.564-2.542-1.52-4.775-2.134-7.45-1.897z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M403.67 77.008s-7.098-6.5-12.56-6.39c3.168 1.91 6.773 7.373 8.956 9.34 1.53-1.748 1.147-1.64 3.605-2.95z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M389.234 70.944c-.273.11-11.96 7.32 1.202 16.932-.874 6.172 6.443 7.046 6.443 7.046s5.41 8.193 5.41 8.14c-11.626-7.737-21.427-5.855-25.04-2.687-7.047-10.323-18.984-12.007-23.353-13.263-5.462-1.202-20.594-2.458-21.63 11.25-14.53-14.254 8.467-20.37 12.398-19.935 3.932-.71 26 3.55 27.418 6.336-1.255-13.054 10.597-19.99 17.15-13.82zM432.732 118.443s-38.783-7.23-51.432 1.39c-12.65 8.618-14.316 21.407-32.666 23.353-18.348 1.946-20.295 5.42-27.106 14.874 10.15-3.197 32.112-10.148 47.263-7.09 6.255-7.012 9.73-10.286 9.174-10.425 4.726-15.57 37.67-21.546 53.24-15.986.278-3.893 1.947-5.7 1.528-6.117zM374.08 112.604l-57.967 1.668c-5.282 1.668-11.674 5.978-12.65 7.228-.97 1.252 2.504-13.622 10.15-12.927 9.867.973 36.835-.14 36.835-.14 8.202-3.057 17.1-6.116 22.52-4.03-1.947 4.865 1.113 8.2 1.113 8.2z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M479.833 95.626s-16.024-4.872-11.82 11.567c6.453 8.193 15.73-3.963 15.6-5.19" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M436.15 114.19c-3.54-5.798-25.655-13.662-33.226-11.008 12.14 5.7 29.49 11.45 30.52 14.597 1.426-2.557 2.607-3.54 2.705-3.59z" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M510.642 94.11s-13.367 3.653-18.334.673-17.286-7.395-11.852-16.91" fill-rule="evenodd" fill-opacity=".3" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M375.194 97.992s-33.917-.84-39.522 9.32c22.072-5.116 38.33-4.415 38.33-4.415l3.083-2.803-1.89-2.102z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M437.05 90.084s-7.84.238-4.037 5.702" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M508.284 191.48s11.344-.377 12.658-1.877M556.365 190.072s4.78 3.375 9-1.406M534.43 190.822s3.188 6 11.344 3.374M516.258 203.572s-2.437 6.093 9.563 5.53c3.096 1.876.936 7.875.936 7.875M532.285 174.977s6.75-.375 7.97 2.625M534.802 166.447s2.252.188 3 2.906c.75 2.72 3.47 1.313 5.064.094M503.754 340.236c-5.89-5.59-18.58-5.74-12.538 8.16 2.114-6.348 6.043-8.764 12.538-8.16zM501.344 348.528c-1.66-1.208-2.57 1.208-2.117 1.66M505.556 307.732s-9.065-1.057-5.44 9.518M478.667 283.89s-1.21 10.726 7.25 11.934M466.296 350.038c0-.15-7.854-3.476-10.273 7.25M458.88 299.89s0 9.063 4.078 12.387M455.567 322.408c-.15 0-13.142 5.136-13.142 11.934M245.706 426.597c0-.15 8.35-8.806 10.172.91-.154 3.644-1.976 7.138-1.976 7.138M253.123 428.716s-4.707-.305-5.314 2.58M273.627 402.596c0-.15-10.63-3.34-12.15 4.858M218.976 408.238s8.806-5.163 13.664.456M291.35 390.357c0-.15-8.146-.056-9.36 5.41" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M409.34 155.946c-.966.955-.837 1.008-1.835 1.243-.97.357-1.926.408-3.068.408-.784-.26-1.682-.864-2.453-1.635-.73-.872-1.09-1.554-1.43-2.454 0-.63-.268-1.557-.43-1.936.323.646.93 1.676 1.248 2.344.347 1.087.69 2.346 1.02 3.476.273 1.267.41 2.458.41 3.884-.206 1.564-.627 2.95-1.226 3.885-.845.45-1.317.682-2.453.817-1.232 0-1.627-.215-2.66-.613-.477-.62-1.462-1.678-2.042-2.453-.296-1.148-.545-2.065-.614-3.27-.498-.718-.734-1.35-1.226-2.046-.223-.818-.594-1.226-.82-2.044-.253-.642-.818-1.307-1.096-1.896" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M261.415 391.284s-5.924 4.68-4.936 8.73M293.548 320.606s-9.52 2.31-4.76 10.676M293.416 324.95s-2.02 6.78 1.298 9.233M298.74 325.375c.146.434-1.298 7.213-3.316 8.368M287.932 299.254s-.432 5.77 2.164 6.782M270.607 282.088s-2.307 6.782 6.347 9.09M254.74 304.447c0 .288 2.306 10.962 6.924 10.673M272.62 325.507s-11.828-6.636-12.983 10.82" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path d="M477.396 96.993c1.157-1.097 5.18-2.408 6.278 3.656 1.097 6.063-7.07 5.346-7.134 4.378-2.193-.903-2.305-5.648.856-8.035zM494.615 83.024s-10.485-1.278-9.516 7.495c6.127 5.418 10.787.06 11.817-2.908.514-2.128.344-3.942-2.302-4.588z" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999"/> + <path stroke-linejoin="round" d="M350.37 113.367s1.262 9.448-6.295 7.243c-7.558-2.204 11.65 4.724-3.15 7.558-3.07 4.3-2.52 5.04-2.52 5.04s8.07-.815 3.052 9.805c-1.89 5.668 2.837-12.398 17.972-3.17-6.93-6.764-1.943-6.675 7.633-6.32-13.282-2.172-12.596-14.488 6.928-8.504-.026-1.837-3.602-7.32 2.835-10.393 12.597-3.464-26.138-.63-26.454-1.26z" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M347.325 120.997c2.05.977 10.165 16.422 15.736-7.918-2.442-.588-12.61.292-12.61.292.23 3.714-.423 6.158-3.125 7.625z" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M344.596 127.254c-.463 1.123-1.16 2.984-1.515 4.142 0 .78.004 1.624.14 2.21.105.965.415 1.66.825 2.484.392.555.453.694 1.105.83.527.302 2.747.31 3.452.413h2.347c1.104 0 2.08.01 3.037-.414.68-.195 1.22-.38 1.518-.968.676-.337.657-.676 1.105-1.38.193-.39.588-1.074.83-1.52.317-.49.413-.61.413-1.242.196-.39.14-1.19.14-1.795-.027-.87-.143-1.666-.278-2.485-.133-.443-.345-.725-.69-.553-1.41.557-2.96-.552-4.558-.552-1.523-.228-2.352-.622-3.865-.828-.63 0-3.566.928-4.006 1.657zM490.906 186.424h.204c-.6 0-.262-.035.82.613.722.258 1.413.52 2.04.818.372.542.777 1.163 1.23 1.636.244.612.56 1.575.816 2.25 0 .944.112 1.624-.408 2.044-.37.94-.932 1.03-1.43 1.635-.737.245-1.314.582-2.25 1.022-.987.266-1.406.585-2.452.817-1.09.492-1.807.58-3.068.613-.75 0-3.796-.17-4.546-.17 1-.034 4.196-.075 4.954-.24 1.123 0 1.756.12 2.453.614.918.318 1.44.597 2.248.818.56.223 1.672.323 2.25.613.325.544.942.832.614 1.43-.43.52-1.24.814-2.045 1.024-.535.364-4.59 1.07-5.13 1.434-1.927.165 3.874-.46 4.518-.617 1.17-.015 1.9-.15 2.86 0 .872.13 1.664.52 2.454.817.52.694 1.138 1.03 1.633 1.84.628.517.806.865.82 2.044-.258.514.22 1.964.153 2.735l-.898 2.69" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M474.35 186.628h.203c-.553 0-.27-.013.82.205.688.482 1.898.667 3.064 1.022.652.308 1.258.664 1.84 1.022.6.3 1.38.844 1.84 1.43.837.28 1.01.782 1.637 1.228.217.986.484 1.508.612 2.453-.083 1.09-.448 1.304-.816 2.044-.602.408-.97.945-1.84 1.227-.815.325-1.843.593-3.07.817-1.734.33-3.416.697-5.11.818-.842 0-1.048.18-1.84.204 1.025.01 2.38.088 3.067.408 1.28.013 2.737.113 3.68.41 1.862.23 3.648.54 5.52.612.377.61.68.935.82 1.84-.496.363-.84 1.042-1.227 1.43-.612.377-1.22.765-2.25 1.023-1.13.404-2.39.41-3.68.41h-6.542c-.2-.08-1.635-.205-.82-.205.85.39 2.542.8 3.68 1.022.782.228 1.225.648 1.638 1.227.495.374 1.248 1.06 1.634 1.43.32.535.41.873.41 1.84-.097 1.254-.505 1.27-1.432 2.045-.988.647-1.762.78-2.86 1.022h-3.07c-.82-.22-5.557-3.004-6.163-3.188.84.3 5.36 3.303 5.756 4.21.216.647.205 1.716.205 2.658-.037.993-.16 1.7-.612 2.248-.042.795-.257.615-1.022.615l1.023-.615c-.042.795-.257.615-1.022.615M484.575 202.78h1.022c.673.457.668 1.032 1.638 1.226.74.283 1.483.678 2.042 1.022.3.504.41.726.41 1.636 0 1 .23 2.356-.203 2.862-.355.415-1.643.403-2.25.614-.876.303-1.626.765-2.378.913-.95.187-2.49.087-3.142.518-.914.07-1.57.205-2.657.205-.63 0-1.052-.042-1.43-.204.92.32 2.407.69 3.472 1.227.974.275 1.507.71 2.248 1.227.798.59 1.26.91 1.434 1.84.407.6.407 1.382.407 2.452-.226.676-.374 1.65-.615 2.25-.445.66-.98.783-1.635 1.226-.476.053-.34.153-.818.206" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M466.376 186.424c.34.14 1.382.65 2.045 1.022 1.203.29 1.993.786 2.862 1.022.453.56.983.79 1.226 1.636.71.926.882 1.412 1.023 2.453-.087 1.144-.27 1.375-1.226 1.636-.712.237-1.53.374-2.453.41-.844.113-1.61.293-2.452.408-.577.29-1.764.205-2.657.205-.88.068-2.32.26-3.353.26 1.15.043 2.875.15 4.17.15 1.248.132 2.477.198 3.068.817.9.34 1.41 1.072 2.25 1.43.404.6.878.945 1.225 1.636-.283.795-.728 1.06-1.637 1.227-.577.29-1.762.204-2.657.204-.622-.313-1.91-.205-2.86-.205h-2.25c.842.29 2.2.617 3.272.818.755.43 1.925.792 2.453 1.226.332.51.878.794 1.227 1.43.458.37.55 1.06.204 1.636-.084 1.018-.37 1.528-.817 2.044-.647.44-1.222.832-2.25 1.432-1.443.627-2.815.805-4.498.817-1.11 0-1.653-.168-2.657-.205-.91-.314-2.063-.44-2.86-.613-.875-.24-2.054-2.085-3.203-2.127.784.1 1.716 1.972 1.976 2.535.29.58.205 1.764.205 2.658-.32.548-.395 1.59-.615 2.25-.04.71-.114 1.65-.408 2.043l.408-2.043c-.04.71-.114 1.652-.408 2.044" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M454.958 181.332c0 .082.71.455 1.19 1.003.466.733.956 1.566 1.43 2.25.323.93.612 1.372.818 2.248.382.626.55 1.605.615 2.453-.036.954-.118 1.808-.614 2.453-.24.827-.65 1.154-1.43 1.43-.678.32-1.327.41-2.453.41-.75 0-2.398-.113-3.147-.113 1.295 0 3.49.113 4.78.113 1.424.09 2.367.21 3.07.817.892.252 1.61.7 2.044 1.227.694.512 1.35.633 1.635 1.43.214.648.204 1.716.204 2.66-.107 1.17-.444 1.197-1.432 1.43h-2.86c-.63-.21-1.808-.308-2.66-.41-.695-.093-1.48-.713-2.083-.912.535.508.435 1.7.448 2.753.156.723.204 1.666.204 2.658-.085 1.09-.347 1.38-1.023 1.84-1.086.236-2.686.204-4.087.204-1.145-.054-2.09-.205-3.272-.205-1.417 0-2.678-.157-3.987-.307.498.332.488 1.078.512 1.943.368.614.084 1.33 0 2.045-.07.887-.236 1.488-.615 2.044-.204 0-.352 1.12-.556 1.12" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M445.103 178.657c0 .068-.053-.043 1.023.818.622.5.932 1.127 1.43 1.84.18.77.44 1.45.612 2.25 0 1.19-.143 1.665-.612 2.452-.78.52-1.716.928-2.86 1.022-.68.225-1.633.345-2.456.408-.583.194-.512.313-1.32.41 1.31-.047 1.375-.206 2.753-.206.893 0 2.08-.084 2.657.205.916.124 1.576.252 2.045.818.842.23 1.208.6 1.634 1.226.627.427.995.792 1.226 1.637 0 1.112-.125 1.74-.408 2.453-.358.71-.694 1.125-1.43 1.636-.528.454-1.29.566-2.046.817h-2.863c-.754 0 2.462.077 3.885.205.84.154 1.364.496 2.042.818.602.407 1.383.467 1.842 1.022.746.265 1.095.806 1.84 1.227.177.414.092.31.408.204" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M436.653 175.155c1.004.496 1.555 2.255 1.71 3.297.284 1.036-.08 1.798-.407 2.862-.99.914-1.105 1.208-2.453 1.43-1.16.35-2.424.263-3.476.615-.7.287-1.353.55-2.25.817h-2.862c-.883.52.704.08 1.022 0 1.592 0 3.232.02 4.702-.205h5.927c1.047.158 1.198.515 1.638 1.43.435.528.575 1.425.612 2.454-.042 1.174-.23 1.52-.816 2.454-.587.728-1.098 1.046-1.84 1.635-.956.41-2.363.665-3.68.818-1.573 0-3.263-.092-4.702.204-1.086 0-5.422.29-5.044.67.716-.573 3.897-.465 5.044-.465 1.56-.32 2.95-.587 4.498-.613.978-.293 2.167-.397 3.27-.41 1.075.013 1.904.158 2.455.613.634.527 1.448 1.16 1.84 1.636.784.276 1.017.804 1.634 1.225.183.837.397 1.376.41 2.453-.254.72-.48 1.467-.818 2.045-.948.678-1.968 1.42-3.272 1.84-1.13.44-2.058.573-3.268.613-1.044 0-1.844.094-2.66.205-.75 0-6.88.113-7.63.113 1.844-.336 7.834-.112 9.063-.112 1.34 0 2.566.163 3.883.205.65.308 1.35.556 1.838 1.022.692.277 1.283 1.47 1.296 2.71" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M427.328 170.275c.18.364.906 1.8 1.226 2.658.22.886.204 1.862.204 2.862 0 1.28-.288 1.83-.818 2.862-1.116.75-1.98 1.47-3.272 1.84-1.08.194-1.966.127-3.065 0-.726-.29-1.33-.534-1.84-1.022-.777 0 .45.17.818.204.613.416 1.526.66 2.454 1.022 1.176.475 1.62.85 2.453 1.84.747.603.937.727 1.022 1.84.518.585.447 1.38.203 2.044-.63.42-1.31 1.098-1.838 1.636-.922.385-1.256.598-2.453.613-1.113-.04-1.688-.334-2.66-.41-.42-.393-.236-.305.41 0 .663.37 1.813 1.085 2.25 1.637.704.48.906.995 1.226 2.044.392 1.054.697 1.693 1.227 2.25.037 1.003.204 1.545.204 2.656-.287.713-.478 1.39-1.024 1.84-.228.838-.742 1.175-1.022 2.045-.803.473-1.83 1.454-2.453 2.044-.834.28-2.86.488-4.098.503" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M436.52 300.5c.302.71.64 1.494.816 2.25.09.74.204 1.313.204 2.248-.323.617-.395 1.353-.816 1.84-.267.75-.845 1.03-1.43 1.43-.79.34-1.346.6-2.456.616-1.076 0-2.032-.066-2.86-.207-.907-.424-2.984-1.16-2.356-.715.79.254 1.91.816 2.56 1.126.855.57 1.5.898 2.248 1.838.652.45.906.822 1.023 1.638-.81.28-1.94.688-3.068.815-.99 0-1.934-.046-2.657-.204-.662-.316-1.224-.626-2.045-.82l2.045.82c-.662-.316-1.224-.626-2.045-.82l-2.782-1.13c.55.524 3.657 1.814 4.01 2.564.288.718.47 1.592.614 2.657-.01 1.213-.117 2.596-.408 3.476-.233.847-.607 1.226-1.023 1.838h-.41M433.66 312.765h.203c-.57 0-.267-.027.82.408 1.135.712 1.416 1.007 2.248 2.25.393.865.708 1.122.82 2.044.344.578.132 1.425 0 2.045-.544.445-.835 1.023-1.434 1.43-.402.594-.924.95-1.43 1.43-.7.152-.986.36-1.84.41" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M436.732 307.043v.204c0-.602-.034-.262.612.818.845.586 1.012 1.203 1.227 2.453.242.965.175 1.855 0 2.658-.63.368-1.456.993-2.352 1.128" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M446.534 311.758h-.204c.55 0 .27-.013-.82.204-.852.286-1.882.204-2.86.204-.757-.267-1.457-.41-2.25-.816-.674-.14-.78-.384-1.636-.41M442.242 320.13h-.204c.554 0 .273.013-.816-.205-.882-.572-2.363-1.573-3.18-1.843" fill-rule="evenodd" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M507.887 192.578c-.355.106-3.566.322-4.51.39h-2.86c-.996-.223-1.976-.397-3.067-.41-.816 0-.57-.504-1.39-.504" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M505 200.734c-.07 0 2.83-.224 2.765-.224.34 0-3.653.224-3.992.224-.914.164-1.847.205-2.864.205-.64.12-2.096.127-2.658.408h-2.86c-.618-.033-.613-.172-1.227-.205" fill-rule="evenodd" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M425.473 297.427c.136.336 1.023 1.928 1.023 2.87-.013 1.074-.135 1.493-.612 2.044-.792.427-1.475.803-2.66.82h-3.68c-1.11 0-6.34-1.198-6.662-1.442.957.13 4.416 1.44 5.64 1.44 1.115.04 1.735.28 2.864.613 1.086.332 1.807.618 2.657.82.585.342 1.54.4 2.045.818.946.334.827.795 1.227 1.84-.08 1.035-.318 1.522-1.023 2.044-.45.554-1.293 1.044-2.25 1.43-.97.45-2.084.615-3.475.615h-2.86c-.676-.225-1.65-.373-2.25-.615l2.25.615c-.676-.225-1.65-.373-2.25-.615h-.206c.782.313.925.877 1.23 1.635.07.956.204 1.717.204 2.864-.194.822-.504 1.38-.82 2.046-.36.8-.688 1.353-1.225 2.042-.182.408-.415.742-.616.41" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M414.64 293.135c0 .07-.028-.064.407 1.023.423.51.572 1.348.818 2.045 0 .99-.048 1.934-.204 2.657-.41.667-.7 1.065-1.43 1.43-.48.578-1.046.742-2.044.82-.59.293-1.656.198-2.25 0-.752-.18-1.533-.398-2.045-.82-.844-.198-1.374-.458-1.837-1.022-.755-.188-.604-.612-.207 0 .625.516.652 1.073 1.023 2.045.012 1.073.203 1.547.203 2.657.188.86.312 1.626-.204 2.25-.28.783-.806 1.016-1.228 1.636-1.094.236-2.032.408-3.27.408-.632-.466-1.996-.885-2.454-1.43-.745-.337-1.35-.758-1.84-1.227-.566-.27-2.754-2.06-3.08-2.567.506.482 2.882 2.382 3.285 2.975.55.376 1.068.864 1.43 1.227.554.394.983 1.12 1.638 1.637.454.8.774 1.08.817 2.245v2.864c-.014 1.278-.2 1.45-.816 2.248-.126.38-.283.026-.41.408" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M406.877 307.043v.204c0-.64-.043-.257.818.818.708.382 1.52.824 2.25 1.023.527.456 1.364.45 1.944 1.02.93.124 2.01.575 3.07.614" fill-rule="evenodd" stroke-linecap="round" stroke-width=".9934124999999999" fill="#fff"/> + <path stroke-linejoin="round" d="M406.162 287.81c.312.297 1.75 2.1 1.944 3.073-.013 1.2-.132 1.555-.816 2.045-.678.32-1.327.408-2.453.408-1.094-.24-1.767-.93-2.864-1.43-.58-.567-1.31-.77-1.838-1.227-1.028-.35-1.206-.568-.207.203.986.535 1.82 1.04 2.453 1.43.868.605 1.16.7 1.638 1.842.23 1.17.533 2.223.612 3.476.453.666.52 1.418 0 2.046-.503.296-.723.408-1.634.408-.554-.48-1.13-.882-1.635-1.227-.4-.294-.95-.858-1.225-1.226-.543-.482-1.24-.847-1.637-1.43-.877-.384-1.28-.795-2.045-1.226-.705-1.084-.032-.056.41.408.504.805.885 1.684 1.227 2.453v3.067c-.016.86-.2 1.674-.41 2.25-1.042 0-1.842-.096-2.658-.207-.612-.244-1.58-.533-2.25-.816-.953-.53-1.55-1.024-1.838-1.842-.487-.557-.908-1.373-1.226-1.84-.405-.513-.564-.75-1.023-1.02.498.53.962 1.583 1.84 2.248.61.922 1.133 1.208 1.432 2.25.45.545.517 1.543.612 2.452 0 .893.084 2.08-.205 2.657-.13.962-.424 1.407-.82 2.045-.306.652-.66 1.258-1.02 1.838-.274 0-.205-.066-.205.204" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M410.347 284.552v.204c0-.273-.765 1.746-1.634 2.25-1.03.198-1.502.407-2.657.407h-3.068c-.734-.254-1.643-.535-2.453-.816-.673-.59-1.314-.795-2.045-1.433-.607-.593-.792-.933-1.53-1.733-.3-.393-.08-.028.918.71.908.84 1.163 1.066 1.43 2.046.29.58.204 1.765.204 2.658-.042 1.155-.14 1.528-1.022 1.84-.625.366-1.402.41-2.453.41-.525-.454-1.367-.764-2.045-1.432-.59-.39-1.283-1.306-1.84-1.838-.32-.496-1.76-2.247-2.256-2.565.533.36 2.24 2.35 2.87 2.768.426.75.94 1.12 1.432 1.634.424.718.692 1.4 1.227 1.84.114.844.294 1.61.408 2.454-.04 1.09-.22 1.55-.82 2.045-.79.778-.992.81-1.837.41-.702-.488-1.45-.915-2.045-1.43-.762-.21-1.4-.494-1.84-1.024-.745-.262-1.27-.84-1.84-1.226-.322-.647-.855-1.232-1.43-1.637l1.43 1.637c-.322-.647-.855-1.232-1.43-1.637l-3.502-4.324c.46.534 4.464 5.01 4.73 5.756.616.493.97 1.22 1.225 2.25.088.825.204 1.546.204 2.452-.543.57-.72.977-1.637 1.226h-2.86c-1.132-.042-1.484-.278-2.454-.614-.83-.48-1.19-.774-1.634-1.43-.6-.41-.946-.883-1.637-1.227-.276-.413-.59-.527-.82-1.023-.37-.16-.31-.41-.61-.614" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M412.096 280.764c-.067 0-1.476.116-2.565-.1-1.39-.088-2.926-.197-3.68-.82-1.082-.373-1.296-.86-1.84-1.43-.598-.72-1.36-1.444-1.84-2.456-.393-.898-.6-1.67-.613-2.86v-3.272c0-.567.387-3.725.106-4.006-.013 1.12-.516 4.24-.516 5.436 0 1.044-.093 1.844-.204 2.66-.477.763-.975 1.63-1.84 2.453-1.188 1.024-2.208 1.75-3.678 2.044-1.166.344-1.44.217-2.045-.82-.747-.558-1.13-1.474-1.227-2.656-.307-1.152-.164-2.323 0-3.475 0-1.023-.103-2.766-.103-3.788 0-.477.103 1.353.103 1.54 0 1.204.008 1.91-.615 2.86-.47 1.046-1.16 1.82-1.838 2.657-.694.718-1.314 1.012-2.25 1.226-.985 0-1.835.01-2.452-.408-.755-1.05-2.1-2.198-2.66-3.475V263.99c.337.715.41 3.338.41 4.405-.08 1.054-.516 1.603-.818 2.657-.75.715-1.263 1.335-2.25 2.045-1.093.56-2.033.983-3.27 1.227-1.325-.016-1.307-.12-1.84-1.227-.65-.728-.916-1.64-1.022-2.657-.283-.983-.492-1.963-.614-2.863-.2-.81-.2-2.65-.408-3.275v2.252c.12.925.395 1.727.408 2.864 0 1.006-.07 1.812-.408 2.453-.11.817-.36 3.11-.403 3.068" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M397.075 277.797c.088.442.408 1.804.408 2.863 0 1.2-.053 1.56-.612 2.454-.595.858-.953.815-2.248.815-1.118 0-1.878-.125-2.453-.612-.76-.27-1.145-.72-1.638-1.43-.56-.68-1.216-1.757-1.635-2.25-.204-.75-.614-2.633-.922-3.28-.214-.972.55 1.66.922 2.257.52.946 1.057 1.818 1.43 2.657.15.68.205 1.516.205 2.453-.41.578-.843 1.073-1.227 1.638-.734.243-1.44.394-2.453.408-.895-.135-1.414-.45-2.042-.818-.758-.252-1.166-.683-1.84-1.023-.385-.583-1.236-1.468-1.636-2.25-.498-.7-.654-1.782-1.022-2.453-.14-.977-.27-2.005-.615-2.657-.132-1.033-.33-1.764-1.023-2.25-.058-.53-.243-.433-.408-.817M381.737 282.724c.066.445.3 2.058.408 2.864-.013 1.173-.262 1.51-.612 2.25-.398.582-.692 1.2-.82 2.04-.54.45-.83 1.027-1.43 1.434-.317.475-.635.408-1.43.408-.273.085-1.446-.074-2.045-.204M380.518 280.472c-.222 1.04-.633 1.905-1.022 2.864-.594.657-1.052 1.28-1.43 1.84-.713.285-1.34.41-2.454.41-.56-.382-1.285-.682-1.84-1.023-.303-.13-.722-.28-1.024-.41M407.486 137.357v.205c0-.51.03-.266-.41.613-.872.99-1.31 1.297-2.454 1.636-1.226.692-3.02.92-4.702 1.023-1.385.235-2.898.212-4.29.41-.454-.655-1.366-1.224-1.842-1.84-.483-.557-.724-1.12-1.227-1.84-.335-1.008-.953-1.823-1.225-2.863-.34-.982-.575-2.06-.82-3.067-.118-.898-.333-1.497-.407-2.453-.734-.21-.06.26.204.817.572.857.744 1.787.82 3.067.147 1.05.203 2.122.203 3.27 0 1.184-.106 1.902-.408 2.66-.708.72-1.18.868-2.25 1.02-1.23.315-2.72.205-4.09.205-.975-.132-1.306-.472-2.25-.614-.486-.436-1.31-.902-1.837-1.226-.37-.45-.81-.628-1.023-1.023" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M391.14 138.618c0 .07.618.92.618.99 0-.572-.023-.27.41.817.404 1.21.165 1.717-.614 2.658-.83.912-1.782 1.7-2.657 2.453-.927.426-1.69.997-2.86 1.227-1.354.17-2.793.238-3.887 0-.787-.447-1.76-1.158-2.25-1.84-.59-.58-.9-1.154-1.226-1.84-.182-.674-.418-1.56-.815-2.044-.057-.588.017.158.128 1.047.25.742.014.28.075 1.2v2.863c-.387 1.3-.92 2.947-1.227 4.09-.427.625-.792.995-1.637 1.225-.934.555-1.84 1.09-2.862 1.43-.56.462-1.383.41-2.453.41-.904-.36-1.09-.57-1.84-1.43-.526-.413-.648-.668-1.024-1.023M363.14 150.444v.204c0-.64.043-.257-.818.818-.39.637-.91 1.213-1.635 1.84-.47.846-1.48 1.794-1.84 2.658-.87.442-2.155.74-3.27 1.022-1.174.12-2.36.26-3.476.41-1.636.1-3.223.203-4.907.203-.978-.012-1.974-.182-2.657-.41-.655-.54-.782-1.037-.816-2.248-.292-.87-.19-1.733-.615-2.25-.085-.476-.31-.772-.612-1.02" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M404.016 145.946v.204c0-.57.024-.266-.408.818-.47.75-1.163 1.622-1.637 2.25-.712.633-1.74 1.628-2.452 2.248-1.208 1.007-2.18 1.365-3.68 1.635-1.335.174-2.262-.18-3.476-.817-.96-1.007-1.096-1.305-1.634-2.453-.098-1-.18-1.813-.615-2.658-.18-.763-.434-1.48-.818-2.044.045-.702.328.423.41.818.223.558.323 1.67.612 2.25v2.86c.28 1.12.127 1.936 0 2.863-.347 1.17-.535 2.163-1.226 2.657-.797.28-1.923.41-3.064.41-1.396 0-2.933-.05-3.887-.615-.655-.445-1.203-1.07-2.043-2.044-.686-.89-1.19-1.354-1.433-2.25-.482-.724-.776-1.526-1.227-2.043-.108-.87.072-.115.41.204.268.564.727 1.586 1.02 2.248.382.74.804 1.426 1.023 2.453.543.664.933 1.44 1.023 2.455.286.63.204 1.91.204 2.862-.18.988-.405 1.276-1.43 1.43-.84.205-1.903-.122-2.862-.612-.712-.356-1.125-.695-1.637-1.432-.837-.675-1.343-1.35-2.042-2.248-.474-.498-.943-.998-1.433-1.636-.562-.692-1.126-1.19-1.43-2.25-.32-.3-.502-.722-.82-1.022.493.567.737 1.076 1.023 2.044.307 1.122.6 1.664.615 2.863v2.862c-.195.98-.67.89-1.636 1.022-1.12 0-2.072.073-2.658-.41-.895-.12-1.51-.355-2.045-.818-.85-.222-1.395-.698-2.04-1.022-.324-.475-1.008-1.374-1.432-1.84-.283-.873-.82-1.24-1.23-1.84-.288-.29-.306-.917-.407-.818.4.47.756 1.48 1.024 2.045.164.914.204 1.845.204 2.862-.228 1.067-.612 1.597-.82 2.657-.45.86-.84 1.946-1.225 2.657-.745.507-1.333 1.06-2.247 1.43-1.208.545-2.43.777-3.886.82-.98.326-1.8.115-2.657 0-.665-.316-1.425-.634-1.84-1.227-.528-.242-.693-.508-1.024-1.227-.742-.557-1.013-1.385-1.43-2.453-.298-.86-.626-1.62-.817-2.454-.35-.797-.567-1.797-1.023-2.453-.053-.476-.15-.342-.204-.818" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M395.01 163.732v.204c0-.55.012-.273-.205.818-.673 1.046-1.46 1.932-2.453 2.25-.588.293-1.653.197-2.25 0-.927-.477-1.554-1.06-2.248-1.84-.54-.99-1.465-1.89-2.046-2.863-.513-.774-.882-1.33-1.02-2.248-.442-.52-.76-1.597-1.022-2.25-.06-.64-.053-.284-.244-.757.265.962.61 1.412.856 2.598.405 1.252.75 1.908.41 3.27-.166 1.245-.373 2.298-.818 3.477-.27 1.2-.65 2.1-1.023 2.862-.188.8-.54 1.505-1.022 2.044-.464.51-1.248.645-2.045.818h-2.86c-.873-.117-1.69-.405-2.658-.613-.95-.507-1.142-.744-1.84-1.43-.547-.677-1.074-1.165-1.432-2.045-.522-.355-1.264-.898-1.637-1.43-.625-.616-1.017-1.06-1.43-2.045-.19-.88-.395-1.502-.41-2.658-.03-.616.288.985.613 2.044.297.69.517 1.78.82 2.658v3.27c0 1.002.018 1.977-.205 2.863-.137.92-.484 1.343-.818 2.045-.582.36-1.21.804-2.042 1.022-.694.48-2.064.815-3.068 1.022-1.014.266-1.91.41-3.067.41-1.177 0-1.73.012-2.25-.614-.49-.54-1.305-1.625-1.838-2.045-.283-.796-.697-1.116-1.43-1.84-.294-.814-.76-1.813-1.227-2.453-.156-.994-.63-1.848-.82-2.658-.128-.302-.28-.72-.406-1.022" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M416.81 162.04c.04.28-.187 1.3-.336 1.895-.447 1.217-1.133 2.257-2.045 3.067-.983.59-1.373.94-2.454 1.022-.498.373-1.086.16-1.433-.205-1.054-.39-1.68-1.02-2.657-1.432-.92-.59-1.4-.94-2.25-1.43-.476-.702-1.08-1.492-1.633-2.045-.133-.222-1.307-2.18-1.08-1.566.433.642 1.498 1.884 1.898 2.793.494.68 1.07 2.022 1.636 2.657.566.718 1.292 1.516 2.045 2.453.46 1.133.936 1.946 1.023 3.067.318.618.408 1.698.408 2.658 0 1.112-.166 1.653-.203 2.658-.267.665-.527 1.427-.818 2.044-1.236 0-2.227-.206-3.07-.613-.66-.465-1.06-1.126-1.634-2.045-.402-1.13-1.094-1.917-1.634-3.067-.678-1.14-1.224-2.885-1.84-3.885-.142-.992-.534-1.88-.613-3.066-.224-.37-.29-.483-.412-.89.13.954.204 1.717.204 2.934 0 1.25.072 2.36-.408 3.067-.365 1.097-.953 1.818-1.634 2.658-.83.523-1.563 1.223-2.66 1.636-1.216.422-2.16.613-3.475.613-1.317-.272-2.607-.4-3.828-.726-1.288-.116-2.204-.196-2.713-.91-.755-.848-1.608-1.785-2.25-2.862-.595-.39-.394-.445-.778-.87.434.676.366.598.575 1.687.388.8.41 1.477.41 2.453-.486.82-.992 1.693-1.636 2.453-.667.816-1.012 1.073-2.045 1.43H376.4c-.99 0-1.934-.046-2.658-.203-.882-.192-1.91-.597-2.86-1.022-.446-.357-3.227-2.66-3.566-3.112" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M366.796 175.793H367c-.64 0-.246-.053.614 1.022.618 1.244 1.018 2.35 1.635 3.476.15 1.262.383 2.303.41 3.68 0 1.45.108 2.814-.41 4.09-1.357 1.317-1.887 1.895-3.68 2.044-1.768.36-2.16.03-2.862-1.635-.51-1.047-.9-2.212-1.43-3.273-.273-.78-1.062-1.847-1.637-2.862-.312-.634-.752-1.585-1.226-2.453-.363-.95-.577-1.915-1.022-2.453-.154-1.504-.287-.657.204 0-.128 1.294.715 4.95-.273 5.442-.676.32-1.383.13-2.512.13" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M419.857 165.01c0 .067.112 1.312.112 1.38 0-.62-.012-.272.205 1.022.074 1.356.398 2.72.816 3.68v2.863c-.32 1.08-.492 1.578-1.225 2.453-.43.632-.673.818-1.635.818-.657.328-2.08.204-3.068.204-1.094-.3-2.498-.39-3.268-1.022-.676-.52-1.322-.83-1.714-1.467.286.096.204.583.204.26M405.05 178.86v.41-.41.41-.41c-.18 1.924-.714 2.78-1.842 4.294-.758.89-1.505 1.683-2.657 2.25-1.626.847-3.255 1.093-5.11 1.226-1.398 0-1.946.055-2.66-.818-.892-.714-1.853-1.71-2.248-2.862-.747-.908-1.142-2.092-1.635-3.067-.23-1.163-.657-2.176-1.022-3.27-.247-.96.196.658.204 1.43 0 1.617-.258 2.876-.613 4.293-.435 1.292-.845 2.216-1.637 3.272-.8 1.268-1.783 1.74-3.065 2.657-1.955.435-3.722.39-5.725.205-1.288-.395-2.22-.68-3.272-1.43-.964-.303-2.17-.885-2.657-1.432-.995-.407-.648-.175-1.294-.5.148.94-.774 4.186-.954 5.202-.315 1.106-.448 1.72-1.226 2.25-.82.74-1.574 2.443-2.692 2.904-.842.183-1.89.773-2.954.857-.74.335-1.568.228-2.267.426" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M419.142 177.838c.074.453.408 2.154.408 3.27v3.477c-.064 1.152-.28 2.12-.408 3.066-.28.985-.71 1.43-1.43 2.046-1.08.56-1.783.986-2.864 1.226-1.282 0-1.643-.206-2.657-.817-1.226-.97-2.07-1.742-3.067-2.862-.842-.906-1.4-1.62-2.045-2.25-.14-1.072-.495-1.79-.816-2.862-.37-.517-.612-1.16-1.022-1.634.376.752.876 1.164 1.43 2.25.64 1.11.986 2.33 1.43 3.474.36.94.83 1.96 1.434 2.454.43 1.022.707 1.393 1.02 2.453.095 1.237.206 2.37.206 3.68-.41 1.185-.86 1.995-1.84 2.658-1.312.78-2.472 1.008-4.088 1.226-1.738-.008-3.375-.094-4.702-.612-.562-.688-1.855-1.795-2.66-2.658-.678-1.12-1.343-2.155-2.043-3.27-.36-.944-.696-1.757-.818-2.66-.22-.656-.295-1.7-.616-2.247-.28-1.527-.204.844-.204 1.43v3.68c-.43 1.763-1.465 3.228-2.657 4.703-1.462 1.172-2.652 2.095-4.498 2.248-1.793 0-3.054.052-4.498-.817-.673-.8-1.698-1.855-2.453-2.862-.69-1.165-1.253-1.933-1.635-3.067-.154-.71-.252-1.78-.41-2.658 0-.83-.086-.147-.15-.83 0 .953-.055.898-.055 1.852.15 1.348.204 2.685.204 4.09-.48 1.564-.507 2.186-2.248 2.248-1.242-.09-1.605-.324-2.455-1.022-.98-.578-2.085-1.392-2.862-2.044-.792-.74-1.136-1.12-1.857-1.71" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M410.956 193.58h.204c-.6 0-.262-.036.82.613.38.574 1.112 1.464 1.633 2.248.538.745 1.155 2.097 1.635 2.66.41.72.805 1.24 1.022 2.043 0 1.246.165 2.287.207 3.476 0 1.25-.193 1.788-.614 2.657-.655.432-1.606 1.05-2.658 1.43-1.06.14-2.12.205-3.27.205-1.1 0-2.062-.085-3.07-.204-.696-.315-1.803-.76-2.452-1.227-.742-.655-1.53-1.775-2.25-2.657-.455-.73-.63-1.453-.815-2.248-.26-1.013-.38-2.104-.818-2.863-.15-.684-.332-1.512-.408-.204-.273.542-.207 1.605-.207 2.453-.228 1.077-.498 2.11-1.02 3.068-.78.72-1.303 1.67-2.456 2.044-1.36.86-2.923 1.04-4.496 1.227-1.21 0-2.607.152-3.682-.206-.687-.326-1.34-.68-2.247-1.226-1.017-.64-1.793-1.39-2.456-2.25-.764-.958-.764-1.628-1.227-2.86-.066-1.162-.33-1.852-.408-2.863-.154-.284-.382-.79-.612-1.023 0 1.436.19 2.613.612 3.885.07.975.204 1.82.204 2.862-.038 1.022-.242 1.696-.613 2.452-.74.544-1.07.872-2.045 1.227-.97.18-1.99.203-3.068.203-.908-.245-1.605-.79-2.453-1.022-.49-.594-1.035-.85-1.633-1.84-.68-1.025-.82-1.18-.82-2.452.19-1.103.412-2.058.412-3.27 0-1.148.025-1.782.407-2.66.047-.847.092-.49.092-1.463" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M371.51 204.21h-.203c.602 0 .24-.058-.408 1.022-.5.945-.75 1.902-1.227 2.454-.23.844-.602 1.21-1.227 1.635-.267.75-.845 1.033-1.433 1.432-.628.298-1.32.56-2.042.818l2.043-.818c-.628.298-1.32.56-2.042.818" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M435.91 216.274c-.068 0 1.156-.616 1.087-.616.6 0-1.028.58-2.11 1.23-.616.31-1.925.204-2.86.204-.818-.19-2.153-.495-2.66-1.022-.278-1.105-.683-2.182-1.02-3.272-.328-.95-.492-2.037-.614-3.066-.29-.986-.493-1.812-.818-2.862-.382-1.16-.713-2.272-1.02-3.476-.302-1.014-.54-1.89-.615-2.862-.432-.35-.477-1.006-.615-1.635" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M428.546 214.025c-.148 0-.484.97-.818 1.636-1.335 1.566-2.853 2.81-4.294 4.09-1.272.6-2.255 1.48-3.68 1.635-.59-.535-.82-1.974-1.023-3.068-.573-1.932-.867-3.902-1.43-5.723-.508-.917-1.008-2.028-1.226-2.862-.35-.737-.474-1.59-.61-2.25.16 1.594.918 3.088 1.225 4.703.248 1.352.407 2.667.407 4.09v3.475c-.23 1.267-.623 2.46-1.43 3.27-.21.13-1.036-.44-1.842-.817-1.168-.635-2.527-1.364-3.27-1.84-.783-1.132-1.985-2.415-2.862-3.68-.374-1.274-.655-2.342-.82-3.68-.27-1.18-.6-2.84-1.02-3.68-.057-.672-.346-.718-.67-1.075-.195 1.326-.72 2.115-1.17 3.324-.524.55-1.166 1.127-2.045 1.84-1.277 1.16-2.702 2.358-4.088 3.27-1.295.82-2.36 1.148-3.886 1.227-1.457-.046-2.042-.175-3.065-1.023-1.688-1.05-2.817-2.543-4.295-4.09-1.102-1.21-1.52-1.65-1.634-3.27-.068-.887-.24-1.512-.41-2.453 0 .273-.066.204.207.204" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M390.108 216.682c-.06.416-.244 2.313-.408 3.068-.23.845-.54 1.253-1.227 1.634-.498.42-1.464.684-2.045 1.023-1.057.1-1.976.29-2.863.408H380.5c-1.068 0-1.767.018-2.25-.612-.61-.5-1.242-1.542-1.634-2.25-.342-1.157-.42-1.872-.207-2.862 0-1.414.18-2.674.206-4.088 0-1.022-.103-3.177-.103-4.2" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M376.836 220.364v.204c0-.55.013-.27-.204.82-.276.823-.683 1.114-1.227 1.633-1.03.227-1.337-.03-2.455-.407-.716-.577-.898-1.078-1.43-1.634-.25-.703-.674-1.24-1.227-1.638 0-.44-.1-.305-.204-.612" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M370.4 218.616c0 .066.094.78.507 1.33.41.898.88 1.785 1.227 2.86v3.272c-.1 1.24-.28 2.66-.82 3.476-.454.652-1.6 1.17-2.656 1.635-1.046.518-2.233.573-3.475.613-1.465-.323-2.695-.834-4.09-1.634-1.235-.632-2.475-1.408-3.68-2.046-.564-.49-1.1-.737-1.635-1.43-.593-.435-1.08-1.055-1.637-1.434-.39-.575-1.104-.988-1.633-1.635-.514-.368-.872-.91-1.227-1.43" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M433.977 230.22c0 .118-1.936 1.673-2.572 1.99-.795.584-2.135 1.132-3.272 1.638-1.595.488-2.84.816-4.495.816-.467-.683-1.728-1.528-2.453-2.453-.374-.746-1.04-1.92-1.638-2.86-.37-1.18-.808-2.38-1.226-3.476-.357-1.057-.68-1.67-.818-2.863-.336-.465-.61-1.867-.715-1.228.673.686.758 1.812 1.126 2.866 0 1.277.172 2.416.204 3.68-.29.818-.38 1.38-1.023 1.84-.45.52-.763.613-1.634.613-.6.36-1.174.016-2.045 0-1.07-.315-1.365-.527-1.84-1.226-.603-.42-1.02-1.242-1.84-1.84-.52-.963-.82-1.32-1.226-2.248-.27-.75-.494-1.613-.616-2.66 0-1.075-.167-2.013-.204-3.064 0-.737.056-2.436-.204-2.87-.154 1.246-.41 2.69-.41 4.096-.18.965-.236 2.098-.41 3.065-.45 1.036-1.09 2.114-2.044 3.068-1.282.727-2.41 1.013-3.883 1.227-1.55 0-2.968-.188-4.5-.203-.94-.536-1.99-1.26-3.064-2.046-1.002-.906-2.276-2.045-3.068-2.657-.252-.71-.755-1.14-1.227-1.636-.29-.54-.414-.47.205-.204.533.533 1.402 1.274 1.842 2.045.336.652.818 2.072 1.226 2.657 0 1.11.19 1.585.204 2.657-.193 1.054-.824 1.31-2.045 1.637-1.166 0-2.244-.117-3.065-.408-.98-.412-1.714-.72-2.25-1.23-.524-.356-1.263-.9-1.636-1.43-.773-.817-1.597-1.68-2.248-2.454-.414-.453-1.03-1.595-1.43-2.045.198.3.34.353.614.82.73.92 1.144 1.496 1.634 2.248.39 1.01.734 1.494.82 2.657 0 .99-.05 1.937-.205 2.66-.233.853-.61 1.346-1.433 1.635-.618.31-1.926.204-2.86.204-.688-.3-1.914-.827-2.658-1.023-.475-.576-1.455-1.276-2.046-2.04-.52-.67-.82-1.355-1.43-1.843.527.435.853 1.206 1.43 1.842.316.642.782 1.638 1.023 2.452.41.903.565 1.89.82 2.86 0 1.095-.072 2.067-.207 3.068 0 1.07 0 1.852-.408 2.453-.252.917-.72 1.34-1.635 2.043-.98.19-1.388.397-2.453.41-.413-.5-1.014-1.05-1.637-1.637-.278-.59-.694-1.503-1.022-2.043-.403-.657-.824-1.004-1.227-1.84-.637-.616-1.382-1.612-1.837-2.658-.517-.775-1.04-3.013-1.227-3.877-.28-.188.33.525.408 1.83 0 1.09-.063 2.075-.204 3.068.032 1.2.204 2.266.204 3.477-.11.813-.24 1.7-.614 2.25-.504.884-1.473 1.61-2.657 2.04-.446-.62-.97-.814-1.84-1.02-.85-.436-1.46-.64-2.452-1.02-.94-.684-1.34-.817-2.044-1.842-.668-.63-1.285-1.66-1.637-2.453-.158-.723-.205-1.666-.205-2.657.013-1.285.198-2.098.614-3.068.227-.832.765-1.4 1.43-1.838.58-.582 1.197-1.074 2.045-1.23.103-.59.572-.567 0-.613v.612c.103-.59.572-.567 0-.613" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M432.23 245.292c0 .122-.595.5-1.228.82-1.298.412-2.744.097-4.09 0-1.327-.332-2.286-.406-2.86-1.228-.666-.476-1.69-1.53-2.25-2.25-.302-.635-.496-1.376-.612-2.248-.133-1.062-.225-2.228-.41-3.27v-3.27c0-1.11-.19-1.587-.205-2.66.09-.088.154.514.408 1.022 0 1.28-.045 2.506-.204 3.68-.112 1.15-.512 1.89-.82 2.66-.595.74-.93.977-1.838 1.226-.667.398-1.833.575-2.863.612-1.26-.07-1.97-.334-2.66-1.022-1.003-.798-1.646-1.672-2.248-2.86-.352-1.148-.612-2.18-.612-3.477-.14-.91-.074-2.6-.41-3.272-.03-.596.172-1.85-.098-2.148.138 1.052-.096 2.993.098 4.193 0 1.346-.037 2.644-.204 3.884-.55 1.245-.805 1.915-1.84 2.453-.62.623-1.413.93-2.452 1.227-1.573 0-3.205.116-4.702-.204-.742-.202-1.438-.607-2.25-.82-.558-.47-1.395-.76-2.044-1.43-.752-.823-1.3-1.597-1.635-2.656-.996-1.28-1.732-2.507-2.25-3.884" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M427.513 256.763h-.204c.55 0 .27-.013-.82.204-1.064.355-2.03.106-3.067-.204-.69-.305-1.412-.784-1.838-1.227-.713-.874-.99-1.107-1.43-2.25-.345-1.405-.412-2.58-.412-4.086.016-1.192.33-1.958.615-3.068.363-1.123.856-2.92.856-4.167-.045 1.354-.78 3.41-.856 4.782v3.27c-.328.98-.328 1.887-.82 2.658-.656.933-1.246 1.25-2.452 1.43-1.194-.108-1.205-.455-1.84-1.43-1.082-1.303-1.686-3.05-2.043-4.702v-3.27c0-1.368.103-2.598.204-3.885.085-.845.148-.964.148.13.077 1.576.26 2.752.26 4.366-.292 1.197-.76 2.2-1.227 3.067-.874.12-1.563.396-2.657.41-1.088 0-1.925-.05-2.656-.41-.51-.857-1.526-2.002-2.045-3.066-.24-1.12-.57-2.06-.616-3.27-.254-.51-.32-1.61-.408-2.25.218 1.278.204 2.693.204 4.09-.01 1.3-.047 2.57-.61 3.27-.566.76-1.294.8-2.25 1.023-1.04 0-2.157.098-3.068-.204-1.023 0-2.194-.063-2.86-.41-.928-.406-1.265-.705-2.046-1.227-.42-.62-1.23-1.415-1.635-2.453 0-1.083.14-1.976.613-2.657.193-.887.384-1.436.82-2.25.412-.985.8-1.42 1.225-2.044.366-.196-1 .92-1.637 2.045-.91.882-1.673 1.71-2.452 2.453-1.036.654-1.576 1.134-2.86 1.226-1.278 0-1.802-.225-2.658-.61-.554-.608-1.097-.714-1.227-1.64-.373-.918-.54-2.287-.818-3.064-.013-1.152-.196-2.15-.408-3.27-.11-.817-.204-2.428-.204-1.633 0 1.766-.085 2.802.204 4.492v3.475c0 1.076-.15 1.72-.41 2.453-.946.13-1.312.395-2.454.41-1.012-.27-1.552-.486-2.25-.818-.48-.458-.886-1.043-1.43-1.43l1.43 1.43c-.48-.458-1.71-1.557-2.253-1.944" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M420.467 268.525c-1.77 0-4.056-.927-5.828-.927-1.1-.273-2.354-.368-2.862-1.023-.437-.678-.76-1.51-1.023-2.657 0-1.45.11-2.278.816-3.475.536-1.057 1.397-1.897 1.842-2.658.59-.744 1.21-1.753 1.635-2.657.41-.64.397-.712.87-1.393.62-.11-1.896 1.372-3.73 2.62-1.42.633-2.62.805-4.296.816-1.26-.275-3.056-.683-4.086-1.02-.82-.72-.82-1.853-.82-3.27v-3.68c0-.782.036-.872-.147-1.372-.085 1.162-.318 1.655-.466 2.802-.108 1.338-.333 2.477-.815 3.68-.53 1.004-1.182 2.358-1.84 3.068-.645.826-1.51 1.284-2.25 1.838-1.378.244-2.525.098-3.884-.204-1.456-.49-1.734-1.06-2.248-2.453-.448-1.527-.408-3.21-.408-4.907.045-1.264.318-2.445.612-3.68v-3.475c0-.342.392-1.187.392-1.526" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M411.99 267.386c-.498.066-2.17.39-3.272.41-.8.265-2.162.204-3.272.204-1.19-.28-1.775-.29-2.25-1.022-.727-.506-1.008-1.004-1.633-1.43-.302-.605-.64-1.278-1.023-1.842-.103-1.155-.395-2.063-.408-3.27 0-1.072-.002-1.853-.41-2.454v-.408" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M399.724 257.982v3.27c0 1.074-.16 1.92-.408 2.862-.114.962-.38 2.03-.818 2.66-.488.935-1.174 1.248-2.045 1.634-.994.135-1.264.165-2.043-.204-.712-.193-1.634-.678-2.25-1.226-1.067-.443-1.935-.967-2.656-1.637-.895-.627-1.513-1.268-2.045-1.838-.414-.826-.693-2.018-1.024-2.657 0-1.128.088-1.777.408-2.453.326-.654.753-1.14 1.227-1.637.496-.472 1.75-1.385 2.462-1.637" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M386.426 261.054h-.204c.694 0 .262-.04-1.023.816-.907.697-1.527 1.03-2.454 1.434-1.31.307-2.143.408-3.68.408-1.343 0-2.664.013-3.886-.204-.887 0-1.854-.006-2.453-.204-.222-.67-.598-1.35-1.022-1.842-.157-.723-.204-1.666-.204-2.657.366-.582.65-1.796 1.023-2.25.52-.934.864-1.246 1.635-1.84.72-.5 1.285-.744 1.84-1.226.85-.285 1.185-.64 2.046-1.432.82-.744 1.15-1.266 1.838-1.838.46-.437 1.07-1.018 1.638-1.434.27-.853.74-1.433.816-2.453v-3.883" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M363.83 273.214c-.242-.122-.883-1.3-1.53-1.947-1.427-1.436-2.633-2.114-2.657-4.088.46-.682 1.264-1.214 2.25-1.635.556-.546 1.16-.986 1.84-1.227.774-.17 1.807-.206 2.862-.206 1.112 0 1.653-.167 2.657-.204 1.072-.014 1.55-.204 2.66-.204.375-.38.8-.204-.207-.204-.726.33-1.547.408-2.657.408-.904-.393-1.447-.594-2.453-.816-.544-.472-1.206-.628-1.635-1.23-.91-.51-1.192-.966-1.433-2.042-.133-.996-.167-1.436.41-2.25.3-1.15.867-1.832 1.43-2.656.677-.692.986-.82 2.25-.82h3.068c.726.13 1.544.208 2.246.41-.97-.28-1.95-1.29-2.86-2.25-.87-.946-.916-1.248-1.43-2.25-.34-1.278-.77-2.01-.82-3.268v-3.068c.197-1.102.47-1.55.82-2.25" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M360.465 244.074c-.12.243-1.007 1.565-1.227 2.045-.262.733-.41 1.38-.41 2.452-.18.882.007 1.338.206 2.25.596.407 1.084.84 1.635 1.633.886.427 1.18.838 1.633 1.638.556.376 1.388 1.27 1.74 1.84-1.01-.073-2.164-.892-3.17-1.228-.586-.273-1.826-.642-2.454-1.02h-3.476c-1.09.082-1.304.445-2.045.816-.422.66-.738 1.22-.817 2.25-.228.683-.228 1.77 0 2.453.46.495 1.054 1.245 1.634 1.637.758.43 1.35.808 2.25 1.43.95.562 2.156 1.105 2.86 1.635.69.188 1.505.45 2.046.818.498.088 1.128.204.203.204-.548-.32-1.59-.394-2.25-.61-.966-.163-1.906-.5-3.064-.616-1.072 0-1.427-.023-1.84.616-.833.24-1.076.74-1.635 1.226-.366.77-.58 1.256-.615 2.453.22.82.432 1.232.615 1.84.15.354.535 1.098.818 1.33l-.818-1.33" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M351.67 223.013c-.55.14-2.403.713-3.476 1.023-.73.244-1.24.654-1.84 1.023-.592.4-.95.926-1.43 1.43-.243.73-.653 1.24-1.022 1.84-.32.676-.537 1.272-.614 2.25.016 1.374.477 1.904 1.022 3.27.702 1.19 1.26 2.58 2.25 3.27.84.516 1.496.898 2.452 1.433.652.178 1.648.646 2.25 1.023 1 .132 1.658.415 2.25.815h-1.636c-.956.04-1.8.17-2.456.616-.7.28-1.004.837-1.634 1.227-.23.847-.586 1.208-.82 2.25-.338.677-.155 1.78 0 2.656.428.613.812 2.057 1.228 2.656.44 1.504.856 2.72 1.84 3.886.176.506 1.43 1.287 1.847 1.534-.63-.43-2.197-1.99-3.07-2.763-.518-.654-1.16-1.107-2.047-1.43-1.08-.414-2.09-.734-3.27-.817-1.114 0-1.742.122-2.454.408-.523.453-1.19.69-1.636 1.227-.583.417-.885 1.084-1.226 1.842.04 1.1.283 1.65.818 2.453.477.715.827 1.224 1.43 1.635.61.704 1.283 1.118 2.25 1.634.805.575 1.53.705 2.453 1.227.908.292 1.657.713 2.86 1.227 1.025.562 3.77 2.554 4.612 2.874.18.272-2.723-1.736-3.59-2.258-1.04-.23-1.4-.586-2.25-.82-1.06-.49-1.623-.88-2.656-1.02-.89-.41-2.055-.642-2.863-.817-1.23 0-2.226-.196-3.476-.204-.882 0-.954.022-1.226.613-.686.53-1.075 1.136-1.634 1.84-.384.68-.826 1.28-1.227 1.84-.297.693-.63 1.562-.82 2.248-.18.838-.394 1.376-.407 2.454" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M334.106 261.85c0-.067.207.275.207.206 0 .575-.18-.143-.615-1.227-.675-.803-1.534-1.985-2.453-2.864-1.306-.93-2.66-1.873-4.09-2.453-1.243-.59-2.56-1.222-3.884-1.635-1.19-.23-2.423-.204-3.678-.204-1.235.013-1.415.334-2.25.612-.48.54-.924 1.09-1.226 1.84-.24.6-.39 1.575-.612 2.25 0 1.044-.193 1.83-.207 2.86 0 .838.2 2.23-.304 2.563.212-.896.413-2.618.715-3.79-.016-1.23-.384-1.586-.82-2.656-.875-.983-1.697-2.022-2.452-2.864-.707-.898-1.605-1.955-2.453-2.657-.707-.432-1.404-.922-2.045-1.227-1.038-.42-1.523-.776-2.657-.818-.484.463-1.05.866-1.636 1.226-.6.41-.972.875-1.227 1.638-.373.548-.498 1.494-.61 2.453-.33.94-.41 1.56-.41 2.657-.262.347-.357.87-.41 1.43.122-.914.395-1.724.41-2.86-.16-1.058-.572-2.09-.818-3.476-.038-1.41-.306-2.268-.82-3.068-.882-.787-1.692-1.93-2.86-2.657-1.02-.49-1.828-.802-3.068-.818-1.11.013-1.664.276-2.453.615-.287.712-.41 1.34-.41 2.453.014 1.158.218 1.57.613 2.25.122.902.524 1.586.614 2.656.28.472.204 1.47.204 2.25-.094-1.103-.764-1.892-1.02-2.862-.256-1.173-.57-2.16-.82-3.068-.448-1.2-1.128-2.254-1.838-3.475-.72-.58-1.102-1.175-2.045-1.84-.925-.803-1.624-1.277-2.658-1.43h-2.864c-.837.333-1.086.65-1.635 1.226-.253.975-.743 1.76-1.02 2.453 0 1.016.04 1.95.203 2.862.485.506.808 1.052 1.022 1.84.345.587.82 2.603.82 3.586-.314-.837-1.103-3.57-1.432-4.61-.3-.83-.776-1.84-1.226-2.657-.323-1.17-.795-1.78-1.433-2.656-.52-.8-1.343-1.496-2.25-2.045-.876-.735-1.245-.978-2.453-1.023-1.05.312-1.252.667-2.248.818-.384.347-1.067.602-1.43 1.023-.194.82-.503 1.38-.82 2.045-.155.723-.203 1.666-.203 2.657.362.535.79 1.322 1.022 2.045.628.69.893 1.393 1.43 2.25.302.902 1.667 3.048 2.05 3.687-.12.12-1.197-1.558-1.64-2.053-.796-1.103-1.19-1.782-1.636-3.07-.527-.688-1.152-1.644-1.635-2.042-.672-.79-1.61-1.626-2.656-2.25-.914-.642-1.4-.613-2.66-.613-1.29-.268-2.217.008-3.064.408-.61.62-1.897 1.626-2.453 2.045-.615.78-.917 1.3-1.434 1.84-.272.684-.495 1.38-.612 2.25.09 1.13.534 1.383 1.024 2.453.543.42 1.35 1.5 1.838 1.84.393.484 2.91 2.765 2.05 2.765-.37-.545-1.62-1.857-2.254-2.355-.598-.73-1.34-1.364-1.838-1.84-.84-.364-1.518-.692-2.453-.82-1.182-.235-1.93-.37-3.068-.407-1.034.092-1.595.604-2.25 1.022-.368.6-.78 1.11-1.022 1.84-.46.558-.408 1.384-.408 2.454.365.537.747 1.324 1.022 2.042.623.598 1.076 1.57 1.84 2.25.81.68 1.517 1.008 2.452 1.225 1.006.037 1.547.204 2.66.204.707.046-.342.18-.615.412" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M247.825 264.737l-.204-.204c.512.51.282.265-.818-.615-1.245-.585-2.61-.77-4.087-.816-1.126.29-2.35.594-3.476.816-.655.668-1.08.95-1.842 1.84-.31.777-.477 1.368-.204 2.454.55 1.13.784 1.53 1.634 2.453.594.403 1.084.72 1.842 1.023 1.547.233 3.065.76 4.702.82 1.18 0 4.116.375 5.23.41 1.382 0-3.5-.207-4.004-.207-1.48 0-2.932.01-4.294.204-1.303.265-2.55.562-3.68 1.227-.932.53-.818.984-.818 2.25.294.73.65 1.232 1.022 1.84.64.59 1.17 1.148 2.046 1.432 1.07.588 2.182 1.126 3.475 1.226.847.286 4.447-.03 3.19-.1-.656.553-5.07.67-6.258.916-1.26.533-2.612 1.28-3.68 1.637-.23.886-.405 1.53-.204 2.454.44.718.79 1.373 1.43 2.046.512.508.8.792 1.638 1.02.874.43 2.304.667 3.475 1.022.91 0 .926-.135 1.432-.408M339.22 251.65c0-.07-.41-.678-.82-1.226-1.08-1.267-2.91-2.663-4.294-3.887-1.49-.6-2.58-1.32-4.088-1.43-1.268 0-1.676.01-2.045 1.022-.445.537-.63 1.282-.818 2.25-.42 1.008-.408 1.956-.408 3.27-.307.612-.26 1.727-.612 2.25-.03.542-.133.89-.207.815-.34-.68.217-2.087.41-3.065 0-1.242.165-2.28.205-3.475-.477-1.863-.644-2.337-2.045-3.884-1.388-1.46-2.382-2.338-4.088-3.475-.895-.23-2.07-.6-3.27-.614-.74.4-1.742 1.047-2.455 1.635-.717.972-1.006 1.592-1.022 2.864.148 1.122.49 1.843 1.022 2.86.284.72.6 1.642.82 2.66.373.956.526 2.344 1.02 3.065.137 1.09.13.702-.205 0-.106-1.386-.546-2.673-1.023-3.68-.397-1.49-.837-2.037-1.634-3.272-.79-1.226-1.137-1.72-2.453-1.838-.874-.29-1.99-.29-2.864 0-.755.42-.977.67-1.02 1.838-.233.697-.31 2.382-.31 3.378 0 .303 1.04-4.243.718-5.42-.765-1.41-1.626-2.513-2.863-3.68-1.205-1.448-2.296-2.775-3.883-3.68-1.11-.33-1.722.158-2.453.818-.954.635-1.696 1.54-2.045 2.25-.232.85-.534 1.34-1.024 2.248-.768.96-1.396 4.47-1.53 3.796-.165-1.1.235-3.926.51-5.023.114-1.407.24-2.626-.206-3.68-.848-1.123-1.59-1.95-2.657-2.453-.71-.777-1.245-.82-2.453-.82-.91.29-2.096.976-3.068 1.636-.596.56-.853.943-1.02 1.637-.368.636-.657 1.952-.82 2.657-.21.877-.597 1.698-.613 2.86-.425 1.39-.205-.945-.205-1.634-.326-.983-.164-2.32-.612-3.067-.554-1.026-.81-1.264-1.84-2.043-1.048-.474-1.58-.818-2.862-.818-.57.4-1.26.657-1.84 1.226-.65.833-1.2 1.66-1.84 2.658-.22.888-.205 1.863-.205 2.864.023.832.172 1.32.206.204v-3.272c-.22-1.144-.423-1.674-1.432-2.045-.71-.385-1.67-.41-2.86-.41-.833.295-1.08.65-1.228 1.636-.508.715-.614.953-.614 2.045-.29.578-.204 1.765-.204 2.658-.326.437-.37 1.32-.408 0-.07-1.025-.33-2.138-.615-2.86-.68-.53-1.62-1.124-2.25-1.432-.998 0-1.976-.018-2.86.204-.79.403-.788 1.025-1.43 1.635-.208.88-.536 1.224-.616 2.25-.185.86-.122 1.554 0 2.452.228.64.57 1.42.41 1.84-.508-.582-1.345-1.65-2.044-2.656-.758-.61-.967-.876-2.045-1.022-.88-.068-1.423-.206-2.454-.206-.494.432-1.1.863-1.633 1.23-.48.704-.874.855-1.023 1.837-.31.617-.21 1.83 0 2.453.498.323.665.733 1.227 1.022.425.527 1.063 1.04 1.43 1.635.245.49.333.243-.407.206-.64-.768-1.475-1.06-2.66-1.637-1.273-.23-2.187-.02-3.475.203-.58.84-.977 1.627-1.02 2.864.04 1.088.73 2.683 1.33 3.18" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M346.77 237.32h-1.025c-1.617-.152-3.072-.396-4.7-.412-1.5 0-2.65.016-3.885.615-1.2.418-1.435.866-2.25 1.634-.52.975-1.146 1.783-1.43 2.864-.367.91-.775 1.723-.818 2.862.262 1.565 0-1.126 0-1.84.326-1.845.207-3.628-.204-5.52-.392-1.335-.82-2.43-1.43-3.68-.46-.812-.983-1.512-2.045-1.84-.737-.212-1.932-.24-2.657 0-.517.363-1.37 1.34-1.842 2.045-.52.694-1.21 1.748-1.634 2.453-.51.853-.91 1.923-1.227 2.657-.103.593-.25 1.245-.41 1.637-.408-.818-.9-1.09-2.043-1.637-1.062-.91-2.25-1.738-3.27-2.25-.817-.505-1.983-1.234-2.865-1.634-.628-.437-1.695-.704-2.657-.818-.993 0-2.4-.127-3.065.204-.795.282-1.078.725-1.433 1.432-.36.585-2.122 2.625-2.053 2.46 0-1.138 1.004-3.44.622-4.505-.544-1.078-.99-1.592-1.227-2.453-.644-.713-.877-1.484-1.635-2.045-.278-.783-.805-1.016-1.226-1.636-.91-.387-1.017-.773-2.25-.818-1.017 0-1.96.164-2.66.408-.76.21-1.398.49-1.837 1.022-.92.44-1.087.82-1.842 1.43-.524.37-1.17 1.164-1.43 1.842-.596.726-.085.93 0 2.045" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M343.298 227.94v-.206c0 .604.037.265-.612-.816-.413-.67-.845-1.2-1.637-2.045-.708-.83-1.19-.82-2.454-.82-.893 0-2.08-.083-2.657.205-.798.305-1.264 1.076-1.842 1.842-.646.898-1.29 1.547-1.634 2.25-.41.976-.79 1.395-1.023 2.248-.516.387-.492.8-1.226 1.022-.368-.667-1.043-1.065-1.43-1.637-.914-.315-2.127-1.208-3.068-1.838-.998-.665-1.912-1.04-2.86-1.637-.912-.316-1.487-.408-2.658-.408-1.285.058-1.88.355-2.863 1.022-.893.42-1.51 1.054-2.25 1.635-.72.5-3.67 4.837-4.41 5.446-.755.71 2.564-3.293 3.184-4.424.476-1.21.817-1.943.817-3.272-.233-1.672-.384-3.21-1.637-4.292-.98-.384-2.14-.604-3.475-.615-.935.13-1.412.415-2.453.616-.784.42-1.566.628-2.25 1.227-.654.402-1 .823-1.838 1.226-.408.598-1.014.847-1.43 1.43-.302.13-1.412 1.24-1.542 1.54" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M336.543 223.225h-.204c.6 0 .264.035-.817-.614-.56-.38-1.086-.868-1.637-1.43-1.15-.29-2.066-.83-3.272-1.022-1.022-.42-2.172-.816-3.065-1.023-.883 0-1.868-.005-2.454.204-.408.598-.882.945-1.226 1.636-.273.575-.464 1.52-.82 2.043-.023.817-.43 2.237-.923 2.566.455-.806 1.287-3 1.536-4.406-.315-1.5-.91-2.882-1.634-4.293-.8-.97-1.718-1.922-2.658-2.863-.946-.236-2.003-.204-3.068-.204-1.245 0-1.648.015-2.25.818-.582.46-1.096 1.27-1.634 1.635-.585.782-1.13 1.116-1.43 2.25-.416.81-.623 1.417-.82 2.25l.82-2.25c-.416.81-.623 1.417-.82 2.25v.203c.256-.853.8-1.666.82-2.863 0-1.058.045-2.32-.204-3.067-.326-.808-.652-1.306-1.433-1.84-.954-.942-1.74-1.577-2.86-2.044-.915-.467-1.86-.538-2.865-.204-1 .42-1.396.78-1.838 1.43-.883.313-.98.687-1.023 1.84-.037 1.11-.185 2.008 0 2.863.138 1.17.474 1.907.82 2.864.444.688.96 1.096 1.225 1.838.273 0 1.235 1.478 1.235 1.75" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M335.537 222.404c0-.458-.414-2.808-.414-3.886 0-1.11-.19-1.586-.204-2.66 0-.742.195-2.36-.305-2.05.037 1.005.1 2.37.1 3.482-.29.818-.38 1.38-1.022 1.84-.663.442-1.696.408-2.86.408-.98-.106-2.213-.17-2.865-.612-1.05-.225-1.7-.535-2.453-1.022-.7-.398-1.28-.846-1.84-1.227-.237-.872-.663-1.094-.817-2.25-.464-1.066.615-3.587.32-3.88-.08 1.046-3.92 2.673-5.022 3.063-1.12.38-2.02.41-3.272.41-.832 0-1.7-.005-2.25-.205-.87-.636-1.31-1.045-2.044-1.636-.956-.733-1.677-1.137-2.657-2.045-.85-.807-1.298-1.548-1.84-2.25-.348-.757-.968-2.008-1.432-2.657-.107-.816-.203-1.616-.203-2.658v2.862c-.408.9-1.067 1.83-1.838 2.658-1.122.514-2 1.066-3.273 1.227-.707-.393-1.616-.723-2.25-1.022-1.064-.158-1.44-.48-2.044-1.227-.7-1.128-1.32-1.934-1.43-3.27-.313-.56.108-1.05.203-1.84 0-.44.1-.305.204-.614M273.6 197.87c-.063 1.234-1.85 2.754-2.256 3.685-.332 1.05-1.034 1.67-1.436 2.452-.973.55-1.773.775-2.864 1.227-1.497.053-2.707.363-4.292.408-1.282 0-3.163.358-3.78-.408-.86-.932-2.466-2.175-3.17-3.067-.703-.68.513-2.414.325-2.762M228.01 217.977c-.424 1.274-.885 5.45-2.46 7.904-.714.93-1.684 1.286-2.66 1.636-1.16.302-2.067.7-3.474.818-.986.377-1.53.406-2.453.204-.572-.116.07-1.218-.504-1.335.76.38.084 1.987.707 2.973.08 1.046.368 1.337.408 2.453 0 1.204-.045 2.322-.204 3.474-.105 1.052-.288 1.976-.407 2.86-.617.928.01.142-.81.608-.843.254-1.768.675-2.862.816-.892.222-1.87.402-2.66.51-1.114.663-.63.52 0 1.432.738.593.984.805 1.228 1.944.29.575-.31 2.996-.824 3.892-.09 1.062-.49 1.81-.614 2.86-.34 1.195-.49 2.5-.82 3.68-.203.782-.61 1.7-.815 2.66-.363.652-1.274 1.8-1.637 2.453-.58.357-2.01 1.122-2.662 1.435-.175.675 1.194.598 1.64 1.22.662.663.982 1.106 1.226 2.25.172 1.137.418 1.82.614 2.657-.13.888-.45 2.005-1.022 2.657-.313 1.175-.747 1.785-1.43 2.248-.658.612-1.55 1.094-2.454 1.227-.63.44-1.695.704-2.657.818-.34.286-2.03 1.574-2.463 1.75M300.78 217.09c-.23 0-1.488-.065-2.045-.205-.977-.57-2.055-.408-3.27-.408-1.08.205-1.792.384-2.248 1.022-.482.906-.803 1.586-.818 2.86.012 1.15.367 1.99.61 2.864.432.52.48 1.402.82 2.043 0 .41.513 1.952.513 2.36-.44-.985-1.35-3.5-1.74-4.813-.22-1.463-.38-2.136-1.43-2.86-1.386-1.13-2.088-1.743-3.68-2.046-1.108.178-1.964.906-2.864 1.43-.59.69-1.697 1.325-2.454 1.84-1.012.88-1.696 1.51-2.045 2.862 0 1.044.096 1.844.207 2.66.162.747.374 1.573.612 2.246.272 1.192.526 2.263.614 3.476.206.21.204 1.242.204 1.022-.49-.67-.758-1.56-1.023-2.453-.315-.894-.742-1.755-1.226-2.656-.936-.816-1.172-.887-2.454-1.226-.99 0-1.934.048-2.657.204-.452.37-1.188.723-1.64 1.226-.555.708-1.138 1.346-1.43 2.453 0 1.045.096 1.845.205 2.658v2.456-2.456 2.456" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M299.35 208.3h-.204c.57 0 .267.025-.82-.41-.542-.37-1.458-.474-2.044-.817-1.18-.043-2.116-.204-3.475-.204-1.198.107-1.444.598-1.635 1.84-.286.854-.204 1.883-.204 2.86-.07 1.09-.286 2.018-.41 3.068-.12.552.14 3.933-.1 4.413-.176-1.195-.934-4.502-1.33-5.434-.7-1.54-1.58-2.695-2.862-4.09-.946-.82-1.44-.615-2.66 0-1.176.152-1.42.415-2.042.82-.617.45-1.248 1.05-1.637 1.84-.652.514-1.028 1.202-1.227 2.043.07.897.34 1.73.615 2.452.19.37 2.07 4.292 2.26 4.62.214.355-1.783-3.206-2.464-3.802-.7-.686-1.387-.613-2.66-.613-1.628.203-2.98.446-4.29 1.226-.7.675-.944 1.277-1.434 1.84-.114.85-.336 1.64-.408 2.658.154 1.013.477 1.437 1.023 2.25.186.424 1.524 2.268 1.643 2.768-.786-.434-3.12-1.745-4.3-1.745-1.197.16-1.642.532-2.248 1.43-.427 1.052-.41 2.064-.41 3.272-.035 1.006-.205 1.812-.205 2.86 0 .41.413 4.94.413 5.347-.18-.763-.845-5.598-1.23-6.162-.425-.99-1.135-2.228-2.044-2.864-.655-.392-1.38-.153-2.046.204-.275.562-.964 1.67-1.43 2.25-.273 1.024-.6 1.303-.615 2.452.113.845 1.53 4.597 1.644 5.44 0 .3-1.37-3.437-1.44-3.6-.345-.825-.987-2.083-1.432-3.066-.707-.48-1.05-.964-1.838-1.43-.747-.55-1.354-.9-2.045-1.227-1.008-.287-1.903-.41-3.07-.41-.815.4-1.233.703-1.837 1.635-.286 1.03-.41 1.873-.41 3.068v3.065c.222.813.553 1.407 1.226 2.045.428.63 1.898 2.586 2.462 3.282.83.83-1.38-2.026-1.85-2.26-.84-.447-1.273-.685-2.248-.818-.577-.29-1.764-.204-2.657-.204-.97.334-2.355.54-3.068 1.023-1.145.43-2.12.49-2.454 1.43.043 1.232.28 1.9.615 2.864.507.935.838 1.642 1.43 2.246.41.602.873.975 1.636 1.23.363.532 2.347 1.607 2.872 2.25-.634-.38-2.69-.643-3.484-.412-.562.38-1.372 1.01-2.25 1.634-.887.702-.818 1.19-.818 2.456.074.975.294 1.57.615 2.247.332.703.653 1.203 1.023 2.046-.14.31 4.838 3.536 4.838 3.81M293.628 205.847h-.204c.6 0 .262-.035-.82.613-.923.31-1.824.462-2.656.205-1.216-.144-2.416-.205-3.68-.205-.41-.307-.927-.162-1.226-.613-.832-.366-1.232-.607-1.433-1.43-.473-.788-.915-1.96-1.228-2.863-.445-.834-.78-1.44-1.226-2.453 0 1.25.212 2.338.41 3.476v3.067c-.51.967-.476 1.46-1.637 1.635-1.015 0-1.96-.165-2.658-.408-1.602-.39-3.324-.783-4.906-1.023-.67-.957-1.425-1.276-2.65-2.444" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M271.958 205.03c-1.012.275-1.98.114-2.657.816-.455.685-1.048.94-1.225 1.84-.63 1.225-.82 2.82-.82 4.498.234 1.178.928 2.294 1.638 3.067.368.6 1.25 1.873 1.844 2.765.596 1.175-.466-.354-1.232-.72-.99-1.13-2.244-2.216-3.68-2.453-1.565-.38-2.81-.522-4.29 0-1.045.514-1.27.998-1.434 2.25-.288.577-.203 1.762-.203 2.657.013 1.128.204 2.127.204 3.268.297.92.176 2.13.41 3.068.372.514.67 2.755.92 3.184-.256-1.274-.858-4.575-1.533-5.637-.498-.73-1.248-1.205-2.045-1.634-.68-.274-1.44-.497-2.453-.616-.997-.25-2.107-.252-2.862 0-1.198.424-1.603.74-2.046 1.634-.174.803-.476 1.762-.818 2.66-.07.914.003 3.94.003 5.025M258.872 205.233c0-.29-2.228.892-2.454 1.635-1.128.712-1.552 1.46-2.96 1.536-1.387.22-2.576.72-4.09.72H244.053" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M252.116 208.708v.205c0-.602.035-.262-.614.818-.84 1.096-1.118 1.624-.82 3.067 0 1.183.168 2.132.208 3.27.59 1.405 1.35 3.348 1.838 4.498.506.922.342.437-.612.41-.993-.38-1.9-.41-3.067-.41-1.085 0-2.09.032-3.07.207-.767.51-1.522.837-2.452 1.226-.575.443-1.587.874-2.042 1.43-.218.647-.207 1.715-.207 2.658.113.837.285 1.483.613 2.045.604.912 1.174 1.527 2.046 2.454.462.442 1.21.917 1.837 1.43.633.19 2.05 1.026 2.46 1.436-.733-.503-3.432-2.246-4.298-3.07-1.922-.85-3.962-1.566-6.137-1.84-1.295.047-2.24.69-3.065 1.43-.553.794-.832 1.242-1.637 1.637-.632.776-1.278.65-1.43 1.838-.31.93-.03 1.597.205 2.66.386.977.805 2.08 1.226 2.86.62.607 1.005 1.095 1.638 1.842.766.667 1.23 1.144 2.045 1.43.493.472 1.85.973 2.562 1.227-.495.43-2.146.728-2.768 1.022-.9.763-1.524 1.293-2.043 1.84-.11.815-.206 1.615-.206 2.66-.048.846-.204 1.273-.204 2.245.416.594.975 1.704 1.637 2.25.568.654 1.264.92 1.84 1.433.407.173.66.416 1.022.612l-1.023-.612c.407.173 2.203.52 2.566.716" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M243.72 208.912c-.097 0-.682.682-1.228 1.227-.863.835-.932 1.388-1.43 2.657 0 1.262.008 2.107.818 2.862.488.882 1.245 1.677 1.84 2.452.706.686 1.016 1.242 1.432 2.045-.408-.6-1.216-1.26-1.84-2.25-.693-.496-1.358-1.398-2.25-2.044-1.216-.44-1.75-.58-2.86-.41-.944.63-1.933 1.08-2.66 1.84-.838.712-1.61.92-2.044 1.84-.656.47-.776.934-.818 2.046 0 1.305.29 1.867.614 3.064.554.962 1.034 1.87 1.43 2.456.322.262 1.38 1.703 1.54 1.54-.564-.34-1.836-1.56-2.766-1.747-.77.353-2.376.207-3.475.207-1.21 0-1.942.005-2.864.408-.822.312-1.776.736-2.658 1.43-1.1.38-1.727.798-1.838 2.045.18.994.62 1.166 1.43 2.046.896.942 1.722 1.94 2.86 2.656.51.736 1.776 1.67 2.25 2.25.58.264 3.6.2 2.472.2-.898.233-4.816.914-5.54 1.433-.905.865-1.11 1.66-1.226 3.067.074 1.27.408 2.31.615 3.475.516 1.057.67 1.86 1.226 2.658.44.678 1.493 1.68 2.046 2.045.882.357 2.24 1.025 3.272 1.43.546.2 1.468.416 2.246.612h-3.68c-.956.254-1.692.36-2.248.82-.845.282-1.047.74-1.635 1.225 0 1.12.12 1.757.616 2.453.132.896.633 1.765 1.226 2.25.48.76 1.206 1.422 1.84 1.84.823.718 1.188.885 2.044 1.227.927.125 1.746.477 2.657.612.464.384 1.664.615 2.25 1.022l-2.25-1.022c.464.384 1.664.615 2.25 1.022l1.027.31c-.954.146-2.413.19-3.48.713-1.458.447-2.9.74-3.477 1.634-.92.46-1.004.892-1.226 1.84-.085 1.185-.133 1.61.204 2.454.515.74 1.045 1.234 1.638 1.637.604.506 1.772 1.47 2.657 1.838 1.017.588 1.725.883 2.453 1.227-.975.16-1.99.204-3.068.204-.665.39-1.192.405-1.634 1.022-.684.498-1.13.978-1.227 2.046-.297.884-.1 1.494.407 2.453.636.48 1.336 1.144 2.045 1.634.737.343 1.892.78 2.86 1.022.333.132 1.51.204.412.204-.524.27-1.62.206-2.453.206-1.07.096-1.485.488-2.248 1.023-.654.65-.978.792-1.023 2.042 0 1.16.103 1.66.61 2.25.54 1.128 1.032 1.48 1.842 2.044.69.42 1.802.582 2.86.613 1.26 0 2.486-.03 3.68.207.518 0 4.547.673 4.624.617" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M224.91 241.213c0 .06-.376.596-.612 1.226-1.02.77-1.038 1.45-2.25 1.634-.86.188-1.554.122-2.452 0-.366-.512-1.078-1.055-1.634-1.43-.464-.668-1.222-2.03-1.744-2.46M226.66 248.365c-.052.31-.992 2.014-1.127 2.66-.777.78-1.916 1.976-3.068 2.66-.866.204-1.502.508-2.657.612-.97.312-2.17.204-3.272.204-.895-.206-1.534-.58-2.453-1.022-.394-.487-2.82-2.52-3.486-2.972" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M225.546 251.094c0 .312-.458 4.707-1.025 6.678-.495.874-1.223 1.873-1.838 2.86-.657 1.103-1.04 1.705-2.25 2.25-1.358.512-2.706.615-4.293.615-1.016-.244-2.285-.885-3.477-1.227-.74-.503-1.72-1.104-2.453-1.637-.742-.612-1.626-1.168-2.048-2.045" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M229.414 269.028h-.204c.553 0 .27-.013-.82.204-1.382.204-2.256.08-3.475-.41-.882-.308-1.933-1.108-2.86-1.84-.85-.82-1.627-1.588-2.25-2.044-.063-.675-.365-1.224-.818-1.634 0 1.03.092 1.918.206 2.86 0 1.153-.15 2.054-.41 3.068-.323 1.137-.774 1.558-1.635 2.453-1.224.255-2.307.408-3.68.408-1.475-.01-2.744-.25-4.09-.408-.74-.336-1.41-.683-2.045-1.022M229.122 269.214c-.73 2.283-3.306 3.467-3.79 4.095-1.158.28-2.146.6-3.476.614-1.195 0-1.328-.05-2.045-.615-1.184-.396-1.56-.72-2.045-1.43 0-.274.07-.205-.204-.205M231.665 281.294l-.204.204c.465-.464.242-.294-.203.818-.635 1.195-1.478 1.39-2.657 1.84-1.08-.163-1.502-.558-2.66-1.228-1.078-.604-1.894-1.64-2.656-2.657-.618-1.37-1.023-2.526-1.023-4.087-.282-.64-.38-1.425-.818-1.84v4.294c-.317.956-.36 1.703-.612 2.657-.17 1.245-.426 2.153-.818 3.067-.752 1.045-1.92 1.305-3.476 1.432-1.247.267-2.71.204-4.087.204-1.074-.127-1.718-.334-2.658-.612-1.084-.615-1.378-.803-2.25-1.84-.956-1.082-2.095-2.45-2.66-3.477-.322-1.144-.88-4.593-1.125-5.844 0-1.208.114 2.808.106 3.39-.297 1.832-.41 3.593-.41 5.522v3.27c-.213 1.352-.382 2.046-1.227 2.862-.59.663-1.698 1.487-2.25 1.84-.436.53-1.006.93-1.838 1.225-.898.493-1.756.697-2.66.82-.492.086-.837.388-1.226 0" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M232.3 290.062c-.484.705-1.41 2.286-2.253 2.46-.896.473-2.286.41-3.68.41-.983-.226-2.016-.173-2.453-.82-1.584-1.062-3.036-2.278-4.294-3.68-.55-.706-1.078-1.54-1.433-2.248-.472-.162.058.47.206.818.745 1.094 1.235 2.197 1.43 3.476.263.978.263 2.28 0 3.065-.24 1.086-.56 1.857-1.43 2.66-.418.52-1.1.408-2.045.408-1.322-.166-2.38-.717-3.68-1.226-1.417-.837-2.01-1.08-2.656-2.453-.268-1.55-.427-3.175-.615-4.7-.027-.56-.04-2.814-.305-3.08-.29.76-.747 3.596-1.126 4.51-.24 1.313-.376 1.724-1.634 1.84-.668.326-1.59 0-2.66 0-.74-.25-1.216-.43-1.634-.818-.188-.347-.427-.47-.615-.82M234.95 292.526h-.204c.602 0 .24-.058-.41 1.02-.485.728-.636 1.624-.816 2.455.084 1.11.368 1.384.816 2.044 1.192.72 1.39 1.022 2.863 1.226 1.6.305 6.503-.106 8.1.202 1.256.18-3.547.924-4.013 1.025-.79.424-1.65.556-2.453 1.226-1.105.853-1.937 1.555-2.657 2.046-.207.788-.408 1.564-.408 2.656.277.696.65 1.327 1.02 2.045.756.795.99 1.254 2.044 1.638 1.62.058 3.22.19 4.906.204 1.637-.424 4.593-1.158 5.63-1.74.3 0-1.172.442-1.336.513-.686.342-1.364.867-2.25 1.635-.84.42-1.122.898-1.633 1.634-.532.684-.747 1.288-1.226 1.84-.143 1.053-.148 1.358.408 2.25.75 1.036.935 1.468 2.045 1.635.458.44 1.142 1.003 1.84 1.432.49.223 3.514.244 3.29.61-.997.07-4.685.386-5.334.82-.834.295-1.078.65-1.226 1.635.042 1.168.26 1.45.815 2.25.374.548.933 1.083 1.638 1.43.498.477 4.055 1.192 4.72 1.743.86.3-2.983-.31-3.698-.31-.58.29-1.764.204-2.66.204-.362.588-.83 1.144-1.226 1.838-.368.615-.085 1.33 0 2.045.535.575 1.274 1.8 1.637 2.454.673.46.835.862 1.84 1.227.412.453 4.152 1.89 4.828 1.952M243.32 332.183v.206c0-.605.06-.242-1.02.407-.5.618-1.273 1.306-1.636 1.84-.19.918.035 1.376.408 2.248.546.44 1.27 1.322 1.637 2.045.95.87 1.597 1.388 2.042 2.045.617.186 2.842 1.137 3.49 1.54-1.154-.017-4.015-1.055-5.125-1.132-1.356 0-1.97.154-2.863.615-.37.598-.777 1.11-1.02 1.838-.255.718-.5 1.404-.615 2.25-.284.88.01 1.36.407 2.044.713.575 1.015.95 1.84 1.227.592.527 1.3.803 2.454.818.51.255 2.67.1 3.284.1-.708.462-2.885.907-3.69 1.127-.642.33-1.428.567-1.842 1.023-.442.69-.776 1.112-.818 2.246.34.857.86 1.65 1.84 2.457.91 1.025 1 1.23 2.25 1.634 1.06.49 5.412.05 6.57.1-1.026.153-5.516 1.403-6.57 2.15-.745.53-.784 1.13 0 1.84.503.897 1.08 1.36 2.045 1.636 1.11 0 1.583-.19 2.656-.204.943.11 4.405-.106 5.436-.106-.792.448-4.874.993-6.05 1.13-1.023.35-1.444.383-1.635 1.43 0 .942-.11 1.623.408 2.044.53.935.842 1.007 2.045 1.02.593.358 1.404.045 2.25 0H258.574M256.99 379.178c.618 0-6.32-8.867-9.157-7.93-1.306.224-2.154.242-2.657 1.228-.734.73-1.463 1.968-1.84 3.065-.1 1.108-.27 1.995 0 3.068.187.808.664 1.664.817 2.657.225.44.5 1.396.204 1.84-.146-.698-.352-1.132-.614-2.044-.242-1.554-.385-3.22-.612-4.7-.638-.483-1.4-1.243-2.248-1.842-1.153-.164-2.157-.196-3.068 0-.755.662-1.04 1.184-1.84 1.637-.656.217-2.335.363-3.273.408" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M218.79 294.99c.07 0-.042-.056.82 1.022.5.374.67.736 1.43 1.227.874.66 1.804 1.02 3.067 1.225 1.248.42 2.578.6 3.884.816 1.127 0 2.263.02 3.273-.203 1.17 0 1.775-.167 2.86-.204l.825-.31M235.77 306.434v.206c0-.553-.012-.27.205.816 0 1.232-.19 1.563-.614 2.25-.892.646-1.89.85-3.064 1.226-1.505-.066-2.806-.334-4.09-.816-.99-.82-1.407-1.386-2.046-2.66-.664-2.024-1.205-3.58-1.226-5.725 0-1.18.032-2.08-.612-2.656-.313-.31-.344.533-.615 1.023-.09 1.23-.622 1.952-1.226 3.068-.744.717-1.615 1.55-2.656 2.25-1.076.237-1.452.42-2.453.203-.667-.792-1.59-1.778-2.044-2.25-.25-.956-.96-2.113-1.43-3.27-.44-1.1-.936-2.04-1.023-3.273-.41-1.13-.33-.975-.612.204-.598 1.295-.773 2.145-1.433 3.27-.855.666-1.64 1.254-2.86 1.638-1.428.215-2.36.11-3.68-.207-.996-.356-1.476-.796-2.045-1.633-.633-.623-.888-1.057-1.023-2.045-.417-.678-.867-2.146-1.227-3.065-.406-.493-.697-1.44-.82-2.25-.282-.232-.46-.667-.61-1.022" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M242.818 310.3c-.03.396-.453 3.117-.922 3.898-.556 1.168-.765 1.59-2.045 1.635-1.268-.204-2.26-.843-3.27-1.635-.846-1.068-1.68-1.873-2.247-3.065-.615-.506-.548-.797-.408 0 .652.668.596.646.612 1.84v3.066c-.013 1.01-.164 1.716-.41 2.452-.387 1.08-.835 1.62-1.84 2.453-1.165.26-1.358-.164-2.248-.818-1.093-.443-1.52-.843-2.25-1.43-.58-.58-1.18-1.288-1.637-2.046-.11-.815-.204-1.615-.204-2.656 0-1.022.822-3.486.822-4.51-.156-1.25-.99 1.06-1.64 1.853-.527 1.01-1.197 1.796-1.84 2.25-.86.797-2.19 1.16-3.476 1.43-1.21 0-2.186-.186-3.272-.41-.712-.986-.96-1.54-1.43-2.454 0-1.274.185-2.146.408-3.27.214-1.064.5-2.894.514-3.994 0-1.11-.19 1.207-.514 1.745-.268 1.21-.55 1.274-1.43 2.042-1.06.143-2.115.207-3.272.207-1.24 0-2.37.11-3.476.408-.763-.268-1.166-1.343-1.635-2.25-.265-.794-.4-1.55-.41-2.656 0-1.055-.242-1.674-.41-2.453-.465 1.038-.887 1.12-2.042 1.226-.672 0-1.47.073-1.84-.207-.4-.655-.94-1.26-1.227-1.84l1.227 1.84c-.4-.655-1.865-2.7-2.153-3.28" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M244.354 318.09c0 .196-.108 1.303-.203 1.84-.368.846-.49 1.61-.614 2.658-.01 1.012-.164 1.72-.408 2.453-.474.65-1.038 1.007-1.635 1.43-1.382 0-1.79-.126-2.863-.815-.896-.725-1.733-1.348-2.453-1.84-.586-.986-1.195-1.757-1.84-2.658l-.722-.72c-.416-.87.46.482.72 1.54.31 1.077.41 2.028.41 3.268-.036 1.306-.272 2.395-.41 3.682-.553 1.094-.574 1.333-1.838 1.43-1.335 0-2.61-.018-3.883-.203-1.26-.194-2.205-.54-3.272-1.227-.273-.713-.41-1.613-.41-2.66.015-1.245.304-2.29.41-3.475.437-1.192.604-1.947 1.022-3.065.334-.448.528-.933.612-1.637-.182 1.27-.858 2.164-1.226 3.27-.65 1.22-1.674 2.47-2.25 3.68-.778.748-1.06 1.045-1.838 1.43-.922-.136-1.343-.483-2.045-.815-.4-.588-.877-.93-1.226-1.84-.646-.912-.805-1.32-.818-2.658 0-.824.066-2.25 0-2.453-.085-.26-1.075-3.825-1.335-3.91M216.142 314.805c-.318.204-1.66.588-2.657.612h-3.68c-1.195-.11-1.084-.56-1.433-1.43-.37-1.082-.546-1.966-.612-3.07-.178-.987-.694-1.082-.82-1.935-.59.38-.62-.117-1.633.098-1.407.215-2.535.514-3.886.816-1.263.175-2.405.395-3.68.41-1.19 0-2.12.114-2.656-.614-.342-.686-.397-1.637-.408-2.657 0-1.15.127-2.262.408-3.068.418-.776.96-1.602 1.634-2.25.384-.56.872-1.048 1.434-1.43.42-.62.948-.852 1.226-1.634.49-.405.737-1.033 1.023-1.637" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M188.51 302.248c.367.085 3.085.69 3.692 1.128 1.004.56 1.396 1.195 2.042 1.84.323.682.538 1.305.82 2.248.155.78.203 1.817.203 2.864-.382.628-.742 1.674-1.023 2.453-.42.623-.797 1.03-1.634 1.43-.986.76-2.69 1.442-4.09 2.046-.944.112-1.83.204-2.862.204-1.022 0-2.148.618-3.17.618-.99 0-2.403-.128-3.066.204-.302 0-.156.047-.41-.204M217.572 322.99c-.082 0-.644.657-1.226 1.02-.483.816-.684 1.293-1.227 2.25-.353.956-.54 1.692-.613 2.66v2.86c.01 1.073.204 1.547.204 2.657v5.726-2.86 2.86M220.01 325.85c0 .412-.247 3.78-.003 4.51.066 1.24.416 1.934.818 2.86.64.497 1.486 1.633 2.25 2.454.614.618 1.236 1.002 2.248 1.227 1.185.237 2.125.41 3.065.207.77-.336 1.945-.996 2.864-1.433.42-.91 1.025-1.94 1.43-3.065.35-1.08.377-2.194.41-1.842.433.353 1.246 1.325 1.636 1.84.866.523 1.716 1.138 2.453 2.044.766.853 2.003.57 3.174.61" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M222.473 340.766c0-.07 2.408 3.086 3.277 3.086.946.236 2.016.374 3.068.41 1.255-.015 2.22-.328 3.27-.818.852-.9.613-2.24.613-3.68v-3.067c-.023-.837-.28-1.494-.407-2.25.188 1.328.827 2.433 1.227 3.68.455.986 1.886 4.597 3.27 4.81.626.76 1.228.367 1.84-.515 1.107-.726 1.39-4.13 1.84-4.703 0-.575.15-.533.205-1.023" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M222.05 348.528c0 .07 1.59 1.406 2.67 2.055 1.117.843 1.295 1.023 2.66 1.023.924-.175 1.294-.887 2.042-1.637 1.043-1.018 1.284-1.832 1.022-3.27-.04-1.115-.344-2.896-.612-2.45.472.617.91 1.517 1.227 2.04.42.622.72 1.06 1.633 1.226.538.455 1.314.747 2.25.818.495.37 1.13.244 1.43-.204.69-.31 1.202-.62 1.637-1.022.196-.65.538-1.05.816-1.635" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M237.6 347.733v.204c0-.55-.014-.273.203.816.07 1.184.207 2.223.207 3.476-.297 1.225-.49 2.11-1.227 2.862-.694.347-1.92.188-2.863 0-1.235-.556-4.46-2.87-4.906-3.883-.302-.176 2.667 2.068 3.067 2.656.462.71.8 1.237 1.02 2.045.2.594.343 1.9.208 2.247-.17 1.116-.56 1.084-1.433 1.433-.885.22-1.86.204-2.86.204-.913-.124-1.424-.418-2.25-.614l-.31-.207" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M241.493 356.713v1.024c-.238.942-.347 1.787-.614 2.452-.202 1.15-.698 1.202-1.432 1.84-.906.225-1.936.24-2.657 0-1.29-.773-1.964-1.187-2.862-2.25-.898-.897.384.515.818 1.228.708.625 1.126 1.07 1.227 2.25.243 1.22.29 1.737-.41 2.452-.507.726-1.272 1.094-2.454 1.43h-2.862c-1.08-.24-.975-.556-1.43-1.226M244.46 362.86c.05.39-.015 2.113-.103 3.067-.792 1.317-.79 1.375-2.25 1.84-1.178.16-2.394.205-3.68.205-.862-.302-1.493-.882-2.044-1.84-.805-.605-.254.237 0 .818.427 1.107.787 1.827 1.023 3.067.07.845.52 1.105-.408 1.227-1.033.29-2.114.408-3.272.408-.892-.122-1.896-.096-2.662-.305" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M237.387 369.72c.075.353.467 1.044 1.026 1.534.408.85.953 1.198 1.634 1.635.72.407 1.242.802 2.045 1.02 1.134 0 1.627-.213 2.453-.407 1.232-.42 1.272-.635 1.84-1.433.393-.638.687-1.08.817-2.042.294-.588.2-1.656 0-2.25-.082-1.08-.537-1.448-.816-2.248-.29-.098-.384-.82-.617-1.13M209.386 315.626c-.07.07-.135.138-.204.204.485-.485.286-.252-.818.41-.996.268-1.402.583-1.84 1.227-.93.514-1.578.972-1.84 2.045v2.86c-.222.746-.204 2.015-.204 3.07 0 1.11-.13 2.03-.204 3.064.143.667.54 1.624.31 2.254-.077-.893-.514-2.093-.514-3.07-.373-.543-.784-1.754-1.226-2.25-.59-.51-1.195-.736-2.25-1.022-1.088-.363-1.81-.225-2.452.408-.47.49-1.036 1.3-1.434 2.25-.222 1.123-.572 1.745-.612 2.86-.23 1.073-.407 1.722-.203 2.66v3.065c0 .955.206 2.22.206 3.175-.13 1.512-.49-.236-.82-.72-.22-1.026-.442-1.86-1.023-2.454-.514-.62-1.364-.815-2.453-.815-1.043 0-1.626-.244-1.838.612-.302.604-.355 1.976-.41 2.864v5.723c-.176-1.086-.6-1.58-1.227-2.453-.714-.82-1.283-1.04-2.658-1.227-1.336-.323-1.995-.198-3.068.41-1.028 1.005-1.706 1.347-1.84 2.454-.414.5-.502 1.438-.613 2.25v3.064c0 .57-.842-.62-1.43-1.43-.686-.943-1.094-1.184-2.25-1.226-.783.403-2.343 1-3.064 1.634-.522.422-.41 1.102-.41 2.046v2.863c-.056.71-1.118.71-1.635.204-.756-.372-1.753-.886-2.656-1.02-.78-.37-1.428-.454-2.045-.205-.32 1.033-.616 1.85-.616 3.065-.312.84-.408 1.454-.408 2.453" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M214.5 322.38c-.07 0 2.744-.926 2.675-.926.572 0-2.612.9-3.698 1.335-.827.3-1.72 1.196-2.453 2.044-1.683 1.502-3.72 3.765-5.317 5.52-1.478 1.484-2.53 2.5-3.476 4.088-2.04 1.62-3.554 3.17-5.313 5.113-1.878 1.404-3.733 2.753-5.52 4.292-1.79.895-3.373 1.698-5.317 2.453-1.738.58-3.238 1.35-4.907 2.045-.887.69-1.396.99-2.453 1.43-1.61.925-3.45 1.635-4.702 2.454-.612.414-1.036.968-2.045 1.432-.644.752-1.49 1.06-2.453 1.634-1.118.403-2.305.798-3.68 1.227-1.417.485-2.296.89-3.68 1.43-3.758 1.317-7.602 2.827-11.448 3.476-1.102.402-2.213.735-3.27.817-1.553.562-3.48.59-5.112.82-1.047.275-2.36.608-3.27.815-1.053.29-2.08.535-2.863.82-1.05.12-2.226.42-3.067.613-.996.294-1.42.59-2.25.816-.465.406-2.404 1.96-2.87 2.36M185.068 316.845c.12.392.41 1.63.41 2.66-.167.974-.365 2.193-.818 2.86-.366.917-1.54 1.78-2.25 2.453-.82.18-1.554.347-2.452.615-1.055.077-3.444 2.384-4.61 2.47-.68.134-1.523.2-2.456.2-.29-.307-.39-.132-.816-.302.687.49.477.658.612 1.734 0 1.09.763 2.177.62 3.17-.25 1.21-1.295 2.676-2.14 3.153-1.033.64-1.942 1.036-3.068 1.433-1.007.035-1.814.204-2.86.204-.682 0-1.22-.037-1.638-.204M195.902 310.513V311.74c.268 1.34.464 2.275 1.43 3.27.684.918 1.776 1.636 2.862 2.25h3.068c.736-.127 2.376.128 3.18.104M198.34 317.268c-.07.067.48-.174.413-.106.51-.514-.34.045-1.436.922-1.232 1.047-1.762 1.508-2.045 3.068.016 1.174.265 1.51.615 2.25.257.91.755 1.753 1.43 2.248.273 0 .204.07.204-.204M184.962 322.17c0 .097.96.5 1.332 1.022 1.044.665 2.37 1.85 3.68 2.657 1.274.423 2.458.118 3.68-.41.813-.214 1.414-.508 2.044-1.226l.207-.206" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M188.75 325.454c-.538.95-1.35 1.52-1.433 2.657 0 1.048.137 1.946.41 2.658.382.707.83 1.82 1.43 2.453.374.613.758 1.13 1.227 1.432-.363-1.004-1.282-1.783-2.25-2.657-.375-.43-.817-.612-1.225-.204-1.05.075-1.763.337-2.454.615-1.15.4-2.114.933-2.86 1.43-.75.774-.82 1.2-.82 2.454-.098 1.297-.204 2.545-.204 3.882.315.26.38.453.408 1.023-.222-.858-.675-2.193-1.226-2.86-.49-.687-.846-.806-2.046-.82-1.038.19-1 .702-1.634 1.227-.62.898-1.05 1.18-1.43 2.25-.5 1.165-.615 2.15-.615 3.475.272 0 .613 2.127.613 1.854" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M179.53 325.454v.204c0-.546.04-.26-.614.612-.283.962-.408 1.494-.408 2.66.154 1.18.59 1.796.82 2.86.8.954 1.117 1.397 2.04 1.842.282.28.645.38.82.204M173.81 332.792h-.205c.053.135 0 .91 0 1.43 0 .978-.082 2.01.204 2.864.203.832 1.355 1.147 1.845 1.637M163.186 337.905c0 .07.41-.48.41-.413 0-.57-.386.35-.818 1.435-.964 1.147-1.67 2.05-2.864 3.272-1.255.39-2.05 1.15-3.27 2.044-1.334.755-2.632 1.192-3.885 1.84-1.37.573-2.955.99-4.498 1.43-1.373.505-2.97.88-4.498 1.022-1.038.357-2.185.61-3.27.818-1.274.443-2.675.972-3.886 1.43-.942.327-1.464.515-2.25 1.023-1.23.424-2.428 1.243-3.68 1.84-.447.542-1.67 1.29-2.452 2.044-1.275.684-2.577 1.845-3.884 2.454-1.507.962-3.013 1.754-4.702 2.25-1.348.64-2.67 1.117-3.885 1.84-.92.625-1.86 1.523-2.862 2.25-.623.916-1.41 1.6-2.25 2.248-.66 1.224-1.743 2.165-2.656 3.065-.545.37-1.176.962-1.636 1.434-.627.647-1.23 1.224-1.84 1.635-.6.744-.937 1-1.84 1.43-.56.578-1.258.745 0 .82 1.17-.374 2.595-.377 3.885-.41 1.27-.274 2.746-.417 4.09-.613 1.14-.146 2.486-.37 3.883-.408 1.488.25 3.678-.4 5.316-1.023 1.342-.794 2.583-1.504 3.885-2.248.745-.52 1.39-.752 2.247-1.227.742-.2 1.438-.606 2.25-.818M168.696 336.474c0 .252.085 1.465.204 2.045.395 1.263.92 2.233 1.84 3.064.71.42 2.184.308 3.376.308M164.405 337.507c-.162 0-.1.483-.408 1.023 0 1.054.143 2.133.408 2.86 1.353.634 2.286.944 3.883 1.024.975-.075 1.523-.324 2.25-.612.638-.133-.215.492-.82 1.02-.855.858-1.242 1.584-.815 2.863.43.896 3.743 2.02 4.313 2.562" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M160.113 341.8c-.207.953-.236 1.504.41 2.245.557.46 1.384.41 2.454.41 1.822-.097 3.486-.41 5.314-.41.862 0-.706.117-1.022.207-1.028.36-1.557.474-2.25 1.02-1.09.448-1.64.96-2.656 1.84-.41.61-.59 1.403-.204 2.046.403.594.912 1.02 1.635 1.43.765.594.948.923 2.045 1.023h.408" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M157.358 343.653c-.095.387-.514 1.02-.514 2.04.085 1.09.35 1.38 1.023 1.84.56.46 1.385.41 2.453.41h1.226c-.583.34-1.5.447-2.042.815-.644.44-.96.845-1.227 1.84-.016 1.143-.196 1.562 0 2.658.445.835.694 1.45 1.227 2.25.4.588 2.432 1.782 3.18 2.047M151.734 346.912c-.187.86-.12 1.555 0 2.453.483.54.85 1.24 1.43 1.634.577.476 2.4.187 3.484.2.86.025 1.338.205.204.205-.546.522-2.17 1.163-2.46 2.254-.294.587-.2 1.652 0 2.248.08 1.04.386 1.415.613 2.247.55.574.8.892 1.635 1.23l-1.635-1.23c.55.574.8.892 1.635 1.23v.203c-.11-.255-.183-.464-.408-.615" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M145.093 348.448c-.49.73-.77.98-.514 1.94.534.746 1.093 1.536 1.84 2.045 1.186 1.078 7.618-.456 8.533-.318.278.28-7.793 1.592-8.33 3.383-.22.73-.303 1.952 0 2.863.015 1.175.264 1.51.614 2.25.282.594.49.996 1.227 1.227-.273 0-.205.066-.205-.207" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M137.22 350.99c-.29.897.057 1.305.408 2.047.49.733 1.338 1.68 2.045 2.145.413.24 7.118-.312 6.995-.312-.752.262-6.887 1.843-8.017 2.46-.422.822-.408 1.52-.408 2.658.082 1.073.158 1.534 1.022 1.84.577.287 1.7.35 2.453.41l1.442.31" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M131.498 353.35c0 .224-.334 1.204-.208 1.938.287.67.137 1.113.613 1.43.174.986.46 1.65 1.432 1.842 1.07 0 1.895.05 2.453-.41.842-.37 1.343-.69 2.044-1.02l-2.044 1.02c.842-.37 1.343-.69 2.044-1.02l3.81-1.134c-.63.458-4.675 2.103-5.445 2.36-.576.548-1.044.638-1.227 1.634-.12.898-.187 1.593 0 2.453.528.504.972.95 1.43 1.43" stroke-linecap="round" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M127.2 356.104c-.105.236-.613 1.147-.613 2.043.1 1.096.428 1.282 1.023 2.045h2.862c.796.143 3.106-.827 3.998-.827-.897.196-3.135 1.404-3.59 2.053-.55.22-.55.55-.613 1.227-.316.53-.195 1.51 0 2.045.386.567.842 1.068 1.227 1.634" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M122.09 358.965c0 .302.077 1.63.205 2.25.79.61 1.286 1.017 2.25 1.634 1.003.04 5.15-1.853 6.26-1.853.793 0-4.012 2.175-4.217 2.262-.412.67-.735.977-.818 2.045-.372.62-.113 1.552 0 2.246.328.507.66.756 1.227 1.023-.272 0-.204.07-.204-.203" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M116.774 361.64c0 .07.013-.065-.205 1.023-.402.535-.05 1.036.408 1.434.587.79 1.527.98 2.453 1.226.915.162 1.847.204 2.864.204.773 0 3.703-1.923 4.107-2.265-.676.273-3.98 2.403-4.924 2.673-1.145.525-1.452.964-1.84 2.045.043 1.166.363 1.447.818 2.25.413.765 2.185-.062 2.87.394" stroke-width=".9934124999999999" fill="none"/> + <path stroke-linejoin="round" d="M112.89 364.9v.203c0-.6.035-.262-.613.82-.207.95-.27 1.482.41 2.044.5.74.85 1.078 1.84 1.226.32.138 5.325-2.678 5.86-2.678-.805.55-6.442 3.802-6.883 4.723-.387.8-.41 1.476-.41 2.454M107.576 370.224c0 1.07-.05 1.894.41 2.453.112.935 2.08 1 2.772 1.327" stroke-width=".9934124999999999" fill="none"/> + </g> +</svg> diff --git a/s/flag/bv.svg b/s/flag/bv.svg new file mode 100755 index 0000000..369f67c --- /dev/null +++ b/s/flag/bv.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)"> + <path fill="#fff" d="M-28 0h699.74v512H-28z"/> + <path fill="#d72828" d="M-52.992-77.837h218.72v276.26h-218.72zM289.42-.572h380.91v199H289.42zM-27.545 320.01h190.33v190.33h-190.33zM292 322.12h378.34v188.21H292z"/> + <path fill="#003897" d="M196.65-25.447h64.425v535.78H196.65z"/> + <path fill="#003897" d="M-27.545 224.84h697.88v63.444h-697.88z"/> + </g> +</svg> diff --git a/s/flag/bw.svg b/s/flag/bw.svg new file mode 100755 index 0000000..7becab4 --- /dev/null +++ b/s/flag/bw.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" fill="#28ff09"> + <g fill-rule="evenodd" fill-opacity="1"> + <path fill="#00cbff" d="M0 0h640v480H0z"/> + <path fill="#fff" d="M0 160h640v160H0z"/> + <path fill="#000" d="M0 185.97h640v108.05H0z"/> + </g> +</svg> diff --git a/s/flag/by.svg b/s/flag/by.svg new file mode 100755 index 0000000..a61e842 --- /dev/null +++ b/s/flag/by.svg @@ -0,0 +1,62 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h682.6v512H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.9376 0 0 .9375 0 0)"> + <path fill="#b20000" d="M0 0h1024v340.11H0z"/> + <path fill="#429f00" d="M0 340.11h1024V512H0z"/> + <path fill="#fff" d="M0 0h113.37v512H0z"/> + <g stroke-width="1pt" fill="#b20000"> + <path d="M5.394 8.682h5.398v8.68H5.394zM21.59 8.682h16.196v8.68H21.59zM26.983 0h5.398v8.68h-5.397zM53.98 0h5.4v8.68h-5.4zM75.57 8.682h16.197v8.68H75.57zM80.98 0h5.398v8.68H80.98z"/> + <path d="M16.196 17.36h10.798v8.68H16.196zM32.392 17.36H43.19v8.68H32.392zM70.177 17.36h10.798v8.68H70.177zM86.373 17.36H97.17v8.68H86.374zM10.787 26.04h10.798v8.678H10.787zM37.786 26.04h10.797v8.678H37.786zM64.784 26.04H75.58v8.678H64.785zM91.767 26.04h10.797v8.678H91.767zM102.57 8.682h5.397v8.68h-5.398zM5.394 34.718h10.798v8.678H5.394zM43.18 34.718h10.797v8.678H43.18zM97.175 34.718h10.798v8.678H97.175zM10.787 60.75h10.798v8.68H10.787zM16.196 69.43h10.798v8.677H16.196zM37.786 60.75h10.797v8.68H37.786zM32.392 69.43H43.19v8.677H32.392zM21.59 78.107h16.196v8.678H21.59z"/> + <path d="M26.983 86.784h5.398v8.68h-5.397zM64.784 60.752H75.58v8.678H64.785zM70.177 69.43h10.798v8.677H70.177zM91.767 60.75h10.797v8.68H91.767zM86.373 69.43H97.17v8.677H86.374zM75.57 78.107h16.197v8.678H75.57z"/> + <path d="M80.98 86.784h5.398v8.68H80.98zM53.98 78.107h5.4v8.678h-5.4zM0 78.107h5.398v8.678H0zM107.963 78.107h5.398v8.678h-5.397zM26.983 121.497h5.398v8.678h-5.397z"/> + <path d="M21.59 130.174h16.196v8.678H21.59zM16.196 138.852H43.19v8.678H16.196zM80.98 121.497h5.398v8.678H80.98z"/> + <path d="M75.57 130.174h16.197v8.678H75.57zM70.177 138.852H97.17v8.678H70.178zM75.57 182.242h26.994v8.678H75.57zM64.784 147.53h37.79v8.68h-37.79zM10.787 147.53h37.79v8.68h-37.79zM16.196 190.92h16.196v8.678H16.196zM10.787 182.242H37.78v8.678H10.788zM86.373 164.886h26.994v8.678H86.373zM80.98 190.92h16.195v8.678H80.98z"/> + <path d="M21.59 199.597h5.398v8.68H21.59zM86.373 199.597h5.398v8.68h-5.397zM0 164.886h26.994v8.678H0zM48.588 182.242h16.196v8.678H48.588zM53.98 190.92h5.4v8.678h-5.4zM37.786 164.886h37.79v8.678h-37.79zM59.375 34.718h10.798v8.678H59.375z"/> + <path d="M48.588 43.395h16.196v8.678H48.588z"/> + <path d="M43.18 52.073h10.797v8.68H43.18zM59.375 52.073h10.798v8.68H59.375zM0 43.395h10.798v8.678H0z"/> + <path d="M5.394 52.073h10.798v8.68H5.394zM102.57 43.395h10.797v8.678H102.57z"/> + <path d="M97.175 52.073h10.798v8.68H97.175zM0 130.174h5.398v8.678H0zM107.963 130.174h5.398v8.678h-5.397zM48.588 199.597h16.196v8.68H48.588z"/> + <path d="M43.18 208.276h10.797v8.678H43.18zM59.375 208.276h10.798v8.678H59.375zM37.786 216.954h10.797v8.678H37.786zM64.784 216.954H75.58v8.678H64.785z"/> + <path d="M32.392 225.63H43.19v8.68H32.392zM70.177 225.63h10.798v8.68H70.177zM26.983 234.31H37.78v8.678H26.984zM75.57 234.31h10.8v8.678h-10.8z"/> + <path d="M16.196 242.987h16.196v8.678H16.196zM80.98 242.987h16.195v8.678H80.98z"/> + <path d="M91.767 234.31h10.797v8.678H91.767zM97.175 225.63h10.798v8.68H97.175z"/> + <path d="M102.57 216.954h10.797v8.678H102.57zM10.787 234.31h10.798v8.678H10.787zM5.394 225.63h10.798v8.68H5.394z"/> + <path d="M0 216.954h10.798v8.678H0zM21.59 251.665h5.398v8.678H21.59zM86.373 251.665h5.398v8.678h-5.397zM53.98 225.63h5.4v8.68h-5.4zM37.786 251.665h5.398v8.678h-5.398zM70.177 251.665h5.398v8.678h-5.398zM53.98 251.665h5.4v8.678h-5.4zM0 251.665h5.398v8.678H0zM107.963 251.665h5.398v8.678h-5.397zM53.98 130.174h5.4v8.678h-5.4zM26.983 43.395h5.398v8.678h-5.397zM80.98 43.395h5.398v8.678H80.98zM48.588 104.14h16.196v8.68H48.588z"/> + <path d="M37.786 112.818H53.98v8.68H37.787z"/> + <path d="M43.18 121.497h5.397v8.678H43.18zM32.392 104.14H43.19v8.68H32.392z"/> + <path d="M37.786 95.463H53.98v8.678H37.787z"/> + <path d="M43.18 86.784h5.397v8.68H43.18zM59.375 95.463H75.57v8.678H59.376z"/> + <path d="M64.784 86.784h5.398v8.68h-5.398zM70.177 104.14h10.798v8.68H70.177z"/> + <path d="M59.375 112.818H75.57v8.68H59.376z"/> + <path d="M64.784 121.497h5.398v8.678h-5.398zM86.373 104.14H97.17v8.68H86.374z"/> + <path d="M91.767 95.463h16.196v8.678H91.767z"/> + <path d="M102.57 104.14h10.797v8.68H102.57z"/> + <path d="M91.767 112.818h16.196v8.68H91.767z"/> + <path d="M97.175 121.497h5.4v8.678h-5.4zM97.175 86.784h5.4v8.68h-5.4zM0 104.14h10.798v8.68H0z"/> + <path d="M5.394 95.463H21.59v8.678H5.394z"/> + <path d="M16.196 104.14h10.798v8.68H16.196z"/> + <path d="M5.394 112.818H21.59v8.68H5.394z"/> + <path d="M10.787 121.497h5.398v8.678h-5.398zM10.787 86.784h5.398v8.68h-5.398zM5.394 156.208h21.594v8.678H5.394zM32.392 156.208h21.594v8.678H32.392zM59.375 156.208H80.97v8.678H59.374zM86.373 156.208h21.594v8.678H86.373zM43.18 173.563h26.993v8.68H43.18zM5.394 173.563h26.993v8.68H5.394zM80.98 173.563h26.993v8.68H80.98zM107.963 208.276h5.398v8.678h-5.397zM0 208.276h5.398v8.678H0zM5.394 503.327h5.398v-8.678H5.394zM21.59 503.327h16.196v-8.678H21.59z"/> + <path d="M26.983 511.997h5.398v-8.678h-5.397zM53.98 511.997h5.4v-8.678h-5.4zM75.57 503.327h16.197v-8.678H75.57z"/> + <path d="M80.98 511.997h5.398v-8.678H80.98zM16.196 494.645h10.798v-8.678H16.196zM32.392 494.645H43.19v-8.678H32.392zM70.177 494.645h10.798v-8.678H70.177zM86.373 494.645H97.17v-8.678H86.374zM37.786 485.963h10.797v-8.678H37.786zM64.784 485.963H75.58v-8.678H64.785zM91.767 485.963h10.797v-8.678H91.767zM102.57 503.327h5.397v-8.678h-5.398zM5.394 477.293h10.798v-8.678H5.394z"/> + <path d="M43.18 477.293h10.797v-8.678H43.18zM97.175 477.293h10.798v-8.678H97.175zM10.787 451.26h10.798v-8.68H10.787zM16.196 442.577h10.798V433.9H16.196zM37.786 451.26h10.797v-8.68H37.786zM32.392 442.577H43.19V433.9H32.392zM21.59 433.895h16.196v-8.678H21.59z"/> + <path d="M26.983 425.225h5.398v-8.678h-5.397zM64.784 451.26H75.58v-8.68H64.785zM70.177 442.577h10.798V433.9H70.177zM91.767 451.26h10.797v-8.68H91.767zM86.373 442.577H97.17V433.9H86.374zM75.57 433.895h16.197v-8.678H75.57z"/> + <path d="M80.98 425.225h5.398v-8.678H80.98zM53.98 433.895h5.4v-8.678h-5.4zM0 433.895h5.398v-8.678H0zM107.963 433.895h5.398v-8.678h-5.397zM26.983 390.51h5.398v-8.68h-5.397z"/> + <path d="M21.59 381.84h16.196v-8.68H21.59zM16.196 373.158H43.19v-8.68H16.196zM80.98 390.51h5.398v-8.68H80.98z"/> + <path d="M75.57 381.84h16.197v-8.68H75.57zM70.177 373.158H97.17v-8.68H70.178zM75.57 329.772h26.994v-8.68H75.57zM64.784 364.475h37.79v-8.678h-37.79zM10.787 364.475h37.79v-8.678h-37.79zM16.196 321.09h16.196v-8.682H16.196zM10.787 329.772H37.78v-8.68H10.788zM86.373 347.124h26.994v-8.68H86.373zM80.98 321.09h16.195v-8.68H80.98zM0 347.124h26.994v-8.68H0zM48.588 329.772h16.196v-8.68H48.588zM53.98 321.09h5.4v-8.68h-5.4zM37.786 347.124h37.79v-8.68h-37.79zM59.375 477.293h10.798v-8.678H59.375zM48.588 468.61h16.196v-8.677H48.588zM43.18 459.93h10.797v-8.68H43.18zM59.375 459.93h10.798v-8.68H59.375zM0 468.61h10.798v-8.677H0zM5.394 459.93h10.798v-8.68H5.394zM102.57 468.61h10.797v-8.677H102.57zM97.175 459.93h10.798v-8.68H97.175zM0 381.84h5.398v-8.68H0zM107.963 381.84h5.398v-8.68h-5.397zM43.18 303.738h10.797v-8.68H43.18zM59.375 303.738h10.798v-8.68H59.375zM37.786 295.056h10.797v-8.68H37.786zM64.784 295.056H75.58v-8.68H64.785zM32.392 286.374H43.19v-8.68H32.392zM70.177 286.374h10.798v-8.68H70.177z"/> + <path d="M26.983 277.704H37.78v-8.68H26.984zM75.57 277.704h10.8v-8.68h-10.8zM16.196 269.022h16.196v-8.68H16.196zM80.98 269.022h16.195v-8.68H80.98zM91.767 277.704h10.797v-8.68H91.767z"/> + <path d="M97.175 286.374h10.798v-8.68H97.175zM102.57 295.056h10.797v-8.68H102.57zM10.787 277.704h10.798v-8.68H10.787z"/> + <path d="M5.394 286.374h10.798v-8.68H5.394zM0 295.056h10.798v-8.68H0zM21.59 260.343h5.398v-8.678H21.59zM53.98 286.374h5.4v-8.68h-5.4zM53.98 381.84h5.4v-8.68h-5.4zM26.983 468.61h5.398v-8.677h-5.397zM80.98 468.61h5.398v-8.677H80.98zM48.588 407.873h16.196v-8.678H48.588zM37.786 399.19H53.98v-8.677H37.787zM43.18 390.51h5.397v-8.68H43.18zM32.392 407.873H43.19v-8.678H32.392z"/> + <path d="M37.786 416.543H53.98v-8.678H37.787zM43.18 425.225h5.397v-8.678H43.18zM59.375 416.543H75.57v-8.678H59.376zM64.784 425.225h5.398v-8.678h-5.398z"/> + <path d="M70.177 407.873h10.798v-8.678H70.177zM59.375 399.19H75.57v-8.677H59.376zM64.784 390.51h5.398v-8.68h-5.398zM86.373 407.873H97.17v-8.678H86.374z"/> + <path d="M91.767 416.543h16.196v-8.678H91.767z"/> + <path d="M102.57 407.873h10.797v-8.678H102.57zM91.767 399.19h16.196v-8.677H91.767zM97.175 390.51h5.4v-8.68h-5.4zM97.175 425.225h5.4v-8.678h-5.4zM0 407.873h10.798v-8.678H0z"/> + <path d="M5.394 416.543H21.59v-8.678H5.394z"/> + <path d="M16.196 407.873h10.798v-8.678H16.196zM5.394 399.19H21.59v-8.677H5.394zM10.787 390.51h5.398v-8.68h-5.398zM10.787 425.225h5.398v-8.678h-5.398zM5.394 355.806h21.594v-8.68H5.394zM32.392 355.806h21.594v-8.68H32.392zM59.375 355.806H80.97v-8.68H59.374zM86.373 355.806h21.594v-8.68H86.373zM43.18 338.442h26.993v-8.68H43.18zM5.394 338.442h26.993v-8.68H5.394zM80.98 338.442h26.993v-8.68H80.98zM107.963 303.738h5.398v-8.68h-5.397zM0 303.738h5.398v-8.68H0zM48.588 260.343h5.398v8.68h-5.398zM59.375 260.343h5.398v8.68h-5.398zM59.375 242.987h5.398v8.678h-5.398zM48.588 242.987h5.398v8.678h-5.398zM10.787 477.293h10.798v8.68H10.787zM86.373 312.408h5.398v-8.68h-5.397zM21.59 312.408h5.398v-8.68H21.59zM48.585 303.734H64.78v8.677H48.585z"/> + </g> + </g> +</svg> diff --git a/s/flag/bz.svg b/s/flag/bz.svg new file mode 100755 index 0000000..a0db1ae --- /dev/null +++ b/s/flag/bz.svg @@ -0,0 +1,237 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g clip-path="url(#a)"> + <path fill-rule="evenodd" fill="#c60000" d="M-40 0h720v480H-40z"/> + <path fill-rule="evenodd" fill="#003bb2" d="M-40 68.57h720v342.86H-40z"/> + <path d="M457.137 239.998c0 75.743-61.403 137.143-137.142 137.143-75.743 0-137.142-61.402-137.142-137.142 0-75.743 61.402-137.142 137.142-137.142 75.743 0 137.142 61.403 137.142 137.142z" fill-rule="evenodd" fill="#fff"/> + <g stroke="#000" fill-rule="evenodd"> + <path d="M0 318.04c6.927 1.02 14.39 1.206 23.312 0 7.405 1.994 12.863 5.647 18.317 8.326 3.056 5.665 7.338 14 11.655 18.316 1.874 6.872 4.64 9.755 8.326 16.652.92 6.795 3.183 13.617 0 19.98-3.795 4.746-9.757 7.516-14.985 9.992-6.902 3.688-10.937 5.046-19.982 6.66-7.444 1.33-15.03 1.666-23.312 1.666-8.012-1.43-14.19-2.757-21.646-3.33-7.414-1.324-15.898-2.007-23.312-3.33-4.813-2.816-11.026-5.127-16.65-6.66-3.908-3.726-9.56-7.954-14.987-11.657-4.19-7.502-8.004-10.206-11.656-16.652-3.318-4.876-4.892-11.17-4.997-19.98 2.625-5.345 6.96-10.53 9.99-14.987 5.198-3.433 11.073-7.99 18.317-11.656 9.784-.346 13.604-3.214 23.312-3.33h24.977c5.65.565 8.44 5.583 13.32 9.99z" transform="matrix(.199 0 0 .1704 345.244 141.57)" stroke-width="3.75" fill="#030"/> + <path d="M273.08 659.39c-6.66-38.298-16.652-133.21-16.652-174.84 1.665-31.64 121.56-139.87 124.89-151.53 3.33-11.656 64.94-99.91 74.93-126.55-24.976 18.316-66.605 98.243-74.93 106.57-8.326 8.326 18.316-83.257 9.99-111.56-8.325 33.303-21.646 118.22-31.637 126.55-4.994 4.996-91.582 104.9-101.57 101.57-9.99-3.33-36.632-19.98-31.636-29.972 4.995-9.99 71.6-71.6 74.93-93.248s8.327-73.266 14.987-78.26c6.662-4.997 16.653-29.974 24.978-49.956-21.646 9.99-24.977 39.964-33.302 41.63-8.326 1.664-28.308-33.304-28.308-33.304s13.32 38.298 14.986 46.624c1.666 8.326-6.66 63.275-11.656 69.936-4.995 6.66-41.628 53.284-48.29 54.95-6.66 1.665-24.976-76.597-24.976-91.583s13.32-73.266 0-76.597c-8.326 0-9.99 68.27-14.986 68.27s-16.652-68.27-16.652-68.27-6.66 31.638-3.33 53.284c-9.99 1.666-36.633-39.962-36.633-39.962s49.955 86.587 59.947 89.917c9.99 4.994 19.98 68.27 18.316 71.6s-49.954-16.65-59.945-23.312c-9.99-6.66-29.973-79.927-29.973-79.927s9.99 71.602-1.665 61.612c-11.656-9.99-29.972-18.317-39.963-33.303-9.99-14.987-4.995-76.598-4.995-76.598s-16.65 54.95-23.312 54.95c-6.66 0-28.307-73.266-28.307-73.266s3.33 79.927 13.32 84.922c9.99 4.995 159.85 104.9 161.52 114.9 1.666 9.99 19.983 48.288 29.974 59.944-1.666 21.647 6.66 161.52 9.99 194.82l29.973 9.99z" transform="matrix(.199 0 0 .1704 278.923 126.253)" stroke-width="1pt" fill="#520900"/> + <path d="M-338.02 133.21c1.85 6.416 2.528 12.146 11.656 14.986 5.054 1.925 15.007 4.53 19.982 6.66 5.242 2.484 11.14 5.594 18.316 6.66 5.394 1.8 14.58 3.65 21.647 4.997 7.444 1.33 15.03 1.665 23.313 1.665 9.557-1.707 13.81-3.43 19.98-8.326 1.852-6.786 4.344-9.832 4.997-18.317.567-7.944 1.665-14.82 1.665-23.31-1.54-4.624-1.79-15.36-3.33-19.983-5.577-5.466-7.05-8.65-16.652-11.656-7.476-3.382-14.307-3.33-23.312-3.33-6.96 2.32-15.343 1.665-23.31 1.665h-23.312c-6.973 1.517-12.292 2.763-18.317 6.66-8.132 3.674-9.337 6.318-13.32 14.988-2.934 8.8-3.036 15.415 0 26.642z" transform="matrix(.199 0 0 .1704 343.254 135.897)" stroke-width="3.75" fill="#030"/> + <path d="M-329.7 191.49c0-2.78-6.02 2.69-8.326 4.995-5.392 3.774-7.647 8.815-8.326 18.317-2.502 5.19 0 13.714 0 21.646 0 9.18.062 15.585 4.996 19.982 5.598 3.445 8.29 4.995 18.316 4.995h46.624c5.896-1.965 13.09-2.953 19.982-4.995 7.705-4.085 13.07-4.517 21.646-6.66 4.883-4.238 11.635-8.6 19.982-9.99 9.547-.456 15.257-3.79 21.647-8.327 8.217-2.054 15.636-6.365 21.648-9.99 4.837-3.29 8.31-7.416 11.656-13.322 3.396-7.924 4.482-12.894-1.665-21.646-12.144-4.415-6.11-9.19-14.988-13.32-4.062-2.454-13.524-5.674-18.316-8.327-8.293.615-14.192 2.68-23.312 3.33-4.71 2.356-14.368 1.666-21.647 1.666h-26.642c-7.968 0-16.35-.656-23.312 1.665-6.667 1.818-9.985 4.842-16.65 6.66-4.394 2.987-11.508 5.41-16.653 8.326l16.652-8.326c-4.393 2.987-11.507 5.41-23.312 13.322z" transform="matrix(.199 0 0 .1704 342.26 137.6)" stroke-width="3.75" fill="#030"/> + <path d="M-186.5 49.95c3.314 0-5.2 3.98-8.326 6.66-4.01 7.063-4.474 13.422-6.66 19.98-2.566 5.773-5.727 13.067-6.66 19.983-3.14 7.494-4.88 10.226-4.997 19.982 0 7.677-.09 16.38 1.665 21.646 5.05 6.363 9.9 9.977 18.317 14.987 7.206 2.495 12.49 3.984 19.98 4.996h23.313c5.267 1.756 13.97 1.665 21.646 1.665 8.492-3.172 11.708-7.208 19.98-8.326 9.116-.828 10.688-4.642 14.987-11.656 3.998-5.168 5.674-11.013 6.66-18.316 0-8.4-.75-15.628-1.665-23.312-4.006-4.494-7.052-10.696-9.99-18.316-5.146-8.82-5.152-12.74-13.32-16.65-3.977-5.43-10.85-8.07-14.988-11.657-8.65-.618-15.218-1.694-21.646-4.995-7.678 0-16.38-.09-21.647 1.665-6.03 0-10.446.57-16.65 1.665z" transform="matrix(.199 0 0 .1453 343.918 141.036)" stroke-width="3.75" fill="#030"/> + <path d="M-58.28 64.935c-.987 0-4.077 4.824-6.66 9.99-4.344 6.916-4.925 13.316-8.326 18.317-1.33 7.443-1.665 15.028-1.665 23.312.754 8.314 3.195 11.323 8.324 14.987 7.713 4.38 11.367 6.412 19.982 8.326 7.447.573 12.8 1.665 21.647 1.665 7.968 0 16.35.657 23.312-1.664 8.283 0 15.87-.336 23.312-1.665 3.823-3.24 12.04-6.14 16.65-8.324 5.483-6.642 8.107-13.245 11.657-18.317 0-9.823.078-15.565-4.995-23.313-3.622-6.388-7.962-9.32-13.323-14.986-6.718-2.336-12.38-7.195-19.982-8.325H-58.28z" transform="matrix(.199 0 0 .1704 342.59 135.33)" stroke-width="3.75" fill="#030"/> + <path d="M76.596 76.59c-6.286 2.62-8.59 3.3-11.656 9.992-4.62 7.115-7.342 10.462-11.656 14.986-.99 6.664-3.643 13.88-6.66 18.317-.915 7.684-1.666 14.913-1.666 23.312 4.222 6.486 10.085 12.603 16.65 16.65 6.792 2.352 13.95 5.933 19.983 8.327 7.767 2.033 14.952 4.398 23.313 4.995 7.217 1.804 15.164 1.664 23.312 1.664 7.404-1.61 13.75-3.478 19.98-8.325 3.334-5.197 7.157-11.046 8.327-19.983 2.754-8.263.54-19.06-3.33-26.642-2.04-7.477-5.016-10.373-13.32-14.987-4.596-4.854-10.703-10.322-14.988-13.32-5.28-4.585-12.142-5.154-19.98-8.327-8.493-1.886-11.338-4.33-19.983-4.994l19.983 4.995c-8.488-1.885-11.333-4.33-28.304-6.66z" transform="matrix(.199 0 0 .1704 340.602 141.854)" stroke-width="3.75" fill="#030"/> + <path d="M-51.62 146.53c-7.617 3.463-11.16 7.635-16.65 13.32 0 8.847 1.092 14.2 1.665 21.648 3.466 4.734 7.144 14.25 9.99 18.316 2.173 6.812 6.922 12.137 9.992 16.652 7.69 3.112 15.495 5.44 23.312 8.325 9.197 0 15.097 2.06 23.31 3.332 6.963 2.32 15.345 1.665 23.313 1.665 8.147 0 16.094-.14 23.312 1.665 7.703 1.37 13.396 4.36 21.647 4.995 4.74-.45 13.136-1.138 19.982-1.665 7.667-3.485 10.982-5.707 14.987-11.656 3.753-4.542 3.33-11.267 3.33-19.98 1.603-8.973 2.093-15.008-1.664-23.313-.108-8.96-1.817-13.172-3.33-21.647-3.006-6.01-5.647-8.65-11.657-11.656-5.465-3.808-12.864-5.998-18.317-9.99-7.433-.886-15.76-2.05-21.647-3.33-6.51-4.342-11.933-6.546-21.647-6.662-9.515-1.132-13.997-2.263-21.648 1.665-7.99.57-15.15 2.17-19.982 4.996-6.144.47-15.283.98-19.982 3.33-7.414 0-9.987 1.287-16.65 1.664l16.65-1.665c-7.414 0-9.987 1.287-18.316 9.99z" transform="matrix(.252 0 0 .132 337.902 146.95)" stroke-width="3.75" fill="#030"/> + <path d="M-123.22 278.07c-4.3-.632-17.278-1.665-26.642-1.665-8.747 0-15.86.58-23.312 3.33-7.975 1.537-13.883 4.047-19.982 6.66-5.053 2.394-10.953 4.83-14.986 8.326-4.955 3.37-9.13 6.336-13.32 13.322-4.477 6.422-4.945 10.56-8.327 18.317v23.31c.588 7.634 1.64 14.23 4.996 21.648 5.022 4.017 11.977 5.282 18.317 6.66 6.03 1.31 13.875 2.775 21.647 3.33 9.24 0 14.16.466 21.646 3.33 9.747-.36 11.606-2.627 19.982-6.66 9.314-3.692 14.86-5.06 23.312-9.99 5.173-4.08 8.578-10.985 11.656-18.317 4.69-7.574 7.91-14.885 11.656-21.646 1.804-7.218 1.665-15.164 1.665-23.312-2.22-6.258-5.752-8.905-9.99-14.986-4.617-5.05-6.673-8.946-9.992-13.32l9.99 13.32c-4.615-5.05-6.67-8.946-18.315-11.656z" transform="matrix(.199 0 0 .1704 344.25 138.734)" stroke-width="3.75" fill="#030"/> + <path d="M0 318.04c6.927 1.02 14.39 1.206 23.312 0 7.405 1.994 12.863 5.647 18.317 8.326 3.056 5.665 7.338 14 11.655 18.316 1.874 6.872 4.64 9.755 8.326 16.652.92 6.795 3.183 13.617 0 19.98-3.795 4.746-9.757 7.516-14.985 9.992-6.902 3.688-10.937 5.046-19.982 6.66-7.444 1.33-15.03 1.666-23.312 1.666-8.012-1.43-14.19-2.757-21.646-3.33-7.414-1.324-15.898-2.007-23.312-3.33-4.813-2.816-11.026-5.127-16.65-6.66-3.908-3.726-9.56-7.954-14.987-11.657-4.19-7.502-8.004-10.206-11.656-16.652-3.318-4.876-4.892-11.17-4.997-19.98 2.625-5.345 6.96-10.53 9.99-14.987 5.198-3.433 11.073-7.99 18.317-11.656 9.784-.346 13.604-3.214 23.312-3.33h24.977c5.65.565 8.44 5.583 13.32 9.99z" transform="matrix(.2554 0 0 .1425 350.637 136.542)" stroke-width="3.75" fill="#030"/> + </g> + <g fill-rule="evenodd" stroke="#000" stroke-width="3.711" fill="#006a00"> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1647 -.0123 .0082 .1518 294.243 194.227)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1647 -.0123 .0082 .1518 255.207 193.094)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1647 -.0123 .0082 .1518 315.932 193.66)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1602 -.0466 .031 .1476 288.976 212.412)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1647 -.0123 .0082 .1518 330.39 202.72)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1647 -.0123 .0082 .1518 314.006 204.422)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1647 -.0123 .0082 .1518 238.82 193.094)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1602 -.0466 .031 .1476 211.86 211.848)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1647 -.0123 .0082 .1518 253.28 202.156)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(.1647 -.0123 .0082 .1518 236.893 203.853)"/> + <path d="M200.16 613.18l4.71-7.064-12.952-2.355 9.42-9.418-12.952-4.71 12.952-9.42-12.952-7.064 14.13-5.887-7.065-11.773 14.13 2.355-5.887-14.13 16.484 7.065v-18.84l11.774 12.953 9.42-16.484 7.065 15.306 14.13-16.484 4.71 12.952 21.192-10.597-5.887 16.484 22.37-9.42-4.71 18.84 21.195-9.42-8.242 17.662 21.194 1.176-17.662 10.597 17.662 7.064-16.484 9.42 14.13 11.774c-45.136 20.802-79.674 27.474-131.87 9.42z" transform="matrix(-.3346 -.014 .019 -.1517 399.813 380.192)"/> + </g> + <path d="M356.34 196.48c0 22.512-18.995 6.66-38.298 6.66-19.302 0-36.632 17.517-39.962 0 0-9.19 25.655-23.312 44.957-23.312 14.308 1.666 36.634-4.196 33.303 16.652z" fill-rule="evenodd" transform="matrix(.273 0 0 .3008 278.558 210.98)" stroke="#000" stroke-width="2.5" fill="#510800"/> + <path d="M356.34 196.48c0 22.512-18.995 6.66-38.298 6.66-19.302 0-36.632 17.517-39.962 0 0-9.19 25.655-23.312 44.957-23.312 14.308 1.666 36.634-4.196 33.303 16.652z" fill-rule="evenodd" transform="matrix(-.273 0 0 .3008 369.707 209.612)" stroke="#000" stroke-width="2.5" fill="#ffc600"/> + <path d="M349.68 188.16c0 13.794-7.082 24.977-15.82 24.977-8.736 0-15.818-11.183-15.818-24.977s7.082-24.977 15.82-24.977c8.735 0 15.818 11.183 15.818 24.977z" fill-rule="evenodd" transform="matrix(.3368 0 0 .3286 277.827 205.293)" stroke="#000" stroke-width="2.5" fill="#520900"/> + <g fill-rule="evenodd" stroke="#000" stroke-width="1pt" transform="matrix(-.6243 -.1173 -.3707 .6237 523.736 93.658)"> + <path d="M273.75 383.58c-2.737 4.56 42.976 12.952 57.694 22.37 14.72 9.42 14.718 10.01 21.194 14.72l1.765-2.945C350.87 414.193 315.91 391.37 292 383.58c-6.805-2.273-10.3-13.248-12.95-8.83l-5.3 8.83z" transform="matrix(-.7233 -.545 .52 -.758 322.39 677.92)" fill="#af8000"/> + <path d="M319.08 369.45l-25.315-5.887s-5.887 2.354-6.475 11.185c-.59 8.83 4.71 14.13 4.71 14.13l27.08-9.42V369.45z" transform="matrix(.8444 -.2975 .2838 .885 -89.238 -64.18)" fill="gray"/> + <rect ry="3.532" rx="3.532" transform="matrix(.8444 -.2975 .2838 .885 -19.207 -255.61)" height="19.428" width="7.064" y="534.62" x="175.71" fill="gray"/> + </g> + <path d="M244.77 87.42c7.322-5.948 11.157-3.72 17.65 3.1 9.322 9.815 41.317 58.855 46.312 63.019s4.24-6.418 10.344-1.388c3.032 3.727-10.437 17.026-13.737 14.57-6.412-5.022 3.914-5.376-.355-9.645-4.925-5.133-51.215-40.497-60.282-50.57-5.92-6.578-6.314-13.97.067-19.088z" fill-rule="evenodd" transform="matrix(.7148 .1604 .3327 .529 132.425 68.156)" stroke="#000" stroke-width="1.25" fill="#923d09"/> + <g stroke="#000"> + <path d="M193.63 88.25c15.546 4.423 43.275 46.12 53.766 45.79 16.652-.48 83.233-77.56 72.564-88.252-7.4-8.246-67.94 41.192-71.852 44.126-.67-8.6-15.95-51.042-28.31-59.945-14.62-9.31-32.21-4.158-47.82-6.662-7.3-2.843-18.84-14.056-23.78-24.976 8.182-3.544 15.323-2.48 23.31-10.65 5.68-6.643 2.382-46.914.37-51.06-13.29-14.268 5.43-7.327-39.023-9.082-64.268-2.446-75.878 49.582-31.653 70.792-3.462 15.928-14.22 19.594-22.94 21.646-8.776.106-38.825-.763-55.545 12.49-33.403 24.55-8.925 30.903-15.352 35.8C.192 73.91-10.503 88.093-14.523 96.573c-10.472 4.996-99.485-4.995-116.5-1.664-16.42.965-56.467 15.818-73.15 26.64 3.565 14.143 241.51-7.602 249.27-2.496 5.946 3.345-2.705 51.237 2.01 54.95 1.66 9.062 116.54 5.828 125.6 5.828 7.558-18.86 15.39-81.558 20.926-91.583z" fill-rule="evenodd" transform="matrix(-.1285 0 0 .2044 282.003 186.258)" stroke-width="4.702" fill="#ffc600"/> + <path d="M174.9-96.568c1.543 25.457-7.118 3.304-38.37 3.304C75.97-98.3 97.246 5.932 97.246-26.24 71.018-39.95 52.41-126.53 126.86-123.17c23.54 0 44.96 7.858 48.045 26.603z" fill-rule="evenodd" transform="matrix(-.1542 0 0 .1434 285.62 187.117)" stroke-width="5.125"/> + <path d="M387.98 96.574c0 1.68-.172 7.957-.833 11.656-.445 3.74-1.54 8.077-2.498 10.823-.343 4.452-2.092 5.174-2.498 9.99-1.544 2.27-2.21 5.945-2.498 9.992 0 4.27.686 7.558.833 11.656.48 3.56 1.612 6.367 1.665 10.824 0 4.365-.005 7.55-1.665 9.99v5.83" transform="matrix(-.202 0 0 .2044 353.21 179.875)" stroke-width="3.75" fill="none"/> + <path d="M383.81 76.592c.58 0 1.03 20.13 5.828 24.978 1.04 3.212 4.574 7.343 5.828 9.99 1.672 2.46 3.98 5.368 8.326 6.66h11.656c4.634 0 7.473.056 10.823-1.664 1.486-.8 2.532-1.846 3.33-3.33M442.09 115.72h.832c-2.327 0-1.092-.104 3.33 1.665 1.726 2.537 3.77 3.625 6.66 4.996 2.983 1.468 6.392 1.666 10.824 1.666 4.198-.354 6.74-1.686 9.16-3.33 4.042-1.31 4.814-2.936 5.827-7.494v-11.656c-.478-3.53-1.384-6.372-2.498-9.158-.42-1.258-.833-.705-.833-2.497M510.36 121.55c-.425 0-2.65 2.575-4.163 4.995-2.568.918-3.233 3.716-4.162 5.828-.67 2.675-1.666 2.86-1.666 6.66-1.678 3.71-2.205 7.008-2.498 10.824l2.497-10.823c-1.678 3.708-2.205 7.007-2.498 10.823M461.24 54.946h-.833c2.25 0 1.1-.053-3.33.833-1.817 2.27-4.807 4.304-7.493 5.826-2.977 1.825-5.367 4.01-8.326 4.996l8.326-4.996c-2.977 1.825-5.367 4.01-8.326 4.996M402.13 51.615h.833c-2.248 0-1.105-.054 3.33.833 2.936 1.39 4.752 2.89 7.493 4.995 1.29 1.935 3.257 2.305 4.163 5.828 1.573.848 2.123 1.67 2.497 4.164M427.11 29.968h4.163c4.53 0 6.733.68 10.824.833 3.538-.424 4.382-1.737 7.493-2.497M442.93 133.21c.14.66 1.652 4.256 2.498 5.828 1.517 2.512 3.538 4.914 4.163 8.326.97 2.905 1.527 6.23 1.666 9.99.76 3.503 1.264 6.62-.833 9.16-.898 3.29-2.57 5.69-4.162 9.157-1.11 0-.832-.277-.832.834M416.28 134.87v.833c0-2.248.055-1.105-.832 3.33-1.147 4.013-2.15 7.388-4.163 9.99-1.098 3.295-2.326 4.505-2.498 9.16.662 1.543.833 3.262.833 5.827M412.12 169.01v4.163c.908 1.21.55 1.294 1.665 1.665M343.02 128.21v.832c0-2.327-.258-.936 4.163.833 3.572.638 7.937 1.037 10.823 1.665 2.672 1.312 5.265 3.48 7.493 4.995 1.993 1.728 4.818 3.48 7.493 4.996 3.004 1.503 4.325 2.824 5.828 5.83.908 1.21.55 1.292 1.666 1.664" transform="matrix(-.202 0 0 .2044 353.21 179.875)" stroke-width="3.75" fill="none"/> + <path d="M423.78-16.655c.123-.184 2.467-1.914 4.996-2.498 1.805-1.354 4.812-.74 6.66 0" transform="matrix(-.3155 0 0 .2044 403.227 180.598)" stroke-width="3" fill="none"/> + <path d="M445.42-19.153h.833c-2.248 0-1.106.054 3.33-.833 3.48-1.16 7.672-.832 11.656-.832 1.173.39.83.242.83 1.665M444.59-7.497v.833c0-2.327-.103-1.09 1.666 3.33.643 2.962 1.76 7.05.832 9.158-2.184 0-2.86-.274-4.163-.833" transform="matrix(-.2454 0 0 .2044 373.514 180.598)" stroke-width="3.402" fill="none"/> + <path d="M371.33-24.98c0 3.218-4.1 5.827-9.158 5.827s-9.158-2.61-9.158-5.828 4.1-5.83 9.158-5.83 9.158 2.61 9.158 5.83z" fill-rule="evenodd" transform="matrix(-.2418 -.035 -.024 .115 350.644 199.07)" stroke-width="4.501"/> + <path d="M371.33-24.98c0 3.218-4.1 5.827-9.158 5.827s-9.158-2.61-9.158-5.828 4.1-5.83 9.158-5.83 9.158 2.61 9.158 5.83z" fill-rule="evenodd" transform="matrix(-.175 -.023 -.0174 .0756 330.504 187.51)" stroke-width="6.528"/> + <path d="M371.33-24.98c0 3.218-4.1 5.827-9.158 5.827s-9.158-2.61-9.158-5.828 4.1-5.83 9.158-5.83 9.158 2.61 9.158 5.83z" fill-rule="evenodd" transform="matrix(-.175 -.023 -.0174 .0756 325.192 186.998)" stroke-width="6.528"/> + <path d="M412.95 113.64c0 2.07-1.864 3.747-4.163 3.747-2.3 0-4.163-1.678-4.163-3.747s1.864-3.747 4.163-3.747c2.3 0 4.163 1.678 4.163 3.747zM469.57 119.89c0 1.38-1.305 2.498-2.914 2.498-1.61 0-2.914-1.12-2.914-2.498s1.305-2.498 2.914-2.498c1.61 0 2.914 1.12 2.914 2.498z" fill-rule="evenodd" transform="matrix(-.202 0 0 .2044 353.21 179.875)" stroke-width="3.75"/> + <path d="M447.09 31.634v.833c0-2.796.197-1.03-4.163 3.33-3.724 1.785-5.164 3.667-6.66 6.66-1.742 3.85-2.342 6.613-2.498 10.824v6.662M419.61 30.8c.577 0 1.477 2.274 2.498 4.996 1.856 2.19 3.037 5.35 3.33 9.16 0 4.517.78 6.452.833 10.823v3.33M504.54 129.04c0 .48-2.6 1.455-4.163 3.33-3.16.428-5.964.833-9.99.833-.61-.916-1.836-1.217-3.33-1.665" transform="matrix(-.202 0 0 .2044 353.21 179.875)" stroke-width="3.75" fill="none"/> + </g> + <g fill-rule="evenodd" stroke="#000" stroke-width="3.75" fill="#fff"> + <path d="M276.41 36.63l88.253 1.665V49.95s8.325 14.987 13.32 48.29c4.996 33.303 9.992 158.19 9.992 158.19l21.646 141.54s-13.32 21.647-23.31 19.982c-9.99-1.666-39.964-13.32-39.964-14.987 0-1.665-1.665-79.926-4.995-133.21-3.33-53.285-9.99-81.592-24.976-104.9-19.982 48.288-21.647 98.243-19.982 98.243s1.665 39.963 3.33 69.936c1.666 29.972-1.665 71.6-1.665 71.6l-58.28-3.33s1.665-36.633 3.33-64.94c1.666-28.307 6.745-41.625 8.327-73.266 1.748-34.963 4.202-53.32 6.66-109.9 3.238-45.74 14.687-75.258 17.9-103.24.87-7.133-.416-12.488.416-13.32z" transform="matrix(-.209 0 0 .1326 334.435 211.382)"/> + <path d="M316.38 166.51s-8.326-13.32-11.656-36.633-3.33-28.307-3.33-28.307M298.06 233.12l-9.99 39.963" transform="matrix(-.209 0 0 .1326 334.435 211.382)"/> + <path d="M276.41 223.12l11.657 54.95" transform="matrix(-.209 0 0 .1326 321.91 211.602)"/> + <path d="M387.98 417.95l-11.66-81.6M276.41 44.955l88.253 1.665M318.04 164.84c0-1.665 4.995-29.972 4.995-29.972M284.74 44.955l-8.326 84.922" transform="matrix(-.209 0 0 .1326 334.435 211.382)"/> + </g> + <path d="M549.21 538.58c0 136.98-111.05 248.03-248.03 248.03S53.15 675.56 53.15 538.58 164.2 290.55 301.18 290.55 549.21 401.6 549.21 538.58z" stroke="#006a00" stroke-width="6.25" fill="none" transform="matrix(.4628 0 0 .4634 181.152 -9.53)"/> + <g stroke-width="1pt"> + <path d="M446.172 215.426c14.442 12.315-2.86 24.63-10.832 24.63-7.972 0-25.275-12.316-10.832-24.63-3.61 12.315 10.832 15.394 10.832 21.552 0-6.158 14.443-9.236 10.832-21.552z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.2038 0 0 .1738 377.57 140.305)"/> + </g> + <g stroke-width="1pt"> + <path d="M310.32 112.045c13.822-13.01 24.133 5.57 23.25 13.502-.88 7.933-15.017 23.79-25.644 8.056 11.825 4.955 16.478-9.077 22.59-8.396-6.112-.68-7.57-15.394-20.195-13.162z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.0225 -.2028 .1725 .0192 228.17 172.006)"/> + </g> + <g stroke-width="1pt"> + <path d="M347.045 361.822c-10.01 16.134-24.75.84-25.938-7.054-1.188-7.893 8.395-26.86 22.71-14.395-12.7-1.74-13.59 13.018-19.67 13.936 6.08-.92 11.274 12.922 22.898 7.512z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.0304 .2018 -.1716 .026 411.01 282.706)"/> + </g> + <g stroke-width="1pt"> + <path d="M194.105 247.072c-13.647-13.193 4.388-24.403 12.345-23.905 7.957.498 24.46 13.87 9.277 25.258 4.37-12.066-9.852-16.04-9.47-22.187-.382 6.146-14.988 8.317-12.152 20.834z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.2034 -.0127 .0108 -.1734 257.893 326.33)"/> + </g> + <g stroke-width="1pt"> + <path d="M435.467 184.24c16.876 8.673 2.853 24.63-4.908 26.458-7.76 1.83-27.42-6.188-16.18-21.49-.697 12.817 14.066 12.5 15.475 18.495-1.41-5.994 11.945-12.304 5.612-23.464z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.1984 -.0468 .0398 .1692 351.5 126.856)"/> + </g> + <g stroke-width="1pt"> + <path d="M275.64 120.38c8.96-16.74 24.645-2.42 26.335 5.382 1.69 7.8-6.665 27.342-21.745 15.818 12.785.924 12.73-13.86 18.74-15.166-6.01 1.305-12.074-12.175-23.33-6.033z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.0432 -.1994 .1696 -.0368 216.853 203.426)"/> + </g> + <g stroke-width="1pt"> + <path d="M383.86 347.56c-3.944 18.58-22.995 9.205-26.79 2.184-3.793-7.02-1.21-28.118 16.48-21.26-12.536 2.682-8.367 16.865-13.776 19.796 5.41-2.93 14.986 8.322 24.086-.72z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.097 .1795 -.1526 .0827 417.198 251.402)"/> + </g> + <g stroke-width="1pt"> + <path d="M201.03 279.352c-17.135-8.152-3.607-24.532 4.093-26.598 7.7-2.067 27.597 5.343 16.83 20.982.304-12.83-14.442-12.06-16.034-18.01 1.59 5.948-11.563 12.666-4.89 23.626z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.1968 .0528 -.045 -.168 286.713 334.13)"/> + </g> + <g stroke-width="1pt"> + <path d="M418.277 160.327c18.784 2.654 10.76 22.333 4.03 26.608-6.733 4.276-27.932 3.156-22.323-14.99 3.54 12.337 17.38 7.19 20.676 12.39-3.294-5.198 7.255-15.544-2.383-24.008z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.172 -.1093 .093 .1467 320.162 133.683)"/> + </g> + <g stroke-width="1pt"> + <path d="M245.943 137.4c4.71-18.4 23.357-8.24 26.856-1.068 3.5 7.172.044 28.145-17.347 20.557 12.636-2.16 9.06-16.503 14.585-19.207-5.526 2.703-14.628-8.938-24.095-.283z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.0895 -.1833 .156 -.0763 208.648 232.092)"/> + </g> + <g stroke-width="1pt"> + <path d="M410.195 327.94c1.517 18.934-19.414 15.395-25.052 9.75-5.638-5.642-9.178-26.6 9.732-25.085-11.25 6.154-3.21 18.555-7.558 22.91 4.347-4.355 16.735 3.692 22.878-7.574z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.144 .1443 -.1227 .123 414.726 226.253)"/> + </g> + <g stroke-width="1pt"> + <path d="M213.82 306.27c-18.582-3.82-9.35-22.96-2.364-26.806 6.986-3.847 28.074-1.406 21.346 16.354-2.764-12.533-16.9-8.262-19.864-13.657 2.963 5.396-8.21 15.062.882 24.11z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.1786 .0983 -.0836 -.1523 310.086 338.99)"/> + </g> + <g stroke-width="1pt"> + <path d="M393.347 138.187c18.82-2.372 16.233 18.724 10.857 24.618-5.377 5.894-26.128 10.38-25.468-8.603 6.646 10.975 18.657 2.374 23.198 6.527-4.54-4.153 2.93-16.907-8.587-22.543z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.1375 -.1507 .128 .1172 291.684 138.238)"/> + </g> + <g stroke-width="1pt"> + <path d="M221.634 159.638c-.273-18.992 20.38-14.084 25.637-8.082 5.257 6.002 7.415 27.147-11.354 24.392 11.628-5.4 4.42-18.303 9.044-22.363-4.624 4.06-16.457-4.785-23.326 6.053z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.1344 -.1534 .1305 -.1146 210.445 260.81)"/> + </g> + <g stroke-width="1pt"> + <path d="M428.034 301.192c5.935 18.04-15.24 19.545-22.048 15.393-6.808-4.153-15.186-23.684 3.548-26.677-9.483 8.637 1.25 18.79-1.95 24.048 3.2-5.26 17.134-.365 20.45-12.764z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.174 .1062 -.0903 .1484 408.483 201.303)"/> + </g> + <g stroke-width="1pt"> + <path d="M234.75 330.176c-18.932 1.19-15.035-19.702-9.3-25.25 5.732-5.545 26.722-8.726 24.88 10.18-5.95-11.37-18.472-3.537-22.746-7.965 4.273 4.43-3.977 16.69 7.166 23.036z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.1466 .1418 -.1206 -.125 336.217 336.475)"/> + </g> + <g stroke-width="1pt"> + <path d="M367.436 121.305c18-5.994 19.564 15.202 15.435 22.03-4.127 6.83-23.61 15.274-26.652-3.474 8.653 9.47 18.762-1.306 24.024 1.882-5.26-3.188-.413-17.153-12.806-20.437z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.1055 -.1746 .1485 .09 267.728 141.167)"/> + </g> + <g stroke-width="1pt"> + <path d="M204.46 190.387c-6.63-17.796 14.47-20.122 21.435-16.238 6.964 3.884 16.094 23.074-2.51 26.793 9.14-8.998-1.98-18.725 1.014-24.105-2.994 5.38-17.107 1.03-19.94 13.55z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.178 -.0993 .0845 -.1518 227.874 289.44)"/> + </g> + <g stroke-width="1pt"> + <path d="M440.556 278.107c7.952 17.244-12.913 21.157-20.15 17.81-7.237-3.35-17.786-21.795.484-26.908-8.436 9.662 3.385 18.522.805 24.112 2.58-5.59 16.98-2.32 18.86-15.015z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.185 .0856 -.0728 .1578 409.75 181.103)"/> + </g> + <g stroke-width="1pt"> + <path d="M270.06 353.976c-17.433 7.492-20.774-13.498-17.235-20.65 3.54-7.153 22.24-17.21 26.85 1.213-9.418-8.707-18.584 2.885-24.096.152 5.51 2.733 1.854 17.057 14.48 19.284z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.0905 .183 -.1555 -.077 367.74 325.77)"/> + </g> + <g stroke-width="1pt"> + <path d="M447.844 249.543c11.412 15.173-8.157 23.412-15.937 21.67-7.78-1.74-21.983-17.54-5.204-26.402-6.207 11.23 7.216 17.39 5.875 23.4 1.34-6.01 16.107-5.86 15.266-18.667z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.199 .0445 -.038 .1696 397.264 161.246)"/> + </g> + <g stroke-width="1pt"> + <path d="M339.332 114.35c16.322-9.678 22.337 10.705 19.748 18.255-2.588 7.55-19.84 19.936-26.783 2.26 10.46 7.418 18.06-5.26 23.876-3.26-5.816-2-4.035-16.676-16.84-17.256z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(.0662 -.193 .1642 .0564 246.095 154.92)"/> + </g> + <g stroke-width="1pt"> + <path d="M305.89 364.498c-15.547 10.883-23.08-8.99-21.066-16.712 2.013-7.724 18.282-21.378 26.536-4.276-10.99-6.608-17.61 6.607-23.562 5.053 5.95 1.554 5.28 16.324 18.093 15.935z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.0515 .1974 -.168 -.044 395.806 317.003)"/> + </g> + <g stroke-width="1pt"> + <path d="M196.065 216.915c-10.444-15.856 9.6-22.857 17.256-20.633 7.658 2.224 20.85 18.878 3.55 26.676 6.895-10.82-6.118-17.806-4.405-23.72-1.713 5.914-16.44 4.842-16.4 17.677z" fill-rule="evenodd" fill="#006a00"/> + <path d="M336.61 432.28c35.433 124.02-53.15 106.3-53.15 141.73 0-35.433-88.582-17.717-53.15-141.73" stroke="#000" fill="none" transform="matrix(-.1957 -.057 .0484 -.167 241.046 308.198)"/> + </g> + <g stroke="#000"> + <path d="M193.63 88.25c15.546 4.423 43.275 46.12 53.766 45.79 16.652-.48 83.233-77.56 72.564-88.252-7.4-8.246-67.94 41.192-71.852 44.126-.67-8.6-15.95-51.042-28.31-59.945-14.62-9.31-32.21-4.158-47.82-6.662-7.3-2.843-18.84-14.056-23.78-24.976 8.182-3.544 15.323-2.48 23.31-10.65 5.68-6.643 2.382-46.914.37-51.06-13.29-14.268 5.43-7.327-39.023-9.082-64.268-2.446-75.878 49.582-31.653 70.792-3.462 15.928-14.22 19.594-22.94 21.646-8.776.106-38.825-.763-55.545 12.49-33.403 24.55-8.925 30.903-15.352 35.8C.192 73.91-10.503 88.093-14.523 96.573c-10.472 4.996-99.485-4.995-116.5-1.664-16.42.965-56.467 15.818-73.15 26.64 3.565 14.143 241.51-7.602 249.27-2.496 5.946 3.345-2.705 51.237 2.01 54.95 1.66 9.062 116.54 5.828 125.6 5.828 7.558-18.86 15.39-81.558 20.926-91.583z" fill-rule="evenodd" transform="matrix(.1285 0 0 .2044 363.593 187.474)" stroke-width="4.702" fill="#520900"/> + <path d="M174.9-96.568c1.543 25.457-7.118 3.304-38.37 3.304C75.97-98.3 97.246 5.932 97.246-26.24 71.018-39.95 52.41-126.53 126.86-123.17c23.54 0 44.96 7.858 48.045 26.603z" fill-rule="evenodd" transform="matrix(.1542 0 0 .1434 359.98 188.333)" stroke-width="5.125"/> + <path d="M387.98 96.574c0 1.68-.172 7.957-.833 11.656-.445 3.74-1.54 8.077-2.498 10.823-.343 4.452-2.092 5.174-2.498 9.99-1.544 2.27-2.21 5.945-2.498 9.992 0 4.27.686 7.558.833 11.656.48 3.56 1.612 6.367 1.665 10.824 0 4.365-.005 7.55-1.665 9.99v5.83" transform="matrix(.202 0 0 .2044 292.388 181.09)" stroke-width="3.75" fill="none"/> + <path d="M383.81 76.592c.58 0 1.03 20.13 5.828 24.978 1.04 3.212 4.574 7.343 5.828 9.99 1.672 2.46 3.98 5.368 8.326 6.66h11.656c4.634 0 7.473.056 10.823-1.664 1.486-.8 2.532-1.846 3.33-3.33M442.09 115.72h.832c-2.327 0-1.092-.104 3.33 1.665 1.726 2.537 3.77 3.625 6.66 4.996 2.983 1.468 6.392 1.666 10.824 1.666 4.198-.354 6.74-1.686 9.16-3.33 4.042-1.31 4.814-2.936 5.827-7.494v-11.656c-.478-3.53-1.384-6.372-2.498-9.158-.42-1.258-.833-.705-.833-2.497M510.36 121.55c-.425 0-2.65 2.575-4.163 4.995-2.568.918-3.233 3.716-4.162 5.828-.67 2.675-1.666 2.86-1.666 6.66-1.678 3.71-2.205 7.008-2.498 10.824l2.497-10.823c-1.678 3.708-2.205 7.007-2.498 10.823M461.24 54.946h-.833c2.25 0 1.1-.053-3.33.833-1.817 2.27-4.807 4.304-7.493 5.826-2.977 1.825-5.367 4.01-8.326 4.996l8.326-4.996c-2.977 1.825-5.367 4.01-8.326 4.996M402.13 51.615h.833c-2.248 0-1.105-.054 3.33.833 2.936 1.39 4.752 2.89 7.493 4.995 1.29 1.935 3.257 2.305 4.163 5.828 1.573.848 2.123 1.67 2.497 4.164M427.11 29.968h4.163c4.53 0 6.733.68 10.824.833 3.538-.424 4.382-1.737 7.493-2.497M442.93 133.21c.14.66 1.652 4.256 2.498 5.828 1.517 2.512 3.538 4.914 4.163 8.326.97 2.905 1.527 6.23 1.666 9.99.76 3.503 1.264 6.62-.833 9.16-.898 3.29-2.57 5.69-4.162 9.157-1.11 0-.832-.277-.832.834M416.28 134.87v.833c0-2.248.055-1.105-.832 3.33-1.147 4.013-2.15 7.388-4.163 9.99-1.098 3.295-2.326 4.505-2.498 9.16.662 1.543.833 3.262.833 5.827M412.12 169.01v4.163c.908 1.21.55 1.294 1.665 1.665M343.02 128.21v.832c0-2.327-.258-.936 4.163.833 3.572.638 7.937 1.037 10.823 1.665 2.672 1.312 5.265 3.48 7.493 4.995 1.993 1.728 4.818 3.48 7.493 4.996 3.004 1.503 4.325 2.824 5.828 5.83.908 1.21.55 1.292 1.666 1.664" transform="matrix(.202 0 0 .2044 292.388 181.09)" stroke-width="3.75" fill="none"/> + <path d="M423.78-16.655c.123-.184 2.467-1.914 4.996-2.498 1.805-1.354 4.812-.74 6.66 0" transform="matrix(.3155 0 0 .2044 242.372 181.81)" stroke-width="3" fill="none"/> + <path d="M445.42-19.153h.833c-2.248 0-1.106.054 3.33-.833 3.48-1.16 7.672-.832 11.656-.832 1.173.39.83.242.83 1.665M444.59-7.497v.833c0-2.327-.103-1.09 1.666 3.33.643 2.962 1.76 7.05.832 9.158-2.184 0-2.86-.274-4.163-.833" transform="matrix(.2454 0 0 .2044 272.086 181.81)" stroke-width="3.402" fill="none"/> + <path d="M371.33-24.98c0 3.218-4.1 5.827-9.158 5.827s-9.158-2.61-9.158-5.828 4.1-5.83 9.158-5.83 9.158 2.61 9.158 5.83z" fill-rule="evenodd" transform="matrix(.2418 -.035 .024 .115 294.955 200.285)" stroke-width="4.501"/> + <path d="M371.33-24.98c0 3.218-4.1 5.827-9.158 5.827s-9.158-2.61-9.158-5.828 4.1-5.83 9.158-5.83 9.158 2.61 9.158 5.83z" fill-rule="evenodd" transform="matrix(.175 -.023 .0174 .0756 315.095 188.724)" stroke-width="6.528"/> + <path d="M371.33-24.98c0 3.218-4.1 5.827-9.158 5.827s-9.158-2.61-9.158-5.828 4.1-5.83 9.158-5.83 9.158 2.61 9.158 5.83z" fill-rule="evenodd" transform="matrix(.175 -.023 .0174 .0756 320.41 188.214)" stroke-width="6.528"/> + <path d="M412.95 113.64c0 2.07-1.864 3.747-4.163 3.747-2.3 0-4.163-1.678-4.163-3.747s1.864-3.747 4.163-3.747c2.3 0 4.163 1.678 4.163 3.747zM469.57 119.89c0 1.38-1.305 2.498-2.914 2.498-1.61 0-2.914-1.12-2.914-2.498s1.305-2.498 2.914-2.498c1.61 0 2.914 1.12 2.914 2.498z" fill-rule="evenodd" transform="matrix(.202 0 0 .2044 292.388 181.09)" stroke-width="3.75"/> + <path d="M447.09 31.634v.833c0-2.796.197-1.03-4.163 3.33-3.724 1.785-5.164 3.667-6.66 6.66-1.742 3.85-2.342 6.613-2.498 10.824v6.662M419.61 30.8c.577 0 1.477 2.274 2.498 4.996 1.856 2.19 3.037 5.35 3.33 9.16 0 4.517.78 6.452.833 10.823v3.33M504.54 129.04c0 .48-2.6 1.455-4.163 3.33-3.16.428-5.964.833-9.99.833-.61-.916-1.836-1.217-3.33-1.665" transform="matrix(.202 0 0 .2044 292.388 181.09)" stroke-width="3.75" fill="none"/> + </g> + <g fill-rule="evenodd" stroke="#000" stroke-width="3.75" fill="#fff"> + <path d="M276.41 36.63l88.253 1.665V49.95s8.325 14.987 13.32 48.29c4.996 33.303 9.992 158.19 9.992 158.19l21.646 141.54s-13.32 21.647-23.31 19.982c-9.99-1.666-39.964-13.32-39.964-14.987 0-1.665-1.665-79.926-4.995-133.21-3.33-53.285-9.99-81.592-24.976-104.9-19.982 48.288-21.647 98.243-19.982 98.243s1.665 39.963 3.33 69.936c1.666 29.972-1.665 71.6-1.665 71.6l-58.28-3.33s1.665-36.633 3.33-64.94c1.666-28.307 6.745-41.625 8.327-73.266 1.748-34.963 4.202-53.32 6.66-109.9 3.238-45.74 14.687-75.258 17.9-103.24.87-7.133-.416-12.488.416-13.32z" transform="matrix(.209 0 0 .1326 311.165 212.592)"/> + <path d="M316.38 166.51s-8.326-13.32-11.656-36.633-3.33-28.307-3.33-28.307M298.06 233.12l-9.99 39.963" transform="matrix(.209 0 0 .1326 311.165 212.592)"/> + <path d="M276.41 223.12l11.657 54.95" transform="matrix(.209 0 0 .1326 323.69 212.812)"/> + <path d="M387.98 417.95l-11.66-81.6M276.41 44.955l88.253 1.665M318.04 164.84c0-1.665 4.995-29.972 4.995-29.972M284.74 44.955l-8.326 84.922" transform="matrix(.209 0 0 .1326 311.165 212.592)"/> + </g> + <path d="M349.68 188.16c0 13.794-7.082 24.977-15.82 24.977-8.736 0-15.818-11.183-15.818-24.977s7.082-24.977 15.82-24.977c8.735 0 15.818 11.183 15.818 24.977z" fill-rule="evenodd" transform="matrix(.3368 0 0 .3286 143.1 205.98)" stroke="#000" stroke-width="2.5" fill="#ffc600"/> + <g stroke-width="1pt"> + <g fill-rule="evenodd" stroke="#000"> + <path d="M212.6 892.91s53.15-17.716 70.867-17.716c17.716 0 17.716 17.716 19.135 18.212l-1.42 34.937H212.6V892.91z" transform="matrix(.2036 0 0 .241 240.01 90.375)" fill="#00cfe6"/> + <path d="M265.75 892.91s0-17.716 17.717-17.716c17.716 0 35.433-.496 53.15 0v53.15H265.75V892.91z" transform="matrix(.2036 0 0 -.241 247.225 541.99)" fill="#00cfe6"/> + <path d="M212.6 892.91s53.15-17.716 70.867-17.716c17.716 0 17.716 17.716 19.135 18.212l-1.42 34.937H212.6V892.91z" transform="matrix(-.2036 0 0 .241 413.137 90.428)" fill="#00cfe6"/> + <path d="M265.75 892.91s0-17.716 17.717-17.716c17.716 0 35.433-.496 53.15 0v53.15H265.75V892.91z" transform="matrix(-.2036 0 0 -.241 405.924 542.038)" fill="#00cfe6"/> + <path d="M249.45 875.2s0-17.717-17.716-17.717h53.15L249.45 875.2z" transform="matrix(-.2036 0 0 -.241 395.393 537.773)" fill="#fff"/> + <path d="M159.45 892.91l106.3 53.15s-36.04 33.3-70.866 35.433c-17.717 0-35.433-35.433-35.433-35.433v-53.15z" transform="matrix(-.2375 0 0 .241 418.548 90.427)" fill="#00cfe6"/> + <path d="M249.45 892.91c.71-8.858-2.214-35.434-19.93-35.434h55.363c17.717 0 35.434 17.717 35.434 35.434l-1.42 35.432H249.45V892.91z" transform="matrix(-.2036 0 0 .241 402.606 94.697)" fill="#fff"/> + <path d="M249.45 875.2s0-17.717-17.716-17.717h53.15L249.45 875.2z" transform="matrix(.2036 0 0 -.241 257.756 537.725)" fill="#fff"/> + <path d="M159.45 892.91l106.3 53.15s-36.04 33.3-70.866 35.433c-17.717 0-35.433-35.433-35.433-35.433v-53.15z" transform="matrix(.2375 0 0 .241 234.6 90.373)" fill="#00cfe6"/> + <path d="M249.45 892.91c.71-8.858-2.214-35.434-19.93-35.434h55.363c17.717 0 35.434 17.717 35.434 35.434l-1.42 35.432H249.45V892.91z" transform="matrix(.2036 0 0 .241 250.543 94.643)" fill="#fff"/> + <path d="M88.802 891.9c-.11 1.012 17.607-34.42 53.04-34.42s177.16 70.865 247.92 70.865c70.975 0 196.65-72.56 230.42-70.866 33.773 1.693 53.52 37.16 53.15 35.432-.374-1.728-17.717 53.15-17.717 53.15 0-17.716-17.717-35.433-35.433-35.433-17.717 0-106.3 70.865-230.42 70.865-123.91 0-212.49-70.866-230.21-70.866-17.717 0-35.433 17.715-35.433 35.432l-35.32-54.16z" transform="matrix(.2036 0 0 .241 247.202 90.428)" fill="#fff"/> + </g> + <path d="M362.457 313.76l-3.153-9.625 3.228-1.48.373 1.135-2.638 1.21.966 2.948 2.47-1.133.37 1.128-2.47 1.133 1.072 3.276 2.74-1.258.374 1.137-3.333 1.53zM348.92 320.062l-3.153-9.625.59-.27 2.78 8.487 2.2-1.01.373 1.138-2.79 1.28zM344.823 321.986l-3.153-9.625 3.012-1.38.372 1.136-2.42 1.11.975 2.98 2.094-.962.373 1.137-2.095.962 1.432 4.372-.59.272zM308.553 322.11l2.08-9.925 1.215.356-.027 7.453c-.003.692-.008 1.212-.015 1.554.144-.34.365-.84.658-1.494l2.908-6.478 1.088.32-2.08 9.925-.778-.228 1.74-8.31-3.514 7.79-.73-.215.006-8.968-1.77 8.45-.78-.23zM308.197 311.228l.77.377-1.915 5.457c-.332.948-.663 1.67-.99 2.165-.33.493-.727.83-1.197 1.012-.465.18-.978.13-1.538-.146-.544-.267-.936-.635-1.175-1.112-.24-.474-.33-1.037-.278-1.685.056-.652.26-1.478.61-2.48l1.913-5.456.77.38-1.912 5.45c-.288.82-.454 1.448-.5 1.884-.04.432.018.81.17 1.133.158.322.4.565.73.727.566.278 1.04.27 1.427-.03.387-.3.788-1.04 1.204-2.226l1.91-5.45zM292.73 304.646l.575.315-2.115 5.413c-.367.94-.71 1.662-1.025 2.163-.315.5-.67.852-1.066 1.06-.392.205-.797.19-1.216-.038-.407-.223-.682-.554-.822-1-.14-.444-.155-.982-.042-1.613.114-.636.364-1.45.752-2.442l2.115-5.413.575.315-2.112 5.406c-.318.814-.518 1.435-.6 1.86-.08.42-.074.783.014 1.086.09.302.26.52.506.656.423.232.805.19 1.146-.124.342-.314.742-1.06 1.2-2.236l2.114-5.406zM282.465 306.327l.583.195c-.158.484-.25.9-.275 1.256-.022.35.03.672.154.97.126.288.313.502.56.637.22.12.44.156.663.108.223-.048.422-.172.598-.37.18-.202.327-.45.44-.737.115-.296.175-.573.18-.833.008-.264-.05-.52-.174-.77-.078-.162-.276-.454-.596-.876-.317-.428-.52-.776-.61-1.047-.115-.348-.157-.724-.125-1.126.035-.403.138-.822.306-1.25.184-.474.418-.88.703-1.22.286-.346.59-.56.912-.642.323-.083.63-.043.922.117.322.175.562.443.72.803.16.357.22.79.184 1.295-.037.508-.158 1.04-.363 1.594l-.586-.213c.202-.61.276-1.112.223-1.508-.052-.396-.245-.684-.58-.867-.347-.19-.655-.192-.923-.003-.265.186-.472.473-.625.862-.13.335-.182.643-.154.922.026.28.227.66.603 1.147.38.48.625.854.732 1.12.154.39.216.81.186 1.265-.03.45-.142.925-.338 1.428-.195.5-.445.933-.75 1.304-.304.365-.63.604-.975.715-.342.108-.667.075-.978-.094-.394-.215-.676-.518-.846-.91-.17-.393-.233-.877-.192-1.454.045-.58.186-1.186.423-1.82zM365.564 306.44c-.523-1.594-.733-2.937-.63-4.02.1-1.088.466-1.777 1.095-2.066.412-.19.852-.147 1.322.126s.916.75 1.34 1.433c.42.677.79 1.495 1.105 2.46.32.974.515 1.89.585 2.744.068.853.002 1.558-.203 2.11-.207.546-.504.907-.892 1.085-.42.193-.867.147-1.342-.14-.474-.283-.92-.766-1.338-1.444s-.767-1.442-1.044-2.287zm.616-.258c.38 1.16.823 2.007 1.33 2.545.51.534.982.7 1.42.5.444-.205.698-.71.763-1.517.068-.804-.1-1.827-.507-3.065-.257-.784-.542-1.44-.857-1.964-.314-.53-.642-.9-.985-1.11-.34-.215-.66-.256-.954-.12-.417.19-.675.667-.774 1.427-.1.755.09 1.858.564 3.305zM357.27 316.028l-3.152-9.625 1.98-.908c.397-.182.728-.234.993-.154.264.078.53.305.796.686.268.382.487.836.66 1.366.225.683.31 1.305.26 1.87-.052.56-.272 1.002-.658 1.326.21.09.38.196.513.315.285.263.59.615.91 1.056l1.635 2.263-.743.34-1.246-1.73c-.363-.5-.65-.876-.862-1.132-.21-.254-.383-.423-.512-.504-.127-.08-.244-.128-.35-.133-.08 0-.193.034-.346.104l-.685.314 1.402 4.277-.59.27zm-1.17-5.648l1.27-.582c.27-.124.462-.282.576-.47.112-.192.164-.436.158-.735-.01-.304-.064-.612-.166-.922-.15-.453-.348-.792-.6-1.015-.247-.224-.537-.26-.868-.108l-1.413.65 1.044 3.183zM350.522 313.644c-.522-1.595-.734-2.937-.63-4.02.1-1.09.466-1.777 1.095-2.066.412-.19.853-.148 1.323.125s.916.75 1.34 1.433c.42.677.79 1.496 1.105 2.46.32.975.515 1.89.585 2.745.07.853 0 1.558-.203 2.11-.206.547-.504.908-.89 1.086-.422.193-.868.147-1.343-.14-.474-.283-.92-.766-1.338-1.445-.42-.678-.767-1.44-1.044-2.286zm.615-.26c.38 1.16.824 2.01 1.332 2.546.508.534.98.7 1.416.5.445-.204.7-.71.765-1.517.07-.804-.1-1.827-.506-3.065-.256-.784-.543-1.44-.857-1.964-.314-.53-.642-.9-.984-1.11-.34-.216-.66-.257-.954-.122-.42.192-.677.67-.776 1.428-.098.756.09 1.858.563 3.305zM316.924 324.288l1.186-10.13 2.336.384c.477.078.846.244 1.108.5.265.25.452.6.564 1.055.115.452.145.91.09 1.375-.05.432-.17.827-.36 1.187-.19.358-.443.63-.762.818.355.242.61.594.76 1.06.152.466.194.996.125 1.585-.054.473-.168.905-.34 1.296-.17.383-.36.673-.566.863-.207.193-.455.323-.743.392-.284.066-.625.068-1.022.003l-2.374-.39zm1.51-5.74l1.35.222c.364.06.63.063.798.014.222-.068.4-.212.53-.43.137-.216.225-.502.266-.857.04-.336.025-.64-.045-.908-.07-.276-.19-.474-.363-.596-.173-.127-.484-.227-.93-.3l-1.246-.205-.36 3.06zm-.546 4.68l1.55.253c.267.045.456.06.568.046.196-.026.365-.092.508-.198.143-.11.27-.28.38-.51.11-.234.185-.514.223-.835.044-.38.023-.715-.063-1.01-.086-.302-.23-.525-.43-.67-.195-.15-.49-.256-.888-.32l-1.44-.237-.408 3.48zM324.25 325.525v-10.227h2.79c.558 0 .985.093 1.277.28.29.18.525.503.7.97.174.464.26.977.26 1.54 0 .726-.144 1.337-.433 1.836-.29.496-.734.812-1.338.948.22.172.388.34.502.508.243.363.473.817.69 1.36l1.094 2.785h-1.046l-.833-2.128c-.243-.615-.443-1.083-.6-1.41-.158-.325-.3-.554-.425-.683-.122-.13-.248-.222-.377-.272-.094-.034-.248-.05-.463-.05h-.965v4.543h-.832zm.832-5.713h1.79c.38 0 .677-.065.89-.19.216-.13.378-.333.49-.612.112-.285.167-.593.167-.922 0-.482-.11-.88-.326-1.192-.215-.312-.556-.468-1.02-.468h-1.992v3.384zM331.535 325.253l.87-10.568.884-.186 4.04 9.538-.933.196-1.18-2.9-2.588.543-.225 3.194-.87.183zm1.168-4.51l2.1-.44-1.065-2.652c-.323-.807-.574-1.472-.75-1.997.017.663 0 1.328-.047 1.993l-.237 3.097zM292.276 315.24l3.66-9.37 1.63.893c.333.182.56.424.686.725.128.298.17.675.13 1.132-.04.456-.142.897-.31 1.328-.157.4-.355.75-.594 1.048s-.503.5-.79.608c.196.31.288.702.272 1.18-.015.477-.13.99-.342 1.535-.17.437-.374.822-.61 1.155-.23.328-.45.56-.656.695-.207.136-.427.204-.66.204-.23 0-.483-.076-.76-.227l-1.656-.907zm2.697-5.118l.94.514c.255.14.452.203.59.193.183-.015.355-.112.512-.29.16-.174.305-.427.433-.755.12-.31.193-.603.216-.874.024-.276-.012-.492-.107-.647-.094-.16-.297-.325-.61-.496l-.868-.475-1.107 2.83zm-1.69 4.326l1.082.592c.186.102.322.158.408.17.153.02.297-.004.432-.074.136-.07.277-.204.422-.398.147-.198.28-.447.395-.745.137-.35.214-.674.23-.975.02-.306-.025-.55-.134-.733-.104-.187-.295-.355-.572-.506l-1.005-.552-1.257 3.22z"/> + </g> + <g> + <path d="M212.6 432.28v106.3c0 70.866 88.583 106.3 88.583 106.3s88.583-35.433 88.583-106.3v-106.3h-177.17z" fill-rule="evenodd" transform="matrix(.4072 0 0 .3835 201.1 45.176)" stroke="#000" stroke-width="1pt" fill="#00daec"/> + <path d="M212.6 432.28v106.3c0 8.858 1.384 17.163 3.806 24.914l84.777-42.63V432.28H212.6z" fill-rule="evenodd" transform="matrix(.4072 0 0 .3835 201.1 45.176)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path d="M212.6 432.28v106.3c0 8.858 1.384 17.163 3.806 24.914l84.777-42.63V432.28H212.6z" fill-rule="evenodd" transform="matrix(-.4072 0 0 .3835 446.388 45.176)" stroke="#000" stroke-width="1pt" fill="#fff300"/> + <g fill-rule="evenodd" transform="matrix(.4072 0 0 .3835 201.1 45.176)" stroke="#000" stroke-width="1.25"> + <path d="M244.77 87.42c7.322-5.948 11.157-3.72 17.65 3.1 9.322 9.815 41.317 58.855 46.312 63.019s4.24-6.418 10.344-1.388c3.032 3.727-10.437 17.026-13.737 14.57-6.412-5.022 3.914-5.376-.355-9.645-4.925-5.133-51.215-40.497-60.282-50.57-5.92-6.578-6.314-13.97.067-19.088z" transform="matrix(.6394 .2374 .1423 .7022 58.9 338.88)" fill="#923d09"/> + <rect ry="1.293" rx="2.606" transform="matrix(.7556 .655 -.586 .8104 0 0)" height="66.045" width="5.212" y="181.35" x="495.52" fill="#af8000"/> + <path transform="matrix(.8312 .556 -.641 .7675 0 0)" fill="#b0b0d4" d="M497.3 228.63h29.375v18.868H497.3z"/> + </g> + <g stroke="#000" fill-rule="evenodd" transform="matrix(.4072 0 0 .3835 201.1 45.176)"> + <path d="M385.112 528.567c4.885-2.105-27.333-35.603-33.785-51.842-6.452-16.24-6.108-16.717-8.617-24.322l-3.15 1.36c.805 4.93 15.87 43.87 30.735 64.15 4.198 5.82.63 16.77 5.36 14.73l9.457-4.076z" stroke-width="1pt" fill="#af8000"/> + <path d="M341.548 453.55l-25.872 2.485s-4.83 4.107-2.573 12.665c2.255 8.558 8.965 11.892 8.965 11.892l22.668-17.557-3.188-9.486z" stroke-width="1pt" fill="gray"/> + <rect ry="3.532" rx="3.532" transform="rotate(-18.58)" height="19.428" width="7.064" y="534.62" x="175.71" stroke-width="1pt" fill="gray"/> + <path d="M239.61 381.52c0 7.316-1.58 13.246-3.532 13.246-1.95 0-3.533-5.93-3.533-13.246 0-7.316 1.582-13.246 3.533-13.246s3.532 5.93 3.532 13.246z" transform="matrix(.7447 -.716 .6347 .3935 -105.9 523.83)" stroke-width="1pt" fill="#cf0000"/> + <path d="M239.61 381.52c0 7.316-1.58 13.246-3.532 13.246-1.95 0-3.533-5.93-3.533-13.246 0-7.316 1.582-13.246 3.533-13.246s3.532 5.93 3.532 13.246z" transform="matrix(-.978 .311 .0275 .7554 595.47 104.78)" stroke-width="1pt" fill="#cf0000"/> + <path transform="matrix(.859 -.512 .4994 .8664 0 0)" stroke-width="1.153" fill="#b0b0d4" d="M15.073 596.25H93.94v17.796H15.074z"/> + </g> + <path d="M231.36 591.4l8.83-7.065s1.767 8.83 7.065 8.83 8.83-7.652 8.83-7.652 0 7.653 5.888 7.653 10.597-7.653 10.597-7.064c0 .588.588 7.064 5.298 7.064s10.597-6.476 10.597-6.476.59 7.654 5.887 7.065c5.3-.59 7.065-8.242 7.653-7.653.59.588 4.12 7.653 8.242 7.064s10.01-6.476 10.01-6.476 1.176 7.065 5.886 7.065 6.476-6.476 6.476-6.476 2.353 5.297 6.474 5.297 10.597-5.887 10.597-5.887" transform="matrix(.389 0 0 .3835 211.313 51.724)" stroke="#0072ff" stroke-width="1pt" fill="none"/> + <path d="M231.95 591.4c3.14-1.374 5.69.196 9.418-7.654 0 4.12 2.945 9.42 8.243 9.42s8.832-7.653 8.832-7.653 0 7.653 5.887 7.653 10.596-7.653 10.596-7.064c0 .588.588 7.064 5.298 7.064s10.597-6.476 10.597-6.476.59 7.654 5.888 7.065c5.3-.59 7.065-8.242 7.653-7.653.59.588 4.122 7.653 8.243 7.064 2.943-.59 10.01-7.065 10.01-7.065" transform="matrix(.4072 0 0 .3835 212.128 55.788)" stroke="#0072ff" stroke-width="1pt" fill="none"/> + <g fill-rule="evenodd"> + <path d="M305.54 350.62v18.84h14.717l-5.298-18.84h-9.42z" transform="matrix(.3216 0 0 .286 236.636 162.272)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path d="M341.348 265.413c-.19.17-7.574 3.705-17.23 3.705s-13.445-1.01-14.39-1.684c-.948-.673-2.084-2.02-3.22-2.02-1.137 0-2.083.842-2.083.842s1.893.84 3.22 1.85c1.324 1.012 1.703 2.864 1.703 2.864l31.243.337s-.188-1.853-.188-2.863 1.136-2.525.946-3.03z"/> + <path d="M314.083 253.458h.758v15.66h-.757zM324.308 251.436h.758v17.848h-.758zM334.343 254.468h.758v14.65h-.757z"/> + <path stroke="#000" stroke-width="1.024" fill="#fff" d="M299.07 342.37h18.84v8.83h-18.84z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width="1.101" fill="#fff" d="M297.89 350.61h21.782v8.83H297.89z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width="1.159" fill="#fff" d="M296.71 358.86h24.137v8.83H296.71z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width="1.372" fill="#fff" d="M266.17 334.72h23.837v12.527H266.17z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width="1.475" fill="#fff" d="M264.68 346.41h27.56v12.527h-27.56z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width="1.553" fill="#fff" d="M263.19 358.1h30.54v12.527h-30.54z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width="1.312" fill="#fff" d="M260.21 368.28h36.5v15.307h-36.5z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width="1.017" fill="#fff" d="M238.25 342.37h15.763v10.414H238.25z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width="1.094" fill="#fff" d="M237.26 352.09h18.226v10.414H237.26z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width="1.151" fill="#fff" d="M236.28 361.81h20.197v10.414H236.28z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path stroke="#000" stroke-width=".973" fill="#fff" d="M234.31 370.27h24.137v12.725H234.31z" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path d="M220 377.51h9.876l10.597-33.374L220 377.51z" stroke="#000" stroke-width="1.017" fill="#fff" transform="matrix(.3216 0 0 .286 235.31 157.557)"/> + <path d="M314.254 253.63l.7.308-9.188 12.648-.7-.307z"/> + </g> + <path d="M231.36 591.4l8.83-7.065s1.767 8.83 7.065 8.83 8.83-7.652 8.83-7.652 0 7.653 5.888 7.653 10.597-7.653 10.597-7.064c0 .588.588 7.064 5.298 7.064s10.597-6.476 10.597-6.476.59 7.654 5.887 7.065c5.3-.59 7.065-8.242 7.653-7.653.59.588 4.12 7.653 8.242 7.064s10.01-6.476 10.01-6.476 1.176 7.065 5.886 7.065 6.476-6.476 6.476-6.476 2.353 5.297 6.474 5.297 7.065-7.064 7.065-7.064 1.176 6.476 4.12 6.476c2.943 0 6.476-6.477 6.476-6.477s1.177 8.242 4.12 7.653c2.944-.59 4.122-8.242 4.71-7.653.59.59 4.71 7.064 4.12 7.064" transform="matrix(.3847 0 0 .3835 207.988 46.983)" stroke="#0072ff" stroke-width="1pt" fill="none"/> + </g> + </g> +</svg> diff --git a/s/flag/ca.svg b/s/flag/ca.svg new file mode 100755 index 0000000..0a7a889 --- /dev/null +++ b/s/flag/ca.svg @@ -0,0 +1,11 @@ +<svg xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" fill="#28ff09"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" fill="#000" d="M-79.06 0h682.67v512H-79.06z"/> + </clipPath> + </defs> + <g fill-opacity="1" clip-path="url(#a)" transform="translate(74.118) scale(.9375)"> + <path fill="#fff" d="M81.137 0h362.276v512H81.137z"/> + <path fill="#bf0a30" d="M-100 0H81.138v512H-100zM443.413 0H624.55v512H443.414zM135.31 247.41l-14.067 4.808 65.456 57.446c4.95 14.764-1.72 19.116-5.97 26.86l71.06-9.02-1.85 71.512 14.718-.423-3.21-70.918 71.13 8.432c-4.402-9.297-8.32-14.233-4.247-29.098l65.414-54.426-11.447-4.144c-9.36-7.222 4.044-34.784 6.066-52.178 0 0-38.195 13.135-40.698 6.262l-9.727-18.685-34.747 38.17c-3.796.91-5.413-.6-6.304-3.808l16.053-79.766-25.42 14.297c-2.128.91-4.256.125-5.658-2.355l-24.45-49.06-25.21 50.95c-1.9 1.826-3.803 2.037-5.382.796l-24.204-13.578 14.53 79.143c-1.156 3.14-3.924 4.025-7.18 2.324l-33.216-37.737c-4.345 6.962-7.29 18.336-13.033 20.885-5.744 2.387-24.98-4.823-37.873-7.637 4.404 15.895 18.176 42.302 9.46 50.957z"/> + </g> +</svg> diff --git a/s/flag/cc.svg b/s/flag/cc.svg new file mode 100755 index 0000000..547fec5 --- /dev/null +++ b/s/flag/cc.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g stroke-width="1pt"> + <path fill="#006" d="M0 0h640v480H0z"/> + <path d="M0 0v31.82l349.537 252.788h43.997v-31.82L43.997.002H0zm393.534 0v31.82L43.997 284.606H0v-31.82L349.537 0h43.997z" fill="#fff"/> + <path d="M163.972 0v284.607h65.59V0h-65.59zM0 94.87v94.868h393.534v-94.87H0z" fill="#fff"/> + <path d="M0 113.843v56.92h393.534v-56.92H0zM177.09 0v284.607h39.354V0H177.09zM0 284.607l131.178-94.87h29.33l-131.177 94.87H0zM0 0l131.178 94.87h-29.33L0 21.213V0zm233.025 94.87L364.203 0h29.33L262.357 94.87h-29.33zm160.51 189.737l-131.18-94.87h29.332l101.847 73.657v21.213z" fill="#c00"/> + <path fill-rule="evenodd" fill="#fff" d="M246.413 444.48l-31.836-33.5-31.836 33.5 6.344-45.777-46.04-4.003 39.737-23.585-25.565-38.49 43.21 16.363 14.152-43.992 14.153 43.992 43.21-16.362-25.567 38.49L286.11 394.7l-46.04 4.003"/> + <g fill-rule="evenodd" fill="#fff"> + <path d="M490.748 427.285l6.144-19.115 6.144 19.115 18.78-7.11-11.112 16.72 17.263 10.25-20 1.74 2.76 19.88-13.835-14.548-13.834 14.548 2.76-19.88-20-1.74 17.262-10.25-11.112-16.72M490.748 129.772l6.144-19.112 6.144 19.112 18.78-7.11-11.112 16.722 17.263 10.248-20 1.74 2.76 19.88-13.835-14.547-13.834 14.548 2.76-19.88-20-1.74 17.262-10.25-11.112-16.722M379.18 250.637l6.145-19.115 6.144 19.115 18.78-7.11-11.113 16.72 17.263 10.25-20 1.74 2.76 19.88-13.835-14.548-13.834 14.548 2.76-19.882-20-1.74 17.263-10.25-11.112-16.72M589.94 220.886l6.098-19.115 6.173 19.116 18.745-7.11-11.083 16.72 17.256 10.25-20.008 1.74 2.752 19.88-13.834-14.548-13.834 14.548 2.752-19.88-19.97-1.74 17.292-10.25-11.134-16.72M533.657 312.438l-9.825-8.293 12.83-.945 4.857-11.908 4.856 11.908 12.83.945-9.825 8.293 3.072 12.488-10.933-6.776-10.935 6.776"/> + </g> + </g> +</svg> diff --git a/s/flag/cd.svg b/s/flag/cd.svg new file mode 100755 index 0000000..03e6f4c --- /dev/null +++ b/s/flag/cd.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <path fill="#007fff" d="M0 0h640v480H0z"/> + <path d="M28.8 96H96l20.8-67.2L137.6 96h67.2l-54.4 41.6 20.8 67.2-54.4-41.6-54.4 41.6 20.8-67.2L28.8 96zM600 0L0 360v120h40l600-360V0h-40" fill="#f7d618"/> + <path d="M640 0L0 384v96L640 96V0" fill="#ce1021"/> +</svg> diff --git a/s/flag/cf.svg b/s/flag/cf.svg new file mode 100755 index 0000000..2c57425 --- /dev/null +++ b/s/flag/cf.svg @@ -0,0 +1,15 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-12.355 32h640v480h-640z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" fill-rule="evenodd" transform="translate(12.355 -32)"> + <path fill="#00f" d="M-52 32h719.29v118.94H-52z"/> + <path fill="#ff0" d="M-52 391.65h719.29V512H-52z"/> + <path fill="#009a00" d="M-52 271.3h719.29v120.35H-52z"/> + <path fill="#fff" d="M-52 150.94h719.29v120.35H-52z"/> + <path fill="red" d="M247.7 32.474h119.88v479.53H247.7z"/> + <path fill="#ff0" d="M99.253 137.653L67.837 115.93l-31.314 21.937 10.87-36.717-30.457-23.118 38.14-.968 12.49-36.22 12.702 36.113 38.173.732-30.284 23.288"/> + </g> +</svg> diff --git a/s/flag/cg.svg b/s/flag/cg.svg new file mode 100755 index 0000000..3a2efaa --- /dev/null +++ b/s/flag/cg.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-79.458 32h640v480h-640z"/> + </clipPath> + </defs> + <g stroke-width="1pt" fill-rule="evenodd" clip-path="url(#a)" transform="translate(79.458 -32)"> + <path fill="#ff0" d="M-119.46 32h720v480h-720z"/> + <path d="M-119.46 32v480l480-480h-480z" fill="#00ca00"/> + <path d="M120.54 512h480V32l-480 480z" fill="red"/> + </g> +</svg> diff --git a/s/flag/ch.svg b/s/flag/ch.svg new file mode 100755 index 0000000..71bf3b2 --- /dev/null +++ b/s/flag/ch.svg @@ -0,0 +1,9 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g stroke-width="1pt" fill-rule="evenodd"> + <path fill="#fa000b" d="M0 0h640v480H0z"/> + <g fill="#fff"> + <path d="M170 194.997h299.996v89.997H170z"/> + <path d="M275 89.997h89.996v299.996H275z"/> + </g> + </g> +</svg> diff --git a/s/flag/ci.svg b/s/flag/ci.svg new file mode 100755 index 0000000..b651f62 --- /dev/null +++ b/s/flag/ci.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" fill="#28ff09"> + <g fill-rule="evenodd" fill-opacity="1"> + <path fill="#00cd00" d="M426.83 0H640v480H426.83z"/> + <path fill="#ff9a00" d="M0 0h212.88v480H0z"/> + <path fill="#fff" d="M212.88 0h213.95v480H212.88z"/> + </g> +</svg> diff --git a/s/flag/ck.svg b/s/flag/ck.svg new file mode 100755 index 0000000..1c3133d --- /dev/null +++ b/s/flag/ck.svg @@ -0,0 +1,11 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <path fill="#006" d="M0 0h640v480H0z"/> + <g stroke-width="1pt"> + <path d="M0 0v24.81l319.75 197.106H360v-24.81L40.25 0H.002zm360.004 0v24.81L40.246 221.917H0v-24.814L319.75-.003H360z" fill="#fff"/> + <path d="M150.003 0v221.92h60V0h-60zM0 73.973v73.973h360.004V73.973H0z" fill="#fff"/> + <path d="M0 88.766v44.384h360.004V88.766H0zM162.003 0v221.92h36V0h-36zM0 221.92l120.004-73.974h26.833l-120.004 73.97H-.003zM0 0l120.004 73.973H93.17L.004 16.54V0zm213.172 73.973L333.168 0H360L239.998 73.973h-26.833zm146.832 147.95L240 147.948h26.833L360 205.38v16.542z" fill="#c00"/> + </g> + <g fill-rule="evenodd" fill="#fff"> + <path d="M471.6 213l5.2-16.668-14.013-10.647 17.655-.224 5.883-16.437 5.708 16.527 17.657.484-14.128 10.438 5.028 16.744-14.44-10.078M513.2 216.274l10.408-13.934-9.68-14.798 16.706 5.795 10.977-13.484-.086 17.512 16.474 6.463-16.76 5.026-.8 17.485-10.272-14.408M431.77 226.907l-.693-17.47-16.746-5.183 16.53-6.296.027-17.487 10.905 13.578 16.77-5.63-9.793 14.685 10.336 14.016-16.956-4.503M402.46 253.484l-7.332-15.822-17.415 1.824 12.818-12.317-6.675-16.123 15.25 8.21 13.292-11.798-3.394 17.39 14.894 8.84-17.348 2.535M389.076 291.806l-13.31-11.106-14.964 9.22 6.375-16.7-12.845-11.664 17.247.787 7.023-16.44 4.283 17.19 17.19 1.508-14.6 9.836M388.75 334.854l-16.568-4.817-10.11 14.498-.703-17.895-16.36-5.516 16.13-6.24-.004-17.916 10.672 14.04 16.364-5.554-9.538 14.917M408.16 371.223l-17.074 2.394-3.463 17.41-7.78-16.078-17.162 1.67 12.265-12.328-7.15-16.382 15.36 8.46 12.748-11.796-2.772 17.556M438.17 400.085l-15.208 8.226 2.676 17.55-12.775-12.362-15.537 7.577 7.314-15.863-12.288-12.87 17.295 2.56 7.95-15.535 3.374 17.447M474.803 405.778l-8.3 15.322 11.7 13.21-17.36-3.266-8.924 14.962-2.428-17.338-17.226-3.962 15.86-7.448-1.716-17.417 12.23 12.738M515.972 399.456l-.517 17.475 16.345 6.365-16.924 5.103-1.237 17.442-9.94-14.32-17.116 4.423 10.783-13.952-9.342-14.716 16.604 5.698M559.028 209.756l11.944 12.604 15.92-7.39-8.25 15.835 11.418 13.102-17.04-2.82-8.864 15.496-2.28-17.577-16.9-3.53 15.632-8.043M594.852 248.537l5.42 16.595 17.507.293-14.174 10.68 4.734 16.815-14.176-9.994-14.585 10.107 5.412-16.857-13.75-10.576 17.524-.422M608.277 298.384l-2.006 17.364 15.742 7.775-17.296 3.598-2.72 17.27-8.68-15.14-17.43 2.904L587.82 319.2l-8.05-15.48 16.054 7.133M598.755 350.648l-7.767 15.607 12.148 12.79-17.462-2.652-8.406 15.268-3.02-17.24-17.353-3.35 15.596-8.006-2.314-17.345 12.66 12.296M573.003 397.124l-14.675 9.17 3.747 17.348-13.508-11.534-15.043 8.542 6.328-16.293-13.053-12.072 17.417 1.465 6.983-16.006 4.437 17.2"/> + </g> +</svg> diff --git a/s/flag/cl.svg b/s/flag/cl.svg new file mode 100755 index 0000000..11e8bde --- /dev/null +++ b/s/flag/cl.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h682.67v512H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="scale(.9375)" fill-opacity=".996"> + <path fill="#fdfdfd" d="M255.99 0H768v256H255.99z"/> + <path fill="#5651a9" d="M0 0h256v256H0z"/> + <path d="M167.82 191.71l-39.653-29.737-39.458 30.03 14.674-48.8-39.386-30.133 48.728-.42L127.84 64l15.437 48.537 48.728.064-39.184 30.418 15 48.69z" fill="#fdfdfd"/> + <path fill="#ed2800" d="M0 256h768v256H0z"/> + </g> +</svg> diff --git a/s/flag/cm.svg b/s/flag/cm.svg new file mode 100755 index 0000000..a956cbd --- /dev/null +++ b/s/flag/cm.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g clip-path="url(#a)"> + <path fill-rule="evenodd" fill="#fff001" d="M426.662-80H640v640H426.662z"/> + <path fill-rule="evenodd" fill="#009811" d="M0-80h212.013v640H0z"/> + <path fill-rule="evenodd" fill="#c20000" d="M212.013-80H428v640H212.013z"/> + <path d="M386.238 329.438l-58.624-44.32-64.234 45.677 24.41-76.032-66.563-45.123 79.945-1.394 21.017-73.935 24.975 74.242 78.32-1.05-65.455 48.162z" fill="#fff001"/> + </g> +</svg> diff --git a/s/flag/cn.svg b/s/flag/cn.svg new file mode 100755 index 0000000..3a48789 --- /dev/null +++ b/s/flag/cn.svg @@ -0,0 +1,19 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="640" height="480" viewBox="-5 -5 12.8 9.6"> + <title> + Flag of the People's Republic of China + </title> + <defs> + <path id="b" fill="#ffde00" d="M-.588.81L0-1 .588.81-.952-.31H.952z"/> + <clipPath id="a"> + <path d="M-5-15.4h26.667v20H-5z"/> + </clipPath> + </defs> + <g transform="matrix(.48 0 0 .48 -2.6 2.39)" clip-path="url(#a)"> + <path fill="#de2910" d="M-5-15.4h30v20H-5z"/> + <use height="20" width="30" transform="matrix(3 0 0 3 0 -10.4)" xlink:href="#b"/> + <use height="20" width="30" transform="rotate(-120.93 -1.29 -8.12)" xlink:href="#b"/> + <use height="20" width="30" transform="rotate(-98.11 -1.45 -8.74)" xlink:href="#b"/> + <use height="20" width="30" transform="rotate(-74.04 -2.07 -8.84)" xlink:href="#b"/> + <use height="20" width="30" transform="rotate(-51.32 -4.16 -8.4)" xlink:href="#b"/> + </g> +</svg> diff --git a/s/flag/co.svg b/s/flag/co.svg new file mode 100755 index 0000000..edf0074 --- /dev/null +++ b/s/flag/co.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#ffe800" d="M0 0h640v480H0z"/> + <path fill="#00148e" d="M0 240h640v240H0z"/> + <path fill="#da0010" d="M0 360h640v120H0z"/> + </g> +</svg> diff --git a/s/flag/cr.svg b/s/flag/cr.svg new file mode 100755 index 0000000..213db50 --- /dev/null +++ b/s/flag/cr.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#0000b4" d="M0 0h640v480H0z"/> + <path fill="#fff" d="M0 75.428h640v322.285H0z"/> + <path fill="#d90000" d="M0 157.716h640V315.43H0z"/> + </g> +</svg> diff --git a/s/flag/cu.svg b/s/flag/cu.svg new file mode 100755 index 0000000..314bc7f --- /dev/null +++ b/s/flag/cu.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-32 0h682.67v512H-32z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 30 0)"> + <path fill="#0050f0" d="M-32 0h768v512H-32z"/> + <path fill="#fff" d="M-32 102.4h768v102.4H-32zM-32 307.2h768v102.4H-32z"/> + <path d="M-32 0l440.69 255.67L-32 511.01V0z" fill="#ed0000"/> + <path d="M161.75 325.47l-47.447-35.432-47.214 35.78 17.56-58.144-47.13-35.904 58.306-.5 18.084-57.97 18.472 57.836 58.305.077-46.886 36.243 17.948 58.016z" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/cv.svg b/s/flag/cv.svg new file mode 100755 index 0000000..87d4e22 --- /dev/null +++ b/s/flag/cv.svg @@ -0,0 +1,16 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <desc> + The United States of America flag, produced by Daniel McRae + </desc> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-123.43 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 115.72 0)"> + <path fill="#fff" d="M-123.43 233.05H723.1v205.97h-846.53z"/> + <path fill="#081873" d="M-122.76 0h845.95v256.64h-845.95zM-122.52 385.87H729.6V512h-852.12z"/> + <path fill="#de3929" d="M-122.52 302.55h845.95v39.65h-845.95z"/> + <path fill="#ffce08" d="M130.92 399.168l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M316.91 250.498l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M88.27 335.448l6.65 20.468h21.523l-17.412 12.65 6.652 20.47-17.41-12.65-17.412 12.65 6.65-20.47-17.41-12.65h21.52M316.91 329.458l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M269.82 188.178l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M198.74 163.428l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M127.65 186.788l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65H121M86.184 250.498l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M198.74 420.408l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M274.26 399.168l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522"/> + </g> +</svg> diff --git a/s/flag/cw.svg b/s/flag/cw.svg new file mode 100755 index 0000000..821a5ea --- /dev/null +++ b/s/flag/cw.svg @@ -0,0 +1,14 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" xmlns:xlink="http://www.w3.org/1999/xlink"> + <defs> + <path id="b" d="M0-1l.225.69H.95L.364.12l.225.69L0 .383-.588.81l.225-.692L-.95-.31h.725z"/> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h682.67v512H0z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" transform="matrix(.94 0 0 .94 0 0)"> + <path fill="#002b7f" d="M0 0h768v512H0z"/> + <path fill="#f9e814" d="M0 320h768v64H0z"/> + <use xlink:href="#b" transform="scale(42.67)" height="9000" width="13500" y="2" x="2" fill="#fff"/> + <use xlink:href="#b" transform="scale(56.9)" height="9000" width="13500" y="3" x="3" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/cx.svg b/s/flag/cx.svg new file mode 100755 index 0000000..ac68f9b --- /dev/null +++ b/s/flag/cx.svg @@ -0,0 +1,16 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)"> + <path fill="#0021ad" d="M0 0h640v480H0z"/> + <path d="M0 0l640 480L639.63.36 0 0z" fill="#1c8a42"/> + <path d="M428.334 255.097a109.89 109.89 0 1 1-219.778 0 109.89 109.89 0 1 1 219.778 0z" fill="#ffc639"/> + <path d="M250.12 206.06c7.517 10.323 18.903 27.606 28.068 23.098 7.143.023 10.838.53 11.807 5.28 16.864 2.875 45.208-4.24 62.832-27.202 0 0 1.49.193.97-8.537.1-3.81 5.202-3.04 5.324-1.812.715 1.89.586 3.31 1.543 3.356 2.18-.73 5.145-5.594 7.63-8.682.682-1.362.31-2.803.47-4.51 1.31-3.23 4.58-2.526 5.274-.84.62 1.09.63 1.93 1.248 3.02 3.32 2.21 9.32.146 9.79.146.588-2.705 2.33-2.45 2.33-2.45 2.21-.49 1.348-.293 2.796.465-1.28 14.605 2.875 15.25 2.53 22.747.15 8.357-2.53 10.734-2.53 13.934.85 3.888 13.186 4.023 8.844 7.322-3.815 2.04.02 5.855-5.728 7.333-16.693 8.477-19.894 15.75-19.894 15.75s-4.194 7.923-4.66 7.923c-2.803 5.287-6.347 2.398-8.313 4.978-.985 3.24-2.09 10.41-.123 14.14.982 5.122-.123 7.917-1.354 13.044-1.106 10.69-5.343 12.31-5.832 16.07-1.967 4.007.414 22.837-1.45 22.837-12.435.246-21.965-2.378-26.883-3.36 4.795-20.652 2.94-38.81 2.94-40.673-1.233-14.774-22.14-11.177-25.335-13.143-2.657-.564-4.324-2.725-5.26-3.658-2.952-.31-4.058-.99-7.01-1.3-1.477.737-.587 1.502-3.877 2.512-8.334 1.006-12.02-7.265-12.02-7.265.406-2.79-18.742.567-29.152-1.848-4.27 2.38-6.13 9.414-9.63 10.253-.1 2.18-5.747-1.792-6.887-3.938-.244-6.243 5.44-9.01 5.44-9.01 4.508-3.168 7.19-3.69 9.36-5.876 1.09-5.437.54-9.457 2.856-13.544 1.96-3.118 4.853-1.655 6.814-3.056 2.114-1.396 3-10.54 1.06-13.048 0 0-8.44-7.613-8.904-8.078-2.748-7.877 3.208-12.948 4.918-12.378z" fill="#1c8a42"/> + <path d="M579.51 72.574c-2.84-11.235-28.252-35.433-47.35-50.832-4.562-3.106-7.534-1.256-6.94 3.173 2.38 3.965 4.162 8.326 6.543 12.292.66 2.643 1.916 4.493 2.577 7.136 0 0 .197 4.56.596 4.956 5.946 6.544 6.74 12.094 6.74 12.094 3.436 6.61 6.475 11.433 12.49 16.852 6.74 4.23 1.782 17.38 1.982 24.388 0 4.428-3.17 3.9-5.947 3.37-21.873-20.09-43.55-20.156-62.652-25.97-7.466-.795-7.6 2.774-5.153 4.755 13.35 14.275 25.907 23.99 42.43 32.118 2.774 1.72 5.548 3.437 8.325 5.156l9.516 7.93c7.336 4.76 7.93 9.12 7.93 9.515.198 8.922-4.56 15.86-5.948 18.636-2.505 9.463-7.533 11.103-7.533 11.103-40.842 27.558-62.256 34.695-128.48 26.17-.99-.53-7.336.528 0 3.172 16.854 5.617 58.252 14.623 98.303-4.344 9.617-6.742 16.05-4.53 23.016-8.566 11.437-7.053 27.775-15.837 30.75-16.828 8.92-4.76 33.9-10.112 39.65-14.87 6.61-.53 13.456-1.397 13.92-7.08 2.173-1.4 5.343-.38 7.703-5.005 5.233-.912 4.352-2.788 4.352-2.788-1.322-3.7-6.214-5.22-9.715-7.928-5.156-1.72-8.723-2.248-12.492-.398l-3.568 1.586s-5.55-.792-5.55-1.188c-12.338-.677-11.137-41.56-15.5-58.61z" fill="#ffc639"/> + <path d="M588.645 72.54a3.106 1.94 15.948 1 1-5.925-1.86 3.106 1.94 15.948 1 1 5.925 1.86z" fill="#1c8a42"/> + <path fill="#fff" d="M80.835 413.71l-13.98-13.085-14.146 12.903 1.515-19.08-18.91-3.02 15.87-10.715-9.435-16.66 18.273 5.722 7.145-17.765 6.917 17.856 18.345-5.49-9.648 16.54 15.73 10.918-18.947 2.775M175.38 302.312l-11.01-10.305-11.143 10.162 1.195-15.03-14.894-2.376 12.498-8.44-7.43-13.12 14.39 4.506 5.63-13.992 5.447 14.063 14.448-4.322-7.597 13.026 12.388 8.6-14.92 2.184M189.773 538.458l-18.406-9.277-7.36 19.257-6.447-19.576-18.82 8.413 9.278-18.398-19.25-7.36 19.577-6.455-8.42-18.812 18.407 9.278 7.36-19.256 6.447 19.575 18.818-8.412-9.277 18.407 19.25 7.35-19.576 6.457M273.844 399.958l-13.932-.413-6.718 12.222-6.612-12.28-13.932.297 7.33-11.857L232.747 376l13.943.414 6.707-12.222 6.61 12.28 13.943-.296-7.33 11.856M185.688 437.954l-11.874-7.924-11.562 8.344 4.068-13.442-11.727-8.13 14.39-.384 4.307-13.38 4.83 13.21 14.39-.134-11.405 8.55"/> + </g> +</svg> diff --git a/s/flag/cy.svg b/s/flag/cy.svg new file mode 100755 index 0000000..02f9b32 --- /dev/null +++ b/s/flag/cy.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <path fill="#fff" d="M0 0h640v480H0z"/> + <path fill="gray" fill-rule="evenodd" d="M299.104 219.732l1.696-2.236-.882-2.663 2.652.92 2.258-1.66-.056 2.802 2.275 1.64-2.68.81-.854 2.673-1.6-2.303"/> + <path d="M164.84 244.11h.308c-.823 0-.39-.063.926.942 1.076.438 2.023.628 3.7.628 1.473.107 2.747.314 4.32.314 1.448.622 2.272 1.19 3.394 1.57.494.762 1.573 2.47 2.16 3.14 1.085.813 2.396 1.31 3.392 2.197 1.242.346 2.03.883 3.394 1.885 1.025.494 1.995.9 3.393 1.57 1.342.472 2.81 1.104 4.01 1.57 1.057.253 2.47.685 3.393 1.255 1.31.29 2.41.662 4.01.942 1.634.198 2.458.638 4.01.942 1.394.718 2.48 1.254 4.01 1.885.622.928 1.156 1.764 2.47 2.196.673.83 1.792 1.052 2.467 1.884.993.48 2.088.796 3.393 1.256 1.573.114 2.708.57 4.32.628h8.638c1.376.166 2.918.386 4.008.627 1.51 0 2.982.027 4.32-.312 1.726-.02 2.53-.513 4.01-.63 1.65.268 2.77.12 3.393 1.572 1.022 1.04 1.643 2.06 1.85 3.453.325.993.31 2.634.31 4.08 0 1.366.006 2.85.307 3.77.982.964 1.747 1.25 3.085 1.57.99.335 2.818.63 3.7 1.255.73.778 1.087 2.015 2.16 2.826.94.734 2.51.887 4.01.94h4.32c1.348 0 3.137.132 4.01-.312 1.336-.495 1.687-1.415 3.393-1.57 1.608.247 1.575 1.02 2.776 1.57.766 1.122 1.49 1.585 2.47 2.197.633.922 1.463 1.638 2.776 1.884 1.607-.166 3.06-.646 4.32-.942.438-1.12.977-1.894 1.54-2.827.42-.72.617-.905.617-2.197.462-.94.405-2.847 0-4.082-.058-1.597-.425-2.442-.616-4.08 0-1.523.07-2.972.308-4.083.634-.745 1.047-1.963 1.543-2.826.84-1.027 1.62-1.413 2.776-1.883.976-.33 2.588-.315 4.01-.315.755-.23 2.008-.155 1.543-.628-.4.407-1.935.536-.31.627.887-.612 2.5-.893 3.395-1.256 1.317-.202 2.107-.658 3.393-.942.96-.573 2.038-.847 3.393-1.256 1.117-.433 2.374-.856 3.702-1.256 1.42-.68 2.296-1.062 3.7-1.256.97-.52 2.184-.627 3.704-.627 1.425.93 2.173 1.66 3.393 2.825.583.873 1.105 1.398 1.542 2.512.986.683 1.514 1.187 3.392 1.255 1.486 0 2.075.258 2.468-.942.812-.736 1.233-2.04 2.16-2.826.92-.92 2.057-1.388 3.085-1.883 1.158-.323 2.094-.75 3.7-.943 1.07-.4 2.177-.483 3.394.313.905 1.288 1.928 2.602 3.084 4.082.785.517 1.746.628 3.085.628.94-.48 2.883-.314 4.318-.314 1.263.37 1.815 1.217 3.085 1.57.71.072 1.092.313 1.85.313 2.257.298 3.196.07 4.936-.314h4.318c1.516.057 2.333.313 4.01.313.937.578 2.544.847 3.702 1.256 1.46.35 1.74.914 3.084 1.57.873.443 2.663.313 4.01.313 1.61-.196 2.682-.474 4.01-.943 1.172-.29 1.667-.59 2.16-1.57.767-.53 1.826-1.38 2.47-2.197.846-.586 1.58-1.335 2.157-2.198.832-.558 2.23-1.98 2.778-2.825.788-.643 1.63-1.988 2.16-2.826.676-1.023 1.53-1.616 2.16-3.138.48-1.468.543-2.62.924-4.082.318-1.187.902-2.19 1.234-3.768.627-1.374 1.13-2.715 1.542-3.768.758-.864 1.26-1.91 2.16-2.825.516-.813 1.204-1.227 1.85-1.885.736-.713 1.844-1.24 3.085-1.57 1.275-.353 1.826-.922 2.468-1.884 1.167-.394 1.855-.906 3.394-1.255 1.354-.408 2.462-.667 3.703-.942h4.318c1.556 0 2.895.142 4.32.315 1.405.408 2.725.765 4.01.942.882.425 2.35 1.202 3.084 1.883.92.62 1.927 1.62 2.467 2.51.403 1.233 1.058 1.777 1.85 2.828.825 1.092 1.518 1.782 3.085 2.512 1.25.295 2.27.83 3.702.942 1.64 0 2.63.206 4.01.314 1.51 0 2.982.026 4.32-.314 1.346-.792 1.83-1.003 2.775-2.198 1.243-.623 2.147-1.117 3.702-1.255 1.02-.226 2.288-.313 3.7-.313.802.56 1.652.77 2.16 1.57.813.585.867.903 2.16.942.882.524 2.18.774 3.393.94h4.318-4.318 4.318c1.183-1.01 1.543-.895 1.543-2.197.955-.78 1.43-1.87 2.468-3.14.564-.932 1.103-1.706 1.542-2.826.337-1.03.756-2.607.926-3.768.39-1.042.757-2.643.925-4.082.374-1.45.618-2.748.618-4.396v-4.395c-.02-1.553-.248-2.638-.618-3.768-.49-1.388-1.306-2.402-1.85-3.454-.914-.735-2.04-1.764-2.777-2.512-1.403-.86-2.465-1.487-3.702-2.198-1.35-.85-2.65-1.59-3.702-2.197-.62-.706-1.624-1.673-2.16-2.2-.42-.86-.42-2.908 0-3.767.037-1.307.174-2.06.926-2.826 1.406-.513 2.343-1.19 3.394-1.884.682-.97 1.75-1.158 3.085-2.197 1.336-.596 2.093-.91 3.086-1.884 1.443-.49 2.79-1.488 4.01-1.884.66-.813 1.897-1.485 3.393-1.884 1.07-.74 2.35-1.53 3.392-1.884 1.453-.783 2.532-1.06 4.01-1.884 1.51-.383 2.856-1.073 4.32-1.57.375-.466.822-.812 1.542-.94 1.92-.117 3.52-.327 4.627-1.257 1.24-.45 1.37-1.355 2.16-2.2.568-1.037 1.187-1.498 1.542-2.824.982-1.073.44-1.388-1.234-1.57-.526-.536-1 .004-1.233-.942-1.107-.506-1.396-1.384-2.16-2.198-.466-1.297-.455-1.88.926-2.512.86-.595 2.085-.795 2.777-1.57 1.286-.197 2.262-.762 3.394-1.255 1.677-.123 2.57-.51 4.01-.943 1.228-.668 2.025-1.06 3.086-1.57 1.268-.56 2.78-1.348 4.01-1.884 1.105-.75 2.51-1.484 4.01-1.883 1.105-.572 2.463-1.02 3.702-1.57 1.057-.254 2.47-.686 3.393-1.257 1.423-.275 2.962-.797 4.01-1.255 1.033-.475 2.25-1.072 3.086-1.57 1.278-.562 2.19-1.236 3.394-1.57.73-.708 1.71-1.21 2.776-1.57.868-.82 2.715-1.953 3.7-2.51.937-.453 2.03-.912 2.778-1.572.718-.08.515-.232 1.234-.313 2.248-.69 3.396-.946 4.627-2.198.956-.46 1.94-.962 2.776-1.57 1.03-.83 1.85-1.584 2.47-2.51 1.122-.407 1.737-1.2 2.775-1.886 1.076-.438 2.024-.63 3.702-.63 1.35 0 3.138.132 4.01-.313 1.936-.023 2.44-.496 3.702-1.255.417-1.2 1.31-1.798 2.467-2.512.683-.634 2.408-1.584 3.085-2.198 1.335-.65 1.912-1.48 3.085-2.51.906-.994 2.04-1.91 3.084-2.513 1.298-.576 2.227-.835 3.395-1.257 1.46-.265 2.928-.538 4.315-.942 1.58-.122 2.136-.592 3.4-.94.872-.85 1.4-1.276 2.465-2.513.52-1.442 1.292-1.97 2.775-2.197 1.49-.793 2.686-.887 3.706-1.884 1.043-1.064 1.762-2.26 2.775-3.454.573-1.353 1.11-2.167 1.234-3.767-.022-1.927-.433-2.204-1.233-3.454-.77-1.124-1.254-1.84-1.85-2.825-.96-.553-2.326-1.102-3.397-1.57-1.468.115-2.37.45-3.39.942-1.05.864-1.778 1.574-2.468 2.826-.47 1.01-.785 2.125-1.233 3.453-.587.854-1.99 1.665-3.09 2.198-1.292.575-2.217.834-3.39 1.256-1.462.514-2.143.958-3.702 1.57-.912.44-2.175 1.115-3.085 1.57-1.342.813-2.627 1.446-3.7 1.884-1.37.79-2.15 1.224-3.395 1.57-1.402.85-2.76 1.493-4.01 2.197-1.037.52-2.05 1.193-3.394 1.885-1.09.242-2.633.46-4.01.628h-4.627c-1.32-.31-2.888-.58-4.32-1.256-1.536-.81-2.287-1.322-3.393-2.198-.676-1.34-.904-1.98-.925-3.768-.96-.488-2.285-.61-3.702-.628-1.565 0-3.016-.06-4.01.628-1.344.203-2.473.756-3.394 1.57-1.42.687-2.348 1.515-3.393 2.197-1.087.666-2.494 1.665-3.702 2.197-1.134.495-2.91 1.038-4.318 1.57-1.81.53-3.12 1.114-4.935 1.256-1.55.713-2.763.925-4.32 1.57-1.58.598-2.694 1.038-4.318 1.57-1.072.554-3.006 1.48-4.01 2.197-1.844.938-3.192 1.734-4.63 2.512-1.442.617-2.488 1.203-4.008 1.884-.748.678-2.228 1.21-3.085 1.884-1.377.35-2.958.928-3.702 1.57-1.217.148-1.893.475-2.468 1.256-1.1 1.342-.618 1.255-1.85 1.255-1.055.653-2.694.63-4.32.63-1.645-.045-2.94-.315-4.627-.315-1.447-.263-2.77-.57-4.32-.627H456.662c-1.64 0-2.63.206-4.01.313-1.535.113-2.732.453-4.01.63-1.39.213-2.026.744-3.085 1.255-.974.47-1.957.943-3.085 1.256-1.515.816-3.257 1.244-4.936 1.57-1.267.6-3.066.92-4.01 1.57-1.446.114-2.393.51-4.01.63-1.374.63-2.506.968-3.703 1.254-1.11.377-2.176.61-3.7.63-1.428.195-2.215.604-3.703.94-.53.454-1.374.777-2.16.942-1.81.874-2.405.942-4.318.942h-4.32c-2.056-.203-4.098-.465-6.168-.942-2.112-.103-4.126-.374-6.17-.627H381.7c-1.63-.06-3.077-.378-4.626-.63-1.45-.263-2.983-.39-4.32-.94-1.917-.104-3.858-.37-5.55-.943-1.544-.28-3.023-.808-4.628-.942-.89-.55-2.64-.734-3.394-1.256-1.41-.112-2.583-.557-3.393-1.257-1.444-.218-2.28-.866-3.703-1.256-1.282-.79-2.83-1.054-4.627-1.884-1.532-.334-3.066-.885-4.627-1.255-1.23-.434-2.73-.846-3.702-1.57-1.363-.38-2.145-.787-3.7-1.257-.727-.657-2.157-1.346-3.086-1.882-.674-.612-2.447-1.663-3.393-2.198-1.004-1.184-2.017-2.35-3.392-3.767-.954-1.06-2.044-1.91-3.085-2.512-1.338-.566-2.853-1.377-3.702-1.883-1.167-.324-2.11-1.047-2.776-1.884-1.05-.606-1.738-1.147-2.776-1.883-1.61.62-1.78.314-3.393.314-1.84-.154-3.19-.212-4.935 0-1.51.18-2.984.313-4.628.313h-4.318c-1.952.024-2.268.28-2.777 1.885-.898 1.004-1.273 2.18-2.16 2.825-.76.982-1.86 1.65-3.084 2.198-1.523 1.072-1.983 1.46-2.776 2.826-1.01.902-1.852 2.19-2.468 3.14-.56.975-.937 1.878-1.235 3.454 0 1.502.12 3.083-.308 4.395 0 1.502.12 3.082-.31 4.395v8.792c.644.963 1.51 1.332 1.852 2.826.456 1.24-.39.796-1.235 1.57h-8.638c-1.573 0-2.846-.208-4.318-.314-1.248-.227-3.072-.31-4.01-.628h-4.32c-1.535-.112-2.73-.452-4.01-.628-1.787-.347-3.023-.873-4.628-1.884-1.643-.358-2.897-.988-4.32-1.884-1.53-.408-2.745-1.227-4.317-1.57-1.058-.51-1.815-1.003-3.085-1.57-.746-1.04-1.466-1.62-3.085-1.884-1.24-.648-2.293-.627-4.01-.627-1.607.194-2.543.62-3.702.942-1.285.592-2.96 1.095-4.01 1.57-1.05.427-2 1-3.085 1.57-.83 1.085-1.314 1.734-1.85 2.825-.412 0-.31-.104-.31.314-1.66.06-3.41 0-5.243 0-.87.443-2.564.54-3.702.628-.904.71-1.972 1.328-2.776 1.884-.532 1.083-.904 1.37-.926 3.14.067 1.875.73 2.42 1.235 3.767-.37 1.712-1.03 1.854-2.468 2.198-1.09.242-2.514.314-4.01.314h-9.254c-1.777 0-2.613.02-3.394-.94-.537-1.066-.588-2.422-.926-3.455-.92-1.273-1.33-2.127-2.776-3.14-.32-.973-1.083-2.4-1.542-3.454-.495-1.062-.877-2-1.852-2.826-1.025-.97-2.187-1.598-3.085-2.512-1.033-.674-1.86-1.233-3.702-1.256-1.495 0-2.92.073-4.01.314-.752.664-2.01 1.373-3.085 2.198-.853 1.157-1.61 2-2.777 3.14-1.316 1.228-2.625 1.974-3.7 2.512-.987.502-1.993 1.12-2.778 2.197-.916.407-1.36 1.09-1.85 2.198-.806.732-1.267 1.95-1.543 3.14-.503 1.538-.572 3.303-.617 5.024v4.396c-.488.59-.75 1.218-1.542 1.884-.755.684-1.89 1.433-2.777 1.883-.86 1.125-1.396 1.786-1.543 3.454 0 1.373-.127 3.195.31 4.083.622.89 1.88 1.503 3.084 2.198 1.156.418 1.756 1.33 2.468 2.512 1.32.604 1.158 1.163 2.776 1.256.98.784 2.483 1.03 3.703 1.57 1.234.343 1.85.913 3.084 1.255.8 1.06 1.68 1.747 2.16 3.454.13 1.097.557 2.197 0 3.14-1.256.76-2.942 1.246-3.7 1.884-1 .054-.925.29-1.543.63-.013 2.097-.288 3.167-.618 4.708-.106 1.404-.31 2.414-.31 4.082v4.396c.657 1.394 1.524 1.654 2.47 2.51.94.685 1.232 1.49 1.54 2.827.53 1.228 1.094 2.252 1.544 3.453.562 1.203.925 2.294.925 4.082-.155 1.72-.86 2.015-2.16 2.825-.69.85-.463 2.355-.926 3.77 0 1.446-.017 3.087.31 4.08.527.717.4 1.017.616 2.198z" fill-rule="evenodd" fill="#ffce00"/> + <g fill-rule="evenodd" fill="#009a00"> + <path d="M203.167 311.073l-.5-.51c1.137 1.157.588.733-.502-2.04-.107-2.94-.806-3.414-2.505-4.59-1.993-.676-2.845-1.543-3.508-3.57-1.274-1.072-2.233-2.504-3.007-4.08-1.377-.954-2.572-2.17-3.508-3.572-1.377-.952-2.57-2.167-3.508-3.57-1.905-.676-3.162-2.054-5.513-3.06-1.324-1.283-2.567-1.917-4.51-3.06-2.176-1.06-2.3-1.827-5.012-2.04-.83.93-2.143.564-2.506 2.04.11 3.023.7 3.657 2.004 6.12.1 2.787.837 4.098 2.005 6.122 1.422 1.014 2.517 2.815 4.008 4.08 1.59 1.1 2.224 2.27 4.51 3.57 1.194 1.52 3.19 2.336 5.01 3.57 2.243.88 4.08 1.56 5.513 2.55 2.013.482 3.386 1.257 5.012 2.04 2.406.23 3.385.504 6.515 0zM213.693 325.35l-.5-.51c1.19 1.21.622.716-1.003-2.04-1.853-1.786-2.254-3.153-5.01-3.57-1.474-.6-3.864-.97-5.514-1.53-2.853 0-4.16-.31-6.515-1.02-1.682-.468-3.81-1.3-5.51-2.04-2.016-.306-4.103-1.108-6.015-1.53h-7.015c-2.25.538-3.518.562-4.01 3.06 1.028 1.265 2.385 2.37 3.51 3.57.632 2.24 2.16 2.774 3.506 4.08 2.32.817 2.792 1.427 5.513 1.53 2.306.783 3.983.99 6.514 1.02 2.684 0 4.614.554 7.015 1.02 2 .275 3.96.51 6.514.51 2.177 0 4.55-.013 6.014-.51 3.158-2.57 2.505-3.13 2.505.51l1.003 1.02M230.73 333h-.5c1.35 0 .664.033-2.006-.51-2.5-.727-3.92-1.433-6.515-1.53-1.543-.918-3.436-1.02-6.015-1.02h-7.015c-2.48.194-3.533.825-6.014 1.02-1.317.784-3.933 1.428-5.512 2.04-1.41.975-2.613 2.188-4.51 3.06.437 2.534 1.82 3.488 3.508 4.59 1.695.69 3.44 1.343 6.013 1.53 2.462.094 3.79.51 6.515.51 2.553 0 4.515-.234 6.515-.51 1.663-.8 3.078-1.642 5.512-2.04 1.213-1.07 2.99-1.817 4.51-2.55 1.346-.648 3.177-1.247 4.51-2.04l-4.51 2.04c1.346-.648 3.177-1.247 5.512-4.59zM255.156 344.863v-.434c0 1.213.062.568-1.002-1.738-1.855-.847-4.08-1.446-5.513-2.172-2.19 0-5.096-.18-6.514.435-2.53.026-4.208.202-6.515.868-2.198.288-3.465.954-5.01 1.737-1.745.817-4.274 1.867-6.515 2.606-1.98 1.197-2.65 1.9-5.01 3.04-1.487 1.413-3.008 2.26-4.01 3.476-.444 1.466.03 3.195 2.005 3.91 1.25.893 3.168 1.36 5.01 1.736 2.34-.075 4.406-.356 6.015-1.303 2.483-.285 3.958-.916 6.013-1.303 1.76-.54 3.443-1.06 5.513-1.303 1.434-.844 3.976-1.57 5.513-2.173 2.518-.883 4.126-2.05 6.014-3.04.9-.903 2.1-1.877 3.507-2.172l-3.507 2.172c.9-.903 2.1-1.877 4.01-4.344zM274.33 354.593c-.094-.022-2.332-.906-4.01-.906-1.485-.786-3.89-.944-6.013-1.813-2.74 0-4.603.278-6.014 1.36-2.083.254-3.945.807-5.512 1.812-1.95.415-3.72.803-5.512 1.812-2.417.918-3.482 1.778-5.01 2.72-1.033 1.128-3.26 1.76-4.51 2.718-1.123 1.228-1.12 2.853-.502 4.53 1.283.715 3.476 1.424 5.01 2.267 2.24.36 4.524.452 7.017.452 2.225-.154 4.102-.492 5.512-1.36 2.52-1.097 3.192-1.908 5.01-3.17 1.054-1.153 2.815-2.08 4.512-2.72 1.278-1 2.83-1.734 5.01-2.265 1.22-1.052 2.345-2.07 3.51-3.172 1.4 0 .437.14 1.502-2.265zM295.942 359.052c-.12-.016-2.83-.442-4.51-.442-1.418-.625-4.325-.442-6.515-.442-2.76.09-3.615.593-5.012 1.767-1.42.77-3.135 1.464-4.51 2.652-1.756.95-3.34 2.26-5.01 3.094-1.84.695-3.424 1.49-5.513 1.768-1.007 1.075-2.773 2.004-4.01 3.093-1.375.912-1.96 1.35-2.004 3.537-1.02.725-1.71 2.15-1.503 2.65 2.028.92 3.704 1.297 6.515 1.327 2.677.028 4.556.542 7.015 0 2.506-.655 3.507-1.113 6.014-1.767 1.278-1.47 2.24-2.454 4.008-3.536.956-1.238 2.1-2.38 4.01-3.092 1.43-1.147 3.544-2.414 5.01-3.094.896-1.106 2.644-2.283 4.01-3.093 1.003-1.498 1.29-1.747 2.004-4.418zM298.382 354.933v-15.3c-2.327-1.402-2.676-2.24-3.508-5.1-1.235-2.04-2.18-3.323-3.007-5.102-1.16-1.24-2.117-2.847-2.506-5.1-.956-1.888-1.55-3.787-3.507-4.59-1.772-.392-4.084-.51-6.514-.51-3.32.125-3.008.72-3.008 4.08.233 2.613 1.052 3.296 2.004 5.61.737 1.583 1.536 3.208 2.506 4.59.75 1.69 1.926 3.867 3.007 5.1.877 1.877 2.138 3.577 2.505 5.613 1.373 1.773 2.322 3.325 3.507 4.59.982 2.085 1.72 3.264 3.508 4.08 1.023 1.56 2.75 1.688 5.012 2.04zM274.33 346.775h.5c-1.4 0-.656.064 2.005-1.02.71-1.443.5-4.4.5-6.63 0-2.904-.47-4.14-1.002-6.12-.91-2.216-1.655-3.254-2.004-5.61-.75-1.612-1.505-3.235-2.006-5.102-.9-1.35-1.544-3.383-2.004-5.1-1.692-.975-3.253-1.954-5.01-2.55-1.595-.768-3.08-1.913-5.012-2.55-2.514.468-2.798 1.31-3.008 4.08-.577 2.057.215 3.917 1.003 5.61.828 2.013 1.322 4.054 2.506 5.61.72 2.29 1.457 3.087 1.502 5.61.863 1.503 1.223 3.713 2.005 5.61 1.006 2.37 1.943 3.392 3.507 5.102 2.14 1.48 2.875 2.103 6.515 3.06zM254.283 340.14c0-.243 1.592-1.246 2.506-2.55.748-1.524.655-4.624 0-6.63-.95-2.39-1.987-4.18-2.507-6.12-.528-1.613-.5-4.28-.5-6.63-.458-2.143-1.21-3.727-2.006-6.12-.647-1.65-1.91-3.71-2.505-5.612-.782-.75-1.665-2.294-2.506-3.06-.98-.816-1.014-1.02-3.006-1.02-2.664.1-4.004.35-5.513 2.04-.528 1.614-.5 4.28-.5 6.63.032 2.81.29 4.14 1.502 6.122.885 2.143 2.742 4.23 4.01 6.12 1.037 1.79 1.698 3.492 3.005 4.59.34 2.298 1.19 3.35 2.005 5.1.34 2.298 1.19 3.35 2.004 5.1 1.31.15.7.475 1.503 1.02l-1.503-1.02c1.31.15.7.475 4.01 2.04zM234.238 324.842c.306-.702 2.166-3.432 2.505-5.1-.034-2.894-.365-4.868-2.005-6.63-.406-1.786-1.39-4.482-2.004-6.122 0-2.352.028-5.017-.5-6.63 0-2.68-.365-4.29-1.004-6.122-1.13-1.693-2.35-2.19-5.01-3.06-2.156-.73-3.646-.204-6.014.51v7.14c.03 2.7.505 4.628 1.503 6.122.814 1.75 1.6 3 2.505 5.1.097 2.772.82 4.205 1.002 6.63.197 2.61.438 3.96 2.004 5.61 2.135 1.028 2.786 2.02 4.512 2.552l-4.51-2.55c2.133 1.026 2.784 2.018 7.016 2.55zM216.203 313.62v-.51c0 1.427-.06.67 1.003-2.04.542-2.21.5-4.644.5-7.14-.154-2.055-.447-4.43-1-6.12-.46-2.61-.984-4.245-1.505-6.63-.357-2.072-1.735-4.36-2.505-6.122-.49-1.5-.993-4.63-1.503-6.12-.36-1.907-1.26-2.507-3.007-3.06-1.372-.7-4.64-.7-6.014 0-1.473.52-1.47 1.706-2.002 3.06-.186 2.64-.627 4.59 0 7.14.847 1.476 1.744 3.042 2.505 4.59.985 1.81 1.972 4.527 3.007 6.122.754 2.59 1.033 3.786 2.505 6.12.542 1.653 1.396 3.64 2.506 5.1.714 1.816 1.755 3.102 2.507 5.1 1.352 0 .338-.032 3.006.51z"/> + <path d="M319.117 368.007h-8.288c-1.273 1.23-1.716 1.938-3.926 2.22-1.115.984-2.172 1.893-3.926 2.22-1.544.342-3.556.444-5.672.444-2.585-.03-3.474.082-3.926-2.22.04-2.287.147-2.415 2.182-2.663 1.09-.916 2.914-1.35 4.8-1.776 1.44-.52 3.202-.978 4.797-1.332 1.547-.56 3.023-1.13 4.363-1.776-.334-1.355-1.41-1.058-2.618-.443-1.567 0-3.436.12-4.363-.446-1.09-1.646-1.68-2.186-4.363-2.22-2.547-.03-2.98-.71-5.235-.888-2.158-.026-3.666-.355-5.235-.888-2.304-.167-3.85-.524-5.67-1.332-.586-.595.802-.718 1.743-.888 1.29-.893 2.655-1.25 4.8-1.332h6.107c2.238 0 3.96.366 6.108.444 1.75.617 3.59.94 4.798 1.776 1.58.536 2.573 1.478 3.49 2.664 1.535.427 3.08.952 4.8 1.332 2.01 0 4.29-.024 5.67.445 1 1.694.21 4.472-.436 6.66z"/> + <g> + <path d="M436.833 311.513l.5-.51c-1.137 1.157-.588.733.502-2.04.107-2.94.806-3.414 2.505-4.59 1.993-.676 2.845-1.543 3.508-3.57 1.274-1.072 2.233-2.504 3.007-4.08 1.377-.954 2.572-2.17 3.508-3.572 1.377-.952 2.57-2.167 3.508-3.57 1.905-.676 3.162-2.054 5.513-3.06 1.324-1.283 2.567-1.917 4.51-3.06 2.176-1.06 2.3-1.827 5.012-2.04.83.93 2.143.564 2.506 2.04-.11 3.023-.7 3.657-2.004 6.12-.1 2.787-.837 4.098-2.005 6.122-1.422 1.014-2.517 2.815-4.008 4.08-1.59 1.1-2.224 2.27-4.51 3.57-1.194 1.52-3.19 2.336-5.01 3.57-2.243.88-4.08 1.56-5.513 2.55-2.013.482-3.386 1.257-5.012 2.04-2.406.23-3.385.504-6.515 0zM426.307 325.79l.5-.51c-1.19 1.21-.622.716 1.003-2.04 1.853-1.786 2.254-3.153 5.01-3.57 1.474-.6 3.864-.97 5.514-1.53 2.853 0 4.16-.31 6.515-1.02 1.682-.468 3.81-1.3 5.51-2.04 2.016-.306 4.103-1.108 6.015-1.53h7.015c2.25.538 3.518.562 4.01 3.06-1.028 1.265-2.385 2.37-3.51 3.57-.632 2.24-2.16 2.774-3.506 4.08-2.32.817-2.792 1.427-5.513 1.53-2.306.783-3.983.99-6.514 1.02-2.684 0-4.614.554-7.015 1.02-2 .275-3.96.51-6.514.51-2.177 0-4.55-.013-6.014-.51-3.158-2.57-2.505-3.13-2.505.51l-1.003 1.02M409.27 333.44h.5c-1.35 0-.664.033 2.006-.51 2.5-.727 3.92-1.433 6.515-1.53 1.543-.918 3.436-1.02 6.015-1.02h7.015c2.48.194 3.533.825 6.014 1.02 1.317.784 3.933 1.428 5.512 2.04 1.41.975 2.613 2.188 4.51 3.06-.437 2.534-1.82 3.488-3.508 4.59-1.695.69-3.44 1.343-6.013 1.53-2.462.094-3.79.51-6.515.51-2.553 0-4.515-.234-6.515-.51-1.663-.8-3.078-1.642-5.512-2.04-1.213-1.07-2.99-1.817-4.51-2.55-1.346-.648-3.177-1.247-4.51-2.04l4.51 2.04c-1.346-.648-3.177-1.247-5.512-4.59zM384.844 345.303v-.434c0 1.213-.062.568 1.002-1.738 1.855-.847 4.08-1.446 5.513-2.172 2.19 0 5.096-.18 6.514.435 2.53.026 4.208.202 6.515.868 2.198.288 3.465.954 5.01 1.737 1.745.817 4.274 1.867 6.515 2.606 1.98 1.197 2.65 1.9 5.01 3.04 1.487 1.413 3.008 2.26 4.01 3.476.444 1.466-.03 3.195-2.005 3.91-1.25.893-3.168 1.36-5.01 1.736-2.34-.075-4.406-.356-6.015-1.303-2.483-.285-3.958-.916-6.013-1.303-1.76-.54-3.443-1.06-5.513-1.303-1.434-.844-3.976-1.57-5.513-2.173-2.518-.883-4.126-2.05-6.014-3.04-.9-.903-2.1-1.877-3.507-2.172l3.507 2.172c-.9-.903-2.1-1.877-4.01-4.344zM365.67 355.033c.094-.022 2.332-.906 4.01-.906 1.485-.786 3.89-.944 6.013-1.813 2.74 0 4.603.278 6.014 1.36 2.083.254 3.945.807 5.512 1.812 1.95.415 3.72.803 5.512 1.812 2.417.918 3.482 1.778 5.01 2.72 1.033 1.128 3.26 1.76 4.51 2.718 1.123 1.228 1.12 2.853.502 4.53-1.283.715-3.476 1.424-5.01 2.267-2.24.36-4.524.452-7.017.452-2.225-.154-4.102-.492-5.512-1.36-2.52-1.097-3.192-1.908-5.01-3.17-1.054-1.153-2.815-2.08-4.512-2.72-1.278-1-2.83-1.734-5.01-2.265-1.22-1.052-2.345-2.07-3.51-3.172-1.4 0-.437.14-1.502-2.265zM344.058 359.492c.12-.016 2.83-.442 4.51-.442 1.418-.625 4.325-.442 6.515-.442 2.76.09 3.615.593 5.012 1.767 1.42.77 3.135 1.464 4.51 2.652 1.756.95 3.34 2.26 5.01 3.094 1.84.695 3.424 1.49 5.513 1.768 1.007 1.075 2.773 2.004 4.01 3.093 1.375.912 1.96 1.35 2.004 3.537 1.02.725 1.71 2.15 1.503 2.65-2.028.92-3.704 1.297-6.515 1.327-2.677.028-4.556.542-7.015 0-2.506-.655-3.507-1.113-6.014-1.767-1.278-1.47-2.24-2.454-4.008-3.536-.956-1.238-2.1-2.38-4.01-3.092-1.43-1.147-3.544-2.414-5.01-3.094-.896-1.106-2.644-2.283-4.01-3.093-1.003-1.498-1.29-1.747-2.004-4.418zM341.618 355.373v-15.3c2.327-1.402 2.676-2.24 3.508-5.1 1.235-2.04 2.18-3.323 3.007-5.102 1.16-1.24 2.117-2.847 2.506-5.1.956-1.888 1.55-3.787 3.507-4.59 1.772-.392 4.084-.51 6.514-.51 3.32.125 3.008.72 3.008 4.08-.233 2.613-1.052 3.296-2.004 5.61-.737 1.583-1.536 3.208-2.506 4.59-.75 1.69-1.926 3.867-3.007 5.1-.877 1.877-2.138 3.577-2.505 5.613-1.373 1.773-2.322 3.325-3.507 4.59-.982 2.085-1.72 3.264-3.508 4.08-1.023 1.56-2.75 1.688-5.012 2.04zM365.67 347.215h-.5c1.4 0 .656.064-2.005-1.02-.71-1.443-.5-4.4-.5-6.63 0-2.904.47-4.14 1.002-6.12.91-2.216 1.655-3.254 2.004-5.61.75-1.612 1.505-3.235 2.006-5.102.9-1.35 1.544-3.383 2.004-5.1 1.692-.975 3.253-1.954 5.01-2.55 1.595-.768 3.08-1.913 5.012-2.55 2.514.468 2.798 1.31 3.008 4.08.577 2.057-.215 3.917-1.003 5.61-.828 2.013-1.322 4.054-2.506 5.61-.72 2.29-1.457 3.087-1.502 5.61-.863 1.503-1.223 3.713-2.005 5.61-1.006 2.37-1.943 3.392-3.507 5.102-2.14 1.48-2.875 2.103-6.515 3.06zM385.717 340.58c0-.243-1.592-1.246-2.506-2.55-.748-1.524-.655-4.624 0-6.63.95-2.39 1.987-4.18 2.507-6.12.528-1.613.5-4.28.5-6.63.458-2.143 1.21-3.727 2.006-6.12.647-1.65 1.91-3.71 2.505-5.612.782-.75 1.665-2.294 2.506-3.06.98-.816 1.014-1.02 3.006-1.02 2.664.1 4.004.35 5.513 2.04.528 1.614.5 4.28.5 6.63-.032 2.81-.29 4.14-1.502 6.122-.885 2.143-2.742 4.23-4.01 6.12-1.037 1.79-1.698 3.492-3.005 4.59-.34 2.298-1.19 3.35-2.005 5.1-.34 2.298-1.19 3.35-2.004 5.1-1.31.15-.7.475-1.503 1.02l1.503-1.02c-1.31.15-.7.475-4.01 2.04zM405.762 325.282c-.306-.702-2.166-3.432-2.505-5.1.034-2.894.365-4.868 2.005-6.63.406-1.786 1.39-4.482 2.004-6.122 0-2.352-.028-5.017.5-6.63 0-2.68.365-4.29 1.004-6.122 1.13-1.693 2.35-2.19 5.01-3.06 2.156-.73 3.646-.204 6.014.51v7.14c-.03 2.7-.505 4.628-1.503 6.122-.814 1.75-1.6 3-2.505 5.1-.097 2.772-.82 4.205-1.002 6.63-.197 2.61-.438 3.96-2.004 5.61-2.135 1.028-2.786 2.02-4.512 2.552l4.51-2.55c-2.133 1.026-2.784 2.018-7.016 2.55zM423.797 314.06v-.51c0 1.427.06.67-1.003-2.04-.542-2.21-.5-4.644-.5-7.14.154-2.055.447-4.43 1-6.12.46-2.61.984-4.245 1.505-6.63.357-2.072 1.735-4.36 2.505-6.122.49-1.5.993-4.63 1.503-6.12.36-1.907 1.26-2.507 3.007-3.06 1.372-.7 4.64-.7 6.014 0 1.473.52 1.47 1.706 2.002 3.06.186 2.64.627 4.59 0 7.14-.847 1.476-1.744 3.042-2.505 4.59-.985 1.81-1.972 4.527-3.007 6.122-.754 2.59-1.033 3.786-2.505 6.12-.542 1.653-1.396 3.64-2.506 5.1-.714 1.816-1.755 3.102-2.507 5.1-1.352 0-.338-.032-3.006.51z"/> + <path d="M320.883 368.447h8.288c1.273 1.23 1.716 1.938 3.926 2.22 1.115.984 2.172 1.893 3.926 2.22 1.544.342 3.556.444 5.672.444 2.585-.03 3.474.082 3.926-2.22-.04-2.287-.147-2.415-2.182-2.663-1.09-.916-2.914-1.35-4.8-1.776-1.44-.52-3.202-.978-4.797-1.332-1.547-.56-3.023-1.13-4.363-1.776.334-1.355 1.41-1.058 2.618-.443 1.567 0 3.436.12 4.363-.446 1.09-1.646 1.68-2.186 4.363-2.22 2.547-.03 2.98-.71 5.235-.888 2.158-.026 3.666-.355 5.235-.888 2.304-.167 3.85-.524 5.67-1.332.586-.595-.802-.718-1.743-.888-1.29-.893-2.655-1.25-4.8-1.332h-6.107c-2.238 0-3.96.366-6.108.444-1.75.617-3.59.94-4.798 1.776-1.58.536-2.573 1.478-3.49 2.664-1.535.427-3.08.952-4.8 1.332-2.01 0-4.29-.024-5.67.445-1 1.694-.21 4.472.436 6.66z"/> + </g> + </g> +</svg> diff --git a/s/flag/cz.svg b/s/flag/cz.svg new file mode 100755 index 0000000..a704a88 --- /dev/null +++ b/s/flag/cz.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-74 0h682.67v512H-74z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 69.38 0)" stroke-width="1pt"> + <path fill="#e80000" d="M-74 0h768v512H-74z"/> + <path fill="#fff" d="M-74 0h768v256H-74z"/> + <path d="M-74 0l382.73 255.67L-74 511.01V0z" fill="#00006f"/> + </g> +</svg> diff --git a/s/flag/de.svg b/s/flag/de.svg new file mode 100755 index 0000000..431c0f3 --- /dev/null +++ b/s/flag/de.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#ffe600" d="M0 320h640v160.002H0z"/> + <path d="M0 0h640v160H0z"/> + <path fill="red" d="M0 160h640v160H0z"/> + </g> +</svg> diff --git a/s/flag/dj.svg b/s/flag/dj.svg new file mode 100755 index 0000000..b69664e --- /dev/null +++ b/s/flag/dj.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-40 0h682.67v512H-40z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" fill-rule="evenodd" transform="matrix(.94 0 0 .94 37.5 0)"> + <path fill="#0c0" d="M-40 0h768v512H-40z"/> + <path fill="#69f" d="M-40 0h768v256H-40z"/> + <path d="M-40 0l382.73 255.67L-40 511.01V0z" fill="#fffefe"/> + <path d="M119.8 292.07l-30.82-22.18-30.67 22.4 11.407-36.41-30.613-22.48 37.874-.31 11.747-36.3 12 36.216 37.874.048-30.458 22.695 11.66 36.328z" fill="red"/> + </g> +</svg> diff --git a/s/flag/dk.svg b/s/flag/dk.svg new file mode 100755 index 0000000..0aaf086 --- /dev/null +++ b/s/flag/dk.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-64 0h682.67v512H-64z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 60 0)" stroke-width="1pt"> + <path fill="#fb1b22" d="M-64 0h676.57v512H-64z"/> + <path fill="#fff" d="M-64 219.43h676.57v73.143H-64z"/> + <path fill="#fff" d="M155.43 0h73.143v512H155.43z"/> + </g> +</svg> diff --git a/s/flag/dm.svg b/s/flag/dm.svg new file mode 100755 index 0000000..0501a8c --- /dev/null +++ b/s/flag/dm.svg @@ -0,0 +1,152 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-85.01 0h682.67v512H-85.01z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 79.7 0)"> + <path fill="#108c00" d="M-258.27 0h1027.5v512h-1027.5z"/> + <path fill="#ffd600" d="M-260 178.16H772.6v50.162H-260z"/> + <path fill="#ffd600" d="M181.08 0h48.432v512H181.08z"/> + <path d="M227.78 0h48.432v512H227.78z"/> + <path d="M-260 226.59H772.6v50.162H-260z"/> + <path fill="#fff" d="M-260 276.76H772.6v50.162H-260z"/> + <path fill="#fff" d="M276.22 0h48.432v512H276.22z"/> + <rect transform="scale(-1)" ry="137.51" width="273.75" y="-393.87" x="-394.56" height="275.03" fill="#e72910"/> + <g stroke-width="1pt"> + <path d="M250.51 136.92c0-.258 5.61-15.997 5.61-15.997l5.098 15.74s17.08.515 17.08.257-13.51 10.32-13.51 10.32 6.373 18.062 6.118 17.546c-.255-.516-14.787-10.837-14.787-10.837s-14.787 10.32-14.532 10.32 5.608-17.03 5.608-17.03l-13.256-10.063 16.57-.258z"/> + <path d="M251.274 137.72c0-.224 4.857-13.855 4.857-13.855l4.417 13.63s14.794.448 14.794.225-11.7 8.938-11.7 8.938 5.52 15.643 5.298 15.196c-.22-.447-12.807-9.386-12.807-9.386s-12.805 8.94-12.584 8.94 4.857-14.75 4.857-14.75l-11.48-8.716 14.35-.223z" fill="#ffe700"/> + <path d="M253.328 139.987c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.747 5.154-6.747 5.154 3.182 9.02 3.055 8.762c-.127-.257-7.384-5.41-7.384-5.41s-7.385 5.153-7.257 5.153 2.8-8.504 2.8-8.504l-6.62-5.025 8.275-.13z" fill="#108c00"/> + </g> + <g stroke-width="1pt"> + <path d="M356.875 211.8c0-.258 5.608-15.997 5.608-15.997l5.1 15.74s17.08.515 17.08.257-13.512 10.32-13.512 10.32 6.375 18.062 6.12 17.546c-.255-.516-14.787-10.837-14.787-10.837s-14.786 10.32-14.53 10.32 5.607-17.03 5.607-17.03l-13.256-10.063 16.57-.258z"/> + <path d="M357.638 212.6c0-.224 4.857-13.855 4.857-13.855l4.416 13.63s14.795.448 14.795.225-11.702 8.938-11.702 8.938 5.52 15.643 5.3 15.196c-.222-.447-12.808-9.386-12.808-9.386s-12.806 8.94-12.585 8.94 4.857-14.75 4.857-14.75l-11.48-8.716 14.35-.223z" fill="#ffe700"/> + <path d="M359.692 214.867c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.748 5.154-6.748 5.154 3.182 9.02 3.055 8.762c-.127-.257-7.384-5.41-7.384-5.41s-7.384 5.153-7.256 5.153 2.8-8.504 2.8-8.504l-6.62-5.025 8.275-.13z" fill="#108c00"/> + </g> + <g stroke-width="1pt"> + <path d="M325.875 330.65c0-.258 5.608-15.997 5.608-15.997l5.1 15.74s17.08.515 17.08.257-13.512 10.32-13.512 10.32 6.375 18.062 6.12 17.546c-.255-.516-14.787-10.837-14.787-10.837S316.697 358 316.953 358s5.607-17.03 5.607-17.03l-13.256-10.063 16.57-.258z"/> + <path d="M326.638 331.45c0-.224 4.857-13.855 4.857-13.855l4.416 13.63s14.795.448 14.795.225-11.702 8.938-11.702 8.938 5.52 15.643 5.3 15.196c-.222-.447-12.808-9.386-12.808-9.386s-12.806 8.94-12.585 8.94 4.857-14.75 4.857-14.75l-11.48-8.716 14.35-.223z" fill="#ffe700"/> + <path d="M328.692 333.717c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.748 5.154-6.748 5.154 3.182 9.02 3.055 8.762c-.127-.257-7.384-5.41-7.384-5.41s-7.384 5.153-7.256 5.153 2.8-8.504 2.8-8.504l-6.62-5.025 8.275-.13z" fill="#108c00"/> + </g> + <g stroke-width="1pt"> + <path d="M177.167 330.65c0-.258 5.608-15.997 5.608-15.997l5.1 15.74s17.08.515 17.08.257-13.512 10.32-13.512 10.32 6.374 18.062 6.12 17.546c-.256-.516-14.788-10.837-14.788-10.837S167.99 358 168.245 358s5.607-17.03 5.607-17.03l-13.256-10.063 16.57-.258z"/> + <path d="M177.93 331.45c0-.224 4.857-13.855 4.857-13.855l4.416 13.63s14.794.448 14.794.225-11.702 8.938-11.702 8.938 5.52 15.643 5.3 15.196c-.222-.447-12.808-9.386-12.808-9.386s-12.806 8.94-12.585 8.94 4.857-14.75 4.857-14.75l-11.482-8.716 14.352-.223z" fill="#ffe700"/> + <path d="M179.984 333.717c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.746 5.154-6.746 5.154 3.182 9.02 3.055 8.762c-.128-.257-7.385-5.41-7.385-5.41s-7.384 5.153-7.256 5.153 2.8-8.504 2.8-8.504l-6.62-5.025 8.274-.13z" fill="#108c00"/> + </g> + <g stroke-width="1pt"> + <path d="M150.01 208.74c0-.258 5.608-15.997 5.608-15.997l5.1 15.74s17.08.515 17.08.257-13.512 10.32-13.512 10.32 6.374 18.062 6.12 17.546c-.256-.516-14.788-10.837-14.788-10.837s-14.786 10.32-14.53 10.32 5.607-17.03 5.607-17.03l-13.256-10.063 16.57-.258z"/> + <path d="M150.773 209.54c0-.224 4.857-13.855 4.857-13.855l4.416 13.63s14.794.448 14.794.225-11.702 8.938-11.702 8.938 5.52 15.643 5.3 15.196c-.222-.447-12.808-9.386-12.808-9.386s-12.806 8.94-12.585 8.94 4.857-14.75 4.857-14.75l-11.48-8.716 14.35-.223z" fill="#ffe700"/> + <path d="M152.827 211.807c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.747 5.154-6.747 5.154 3.182 9.02 3.055 8.762c-.127-.257-7.384-5.41-7.384-5.41s-7.384 5.153-7.256 5.153 2.8-8.504 2.8-8.504l-6.62-5.025 8.275-.13z" fill="#108c00"/> + </g> + <g stroke-width="1pt"> + <path d="M324.615 174.14c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546c.255.516 14.787 10.837 14.787 10.837s14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"/> + <path d="M323.852 173.34c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z" fill="#ffe700"/> + <path d="M321.798 171.073c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762c.127.257 7.384 5.41 7.384 5.41s7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025-8.275.13z" fill="#108c00"/> + </g> + <g stroke-width="1pt"> + <path d="M367.315 290.28c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546c.255.516 14.787 10.837 14.787 10.837s14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"/> + <path d="M366.552 289.48c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z" fill="#ffe700"/> + <path d="M364.498 287.213c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762c.127.257 7.384 5.41 7.384 5.41s7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025-8.275.13z" fill="#108c00"/> + </g> + <g stroke-width="1pt"> + <path d="M261.425 375.25c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546c.255.516 14.787 10.837 14.787 10.837s14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"/> + <path d="M260.662 374.45c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z" fill="#ffe700"/> + <path d="M258.608 372.183c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762c.127.257 7.384 5.41 7.384 5.41s7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025-8.275.13z" fill="#108c00"/> + </g> + <g stroke-width="1pt"> + <path d="M161.935 290.28c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546c.255.516 14.787 10.837 14.787 10.837s14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"/> + <path d="M161.172 289.48c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z" fill="#ffe700"/> + <path d="M159.118 287.213c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762c.127.257 7.384 5.41 7.384 5.41s7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025-8.275.13z" fill="#108c00"/> + </g> + <g stroke-width="1pt"> + <path d="M198.655 175.85c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546c.255.516 14.787 10.837 14.787 10.837s14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"/> + <path d="M197.892 175.05c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z" fill="#ffe700"/> + <path d="M195.838 172.783c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762c.127.257 7.384 5.41 7.384 5.41s7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025-8.275.13z" fill="#108c00"/> + </g> + <g transform="matrix(1.04 0 0 1.04 -250.6 359.43)"> + <g transform="matrix(.16 -.02 0 .18 429.84 -215.63)" stroke="#000" stroke-width="2.5" fill="#009200"> + <ellipse rx="30.805" ry="189.82" transform="matrix(1.4 0 0 1 -534.29 263.72)" cy="586.13" cx="680.21"/> + <ellipse rx="30.805" ry="189.82" transform="matrix(1.5 0 0 1 -547.22 267.05)" cy="586.13" cx="680.21"/> + <ellipse rx="30.805" ry="189.82" transform="matrix(1.2 0 0 1.1 -364.93 214.1)" cy="586.13" cx="680.21"/> + </g> + <g stroke="#000" transform="translate(72.86 -9.8)"> + <path d="M238.34 971.79c29.972-1.665 16.65-16.652 31.637-24.977 14.986-8.326 36.633-3.33 43.293 6.66 6.66 9.99 1.666 19.982 9.99 19.982 8.327 0 234.56-12.675 242.88-4.35 8.327 8.326 9.992 24.978 1.666 31.635-8.325 6.66-294.5 14.34-304.49 7.68-9.99-6.66-24.977-34.965-24.977-36.63z" transform="matrix(.2 0 0 .2 340.86 -247.31)" stroke-width="2.505" fill="#a95600"/> + <path d="M529.59 405.46c0 39.983 45.562 27.88 46.81 61.25-.724 35.407-76.706 3.466-78.635-61.25 1.93-64.716 75.107-97.93 76.705-61.01 1.246 30.685-44.88 21.027-44.88 61.01z" transform="matrix(.15 0 0 .1 340.42 -81.69)" stroke-width="3.853" fill="#ff0"/> + <path d="M529.59 405.46c0 39.983 45.562 27.88 46.81 61.25-.724 35.407-76.706 3.466-78.635-61.25 1.93-64.716 75.107-97.93 76.705-61.01 1.246 30.685-44.88 21.027-44.88 61.01z" transform="matrix(.15 0 0 .1 344.42 -81.64)" stroke-width="3.853" fill="#ff0"/> + <path d="M529.59 405.46c0 39.983 45.562 27.88 46.81 61.25-.724 35.407-76.706 3.466-78.635-61.25 1.93-64.716 75.107-97.93 76.705-61.01 1.246 30.685-44.88 21.027-44.88 61.01z" transform="matrix(.15 0 0 .1 348.71 -81.8)" stroke-width="3.853" fill="#ff0"/> + <path d="M529.59 405.46c0 39.983 45.562 27.88 46.81 61.25-.724 35.407-76.706 3.466-78.635-61.25 1.93-64.716 75.107-97.93 76.705-61.01 1.246 30.685-44.88 21.027-44.88 61.01z" transform="matrix(.15 0 0 .1 352.71 -81.75)" stroke-width="3.853" fill="#ff0"/> + <ellipse rx="3.534" ry="3.403" transform="matrix(1.1 .02 -.02 1.15 -75.57 4.68)" cy="-41.086" cx="478.38" stroke-width=".399" fill="#a95600"/> + </g> + <g transform="rotate(-5.8 688.37 -625.22)" stroke="#000" stroke-width="2.5" fill="#009200"> + <ellipse rx="20.814" ry="24.144" transform="matrix(.17 0 0 .32 369.8 -361.65)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.17 0 0 .32 364.04 -362.7)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.17 0 0 .32 360.64 -370.55)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .35 369.3 -399.35)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .33 377.41 -379.07)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .33 373.22 -382.21)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .33 367.99 -386.66)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .33 363.01 -389.54)" cy="905" cx="427.11"/> + </g> + <path d="M173.17 346.35s-54.198 64.893-21.252 208.82c33.958 144.59 178.96 189.78 178.96 189.78s26.496-47.423 1.726-164.04c-39.96-169.85-116.14-234.56-116.14-234.56H173.17z" transform="matrix(.18 .03 -.03 .18 461.79 -208.61)" stroke="#000" stroke-width="2.5" fill="#804bff"/> + <g transform="rotate(4.47 180.98 769.89)" stroke="#000" stroke-width="2.5" fill="#009200"> + <ellipse rx="20.814" ry="24.144" transform="matrix(.17 0 0 .32 369.8 -361.65)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.17 0 0 .32 364.04 -362.7)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.17 0 0 .32 360.64 -370.55)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .35 369.3 -399.35)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .33 377.41 -379.07)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .33 373.22 -382.21)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .33 367.99 -386.66)" cy="905" cx="427.11"/> + <ellipse rx="20.814" ry="24.144" transform="matrix(.16 0 0 .33 363.01 -389.54)" cy="905" cx="427.11"/> + </g> + <ellipse rx="58.28" ry="186.49" stroke="#000" transform="matrix(.16 -.06 .06 .15 369.61 -145.05)" cy="606.11" cx="624.42" stroke-width="1pt" fill="#c90000"/> + <g stroke="#000" fill="#009200" transform="rotate(1.02 242.4 -1957.8)"> + <ellipse rx="10.823" ry="12.905" transform="matrix(.4 0 0 .3 445.07 -230.53)" cy="356.75" cx="218.13" stroke-width="1.464"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.35 0 0 .3 457.17 -235.92)" cy="356.75" cx="218.13" stroke-width="1.546"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.35 0 0 .3 452 -235.92)" cy="356.75" cx="218.13" stroke-width="1.546"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.37 0 0 .27 449.48 -233.46)" cy="356.75" cx="218.13" stroke-width="1.56"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.37 0 0 .27 448.95 -237.93)" cy="356.75" cx="218.13" stroke-width="1.56"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.35 0 0 .3 447.01 -238.85)" cy="356.75" cx="218.13" stroke-width="1.546"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.35 0 0 .3 448.08 -241.58)" cy="356.75" cx="218.13" stroke-width="1.562"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.4 0 0 .3 432.77 -243.48)" cy="356.75" cx="218.13" stroke-width="1.464"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.37 0 0 .27 445.92 -243.48)" cy="356.75" cx="218.13" stroke-width="1.56"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.35 0 0 .3 444.16 -246.97)" cy="356.75" cx="218.13" stroke-width="1.562"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.35 0 0 .3 436.14 -243.17)" cy="356.75" cx="218.13" stroke-width="1.546"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.35 0 0 .3 437.42 -243.88)" cy="356.75" cx="218.13" stroke-width="1.562"/> + <ellipse rx="10.823" ry="12.905" transform="matrix(.35 0 0 .3 438.99 -247.02)" cy="356.75" cx="218.13" stroke-width="1.562"/> + </g> + <g stroke="#000" fill="#009200" transform="matrix(.18 0 0 .2 420.99 -216.8)"> + <ellipse rx="67.438" ry="205.64" transform="matrix(.98 -.3 .36 .87 -245.81 324.4)" cy="564.48" cx="528.68" stroke-width="2.545"/> + <ellipse rx="13.321" ry="40.796" transform="rotate(-23.38 630.52 660.85)" cy="646.07" cx="528.68" stroke-width="2.5"/> + <path d="M139.87 643.99c0 57.677-18.755 86.17-34.55 110.32 7.516-32.47 12.904-52.637 12.904-110.31 0-57.677 29.58-85.337 40.38-101.99-4.187 16.652-18.734 44.312-18.734 101.99z" transform="matrix(1.88 -.46 .95 1.18 -352.26 -10.02)" stroke-width="1.533"/> + <path d="M139.87 643.99c0 57.677-18.755 86.17-34.55 110.32 7.516-32.47 12.904-52.637 12.904-110.31 0-57.677 29.58-85.337 40.38-101.99-4.187 16.652-18.734 44.312-18.734 101.99z" transform="matrix(1.88 -.46 .95 1.18 -348.42 44.06)" stroke-width="1.533"/> + <path d="M139.87 643.99c0 57.677-18.755 86.17-34.55 110.32 7.516-32.47 12.904-52.637 12.904-110.31 0-57.677 29.58-85.337 40.38-101.99-4.187 16.652-18.734 44.312-18.734 101.99z" transform="matrix(1.87 -.5 .98 1.16 -361.92 105.78)" stroke-width="1.533"/> + <ellipse rx="13.321" ry="40.796" transform="matrix(1.8 -.4 .7 1.64 -915.63 -221.01)" cy="646.07" cx="528.68" stroke-width="1.389"/> + <ellipse rx="13.321" ry="40.796" transform="matrix(1.63 -.23 .54 1.35 -739.49 -91.78)" cy="646.07" cx="528.68" stroke-width="1.64"/> + <ellipse rx="13.321" ry="40.796" transform="matrix(1.63 -.2 .5 1.36 -750.62 -91.83)" cy="646.07" cx="528.68" stroke-width="1.64"/> + <ellipse rx="13.321" ry="40.796" transform="matrix(1.3 -.2 .47 1 -531.06 47.57)" cy="646.07" cx="528.68" stroke-width="2.097"/> + <ellipse rx="13.321" ry="40.796" transform="matrix(1.33 -.13 .4 1.03 -517.87 12.21)" cy="646.07" cx="528.68" stroke-width="2.097"/> + <path d="M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61-8.272 0-14.986-27.604-14.986-61.61" transform="matrix(1.03 -.5 .46 1.18 12.77 -14.52)" stroke-width="2.086"/> + <ellipse rx="13.321" ry="40.796" transform="matrix(1.33 -.13 .4 1.03 -519.53 -34.41)" cy="646.07" cx="528.68" stroke-width="2.097"/> + <ellipse rx="13.321" ry="40.796" transform="matrix(1.33 -.1 .38 1.04 -533.98 -40.12)" cy="646.07" cx="528.68" stroke-width="2.097"/> + <path d="M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61-8.272 0-14.986-27.604-14.986-61.61" transform="matrix(.67 -.47 .46 .8 39.49 143.28)" stroke-width="2.88"/> + <path d="M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61-8.272 0-14.986-27.604-14.986-61.61" transform="matrix(.67 -.47 .46 .8 51.14 125.79)" stroke-width="2.88"/> + <path d="M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61-8.272 0-14.986-27.604-14.986-61.61" transform="matrix(.94 -.64 .64 1.1 -40.2 -10.74)" stroke-width="2.086"/> + <path d="M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61-8.272 0-14.986-27.604-14.986-61.61" transform="matrix(.67 -.52 .46 .88 68.63 71.18)" stroke-width="2.742"/> + </g> + <g stroke="#000" stroke-width="2.5" fill="#804bff"> + <path d="M276.27 345.41c-12.278 9.174.41 25.144 12.022 30.68 13.06 7.67 86.603 58.184 136.32 11.998-40.795.833-118.66-63.183-148.34-42.678z" transform="matrix(.16 0 0 .22 457.95 -214.27)"/> + <path d="M276.27 345.41c-12.278 9.174.41 25.144 12.022 30.68 13.06 7.67 86.603 58.184 136.32 11.998-40.795.833-118.66-63.183-148.34-42.678z" transform="matrix(.16 0 0 .22 456.55 -220.15)"/> + <path d="M276.27 345.41c-12.278 9.174.41 25.144 12.022 30.68 13.06 7.67 86.603 58.184 136.32 11.998-40.795.833-118.66-63.183-148.34-42.678z" transform="matrix(.16 0 0 .22 454.77 -225.77)"/> + <path d="M276.27 345.41c-12.278 9.174.41 25.144 12.022 30.68 13.06 7.67 86.603 58.184 136.32 11.998-40.795.833-118.66-63.183-148.34-42.678z" transform="matrix(.16 0 0 .22 450.9 -232.2)"/> + </g> + <g transform="rotate(1.02 -589.59 681.63)"> + <path d="M211.17 247.3c21.773-12.065 56.618-9.75 79.734 11.165 19.36 16.943 45.307 75.194 70.322 92.834-20.227.018-31.298-5.77-42.24-15.18-28.768 15.44-38.128 16.723-63.89 15.63-35.882-1.333-62.46-17.653-68.18-40.603-6.165-21.804 4.926-52.498 24.254-63.847z" transform="matrix(.2 -.04 .05 .18 407.8 -213.64)" stroke="#000" stroke-width="2.5" fill="#804bff"/> + <ellipse rx="14.154" ry="14.986" stroke="#000" transform="matrix(.25 0 0 .13 401.82 -215.18)" cy="323.04" cx="287.23" stroke-width="2.5" fill="red"/> + <ellipse rx="23.254" ry="15.895" stroke="#000" transform="matrix(.2 -.08 .07 .17 398.66 -208.06)" cy="348.26" cx="204.58" stroke-width="2.5" fill="#ff0"/> + <ellipse rx="5.828" ry="5.828" transform="matrix(.2 0 0 .2 411.29 -233.74)" cy="333.86" cx="283.9"/> + <path d="M516.8 260.29c4.425 18.107-6.674 43.083-33.133 52.61-26.775 13.172-46.08 41.83-55.64 88.016-47.245-103.27-23.108-148.28 20.6-160.35 37.376-14.363 60.42-13.37 68.173 19.72z" transform="matrix(.1 0 0 .08 417.85 -191.49)" stroke="#000" stroke-width="6.56" fill="#ff0"/> + <ellipse rx="4.71" ry="4.71" transform="matrix(.2 0 0 .2 418.69 -234.98)" cy="362.39" cx="198.98"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/do.svg b/s/flag/do.svg new file mode 100755 index 0000000..e5ba634 --- /dev/null +++ b/s/flag/do.svg @@ -0,0 +1,6748 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <desc> + The United States of America flag, produced by Daniel McRae + </desc> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-222.55-115.23H735.4v718.46h-957.95z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" transform="matrix(.67 0 0 .67 148.68 76.99)"> + <path fill-rule="evenodd" fill="#00319c" d="M322.04 328.99H768.5v273.89H322.04z"/> + <path fill-rule="evenodd" fill="#d62918" d="M-256.67 329.84h445.19v273.04h-445.19z"/> + <path fill-rule="evenodd" fill="#00319c" d="M-255.82-115.23h445.19v305.39h-445.19z"/> + <path fill-rule="evenodd" fill="#d62918" d="M324.6-112.67h443.04v305.7H324.6z"/> + <path fill-rule="evenodd" fill="#fff" d="M-256.41 190.12h1025.9v141.69h-1025.9z"/> + <path fill-rule="evenodd" fill="#fff" d="M187.42-113.73h138.27v716.96H187.42z"/> + <path fill="#cecece" d="M246.46 194.28l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M247.17 194.28l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M247.87 194.28l.703.67-.703-.67z"/> + <path fill="#848c9c" d="M252.79 194.28l.704.67-.704-.67z"/> + <path fill="#848ca5" d="M253.97 194.5l.47.223-.47-.223z"/> + <path fill="#848c9c" d="M254.9 194.28l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M259.83 194.28l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M260.53 194.28l.704.67-.704-.67z"/> + <path fill="#cecece" d="M261.24 194.28l.703.67-.703-.67z"/> + <path fill="#efefef" d="M241.54 194.95l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M242.24 194.95l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M242.94 194.95l.703.67-.703-.67z"/> + <path fill="#42425a" d="M243.65 194.95l.703.67-.703-.67z"/> + <path fill="#425a84" d="M244.35 194.95l.704.67-.704-.67z"/> + <path fill="#00184a" d="M245.52 195.17l.47.223-.47-.223z"/> + <path fill="#002984" d="M246.93 195.17l.47.223-.47-.223z"/> + <path fill="#003994" d="M235.73 201.47c-8.315.163-19.44.722-26.72 4.93-4.847 2.8-4.324 10.662 2.098 10.466v.67H209.7v.67l10.553-2.68v-.668h-4.22v-.67h4.923l-1.407-2.677 25.325-2.677-1.407-4.686c9.453-1.136 16.938-.302 26.03 2.01v.668l-5.63-1.34c.654 2.9 3.945 2.17 6.333 1.34l-7.034 1.34v.668l16.18 1.453 16.884 3.902v.67l-9.146-1.34v.67l11.256 3.347-2.11-2.008v-.67l2.814 3.348c4.464.185 7.817 1.192 10.552 4.685l-9.85-4.016 5.63 12.718h.703v-2.008h.702v2.008l6.33-1.34c-1.638-6.74-4.457-14.707-11.255-18.073.6-2.57-.006-3.685-2.11-5.356 2.61 5.14-1.745 7.274-5.628 3.347l-1.408 1.34 1.407-4.686-4.222 4.016.703-4.685h-.702l-.704 4.016-2.11-2.007-.704 2.008-11.256-1.338v-6.024l1.407 2.008h.705v-2.008l3.517 2.008h.704l14.07.67.703 5.354h.703l2.11-4.685c-8.132-3.426-17.9-4.513-26.733-4.686.46-4.552-4.547-5.375-8.44-5.936-6.717-.966-27.388-3.33-28.14 5.935z"/> + <path fill="#002984" d="M261 195.17l.47.223-.47-.223z"/> + <path fill="#00184a" d="M262.41 195.17l.47.223-.47-.223z"/> + <path fill="#314a7b" d="M263.35 194.95l.704.67-.704-.67z"/> + <path fill="#42425a" d="M264.05 194.95l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M264.75 194.95l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M265.46 194.95l.703.67-.703-.67z"/> + <path fill="#dedede" d="M266.16 194.95l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M239.43 195.62l.703.67-.703-.67z"/> + <path fill="#63636b" d="M240.13 195.62l.703.67-.703-.67z"/> + <path fill="#21315a" d="M240.83 195.62l.703.67-.703-.67z"/> + <path fill="#00215a" d="M241.54 195.62l.704.67-.704-.67z"/> + <path fill="#002984" d="M242.24 195.62l.703.67-.703-.67m23.215 0l.703.67-.703-.67z"/> + <path fill="#00216b" d="M266.16 195.62l.704.67-.704-.67z"/> + <path fill="#10295a" d="M266.86 195.62l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M267.57 195.62l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M268.27 195.62l.703.67-.703-.67z"/> + <path fill="#efefef" d="M237.32 196.29l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M238.02 196.29l.703.67-.703-.67z"/> + <path fill="#10214a" d="M238.72 196.29l.704.67-.704-.67z"/> + <path fill="#00216b" d="M239.43 196.29l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M246.46 196.29l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M247.17 196.29l.704.67-.704-.67z"/> + <path fill="#295284" d="M247.87 196.29l.703.67-.703-.67m1.407 0l.703.67-.703-.67zM253.5 196.29l.704.67-.704-.67z"/> + <path fill="#4a636b" d="M257.72 196.29l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M259.83 196.29l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M260.53 196.29l.704.67-.704-.67z"/> + <path fill="#002984" d="M268.27 196.29l.703.67-.703-.67z"/> + <path fill="#10295a" d="M268.97 196.29l.704.67-.704-.67z"/> + <path fill="#63636b" d="M269.68 196.29l.703.67-.703-.67z"/> + <path fill="#dedede" d="M270.38 196.29l.703.67-.703-.67z"/> + <path fill="#efefef" d="M235.91 196.96l-.703 1.34.703-1.34z"/> + <path fill="#8c8c8c" d="M236.61 196.96l.703.67-.703-.67z"/> + <path fill="#10295a" d="M237.32 196.96l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M241.54 196.96l.704.67-.704-.67z"/> + <path fill="#7b7b52" d="M242.24 196.96l.703.67-.703-.67z"/> + <path fill="#ad9431" d="M242.94 196.96l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M243.65 196.96l.703.67-.703-.67z"/> + <path fill="#395273" d="M244.35 196.96l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M246.46 196.96l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M247.87 196.96l.703.67-.703-.67z"/> + <path fill="#395273" d="M249.28 196.96l.703.67-.703-.67zM253.5 196.96l.704.67-.704-.67z"/> + <path fill="#9c8c42" d="M260.53 196.96l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M263.82 197.18l.47.223-.47-.223z"/> + <path fill="#295284" d="M264.75 196.96l.703.67-.703-.67z"/> + <path fill="#00184a" d="M270.38 196.96l.703.67-.703-.67z"/> + <path fill="#63636b" d="M271.08 196.96l.703.67-.703-.67z"/> + <path fill="#dedede" d="M271.79 196.96l.704.67-.704-.67z"/> + <path fill="#31394a" d="M235.91 197.62l.704.67-.704-.67z"/> + <path fill="#deb518" d="M241.54 197.62l.704.67-.704-.67z"/> + <path fill="#efbd08" d="M244.35 197.62l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M246.46 197.62l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M247.87 197.62l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M255.61 197.62l.704.67-.704-.67z"/> + <path fill="#003994" d="M256.31 197.62l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M257.01 197.62l.704.67-.704-.67z"/> + <path fill="#395273" d="M258.42 197.62l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M262.64 197.62l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M264.75 197.62l.703.67-.703-.67z"/> + <path fill="#10214a" d="M271.79 197.62l1.407 1.34-1.407-1.34z"/> + <path fill="#cecece" d="M272.49 197.62l.703.67-.703-.67z"/> + <path fill="#212139" d="M235.21 198.29l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M241.54 198.29l.704.67-.704-.67z"/> + <path fill="#cead21" d="M242.24 198.29l.703.67-.703-.67z"/> + <path fill="#003994" d="M243.18 198.74l.235.446-.235-.446z"/> + <path fill="#395273" d="M243.88 198.74l.235.446-.235-.446z"/> + <path fill="#6b735a" d="M245.06 198.29l.703.67-.703-.67z"/> + <path fill="#cead21" d="M247.17 198.29l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M248.57 198.29l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M255.61 198.29l.704.67-.704-.67z"/> + <path fill="#395273" d="M256.31 198.29l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M257.01 198.29l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M258.42 198.29l.704.67-.704-.67z"/> + <path fill="#295284" d="M259.12 198.29l.703.67-.703-.67z"/> + <path fill="#8c8442" d="M262.64 198.29l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M264.75 198.29l.703.67-.703-.67z"/> + <path fill="#efefef" d="M273.19 198.29l.703.67-.703-.67z"/> + <path fill="#cecece" d="M234.5 198.96l.703.67-.703-.67z"/> + <path fill="#00216b" d="M235.21 198.96l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M241.54 198.96l.704.67-.704-.67z"/> + <path fill="#395273" d="M245.06 198.96l.703.67-.703-.67z"/> + <path fill="#295284" d="M245.76 198.96l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M247.17 198.96l.704.67-.704-.67z"/> + <path fill="#deb518" d="M247.87 198.96l.703.67-.703-.67z"/> + <path fill="#ad9431" d="M248.57 198.96l.703.67-.703-.67m9.145 0l.704.67-.705-.67z"/> + <path fill="#395273" d="M259.36 199.41l.235.446-.235-.446z"/> + <path fill="#efbd08" d="M262.64 198.96l.703.67-.703-.67z"/> + <path fill="#ad9431" d="M263.35 198.96l.704.67-.704-.67z"/> + <path fill="#cead21" d="M264.05 198.96l.703.67-.703-.67z"/> + <path fill="#ad9431" d="M264.75 198.96l.703.67-.703-.67z"/> + <path fill="#002984" d="M272.49 198.96l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M273.19 198.96l.703.67-.703-.67m-38.692.67l.703.67-.702-.67z"/> + <path fill="#002984" d="M235.44 200.08l.235.446-.235-.446z"/> + <path fill="#6b735a" d="M241.54 199.63l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M242.94 199.63l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M245.06 199.63l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M245.76 199.63l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M247.17 199.63l.704.67-.704-.67z"/> + <path fill="#cead21" d="M247.87 199.63l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M255.61 199.63l.704.67-.704-.67z"/> + <path fill="#4a636b" d="M256.31 199.63l.703.67-.703-.67z"/> + <path fill="#deb518" d="M257.01 199.63l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M261.94 199.63l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M263.35 199.63l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M264.52 199.86l.47.223-.47-.223z"/> + <path fill="#bdbdbd" d="M234.5 200.3l.703.67-.703-.67z"/> + <path fill="#395273" d="M241.54 200.3l.704.67-.704-.67z"/> + <path fill="#cead21" d="M242.94 200.3l.703.67-.703-.67z"/> + <path fill="#8c8442" d="M243.65 200.3l.703.67-.703-.67z"/> + <path fill="#395273" d="M244.35 200.3l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M245.76 200.3l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M249.28 200.3l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M255.84 200.75l.235.446-.235-.446m1.173-.446l1.407 2.008-1.407-2.008z"/> + <path fill="#4a636b" d="M259.12 200.3l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M261.94 200.3l.703.67-.703-.67z"/> + <path fill="#deb518" d="M264.05 200.3l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M231.69 200.97l.703.67-.703-.67z"/> + <path fill="#42425a" d="M234.5 200.97l.703.67-.703-.67z"/> + <path fill="#00216b" d="M235.21 200.97l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M242.94 200.97l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M245.76 200.97l.703.67-.703-.67z"/> + <path fill="#cead21" d="M246.46 200.97l.703.67-.703-.67z"/> + <path fill="#395273" d="M247.17 200.97l.704.67-.704-.67z"/> + <path fill="#295284" d="M247.87 200.97l.703.67-.703-.67z"/> + <path fill="#deb518" d="M248.57 200.97l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M249.28 200.97l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M259.12 200.97l.703.67-.703-.67z"/> + <path fill="#ad9431" d="M262.64 200.97l.703.67-.703-.67z"/> + <path fill="#cead21" d="M264.05 200.97l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M265.46 200.97l.703.67-.703-.67z"/> + <path fill="#002984" d="M272.49 200.97l.703.67-.703-.67z"/> + <path fill="#42425a" d="M273.19 200.97l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M276.01 200.97l.703.67-.703-.67z"/> + <path fill="#efefef" d="M278.82 200.97l.703.67-.703-.67z"/> + <path fill="#cecece" d="M223.25 201.64l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M223.95 201.64l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M225.12 201.86l.47.223-.47-.223z"/> + <path fill="#42425a" d="M226.06 201.64l.703.67-.703-.67z"/> + <path fill="#314a7b" d="M226.76 201.64l.704.67-.704-.67z"/> + <path fill="#00184a" d="M227.94 201.86l.47.223-.47-.223z"/> + <path fill="#00216b" d="M228.87 201.64l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M242.94 201.64l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M245.76 201.64l.703.67-.703-.67z"/> + <path fill="#8c8442" d="M246.46 201.64l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M248.57 201.64l.703.67-.703-.67z"/> + <path fill="#8c8442" d="M249.28 201.64l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M250.68 201.64l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M251.39 201.64l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M252.09 201.64l.703.67-.703-.67z"/> + <path fill="#395273" d="M254.9 201.64l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M259.12 201.64l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M259.83 201.64l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M261.24 201.64l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M262.64 201.64l.703.67-.703-.67z"/> + <path fill="#395273" d="M264.05 201.64l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#00216b" d="M278.82 201.64l.703.67-.703-.67z"/> + <path fill="#00184a" d="M280 201.86l.47.223-.47-.223z"/> + <path fill="#314a7b" d="M280.93 201.64l.703.67-.703-.67z"/> + <path fill="#42425a" d="M281.64 201.64l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M282.34 201.64l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M283.04 201.64l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M283.75 201.64l.703.67-.703-.67z"/> + <path fill="#cecece" d="M284.45 201.64l.703.67-.703-.67m-65.425.67l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M219.73 202.31l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M220.43 202.31l.704.67-.704-.67z"/> + <path fill="#42425a" d="M221.14 202.31l.703.67-.703-.67z"/> + <path fill="#29396b" d="M221.84 202.31l.704.67-.704-.67z"/> + <path fill="#00184a" d="M222.54 202.31l.703.67-.703-.67z"/> + <path fill="#00216b" d="M223.25 202.31l.703.67-.703-.67z"/> + <path fill="#002984" d="M223.95 202.31l.704.67-.704-.67z"/> + <path fill="#00216b" d="M234.5 202.31l.703.67-.703-.67z"/> + <path fill="#8c8442" d="M242.24 202.31l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M242.94 202.31l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M264.05 202.31l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M264.75 202.31l.703.67-.703-.67z"/> + <path fill="#295284" d="M265.46 202.31l.703.67-.703-.67z"/> + <path fill="#00184a" d="M271.79 202.31l.704.67-.704-.67z"/> + <path fill="#002984" d="M284.22 202.53l.47.223-.47-.223z"/> + <path fill="#00184a" d="M285.15 202.31l.703.67-.703-.67z"/> + <path fill="#10295a" d="M285.86 202.31l.704.67-.704-.67z"/> + <path fill="#42425a" d="M286.56 202.31l.704.67-.704-.67z"/> + <path fill="#636b7b" d="M287.26 202.31l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M287.97 202.31l.703.67-.703-.67z"/> + <path fill="#cecece" d="M288.67 202.31l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M216.21 202.98l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M216.92 202.98l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M217.62 202.98l.704.67-.704-.67z"/> + <path fill="#10295a" d="M218.32 202.98l.703.67-.703-.67z"/> + <path fill="#00216b" d="M219.03 202.98l.704.67-.704-.67z"/> + <path fill="#395273" d="M226.76 202.98l.704.67-.704-.67z"/> + <path fill="#00184a" d="M234.5 202.98l.703.67-.703-.67z"/> + <path fill="#00215a" d="M271.79 202.98l-.703 1.34.703-1.34z"/> + <path fill="#395273" d="M275.31 202.98l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M276.01 202.98l.703.67-.703-.67z"/> + <path fill="#395273" d="M277.42 202.98l.704.67-.704-.67z"/> + <path fill="#00216b" d="M288.67 202.98l.704.67-.704-.67z"/> + <path fill="#00184a" d="M289.38 202.98l.704.67-.704-.67z"/> + <path fill="#42425a" d="M290.08 202.98l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M290.78 202.98l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M291.49 202.98l.704.67-.704-.67z"/> + <path fill="#efefef" d="M292.19 202.98l.703.67-.703-.67z"/> + <path fill="#dedede" d="M213.4 203.65l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M214.1 203.65l.704.67-.704-.67z"/> + <path fill="#314a7b" d="M214.8 203.65l.703.67-.703-.67z"/> + <path fill="#00184a" d="M215.51 203.65l.703.67-.703-.67z"/> + <path fill="#002984" d="M216.21 203.65l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M221.14 203.65l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M221.84 203.65l.704.67-.704-.67z"/> + <path fill="#395273" d="M222.54 203.65l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M225.36 203.65l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M226.06 203.65l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M227.23 203.87l.47.223-.47-.223z"/> + <path fill="#4a636b" d="M228.17 203.65l.703.67-.703-.67z"/> + <path fill="#00215a" d="M234.5 203.65l.703.67-.703-.67z"/> + <path fill="#002984" d="M246.23 203.87l.47.223-.47-.223z"/> + <path fill="#00215a" d="M247.17 203.65l.704.67-.704-.67z"/> + <path fill="#00184a" d="M247.87 203.65l.703.67-.703-.67z"/> + <path fill="#29396b" d="M248.57 203.65l.703.67-.703-.67z"/> + <path fill="#425a84" d="M249.28 203.65l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M253.5 203.65l.704.67-.704-.67z"/> + <path fill="#737b94" d="M254.2 203.65l.703.67-.703-.67z"/> + <path fill="#29396b" d="M259.12 203.65l.703.67-.703-.67z"/> + <path fill="#00184a" d="M260.3 203.87l.47.223-.47-.223z"/> + <path fill="#002984" d="M261.7 203.87l.47.223-.47-.223z"/> + <path fill="#6b6b4a" d="M271.79 203.65l.704.67-.704-.67z"/> + <path fill="#7b7b52" d="M276.01 203.65l1.407 5.355-1.407-5.355z"/> + <path fill="#cead21" d="M279.53 203.65l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M280.23 203.65l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M281.64 203.65l.703.67-.703-.67z"/> + <path fill="#395273" d="M284.45 203.65l-.703 2.678.703-2.678z"/> + <path fill="#002984" d="M291.49 203.65l.704.67-.704-.67z"/> + <path fill="#00215a" d="M292.19 203.65l.703.67-.703-.67z"/> + <path fill="#314a7b" d="M292.89 203.65l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M293.6 203.65l.703.67-.703-.67z"/> + <path fill="#cecece" d="M294.3 203.65l.704.67-.704-.67z"/> + <path fill="#efefef" d="M211.29 204.32l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M211.99 204.32l.703.67-.703-.67z"/> + <path fill="#31425a" d="M212.69 204.32l.703.67-.703-.67z"/> + <path fill="#00216b" d="M213.4 204.32l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M220.43 204.32l.704.67-.704-.67z"/> + <path fill="#cead21" d="M223.25 204.32l.703.67-.703-.67z"/> + <path fill="#deb518" d="M225.83 204.54l.47.223-.47-.223z"/> + <path fill="#7b7b52" d="M226.76 204.32l.704.67-.704-.67z"/> + <path fill="#deb518" d="M227.94 204.54l.47.223-.47-.223z"/> + <path fill="#00216b" d="M235.21 204.32l.703.67-.703-.67m8.442 0l.703.67-.703-.67z"/> + <path fill="#63636b" d="M244.35 204.32l.704.67-.704-.67z"/> + <path fill="#cecece" d="M261.24 204.32l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M261.94 204.32l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M262.64 204.32l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M263.35 204.32l.704.67-.704-.67z"/> + <path fill="#00184a" d="M264.28 204.77l.235.446-.235-.446z"/> + <path fill="#001039" d="M271.08 204.32l.703.67-.703-.67z"/> + <path fill="#deb518" d="M271.79 204.32l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M278.12 204.32l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M278.82 204.32l-.703 1.34.703-1.34z"/> + <path fill="#deb518" d="M279.53 204.32l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M281.64 204.32l1.407 1.34-1.407-1.34zM285.86 204.32l.704.67-.704-.67z"/> + <path fill="#ffce08" d="M286.56 204.32l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M287.26 204.32l.703.67-.703-.67z"/> + <path fill="#ad9431" d="M287.97 204.32l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M288.67 204.32l.704.67-.704-.67z"/> + <path fill="#00216b" d="M294.3 204.32l.704.67-.704-.67z"/> + <path fill="#21315a" d="M295 204.32l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M295.71 204.32l.704.67-.704-.67z"/> + <path fill="#dedede" d="M296.41 204.32l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M209.88 204.99l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M210.58 204.99l.704.67-.704-.67z"/> + <path fill="#00215a" d="M211.29 204.99l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M217.62 204.99l.704.67-.704-.67z"/> + <path fill="#deb518" d="M221.14 204.99l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M221.84 204.99l.704.67-.704-.67z"/> + <path fill="#9c8c42" d="M222.54 204.99l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M223.95 204.99l.704.67-.704-.67z"/> + <path fill="#ffce08" d="M225.36 204.99l1.407 1.34-1.407-1.34z"/> + <path fill="#8c8442" d="M226.06 204.99l.703.67-.703-.67z"/> + <path fill="#003994" d="M226.76 204.99l.704.67-.704-.67z"/> + <path fill="#295284" d="M227.47 204.99l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M228.17 204.99l.703.67-.703-.67z"/> + <path fill="#001039" d="M235.21 204.99l.703.67-.703-.67z"/> + <path fill="#00216b" d="M241.54 204.99l.704.67-.704-.67z"/> + <path fill="#00184a" d="M242.24 204.99l.703.67-.703-.67z"/> + <path fill="#00216b" d="M242.94 204.99l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M244.35 204.99l.704.67-.704-.67z"/> + <path fill="#dedede" d="M262.64 204.99l.703.67-.703-.67z"/> + <path fill="#63636b" d="M263.58 205.43l.235.446-.235-.446z"/> + <path fill="#002984" d="M264.99 205.43l.235.446-.235-.446z"/> + <path fill="#313931" d="M271.08 204.99l.703.67-.703-.67z"/> + <path fill="#295284" d="M276.71 204.99l.703.67-.703-.67z"/> + <path fill="#003994" d="M278.82 204.99l.703.67-.703-.67z"/> + <path fill="#8c8442" d="M279.53 204.99l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M280.93 204.99l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M281.64 204.99l.703.67-.703-.67z"/> + <path fill="#003994" d="M283.04 204.99l.704.67-.704-.67m2.345.446l.235.447-.235-.447z"/> + <path fill="#cead21" d="M285.86 204.99l.704.67-.704-.67z"/> + <path fill="#efbd08" d="M286.56 204.99l.704.67-.704-.67z"/> + <path fill="#cead21" d="M287.26 204.99l.703.67-.703-.67z"/> + <path fill="#295284" d="M289.38 204.99l.704.67-.704-.67z"/> + <path fill="#ffce08" d="M290.08 204.99l.703.67-.703-.67z"/> + <path fill="#cead21" d="M290.78 204.99l.703.67-.703-.67z"/> + <path fill="#8c8442" d="M291.49 204.99l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M292.19 204.99l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M292.89 204.99l.704.67-.704-.67z"/> + <path fill="#00216b" d="M296.41 204.99l.703.67-.703-.67z"/> + <path fill="#31394a" d="M297.11 204.99l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M297.82 204.99l.703.67-.703-.67z"/> + <path fill="#efefef" d="M298.52 204.99l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M208.47 205.66l.703.67-.703-.67z"/> + <path fill="#212139" d="M209.18 205.66l.703.67-.703-.67z"/> + <path fill="#002984" d="M209.88 205.66l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M212.69 205.66l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M213.4 205.66l.704.67-.704-.67z"/> + <path fill="#deb518" d="M214.1 205.66l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M215.51 205.66l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M217.62 205.66l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M219.03 205.66l.704.67-.704-.67z"/> + <path fill="#395273" d="M219.73 205.66l.703 2.008-.703-2.008z"/> + <path fill="#7b7b52" d="M221.14 205.66l.703.67-.703-.67z"/> + <path fill="#003994" d="M221.84 205.66v2.678h1.407v-2.678h-1.407z"/> + <path fill="#efbd08" d="M223.25 205.66l.703.67-.703-.67z"/> + <path fill="#deb518" d="M223.95 205.66l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M225.36 205.66l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M226.76 205.66l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M227.47 205.66l-.704 1.34.704-1.34z"/> + <path fill="#7b7b52" d="M228.17 205.66l.703.67-.703-.67z"/> + <path fill="#00215a" d="M235.21 205.66l.703.67-.703-.67z"/> + <path fill="#002984" d="M238.02 205.66l.703.67-.703-.67z"/> + <path fill="#00184a" d="M239.72 206.6v1.613h3.322l-3.322-1.613z"/> + <path fill="#00215a" d="M240.83 205.66l.703.67-.703-.67z"/> + <path fill="#002984" d="M241.54 205.66l.704.67-.704-.67z"/> + <path fill="#31394a" d="M244.35 205.66l.704.67-.704-.67z"/> + <path fill="#00216b" d="M267.57 205.66l1.407 1.34-1.407-1.34z"/> + <path fill="#002984" d="M268.27 205.66l.703.67-.703-.67z"/> + <path fill="#00184a" d="M270.62 206.1l.235.446-.235-.446z"/> + <path fill="#8c8442" d="M271.08 205.66l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M280.23 205.66l.704.67-.704-.67z"/> + <path fill="#003994" d="M281.17 206.1l.235.446-.235-.446z"/> + <path fill="#deb518" d="M282.34 205.66l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M283.04 205.66l.704.67-.704-.67z"/> + <path fill="#295284" d="M284.45 205.66l.703.67-.703-.67z"/> + <path fill="#ad9431" d="M286.56 205.66l.704.67-.704-.67z"/> + <path fill="#003994" d="M287.26 205.66l.703.67-.703-.67z"/> + <path fill="#295284" d="M287.97 205.66l.703.67-.703-.67z"/> + <path fill="#8c8442" d="M289.38 205.66l.704.67-.704-.67z"/> + <path fill="#9c8c42" d="M290.08 205.66l.703.67-.703-.67z"/> + <path fill="#deb518" d="M290.78 205.66l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M291.49 207l2.11-.67-2.11.67z"/> + <path fill="#6b735a" d="M293.6 205.66l.703.67-.703-.67z"/> + <path fill="#295284" d="M295 205.66l-.704 1.34.704-1.34z"/> + <path fill="#10214a" d="M298.52 205.66l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M299.22 205.66l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M207.07 206.33l.703.67-.703-.67z"/> + <path fill="#42425a" d="M207.77 206.33l.704.67-.704-.67z"/> + <path fill="#002984" d="M208.47 206.33l.703.67-.703-.67z"/> + <path fill="#ad9431" d="M212.69 206.33l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M214.57 206.55l.47.223-.47-.223m1.641-.223l.705.67-.704-.67z"/> + <path fill="#6b735a" d="M217.62 206.33l.704.67-.704-.67z"/> + <path fill="#395273" d="M221.14 206.33l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M225.59 206.77l.235.446-.235-.446z"/> + <path fill="#9c8c42" d="M226.06 206.33l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M227.94 206.55l.47.223-.47-.223z"/> + <path fill="#8c8442" d="M228.87 206.33l.703.67-.703-.67z"/> + <path fill="#00184a" d="M236.14 206.77l.235.446-.235-.446z"/> + <path fill="#002984" d="M236.61 206.33l.703.67-.703-.67z"/> + <path fill="#001039" d="M237.32 206.33l.703.67-.703-.67z"/> + <path fill="#00216b" d="M238.02 206.33l.703.67-.703-.67z"/> + <path fill="#00215a" d="M244.35 206.33l.704.67-.704-.67z"/> + <path fill="#efefef" d="M245.06 206.33l.703.67-.703-.67z"/> + <path fill="#21315a" d="M263.35 206.33l.704.67-.704-.67z"/> + <path fill="#00184a" d="M268.97 206.33l.704.67-.704-.67z"/> + <path fill="#9c8c42" d="M278.12 206.33l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M278.82 206.33l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M279.53 206.33l.703.67-.703-.67z"/> + <path fill="#deb518" d="M280.23 206.33l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M284.45 206.33l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M285.15 206.33l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M286.56 206.33l.704.67-.704-.67z"/> + <path fill="#4a636b" d="M287.26 206.33l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M287.97 206.33l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M289.38 206.33l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M290.78 206.33l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M292.19 206.33l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M292.89 206.33l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M293.6 206.33l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M295.71 206.33l.704.67-.704-.67z"/> + <path fill="#002984" d="M299.22 206.33l.704.67-.704-.67z"/> + <path fill="#212139" d="M299.93 206.33l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M300.63 206.33l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M206.36 207l-.703 1.34.703-1.34z"/> + <path fill="#00215a" d="M207.07 207l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M212.69 207l.703.67-.703-.67z"/> + <path fill="#295284" d="M214.1 207l.704.67-.704-.67z"/> + <path fill="#003994" d="M214.8 207v2.678h.703L214.8 207z"/> + <path fill="#9c8c42" d="M215.51 207l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M216.92 207l1.407 1.34-1.407-1.34z"/> + <path fill="#395273" d="M217.62 207l.704.67-.704-.67zM226.06 207l.703.67-.703-.67z"/> + <path fill="#003994" d="M227.23 207.22l.47.223-.47-.223z"/> + <path fill="#deb518" d="M228.17 207l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M228.87 207l.703.67-.703-.67z"/> + <path fill="#001039" d="M236.85 207.44l.235.446-.235-.446z"/> + <path fill="#002984" d="M244.35 207l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M245.06 207l.703.67-.703-.67z"/> + <path fill="#cecece" d="M262.64 207l.703.67-.703-.67z"/> + <path fill="#00216b" d="M263.35 207l.704.67-.704-.67z"/> + <path fill="#000818" d="M269.68 207l.703.67-.703-.67z"/> + <path fill="#395273" d="M278.12 207l.703.67-.703-.67z"/> + <path fill="#003994" d="M278.82 207l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M279.53 207l-.703 1.34.703-1.34z"/> + <path fill="#ffce08" d="M280.23 207l.704.67-.704-.67z"/> + <path fill="#9c8c42" d="M282.34 207l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M283.75 207l.703.67-.703-.67z"/> + <path fill="#395273" d="M284.92 207.22l.47.223-.47-.223z"/> + <path fill="#9c8c42" d="M290.78 207l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M291.49 207l.704.67-.704-.67z"/> + <path fill="#cead21" d="M294.3 207l.704.67-.704-.67z"/> + <path fill="#395273" d="M298.52 207l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M299.22 207l.704.67-.704-.67z"/> + <path fill="#00216b" d="M300.63 207l.703.67-.703-.67z"/> + <path fill="#63636b" d="M301.33 207l1.407 1.34-1.407-1.34z"/> + <path fill="#00216b" d="M206.36 207.67l.703.67-.703-.67z"/> + <path fill="#295284" d="M212.69 207.67l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M215.51 207.67l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M216.92 207.67l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M219.03 207.67l.704.67-.704-.67z"/> + <path fill="#cead21" d="M221.14 207.67l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#7b7b52" d="M225.36 207.67l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M226.76 207.67l.704.67-.704-.67z"/> + <path fill="#efbd08" d="M228.41 208.11l.235.446-.235-.446z"/> + <path fill="#ad9431" d="M228.87 207.67l.703.67-.703-.67z"/> + <path fill="#00216b" d="M237.32 207.67l.703.67-.703-.67z"/> + <path fill="#002984" d="M237.32 209l2.11-1.34-2.11 1.34z"/> + <path fill="#00216b" d="M239.43 207.67l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M245.06 207.67l.703.67-.703-.67z"/> + <path fill="#63636b" d="M262.64 207.67l.703.67-.703-.67z"/> + <path fill="#00216b" d="M266.86 207.67l.703.67-.703-.67z"/> + <path fill="#002984" d="M266.86 209l2.11-1.34-2.11 1.34z"/> + <path fill="#00184a" d="M268.97 207.67l.704.67-.704-.67z"/> + <path fill="#00216b" d="M269.68 207.67l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M276.71 207.67l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M278.12 207.67l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M279.53 207.67l.703.67-.703-.67z"/> + <path fill="#deb518" d="M280.23 207.67l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M282.34 207.67l.703.67-.703-.67zM285.15 207.67l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M287.26 207.67l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M287.97 207.67l.703.67-.703-.67z"/> + <path fill="#cead21" d="M290.78 207.67l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M291.49 207.67l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M293.6 207.67l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M299.93 207.67l.704.67-.704-.67z"/> + <path fill="#002984" d="M301.33 207.67l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M204.96 208.34l.704.67-.704-.67z"/> + <path fill="#00216b" d="M205.66 208.34l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M213.4 208.34l.704.67-.704-.67z"/> + <path fill="#9c8c42" d="M214.1 208.34l.704.67-.704-.67z"/> + <path fill="#7b7b52" d="M217.15 208.78l.235.446-.235-.446z"/> + <path fill="#ad9431" d="M219.03 208.34l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M220.43 208.34l.704.67-.704-.67z"/> + <path fill="#ad9431" d="M222.31 208.56l.47.223-.47-.223m1.641-.223l.705.67-.704-.67z"/> + <path fill="#efbd08" d="M226.06 208.34l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M228.87 208.34l.703.67-.703-.67z"/> + <path fill="#00184a" d="M243.65 208.34l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M245.06 208.34l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M261.94 208.34l.703.67-.703-.67z"/> + <path fill="#424242" d="M262.64 208.34l.703.67-.703-.67z"/> + <path fill="#8c8442" d="M271.08 208.34l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M280.23 208.34l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M284.45 208.34l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M285.15 208.34l.703.67-.703-.67z"/> + <path fill="#184a8c" d="M286.56 208.34l.704.67-.704-.67z"/> + <path fill="#7b7b52" d="M291.49 208.34l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M292.89 208.34l.704.67-.704-.67z"/> + <path fill="#efbd08" d="M293.6 208.34l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M294.3 208.34l.704.67-.704-.67z"/> + <path fill="#7b7b52" d="M295 208.34l-.704 1.34.704-1.34z"/> + <path fill="#5a6b63" d="M297.82 208.34l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M298.52 208.34l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M300.63 208.34l.703.67-.703-.67z"/> + <path fill="#002984" d="M302.04 208.34l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M302.74 208.34l.704.67-.704-.67z"/> + <path fill="#525a6b" d="M204.96 209l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M213.4 209l.704.67-.704-.67z"/> + <path fill="#deb518" d="M214.1 209l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M215.51 209l.703.67-.703-.67z"/> + <path fill="#cead21" d="M218.32 209l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M219.03 209l-.703 1.34.703-1.34z"/> + <path fill="#ad9431" d="M221.14 209l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M223.25 209l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M226.76 209l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M227.47 209l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M228.17 209l.703.67-.703-.67z"/> + <path fill="#292921" d="M244.35 209l.704.67-.704-.67z"/> + <path fill="#cecece" d="M245.06 209l.703.67-.703-.67m16.884 0l.703.67-.703-.67z"/> + <path fill="#efefef" d="M262.64 209l1.407 1.34-1.407-1.34z"/> + <path fill="#31394a" d="M263.35 209l.704.67-.704-.67z"/> + <path fill="#7b7b52" d="M281.64 209l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M282.34 209l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M284.45 209l.703.67-.703-.67z"/> + <path fill="#ad9431" d="M285.15 209l.703.67-.703-.67z"/> + <path fill="#deb518" d="M287.97 209l.703.67-.703-.67z"/> + <path fill="#395273" d="M290.08 209l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M292.89 209l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M295 209l.703.67L295 209z"/> + <path fill="#cead21" d="M295.71 209l.704.67-.704-.67z"/> + <path fill="#003994" d="M299.22 209l-.703 2.678h.703V209z"/> + <path fill="#7b7b52" d="M299.93 209l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M301.33 209l.703.67-.703-.67z"/> + <path fill="#425a84" d="M302.98 209.45l.235.446-.235-.446z"/> + <path fill="#42425a" d="M204.96 209.67l.704.67-.704-.67z"/> + <path fill="#7b7b52" d="M213.4 209.67l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#deb518" d="M215.51 209.67l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M216.92 209.67l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M219.03 209.67l.704.67-.704-.67z"/> + <path fill="#00216b" d="M242.24 209.67l.703.67-.703-.67z"/> + <path fill="#21315a" d="M242.94 209.67l.703.67-.703-.67z"/> + <path fill="#63636b" d="M243.65 209.67l.703.67-.703-.67z"/> + <path fill="#efefef" d="M244.35 209.67l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M264.05 209.67l.703.67-.703-.67z"/> + <path fill="#21315a" d="M264.75 209.67l.703.67-.703-.67z"/> + <path fill="#00216b" d="M265.46 209.67l.703.67-.703-.67z"/> + <path fill="#395273" d="M285.86 209.67l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M287.97 209.67l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M288.67 209.67l.704.67-.704-.67z"/> + <path fill="#7b7b52" d="M290.08 209.67l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M292.19 209.67l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M295.71 209.67l-.703 2.008.703-2.008z"/> + <path fill="#5a6b63" d="M297.11 209.67l.704.67-.704-.67z"/> + <path fill="#ffce08" d="M297.82 209.67l.703.67-.703-.67z"/> + <path fill="#5a6b63" d="M298.52 209.67l.703.67-.703-.67z"/> + <path fill="#395273" d="M299.93 209.67l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M301.33 209.67l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M204.96 210.34l.704.67-.704-.67z"/> + <path fill="#395273" d="M213.4 210.34l.704.67-.704-.67z"/> + <path fill="#9c8c42" d="M216.21 210.34l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M218.32 210.34l.703.67-.703-.67z"/> + <path fill="#002984" d="M226.76 210.34l.704.67-.704-.67z"/> + <path fill="#00216b" d="M227.47 210.34l.704.67-.704-.67z"/> + <path fill="#00184a" d="M228.17 210.34l.703.67-.703-.67z"/> + <path fill="#10295a" d="M228.87 210.34l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M238.02 210.34l.703.67-.703-.67z"/> + <path fill="#848c9c" d="M238.72 210.34l.704.67-.704-.67z"/> + <path fill="#cecece" d="M242.24 210.34l.703.67-.703-.67z"/> + <path fill="#dedede" d="M265.46 210.34l.703.67-.703-.67z"/> + <path fill="#848c9c" d="M268.97 210.34l.704.67-.704-.67z"/> + <path fill="#636b7b" d="M269.68 210.34l.703.67-.703-.67z"/> + <path fill="#10295a" d="M278.82 210.34l.703.67-.703-.67z"/> + <path fill="#00184a" d="M279.53 210.34l.703.67-.703-.67z"/> + <path fill="#00216b" d="M280.23 210.34l.704.67-.704-.67z"/> + <path fill="#002984" d="M280.93 210.34l.703.67-.703-.67z"/> + <path fill="#4a636b" d="M290.08 210.34l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M290.78 210.34l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M292.19 210.34l.703.67-.703-.67z"/> + <path fill="#cead21" d="M292.89 210.34l.704.67-.704-.67z"/> + <path fill="#4a636b" d="M294.3 210.34l.704.67-.704-.67z"/> + <path fill="#deb518" d="M295 210.34l.703.67-.703-.67m2.58.223l.468.223-.468-.223z"/> + <path fill="#8c8442" d="M299.93 210.34l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M301.33 210.34l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M302.74 210.34l.704.67-.704-.67z"/> + <path fill="#cecece" d="M204.96 211.01l.704.67-.704-.67z"/> + <path fill="#00216b" d="M205.66 211.01l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M214.1 211.01l.704.67-.704-.67z"/> + <path fill="#4a636b" d="M214.8 211.01l.703.67-.703-.67z"/> + <path fill="#002984" d="M219.73 212.35l2.11-.67-2.11.67z"/> + <path fill="#00215a" d="M221.84 211.01l.704.67-.704-.67z"/> + <path fill="#00184a" d="M222.54 211.01l.703.67-.703-.67z"/> + <path fill="#314a7b" d="M223.25 211.01l.703.67-.703-.67z"/> + <path fill="#42425a" d="M223.95 211.01l.704.67-.704-.67z"/> + <path fill="#636b7b" d="M224.65 211.01l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M225.36 211.01l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M226.06 211.01l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M226.76 211.01l.704.67-.704-.67z"/> + <path fill="#cecece" d="M227.47 211.01l.704.67-.704-.67z"/> + <path fill="#dedede" d="M280.23 211.01l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M280.93 211.01l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M281.64 211.01l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M282.34 211.01l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M283.04 211.01l.704.67-.704-.67z"/> + <path fill="#42425a" d="M283.75 211.01l.703.67-.703-.67z"/> + <path fill="#314a7b" d="M284.45 211.01l.703.67-.703-.67z"/> + <path fill="#00184a" d="M285.15 211.01l.703.67-.703-.67z"/> + <path fill="#00215a" d="M285.86 211.01l.704.67-.704-.67z"/> + <path fill="#002984" d="M287.03 211.24l.47.223-.47-.223z"/> + <path fill="#184a8c" d="M292.89 211.01l.704.67-.704-.67z"/> + <path fill="#5a6b63" d="M296.41 211.01l.703.67-.703-.67zM297.82 211.01l.703.67-.703-.67z"/> + <path fill="#295284" d="M299.22 211.01l.704.67-.704-.67z"/> + <path fill="#bd9c29" d="M300.63 211.01l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M302.74 211.01l.704.67-.704-.67z"/> + <path fill="#dedede" d="M204.96 211.68l.704.67-.704-.67z"/> + <path fill="#001039" d="M205.66 211.68l.703.67-.703-.67z"/> + <path fill="#63636b" d="M220.43 211.68l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M221.14 211.68l.703.67-.703-.67z"/> + <path fill="#efefef" d="M221.84 211.68l-.703 1.34.703-1.34z"/> + <path fill="#bdbdbd" d="M286.56 211.68l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M287.26 211.68l.703.67-.703-.67z"/> + <path fill="#00216b" d="M287.97 211.68l.703.67-.703-.67z"/> + <path fill="#395273" d="M295 211.68l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M295.71 211.68l.704.67-.704-.67z"/> + <path fill="#deb518" d="M296.41 211.68l.703.67-.703-.67z"/> + <path fill="#bd9c29" d="M297.82 211.68l.703.67-.703-.67z"/> + <path fill="#7b7b52" d="M298.52 211.68l.703.67-.703-.67z"/> + <path fill="#00215a" d="M302.04 211.68l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M302.74 211.68l.704.67-.704-.67z"/> + <path fill="#dedede" d="M203.55 212.35l.703.67-.703-.67z"/> + <path fill="#63636b" d="M204.25 212.35l.703.67-.703-.67z"/> + <path fill="#001039" d="M205.19 212.8l.235.446-.235-.446z"/> + <path fill="#00216b" d="M217.62 212.35l-.703 1.34.703-1.34z"/> + <path fill="#00184a" d="M218.32 212.35l.703.67-.703-.67z"/> + <path fill="#00216b" d="M219.03 212.35l.704.67-.704-.67z"/> + <path fill="#10214a" d="M220.43 212.35l.704.67-.704-.67z"/> + <path fill="#dedede" d="M286.56 212.35l.704.67-.704-.67z"/> + <path fill="#212139" d="M287.26 212.35l.703.67-.703-.67z"/> + <path fill="#00184a" d="M287.97 212.35l.703.67-.703-.67z"/> + <path fill="#002984" d="M288.91 212.8l.235.446-.235-.446z"/> + <path fill="#184a8c" d="M296.41 212.35l.703.67-.703-.67z"/> + <path fill="#9c8c42" d="M297.11 212.35l.704.67-.704-.67z"/> + <path fill="#295284" d="M299.93 212.35l.704.67-.704-.67z"/> + <path fill="#00216b" d="M302.74 212.35l.704.67-.704-.67z"/> + <path fill="#42425a" d="M303.45 212.35l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M304.15 212.35l.703.67-.703-.67z"/> + <path fill="#cecece" d="M202.85 213.02l-1.407 2.008 1.407-2.008z"/> + <path fill="#10214a" d="M203.55 213.02l-1.407 2.008 1.407-2.008z"/> + <path fill="#003994" d="M204.25 213.02c-2.02 2.108-4.886 4.447-3.518 7.363-3.733 2.017-4.397 6.38-5.628 10.04l7.74 1.34 5.627-12.718-7.738.67v-.67l7.035-.67-3.517-5.354z"/> + <path fill="#002984" d="M214.1 213.02l.704.67-.704-.67z"/> + <path fill="#00215a" d="M214.8 213.02l.703.67-.703-.67z"/> + <path fill="#00184a" d="M215.98 213.24l.47.223-.47-.223z"/> + <path fill="#002984" d="M217.62 213.02l.704.67-.704-.67z"/> + <path fill="#63636b" d="M221.14 213.02l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M286.56 213.02l.704.67-.704-.67z"/> + <path fill="#002984" d="M287.26 213.02l.703.67-.703-.67z"/> + <path fill="#00216b" d="M291.49 213.02l.704.67-.704-.67z"/> + <path fill="#184a8c" d="M297.82 213.02l.703.67-.703-.67z"/> + <path fill="#395273" d="M298.52 213.02l.703.67-.703-.67z"/> + <path fill="#00215a" d="M304.15 213.02l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M304.85 213.02l2.11 2.008-2.11-2.008z"/> + <path fill="#00216b" d="M204.96 213.69l.704.67-.704-.67z"/> + <path fill="#002984" d="M205.66 213.69l.703.67-.703-.67z"/> + <path fill="#00216b" d="M211.99 213.69l.703.67-.703-.67z"/> + <path fill="#00184a" d="M213.16 213.91l.47.223-.47-.223z"/> + <path fill="#00216b" d="M214.1 213.69l.704.67-.704-.67z"/> + <path fill="#42425a" d="M221.14 213.69l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M286.56 213.69l.704.67-.704-.67z"/> + <path fill="#002984" d="M291.49 213.69l.704.67-.704-.67z"/> + <path fill="#00215a" d="M292.19 213.69l.703.67-.703-.67z"/> + <path fill="#00184a" d="M293.36 213.91l.47.223-.47-.223z"/> + <path fill="#00216b" d="M294.53 214.14l.235.446-.235-.446m10.318-.446l.703.67-.702-.67z"/> + <path fill="#001039" d="M205.66 214.36l.703.67-.703-.67z"/> + <path fill="#00216b" d="M210.11 214.81l.235.446-.235-.446z"/> + <path fill="#00184a" d="M211.05 214.58l.47.223-.47-.223z"/> + <path fill="#00215a" d="M216.21 214.36l.704.67-.704-.67z"/> + <path fill="#002984" d="M220.43 214.36l.704.67-.704-.67z"/> + <path fill="#21315a" d="M221.14 214.36l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M285.86 214.36l.704.67-.704-.67z"/> + <path fill="#101810" d="M286.56 214.36l.704.67-.704-.67z"/> + <path fill="#00184a" d="M287.73 214.58l.47.223-.47-.223z"/> + <path fill="#00215a" d="M288.67 214.36l.704.67-.704-.67z"/> + <path fill="#00184a" d="M289.38 214.36l.704.67-.704-.67z"/> + <path fill="#00216b" d="M290.08 214.36l.703.67-.703-.67z"/> + <path fill="#00184a" d="M295.47 214.58l.47.223-.47-.223z"/> + <path fill="#00216b" d="M305.56 214.36l.704.67-.704-.67z"/> + <path fill="#efefef" d="M200.73 215.03l.703.67-.703-.67z"/> + <path fill="#212139" d="M201.44 215.03l.703.67-.703-.67z"/> + <path fill="#00216b" d="M205.66 215.03l.703.67-.703-.67z"/> + <path fill="#002984" d="M206.36 215.03l.703.67-.703-.67z"/> + <path fill="#00184a" d="M208.94 215.25l.47.223-.47-.223z"/> + <path fill="#00216b" d="M214.1 215.03l.704.67-.704-.67z"/> + <path fill="#00184a" d="M214.8 215.03l.703.67-.703-.67z"/> + <path fill="#00216b" d="M215.51 215.03l.703.67-.703-.67z"/> + <path fill="#001039" d="M220.43 215.03l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M221.14 215.03l-.704 1.34.704-1.34z"/> + <path fill="#7b7373" d="M285.86 215.03l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M286.56 215.03l.704.67-.704-.67z"/> + <path fill="#00215a" d="M287.26 215.03l.703.67-.703-.67z"/> + <path fill="#002984" d="M290.08 215.03l.703.67-.703-.67z"/> + <path fill="#00184a" d="M291.25 215.25l.47.223-.47-.223z"/> + <path fill="#002984" d="M292.19 215.03l.703.67-.703-.67z"/> + <path fill="#00216b" d="M296.41 215.03l.703.67-.703-.67z"/> + <path fill="#00184a" d="M297.11 215.03l.704.67-.704-.67z"/> + <path fill="#002984" d="M297.82 215.03l.703.67-.703-.67z"/> + <path fill="#00184a" d="M306.26 215.03l.703.67-.703-.67z"/> + <path fill="#cecece" d="M306.96 215.03l.703.67-.703-.67z"/> + <path fill="#52525a" d="M200.73 215.7l.703.67-.703-.67z"/> + <path fill="#002984" d="M208.47 215.7l.703.67-.703-.67z"/> + <path fill="#00184a" d="M213.16 215.92l.47.223-.47-.223z"/> + <path fill="#002984" d="M214.1 215.7l.704.67-.704-.67z"/> + <path fill="#10214a" d="M219.73 215.7l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M287.26 215.7l.703.67-.703-.67z"/> + <path fill="#21315a" d="M287.97 215.7l.703.67-.703-.67z"/> + <path fill="#00216b" d="M292.19 215.7l.703.67-.703-.67z"/> + <path fill="#001039" d="M292.89 215.7l.704.67-.704-.67z"/> + <path fill="#002984" d="M293.6 215.7l.703.67-.703-.67z"/> + <path fill="#31425a" d="M306.96 215.7l.703.67-.703-.67z"/> + <path fill="#efefef" d="M307.67 215.7l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M200.03 216.37l.703.67-.703-.67z"/> + <path fill="#00216b" d="M200.73 216.37l.703.67-.703-.67m5.628 0l.703.67-.702-.67z"/> + <path fill="#00184a" d="M211.76 216.59l.47.223-.47-.223z"/> + <path fill="#00216b" d="M217.62 216.37l.704.67-.704-.67z"/> + <path fill="#21315a" d="M218.32 216.37l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M219.03 216.37l.704.67-.704-.67z"/> + <path fill="#efefef" d="M219.73 216.37l.703.67-.703-.67m68.24 0l.702.67-.703-.67z"/> + <path fill="#8c8c8c" d="M288.67 216.37l.704.67-.704-.67z"/> + <path fill="#314a7b" d="M289.38 216.37l.704.67-.704-.67z"/> + <path fill="#00216b" d="M290.08 216.37l.703.67-.703-.67m3.518 0l-.704 1.34.703-1.34z"/> + <path fill="#001039" d="M294.3 216.37l.704.67-.704-.67z"/> + <path fill="#002984" d="M295 216.37l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M307.67 216.37l.703.67-.703-.67z"/> + <path fill="#efefef" d="M199.33 217.04l.704.67-.704-.67z"/> + <path fill="#10214a" d="M200.03 217.04l.703.67-.703-.67z"/> + <path fill="#002984" d="M207.77 217.04l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#00184a" d="M210.35 217.26l.47.223-.47-.223z"/> + <path fill="#002984" d="M214.1 217.04l.704.67-.704-.67z"/> + <path fill="#00216b" d="M214.8 217.04l.703.67-.703-.67z"/> + <path fill="#00184a" d="M215.51 217.04l.703.67-.703-.67z"/> + <path fill="#42425a" d="M216.21 217.04l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M216.92 217.04l.703.67-.703-.67z"/> + <path fill="#cecece" d="M217.62 217.04l.704.67-.704-.67z"/> + <path fill="#dedede" d="M290.08 217.04l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M290.78 217.04l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M291.49 217.04l.704.67-.704-.67z"/> + <path fill="#10295a" d="M292.19 217.04l.703.67-.703-.67z"/> + <path fill="#002984" d="M293.6 217.04l.703.67-.703-.67z"/> + <path fill="#003994" d="M294.3 217.04l.704.67-.704-.67z"/> + <path fill="#00216b" d="M295 217.04l.703.67-.703-.67z"/> + <path fill="#001039" d="M295.71 217.04l.704.67-.704-.67z"/> + <path fill="#00216b" d="M296.41 217.04l.703.67-.703-.67m2.814 0l.704.67-.704-.67m8.442 0l.703.67-.704-.67z"/> + <path fill="#bdbdbd" d="M308.37 217.04l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M199.33 217.71l.704.67-.704-.67z"/> + <path fill="#00215a" d="M207.77 217.71l.704.67-.704-.67z"/> + <path fill="#00216b" d="M209.18 217.71l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#21315a" d="M211.99 217.71l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M212.69 217.71l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M214.1 217.71l.704.67-.704-.67z"/> + <path fill="#dedede" d="M214.8 217.71l.703.67-.703-.67m78.088 0l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M293.6 217.71l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M295 217.71l.703.67-.703-.67z"/> + <path fill="#21315a" d="M295.71 217.71l.704.67-.704-.67z"/> + <path fill="#002984" d="M298.52 217.71l.703.67-.703-.67z"/> + <path fill="#42425a" d="M308.37 217.71l.704.67-.704-.67z"/> + <path fill="#dedede" d="M198.62 218.38l.703.67-.703-.67z"/> + <path fill="#10295a" d="M199.33 218.38l.704.67-.704-.67z"/> + <path fill="#00215a" d="M204.96 218.38l.704.67-.704-.67z"/> + <path fill="#21315a" d="M209.88 218.38l.703.67-.703-.67z"/> + <path fill="#52525a" d="M210.58 218.38l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M211.29 218.38l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M214.1 218.38l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M292.19 218.38l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M292.89 218.38l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M295.47 218.6l.47.223-.47-.223z"/> + <path fill="#8c8c8c" d="M296.41 218.38l.703.67-.703-.67z"/> + <path fill="#292921" d="M297.11 218.38l.704.67-.704-.67z"/> + <path fill="#080829" d="M297.82 218.38l.703.67-.703-.67z"/> + <path fill="#00216b" d="M301.33 218.38l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M309.07 218.38l.703.67-.703-.67z"/> + <path fill="#63636b" d="M198.62 219.05l.703.67-.703-.67z"/> + <path fill="#00215a" d="M200.73 219.05l.703.67-.703-.67z"/> + <path fill="#00184a" d="M201.91 219.27l.47.223-.47-.223z"/> + <path fill="#00216b" d="M202.85 219.05l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M209.18 219.05l.703.67-.703-.67z"/> + <path fill="#efefef" d="M209.88 219.05l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M298.52 219.05l.703.67-.703-.67z"/> + <path fill="#10295a" d="M299.22 219.05l.704.67-.704-.67z"/> + <path fill="#00216b" d="M303.45 219.05l.703.67-.703-.67z"/> + <path fill="#00184a" d="M304.62 219.27l.47.223-.47-.223z"/> + <path fill="#002984" d="M305.79 219.49l.235.446-.235-.446z"/> + <path fill="#212139" d="M309.07 219.05l.703.67-.703-.67z"/> + <path fill="#dedede" d="M197.92 219.71l.703.67-.703-.67z"/> + <path fill="#10214a" d="M207.77 219.71l.704.67-.704-.67z"/> + <path fill="#cecece" d="M208.47 219.71l-.704 1.34.704-1.34m90.75 0l1.408 1.34-1.407-1.34z"/> + <path fill="#10214a" d="M299.93 219.71l.704.67-.704-.67z"/> + <path fill="#00184a" d="M306.26 219.71l.703.67-.703-.67z"/> + <path fill="#00216b" d="M306.96 219.71l2.814 2.678-2.814-2.678z"/> + <path fill="#002984" d="M309.07 219.71l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M309.78 219.71l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M197.92 220.38l.703.67-.703-.67z"/> + <path fill="#001039" d="M198.62 220.38l.703.67-.703-.67z"/> + <path fill="#10295a" d="M207.07 220.38l.703.67-.703-.67z"/> + <path fill="#101831" d="M300.63 220.38l.703.67-.703-.67z"/> + <path fill="#42425a" d="M309.78 220.38l.703.67-.703-.67z"/> + <path fill="#efefef" d="M197.22 221.05l.703.67-.703-.67z"/> + <path fill="#101829" d="M197.92 221.05l.703.67-.703-.67z"/> + <path fill="#002984" d="M206.36 221.05l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M207.07 221.05l.703.67-.703-.67z"/> + <path fill="#cecece" d="M213.4 221.05l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M214.1 221.05v.67h80.902l-24.622-.67H214.1m86.53 0l.703.67-.703-.67z"/> + <path fill="#00215a" d="M301.33 221.05l.703.67-.703-.67z"/> + <path fill="#00216b" d="M309.78 221.05l.703.67-.703-.67z"/> + <path fill="#dedede" d="M310.48 221.05l.703.67-.703-.67z"/> + <path fill="#424242" d="M197.22 221.72l.703.67-.703-.67z"/> + <path fill="#002984" d="M197.92 221.72l.703.67-.703-.67z"/> + <path fill="#52525a" d="M206.36 221.72l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M213.4 221.72l3.518 3.347-3.518-3.347z"/> + <path fill="#00216b" d="M214.1 221.72l2.11 2.008-2.11-2.008z"/> + <path fill="#003994" d="M214.8 221.72l5.907 7.363.424 26.106h6.333c0-8.335 1.86-16.855-4.22-23.43l8.44 5.355-3.517-10.04 19.698 18.742-14.773-22.76 14.07 18.075h.705V221.72H214.8z"/> + <path fill="#00184a" d="M247.87 221.72v20.082h.703l-.703-20.082z"/> + <path fill="#631808" d="M259.83 221.72v20.082h.704l-.704-20.082z"/> + <path fill="#de2110" d="M260.53 221.72v18.743l14.773-17.404-14.773 22.758 20.4-18.743-4.22 9.371 8.442-5.355c-4.55 8.335-4.22 14.558-4.22 24.1h6.33l.424-26.107 5.908-7.363H260.53z"/> + <path fill="#b51010" d="M293.6 221.72l.703.67-.703-.67z"/> + <path fill="#63636b" d="M294.3 221.72l-1.407 2.008 1.407-2.008z"/> + <path fill="#8c8c8c" d="M301.33 221.72l.703.67-.703-.67z"/> + <path fill="#002984" d="M302.04 221.72l.704.67-.704-.67z"/> + <path fill="#63636b" d="M310.48 221.72l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M196.51 222.39l.704.67-.704-.67z"/> + <path fill="#000818" d="M197.22 222.39l.703.67-.703-.67z"/> + <path fill="#00184a" d="M205.66 222.39l.703.67-.703-.67z"/> + <path fill="#efefef" d="M206.36 222.39l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M292.89 222.39l.704.67-.704-.67z"/> + <path fill="#21315a" d="M302.04 222.39l.704.67-.704-.67z"/> + <path fill="#00184a" d="M309.07 222.39l.703.67-.703-.67z"/> + <path fill="#10214a" d="M310.48 222.39l.703.67-.703-.67z"/> + <path fill="#efefef" d="M311.18 222.39l.704.67-.704-.67z"/> + <path fill="#313931" d="M196.51 223.06l.704.67-.704-.67z"/> + <path fill="#00216b" d="M197.22 223.06l.703.67-.703-.67z"/> + <path fill="#63636b" d="M205.66 223.06l.703.67-.703-.67z"/> + <path fill="#002984" d="M233.1 223.06l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M302.04 223.06l.704.67-.704-.67z"/> + <path fill="#00184a" d="M310.01 223.51l.235.446-.235-.446z"/> + <path fill="#9c9494" d="M311.18 223.06l.704.67-.704-.67m-115.14 1.116l.235.446-.235-.446z"/> + <path fill="#292921" d="M196.51 223.73l.704.67-.704-.67z"/> + <path fill="#00216b" d="M204.96 223.73l.704.67-.704-.67z"/> + <path fill="#cecece" d="M205.66 223.73l.703.67-.703-.67z"/> + <path fill="#00215a" d="M216.21 223.73l.704.67-.704-.67z"/> + <path fill="#001039" d="M233.1 223.73l.704.67-.704-.67z"/> + <path fill="#212139" d="M233.8 223.73l1.407 1.34-1.407-1.34z"/> + <path fill="#100808" d="M274.6 223.73l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M292.19 223.73l-4.22 4.686 4.22-4.686z"/> + <path fill="#efefef" d="M302.04 223.73l.704.67-.704-.67z"/> + <path fill="#10295a" d="M302.74 223.73l.704.67-.704-.67z"/> + <path fill="#31425a" d="M311.18 223.73l.704.67-.704-.67z"/> + <path fill="#10295a" d="M196.51 224.4l.704.67-.704-.67z"/> + <path fill="#42425a" d="M204.96 224.4l.704.67-.704-.67z"/> + <path fill="#001039" d="M216.92 224.4l.703.67-.703-.67z"/> + <path fill="#002984" d="M233.1 224.4l.704.67-.704-.67z"/> + <path fill="#6b5a00" d="M233.8 224.4l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M273.19 224.4l.703.67-.703-.67z"/> + <path fill="#7b5a00" d="M273.9 224.4l.703.67-.703-.67z"/> + <path fill="#63636b" d="M302.74 224.4l.704.67-.704-.67z"/> + <path fill="#00216b" d="M311.18 224.4l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M311.89 224.4l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M195.81 225.07l.703.67-.703-.67z"/> + <path fill="#002984" d="M204.25 225.07l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M204.96 225.07l.704.67-.704-.67z"/> + <path fill="#cecece" d="M216.92 225.07l3.518 3.347-3.518-3.347z"/> + <path fill="#10214a" d="M217.62 225.07l.704.67-.704-.67z"/> + <path fill="#392121" d="M233.8 225.07l.703.67-.703-.67z"/> + <path fill="#cea508" d="M234.74 225.52l.235.446-.235-.446z"/> + <path fill="#293129" d="M235.21 225.07l1.407 1.34-1.407-1.34z"/> + <path fill="#631808" d="M272.49 225.07l.703.67-.703-.67z"/> + <path fill="#634a00" d="M273.9 225.07l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M274.6 225.07l.704.67-.704-.67z"/> + <path fill="#dedede" d="M302.74 225.07l.704.67-.704-.67z"/> + <path fill="#00216b" d="M303.45 225.07l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M311.89 225.07l.703.67-.703-.67z"/> + <path fill="#42425a" d="M195.81 225.74l.703.67-.703-.67z"/> + <path fill="#21315a" d="M204.25 225.74l.703.67-.703-.67z"/> + <path fill="#10214a" d="M218.32 225.74l.703.67-.703-.67z"/> + <path fill="#00216b" d="M233.8 225.74l.703.67-.703-.67z"/> + <path fill="#efbd08" d="M235.21 225.74l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M271.79 225.74l.704.67-.704-.67z"/> + <path fill="#efbd08" d="M273.19 225.74l.703.67-.703-.67z"/> + <path fill="#631808" d="M273.9 225.74l.703.67-.703-.67z"/> + <path fill="#42425a" d="M303.45 225.74l.703.67-.703-.67z"/> + <path fill="#10214a" d="M311.89 225.74l.703.67-.703-.67z"/> + <path fill="#efefef" d="M195.11 226.41l.703.67-.703-.67z"/> + <path fill="#00215a" d="M195.81 226.41l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M204.25 226.41l.703.67-.703-.67z"/> + <path fill="#10214a" d="M219.03 226.41l.704.67-.704-.67z"/> + <path fill="#634a00" d="M234.5 226.41l.703.67-.703-.67z"/> + <path fill="#deb508" d="M235.21 226.41l.703.67-.703-.67z"/> + <path fill="#292100" d="M235.91 226.41l.704.67-.704-.67z"/> + <path fill="#211800" d="M271.79 226.41l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M273.9 226.41l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M303.45 226.41l.703.67-.703-.67z"/> + <path fill="#002984" d="M304.15 226.41l.703.67-.703-.67z"/> + <path fill="#00216b" d="M311.89 226.41l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M312.59 226.41l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M195.11 227.08l.703.67-.703-.67z"/> + <path fill="#002984" d="M195.81 227.08l.703.67-.703-.67z"/> + <path fill="#00216b" d="M203.55 227.08l.703.67-.703-.67z"/> + <path fill="#cecece" d="M204.25 227.08l.703.67-.703-.67z"/> + <path fill="#10214a" d="M219.73 227.08l.703.67-.703-.67z"/> + <path fill="#00184a" d="M228.41 227.52l.235.446-.235-.446z"/> + <path fill="#10295a" d="M234.5 227.08l.703.67-.703-.67z"/> + <path fill="#000818" d="M235.21 227.08l.703.67-.703-.67z"/> + <path fill="#392100" d="M235.91 227.08l1.407 1.34-1.407-1.34z"/> + <path fill="#00184a" d="M236.61 227.08l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M271.08 227.08l.703.67-.703-.67z"/> + <path fill="#392100" d="M271.79 227.08l.704.67-.704-.67z"/> + <path fill="#210800" d="M272.49 227.08l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M273.19 227.08l.703.67-.703-.67z"/> + <path fill="#631808" d="M279.53 227.08l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M280.23 227.08l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M287.97 227.08l.703.67-.703-.67z"/> + <path fill="#00184a" d="M304.15 227.08l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M312.59 227.08l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M195.11 227.75l.703.67-.703-.67z"/> + <path fill="#21315a" d="M203.55 227.75l.703.67-.703-.67z"/> + <path fill="#10295a" d="M220.43 227.75l.704.67-.704-.67z"/> + <path fill="#102110" d="M228.87 227.75l.703.67-.703-.67z"/> + <path fill="#002984" d="M229.58 227.75l.703.67-.703-.67z"/> + <path fill="#101810" d="M235.91 227.75l.704.67-.704-.67z"/> + <path fill="#00216b" d="M237.32 227.75l.703.67-.703-.67z"/> + <path fill="#b51010" d="M270.38 227.75l.703.67-.703-.67z"/> + <path fill="#211800" d="M271.55 227.97l.47.223-.47-.223z"/> + <path fill="#b51010" d="M272.49 227.75l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M278.12 227.75l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M278.82 227.75l.703.67-.703-.67z"/> + <path fill="#310000" d="M279.53 227.75l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M287.26 227.75l.703.67-.703-.67z"/> + <path fill="#42425a" d="M304.15 227.75l.703.67-.703-.67z"/> + <path fill="#314a7b" d="M312.59 227.75l.703.67-.703-.67z"/> + <path fill="#10214a" d="M195.11 228.42l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M203.55 228.42l.703.67-.703-.67z"/> + <path fill="#42425a" d="M220.43 228.42v27.445h.704c0-7.83 2.47-20.25-.704-27.445z"/> + <path fill="#634a00" d="M228.87 228.42l.703.67-.703-.67z"/> + <path fill="#8c7300" d="M229.58 228.42l.703.67-.703-.67z"/> + <path fill="#10214a" d="M230.28 228.42l.704.67-.704-.67z"/> + <path fill="#002984" d="M235.91 228.42l.704.67-.704-.67z"/> + <path fill="#211800" d="M236.61 228.42l.703.67-.703-.67z"/> + <path fill="#181000" d="M237.32 228.42l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M269.68 228.42l.703.67-.703-.67z"/> + <path fill="#311000" d="M270.38 228.42l.703.67-.703-.67z"/> + <path fill="#392100" d="M271.08 228.42l-1.407 2.008 1.407-2.008z"/> + <path fill="#7b1008" d="M271.79 228.42l.704.67-.704-.67m5.628 0l.704.67-.704-.67z"/> + <path fill="#7b5a00" d="M278.12 228.42l.703.67-.703-.67z"/> + <path fill="#6b5a00" d="M278.82 228.42l.703.67-.703-.67z"/> + <path fill="#b51010" d="M279.53 228.42l.703.67-.703-.67z"/> + <path fill="#631808" d="M287.26 228.42v26.776h.703c0-7.654 2.4-19.74-.703-26.776z"/> + <path fill="#8c8c8c" d="M304.15 228.42l.703.67-.703-.67z"/> + <path fill="#00216b" d="M312.59 228.42l.703.67-.703-.67z"/> + <path fill="#dedede" d="M313.29 228.42l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M194.4 229.09l.703.67-.703-.67z"/> + <path fill="#00216b" d="M195.11 229.09l.703.67-.703-.67z"/> + <path fill="#002984" d="M202.85 229.09l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M203.55 229.09l.703.67-.703-.67z"/> + <path fill="#00215a" d="M228.87 229.09l.703.67-.703-.67z"/> + <path fill="#bd9408" d="M229.58 229.09l.703.67-.703-.67z"/> + <path fill="#cea508" d="M230.28 229.09l.704.67-.704-.67z"/> + <path fill="#293129" d="M230.99 229.09l.703.67-.703-.67z"/> + <path fill="#002984" d="M231.69 229.09l.703.67-.703-.67z"/> + <path fill="#00184a" d="M236.61 229.09l.703.67-.703-.67z"/> + <path fill="#392100" d="M237.32 229.09l1.407 1.34-1.407-1.34z"/> + <path fill="#101829" d="M238.02 229.09l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M269.68 229.09l.703.67-.703-.67z"/> + <path fill="#420000" d="M271.08 229.09l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M276.01 229.09l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M276.71 229.09l.703.67-.703-.67z"/> + <path fill="#bd9408" d="M277.42 229.09l.704.67-.704-.67z"/> + <path fill="#efbd08" d="M278.12 229.09l.703.67-.703-.67z"/> + <path fill="#631808" d="M278.82 229.09l.703.67-.703-.67z"/> + <path fill="#cecece" d="M304.15 229.09l.703.67-.703-.67z"/> + <path fill="#00216b" d="M304.85 229.09l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M313.29 229.09l.703.67-.703-.67m-118.89.67l.703.67-.703-.67z"/> + <path fill="#00215a" d="M202.85 229.76l.703.67-.703-.67z"/> + <path fill="#dedede" d="M203.55 229.76l.703.67-.703-.67z"/> + <path fill="#313918" d="M229.58 229.76l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M230.28 229.76l.704.67-.704-.67z"/> + <path fill="#ad8c08" d="M230.99 229.76l.703.67-.703-.67z"/> + <path fill="#00215a" d="M231.69 229.76l.703.67-.703-.67z"/> + <path fill="#101829" d="M237.32 229.76l.703.67-.703-.67z"/> + <path fill="#00184a" d="M238.72 229.76l.704.67-.704-.67z"/> + <path fill="#941808" d="M268.97 229.76l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M271.08 229.76l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M276.01 229.76l.703.67-.703-.67z"/> + <path fill="#7b5a00" d="M276.71 229.76l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M277.42 229.76l.704.67-.704-.67z"/> + <path fill="#634a00" d="M278.12 229.76l-.704 1.34.704-1.34z"/> + <path fill="#ce2110" d="M278.82 229.76l.703.67-.703-.67z"/> + <path fill="#10214a" d="M304.85 229.76l.703.67-.703-.67z"/> + <path fill="#00216b" d="M306.26 229.76l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M313.29 229.76l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M193.7 230.43l.704.67-.704-.67z"/> + <path fill="#dedede" d="M194.4 230.43l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M195.11 230.43l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M195.81 230.43l.703.67-.703-.67z"/> + <path fill="#42425a" d="M196.51 230.43l.704.67-.704-.67z"/> + <path fill="#00184a" d="M197.22 230.43l.703.67-.703-.67z"/> + <path fill="#002984" d="M197.92 230.43l.703.67-.703-.67z"/> + <path fill="#314a7b" d="M202.85 230.43l.703.67-.703-.67z"/> + <path fill="#002984" d="M229.58 230.43l.703.67-.703-.67z"/> + <path fill="#423100" d="M230.28 230.43l.704.67-.704-.67z"/> + <path fill="#211800" d="M230.99 230.43l.703.67-.703-.67z"/> + <path fill="#181000" d="M231.69 230.43l.703.67-.703-.67z"/> + <path fill="#002984" d="M232.39 230.43l.703.67-.703-.67z"/> + <path fill="#181000" d="M238.02 230.43l.703.67-.703-.67z"/> + <path fill="#211800" d="M238.72 230.43l.704.67-.704-.67z"/> + <path fill="#002984" d="M239.43 230.43l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M268.27 230.43l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M270.38 230.43l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M275.31 230.43l-.704 1.34.704-1.34z"/> + <path fill="#211800" d="M276.71 230.43l.703.67-.703-.67z"/> + <path fill="#631808" d="M278.12 230.43l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M304.85 230.43l.703.67-.703-.67z"/> + <path fill="#000818" d="M306.26 230.43l.703.67-.703-.67z"/> + <path fill="#002984" d="M309.78 230.43l.703.67-.703-.67z"/> + <path fill="#00184a" d="M310.48 230.43l.703.67-.703-.67z"/> + <path fill="#314a7b" d="M311.18 230.43l.704.67-.704-.67z"/> + <path fill="#636b7b" d="M311.89 230.43l.703.67-.703-.67z"/> + <path fill="#63636b" d="M312.59 230.43l.703.67-.703-.67z"/> + <path fill="#cecece" d="M313.29 230.43l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M195.11 231.09l.703.67-.703-.67z"/> + <path fill="#dedede" d="M195.81 231.09l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M196.51 231.09l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M198.62 231.09l.703.67-.703-.67z"/> + <path fill="#314a7b" d="M199.33 231.09l.704.67-.704-.67z"/> + <path fill="#00216b" d="M200.03 231.09l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M202.85 231.09l.703.67-.703-.67z"/> + <path fill="#cecece" d="M204.25 231.09l.703.67-.703-.67z"/> + <path fill="#efefef" d="M204.96 231.09l.704.67-.704-.67z"/> + <path fill="#001039" d="M230.99 231.09l2.11 2.008-2.11-2.008z"/> + <path fill="#392100" d="M231.69 231.09l4.925 4.686-4.925-4.686z"/> + <path fill="#001010" d="M232.39 231.09l.703.67-.703-.67z"/> + <path fill="#00216b" d="M238.02 231.09l.703.67-.703-.67z"/> + <path fill="#392100" d="M238.72 231.09l2.11 2.008-2.11-2.008z"/> + <path fill="#101810" d="M239.43 231.09l.703.67-.703-.67z"/> + <path fill="#310000" d="M268.27 231.09l1.407 1.34-1.407-1.34z"/> + <path fill="#392100" d="M268.97 231.09l.704.67-.704-.67z"/> + <path fill="#631808" d="M269.68 231.09l.703.67-.703-.67z"/> + <path fill="#420000" d="M276.71 231.09l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M277.42 231.09l.704.67-.704-.67m7.035 0l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M304.85 231.09l.703.67-.703-.67z"/> + <path fill="#001000" d="M306.26 231.09l.703.67-.703-.67z"/> + <path fill="#00216b" d="M307.67 231.09l.703.67-.703-.67z"/> + <path fill="#21315a" d="M308.37 231.09l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M309.07 231.09l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M311.65 231.32l.47.223-.47-.223z"/> + <path fill="#cecece" d="M193 231.76l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M193.7 231.76l.704.67-.704-.67z"/> + <path fill="#cecece" d="M195.81 231.76l1.407 1.34-1.407-1.34z"/> + <path fill="#ada5a5" d="M196.51 231.76l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M197.22 231.76l2.11 2.678-2.11-2.678z"/> + <path fill="#9c9494" d="M197.92 231.76l.703.67-.703-.67z"/> + <path fill="#efefef" d="M199.09 231.99l.47.223-.47-.223z"/> + <path fill="#dedede" d="M200.03 231.76l-.704 1.34.704-1.34z"/> + <path fill="#8c8c8c" d="M200.73 231.76l2.11 3.347-2.11-3.347z"/> + <path fill="#314a7b" d="M201.44 231.76l.703.67-.703-.67z"/> + <path fill="#00184a" d="M202.14 231.76l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M202.85 231.76l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M204.25 231.76l.703.67-.703-.67z"/> + <path fill="#63636b" d="M204.96 231.76l.704.67-.704-.67z"/> + <path fill="#002984" d="M284.02 231.3l.703.67-.703-.67z"/> + <path fill="#000818" d="M223.95 231.76l.704.67-.704-.67z"/> + <path fill="#00216b" d="M224.65 231.76l.704.67-.704-.67z"/> + <path fill="#001010" d="M233.1 231.76l.704.67-.704-.67z"/> + <path fill="#001039" d="M238.72 231.76l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#631808" d="M267.57 231.76l.703.67-.703-.67z"/> + <path fill="#392100" d="M268.27 231.76l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M274.6 231.76l-1.407 2.008 1.407-2.008z"/> + <path fill="#392100" d="M275.31 231.76l-2.11 2.678 2.11-2.678z"/> + <path fill="#ce2110" d="M276.71 231.76l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M283.04 231.76l.704.67-.704-.67z"/> + <path fill="#310000" d="M283.75 231.76l.703.67-.703-.67z"/> + <path fill="#941808" d="M284.45 231.76l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M296.64 232.21l.235.446-.235-.446z"/> + <path fill="#dedede" d="M299.93 231.76l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M300.63 231.76l.703.67-.703-.67z"/> + <path fill="#dedede" d="M304.85 231.76l.703.67-.703-.67z"/> + <path fill="#080829" d="M305.56 231.76l.704.67-.704-.67z"/> + <path fill="#184a00" d="M306.26 231.76l.703.67-.703-.67z"/> + <path fill="#424242" d="M306.96 231.76l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M307.67 231.76l1.407 1.34-1.407-1.34z"/> + <path fill="#cecece" d="M308.37 231.76l.704.67-.704-.67z"/> + <path fill="#424242" d="M310.48 231.76l.703.67-.703-.67z"/> + <path fill="#cecece" d="M311.18 231.76l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M193 232.43l.703.67-.703-.67z"/> + <path fill="#dedede" d="M193.7 232.43l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M195.81 232.43l.703.67-.703-.67m4.925 0l.703.67-.704-.67z"/> + <path fill="#dedede" d="M201.91 232.66l.47.223-.47-.223z"/> + <path fill="#cecece" d="M203.55 232.43l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.25 232.43l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.96 232.43l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M205.66 232.43l.703.67-.703-.67z"/> + <path fill="#00184a" d="M223.95 232.43l.704.67-.704-.67z"/> + <path fill="#8c7300" d="M224.65 232.43l.704.67-.704-.67z"/> + <path fill="#392121" d="M225.36 232.43l.703.67-.703-.67z"/> + <path fill="#002984" d="M226.06 232.43l.703.67-.703-.67z"/> + <path fill="#00184a" d="M231.69 232.43v4.686h.703l-.703-4.686z"/> + <path fill="#001010" d="M233.8 232.43l.703.67-.703-.67m5.628 0l.703.67-.702-.67z"/> + <path fill="#00215a" d="M240.83 232.43l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M266.86 232.43l.703.67-.703-.67z"/> + <path fill="#211800" d="M266.86 233.77l2.11-.67-2.11.67z"/> + <path fill="#bd2110" d="M268.97 232.43l.704.67-.704-.67z"/> + <path fill="#001010" d="M275.31 232.43l-.704 1.34.704-1.34z"/> + <path fill="#6b1821" d="M276.01 232.43l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M281.64 232.43l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M282.34 232.43l1.407 1.34-1.407-1.34z"/> + <path fill="#8c7300" d="M283.04 232.43l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M283.75 232.43l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M297.11 232.43l-.703 1.34.703-1.34z"/> + <path fill="#101810" d="M300.63 232.43l.703.67-.703-.67z"/> + <path fill="#efefef" d="M301.33 232.43l.703.67-.703-.67m3.283.223l.47.223-.47-.223z"/> + <path d="M305.56 232.43l.704.67-.704-.67z"/> + <path fill="#297b00" d="M306.26 232.43l.703.67-.703-.67z"/> + <path fill="#313931" d="M306.96 232.43l.703.67-.703-.67z"/> + <path fill="#cecece" d="M307.67 232.43l.703.67-.703-.67z"/> + <path fill="#52525a" d="M310.48 232.43l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M311.18 232.43l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M193 233.1l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M194.17 233.33l.47.223-.47-.223m2.814 0l.47.223-.47-.223z"/> + <path fill="#ada5a5" d="M199.33 233.1l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M200.03 233.1l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M201.44 233.1l.703.67-.703-.67z"/> + <path fill="#efefef" d="M202.85 233.1l.703.67-.703-.67z"/> + <path fill="#314231" d="M203.55 233.1l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.25 233.1l.703.67-.703-.67z"/> + <path fill="#428c00" d="M204.96 233.1l-1.407 5.355h-.703l1.407-4.686h-.704l-.703 5.354 2.814-1.338-3.518 5.355 2.814-2.007-3.517 2.677-.704 3.347h.703l7.035-8.032-2.11.67v-.67l2.11-.67v-.67h-2.814l-.704-4.685z"/> + <path fill="#5a6b52" d="M205.66 233.1l.703.67-.703-.67z"/> + <path fill="#102121" d="M224.65 233.1l.704.67-.704-.67z"/> + <path fill="#efbd08" d="M225.36 233.1l.703.67-.703-.67z"/> + <path fill="#ad8c08" d="M226.06 233.1l.703.67-.703-.67z"/> + <path fill="#102121" d="M226.76 233.1l.704.67-.704-.67z"/> + <path fill="#002984" d="M227.47 233.1l.704.67-.704-.67z"/> + <path fill="#003994" d="M232.39 233.1c.067 5.37 3.225 7.87 7.738 10.71-.357-4.51-4.177-7.979-7.738-10.71z"/> + <path fill="#001010" d="M233.1 233.1l.704.67-.704-.67z"/> + <path fill="#001039" d="M234.5 233.1l.703.67-.703-.67z"/> + <path fill="#002984" d="M239.43 233.1l.703.67-.703-.67z"/> + <path fill="#211800" d="M240.6 233.33l.47.223-.47-.223z"/> + <path fill="#002984" d="M241.54 233.1l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M266.16 233.1l.704.67-.704-.67z"/> + <path fill="#392100" d="M267.57 233.1l-1.407 2.008 1.407-2.008z"/> + <path fill="#941808" d="M268.27 233.1l.703.67-.703-.67z"/> + <path fill="#003994" d="M275.31 233.1l-7.035 10.71c3.894-2.317 9.184-5.778 7.035-10.71z"/> + <path fill="#ce2110" d="M280.23 233.1l.704.67-.704-.67z"/> + <path fill="#6b2908" d="M280.93 233.1l.703.67-.703-.67z"/> + <path fill="#9c7b08" d="M281.64 233.1l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M282.34 233.1l-.703 1.34.703-1.34z"/> + <path fill="#ce2110" d="M283.75 233.1l.703.67-.703-.67z"/> + <path fill="#294221" d="M300.63 233.1l1.407 1.34-1.407-1.34z"/> + <path fill="#8c8c8c" d="M301.33 233.1l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M304.62 233.33l.47.223-.47-.223z"/> + <path fill="#103910" d="M305.56 233.1l.704.67-.704-.67z"/> + <path fill="#319400" d="M306.26 233.1l.703 14.057h.704l2.11-12.05h-.703l-1.407 8.034h-.703l-.704-10.04z"/> + <path fill="#424242" d="M306.96 233.1l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M307.67 233.1l.703.67-.703-.67z"/> + <path fill="#185200" d="M309.78 233.1l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M311.18 233.1l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M312.59 233.1l.703.67-.703-.67z"/> + <path fill="#cecece" d="M313.29 233.1l-.703 1.34.703-1.34z"/> + <path fill="#ada5a5" d="M315.4 233.1l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M193 233.77l2.11 2.008-2.11-2.008z"/> + <path fill="#cecece" d="M194.4 233.77l.703 2.008h.704l-1.407-2.008z"/> + <path fill="#9c9494" d="M195.11 233.77l.703.67-.703-.67z"/> + <path fill="#dedede" d="M197.22 233.77l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M197.92 233.77l-.703 1.34.703-1.34z"/> + <path fill="#425242" d="M199.33 233.77l.704.67-.704-.67z"/> + <path fill="#213918" d="M200.03 233.77l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M200.73 233.77l.703.67-.703-.67z"/> + <path fill="#63636b" d="M202.85 233.77l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.49 234.22l.235.446-.235-.446z"/> + <path fill="#295200" d="M205.66 233.77l.703.67-.703-.67z"/> + <path fill="#dedede" d="M206.36 233.77l.703.67-.703-.67z"/> + <path fill="#4a4208" d="M225.36 233.77l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M226.06 233.77l.703.67-.703-.67z"/> + <path fill="#bd9408" d="M226.76 233.77l.704.67-.704-.67z"/> + <path fill="#00184a" d="M227.47 233.77l.704.67-.704-.67z"/> + <path fill="#001010" d="M233.8 233.77l.703.67-.703-.67z"/> + <path fill="#001039" d="M235.21 233.77l.703.67-.703-.67z"/> + <path fill="#00215a" d="M240.13 233.77l.703.67-.703-.67z"/> + <path fill="#392100" d="M240.83 233.77l1.407 1.34-1.407-1.34z"/> + <path fill="#001010" d="M241.54 233.77l.704.67-.704-.67z"/> + <path fill="#efefef" d="M255.61 233.77l.704.67-.704-.67z"/> + <path fill="#420000" d="M266.16 233.77l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M267.57 233.77l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M272.49 233.77l.703.67-.703-.67z"/> + <path fill="#181000" d="M273.9 233.77l-1.407 2.008 1.407-2.008z"/> + <path fill="#002984" d="M274.6 233.77l.704.67-.704-.67z"/> + <path fill="#941808" d="M280.23 233.77l.704.67-.704-.67z"/> + <path fill="#7b5a00" d="M280.93 233.77l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#b51010" d="M283.04 233.77l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M296.41 233.77l.703.67-.703-.67z"/> + <path fill="#103910" d="M297.11 233.77l.704.67-.704-.67z"/> + <path fill="#dedede" d="M297.82 233.77l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M300.63 233.77l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M304.85 233.77l.703.67-.703-.67z"/> + <path fill="#185200" d="M305.56 233.77l.704.67-.704-.67z"/> + <path fill="#7b8c73" d="M306.96 233.77l.703.67-.703-.67z"/> + <path fill="#395231" d="M309.07 233.77l.703.67-.703-.67z"/> + <path fill="#319400" d="M309.78 233.77l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M313.29 233.77l.703.67-.703-.67z"/> + <path fill="#63636b" d="M314.7 233.77l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M315.4 233.77l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M193 234.44l.703.67-.703-.67z"/> + <path fill="#cecece" d="M197.92 234.44l.703.67-.703-.67z"/> + <path fill="#424242" d="M198.62 234.44l.703.67-.703-.67z"/> + <path fill="#295200" d="M199.33 234.44l.704.67-.704-.67z"/> + <path fill="#294200" d="M200.03 234.44l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M200.73 234.44l1.407 1.34-1.407-1.34z"/> + <path fill="#397b00" d="M202.85 234.44l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M206.36 234.44l.703.67-.703-.67z"/> + <path fill="#002984" d="M225.36 234.44l1.407 1.34-1.407-1.34z"/> + <path fill="#6b5a00" d="M226.06 234.44l.703.67-.703-.67z"/> + <path fill="#211800" d="M226.76 234.44l2.11 1.34-2.11-1.34z"/> + <path fill="#00216b" d="M228.17 234.44l.703.67-.703-.67z"/> + <path fill="#001010" d="M234.5 234.44l.703.67-.703-.67z"/> + <path fill="#001039" d="M235.91 234.44l.704.67-.704-.67m4.925 0l.703.67-.704-.67z"/> + <path fill="#00184a" d="M242.24 234.44l.703.67-.703-.67z"/> + <path fill="#bd9408" d="M253.5 234.44v.67l1.407 2.677h.703l-2.11-3.347z"/> + <path fill="#7b1008" d="M265.46 234.44l.703.67-.703-.67z"/> + <path fill="#311000" d="M266.86 234.44l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M267.57 234.44l.703.67-.703-.67z"/> + <path fill="#941808" d="M271.79 234.44l-.703 1.34.703-1.34z"/> + <path fill="#211800" d="M272.49 234.44l.703.67-.703-.67z"/> + <path fill="#002984" d="M273.9 234.44l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M279.53 234.44l.703.67-.703-.67z"/> + <path fill="#211800" d="M280.23 234.44l-1.407 2.008 1.407-2.008z"/> + <path fill="#181000" d="M280.93 234.44l.703.67-.703-.67z"/> + <path fill="#6b5a00" d="M281.64 234.44l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M282.34 234.44l.703.67-.703-.67z"/> + <path fill="#dedede" d="M296.41 234.44l.703.67-.703-.67z"/> + <path fill="#185200" d="M297.11 234.44l.704.67-.704-.67z"/> + <path fill="#425242" d="M297.82 234.44l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M300.63 234.44l.703.67-.703-.67z"/> + <path fill="#296300" d="M301.33 234.44l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M302.04 234.44l.704.67-.704-.67z"/> + <path fill="#313931" d="M304.85 234.44l.703.67-.703-.67z"/> + <path fill="#297b00" d="M305.56 234.44l.704.67-.704-.67z"/> + <path fill="#4a6342" d="M306.96 234.44v3.347h.703l-.703-3.347z"/> + <path fill="#7b7373" d="M308.37 234.44l.704.67-.704-.67z"/> + <path fill="#297b00" d="M309.54 234.66l.47.223-.47-.223z"/> + <path fill="#63636b" d="M310.48 234.44l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M311.18 234.44l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M312.36 234.66l.47.223-.47-.223z"/> + <path fill="#8c8c8c" d="M313.29 234.44l-.703 1.34.703-1.34z"/> + <path fill="#7b7373" d="M314 234.44l.704.67-.704-.67z"/> + <path fill="#103910" d="M314.7 234.44l.703.67-.703-.67z"/> + <path fill="#efefef" d="M315.4 234.44l.703.67-.703-.67z"/> + <path fill="#cecece" d="M192.29 235.11l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M193 235.11l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M195.81 235.11l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M197.92 235.11l.703.67-.703-.67z"/> + <path fill="#001000" d="M198.62 235.11l.703.67-.703-.67z"/> + <path fill="#397b00" d="M199.33 235.11v2.008l2.11-.67v-.67l-2.11-.668z"/> + <path fill="#213918" d="M200.73 235.11l.703.67-.703-.67z"/> + <path fill="#294200" d="M202.14 235.11l.704.67-.704-.67z"/> + <path fill="#397b00" d="M204.02 235.33l.47.223-.47-.223z"/> + <path fill="#8c8c8c" d="M206.36 235.11l.703.67-.703-.67z"/> + <path fill="#00216b" d="M226.76 235.11l.704.67-.704-.67z"/> + <path fill="#00184a" d="M228.87 235.11l.703.67-.703-.67z"/> + <path fill="#002984" d="M234.5 235.11l2.11 2.008-2.11-2.008z"/> + <path fill="#181000" d="M235.21 235.11l.703.67-.703-.67z"/> + <path fill="#00184a" d="M236.61 235.11l.703.67-.703-.67z"/> + <path fill="#181000" d="M241.54 235.11l.704.67-.704-.67z"/> + <path fill="#211800" d="M242.48 235.56l.235.446-.235-.446z"/> + <path fill="#00216b" d="M242.94 235.11l.703.67-.703-.67z"/> + <path fill="#7b5a00" d="M252.79 235.11v2.678h.704l-.704-2.678z"/> + <path fill="#ffce08" d="M253.5 235.11v3.347h-2.814v2.008h2.814v8.033h.704l.703-8.033h3.517v-2.008h-3.517v-3.347H253.5z"/> + <path fill="#b51010" d="M264.75 235.11l.703.67-.703-.67z"/> + <path fill="#211800" d="M265.93 235.33l.47.223-.47-.223z"/> + <path fill="#b51010" d="M266.86 235.11l.703.67-.703-.67z"/> + <path fill="#211800" d="M271.79 235.11l-2.11 2.678 2.11-2.678z"/> + <path fill="#002984" d="M273.19 235.11l.703.67-.703-.67z"/> + <path fill="#941808" d="M278.82 235.11l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M280.93 235.11l.703.67-.703-.67z"/> + <path fill="#b51010" d="M281.64 235.11l.703.67-.703-.67z"/> + <path fill="#214210" d="M297.11 235.11l.704.67-.704-.67z"/> + <path fill="#296300" d="M297.82 235.11l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M298.52 235.11l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M300.63 235.11l.703.67-.703-.67z"/> + <path fill="#319400" d="M301.33 235.11l.703.67-.703-.67z"/> + <path fill="#425242" d="M302.04 235.11l.704.67-.704-.67z"/> + <path fill="#52525a" d="M304.85 235.11l.703.67-.703-.67z"/> + <path fill="#395231" d="M308.37 235.11l.704.67-.704-.67z"/> + <path fill="#296300" d="M309.78 235.11l.703.67-.703-.67z"/> + <path fill="#424242" d="M310.48 235.11l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M311.18 235.11l.704.67-.704-.67z"/> + <path fill="#cecece" d="M311.89 235.11l.703.67-.703-.67z"/> + <path fill="#52525a" d="M313.29 235.11l.703.67-.703-.67z"/> + <path fill="#185200" d="M314 235.11l.704.67-.704-.67z"/> + <path fill="#63636b" d="M314.7 235.11l.703.67-.703-.67z"/> + <path fill="#dedede" d="M193.7 235.78l.704.67-.704-.67z"/> + <path fill="#efefef" d="M194.4 235.78l.703.67-.703-.67z"/> + <path fill="#dedede" d="M195.58 236l.47.223-.47-.223z"/> + <path fill="#9c9494" d="M196.51 235.78l.704.67-.704-.67z"/> + <path fill="#424242" d="M197.92 235.78l.703.67-.703-.67z"/> + <path fill="#428c00" d="M198.62 235.78c-1.91 4.1-1.667 6.585 0 10.71h1.407l1.407-10.04h-.703l-.703 8.032h-1.407v-8.702z"/> + <path fill="#313931" d="M201.44 235.78l.703.67-.703-.67z"/> + <path fill="#294200" d="M203.78 236.23l.235.446-.235-.446z"/> + <path fill="#6b735a" d="M206.36 235.78l.703.67-.703-.67z"/> + <path fill="#00216b" d="M227.47 235.78l1.407 1.34-1.407-1.34z"/> + <path fill="#100808" d="M228.17 235.78l.703.67-.703-.67z"/> + <path fill="#392100" d="M228.87 235.78l2.814 2.678-2.814-2.678z"/> + <path fill="#001039" d="M229.58 235.78l.703.67-.703-.67z"/> + <path fill="#181000" d="M235.91 235.78l1.407 1.34-1.407-1.34z"/> + <path fill="#211800" d="M236.61 235.78l2.814 3.347-2.814-3.347z"/> + <path fill="#00216b" d="M237.32 235.78l.703.67-.703-.67z"/> + <path fill="#002984" d="M241.54 235.78l.704.67-.704-.67z"/> + <path fill="#181000" d="M242.94 235.78l.703.67-.703-.67z"/> + <path fill="#311000" d="M264.75 235.78l.703.67-.703-.67z"/> + <path fill="#392100" d="M265.46 235.78l-.703 1.34.703-1.34z"/> + <path fill="#7b1008" d="M266.16 235.78l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M270.38 235.78l.703.67-.703-.67z"/> + <path fill="#00216b" d="M272.49 235.78l.703.67-.703-.67z"/> + <path fill="#631808" d="M278.12 235.78l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M280.23 235.78l.704.67-.704-.67z"/> + <path fill="#5a6b52" d="M297.11 235.78l.704.67-.704-.67z"/> + <path fill="#319400" d="M297.82 235.78l.703.67-.703-.67z"/> + <path fill="#103910" d="M298.52 235.78l.703.67-.703-.67z"/> + <path fill="#efefef" d="M299.22 235.78l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M300.63 235.78l.703.67-.703-.67z"/> + <path fill="#297b00" d="M301.33 235.78l.703.67-.703-.67z"/> + <path fill="#185200" d="M302.04 235.78l.704.67-.704-.67z"/> + <path fill="#cecece" d="M302.74 235.78l.704.67-.704-.67z"/> + <path fill="#315221" d="M304.85 235.78l.703.67-.703-.67z"/> + <path fill="#185200" d="M308.37 235.78l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M310.48 235.78l.703.67-.703-.67z"/> + <path fill="#efefef" d="M311.65 236l.47.223-.47-.223z"/> + <path fill="#ada5a5" d="M312.59 235.78l.703.67-.703-.67z"/> + <path fill="#214210" d="M313.29 235.78l.703.67-.703-.67z"/> + <path fill="#296300" d="M314 235.78l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M314.7 235.78l.703.67-.703-.67z"/> + <path fill="#397b00" d="M197.92 236.45l.703.67-.703-.67z"/> + <path fill="#103900" d="M201.44 236.45l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M206.36 236.45l.703.67-.703-.67z"/> + <path fill="#002984" d="M227.47 236.45v18.743h-6.33v.67l7.034-.67v3.347h.703c0-5.777 2.308-17.424-1.407-22.09z"/> + <path fill="#001010" d="M228.87 236.45l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#00216b" d="M238.02 236.45l.703.67-.703-.67z"/> + <path fill="#00184a" d="M242.24 236.45l.703.67-.703-.67z"/> + <path fill="#392100" d="M242.94 236.45l1.407 1.34-1.407-1.34z"/> + <path fill="#101829" d="M243.65 236.45l.703.67-.703-.67z"/> + <path fill="#631808" d="M264.05 236.45l.703.67-.703-.67z"/> + <path fill="#420000" d="M265.46 236.45l.703.67-.703-.67z"/> + <path fill="#b51010" d="M269.68 236.45l.703.67-.703-.67z"/> + <path fill="#00216b" d="M271.79 236.45l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M276.71 236.45l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M277.42 236.45l.704.67-.704-.67z"/> + <path fill="#392100" d="M278.12 236.45l-2.11 2.678 2.11-2.678z"/> + <path fill="#181000" d="M278.82 236.45l.703.67-.703-.67z"/> + <path fill="#002984" d="M279.53 236.45l.703.67-.703-.67z"/> + <path fill="#631808" d="M280.23 236.45v18.743h.704l-.704-18.743z"/> + <path fill="#8c8c8c" d="M297.11 236.45l.704.67-.704-.67z"/> + <path fill="#297b00" d="M298.29 236.67l.47.223-.47-.223z"/> + <path fill="#52525a" d="M299.22 236.45l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M300.63 236.45l.703.67-.703-.67z"/> + <path fill="#296300" d="M301.33 236.45l.703.67-.703-.67z"/> + <path fill="#319400" d="M302.04 236.45l2.814 16.735h.703c1.165-5.97.057-11.613-3.517-16.735z"/> + <path fill="#63636b" d="M302.74 236.45l.704.67-.704-.67z"/> + <path fill="#cecece" d="M304.15 236.45l.703.67-.703-.67z"/> + <path fill="#185200" d="M304.85 236.45l.703.67-.703-.67z"/> + <path fill="#297b00" d="M308.37 236.45l.704.67-.704-.67z"/> + <path fill="#184a00" d="M309.78 236.45l.703.67-.703-.67z"/> + <path fill="#314231" d="M312.59 236.45l.703.67-.703-.67z"/> + <path fill="#319400" d="M313.29 236.45l.703.67-.703-.67z"/> + <path fill="#294221" d="M314 236.45l.704.67-.704-.67z"/> + <path fill="#efefef" d="M196.51 237.12l.704.67-.704-.67z"/> + <path fill="#214210" d="M197.22 237.12l.703.67-.703-.67z"/> + <path fill="#295200" d="M199.56 237.57l.235.446-.235-.446z"/> + <path fill="#294200" d="M201.44 237.12l.703.67-.703-.67z"/> + <path fill="#397b00" d="M203.31 237.34l.47.223-.47-.223z"/> + <path fill="#294200" d="M205.66 237.12l.703.67-.703-.67z"/> + <path fill="#315221" d="M206.83 237.34l.47.223-.47-.223z"/> + <path fill="#294200" d="M207.77 237.12l.704.67-.704-.67z"/> + <path fill="#8c8442" d="M208.47 237.12l.703.67-.703-.67z"/> + <path fill="#63636b" d="M209.18 237.12l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M209.88 237.12l.703.67-.703-.67z"/> + <path fill="#003994" d="M228.87 237.12c0 5.062-2.5 18.23.723 22.29 1.415 1.782 4.9 1.956 7.015 2.478 0-10.244 2.075-18.383-7.738-24.767z"/> + <path fill="#101829" d="M229.58 237.12l.703.67-.703-.67z"/> + <path fill="#100808" d="M230.99 237.12l.703.67-.703-.67z"/> + <path fill="#001039" d="M231.69 237.12l.703.67-.703-.67z"/> + <path fill="#00216b" d="M236.61 237.12l.703.67-.703-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#001010" d="M242.94 237.12l.703.67-.703-.67z"/> + <path fill="#00184a" d="M244.35 237.12l.704.67-.704-.67z"/> + <path fill="#941808" d="M263.35 237.12l.704.67-.704-.67z"/> + <path fill="#211800" d="M263.35 238.46l2.11-1.34-2.11 1.34z"/> + <path fill="#ce2110" d="M265.46 237.12l.703.67-.703-.67z"/> + <path fill="#b51010" d="M268.97 237.12l.704.67-.704-.67z"/> + <path fill="#00216b" d="M271.08 237.12l.703.67-.703-.67z"/> + <path fill="#5a1831" d="M276.01 237.12l.703.67-.703-.67z"/> + <path fill="#311000" d="M276.71 237.12l.703.67-.703-.67z"/> + <path fill="#001010" d="M278.12 237.12l.703.67-.703-.67z"/> + <path fill="#003994" d="M271.79 261.89c2.29-.565 5.6-.767 7.314-2.48 3.624-3.615 1.128-17.412 1.128-22.288-10.98 4.843-8.442 15.064-8.442 24.767z"/> + <path fill="#dedede" d="M297.11 237.12l.704.67-.704-.67z"/> + <path fill="#185200" d="M297.82 237.12l.703.67-.703-.67z"/> + <path fill="#319400" d="M298.52 237.12l5.628 21.42h-.703c-1.12-3.75-5.566-18.02-11.256-12.718 7.536.308 10.027 13.084 11.255 18.743h.703l9.145-26.776h-.703l-7.035 17.403h-.704c-1.9-5.697-1.75-13.722-6.33-18.074z"/> + <path fill="#296300" d="M299.22 237.12l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M299.93 237.12l.704.67-.704-.67z"/> + <path fill="#dedede" d="M300.63 237.12l.703.67-.703-.67z"/> + <path fill="#185200" d="M301.33 237.12l.703.67-.703-.67z"/> + <path fill="#184a00" d="M302.74 237.12l.704.67-.704-.67z"/> + <path fill="#dedede" d="M303.45 237.12l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M304.15 237.12l-.703 1.34.703-1.34z"/> + <path fill="#297b00" d="M304.85 237.12l.703.67-.703-.67z"/> + <path fill="#395231" d="M307.67 237.12l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M309.78 237.12l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M311.89 237.12l.703.67-.703-.67z"/> + <path fill="#297b00" d="M313.06 237.34l.47.223-.47-.223z"/> + <path fill="#8c8c8c" d="M314 237.12l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M196.51 237.79l.704.67-.704-.67z"/> + <path fill="#295200" d="M201.44 237.79l.703.67-.703-.67z"/> + <path fill="#294200" d="M202.85 237.79l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.25 237.79l-2.814.67v.67l2.814-1.34z"/> + <path fill="#103900" d="M204.96 237.79l.704.67-.704-.67z"/> + <path fill="#397b00" d="M208.71 238.23l.235.446-.235-.446z"/> + <path fill="#428c00" d="M209.18 237.79l.703.67-.703-.67z"/> + <path fill="#294200" d="M209.88 237.79l.703.67-.703-.67z"/> + <path fill="#313931" d="M210.58 237.79l.704.67-.704-.67z"/> + <path fill="#001039" d="M230.28 237.79l.704.67-.704-.67z"/> + <path fill="#181000" d="M231.69 237.79l.703.67-.703-.67z"/> + <path fill="#00216b" d="M232.39 237.79l1.407 1.34-1.407-1.34m4.925 0l.703.67-.704-.67z"/> + <path fill="#181000" d="M238.72 237.79l2.11 2.008-2.11-2.008z"/> + <path fill="#002984" d="M239.43 237.79l.703.67-.703-.67z"/> + <path fill="#211800" d="M244.12 238.01l.47.223-.47-.223z"/> + <path fill="#002984" d="M245.06 237.79l.703.67-.703-.67z"/> + <path fill="#dedede" d="M249.28 237.79l.703.67-.703-.67z"/> + <path fill="#ada584" d="M249.98 237.79l.704.67-.704-.67z"/> + <path fill="#9c7b08" d="M252.79 237.79l.704.67-.704-.67z"/> + <path fill="#cea508" d="M254.9 237.79l.703.67-.703-.67z"/> + <path fill="#9c9463" d="M255.61 237.79l.704.67-.704-.67z"/> + <path fill="#bdb584" d="M256.31 237.79v.67h2.11l-2.11-.67z"/> + <path fill="#bdbdbd" d="M258.42 237.79l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M262.64 237.79l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M264.75 237.79l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M268.27 237.79l.703.67-.703-.67z"/> + <path fill="#210800" d="M268.97 237.79l.704.67-.704-.67z"/> + <path fill="#392100" d="M269.68 237.79l-1.407 2.008 1.407-2.008z"/> + <path fill="#00184a" d="M270.38 237.79l.703.67-.703-.67z"/> + <path fill="#002984" d="M275.31 237.79l.703.67-.703-.67z"/> + <path fill="#100808" d="M276.01 237.79l.703.67-.703-.67z"/> + <path fill="#101829" d="M277.42 237.79l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M294.3 237.79l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M295 237.79l.703.67-.703-.67z"/> + <path fill="#315221" d="M297.82 237.79l.703.67-.703-.67z"/> + <path fill="#103910" d="M299.93 237.79l.704.67-.704-.67z"/> + <path fill="#efefef" d="M300.63 237.79l.703.67-.703-.67z"/> + <path fill="#184a00" d="M301.33 237.79l.703.67-.703-.67z"/> + <path fill="#297b00" d="M302.74 237.79l.704.67-.704-.67z"/> + <path fill="#5a6b52" d="M304.15 237.79l.703.67-.703-.67z"/> + <path fill="#294221" d="M306.96 237.79l.703.67-.703-.67z"/> + <path fill="#185200" d="M307.67 237.79l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M309.78 237.79l.703.67-.703-.67z"/> + <path fill="#dedede" d="M311.18 237.79l.704.67-.704-.67z"/> + <path fill="#184a00" d="M311.89 237.79l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#efefef" d="M314 237.79l.704.67-.704-.67z"/> + <path fill="#5a5231" d="M196.51 238.46l.704.67-.704-.67z"/> + <path fill="#294200" d="M199.33 238.46v2.008h.704l-.704-2.008m4.925 0l.703.67-.704-.67m3.284.223l.468.223-.468-.223z"/> + <path fill="#214210" d="M209.18 238.46l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M209.88 238.46l.703.67-.703-.67z"/> + <path fill="#00215a" d="M230.99 238.46l.703.67-.703-.67z"/> + <path fill="#211800" d="M231.69 238.46v.67l2.11.67-2.11-1.34z"/> + <path fill="#00216b" d="M238.02 238.46l.703.67-.703-.67z"/> + <path fill="#002984" d="M240.13 238.46l.703.67-.703-.67z"/> + <path fill="#00216b" d="M243.65 238.46l.703.67-.703-.67z"/> + <path fill="#392100" d="M244.35 238.46l2.11 2.008-2.11-2.008z"/> + <path fill="#101810" d="M245.06 238.46l.703.67-.703-.67z"/> + <path fill="#bd9408" d="M249.98 238.46v2.008h.704l-.704-2.008z"/> + <path fill="#310000" d="M262.64 238.46l.703.67-.703-.67z"/> + <path fill="#392100" d="M263.35 238.46l-.703 1.34.703-1.34z"/> + <path fill="#631808" d="M264.05 238.46l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M267.57 238.46l-.703 1.34.703-1.34z"/> + <path fill="#311000" d="M268.27 238.46l.703.67-.703-.67z"/> + <path fill="#001039" d="M269.68 238.46l.703.67-.703-.67z"/> + <path fill="#00216b" d="M274.6 238.46l-.703 1.34.703-1.34z"/> + <path fill="#181000" d="M275.31 238.46l.703.67-.703-.67z"/> + <path fill="#001039" d="M276.71 238.46l.703.67-.703-.67z"/> + <path fill="#101810" d="M295 238.46l.703.67-.703-.67z"/> + <path fill="#efefef" d="M295.71 238.46l.704.67-.704-.67z"/> + <path fill="#63636b" d="M297.82 238.46l.703.67-.703-.67z"/> + <path fill="#297b00" d="M299.93 238.46l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M300.63 238.46l.703.67-.703-.67z"/> + <path fill="#315221" d="M301.33 238.46l.703.67-.703-.67z"/> + <path fill="#214210" d="M303.45 238.46l.703.67-.703-.67z"/> + <path fill="#103900" d="M304.15 238.46l.703.67-.703-.67z"/> + <path fill="#184a00" d="M306.96 238.46v4.016h.703l-.703-4.016z"/> + <path fill="#297b00" d="M307.67 238.46l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M309.78 238.46l.703.67-.703-.67z"/> + <path fill="#63636b" d="M311.18 238.46l.704.67-.704-.67z"/> + <path fill="#297b00" d="M311.89 238.46l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M313.29 238.46l.703.67-.703-.67z"/> + <path fill="#294200" d="M196.51 239.13l.704.67-.704-.67m5.628 0l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#103900" d="M206.36 239.13l.703.67-.703-.67z"/> + <path fill="#397b00" d="M207.07 239.13l.703.67-.703-.67z"/> + <path fill="#294200" d="M208.47 239.13l.703.67-.703-.67z"/> + <path fill="#cecece" d="M209.18 239.13l.703.67-.703-.67z"/> + <path fill="#00216b" d="M231.69 239.13l.703.67-.703-.67z"/> + <path fill="#001039" d="M233.8 239.13l1.407 1.34-1.407-1.34z"/> + <path fill="#00184a" d="M238.72 239.13l.704.67-.704-.67z"/> + <path fill="#392100" d="M239.43 239.13l5.628 5.355-5.628-5.355z"/> + <path fill="#001039" d="M244.35 239.13l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#631808" d="M261.94 239.13l.703.67-.703-.67z"/> + <path fill="#311000" d="M263.35 239.13l.704.67-.704-.67m4.22 0l.704.67-.703-.67z"/> + <path fill="#001039" d="M268.97 239.13l.704.67-.704-.67z"/> + <path fill="#211800" d="M273.9 240.47l2.11-.67-2.11.67z"/> + <path fill="#00215a" d="M276.01 239.13l.703.67-.703-.67z"/> + <path fill="#103900" d="M295 239.13l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M295.71 239.13l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M297.82 239.13l.703.67-.703-.67z"/> + <path fill="#297b00" d="M298.52 239.13l.703.67-.703-.67z"/> + <path fill="#295210" d="M300.63 239.13l.703.67-.703-.67z"/> + <path fill="#395231" d="M301.33 239.13l.703.67-.703-.67z"/> + <path fill="#297b00" d="M303.45 239.13l.703.67-.703-.67z"/> + <path fill="#185200" d="M304.15 239.13l.703.67-.703-.67z"/> + <path fill="#297b00" d="M309.07 239.13l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M309.78 239.13l.703.67-.703-.67z"/> + <path fill="#dedede" d="M310.48 239.13l.703.67-.703-.67z"/> + <path fill="#184a00" d="M311.18 239.13l.704.67-.704-.67z"/> + <path fill="#296300" d="M312.59 239.13l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M313.29 239.13l.703.67-.703-.67z"/> + <path fill="#cecece" d="M195.81 239.8l.703.67-.703-.67z"/> + <path fill="#397b00" d="M196.51 239.8l.704.67-.704-.67z"/> + <path fill="#295200" d="M202.14 239.8l.704.67-.704-.67z"/> + <path fill="#103900" d="M202.85 239.8l-.704 2.008h.704V239.8m2.814 0l-.704 1.34.704-1.34z"/> + <path fill="#397b00" d="M207.77 239.8l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M208.47 239.8l.703.67-.703-.67m2.814 0l.704.67-.704-.67z"/> + <path fill="#002984" d="M232.39 239.8l.703.67-.703-.67z"/> + <path fill="#392100" d="M233.8 239.8l2.814 2.678-2.814-2.678z"/> + <path fill="#001039" d="M239.43 239.8l.703.67-.703-.67z"/> + <path fill="#001010" d="M240.83 239.8l.703.67-.703-.67z"/> + <path fill="#101810" d="M245.06 239.8l.703.67-.703-.67z"/> + <path fill="#00216b" d="M246.46 239.8l.703.67-.703-.67z"/> + <path fill="#b51010" d="M261.24 239.8l.703.67-.703-.67z"/> + <path fill="#211800" d="M261.24 241.14l2.11-.67-2.11.67z"/> + <path fill="#bd2110" d="M263.35 239.8l.704.67-.704-.67z"/> + <path fill="#310000" d="M266.86 239.8l.703.67-.703-.67z"/> + <path fill="#422100" d="M267.57 239.8l.703.67-.703-.67z"/> + <path fill="#101829" d="M268.27 239.8l.703.67-.703-.67z"/> + <path fill="#001039" d="M273.19 239.8l-.703 1.34.703-1.34z"/> + <path fill="#181000" d="M274.6 239.8l-.703 1.34.703-1.34z"/> + <path fill="#00216b" d="M275.31 239.8l.703.67-.703-.67z"/> + <path fill="#426331" d="M295 239.8l.703.67-.703-.67z"/> + <path fill="#214210" d="M295.71 239.8l.704.67-.704-.67z"/> + <path fill="#efefef" d="M296.41 239.8l.703.67-.703-.67z"/> + <path fill="#103900" d="M298.52 239.8l.703.67-.703-.67z"/> + <path fill="#297b00" d="M300.63 239.8l.703.67-.703-.67z"/> + <path fill="#001000" d="M301.33 239.8l.703.67-.703-.67z"/> + <path fill="#103900" d="M304.15 239.8l.703.67-.703-.67z"/> + <path fill="#296300" d="M309.07 239.8l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M309.78 239.8l.703.67-.703-.67z"/> + <path fill="#63636b" d="M310.48 239.8l.703.67-.703-.67z"/> + <path fill="#297b00" d="M311.18 239.8l.704.67-.704-.67z"/> + <path fill="#315221" d="M312.59 239.8l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M196.04 240.91l.235.446-.235-.446z"/> + <path fill="#295200" d="M199.33 240.47l.704.67-.704-.67z"/> + <path fill="#397b00" d="M201.67 240.91l.235.446-.235-.446m1.173-.446l.703.67-.704-.67z"/> + <path fill="#425242" d="M207.77 240.47l.704.67-.704-.67z"/> + <path fill="#001000" d="M211.29 240.47l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M211.99 240.47l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M217.62 240.47l.704.67-.704-.67z"/> + <path fill="#52525a" d="M218.32 240.47l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M219.03 240.47l.704.67-.704-.67z"/> + <path fill="#001010" d="M233.8 240.47l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#001039" d="M240.13 240.47l.703.67-.703-.67z"/> + <path fill="#001010" d="M241.54 240.47l.704.67-.704-.67z"/> + <path fill="#002984" d="M245.06 240.47l.703.67-.703-.67z"/> + <path fill="#211800" d="M246.23 240.69l.47.223-.47-.223z"/> + <path fill="#dedede" d="M249.28 240.47l.703.67-.703-.67z"/> + <path fill="#ada584" d="M249.98 240.47l.704.67-.704-.67z"/> + <path fill="#9c7b08" d="M252.79 240.47l.704.67-.704-.67z"/> + <path fill="#cea508" d="M254.9 240.47l.703.67-.703-.67z"/> + <path fill="#9c9463" d="M255.61 240.47l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M258.42 240.47l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M260.53 240.47l.704.67-.704-.67z"/> + <path fill="#392100" d="M261.94 240.47l-1.407 2.008 1.407-2.008z"/> + <path fill="#941808" d="M262.64 240.47l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M266.16 240.47l-1.407 2.008 1.407-2.008z"/> + <path fill="#392100" d="M266.86 240.47l-1.407 2.008 1.407-2.008z"/> + <path fill="#001010" d="M267.57 240.47l.703.67-.703-.67z"/> + <path fill="#392100" d="M273.19 240.47l-2.11 2.678 2.11-2.678z"/> + <path fill="#002984" d="M274.6 240.47l.704.67-.704-.67z"/> + <path fill="#4a6342" d="M295 240.47l.703.67-.703-.67z"/> + <path fill="#297b00" d="M295.71 240.47l.704.67-.704-.67z"/> + <path fill="#52525a" d="M296.41 240.47l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M298.52 240.47l.703.67-.703-.67z"/> + <path fill="#103900" d="M301.33 240.47l.703.67-.703-.67z"/> + <path fill="#185200" d="M304.15 240.47l.703.67-.703-.67z"/> + <path fill="#297b00" d="M304.85 240.47l-.703 1.34.703-1.34z"/> + <path fill="#185200" d="M309.07 240.47l.703.67-.703-.67z"/> + <path fill="#dedede" d="M309.78 240.47l.703.67-.703-.67z"/> + <path fill="#184a00" d="M310.48 240.47l.703.67-.703-.67z"/> + <path fill="#297b00" d="M311.89 240.47l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M312.59 240.47l.703.67-.703-.67z"/> + <path fill="#cecece" d="M314.7 240.47l.703.67-.703-.67z"/> + <path fill="#294221" d="M315.4 240.47l.703.67-.703-.67z"/> + <path fill="#103900" d="M316.11 240.47l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M316.81 240.47l.704.67-.704-.67z"/> + <path fill="#397b00" d="M198.62 241.14v3.347h1.407v-3.347h-1.407z"/> + <path fill="#103900" d="M204.25 241.14l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.07 241.14l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M207.77 241.14l.704.67-.704-.67z"/> + <path fill="#efefef" d="M210.58 241.14l.704.67-.704-.67z"/> + <path fill="#295200" d="M211.29 241.14l1.407 1.34-1.407-1.34z"/> + <path fill="#425242" d="M211.99 241.14l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M216.21 241.14l.704.67-.704-.67z"/> + <path fill="#5a5231" d="M216.92 241.14l.703.67-.703-.67z"/> + <path fill="#397b00" d="M217.62 241.14l.704.67-.704-.67z"/> + <path fill="#396b10" d="M218.32 241.14l.703.67-.703-.67z"/> + <path fill="#efefef" d="M219.03 241.14l.704.67-.704-.67z"/> + <path fill="#001039" d="M234.5 241.14l.703.67-.703-.67z"/> + <path fill="#181000" d="M235.91 241.14l1.407 1.34-1.407-1.34z"/> + <path fill="#002984" d="M236.61 241.14l.703.67-.703-.67z"/> + <path fill="#52525a" d="M240.83 241.14l.703.67-.703-.67z"/> + <path fill="#001010" d="M242.24 241.14l.703.67-.703-.67z"/> + <path fill="#00184a" d="M245.76 241.14l.703.67-.703-.67z"/> + <path fill="#392100" d="M246.46 241.14l1.407 1.34-1.407-1.34z"/> + <path fill="#001010" d="M247.17 241.14l.704.67-.704-.67z"/> + <path fill="#7b5a00" d="M252.79 241.14v7.363h.704l-.704-7.363z"/> + <path fill="#420000" d="M260.53 241.14l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M261.94 241.14l.703.67-.703-.67z"/> + <path fill="#313931" d="M266.86 241.14l.703.67-.703-.67z"/> + <path fill="#314a7b" d="M267.57 241.14l.703.67-.703-.67z"/> + <path fill="#001010" d="M271.79 241.14l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M295 241.14l.703.67-.703-.67z"/> + <path fill="#319400" d="M295.71 241.14l3.518 6.024h.703l-4.22-6.024z"/> + <path fill="#296300" d="M296.41 241.14l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M297.11 241.14l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M298.52 241.14l.703.67-.703-.67z"/> + <path fill="#297b00" d="M299.22 241.14l.704.67-.704-.67z"/> + <path fill="#296300" d="M301.33 241.14l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M302.04 241.14l.704.67-.704-.67z"/> + <path fill="#184a00" d="M304.85 241.14l.703.67-.703-.67z"/> + <path fill="#214210" d="M309.07 241.14l.703.67-.703-.67z"/> + <path fill="#63636b" d="M309.78 241.14l.703.67-.703-.67z"/> + <path fill="#297b00" d="M310.48 241.14l.703.67-.703-.67z"/> + <path fill="#185200" d="M311.89 241.14l.703.67-.703-.67z"/> + <path fill="#dedede" d="M312.59 241.14l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M314 241.14l.704.67-.704-.67z"/> + <path fill="#184a00" d="M314.7 241.14l.703.67-.703-.67z"/> + <path fill="#319400" d="M311.18 245.82l7.035-2.008-1.407-2.678-5.628 4.686z"/> + <path fill="#214210" d="M316.81 241.14l.704.67-.704-.67z"/> + <path fill="#cecece" d="M317.52 241.14l.703.67-.703-.67m-121.7.67l.703.67-.703-.67z"/> + <path fill="#397b00" d="M196.51 241.8l.704.67-.704-.67z"/> + <path fill="#294200" d="M201.67 242.25l.235.446-.235-.446m1.876-.446l.703.67-.704-.67z"/> + <path fill="#397b00" d="M204.25 241.8l.703.67-.703-.67z"/> + <path fill="#425242" d="M207.07 241.8l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M210.58 241.8l.704.67-.704-.67z"/> + <path fill="#397b00" d="M211.29 241.8l.704.67-.704-.67z"/> + <path fill="#cecece" d="M212.69 241.8l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M215.51 241.8l.703.67-.703-.67z"/> + <path fill="#295200" d="M216.21 241.8l.704.67-.704-.67z"/> + <path fill="#428c00" d="M214.1 251.85h-.704v-7.363h-.703l-.703 3.347h-.704v-3.347h-.703l-4.22 15.396h.702l1.407-2.678h.704l-1.407 3.347h.702l3.518-4.686-2.814 6.025h.703l7.11-10.04 1.33-10.04c-4.6 2.11-4.22 5.718-4.22 10.04z"/> + <path fill="#63636b" d="M218.32 241.8l.703.67-.703-.67z"/> + <path fill="#001039" d="M235.21 241.8l.703.67-.703-.67z"/> + <path fill="#00216b" d="M237.32 241.8l1.407 1.34-1.407-1.34z"/> + <path fill="#efefef" d="M240.83 241.8l2.11 2.008-2.11-2.008z"/> + <path fill="#313931" d="M241.54 241.8l.704.67-.704-.67z"/> + <path fill="#001039" d="M242.94 241.8l.703.67-.703-.67z"/> + <path fill="#101829" d="M246.46 241.8l.703.67-.703-.67z"/> + <path d="M247.87 241.8l.703.67-.703-.67z"/> + <path fill="#210800" d="M259.83 241.8l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M261.94 241.8l.703.67-.703-.67z"/> + <path fill="#292921" d="M266.16 241.8l.704.67-.704-.67z"/> + <path fill="#efefef" d="M266.86 241.8l.703.67-.703-.67z"/> + <path fill="#002984" d="M270.38 241.8l.703.67-.703-.67z"/> + <path fill="#181000" d="M271.08 241.8l.703.67-.703-.67z"/> + <path fill="#001039" d="M272.49 241.8l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M295.24 242.25l.235.446-.235-.446z"/> + <path fill="#297b00" d="M295.71 241.8l.704.67-.704-.67z"/> + <path fill="#103910" d="M297.11 241.8l.704.67-.704-.67z"/> + <path fill="#efefef" d="M297.82 241.8l.703.67-.703-.67z"/> + <path fill="#dedede" d="M298.52 241.8l.703.67-.703-.67z"/> + <path fill="#185200" d="M299.22 241.8l.704.67-.704-.67z"/> + <path fill="#297b00" d="M301.33 241.8l.703.67-.703-.67z"/> + <path fill="#103900" d="M304.85 241.8l.703.67-.703-.67z"/> + <path fill="#294221" d="M309.07 241.8l.703.67-.703-.67z"/> + <path fill="#184a00" d="M309.78 241.8l.703.67-.703-.67z"/> + <path fill="#425242" d="M311.89 241.8l.703.67-.703-.67z"/> + <path fill="#63636b" d="M313.29 241.8l-1.407 2.008 1.407-2.008z"/> + <path fill="#297b00" d="M314 241.8l.704.67-.704-.67z"/> + <path fill="#425242" d="M317.52 241.8l.703.67-.703-.67z"/> + <path fill="#396b10" d="M196.51 242.47l.704.67-.704-.67z"/> + <path fill="#295200" d="M202.85 242.47l.703.67-.703-.67z"/> + <path fill="#397b00" d="M203.55 242.47l.703.67-.703-.67z"/> + <path fill="#314231" d="M206.36 242.47l.703.67-.703-.67z"/> + <path fill="#efefef" d="M207.07 242.47l-.703 1.34.703-1.34z"/> + <path fill="#7b7373" d="M210.58 242.47l.704.67-.704-.67z"/> + <path fill="#428c00" d="M211.76 242.7l.47.223-.47-.223z"/> + <path fill="#7b7373" d="M212.69 242.47l.703.67-.703-.67z"/> + <path fill="#63636b" d="M214.8 242.47l-.704 1.34.704-1.34z"/> + <path fill="#397b00" d="M215.51 242.47l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M218.32 242.47l.703.67-.703-.67z"/> + <path fill="#00216b" d="M235.91 242.47l.704.67-.704-.67z"/> + <path fill="#211800" d="M237.08 242.7l.47.223-.47-.223z"/> + <path fill="#313931" d="M242.24 242.47l.703.67-.703-.67z"/> + <path fill="#001039" d="M243.65 242.47l.703.67-.703-.67z"/> + <path fill="#181000" d="M247.17 242.47l.704.67-.704-.67z"/> + <path fill="#211800" d="M248.1 242.92l.235.446-.235-.446z"/> + <path fill="#bdbdbd" d="M248.57 242.47l.703.67-.703-.67z"/> + <path fill="#dedede" d="M259.12 242.47l.703.67-.703-.67z"/> + <path fill="#b51010" d="M261.24 242.47l.703.67-.703-.67z"/> + <path fill="#941808" d="M264.05 242.47l-1.407 2.008 1.407-2.008z"/> + <path fill="#211800" d="M264.75 242.47l-3.518 4.016 3.518-4.016z"/> + <path fill="#212118" d="M265.46 242.47l-.703 1.34.703-1.34z"/> + <path fill="#cecece" d="M266.16 242.47l-1.407 2.008 1.407-2.008z"/> + <path fill="#00216b" d="M269.68 242.47l-.704 1.34.704-1.34z"/> + <path fill="#181000" d="M270.38 242.47l.703.67-.703-.67z"/> + <path fill="#001039" d="M271.79 242.47l.704.67-.704-.67z"/> + <path fill="#cecece" d="M293.6 242.47l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M294.3 242.47l.704.67-.704-.67z"/> + <path fill="#296300" d="M295.71 242.47l.704.67-.704-.67z"/> + <path fill="#297b00" d="M297.11 242.47l.704.67-.704-.67z"/> + <path fill="#52525a" d="M297.82 242.47l.703.67-.703-.67z"/> + <path fill="#395231" d="M299.22 242.47l.704.67-.704-.67z"/> + <path fill="#184a00" d="M302.04 242.47v2.008h.704l-.704-2.008z"/> + <path fill="#296300" d="M305.32 242.7l.47.223-.47-.223m1.64-.223l.705.67-.704-.67z"/> + <path fill="#001000" d="M309.07 242.47l.703.67-.703-.67z"/> + <path fill="#297b00" d="M309.78 242.47l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#9c9494" d="M311.89 242.47l.703.67-.703-.67z"/> + <path fill="#297b00" d="M313.29 242.47l.703.67-.703-.67z"/> + <path fill="#296300" d="M317.52 242.47l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M318.22 242.47l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M196.51 243.14l.704.67-.704-.67z"/> + <path fill="#397b00" d="M200.73 243.14v.67h2.11l-2.11-.67z"/> + <path fill="#294200" d="M202.85 243.14l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.96 243.14l.704.67-.704-.67z"/> + <path fill="#52525a" d="M205.66 243.14l.703.67-.703-.67z"/> + <path fill="#efefef" d="M209.88 243.14l.703.67-.703-.67z"/> + <path fill="#214210" d="M210.58 243.14l.704.67-.704-.67z"/> + <path fill="#397b00" d="M210.58 243.81v.67l2.11.67v-2.01l-2.11.67z"/> + <path fill="#5a5231" d="M212.69 243.14l.703.67-.703-.67z"/> + <path fill="#397b00" d="M214.8 243.14l.703.67-.703-.67z"/> + <path fill="#295200" d="M217.38 243.37l.47.223-.47-.223z"/> + <path fill="#dedede" d="M218.32 243.14l.703.67-.703-.67z"/> + <path fill="#424242" d="M236.61 243.14l.703.67-.703-.67z"/> + <path fill="#212118" d="M237.32 243.14l.703.67-.703-.67z"/> + <path fill="#392100" d="M238.02 243.14l2.814 2.678-2.814-2.678z"/> + <path fill="#001039" d="M238.72 243.14l.704.67-.704-.67z"/> + <path fill="#292921" d="M242.94 243.14l.703.67-.703-.67z"/> + <path fill="#001039" d="M244.35 243.14l.704.67-.704-.67z"/> + <path fill="#00216b" d="M247.17 243.14l.704.67-.704-.67z"/> + <path fill="#211810" d="M248.57 243.14l.703.67-.703-.67z"/> + <path fill="#efefef" d="M249.28 243.14l.703.67-.703-.67z"/> + <path fill="#313931" d="M259.12 243.14l.703.67-.703-.67z"/> + <path fill="#392100" d="M259.83 243.14l-.703 1.34.703-1.34z"/> + <path fill="#631808" d="M260.53 243.14l.704.67-.704-.67z"/> + <path fill="#211800" d="M270.15 243.37l.47.223-.47-.223z"/> + <path fill="#313931" d="M271.08 243.14l.703.67-.703-.67z"/> + <path fill="#63636b" d="M292.89 243.14l.704.67-.704-.67z"/> + <path fill="#185200" d="M293.6 243.14l.703.67-.703-.67z"/> + <path fill="#297b00" d="M294.3 243.14l.704.67-.704-.67z"/> + <path fill="#295210" d="M295 243.14l.703.67-.703-.67z"/> + <path fill="#103900" d="M295.71 243.14l.704.67-.704-.67z"/> + <path fill="#296300" d="M297.82 243.14l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M298.52 243.14l1.407 1.34-1.407-1.34z"/> + <path fill="#8c8c8c" d="M299.22 243.14l.704.67-.704-.67z"/> + <path fill="#103900" d="M305.56 243.14l.704.67-.704-.67z"/> + <path fill="#297b00" d="M308.37 243.14l1.407 1.34-1.407-1.34z"/> + <path fill="#184a00" d="M309.07 243.14l.703.67-.703-.67z"/> + <path fill="#214210" d="M311.18 243.14l.704.67-.704-.67z"/> + <path fill="#297b00" d="M312.59 243.14l.703.67-.703-.67m1.407 0l-4.22 2.678v.67l1.406.668 2.814-4.016z"/> + <path fill="#214210" d="M314.7 243.14l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M315.4 243.14l.703.67-.703-.67z"/> + <path fill="#214210" d="M316.11 243.14l.703.67-.703-.67z"/> + <path fill="#296300" d="M316.81 243.14l.704.67-.704-.67z"/> + <path fill="#294221" d="M318.22 243.14l-.703 1.34.703-1.34z"/> + <path fill="#bdbdbd" d="M196.51 243.81l.704.67-.704-.67z"/> + <path fill="#295200" d="M197.22 243.81l.703.67-.703-.67z"/> + <path fill="#103900" d="M200.73 243.81l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#397b00" d="M203.55 243.81l-.703 1.34.703-1.34z"/> + <path fill="#5a5231" d="M204.25 243.81l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M204.96 243.81l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M209.88 243.81l.703.67-.703-.67z"/> + <path fill="#295200" d="M212.69 243.81l1.407 1.34-1.407-1.34z"/> + <path fill="#52525a" d="M213.4 243.81l.704.67-.704-.67z"/> + <path fill="#397b00" d="M214.1 243.81l.704.67-.704-.67z"/> + <path fill="#294200" d="M216.45 244.26l.235.446-.235-.446m1.173-.446v4.685h.703l-.704-4.686z"/> + <path d="M236.61 243.81v18.074h.703l-.703-18.074z" fill-opacity=".481" fill="#8c8c8c"/> + <path fill="#cecece" d="M237.32 243.81l.703.67-.703-.67z"/> + <path fill="#211810" d="M238.02 243.81l.703.67-.703-.67z"/> + <path fill="#001039" d="M239.43 243.81l.703.67-.703-.67z"/> + <path fill="#cecece" d="M242.94 243.81l2.11 2.008-2.11-2.008z"/> + <path fill="#212118" d="M243.65 243.81l.703.67-.703-.67z"/> + <path fill="#00215a" d="M245.06 243.81l.703.67-.703-.67z"/> + <path fill="#001039" d="M247.87 243.81l.703.67-.703-.67z"/> + <path fill="#392100" d="M248.57 243.81l1.407 1.34-1.407-1.34z"/> + <path fill="#424242" d="M249.28 243.81l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M258.42 243.81l.704.67-.704-.67z"/> + <path fill="#310000" d="M259.83 243.81l.704.67-.704-.67z"/> + <path fill="#001039" d="M268.27 243.81l.703.67-.703-.67z"/> + <path fill="#392100" d="M268.97 243.81l-2.11 2.678 2.11-2.678z"/> + <path fill="#212118" d="M269.68 243.81l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M270.38 243.81l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M271.08 243.81v18.074h.703l-.703-18.074m21.105 0l.703.67-.703-.67z"/> + <path fill="#296300" d="M292.89 243.81l.704.67-.704-.67z"/> + <path fill="#185200" d="M295.71 243.81l.704.67-.704-.67z"/> + <path fill="#296300" d="M296.41 243.81l.703.67-.703-.67z"/> + <path fill="#214210" d="M298.52 243.81l.703.67-.703-.67z"/> + <path fill="#296300" d="M299.93 243.81l.704.67-.704-.67z"/> + <path fill="#184a00" d="M305.56 243.81l.704.67-.704-.67z"/> + <path fill="#297b00" d="M306.26 243.81l-.704 1.34.704-1.34z"/> + <path fill="#185200" d="M308.37 243.81l.704.67-.704-.67z"/> + <path fill="#314231" d="M314 243.81l-1.407 2.008L314 243.81z"/> + <path fill="#efefef" d="M314.7 243.81l-2.11 2.678 2.11-2.678z"/> + <path fill="#bdbdbd" d="M316.81 243.81l.704.67-.704-.67z"/> + <path fill="#185200" d="M318.22 243.81l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M318.92 243.81l.703.67-.703-.67z"/> + <path fill="#63636b" d="M197.22 244.48l.703.67-.703-.67z"/> + <path fill="#295200" d="M200.73 244.48l.703.67-.703-.67z"/> + <path fill="#397b00" d="M201.44 244.48l.703.67-.703-.67z"/> + <path fill="#63636b" d="M203.55 244.48l-.703 1.34.703-1.34z"/> + <path fill="#7b7373" d="M204.25 244.48l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M204.96 244.48l.704.67-.704-.67z"/> + <path fill="#efefef" d="M205.66 244.48l.703.67-.703-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#214210" d="M209.88 244.48l.703.67-.703-.67z"/> + <path fill="#efefef" d="M238.02 244.48l1.407 1.34-1.407-1.34z"/> + <path fill="#313931" d="M238.72 244.48l.704.67-.704-.67z"/> + <path d="M240.13 244.48l.703.67-.703-.67z"/> + <path fill="#efefef" d="M240.83 244.48l.703.67-.703-.67z"/> + <path fill="#212118" d="M244.35 244.48l1.407 1.34-1.407-1.34z"/> + <path fill="#211800" d="M245.06 244.48l2.814 3.347-2.814-3.347z"/> + <path fill="#00216b" d="M245.76 244.48l.703.67-.703-.67z"/> + <path fill="#00184a" d="M247.87 244.48v2.008h.703l-.703-2.008z"/> + <path fill="#313931" d="M248.57 244.48l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M249.98 244.48l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M257.72 244.48l.703.67-.703-.67z"/> + <path fill="#211800" d="M258.66 244.93l.235.446-.235-.446z"/> + <path fill="#211810" d="M259.12 244.48l.703.67-.703-.67z"/> + <path fill="#b51010" d="M261.94 244.48l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M264.05 244.48l-1.407 2.008 1.407-2.008z"/> + <path fill="#efefef" d="M266.86 244.48l-.704 1.34.704-1.34z"/> + <path fill="#292921" d="M267.57 244.48l.703.67-.703-.67z"/> + <path fill="#211810" d="M268.97 244.48l.704.67-.704-.67z"/> + <path fill="#cecece" d="M269.68 244.48l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M291.49 244.48l.704.67-.704-.67z"/> + <path fill="#185200" d="M292.19 244.48l.703.67-.703-.67z"/> + <path fill="#103900" d="M296.41 244.48l2.11 2.008-2.11-2.008z"/> + <path fill="#297b00" d="M297.11 244.48l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#314231" d="M299.22 244.48l.704.67-.704-.67z"/> + <path fill="#185200" d="M299.93 244.48l.704.67-.704-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#297b00" d="M302.74 244.48l.704.67-.704-.67z"/> + <path fill="#296300" d="M306.26 244.48l.703.67-.703-.67z"/> + <path fill="#103900" d="M308.37 244.48l.704.67-.704-.67z"/> + <path fill="#185200" d="M310.48 244.48l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M318.22 244.48l.703.67-.703-.67z"/> + <path fill="#63636b" d="M318.92 244.48l.703.67-.703-.67z"/> + <path fill="#dedede" d="M197.22 245.15l.703.67-.703-.67z"/> + <path fill="#294200" d="M197.92 245.15l.703.67-.703-.67z"/> + <path fill="#397b00" d="M200.5 245.37l.47.223-.47-.223z"/> + <path fill="#295200" d="M202.14 245.15l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M204.25 245.15l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.96 245.15l.704.67-.704-.67z"/> + <path fill="#396b10" d="M205.66 245.15l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M206.36 245.15l.703.67-.703-.67z"/> + <path fill="#efefef" d="M207.07 245.15l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M209.18 245.15l.703.67-.703-.67z"/> + <path fill="#295200" d="M211.29 245.15l.704.67-.704-.67z"/> + <path fill="#294200" d="M213.4 245.15v6.024h.704l-.704-6.024z"/> + <path fill="#397b00" d="M215.98 245.37l.47.223-.47-.223z"/> + <path fill="#52525a" d="M239.43 245.15l.703.67-.703-.67z"/> + <path fill="#211810" d="M240.83 245.15l.703.67-.703-.67z"/> + <path fill="#cecece" d="M241.54 245.15l.704.67-.704-.67z"/> + <path fill="#00216b" d="M246.46 245.15l.703.67-.703-.67z"/> + <path fill="#cecece" d="M248.57 245.15l.703.67-.703-.67z"/> + <path fill="#392121" d="M249.28 245.15l.703.67-.703-.67z"/> + <path fill="#211800" d="M249.98 245.15l.704.67-.704-.67z"/> + <path fill="#cecece" d="M250.68 245.15l.703.67-.703-.67z"/> + <path fill="#efefef" d="M257.01 245.15l.704.67-.704-.67z"/> + <path fill="#211810" d="M257.72 245.15l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M259.12 245.15l.703.67-.703-.67z"/> + <path fill="#b51010" d="M261.24 245.15l.703.67-.703-.67z"/> + <path fill="#313931" d="M266.86 245.15l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#efefef" d="M268.97 245.15l-.703 1.34.703-1.34z"/> + <path fill="#294221" d="M291.49 245.15l.704.67-.704-.67z"/> + <path fill="#297b00" d="M292.89 245.15l.704.67-.704-.67z"/> + <path fill="#185200" d="M293.6 245.15l.703.67-.703-.67z"/> + <path fill="#184a00" d="M294.3 245.15l.704.67-.704-.67z"/> + <path fill="#297b00" d="M297.82 245.15l.703.67-.703-.67z"/> + <path fill="#296300" d="M299.22 245.15l.704.67-.704-.67z"/> + <path fill="#103900" d="M299.93 245.15l.704.67-.704-.67z"/> + <path fill="#296300" d="M302.51 245.37l.47.223-.47-.223z"/> + <path fill="#184a00" d="M306.26 245.15l.703.67-.703-.67z"/> + <path fill="#297b00" d="M307.67 245.15l.703.67-.703-.67z"/> + <path fill="#185200" d="M308.37 245.15l.704.67-.704-.67z"/> + <path fill="#103900" d="M310.48 245.15l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M314.94 245.6l.235.446-.235-.446z"/> + <path fill="#63636b" d="M197.92 245.82l.703.67-.703-.67z"/> + <path fill="#294200" d="M200.27 246.27l.235.446-.235-.446z"/> + <path fill="#8c8c8c" d="M202.14 245.82l.704.67-.704-.67m2.345.446l.235.447-.235-.447z"/> + <path fill="#397b00" d="M205.42 246.04l.47.223-.47-.223z"/> + <path fill="#428c00" d="M206.36 245.82l.703 6.024h.704l-1.407-6.024z"/> + <path fill="#315221" d="M207.07 245.82l.703.67-.703-.67z"/> + <path fill="#cecece" d="M207.77 245.82l.704.67-.704-.67z"/> + <path fill="#dedede" d="M208.47 245.82l.703.67-.703-.67z"/> + <path fill="#63636b" d="M240.13 245.82l.703.67-.703-.67z"/> + <path fill="#211800" d="M240.83 245.82l2.11 1.34v-.67l-2.11-.67z"/> + <path fill="#212118" d="M241.54 245.82l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M245.06 245.82l.703.67-.703-.67z"/> + <path fill="#002984" d="M247.17 245.82l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M249.28 245.82l.703.67-.703-.67z"/> + <path fill="#392100" d="M249.98 245.82l2.11 2.008-2.11-2.008z"/> + <path fill="#313931" d="M250.68 245.82l.703.67-.703-.67z"/> + <path fill="#efefef" d="M251.39 245.82l.703.67-.703-.67z"/> + <path fill="#424242" d="M257.01 245.82l.704.67-.704-.67z"/> + <path fill="#392100" d="M257.72 245.82l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M258.42 245.82l.704.67-.704-.67z"/> + <path fill="#b51010" d="M260.53 245.82l.704.67-.704-.67z"/> + <path fill="#cecece" d="M265.46 245.82l.703.67-.703-.67z"/> + <path fill="#211810" d="M266.16 245.82l.704.67-.704-.67z"/> + <path fill="#52525a" d="M267.57 245.82l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M290.78 245.82l.703.67-.703-.67z"/> + <path fill="#297b00" d="M291.49 245.82l.704.67-.704-.67z"/> + <path fill="#185200" d="M292.19 245.82l.703.67-.703-.67z"/> + <path fill="#63636b" d="M292.89 245.82l.704.67-.704-.67z"/> + <path fill="#dedede" d="M293.6 245.82l.703.67-.703-.67z"/> + <path fill="#cecece" d="M294.3 245.82l.704.67-.704-.67z"/> + <path fill="#214210" d="M295 245.82l.703.67-.703-.67z"/> + <path fill="#297b00" d="M297.11 245.82l.704.67-.704-.67z"/> + <path fill="#184a00" d="M299.93 245.82l.704.67-.704-.67z"/> + <path fill="#297b00" d="M302.04 245.82l.704.67-.704-.67z"/> + <path fill="#185200" d="M302.74 245.82l.704.67-.704-.67z"/> + <path fill="#103900" d="M306.26 245.82l.703.67-.703-.67z"/> + <path fill="#184a00" d="M307.67 245.82l.703.67-.703-.67z"/> + <path fill="#185200" d="M310.48 245.82l.703.67-.703-.67z"/> + <path fill="#293129" d="M311.89 245.82l.703.67-.703-.67z"/> + <path fill="#cecece" d="M313.29 245.82l.703.67-.703-.67z"/> + <path fill="#292921" d="M314 245.82l.704.67-.704-.67z"/> + <path fill="#424242" d="M195.11 246.49l1.407 1.34-1.407-1.34z"/> + <path fill="#dedede" d="M195.81 246.49l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M197.92 246.49l.703.67-.703-.67z"/> + <path fill="#292100" d="M198.62 246.49l.703.67-.703-.67z"/> + <path fill="#295200" d="M199.33 246.49l.704.67-.704-.67z"/> + <path fill="#315221" d="M201.44 246.49l.703.67-.703-.67z"/> + <path fill="#428c00" d="M204.96 246.49c-.15 3.57-.888 6.695 2.814 8.702l-2.814-8.702z"/> + <path fill="#294200" d="M205.89 246.94l.235.446-.235-.446z"/> + <path fill="#214210" d="M207.77 246.49l.704.67-.704-.67z"/> + <path fill="#424242" d="M208.47 246.49l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M240.83 246.49l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M245.76 246.49l.703.67-.703-.67z"/> + <path fill="#181000" d="M247.17 246.49l1.407 1.34-1.407-1.34z"/> + <path fill="#001039" d="M247.87 246.49l.703.67-.703-.67z"/> + <path fill="#52525a" d="M249.98 246.49l.704.67-.704-.67z"/> + <path fill="#63636b" d="M251.39 246.49l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M256.31 246.49l.703.67-.703-.67z"/> + <path fill="#211800" d="M257.01 246.49l.704.67-.704-.67z"/> + <path d="M257.72 246.49l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M258.42 246.49l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M259.12 246.49l-.704 2.008.704-2.008z"/> + <path fill="#5a1008" d="M259.83 246.49l.704.67-.704-.67z"/> + <path fill="#210800" d="M260.53 246.49l.704.67-.704-.67z"/> + <path fill="#392100" d="M261.24 246.49l-.704 1.34.704-1.34z"/> + <path fill="#63636b" d="M261.94 246.49l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M264.75 246.49l.703.67-.703-.67z"/> + <path fill="#212118" d="M265.46 246.49l.703.67-.703-.67z"/> + <path fill="#211800" d="M266.16 246.49l-1.407 2.008 1.407-2.008z"/> + <path fill="#63636b" d="M266.86 246.49l.703.67-.703-.67z"/> + <path fill="#efefef" d="M290.08 246.49l.703.67-.703-.67z"/> + <path fill="#214210" d="M291.25 246.71l.47.223-.47-.223z"/> + <path fill="#9c9494" d="M292.19 246.49l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M295 246.49l.703.67-.703-.67z"/> + <path fill="#296300" d="M295.71 246.49l.704.67-.704-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#185200" d="M298.52 246.49l.703.67-.703-.67m1.407 0l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M300.63 246.49l.703.67-.703-.67z"/> + <path fill="#184a00" d="M302.74 246.49l.704.67-.704-.67m3.518 0l1.407 1.34-1.408-1.34z"/> + <path fill="#103900" d="M307.67 246.49l.703.67-.703-.67z"/> + <path fill="#184a00" d="M309.78 246.49l1.407 1.34-1.407-1.34z"/> + <path fill="#214210" d="M311.18 246.49l.704.67-.704-.67z"/> + <path fill="#cecece" d="M311.89 246.49l-.704 1.34.704-1.34z"/> + <path fill="#9c9494" d="M312.59 246.49l.703.67-.703-.67z"/> + <path fill="#184a00" d="M313.29 246.49l.703.67-.703-.67z"/> + <path fill="#294221" d="M314 246.49l.704.67-.704-.67z"/> + <path fill="#dedede" d="M317.52 246.49l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M318.22 246.49l.703.67-.703-.67z"/> + <path fill="#214210" d="M195.11 247.16l.703.67-.703-.67z"/> + <path fill="#efefef" d="M196.51 247.16l.704.67-.704-.67z"/> + <path fill="#5a1010" d="M197.92 247.16l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M198.62 247.16l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M199.33 247.16l.704.67-.704-.67z"/> + <path fill="#311000" d="M200.03 247.16l.703.67-.703-.67z"/> + <path fill="#397b00" d="M200.73 247.16l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M201.44 247.16l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M204.25 247.16l.703.67-.703-.67z"/> + <path fill="#295200" d="M208.47 247.16l-.704 1.34.704-1.34m2.814 0l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M241.54 247.16l.704.67-.704-.67z"/> + <path fill="#212118" d="M242.24 247.16l.703.67-.703-.67z"/> + <path fill="#392100" d="M242.94 247.16l2.814 2.678-2.814-2.678z"/> + <path fill="#63636b" d="M243.65 247.16l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M245.99 247.61l.235.446-.235-.446z"/> + <path fill="#520808" d="M246.46 247.16l.703.67-.703-.67z"/> + <path fill="#cecece" d="M248.57 247.16l.703.67-.703-.67z"/> + <path fill="#efefef" d="M249.98 247.16l.704.67-.704-.67z"/> + <path fill="#392121" d="M250.68 247.16l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M252.09 247.16l.703.67-.703-.67z"/> + <path fill="#9c7b08" d="M254.9 247.16l.703.67-.703-.67z"/> + <path fill="#424242" d="M255.61 247.16l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M256.31 247.16l.703.67-.703-.67z"/> + <path fill="#cecece" d="M257.01 247.16l.704.67-.704-.67z"/> + <path d="M259.83 247.16l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M262.17 247.61l.235.446-.235-.446z"/> + <path fill="#9c9494" d="M264.05 247.16l.703.67-.703-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#63636b" d="M290.08 247.16l.703.67-.703-.67z"/> + <path fill="#425242" d="M290.78 247.16l.703.67-.703-.67z"/> + <path fill="#cecece" d="M291.49 247.16l.704.67-.704-.67z"/> + <path fill="#5a6b52" d="M295.71 247.16l.704.67-.704-.67z"/> + <path fill="#297b00" d="M296.41 247.16l.703.67-.703-.67z"/> + <path fill="#184a00" d="M298.52 247.16l.703.67-.703-.67z"/> + <path fill="#297b00" d="M298.52 248.5l2.11-.67-2.11.67z"/> + <path fill="#103900" d="M302.74 247.16l.704.67-.704-.67z"/> + <path fill="#296300" d="M306.26 247.16v2.008h.703l-.703-2.008m1.407 0l.703.67-.703-.67z"/> + <path fill="#103900" d="M309.78 247.16l-.703 2.008.703-2.008z"/> + <path fill="#8c8c8c" d="M311.89 247.16l.703.67-.703-.67z"/> + <path fill="#185200" d="M312.59 247.16l-.703 1.34.703-1.34z"/> + <path fill="#296300" d="M313.29 247.16l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M314 247.16l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M316.11 247.16l.703.67-.703-.67z"/> + <path fill="#424242" d="M316.81 247.16l.704.67-.704-.67z"/> + <path fill="#313931" d="M317.52 247.16l.703.67-.703-.67z"/> + <path fill="#efefef" d="M318.22 247.16l-1.407 2.008 1.407-2.008z"/> + <path fill="#295200" d="M195.11 247.83l.703.67-.703-.67z"/> + <path fill="#397b00" d="M195.81 247.83l.703.67-.703-.67z"/> + <path fill="#314231" d="M196.51 247.83l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M197.22 247.83l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M197.92 247.83l.703.67-.703-.67z"/> + <path fill="#941808" d="M200.03 247.83l.703.67-.703-.67z"/> + <path fill="#313931" d="M200.73 247.83l.703.67-.703-.67z"/> + <path fill="#526b42" d="M204.25 247.83l.703.67-.703-.67z"/> + <path fill="#397b00" d="M206.13 248.05l.47.223-.47-.223m2.345-.223l.703.67-.703-.67z"/> + <path fill="#295200" d="M210.58 247.83l.704.67-.704-.67z"/> + <path fill="#524242" d="M242.24 247.83l.703.67-.703-.67z"/> + <path fill="#210800" d="M242.94 247.83l.703.67-.703-.67z"/> + <path fill="#424242" d="M244.35 247.83l.704.67-.704-.67z"/> + <path fill="#efefef" d="M245.06 247.83l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M246.7 248.28l.235.446-.235-.446z"/> + <path fill="#5a1008" d="M247.17 247.83l1.407 1.34-1.407-1.34z"/> + <path fill="#392100" d="M247.87 247.83l1.407 1.34-1.407-1.34z"/> + <path fill="#211810" d="M248.57 247.83l.703.67-.703-.67z"/> + <path fill="#dedede" d="M249.28 247.83l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M250.68 247.83l-.704 1.34.704-1.34z"/> + <path fill="#211800" d="M251.39 247.83l.703.67-.703-.67z"/> + <path fill="#212118" d="M252.09 247.83l.703.67-.703-.67z"/> + <path fill="#6b5a10" d="M254.2 247.83l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M254.9 247.83l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M256.31 247.83l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M257.01 247.83l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M257.72 247.83l.703.67-.703-.67z"/> + <path fill="#dedede" d="M259.12 247.83l.703.67-.703-.67z"/> + <path fill="#313931" d="M259.83 247.83l.704.67-.704-.67z"/> + <path fill="#de2110" d="M261.47 248.28l.235.446-.235-.446z"/> + <path fill="#63636b" d="M263.35 247.83l.704.67-.704-.67z"/> + <path fill="#392100" d="M264.05 247.83l-2.11 2.678 2.11-2.678z"/> + <path fill="#524242" d="M265.46 247.83l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M290.08 247.83l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M293.6 247.83l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M294.3 247.83l.704.67-.704-.67z"/> + <path fill="#dedede" d="M295.71 247.83l-.703 1.34.703-1.34z"/> + <path fill="#214210" d="M296.41 247.83l.703.67-.703-.67z"/> + <path fill="#103900" d="M299.22 247.83l.704.67-.704-.67z"/> + <path fill="#319400" d="M299.93 247.83l.704.67-.704-.67z"/> + <path fill="#103900" d="M300.63 247.83l-.704 2.008.704-2.008z"/> + <path fill="#184a00" d="M302.74 247.83l.704.67-.704-.67z"/> + <path fill="#082108" d="M306.96 247.83l.703.67-.703-.67z"/> + <path fill="#297b00" d="M309.07 247.83l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M310.71 248.28l.235.446-.235-.446z"/> + <path fill="#63636b" d="M311.18 247.83l.704.67-.704-.67z"/> + <path fill="#319400" d="M312.59 247.83l-4.925 7.363 4.925-7.363z"/> + <path fill="#294221" d="M313.29 247.83l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M314.7 247.83l.703.67-.703-.67z"/> + <path fill="#425242" d="M315.4 247.83l.703.67-.703-.67z"/> + <path fill="#184a00" d="M316.11 247.83l.703.67-.703-.67z"/> + <path fill="#314231" d="M316.81 247.83l.704.67-.704-.67z"/> + <path fill="#294200" d="M195.11 248.5v1.34l1.407-1.34h-1.407z"/> + <path fill="#428c00" d="M196.51 248.5l1.407 2.678-2.11-1.34c.688 2.7 1.413 4.337 4.22 5.356v.67l-2.813-.67 1.407 2.008-2.11-.67 6.332 6.025.703-2.677 2.11 1.338-4.22-4.016v-.67l2.11.67c-1.027-4.063-3.114-6.76-7.035-8.702z"/> + <path fill="#294200" d="M197.22 248.5l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M197.92 248.5l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M198.62 248.5l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M200.03 248.5l1.407 1.34-1.407-1.34z"/> + <path fill="#7b7373" d="M200.73 248.5l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M201.44 248.5l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.25 248.5l.703.67-.703-.67z"/> + <path fill="#295200" d="M206.36 248.5l.703.67-.703-.67z"/> + <path fill="#294200" d="M207.77 248.5v6.024h.704l-.704-6.024m3.05.446l.233.447-.234-.447z"/> + <path fill="#295200" d="M215.51 248.5l.703.67-.703-.67z"/> + <path fill="#527b31" d="M217.62 248.5l.704.67-.704-.67z"/> + <path d="M242.24 248.5v14.727h.703l-.703-14.727z" fill-opacity=".575" fill="#734a42"/> + <path fill="#ce2110" d="M242.94 248.5l1.407 1.34-1.407-1.34z"/> + <path fill="#311000" d="M243.65 248.5l.703.67-.703-.67z"/> + <path fill="#313931" d="M245.06 248.5l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M245.76 248.5l.703.67-.703-.67z"/> + <path fill="#de2110" d="M247.17 248.5v1.34h1.407l-1.407-1.34z"/> + <path fill="#313931" d="M249.28 248.5l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M250.68 248.5l.703.67-.703-.67z"/> + <path fill="#52525a" d="M251.39 248.5l.703.67-.703-.67z"/> + <path fill="#392121" d="M252.09 248.5l.703.67-.703-.67z"/> + <path fill="#423100" d="M252.79 248.5l.704.67-.704-.67z"/> + <path fill="#5a5231" d="M253.5 248.5l.704.67-.704-.67z"/> + <path fill="#cecece" d="M254.2 248.5l.703.67-.703-.67z"/> + <path fill="#dedede" d="M254.9 248.5l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M255.61 248.5l-.703 1.34.703-1.34z"/> + <path fill="#9c9494" d="M256.31 248.5l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M259.83 248.5l-2.814 1.34v.668l3.517-1.34-.703-.668z"/> + <path fill="#ada5a5" d="M261.94 248.5l.703.67-.703-.67z"/> + <path fill="#424242" d="M262.64 248.5l.703.67-.703-.67z"/> + <path fill="#210800" d="M264.05 248.5l.703.67-.703-.67z"/> + <path fill="#b51010" d="M264.75 248.5l.703.67-.703-.67z"/> + <path fill="#734a42" d="M265.46 248.5l-.703 15.396h.703c1.27-4.087 1.75-11.427 0-15.396z"/> + <path d="M294.3 248.5l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M296.41 248.5l.703.67-.703-.67z"/> + <path fill="#297b00" d="M297.11 248.5l.704.67-.704-.67z"/> + <path fill="#296300" d="M299.22 248.5l.704.67-.704-.67z"/> + <path fill="#185200" d="M299.93 248.5l.704.67-.704-.67z"/> + <path fill="#296300" d="M303.21 248.72l.47.223-.47-.223z"/> + <path fill="#103900" d="M306.96 248.5l.703.67-.703-.67z"/> + <path fill="#52525a" d="M309.78 248.5l.703.67-.703-.67z"/> + <path fill="#296300" d="M311.18 248.5l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M313.29 248.5l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M314 248.5l.704.67-.704-.67z"/> + <path fill="#185200" d="M314.7 248.5l.703.67-.703-.67z"/> + <path fill="#297b00" d="M315.4 248.5l-1.407.67v.67l1.407-1.34z"/> + <path fill="#52525a" d="M316.11 248.5l.703.67-.703-.67z"/> + <path fill="#397b00" d="M195.81 249.17l.703.67-.703-.67z"/> + <path fill="#295200" d="M196.51 249.17l.704.67-.704-.67z"/> + <path fill="#293100" d="M198.62 249.17l.703.67-.703-.67z"/> + <path fill="#311000" d="M199.33 249.17l.704.67-.704-.67z"/> + <path fill="#103900" d="M200.03 249.17l.703.67-.703-.67z"/> + <path fill="#941808" d="M201.44 249.17l.703.67-.703-.67z"/> + <path fill="#5a2121" d="M202.14 249.17l.704.67-.704-.67z"/> + <path fill="#cecece" d="M202.85 249.17l.703.67-.703-.67z"/> + <path fill="#dedede" d="M203.55 249.17l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.25 249.17l.703.67-.703-.67z"/> + <path fill="#397b00" d="M215.27 249.39l.47.223-.47-.223z"/> + <path fill="#526b42" d="M217.62 249.17l.704.67-.704-.67z"/> + <path fill="#de2110" d="M242.94 249.17v14.057l7.738 1.34c-1.69-4.943-2.716-12.724-7.738-15.397z"/> + <path fill="#5a1008" d="M244.35 249.17l.704.67-.704-.67z"/> + <path fill="#100808" d="M245.76 249.17l.703.67-.703-.67z"/> + <path fill="#941808" d="M246.46 249.17l.703.67-.703-.67z"/> + <path fill="#310000" d="M248.57 249.17l.703.67-.703-.67z"/> + <path fill="#524242" d="M249.28 249.17l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M250.21 249.61l.235.446-.235-.446z"/> + <path fill="#efefef" d="M252.79 249.17l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M253.73 249.61l.235.446-.235-.446z"/> + <path fill="#bdbdbd" d="M254.2 249.17l.703.67-.703-.67z"/> + <path fill="#dedede" d="M257.01 249.17l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M259.83 249.17l.704.67-.704-.67z"/> + <path fill="#100808" d="M260.53 249.17l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M261.24 249.17l.703.67-.703-.67z"/> + <path fill="#101810" d="M261.94 249.17l.703.67-.703-.67z"/> + <path fill="#311000" d="M263.35 249.17l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M264.05 249.17l-.704 1.34.704-1.34z"/> + <path fill="#de2110" d="M264.75 249.17l-2.814 2.008 2.814 8.702-4.925 1.34.704 2.677 4.924-.67-.704-14.057z"/> + <path fill="#214210" d="M294.3 249.17l.704.67-.704-.67z"/> + <path fill="#425242" d="M295 249.17l.703.67-.703-.67z"/> + <path fill="#395231" d="M297.11 249.17l.704.67-.704-.67z"/> + <path fill="#184a00" d="M300.63 249.17l.703.67-.703-.67z"/> + <path fill="#297b00" d="M301.33 249.17l.703.67-.703-.67z"/> + <path fill="#184a00" d="M303.45 249.17v2.008h.703l-.703-2.008z"/> + <path fill="#185200" d="M306.26 249.17l.703.67-.703-.67z"/> + <path fill="#297b00" d="M306.96 249.17l.703.67-.703-.67z"/> + <path fill="#292921" d="M309.07 249.17l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M309.78 249.17l.703.67-.703-.67z"/> + <path fill="#184a00" d="M310.48 249.17l.703.67-.703-.67z"/> + <path fill="#102110" d="M312.59 249.17l.703.67-.703-.67z"/> + <path fill="#314231" d="M313.29 249.17l.703.67-.703-.67z"/> + <path fill="#63636b" d="M314.7 249.84v.67h2.11l-2.11-.67z"/> + <path fill="#426331" d="M195.11 249.84l.703.67-.703-.67z"/> + <path fill="#294200" d="M196.51 249.84l.704.67-.704-.67z"/> + <path fill="#397b00" d="M197.22 249.84l.703.67-.703-.67z"/> + <path fill="#295200" d="M199.33 249.84l2.11 2.008-2.11-2.008z"/> + <path fill="#211800" d="M200.03 249.84l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M202.38 250.28l.235.446-.235-.446z"/> + <path fill="#7b7373" d="M203.08 250.28l.235.446-.235-.446z"/> + <path fill="#bdbdbd" d="M203.55 249.84l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.25 249.84l.703.67-.703-.67z"/> + <path fill="#295200" d="M210.58 249.84l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M217.62 249.84l.704.67-.704-.67z"/> + <path fill="#631808" d="M245.06 249.84l.703.67-.703-.67z"/> + <path fill="#211800" d="M245.76 249.84l1.407 1.34v-1.34h-1.407z"/> + <path fill="#631808" d="M247.17 249.84l.704.67-.704-.67z"/> + <path fill="#5a2121" d="M247.87 249.84l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M248.81 250.28l.235.446-.235-.446z"/> + <path fill="#8c8c8c" d="M250.68 249.84v.67h2.11l-2.11-.67z"/> + <path fill="#bdbdbd" d="M252.79 249.84l.704.67-.704-.67z"/> + <path fill="#dedede" d="M255.61 249.84l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M256.31 249.84l.703.67-.703-.67z"/> + <path fill="#efefef" d="M257.72 249.84l.703.67-.703-.67z"/> + <path fill="#313931" d="M260.53 249.84l.704.67-.704-.67z"/> + <path fill="#211800" d="M261.24 249.84l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M262.64 249.84l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M294.3 249.84l.704.67-.704-.67z"/> + <path fill="#296300" d="M295 249.84l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M295.71 249.84l.704.67-.704-.67m1.64.446l.236.447-.235-.447z"/> + <path fill="#185200" d="M297.82 249.84l.703.67-.703-.67z"/> + <path fill="#297b00" d="M299.93 249.84l.704.67-.704-.67z"/> + <path fill="#082108" d="M300.63 249.84l.703.67-.703-.67z"/> + <path fill="#185200" d="M301.33 249.84l.703.67-.703-.67z"/> + <path fill="#184a00" d="M306.49 250.28l.235.446-.235-.446z"/> + <path fill="#296300" d="M308.37 249.84l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M309.07 249.84l.703.67-.703-.67z"/> + <path fill="#314231" d="M309.78 249.84l.703.67-.703-.67z"/> + <path fill="#185200" d="M311.89 249.84l.703.67-.703-.67z"/> + <path fill="#184a00" d="M312.59 249.84l.703.67-.703-.67z"/> + <path fill="#319400" d="M313.29 249.84l-.703 1.34.703-1.34z"/> + <path fill="#296300" d="M314 249.84l.704.67-.704-.67z"/> + <path fill="#efefef" d="M315.4 249.84l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M316.81 249.84l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M195.11 250.51l.703.67-.703-.67z"/> + <path fill="#103900" d="M197.22 250.51l.703.67-.703-.67z"/> + <path fill="#941808" d="M200.73 250.51l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M203.55 250.51l.703.67-.703-.67z"/> + <path fill="#397b00" d="M210.35 250.73l.47.223-.47-.223z"/> + <path fill="#8c8c8c" d="M217.62 250.51l.704.67-.704-.67z"/> + <path fill="#941808" d="M245.76 250.51l.703.67-.703-.67z"/> + <path d="M247.17 250.51l3.518 13.388c4.284-1.497 10.863-2.087 13.366-6.025l-12.663 4.017-4.22-11.38z"/> + <path fill="#ada5a5" d="M247.87 250.51l.703.67-.703-.67z"/> + <path fill="#63636b" d="M249.28 250.51l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M249.98 250.51l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M253.5 250.51l.704.67-.704-.67z"/> + <path fill="#cecece" d="M254.2 250.51l.703.67-.703-.67z"/> + <path fill="#efefef" d="M256.31 250.51l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M258.66 250.95l.235.446-.235-.446z"/> + <path fill="#9c9494" d="M259.12 250.51l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M260.3 250.73l.47.223-.47-.223z"/> + <path d="M261.24 250.51l.703.67-.703-.67z"/> + <path fill="#631808" d="M261.94 250.51l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M294.3 250.51l.704.67-.704-.67z"/> + <path fill="#319400" d="M295 250.51l5.628 21.42h-.704v-1.34h-.703l.704 6.026h-.703v-1.34h-.702v5.356h-.704c-.06-6.818-2.76-12.92-6.33-18.743l-1.408 1.338v.67c5.153 4.894 6.732 15.39 7.034 22.09h-1.407l-2.814-14.058h-.704l2.11 18.743h-.703l-2.814-14.057h-.705l2.11 21.42h-.703l-1.407-17.404h-.703l1.407 17.404h-.705l-.703-9.37h-.704l.704 11.38h-.704l-.703-9.373h-.704l-2.11 12.718 7.74-.668v-.67l-4.925-.67v-.668l18.29 4.685v-.67l-8.44-2.678v-.67l12.662 2.68c-3.97-4.813-9.023-4.04-14.773-3.348v-.67l16.18.67v-.67l-11.256-2.677v-.67l11.256.67v-.67c-8.045-1.75-12.078-.742-18.29 4.686L295 294.69h-.704l-.703 2.007h-.704l3.517-10.04h.703l-.703 7.362 16.18-6.025v-.67l-14.773 4.017c5.638-4.407 13.79-8.15 21.105-8.702v-.67c-8.423 0-12.94 1.932-19.7 6.694 5.294-6.566 13.515-7.24 21.106-10.04v-.67c-9.55.717-14.09 2.88-21.808 8.033 4.773-4.54 12.924-12.457 20.4-10.71l-1.406-3.347c-6.478 1.464-12.116 5.04-16.884 9.37 3.276-4.387 14.795-16.512 20.4-16.064-5.69-4.97-16.608 10.185-20.4 13.388l15.477-16.735-13.366 11.38 14.772-18.744v-.67c-7 2.46-9.068 10.783-14.07 15.397l10.552-16.735c-4.702 3.227-8.536 9.358-9.85 14.727-3.236.387-2.11 5.495-2.11 8.032h-.703c0-8.138-.98-18.033-6.33-24.767z"/> + <path fill="#314231" d="M295.71 250.51l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M296.41 250.51l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M297.82 250.51l.703.67-.703-.67z"/> + <path fill="#184a00" d="M300.63 250.51l.703.67-.703-.67z"/> + <path fill="#103900" d="M301.33 250.51l.703.67-.703-.67m7.035 0l.703.67-.703-.67z"/> + <path fill="#63636b" d="M309.07 250.51l.703.67-.703-.67z"/> + <path fill="#297b00" d="M309.78 250.51l.703.67-.703-.67m1.407 0l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M311.89 250.51l.703.67-.703-.67z"/> + <path fill="#185200" d="M313.29 250.51l-4.22 3.347v.67l4.22-4.017z"/> + <path fill="#8c8c8c" d="M314 250.51l-.703 1.34.703-1.34z"/> + <path fill="#ada5a5" d="M314.7 250.51l.703.67-.703-.67z"/> + <path fill="#102110" d="M315.4 250.51l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M316.11 250.51l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M195.11 251.18l.703.67-.703-.67z"/> + <path fill="#397b00" d="M195.81 251.18l.703.67-.703-.67z"/> + <path fill="#103900" d="M197.92 251.18l2.11 2.008-2.11-2.008z"/> + <path fill="#5a1008" d="M201.44 251.18l.703.67-.703-.67z"/> + <path fill="#733939" d="M202.14 251.18l.704.67-.704-.67z"/> + <path fill="#dedede" d="M202.85 251.18l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M203.55 251.18l.703.67-.703-.67z"/> + <path fill="#295200" d="M206.36 251.18l1.407 1.34-1.407-1.34z"/> + <path fill="#294200" d="M209.88 251.18l.703.67-.703-.67z"/> + <path fill="#397b00" d="M213.4 251.18l.704.67-.704-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#bdbdbd" d="M217.62 251.18l.704.67-.704-.67z"/> + <path fill="#100808" d="M246.46 251.18l.703.67-.703-.67z"/> + <path fill="#63636b" d="M247.87 251.18l.703.67-.703-.67z"/> + <path fill="#cecece" d="M250.68 251.18l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M251.39 251.18v.67h2.11l-2.11-.67z"/> + <path fill="#efefef" d="M253.5 251.18l.704.67-.704-.67z"/> + <path fill="#dedede" d="M256.31 251.18l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M257.48 251.4l.47.223-.47-.223z"/> + <path fill="#dedede" d="M259.12 251.18l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#210800" d="M261.24 251.18l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M292.89 251.18l.704.67-.704-.67z"/> + <path fill="#efefef" d="M293.6 251.18l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M294.3 251.18l-.703 1.34.703-1.34z"/> + <path fill="#185200" d="M295.71 251.18l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M296.41 251.18l.703.67-.703-.67z"/> + <path fill="#292921" d="M297.11 251.18l.704.67-.704-.67z"/> + <path fill="#cecece" d="M297.82 251.18l.703.67-.703-.67z"/> + <path fill="#185200" d="M298.52 251.18l.703.67-.703-.67z"/> + <path fill="#297b00" d="M300.63 251.18l.703.67-.703-.67z"/> + <path fill="#082108" d="M301.33 251.18l.703.67-.703-.67z"/> + <path fill="#185200" d="M303.45 251.18l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M304.15 251.18l.703.67-.703-.67z"/> + <path fill="#296300" d="M306.02 251.4l.47.223-.47-.223z"/> + <path fill="#102110" d="M308.37 251.18l.704.67-.704-.67z"/> + <path fill="#296300" d="M309.07 251.18l.703.67-.703-.67z"/> + <path fill="#184a00" d="M311.18 251.18l.704.67-.704-.67z"/> + <path fill="#425242" d="M314 251.18l.704.67-.704-.67z"/> + <path fill="#185200" d="M314.7 251.18l.703.67-.703-.67z"/> + <path fill="#314231" d="M315.4 251.18l.703.67-.703-.67z"/> + <path fill="#efefef" d="M195.11 251.85l.703.67-.703-.67z"/> + <path fill="#295200" d="M195.81 251.85l.703.67-.703-.67z"/> + <path fill="#214210" d="M201.44 251.85l.703.67-.703-.67z"/> + <path fill="#efefef" d="M202.14 251.85l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M203.55 251.85l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.25 251.85l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#295200" d="M209.88 251.85l.703.67-.703-.67z"/> + <path fill="#103900" d="M212.69 251.85l.703.67-.703-.67z"/> + <path fill="#397b00" d="M214.57 252.07l.47.223-.47-.223z"/> + <path fill="#315221" d="M216.92 251.85l.703.67-.703-.67z"/> + <path fill="#420000" d="M246.46 251.85l.703.67-.703-.67z"/> + <path fill="#101810" d="M247.87 251.85l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M249.28 251.85l-.703 1.34.703-1.34z"/> + <path fill="#7b7373" d="M249.98 251.85l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M250.68 251.85l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M256.08 252.07l.47.223-.47-.223z"/> + <path fill="#efefef" d="M257.01 251.85l1.407 4.016h.704l-2.11-4.016m2.11 0l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M260.06 252.29l.235.446-.235-.446z"/> + <path fill="#ada5a5" d="M260.53 251.85l.704.67-.704-.67z"/> + <path fill="#313931" d="M261.24 251.85l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M261.94 251.85l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M292.89 251.85l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#297b00" d="M295 251.85l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M296.41 251.85l.703.67-.703-.67z"/> + <path fill="#103900" d="M297.11 251.85l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M297.82 251.85l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M298.52 251.85l.703.67-.703-.67z"/> + <path fill="#297b00" d="M299.22 251.85l.704.67-.704-.67z"/> + <path fill="#103900" d="M301.33 251.85l.703.67-.703-.67z"/> + <path fill="#297b00" d="M303.45 251.85l.703.67-.703-.67z"/> + <path fill="#184a00" d="M305.56 251.85l.704.67-.704-.67z"/> + <path fill="#297b00" d="M307.67 251.85l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M308.37 251.85l.704.67-.704-.67z"/> + <path fill="#296300" d="M310.48 251.85l.703.67-.703-.67z"/> + <path fill="#313931" d="M312.59 251.85l.703.67-.703-.67z"/> + <path fill="#214210" d="M313.29 251.85l.703.67-.703-.67z"/> + <path fill="#297b00" d="M314 251.85l.704.67-.704-.67z"/> + <path fill="#103910" d="M314.7 251.85l.703.67-.703-.67z"/> + <path fill="#efefef" d="M315.4 251.85l.703.67-.703-.67z"/> + <path fill="#425242" d="M195.81 252.52l.703.67-.703-.67z"/> + <path fill="#63636b" d="M202.14 252.52l.704.67-.704-.67z"/> + <path fill="#dedede" d="M203.55 252.52l-.703 1.34.703-1.34z"/> + <path fill="#396b10" d="M204.25 252.52l.703.67-.703-.67z"/> + <path fill="#397b00" d="M209.88 252.52l.703.67-.703-.67m1.407 1.34l2.11-.67-2.11.67z"/> + <path fill="#103900" d="M214.1 252.52l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M216.92 252.52l.703.67-.703-.67z"/> + <path fill="#941808" d="M246.46 252.52l.703.67-.703-.67z"/> + <path fill="#cecece" d="M249.28 252.52l.703.67-.703-.67z"/> + <path fill="#dedede" d="M251.39 252.52l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M252.09 252.52l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#cecece" d="M254.9 252.52l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M257.72 252.52l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M258.89 252.74l.47.223-.47-.223z"/> + <path fill="#efefef" d="M260.53 252.52l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M261.24 252.52l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M261.94 252.52l.703.67-.703-.67z"/> + <path fill="#dedede" d="M292.89 252.52l.704.67-.704-.67z"/> + <path fill="#101810" d="M293.6 252.52l.703.67-.703-.67z"/> + <path fill="#cecece" d="M294.3 252.52l.704.67-.704-.67z"/> + <path fill="#296300" d="M295 252.52l.703.67-.703-.67z"/> + <path fill="#184a00" d="M296.41 252.52l.703.67-.703-.67z"/> + <path fill="#082108" d="M297.11 252.52l.704.67-.704-.67z"/> + <path fill="#185200" d="M297.82 252.52l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M298.52 252.52l.703.67-.703-.67z"/> + <path fill="#184a00" d="M299.22 252.52l.704.67-.704-.67z"/> + <path fill="#296300" d="M301.8 252.74l.47.223-.47-.223z"/> + <path fill="#103900" d="M304.15 252.52l.703.67-.703-.67m1.407 0l.704.67-.703-.67m2.11 0l.704.67-.703-.67m2.814 0l.705.67-.704-.67z"/> + <path d="M311.89 252.52l.703.67-.703-.67z"/> + <path fill="#296300" d="M312.59 252.52l.703.67-.703-.67z"/> + <path fill="#184a00" d="M314 252.52l.704.67-.704-.67z"/> + <path fill="#cecece" d="M314.7 252.52l.703.67-.703-.67z"/> + <path fill="#dedede" d="M195.11 253.18l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M195.81 253.18l.703.67-.703-.67z"/> + <path fill="#295200" d="M196.51 253.18l.704.67-.704-.67z"/> + <path fill="#292100" d="M200.03 253.18l.703.67-.703-.67z"/> + <path fill="#294200" d="M202.14 253.18l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M204.25 253.18l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.96 253.18l.704.67-.704-.67z"/> + <path fill="#294200" d="M211.99 253.18l.703.67-.703-.67z"/> + <path fill="#428c00" d="M212.69 253.18l-.703 1.34.703-1.34z"/> + <path fill="#295200" d="M213.4 253.18l.704.67-.704-.67z"/> + <path fill="#397b00" d="M214.1 253.18l.704.67-.704-.67z"/> + <path fill="#213918" d="M216.21 253.18l.704.67-.704-.67z"/> + <path fill="#efefef" d="M216.92 253.18l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M246.46 253.18l.703.67-.703-.67z"/> + <path fill="#63636b" d="M248.57 253.18l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M249.98 253.18l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M251.15 253.41l.47.223-.47-.223z"/> + <path fill="#cecece" d="M252.09 253.18l2.11 2.008-2.11-2.008z"/> + <path fill="#8c8c8c" d="M254.9 253.18l.703.67-.703-.67z"/> + <path fill="#efefef" d="M255.61 253.18l1.407 2.008-1.407-2.008z"/> + <path fill="#8c8c8c" d="M256.78 253.41l.47.223-.47-.223z"/> + <path fill="#dedede" d="M260.53 253.18l1.407 1.34-1.407-1.34z"/> + <path fill="#bdbdbd" d="M261.24 253.18l.703.67-.703-.67z"/> + <path fill="#210800" d="M261.94 253.18l.703.67-.703-.67z"/> + <path fill="#103910" d="M293.6 253.18l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M294.3 253.18l.704.67-.704-.67z"/> + <path fill="#184a00" d="M295 253.18l.703.67-.703-.67z"/> + <path fill="#297b00" d="M296.41 253.18l.703.67-.703-.67z"/> + <path fill="#001000" d="M297.11 253.18l.704.67-.704-.67z"/> + <path fill="#319400" d="M297.82 253.18l.703.67-.703-.67z"/> + <path fill="#103910" d="M298.52 253.18l.703.67-.703-.67z"/> + <path fill="#425242" d="M299.22 253.18l.704.67-.704-.67z"/> + <path fill="#103900" d="M302.04 253.18l.704.67-.704-.67z"/> + <path fill="#184a00" d="M304.15 253.18l.703.67-.703-.67z"/> + <path fill="#185200" d="M305.56 253.18l.704.67-.704-.67z"/> + <path fill="#297b00" d="M306.96 253.18l1.407 1.34-1.407-1.34z"/> + <path fill="#184a00" d="M307.67 253.18l.703.67-.703-.67z"/> + <path fill="#103900" d="M309.78 253.18l.703.67-.703-.67z"/> + <path fill="#001000" d="M311.18 253.18l-.703 1.34.703-1.34z"/> + <path fill="#297b00" d="M311.89 253.18l.703.67-.703-.67m1.407 0l-.703 1.34.703-1.34z"/> + <path fill="#8c8c8c" d="M314 253.18l.704.67-.704-.67z"/> + <path fill="#dedede" d="M314.7 253.18l.703.67-.703-.67z"/> + <path fill="#63636b" d="M315.4 253.18l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M316.11 253.18l.703.67-.703-.67z"/> + <path fill="#8c9c84" d="M316.81 253.18l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M317.52 253.18l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M318.22 253.18l.703.67-.703-.67z"/> + <path fill="#313931" d="M195.11 253.85l.703.67-.703-.67z"/> + <path fill="#63636b" d="M195.81 253.85l.703.67-.703-.67z"/> + <path fill="#425242" d="M196.51 253.85l.704.67-.704-.67z"/> + <path fill="#397b00" d="M200.03 253.85l.703.67-.703-.67z"/> + <path fill="#294200" d="M200.73 253.85l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M202.85 253.85l.703.67-.703-.67z"/> + <path fill="#425242" d="M204.96 253.85l.704.67-.704-.67z"/> + <path fill="#103900" d="M211.29 253.85l.704.67-.704-.67z"/> + <path fill="#397b00" d="M212.69 253.85l-.703 1.34.703-1.34z"/> + <path fill="#294200" d="M213.4 253.85l.704.67-.704-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#cecece" d="M216.21 253.85l.704.67-.704-.67z"/> + <path fill="#420000" d="M247.17 253.85l.704.67-.704-.67z"/> + <path fill="#101810" d="M248.57 253.85l.703.67-.703-.67z"/> + <path fill="#dedede" d="M249.28 253.85l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M249.98 253.85l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M253.5 253.85l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M254.2 253.85l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M254.9 253.85l.703.67-.703-.67z"/> + <path fill="#dedede" d="M256.31 253.85l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M258.42 253.85v.67h2.11l-2.11-.67z"/> + <path fill="#ada5a5" d="M260.53 253.85l.704.67-.704-.67z"/> + <path fill="#313931" d="M261.94 253.85l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M262.64 253.85l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M293.6 253.85l.703.67-.703-.67z"/> + <path fill="#294221" d="M294.3 253.85l.704.67-.704-.67z"/> + <path fill="#4a6342" d="M295 253.85l.703.67-.703-.67z"/> + <path fill="#103900" d="M297.11 253.85l.704.67-.704-.67z"/> + <path fill="#297b00" d="M297.11 255.19l2.11-.67-2.11.67z"/> + <path fill="#313931" d="M299.22 253.85l.704.67-.704-.67z"/> + <path fill="#296300" d="M299.93 253.85l.704.67-.704-.67z"/> + <path fill="#185200" d="M302.04 253.85l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M302.74 253.85l.704.67-.704-.67z"/> + <path fill="#103900" d="M306.96 253.85l.703.67-.703-.67z"/> + <path fill="#297b00" d="M311.18 253.85l.704.67-.704-.67z"/> + <path fill="#425242" d="M313.29 253.85l.703.67-.703-.67z"/> + <path fill="#cecece" d="M314 253.85l.704.67-.704-.67z"/> + <path fill="#214210" d="M314.7 253.85l.703.67-.703-.67z"/> + <path fill="#297b00" d="M315.4 253.85l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#296300" d="M318.22 253.85l.703.67-.703-.67z"/> + <path fill="#184a00" d="M318.92 253.85l.703.67-.703-.67z"/> + <path fill="#425242" d="M319.63 253.85l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M320.56 254.3l.235.446-.235-.446z"/> + <path fill="#8c8c8c" d="M195.11 254.52l.703.67-.703-.67z"/> + <path fill="#428c00" d="M195.81 254.52l.703.67-.703-.67z"/> + <path fill="#294200" d="M196.51 254.52l.704.67-.704-.67z"/> + <path fill="#103900" d="M197.22 254.52l.703.67-.703-.67z"/> + <path fill="#397b00" d="M197.92 254.52l.703.67-.703-.67z"/> + <path fill="#295200" d="M200.73 254.52l.703.67-.703-.67z"/> + <path fill="#397b00" d="M201.67 254.97l.235.446-.235-.446z"/> + <path fill="#315221" d="M202.85 254.52l.703.67-.703-.67z"/> + <path fill="#cecece" d="M204.96 254.52l.704.67-.704-.67z"/> + <path fill="#294200" d="M205.66 254.52l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.77 254.52l.704.67-.704-.67z"/> + <path fill="#103900" d="M210.58 254.52l.704.67-.704-.67z"/> + <path fill="#294200" d="M212.69 254.52l.703.67-.703-.67z"/> + <path fill="#295200" d="M214.8 254.52l-.704 1.34.704-1.34z"/> + <path fill="#9c9494" d="M215.51 254.52l-.703 1.34.703-1.34z"/> + <path fill="#941808" d="M247.17 254.52l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M249.28 254.52l.703.67-.703-.67z"/> + <path fill="#dedede" d="M250.68 254.52l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M251.86 254.75l.47.223-.47-.223z"/> + <path fill="#ada5a5" d="M252.79 254.52l.704.67-.704-.67m2.58.223l.468.223-.468-.223z"/> + <path fill="#8c8c8c" d="M257.01 254.52l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M257.72 254.52l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M261.94 254.52l-2.814.67v.67l3.518-.67-.704-.67z"/> + <path fill="#7b1008" d="M262.64 254.52l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M293.6 254.52l.703.67-.703-.67z"/> + <path fill="#296300" d="M294.3 254.52l.704.67-.704-.67z"/> + <path fill="#001000" d="M295 254.52l.703.67-.703-.67z"/> + <path fill="#185200" d="M297.82 254.52l.703.67-.703-.67z"/> + <path fill="#319400" d="M298.52 254.52l2.814 11.38h.703c-.035-4.11-.55-8.216-3.517-11.38z"/> + <path fill="#184a00" d="M299.22 254.52l.704.67-.704-.67z"/> + <path fill="#103900" d="M299.93 254.52l.704.67-.704-.67z"/> + <path fill="#297b00" d="M302.04 254.52l.704.67-.704-.67z"/> + <path fill="#103900" d="M304.85 254.52l.703.67-.703-.67z"/> + <path fill="#184a00" d="M306.96 254.52l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#103900" d="M309.78 254.52l.703.67-.703-.67z"/> + <path fill="#297b00" d="M310.48 254.52l.703.67-.703-.67z"/> + <path fill="#214210" d="M312.59 254.52l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M313.29 254.52l.703.67-.703-.67z"/> + <path fill="#214210" d="M314 254.52l.704.67-.704-.67z"/> + <path fill="#297b00" d="M316.11 254.52l.703.67-.703-.67z"/> + <path fill="#185200" d="M316.81 254.52l.704.67-.704-.67z"/> + <path fill="#184a00" d="M317.52 254.52l.703.67-.703-.67z"/> + <path fill="#295210" d="M318.22 254.52l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M318.92 254.52l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M319.63 254.52l.704.67-.704-.67z"/> + <path fill="#dedede" d="M195.11 255.19l.703.67-.703-.67z"/> + <path fill="#295200" d="M195.81 255.19l2.11 1.34-2.11-1.34m2.11 0l.704.67-.704-.67z"/> + <path fill="#103900" d="M198.62 255.19l.703.67-.703-.67z"/> + <path fill="#295200" d="M199.33 255.19l.704.67-.704-.67z"/> + <path fill="#397b00" d="M202.85 255.19l.703.67-.703-.67z"/> + <path fill="#cecece" d="M203.55 255.19l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M205.66 255.19l.703.67-.703-.67z"/> + <path fill="#397b00" d="M206.36 255.19v.67h2.11l-2.11-.67z"/> + <path fill="#103900" d="M209.88 255.19l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#00215a" d="M227.47 255.19l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M247.17 255.19l.704.67-.704-.67z"/> + <path fill="#63636b" d="M249.28 255.19l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M249.98 255.19l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M250.68 255.19l.703.67-.703-.67z"/> + <path fill="#efefef" d="M251.62 255.64l.235.446-.235-.446z"/> + <path fill="#bdbdbd" d="M254.43 255.64l.235.446-.235-.446z"/> + <path fill="#dedede" d="M255.14 255.64l.235.446-.235-.446z"/> + <path fill="#7b7373" d="M255.84 255.64l.235.446-.235-.446z"/> + <path fill="#bdbdbd" d="M256.31 255.19l.703.67-.703-.67z"/> + <path fill="#dedede" d="M257.01 255.19l.704.67-.704-.67z"/> + <path fill="#cecece" d="M261.94 255.19l.703.67-.703-.67z"/> + <path fill="#210800" d="M262.64 255.19l.703.67-.703-.67z"/> + <path fill="#520808" d="M280.23 255.19l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M280.93 255.19v.67h6.33l-6.33-.67z"/> + <path fill="#520808" d="M287.26 255.19l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M291.49 255.19l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M293.6 255.19l.703.67-.703-.67z"/> + <path fill="#297b00" d="M294.3 255.19l.704.67-.704-.67z"/> + <path fill="#082108" d="M295 255.19l.703.67-.703-.67z"/> + <path fill="#103900" d="M297.82 255.19l.703.67-.703-.67z"/> + <path fill="#297b00" d="M299.22 255.19l.704.67-.704-.67z"/> + <path fill="#001000" d="M299.93 255.19l.704.67-.704-.67z"/> + <path fill="#297b00" d="M300.63 255.19l.703.67-.703-.67z"/> + <path fill="#184a00" d="M302.98 255.64l.235.446-.235-.446z"/> + <path fill="#103900" d="M306.26 255.19l.703.67-.703-.67m2.11 0l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M309.07 255.19l.703.67-.703-.67z"/> + <path fill="#296300" d="M309.78 255.19l.703.67-.703-.67z"/> + <path fill="#297b00" d="M311.89 255.19l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M312.59 255.19l.703.67-.703-.67z"/> + <path fill="#314231" d="M313.29 255.19l-.703 1.34.703-1.34z"/> + <path fill="#297b00" d="M314 255.19l.704.67-.704-.67z"/> + <path fill="#214210" d="M315.4 255.19l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M316.11 255.19l-.703 1.34.703-1.34z"/> + <path fill="#5a5231" d="M195.81 255.86l.703.67-.703-.67z"/> + <path fill="#294200" d="M200.5 256.09l.47.223-.47-.223z"/> + <path fill="#8c8c8c" d="M203.55 255.86l.703.67-.703-.67z"/> + <path fill="#314231" d="M206.36 255.86l.703.67-.703-.67z"/> + <path fill="#294200" d="M207.07 255.86l.703.67-.703-.67z"/> + <path fill="#295200" d="M209.18 255.86l.703.67-.703-.67z"/> + <path fill="#397b00" d="M209.88 255.86l.703.67-.703-.67z"/> + <path fill="#103900" d="M211.29 255.86l.704.67-.704-.67z"/> + <path fill="#214210" d="M213.4 255.86l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M214.1 255.86l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M220.43 255.86l.704.67-.704-.67z"/> + <path d="M221.14 255.86v.67h6.33v10.04c3.817-6.062.247-10.705-6.33-10.71z" fill-opacity=".309" fill="#bdbdbd"/> + <path fill="#8c8c8c" d="M227.47 255.86l.704.67-.704-.67z"/> + <path fill="#420000" d="M247.87 255.86l.703.67-.703-.67z"/> + <path fill="#101810" d="M249.28 255.86l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M250.68 256.53v.67l3.518-.67h-3.518m7.035-.67l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M258.42 255.86l.704.67-.704-.67z"/> + <path fill="#dedede" d="M259.12 255.86l.703.67-.703-.67z"/> + <path fill="#292921" d="M262.64 255.86l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M263.35 255.86l.704.67-.704-.67z"/> + <path fill="#63636b" d="M280.23 255.86l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M280.93 255.86v.67h6.33l-6.33-.67z"/> + <path fill="#63636b" d="M287.26 255.86l.703.67-.703-.67z"/> + <path fill="#292921" d="M291.49 255.86l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M292.19 255.86l.703.67-.703-.67m1.64.446l.236.446-.235-.446z"/> + <path fill="#296300" d="M294.3 257.2l2.11-.67-2.11.67z"/> + <path fill="#185200" d="M297.82 255.86l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M298.52 255.86l.703.67-.703-.67z"/> + <path fill="#296300" d="M299.93 255.86l.704.67-.704-.67z"/> + <path fill="#185200" d="M300.63 255.86l.703.67-.703-.67z"/> + <path fill="#184a00" d="M306.26 255.86l.703.67-.703-.67z"/> + <path fill="#319400" d="M306.96 255.86l.703.67-.703-.67z"/> + <path fill="#184a00" d="M307.67 255.86l.703.67-.703-.67z"/> + <path fill="#214210" d="M311.89 255.86l.703.67-.703-.67z"/> + <path fill="#297b00" d="M313.29 255.86l.703.67-.703-.67z"/> + <path fill="#296300" d="M314.7 255.86l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M195.81 256.53l.703.67-.703-.67z"/> + <path fill="#397b00" d="M197.22 256.53l.703.67-.703-.67z"/> + <path fill="#294200" d="M197.92 256.53l.703.67-.703-.67m3.986.223l.47.223-.47-.223z"/> + <path fill="#5a6b52" d="M203.55 256.53l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M206.36 256.53l.703.67-.703-.67z"/> + <path fill="#292100" d="M207.07 256.53l.703.67-.703-.67z"/> + <path fill="#294200" d="M209.18 256.53l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#397b00" d="M211.29 256.53l.704.67-.704-.67z"/> + <path fill="#314231" d="M212.69 256.53l.703.67-.703-.67z"/> + <path fill="#cecece" d="M213.4 256.53l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M220.43 256.53v5.355h.704l-.704-5.355z"/> + <path fill="#941808" d="M247.87 256.53l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M249.98 256.53l.704.67-.704-.67z"/> + <path fill="#dedede" d="M252.09 256.53l.703.67-.703-.67z"/> + <path fill="#efefef" d="M254.9 256.53l1.407 1.34-1.407-1.34z"/> + <path fill="#bdbdbd" d="M255.61 256.53l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M256.78 256.75l.47.223-.47-.223z"/> + <path fill="#dedede" d="M257.72 256.53l.703.67-.703-.67z"/> + <path fill="#efefef" d="M259.12 256.53l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M259.83 256.53l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M261 256.75l.47.223-.47-.223z"/> + <path fill="#9c9494" d="M261.94 256.53l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M262.64 256.53l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M263.35 256.53l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M280.23 256.53v8.702h.704l-.704-8.702m7.035 0v10.04h.703l-.703-10.04z"/> + <path fill="#6b735a" d="M291.49 256.53l.704.67-.704-.67z"/> + <path fill="#395231" d="M292.19 256.53l.703.67-.703-.67z"/> + <path fill="#319400" d="M295 256.53l3.518 12.05h.703L295 256.53z"/> + <path fill="#103900" d="M295.71 256.53l.704.67-.704-.67z"/> + <path fill="#297b00" d="M297.82 256.53l.703.67-.703-.67z"/> + <path fill="#184a00" d="M300.87 256.98l.235.446-.235-.446z"/> + <path fill="#296300" d="M302.74 256.53l.704.67-.704-.67z"/> + <path fill="#297b00" d="M303.45 256.53l-.704 1.34.704-1.34z"/> + <path fill="#184a00" d="M305.56 256.53l.704.67-.704-.67z"/> + <path fill="#296300" d="M307.43 256.75l.47.223-.47-.223z"/> + <path fill="#185200" d="M308.37 256.53l.704.67-.704-.67z"/> + <path fill="#297b00" d="M311.18 256.53l.704.67-.704-.67z"/> + <path d="M311.89 256.53l.703.67-.703-.67z"/> + <path fill="#297b00" d="M312.59 256.53l.703.67-.703-.67z"/> + <path fill="#425242" d="M314.7 256.53l.703.67-.703-.67z"/> + <path fill="#efefef" d="M195.81 257.2l.703.67-.703-.67z"/> + <path fill="#315221" d="M196.51 257.2l.704.67-.704-.67z"/> + <path fill="#103900" d="M198.62 257.2l.703.67-.703-.67z"/> + <path fill="#397b00" d="M199.56 257.65l.235.446-.235-.446m2.58-.446l.703.67-.703-.67z"/> + <path fill="#103900" d="M202.85 257.2l1.407 1.34-1.407-1.34z"/> + <path fill="#213918" d="M203.55 257.2l.703.67-.703-.67z"/> + <path fill="#dedede" d="M206.36 257.2l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.07 257.2l.703.67-.703-.67z"/> + <path fill="#103900" d="M208.47 257.2l.703.67-.703-.67z"/> + <path fill="#397b00" d="M209.88 257.2l.703.67-.703-.67z"/> + <path fill="#295200" d="M210.58 257.2l.704.67-.704-.67z"/> + <path fill="#213918" d="M211.99 257.2l.703.67-.703-.67z"/> + <path fill="#efefef" d="M212.69 257.2l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M247.87 257.2l.703.67-.703-.67z"/> + <path fill="#63636b" d="M249.98 257.2l.704.67-.704-.67z"/> + <path fill="#efefef" d="M252.09 257.2l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M252.79 257.2l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M253.5 257.2v.67h2.11l-2.11-.67m2.814 0l-2.11 1.34v.668l2.11-2.008m2.11 0l.704.67-.703-.67z"/> + <path fill="#7b7373" d="M259.12 257.2l.703.67-.703-.67z"/> + <path fill="#cecece" d="M259.83 257.2l.704.67-.704-.67m2.814 0l-.703 1.34.704-1.34z"/> + <path fill="#210800" d="M263.35 257.2l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M291.49 257.2l.704.67-.704-.67z"/> + <path fill="#296300" d="M292.42 257.65l.235.446-.235-.446z"/> + <path fill="#8c8c8c" d="M292.89 257.2l.704.67-.704-.67z"/> + <path fill="#185200" d="M294.3 257.2l.704.67-.704-.67z"/> + <path fill="#184a00" d="M295.71 257.2l.704.67-.704-.67z"/> + <path fill="#297b00" d="M296.41 257.2l-.704 1.34.704-1.34z"/> + <path fill="#103900" d="M298.52 257.2l.703.67-.703-.67z"/> + <path fill="#297b00" d="M301.33 257.2l-.703 1.34.703-1.34z"/> + <path fill="#184a00" d="M303.68 257.65l.235.446-.235-.446z"/> + <path fill="#103900" d="M305.56 257.2l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#184a00" d="M308.37 257.2l.704.67-.704-.67m2.814 0l.704.67-.704-.67z"/> + <path fill="#296300" d="M311.89 257.2l.703.67-.703-.67z"/> + <path fill="#184a00" d="M314 257.2l.704.67-.704-.67z"/> + <path fill="#cecece" d="M314.7 257.2l.703.67-.703-.67z"/> + <path fill="#efefef" d="M317.4 260.45l-2.814 4.686c1.887-1.316 3.672-2.43 2.814-4.686z"/> + <path fill="#dedede" d="M321.74 257.2l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M196.51 257.87l.704.67-.704-.67z"/> + <path fill="#295200" d="M197.22 257.87l.703.67-.703-.67z"/> + <path fill="#294200" d="M200.03 257.87l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M204.25 257.87l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M206.36 257.87l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.77 257.87l.704.67-.704-.67z"/> + <path fill="#397b00" d="M208.47 257.87l.703.67-.703-.67z"/> + <path fill="#294200" d="M209.88 257.87l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#cecece" d="M211.99 257.87l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M214.57 258.09l.47.223-.47-.223z"/> + <path fill="#420000" d="M248.57 257.87l.703.67-.703-.67z"/> + <path fill="#101810" d="M249.98 257.87l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M251.39 257.87l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M252.09 257.87l.703.67-.703-.67z"/> + <path fill="#dedede" d="M252.79 257.87l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M257.72 257.87l.703.67-.703-.67z"/> + <path fill="#cecece" d="M258.42 257.87l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M262.64 257.87l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M264.05 257.87l.703.67-.703-.67z"/> + <path fill="#cecece" d="M291.49 257.87l.704.67-.704-.67z"/> + <path fill="#184a00" d="M292.89 257.87l-.703 1.34.703-1.34z"/> + <path fill="#dedede" d="M293.6 257.87l.703.67-.703-.67z"/> + <path fill="#184a00" d="M294.53 258.32l.235.446-.235-.446z"/> + <path fill="#185200" d="M296.41 257.87l.703.67-.703-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#297b00" d="M299.22 257.87l.704.67-.704-.67z"/> + <path fill="#296300" d="M301.33 257.87l.703.67-.703-.67z"/> + <path fill="#185200" d="M304.85 257.87l.703.67-.703-.67z"/> + <path fill="#296300" d="M305.56 257.87l.704.67-.704-.67z"/> + <path fill="#184a00" d="M306.26 257.87l.703.67-.703-.67z"/> + <path fill="#103900" d="M307.67 257.87l.703.67-.703-.67z"/> + <path fill="#185200" d="M311.18 257.87l.704.67-.704-.67z"/> + <path fill="#297b00" d="M313.29 257.87l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M314 257.87l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M320.33 257.87l.703.67-.703-.67z"/> + <path fill="#424242" d="M321.03 257.87l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M197.22 258.54l.703.67-.703-.67z"/> + <path fill="#294200" d="M200.73 258.54l1.407 1.34-1.407-1.34z"/> + <path fill="#397b00" d="M201.44 258.54l.703.67-.703-.67z"/> + <path fill="#315221" d="M204.25 258.54l.703.67-.703-.67z"/> + <path fill="#efefef" d="M205.42 258.76l.47.224-.47-.224z"/> + <path fill="#214210" d="M206.36 258.54l.703.67-.703-.67z"/> + <path fill="#103900" d="M207.77 258.54l.704.67-.704-.67z"/> + <path fill="#295200" d="M209.18 258.54l.703.67-.703-.67z"/> + <path fill="#397b00" d="M209.88 258.54l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M211.29 258.54l.704.67-.704-.67z"/> + <path fill="#315221" d="M214.1 258.54l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M214.8 258.54l.703.67-.703-.67z"/> + <path fill="#00216b" d="M228.17 258.54l.703.67-.703-.67z"/> + <path fill="#941808" d="M248.57 258.54l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M250.68 258.54l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M253.5 258.54l.704.67-.704-.67z"/> + <path fill="#cecece" d="M256.31 258.54l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M257.01 258.54l.704.67-.704-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#52525a" d="M259.83 258.54l.704.67-.704-.67z"/> + <path fill="#313931" d="M260.53 258.54l.704.67-.704-.67z"/> + <path fill="#941808" d="M264.05 258.54l.703.67-.703-.67z"/> + <path fill="#319400" d="M292.89 258.54l4.925 16.065h.703c-.05-5.603-1.818-11.69-5.628-16.065z"/> + <path fill="#425242" d="M293.6 258.54l.703.67-.703-.67z"/> + <path fill="#103900" d="M296.41 258.54l.703.67-.703-.67z"/> + <path fill="#184a00" d="M299.22 258.54l.704.67-.704-.67z"/> + <path fill="#103900" d="M301.57 258.99l.235.446-.235-.446m3.283-.446l.704.67-.704-.67z"/> + <path fill="#319400" d="M305.56 258.54l.704.67-.704-.67z"/> + <path fill="#103900" d="M306.26 258.54l.703.67-.703-.67z"/> + <path fill="#184a00" d="M307.67 258.54l.703.67-.703-.67z"/> + <path fill="#103900" d="M310.48 258.54l.703.67-.703-.67z"/> + <path fill="#103910" d="M313.29 258.54l.703.67-.703-.67z"/> + <path fill="#efefef" d="M314 258.54l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M315.4 258.54l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M316.11 258.54l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M318.92 258.54l.703.67-.703-.67z"/> + <path fill="#314231" d="M319.63 258.54l-1.407 2.678 1.407-2.678z"/> + <path fill="#313931" d="M320.33 258.54l.703.67-.703-.67z"/> + <path fill="#efefef" d="M197.22 259.21l2.11 2.008-2.11-2.008z"/> + <path fill="#314231" d="M197.92 259.21l.703.67-.703-.67z"/> + <path fill="#397b00" d="M202.14 259.21l.704.67-.704-.67z"/> + <path fill="#63636b" d="M204.96 259.21l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M205.66 259.21l.703.67-.703-.67z"/> + <path fill="#397b00" d="M207.07 259.21l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.77 259.21l.704.67-.704-.67z"/> + <path fill="#294200" d="M209.18 259.21l.703.67-.703-.67z"/> + <path fill="#295200" d="M210.58 259.21l.704.67-.704-.67z"/> + <path fill="#cecece" d="M211.29 259.21l.704.67-.704-.67z"/> + <path fill="#63636b" d="M213.4 259.21l.704.67-.704-.67z"/> + <path fill="#5a5231" d="M214.8 259.21l.703.67-.703-.67z"/> + <path fill="#101829" d="M228.17 259.21l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M248.57 259.21l.703.67-.703-.67z"/> + <path fill="#63636b" d="M250.68 259.21l.703.67-.703-.67z"/> + <path fill="#efefef" d="M251.62 259.66l.235.446-.235-.446z"/> + <path fill="#9c9494" d="M252.09 259.21l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M252.79 259.21l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M253.5 259.21l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M257.01 259.21l.704.67-.704-.67z"/> + <path fill="#cecece" d="M257.72 259.21l.703.67-.703-.67z"/> + <path fill="#313931" d="M258.42 259.21l.704.67-.704-.67z"/> + <path fill="#210800" d="M263.35 259.21l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M264.05 259.21l.703.67-.703-.67z"/> + <path fill="#10214a" d="M279.53 259.21l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M292.42 259.66l.235.446-.235-.446z"/> + <path fill="#296300" d="M293.6 259.21l.703.67-.703-.67z"/> + <path fill="#103900" d="M294.53 259.66l.235.446-.235-.446z"/> + <path fill="#296300" d="M296.88 259.43l.47.224-.47-.224z"/> + <path fill="#103900" d="M299.22 259.21l.704.67-.704-.67z"/> + <path fill="#185200" d="M305.32 259.43l.47.224-.47-.224m1.64-.223l.705.67-.704-.67z"/> + <path fill="#103900" d="M309.78 259.21l.703.67-.703-.67z"/> + <path fill="#296300" d="M312.59 259.21l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M313.29 259.21l.703.67-.703-.67z"/> + <path fill="#dedede" d="M314 259.21l.704.67-.704-.67z"/> + <path fill="#425242" d="M314.7 259.21l.703.67-.703-.67z"/> + <path fill="#313931" d="M315.4 259.21l.703.67-.703-.67z"/> + <path fill="#efefef" d="M316.11 259.21l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#63636b" d="M318.22 259.21l.703.67-.703-.67z"/> + <path fill="#185200" d="M318.92 259.21l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M189.48 259.88l.703.67-.703-.67z"/> + <path fill="#efefef" d="M190.18 259.88l.703.67-.703-.67z"/> + <path fill="#314231" d="M198.62 259.88l.703.67-.703-.67z"/> + <path fill="#397b00" d="M199.33 259.88l1.407 1.34-1.407-1.34m4.22 0l.704.67-.703-.67m1.408 0l.704.67-.704-.67z"/> + <path fill="#214210" d="M205.66 259.88l.703.67-.703-.67z"/> + <path fill="#295200" d="M206.36 259.88l.703.67-.703-.67z"/> + <path fill="#292100" d="M207.07 259.88l.703.67-.703-.67z"/> + <path fill="#397b00" d="M208.47 259.88v1.34h1.407l-1.407-1.34z"/> + <path fill="#295200" d="M209.18 259.88l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M210.58 259.88l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M212.69 259.88l.703.67-.703-.67z"/> + <path fill="#294200" d="M214.8 259.88l.703.67-.703-.67z"/> + <path fill="#efefef" d="M215.51 259.88l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M228.17 259.88l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M228.87 259.88l.703.67-.703-.67z"/> + <path fill="#10214a" d="M229.58 259.88l.703.67-.703-.67z"/> + <path fill="#420000" d="M249.28 259.88l.703.67-.703-.67z"/> + <path fill="#101810" d="M250.68 259.88l.703.67-.703-.67z"/> + <path fill="#dedede" d="M252.09 259.88l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M254.9 259.88l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M256.08 260.1l.47.224-.47-.224z"/> + <path fill="#313931" d="M257.01 259.88l.704.67-.704-.67z"/> + <path fill="#101810" d="M257.72 259.88l.703.67-.703-.67z"/> + <path fill="#310000" d="M261.24 259.88l.703.67-.703-.67z"/> + <path fill="#941808" d="M261.94 259.88l.703.67-.703-.67z"/> + <path fill="#00184a" d="M278.12 259.88l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M278.82 259.88l.703.67-.703-.67z"/> + <path fill="#efefef" d="M279.53 259.88l.703.67-.703-.67z"/> + <path fill="#297b00" d="M295 259.88l-.704 1.34.704-1.34z"/> + <path fill="#184a00" d="M297.11 259.88l.704.67-.704-.67z"/> + <path fill="#185200" d="M299.22 259.88l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M299.93 259.88l.704.67-.704-.67z"/> + <path fill="#296300" d="M301.33 259.88l.703.67-.703-.67z"/> + <path fill="#297b00" d="M302.04 259.88l-.703 1.34.703-1.34z"/> + <path fill="#184a00" d="M304.38 260.32l.235.446-.235-.446z"/> + <path fill="#103900" d="M305.56 259.88l.704.67-.704-.67z"/> + <path fill="#319400" d="M306.26 259.88l.703.67-.703-.67z"/> + <path fill="#103900" d="M306.96 259.88l.703.67-.703-.67z"/> + <path fill="#296300" d="M309.54 260.1l.47.224-.47-.224z"/> + <path fill="#425242" d="M312.59 259.88l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M313.29 259.88l.703.67-.703-.67z"/> + <path fill="#184a00" d="M314.47 260.1l.47.224-.47-.224z"/> + <path fill="#cecece" d="M315.4 259.88l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M316.81 259.88l.704.67-.704-.67z"/> + <path fill="#214210" d="M317.52 259.88l.703.67-.703-.67z"/> + <path fill="#297b00" d="M318.22 259.88l.703.67-.703-.67z"/> + <path fill="#8c9c84" d="M189.48 260.55l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M190.18 260.55l.703.67-.703-.67z"/> + <path fill="#63636b" d="M199.33 260.55l.704.67-.704-.67z"/> + <path fill="#001000" d="M203.55 260.55l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.25 260.55l.703.67-.703-.67z"/> + <path fill="#292100" d="M205.66 260.55l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M206.83 260.77l.47.224-.47-.224z"/> + <path fill="#311000" d="M207.77 260.55l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M210.58 260.55l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M211.99 260.55l.703.67-.703-.67z"/> + <path fill="#295200" d="M212.69 260.55l.703.67-.703-.67z"/> + <path fill="#428c00" d="M209.72 267.39h-.703c-.13-3.835-1.626-6.29-5.628-7.363.097 2.042 1.564 10.015 4.923 7.363h.704l-1.407 6.024c2.1-2.215 10.778-10.023 7.017-13.46-3.22-2.943-4.87 5.967-4.907 7.436z"/> + <path fill="#295200" d="M214.1 260.55l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M215.51 260.55l.703.67-.703-.67z"/> + <path fill="#efefef" d="M229.58 260.55l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M230.28 260.55l.704.67-.704-.67z"/> + <path fill="#31425a" d="M230.99 260.55l.703.67-.703-.67z"/> + <path fill="#00216b" d="M231.69 260.55l.703.67-.703-.67z"/> + <path fill="#941808" d="M249.28 260.55l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M251.39 260.55l.703.67-.703-.67z"/> + <path fill="#efefef" d="M252.79 260.55l.704.67-.704-.67z"/> + <path fill="#63636b" d="M253.5 260.55l.704.67-.704-.67z"/> + <path fill="#310000" d="M259.83 260.55l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M260.53 260.55l.704.67-.704-.67z"/> + <path fill="#00216b" d="M276.01 260.55l.703.67-.703-.67z"/> + <path fill="#21315a" d="M276.71 260.55l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M277.42 260.55l.704.67-.704-.67z"/> + <path fill="#efefef" d="M278.12 260.55l.703.67-.703-.67m11.96 0l.702.67-.703-.67z"/> + <path fill="#8c8c8c" d="M290.78 260.55l.703.67-.703-.67z"/> + <path fill="#cecece" d="M291.49 260.55l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M292.19 260.55l.703.67-.703-.67z"/> + <path fill="#184a00" d="M295 260.55l.703.67-.703-.67z"/> + <path fill="#103900" d="M297.11 260.55l.704.67-.704-.67z"/> + <path fill="#297b00" d="M297.82 260.55l-.704 1.34.704-1.34m1.407 0l.704.67-.703-.67z"/> + <path fill="#185200" d="M305.56 260.55l.704.67-.704-.67z"/> + <path fill="#103900" d="M309.07 260.55l.703.67-.703-.67z"/> + <path fill="#185200" d="M311.89 260.55l.703.67-.703-.67z"/> + <path fill="#102110" d="M312.59 260.55l.703.67-.703-.67z"/> + <path fill="#296300" d="M313.76 260.77l.47.224-.47-.224z"/> + <path fill="#8c8c8c" d="M314.7 260.55l.703.67-.703-.67z"/> + <path fill="#dedede" d="M315.4 260.55l.703.67-.703-.67z"/> + <path fill="#425242" d="M316.11 260.55l.703.67-.703-.67z"/> + <path fill="#297b00" d="M316.81 260.55l-2.11 3.347 3.517-3.347h-1.407z"/> + <path fill="#295200" d="M190.18 261.22l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M190.89 261.22l.704.67-.704-.67z"/> + <path fill="#dedede" d="M199.33 261.22l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M200.03 261.22l.703.67-.703-.67z"/> + <path fill="#295200" d="M200.73 261.22l.703.67-.703-.67z"/> + <path fill="#397b00" d="M202.85 261.22v.67h2.11l-2.11-.67z"/> + <path fill="#294200" d="M204.96 261.22l.704.67-.704-.67z"/> + <path fill="#103900" d="M205.66 261.22l.703.67-.703-.67z"/> + <path fill="#941808" d="M208 261.66l.235.446-.235-.446z"/> + <path fill="#292100" d="M208.47 261.22l.703.67-.703-.67z"/> + <path fill="#295200" d="M209.88 261.22l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M210.58 261.22l.704.67-.704-.67z"/> + <path fill="#cecece" d="M211.29 261.22l.704.67-.704-.67z"/> + <path fill="#214210" d="M211.99 261.22l.703.67-.703-.67z"/> + <path fill="#294200" d="M213.63 261.66l.235.446-.235-.446z"/> + <path fill="#8c8c8c" d="M215.74 261.66l.235.446-.235-.446z"/> + <path fill="#dedede" d="M231.69 261.22l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M232.39 261.22l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M233.1 261.22l.704.67-.704-.67z"/> + <path fill="#21315a" d="M233.8 261.22l.703.67-.703-.67z"/> + <path fill="#00216b" d="M234.5 261.22l.703.67-.703-.67z"/> + <path fill="#002984" d="M235.21 261.22l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M249.28 261.22l.703.67-.703-.67z"/> + <path fill="#424242" d="M251.39 261.22l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M252.09 261.22l.703.67-.703-.67z"/> + <path fill="#101810" d="M252.79 261.22l.704.67-.704-.67z"/> + <path fill="#100808" d="M257.72 261.22l.703.67-.703-.67z"/> + <path fill="#310000" d="M258.42 261.22l.704.67-.704-.67z"/> + <path fill="#210800" d="M259.12 261.22l.703.67-.703-.67z"/> + <path fill="#002984" d="M272.49 261.22l.703.67-.703-.67z"/> + <path fill="#00216b" d="M273.19 261.22l.703.67-.703-.67z"/> + <path fill="#10295a" d="M273.9 261.22l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M274.6 261.22l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M275.31 261.22l.703.67-.703-.67z"/> + <path fill="#cecece" d="M276.01 261.22l.703.67-.703-.67z"/> + <path fill="#63636b" d="M290.08 261.22l.703.67-.703-.67z"/> + <path fill="#297b00" d="M290.78 261.22l1.407 1.34-1.407-1.34z"/> + <path fill="#103910" d="M291.49 261.22l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M292.19 261.22l.703.67-.703-.67z"/> + <path fill="#103900" d="M295 261.22l.703.67-.703-.67z"/> + <path fill="#297b00" d="M295.71 261.22l-.703 1.34.703-1.34z"/> + <path fill="#185200" d="M297.82 261.22l.703.67-.703-.67z"/> + <path fill="#103900" d="M299.93 261.22l.704.67-.704-.67z"/> + <path fill="#184a00" d="M304.85 261.22l.703.67-.703-.67z"/> + <path fill="#103900" d="M308.37 261.22l.704.67-.704-.67z"/> + <path fill="#297b00" d="M311.18 261.22v.67h2.814v-.67h-2.814z"/> + <path fill="#425242" d="M314 261.22l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M314.7 261.22l.703.67-.703-.67z"/> + <path fill="#214210" d="M315.4 261.22l.703.67-.703-.67z"/> + <path fill="#52525a" d="M317.52 261.22l.703.67-.703-.67z"/> + <path fill="#428c00" d="M190.18 261.89l.703.67-.703-.67z"/> + <path fill="#397b00" d="M191.12 262.33l.235.446-.235-.446z"/> + <path fill="#314231" d="M191.59 261.89l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M192.29 261.89l.703.67-.703-.67z"/> + <path fill="#dedede" d="M195.11 261.89l.703.67-.703-.67z"/> + <path fill="#efefef" d="M198.62 261.89l.703.67-.703-.67z"/> + <path fill="#101810" d="M199.33 261.89l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M200.73 261.89l.703.67-.703-.67z"/> + <path fill="#315221" d="M201.44 261.89l.703.67-.703-.67z"/> + <path fill="#295200" d="M202.85 261.89l.703.67-.703-.67z"/> + <path fill="#292100" d="M205.66 261.89l.703.67-.703-.67z"/> + <path fill="#941808" d="M206.36 261.89l.703.67-.703-.67z"/> + <path fill="#103900" d="M208.47 261.89l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M209.18 261.89l-.703 1.34.703-1.34z"/> + <path fill="#7b1008" d="M209.88 261.89l.703.67-.703-.67z"/> + <path fill="#5a3131" d="M210.58 261.89l.704.67-.704-.67z"/> + <path fill="#314231" d="M211.29 261.89l.704.67-.704-.67z"/> + <path fill="#cecece" d="M219.73 261.89l.703.67-.703-.67z"/> + <path fill="#52525a" d="M220.43 261.89l.704.67-.704-.67z"/> + <path fill="#dedede" d="M221.14 261.89l.703.67-.703-.67m13.366 0l.703.67-.704-.67z"/> + <path fill="#bdbdbd" d="M235.21 261.89l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M235.91 261.89l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M236.61 261.89l.703.67-.703-.67z"/> + <path fill="#420000" d="M249.98 261.89l.704.67-.704-.67z"/> + <path fill="#100808" d="M256.31 261.89l.703.67-.703-.67z"/> + <path fill="#7b0008" d="M257.01 261.89l.704.67-.704-.67z"/> + <path fill="#de2110" d="M254.2 262.56v.67h2.11c-5.4 8.378-1.462 19.627-.703 28.783h.704c1.97-8.2 2.16-19.985 0-28.114l2.814 1.338.704-2.677-.703-.67-4.925.67z"/> + <path fill="#940008" d="M259.12 261.89l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M259.83 261.89l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M271.08 261.89l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M271.79 261.89l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M272.49 261.89l.703.67-.703-.67z"/> + <path fill="#dedede" d="M273.19 261.89l.703.67-.703-.67z"/> + <path fill="#cecece" d="M289.38 261.89l.704.67-.704-.67z"/> + <path fill="#185200" d="M290.08 261.89l.703.67-.703-.67z"/> + <path fill="#313931" d="M292.19 261.89l.703.67-.703-.67z"/> + <path fill="#297b00" d="M292.89 261.89l.704.67-.704-.67z"/> + <path fill="#184a00" d="M295.71 261.89l.704.67-.704-.67z"/> + <path fill="#103900" d="M297.82 261.89l.703.67-.703-.67z"/> + <path fill="#184a00" d="M299.93 261.89l.704.67-.704-.67z"/> + <path fill="#297b00" d="M300.63 261.89l-.704 1.34.704-1.34z"/> + <path fill="#103900" d="M304.85 261.89l.703.67-.703-.67z"/> + <path fill="#185200" d="M307.67 261.89l.703.67-.703-.67z"/> + <path fill="#184a00" d="M311.18 261.89l.704.67-.704-.67z"/> + <path fill="#319400" d="M312.59 261.89l-.703 1.34.703-1.34z"/> + <path fill="#082108" d="M313.53 262.33l.235.446-.235-.446z"/> + <path fill="#52525a" d="M314 261.89l.704.67-.704-.67z"/> + <path fill="#296300" d="M314.7 261.89l.703.67-.703-.67z"/> + <path fill="#63636b" d="M316.81 261.89l-2.11 2.678 2.11-2.678z"/> + <path fill="#295200" d="M190.18 262.56l.703.67-.703-.67z"/> + <path fill="#428c00" d="M191.59 262.56l1.407 4.016h.703l.704-2.677-2.814-1.34z"/> + <path fill="#295200" d="M192.29 262.56l.703.67-.703-.67z"/> + <path fill="#63636b" d="M193 262.56l.703.67-.703-.67z"/> + <path fill="#efefef" d="M193.7 262.56l.704.67-.704-.67z"/> + <path fill="#101810" d="M195.11 262.56l.703.67-.703-.67z"/> + <path fill="#efefef" d="M195.81 262.56l.703.67-.703-.67z"/> + <path fill="#425242" d="M198.62 262.56l.703.67-.703-.67z"/> + <path fill="#294200" d="M199.33 262.56l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M202.14 262.56l.704.67-.704-.67z"/> + <path fill="#001000" d="M202.85 262.56l.703.67-.703-.67z"/> + <path fill="#294200" d="M206.36 262.56l.703.67-.703-.67z"/> + <path fill="#4a1000" d="M207.07 262.56l.703.67-.703-.67z"/> + <path fill="#294200" d="M207.77 262.56l.704.67-.704-.67z"/> + <path fill="#631808" d="M210.58 262.56l.704.67-.704-.67z"/> + <path fill="#397b00" d="M213.16 262.78l.47.224-.47-.224z"/> + <path fill="#6b735a" d="M215.51 262.56l.703.67-.703-.67z"/> + <path fill="#efefef" d="M216.92 262.56l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M217.62 262.56l.704.67-.704-.67z"/> + <path fill="#526b42" d="M218.32 262.56l.703.67-.703-.67z"/> + <path fill="#396b10" d="M219.03 262.56l.704.67-.704-.67z"/> + <path fill="#295200" d="M219.73 262.56l.703.67-.703-.67z"/> + <path fill="#213918" d="M220.43 262.56l.704.67-.704-.67z"/> + <path fill="#efefef" d="M221.14 262.56l.703.67-.703-.67z"/> + <path fill="#941808" d="M249.98 262.56l.704.67-.704-.67z"/> + <path fill="#520808" d="M252.79 262.56l-.703 1.34.703-1.34z"/> + <path fill="#ad0008" d="M253.5 262.56l.704.67-.704-.67z"/> + <path fill="#520808" d="M259.83 262.56l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M289.38 262.56l.704.67-.704-.67z"/> + <path fill="#297b00" d="M290.08 262.56l.703.67-.703-.67z"/> + <path fill="#184a00" d="M292.19 262.56l.703.67-.703-.67z"/> + <path fill="#296300" d="M292.89 262.56l.704.67-.704-.67z"/> + <path fill="#103900" d="M295.71 262.56l.704.67-.704-.67z"/> + <path fill="#297b00" d="M296.41 262.56l-.704 1.34.704-1.34z"/> + <path fill="#185200" d="M297.82 262.56l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M298.52 262.56l.703.67-.703-.67z"/> + <path fill="#185200" d="M300.63 262.56l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#297b00" d="M302.74 262.56l.704.67-.704-.67m1.407 0l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M304.85 262.56l.703.67-.703-.67z"/> + <path fill="#297b00" d="M306.96 262.56l.703.67-.703-.67z"/> + <path fill="#184a00" d="M307.67 262.56l.703.67-.703-.67z"/> + <path fill="#297b00" d="M310.48 262.56l1.407 1.34-1.407-1.34zM314 262.56l.704.67-.704-.67z"/> + <path fill="#dedede" d="M317.52 262.56l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M318.22 262.56l.703.67-.703-.67z"/> + <path fill="#425242" d="M318.92 262.56l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M319.63 262.56l.704.67-.704-.67z"/> + <path fill="#8c9c84" d="M189.48 263.23l.703.67-.703-.67z"/> + <path fill="#428c00" d="M190.18 263.23l2.11 3.347-2.11-3.347z"/> + <path fill="#103900" d="M190.89 263.23l.704.67-.704-.67z"/> + <path fill="#314231" d="M193.7 263.23l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M194.4 263.23l.703.67-.703-.67z"/> + <path fill="#295200" d="M195.11 263.23l.703.67-.703-.67z"/> + <path fill="#314231" d="M195.81 263.23l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M197.92 263.23l.703.67-.703-.67z"/> + <path fill="#397b00" d="M199.09 263.45l.47.224-.47-.224z"/> + <path fill="#dedede" d="M200.03 263.23l.703.67-.703-.67z"/> + <path fill="#7b8c73" d="M202.85 263.23l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.07 263.23l1.407 1.34v-1.34h-1.407z"/> + <path fill="#4a1000" d="M208.47 263.23l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M209.88 263.23l.703.67-.703-.67z"/> + <path fill="#526b42" d="M215.51 263.23l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M216.21 263.23l.704.67-.704-.67z"/> + <path fill="#214210" d="M216.92 263.23l.703.67-.703-.67z"/> + <path fill="#428c00" d="M214.8 268.58l1.407-.67v.67l-4.924 4.016c4.37-1.655 6.58-3.93 8.44-8.032l-2.11 1.338 1.408-2.677-4.22 5.355z"/> + <path fill="#294200" d="M219.03 263.23l-.703 1.34.703-1.34z"/> + <path fill="#397b00" d="M219.73 263.23l-.704 1.34.704-1.34z"/> + <path fill="#424242" d="M220.43 263.23l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M242.24 263.23l.703.67-.703-.67z"/> + <path fill="#845a52" d="M242.94 263.23l.703.67-.703-.67z"/> + <path fill="#734a42" d="M243.65 263.23l.703.67-.703-.67z"/> + <path fill="#842118" d="M244.35 263.23l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M245.06 263.23l.703.67-.703-.67z"/> + <path fill="#b51010" d="M245.76 263.23l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M249.98 263.23l.704.67-.704-.67z"/> + <path fill="#310000" d="M251.39 263.23l.703.67-.703-.67z"/> + <path fill="#310010" d="M252.79 263.23l.704.67-.704-.67z"/> + <path fill="#180821" d="M253.5 263.23l.704.67-.704-.67z"/> + <path fill="#310010" d="M254.2 263.23l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M254.9 263.23l.703.67-.703-.67z"/> + <path fill="#b51010" d="M255.61 263.23l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M259.83 263.23l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M261.94 263.23l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M262.64 263.23l.703.67-.703-.67z"/> + <path fill="#631808" d="M263.35 263.23l.704.67-.704-.67z"/> + <path fill="#8c4a4a" d="M264.05 263.23l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M265.46 263.23l.703.67-.703-.67z"/> + <path fill="#214210" d="M289.38 263.23l.704.67-.704-.67z"/> + <path fill="#297b00" d="M292.19 263.23l.703.67-.703-.67z"/> + <path fill="#103900" d="M292.89 263.23l.704.67-.704-.67z"/> + <path fill="#185200" d="M296.41 263.23l.703.67-.703-.67z"/> + <path fill="#297b00" d="M297.82 263.23l.703.67-.703-.67z"/> + <path fill="#184a00" d="M300.63 263.23l.703.67-.703-.67z"/> + <path fill="#103900" d="M304.38 263.67l.235.446-.235-.446m2.58-.446l.703.67-.703-.67z"/> + <path fill="#184a00" d="M312.59 263.23l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M316.81 263.23l.704.67-.704-.67z"/> + <path fill="#184a00" d="M317.52 263.23l.703.67-.703-.67z"/> + <path fill="#296300" d="M319.63 263.23l.704.67-.704-.67z"/> + <path fill="#63636b" d="M320.33 263.23l1.407 1.34-1.407-1.34z"/> + <path fill="#8c8c8c" d="M189.71 264.34l.234.446-.234-.446z"/> + <path fill="#295200" d="M190.89 263.89l.704.67-.704-.67z"/> + <path fill="#397b00" d="M191.59 263.89l.703.67-.703-.67z"/> + <path fill="#102110" d="M194.4 263.89l.703.67-.703-.67z"/> + <path fill="#397b00" d="M195.11 263.89v.67l2.11.67-2.11-1.34z"/> + <path fill="#63636b" d="M196.51 263.89l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M197.92 263.89l.703.67-.703-.67z"/> + <path fill="#428c00" d="M198.62 263.89v3.347h-.703l-.704-2.008h-.703l.703 6.693h-.703l-.704-7.364h-.703l-.704 5.354h-.704l-3.518-2.677 2.11 4.016h-.703l-2.814-3.347c2.364 7.92 5.74 6.83 11.362 11.28 2.092 1.654 3.414 5.24 4.82 7.464l-2.815-2.01 1.407 2.01-3.517-2.01 4.22 4.018.704-2.008h.705c-1.768 3.205-4.893 3.58-8.442 4.016v-.67l1.407-1.338 3.517.67c-2.53-2.53-5.68-2.957-9.145-2.01l4.22 3.348v.67l-4.22 4.685 8.442-1.338-.704 1.34h.704l4.22-2.01-8.44 4.017v.668c7.115-.874 7.968-3.24 11.958-8.032-.554 2.154-.553 3.365 1.407 4.685l-1.1-7.994 9.54-10.747-3.517 2.676 2.814-4.016c-3.983.784-5.715 3.588-5.628 7.363l-4.222 4.016h-.703c1.5-4.21 5.582-6.61 4.22-11.38-3.67 2.603-4.73 5.793-4.924 10.04l-2.813-13.388.704 2.678h-.703v-1.34h-.703l.703 9.373h-.703c-2.2-5.128-.277-15.42-4.925-18.743z"/> + <path fill="#9c9494" d="M200.03 263.89l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M203.08 264.34l.235.446-.235-.446z"/> + <path fill="#397b00" d="M204.96 263.89l1.407 1.34-1.407-1.34z"/> + <path fill="#5a1008" d="M209.18 263.89l.703.67-.703-.67z"/> + <path fill="#311000" d="M209.88 263.89l.703.67-.703-.67z"/> + <path fill="#213918" d="M215.51 263.89l.703.67-.703-.67z"/> + <path fill="#295200" d="M216.21 263.89l.704.67-.704-.67z"/> + <path fill="#315221" d="M219.73 263.89l.703.67-.703-.67z"/> + <path fill="#efefef" d="M245.06 263.89l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M245.76 263.89l.703.67-.703-.67z"/> + <path fill="#736b6b" d="M246.46 263.89l.703.67-.703-.67z"/> + <path fill="#6b2908" d="M247.17 263.89l.704.67-.704-.67z"/> + <path fill="#941808" d="M247.87 263.89l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M250.68 263.89l.703.67-.703-.67z"/> + <path fill="#000818" d="M251.39 263.89l.703.67-.703-.67z"/> + <path fill="#00216b" d="M252.09 263.89l-.703 1.34.703-1.34z"/> + <path fill="#003994" d="M249.98 287.32h.704c-1.136-8.55-.665-15.642 3.517-23.43-8.294 4.046-7.8 16.764-4.22 23.43z"/> + <path fill="#52525a" d="M254.2 263.89l.703.67-.703-.67z"/> + <path fill="#9c2118" d="M254.9 263.89l.703.67-.703-.67z"/> + <path fill="#ce0008" d="M257.72 263.89l.703.67-.703-.67z"/> + <path fill="#bd0008" d="M259.12 263.89l.703.67-.703-.67z"/> + <path fill="#520808" d="M259.83 263.89l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M260.53 263.89l.704.67-.704-.67z"/> + <path fill="#7b5252" d="M261.24 263.89l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M261.94 263.89l.703.67-.703-.67z"/> + <path fill="#dedede" d="M262.64 263.89l.703.67-.703-.67z"/> + <path fill="#efefef" d="M279.53 263.89l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M288.67 263.89l.704.67-.704-.67z"/> + <path fill="#296300" d="M289.38 263.89l.704.67-.704-.67z"/> + <path fill="#314231" d="M290.08 263.89l.703.67-.703-.67z"/> + <path fill="#185200" d="M290.78 263.89l.703.67-.703-.67z"/> + <path fill="#184a00" d="M292.89 263.89l.704.67-.704-.67z"/> + <path fill="#297b00" d="M293.6 263.89l-.704 1.34.704-1.34z"/> + <path fill="#103900" d="M296.41 263.89l.703.67-.703-.67z"/> + <path fill="#184a00" d="M298.75 264.34l.235.446-.235-.446z"/> + <path fill="#185200" d="M300.63 263.89l.703.67-.703-.67z"/> + <path fill="#184a00" d="M306.49 264.34l.235.446-.235-.446z"/> + <path fill="#297b00" d="M306.96 263.89l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#296300" d="M314 263.89l.704.67-.704-.67z"/> + <path fill="#dedede" d="M315.4 263.89l.703.67-.703-.67z"/> + <path fill="#425242" d="M316.11 263.89l.703.67-.703-.67z"/> + <path fill="#297b00" d="M316.81 263.89l.704.67-.704-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#294200" d="M191.59 264.56l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#295200" d="M196.04 265.01l.235.446-.235-.446z"/> + <path fill="#ada5a5" d="M197.22 264.56l.703.67-.703-.67z"/> + <path fill="#526b42" d="M197.92 264.56l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M200.03 264.56l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.96 264.56l.704.67-.704-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#397b00" d="M209.18 264.56l.703.67-.703-.67z"/> + <path fill="#295200" d="M209.88 264.56l.703.67-.703-.67z"/> + <path fill="#294200" d="M215.74 265.01l.235.446-.235-.446z"/> + <path fill="#397b00" d="M217.62 264.56l.704.67-.704-.67z"/> + <path fill="#295200" d="M218.32 264.56l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M219.73 264.56l.703.67-.703-.67z"/> + <path fill="#313931" d="M228.17 264.56l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M247.87 264.56l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M248.57 264.56l.703.67-.703-.67z"/> + <path fill="#733939" d="M249.28 264.56l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M249.98 264.56l.704.67-.704-.67z"/> + <path fill="#631808" d="M250.68 264.56l.703.67-.703-.67z"/> + <path fill="#00184a" d="M253.5 264.56l.704.67-.704-.67z"/> + <path fill="#6b5252" d="M254.2 264.56l.703.67-.703-.67z"/> + <path fill="#310000" d="M257.72 264.56l.703.67-.703-.67z"/> + <path fill="#5a1010" d="M259.12 264.56l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M259.83 264.56l.704.67-.704-.67z"/> + <path fill="#63636b" d="M279.53 264.56l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M288.67 264.56l.704.67-.704-.67z"/> + <path fill="#214210" d="M289.38 264.56l.704.67-.704-.67z"/> + <path fill="#dedede" d="M290.08 264.56l.703.67-.703-.67z"/> + <path fill="#425242" d="M290.78 264.56l.703.67-.703-.67z"/> + <path fill="#103900" d="M293.6 264.56l.703.67-.703-.67z"/> + <path fill="#185200" d="M296.41 264.56l.703.67-.703-.67z"/> + <path fill="#297b00" d="M297.11 264.56l-.703 1.34.703-1.34z"/> + <path fill="#184a00" d="M300.87 265.01l.235.446-.235-.446z"/> + <path fill="#297b00" d="M303.45 264.56l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M304.15 264.56l.703.67-.703-.67z"/> + <path fill="#297b00" d="M305.56 264.56l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M310.48 264.56l.703.67-.703-.67z"/> + <path fill="#185200" d="M313.29 264.56l-2.814 3.347 2.814-3.347z"/> + <path fill="#7b7373" d="M314 264.56l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M314.7 264.56l.703.67-.703-.67z"/> + <path fill="#214210" d="M315.4 264.56l.703.67-.703-.67z"/> + <path fill="#297b00" d="M316.11 264.56l.703.67-.703-.67z"/> + <path fill="#184a00" d="M317.52 264.56l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M318.22 264.56l.703.67-.703-.67z"/> + <path fill="#395231" d="M318.92 264.56l.703.67-.703-.67z"/> + <path fill="#296300" d="M319.63 264.56l.704.67-.704-.67z"/> + <path fill="#297b00" d="M321.27 265.01l.235.446-.235-.446z"/> + <path fill="#8c8c8c" d="M321.74 264.56l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M189.71 265.68l.234.446-.234-.446z"/> + <path fill="#397b00" d="M190.18 265.23l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#295200" d="M192.29 265.23l.703.67-.703-.67z"/> + <path fill="#397b00" d="M194.17 265.46l.47.224-.47-.224z"/> + <path fill="#213918" d="M197.22 265.23l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M197.92 265.23l.703.67-.703-.67z"/> + <path fill="#295200" d="M200.03 265.23l.703.67-.703-.67z"/> + <path fill="#efefef" d="M200.73 265.23l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M202.85 265.23l.703.67-.703-.67z"/> + <path fill="#397b00" d="M203.55 265.23l.703.67-.703-.67z"/> + <path fill="#103900" d="M205.66 265.23l.703.67-.703-.67z"/> + <path fill="#001000" d="M209.18 265.23l.703.67-.703-.67z"/> + <path fill="#295200" d="M212.69 265.23l-.703 1.34.703-1.34z"/> + <path fill="#103900" d="M217.62 265.23l.704.67-.704-.67z"/> + <path fill="#214210" d="M219.03 265.23l.704.67-.704-.67z"/> + <path fill="#efefef" d="M219.73 265.23l.703.67-.703-.67z"/> + <path fill="#b51010" d="M228.17 265.23l.703.67-.703-.67z"/> + <path fill="#733939" d="M228.87 265.23l.703.67-.703-.67z"/> + <path fill="#cecece" d="M229.58 265.23l.703.67-.703-.67m20.4 0l.705.67-.704-.67z"/> + <path fill="#001039" d="M250.68 265.23l.703.67-.703-.67z"/> + <path fill="#002984" d="M252.79 265.23l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M253.5 265.23l.704.67-.704-.67z"/> + <path fill="#842118" d="M254.2 265.23l.703.67-.703-.67z"/> + <path d="M257.72 265.23l.703.67-.703-.67z"/> + <path fill="#ad0008" d="M258.42 265.23l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M259.12 265.23l.703.67-.703-.67z"/> + <path fill="#debdb5" d="M278.12 265.23l.703.67-.703-.67z"/> + <path fill="#8c4a4a" d="M278.82 265.23l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M279.53 265.23l.703.67-.703-.67z"/> + <path fill="#946b63" d="M280.46 265.68l.235.446-.235-.446z"/> + <path fill="#001000" d="M288.67 265.23l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M289.38 265.23l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#296300" d="M291.49 265.23l.704.67-.704-.67z"/> + <path fill="#184a00" d="M293.6 265.23l.703.67-.703-.67z"/> + <path fill="#297b00" d="M294.3 265.23l-.703 1.34.703-1.34z"/> + <path fill="#184a00" d="M297.11 265.23l.704.67-.704-.67z"/> + <path fill="#296300" d="M298.52 265.23l.703.67-.703-.67z"/> + <path fill="#297b00" d="M299.22 265.23l-.703 1.34.703-1.34z"/> + <path fill="#103900" d="M303.68 265.68l.235.446-.235-.446m1.876-.446l.704.67-.704-.67z"/> + <path d="M309.78 265.23l.703.67-.703-.67z"/> + <path fill="#297b00" d="M310.48 265.23l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M313.29 265.23l.703.67-.703-.67z"/> + <path fill="#63636b" d="M314 265.23l.704.67-.704-.67z"/> + <path fill="#296300" d="M314.7 265.23l.703.67-.703-.67z"/> + <path fill="#103900" d="M316.81 265.23l.704.67-.704-.67z"/> + <path fill="#cecece" d="M317.52 265.23l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M319.63 265.23l.704.67-.704-.67z"/> + <path fill="#294221" d="M320.33 265.23l.703.67-.703-.67z"/> + <path fill="#184a00" d="M321.74 265.23l.703.67-.703-.67z"/> + <path fill="#cecece" d="M322.44 265.23l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M186.66 265.9l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M187.84 266.13l.47.224-.47-.224z"/> + <path fill="#9c9494" d="M188.78 265.9l.703.67-.703-.67z"/> + <path fill="#294200" d="M190.18 265.9l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M192.29 265.9l.703.67-.703-.67z"/> + <path fill="#294200" d="M193.7 265.9l-.703 2.008.703-2.008m2.11 0v2.008h.704l-.704-2.008z"/> + <path fill="#292100" d="M197.92 265.9l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M200.73 265.9l.703.67-.703-.67z"/> + <path fill="#294200" d="M203.55 265.9l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#103900" d="M209.18 265.9l.703.67-.703-.67z"/> + <path fill="#397b00" d="M212.69 265.9l.703.67-.703-.67m2.58.223l.468.223-.468-.223z"/> + <path fill="#103900" d="M216.92 265.9l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M219.03 265.9l.704.67-.704-.67z"/> + <path fill="#de2110" d="M228.87 265.9v10.71h-.703l-.704-9.372h-6.33v19.412l2.813-1.338 1.407 4.685 3.517-2.008.704 7.362 6.33-2.008c2.962 2.01 4.85 2.025 6.333-1.34h1.407l4.22 4.018-.703-12.718-12.662-.67v-.67l11.96.67v-2.008c-8.865-.198-9.85-5.54-9.85-12.718l-7.738-2.008z"/> + <path fill="#b51010" d="M229.58 265.9l.703.67-.703-.67z"/> + <path fill="#7b5252" d="M230.28 265.9l.704.67-.704-.67z"/> + <path fill="#cecece" d="M230.99 265.9l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M249.98 265.9l.704.67-.704-.67z"/> + <path fill="#002984" d="M250.68 265.9l.703.67-.703-.67z"/> + <path fill="#10214a" d="M252.79 265.9l.704.67-.704-.67z"/> + <path fill="#c6b5b5" d="M253.5 265.9l.704.67-.704-.67z"/> + <path fill="#ce1810" d="M254.2 265.9l.703.67-.703-.67z"/> + <path fill="#6b0808" d="M257.01 265.9l.704.67-.704-.67z"/> + <path fill="#100808" d="M257.72 265.9l.703.67-.703-.67z"/> + <path fill="#5a3131" d="M258.42 265.9l.704.67-.704-.67z"/> + <path fill="#dedede" d="M276.71 265.9l.703.67-.703-.67z"/> + <path fill="#a56363" d="M277.42 265.9l.704.67-.704-.67z"/> + <path fill="#b51010" d="M278.12 265.9l.703.67-.703-.67z"/> + <path fill="#de2110" d="M271.79 267.91c0 6.753-.655 12.3-9.145 12.718 1.878 5.082 10.972 1.852 13.994-.82 4.19-3.706 3.592-8.948 3.592-13.907l-8.442 2.01z"/> + <path fill="#bdbdbd" d="M287.97 265.9l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M288.67 265.9l.704.67-.704-.67z"/> + <path fill="#315221" d="M291.49 265.9l.704.67-.704-.67z"/> + <path fill="#103900" d="M294.3 265.9l.704.67-.704-.67m2.814 0l.704.67-.704-.67z"/> + <path fill="#184a00" d="M299.22 265.9l.704.67-.704-.67z"/> + <path fill="#296300" d="M304.85 265.9l.703.67-.703-.67z"/> + <path fill="#185200" d="M305.56 265.9l.704.67-.704-.67z"/> + <path fill="#297b00" d="M304.15 271.93l6.33-6.024c-3.48.84-4.903 3.057-6.33 6.024z"/> + <path fill="#103900" d="M309.07 265.9l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M312.59 265.9l.703.67-.703-.67z"/> + <path fill="#294221" d="M313.29 265.9l.703.67-.703-.67z"/> + <path fill="#297b00" d="M314 265.9l.704.67-.704-.67z"/> + <path fill="#185200" d="M316.11 265.9l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M316.81 265.9l.704.67-.704-.67z"/> + <path fill="#efefef" d="M320.33 265.9l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M321.03 265.9l.703.67-.703-.67z"/> + <path fill="#185200" d="M321.74 265.9l.703.67-.703-.67z"/> + <path fill="#294221" d="M322.44 265.9l.704.67-.704-.67z"/> + <path fill="#efefef" d="M323.14 265.9l.703.67-.703-.67m-136.48.67l.703.67-.703-.67z"/> + <path fill="#293129" d="M187.37 266.57l.703.67-.703-.67z"/> + <path fill="#428c00" d="M188.54 266.8l.47.224-.47-.224z"/> + <path fill="#397b00" d="M189.71 267.02l.234.446-.234-.446z"/> + <path fill="#295200" d="M190.18 266.57l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#397b00" d="M192.29 266.57l.703.67-.703-.67z"/> + <path fill="#294200" d="M197.92 266.57l.703.67-.703-.67z"/> + <path fill="#425242" d="M200.73 266.57l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M203.55 266.57l.703.67-.703-.67z"/> + <path fill="#295200" d="M206.36 266.57l.703.67-.703-.67z"/> + <path fill="#294200" d="M209.18 266.57v2.008h.703l-.703-2.008m3.048.446l.235.446-.235-.446m2.58-.446l.703.67-.702-.67z"/> + <path fill="#397b00" d="M216.68 266.8l.47.224-.47-.224z"/> + <path fill="#295200" d="M218.32 266.57l.703.67-.703-.67z"/> + <path fill="#dedede" d="M219.03 266.57l.704.67-.704-.67z"/> + <path fill="#52525a" d="M220.43 266.57l.704.67-.704-.67z"/> + <path fill="#5a3131" d="M227.47 266.57l.704.67-.704-.67z"/> + <path fill="#b51010" d="M230.99 266.57l.703.67-.703-.67z"/> + <path fill="#842118" d="M231.69 266.57l.703.67-.703-.67z"/> + <path fill="#8c6363" d="M232.39 266.57l.703.67-.703-.67z"/> + <path fill="#cecece" d="M233.1 266.57l.704.67-.704-.67z"/> + <path fill="#dedede" d="M249.28 266.57l.703.67-.703-.67z"/> + <path fill="#00184a" d="M249.98 266.57l.704.67-.704-.67z"/> + <path fill="#002984" d="M252.09 266.57l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M252.79 266.57l.704.67-.704-.67z"/> + <path fill="#8c6363" d="M253.5 266.57l.704.67-.704-.67z"/> + <path fill="#941808" d="M257.01 266.57l.704.67-.704-.67z"/> + <path fill="#4a2129" d="M257.72 266.57l.703.67-.703-.67z"/> + <path fill="#efefef" d="M258.42 266.57l.704.67-.704-.67z"/> + <path fill="#d6a5a5" d="M274.6 266.57l.704.67-.704-.67z"/> + <path fill="#946b63" d="M275.31 266.57l.703.67-.703-.67z"/> + <path fill="#a52921" d="M276.01 266.57l.703.67-.703-.67z"/> + <path fill="#b51010" d="M276.71 266.57l.703.67-.703-.67z"/> + <path fill="#4a2129" d="M280.23 266.57l.704.67-.704-.67z"/> + <path fill="#42425a" d="M280.93 266.57v.67h6.33l-6.33-.67z"/> + <path fill="#212139" d="M287.26 266.57l.703.67-.703-.67z"/> + <path fill="#dedede" d="M290.08 266.57l2.11 1.34v-.67l-2.11-.67z"/> + <path fill="#8c8c8c" d="M291.49 266.57l.704.67-.704-.67z"/> + <path fill="#297b00" d="M292.19 266.57l.703.67-.703-.67z"/> + <path fill="#184a00" d="M294.3 266.57l.704.67-.704-.67z"/> + <path fill="#297b00" d="M295 266.57l-.704 1.34.704-1.34m2.11 0l.704.67-.704-.67z"/> + <path fill="#296300" d="M297.82 266.57l.703.67-.703-.67z"/> + <path fill="#103900" d="M299.22 266.57l.704.67-.704-.67z"/> + <path fill="#297b00" d="M300.63 266.57l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#296300" d="M303.45 266.57l.703.67-.703-.67z"/> + <path fill="#103900" d="M304.85 266.57l.703.67-.703-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#313931" d="M311.89 266.57l.703.67-.703-.67z"/> + <path fill="#184a00" d="M312.59 266.57l.703.67-.703-.67z"/> + <path fill="#296300" d="M315.4 266.57l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M316.11 266.57l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M321.74 266.57l.703.67-.703-.67z"/> + <path fill="#424242" d="M322.44 266.57l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M323.14 266.57l.703.67-.703-.67z"/> + <path fill="#cecece" d="M187.37 267.24l.703.67-.703-.67z"/> + <path fill="#294200" d="M188.07 267.24l.704.67-.704-.67z"/> + <path fill="#103900" d="M188.78 267.24l.703.67-.703-.67z"/> + <path fill="#292100" d="M192.29 267.24l.703.67-.703-.67z"/> + <path fill="#295200" d="M193.7 267.24l.704.67-.704-.67m5.16.446l.234.446-.235-.446m1.875-.446l.703.67-.703-.67z"/> + <path fill="#dedede" d="M201.44 267.24l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#294200" d="M204.25 267.24l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#397b00" d="M214.1 267.24l.704.67-.704-.67z"/> + <path fill="#295200" d="M214.8 267.24l.703.67-.703-.67z"/> + <path fill="#294200" d="M216.21 267.24l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M218.32 267.24l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M233.1 267.24l.704.67-.704-.67z"/> + <path fill="#a51008" d="M233.8 267.24l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M234.5 267.24l.703.67-.703-.67z"/> + <path fill="#943131" d="M235.68 267.46l.47.224-.47-.224z"/> + <path fill="#c6b5b5" d="M236.61 267.24l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M249.28 267.24l.703.67-.703-.67z"/> + <path fill="#001039" d="M252.09 267.24l.703.67-.703-.67z"/> + <path fill="#efefef" d="M252.79 267.24l.704.67-.704-.67z"/> + <path fill="#943131" d="M253.5 267.24l.704.67-.704-.67z"/> + <path fill="#ce1810" d="M256.31 267.24l1.407 6.024-1.407-6.024z"/> + <path fill="#6b0808" d="M257.01 267.24l1.407 1.34-1.407-1.34z"/> + <path fill="#733939" d="M257.72 267.24l.703.67-.703-.67z"/> + <path fill="#c69c94" d="M271.08 267.24l.703.67-.703-.67z"/> + <path fill="#ad3931" d="M272.26 267.46l.47.224-.47-.224z"/> + <path fill="#bd2110" d="M273.19 267.24l.703.67-.703-.67z"/> + <path fill="#b51010" d="M273.9 267.24l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M274.6 267.24l.704.67-.704-.67z"/> + <path fill="#00184a" d="M280.23 267.24v5.355h.704l-.704-5.355z"/> + <path fill="#003994" d="M280.93 267.24c0 12.41-7.252 16.998-19.698 16.065l-.704 12.718c2.66-.043 6.397.155 7.035-2.678l2.815 2.01 2.814-2.68-.704 2.68 1.407-1.34h.704l4.22-.67-.704 2.01 2.11-2.68 1.408 1.34h2.11v-2.008l1.407.67.705-6.025c3.57-2.97 1.407-14.982 1.407-19.412h-6.332z"/> + <path fill="#424242" d="M290.08 267.24l.703.67-.703-.67z"/> + <path fill="#185200" d="M292.19 267.24l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#184a00" d="M297.82 267.24v2.008h.703l-.703-2.008z"/> + <path fill="#185200" d="M299.22 267.24l.704.67-.704-.67z"/> + <path fill="#184a00" d="M301.33 267.24v3.347h.703l-.703-3.347z"/> + <path fill="#185200" d="M304.15 267.24l.703.67-.703-.67z"/> + <path fill="#296300" d="M304.85 267.24l.703.67-.703-.67z"/> + <path fill="#082108" d="M307.67 267.24l.703.67-.703-.67z"/> + <path d="M311.18 267.24l.704.67-.704-.67z"/> + <path fill="#296300" d="M311.89 267.24l.703.67-.703-.67z"/> + <path fill="#297b00" d="M314.7 267.24l-1.407 2.008 1.407-2.008z"/> + <path fill="#63636b" d="M315.4 267.24l.703.67-.703-.67m-127.33.67l.704.67-.704-.67z"/> + <path fill="#294200" d="M189.48 267.91l1.407 1.34-1.407-1.34z"/> + <path fill="#295200" d="M190.18 267.91l.703.67-.703-.67z"/> + <path fill="#103900" d="M193 267.91l.703.67-.703-.67z"/> + <path fill="#397b00" d="M193.7 267.91l.704.67-.704-.67m2.11 0v1.34h1.407v-1.34h-1.407z"/> + <path fill="#8c8c8c" d="M201.44 267.91l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M204.25 267.91l.703.67-.703-.67z"/> + <path fill="#103900" d="M215.51 267.91l.703.67-.703-.67z"/> + <path fill="#396b10" d="M217.62 267.91l.704.67-.704-.67z"/> + <path fill="#dedede" d="M218.32 267.91l.703.67-.703-.67z"/> + <path d="M236.61 267.91v6.024h.703l-.703-6.024z" fill-opacity=".475" fill="#8c7373"/> + <path fill="#efefef" d="M248.57 267.91l.703.67-.703-.67z"/> + <path fill="#10214a" d="M249.28 267.91l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M252.09 267.91l.703.67-.7-.67z"/> + <path fill="#ad1810" d="M253.5 267.91l.704.67-.704-.67z"/> + <path fill="#420000" d="M257.01 267.91l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M290.08 267.91l.703.67-.703-.67z"/> + <path fill="#63636b" d="M290.78 267.91l.703.67-.703-.67z"/> + <path fill="#425242" d="M292.19 267.91l.703.67-.703-.67z"/> + <path fill="#103900" d="M295 267.91l.703.67-.703-.67z"/> + <path fill="#184a00" d="M299.22 267.91l.704.67-.704-.67z"/> + <path fill="#297b00" d="M303.45 267.91l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M304.15 267.91l.703.67-.703-.67m2.814 0l.703.67-.703-.67m2.814 0l-3.518 4.016 3.518-4.016z"/> + <path fill="#082108" d="M310.48 267.91l.703.67-.703-.67z"/> + <path fill="#297b00" d="M311.18 267.91l.704.67-.704-.67z"/> + <path fill="#314231" d="M314.7 267.91l-.704 1.34.704-1.34z"/> + <path fill="#bdbdbd" d="M188.07 268.58l.704.67-.704-.67z"/> + <path fill="#397b00" d="M188.78 268.58l.703.67-.703-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#294200" d="M193.93 269.03l.235.446-.235-.446m4.925 0l.234.446-.235-.446z"/> + <path fill="#526b42" d="M201.44 268.58l.703.67-.703-.67z"/> + <path fill="#efefef" d="M204.25 268.58l.703.67-.703-.67z"/> + <path fill="#314231" d="M204.96 268.58l.704.67-.704-.67z"/> + <path fill="#397b00" d="M209.18 268.58l.703.67-.703-.67m4.22.67v.67h2.112l-2.11-.67m2.11-.67l.703.67-.704-.67m1.41 0l.702.67-.704-.67z"/> + <path fill="#8c8c8c" d="M217.62 268.58l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M242.71 268.8l.47.224-.47-.224z"/> + <path fill="#8c8c8c" d="M243.65 268.58l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M244.35 268.58l.704.67-.704-.67z"/> + <path fill="#cecece" d="M245.06 268.58l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M248.57 268.58l.703.67-.703-.67z"/> + <path fill="#00216b" d="M249.28 268.58l.703.67-.703-.67z"/> + <path fill="#00215a" d="M251.39 268.58l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M252.09 268.58l.703.67-.703-.67z"/> + <path fill="#a51008" d="M253.5 268.58l.704.67-.704-.67z"/> + <path fill="#310000" d="M257.01 268.58l.704.67-.704-.67z"/> + <path fill="#940008" d="M257.72 268.58l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M258.42 268.58l.704.67-.704-.67z"/> + <path fill="#cecece" d="M262.64 268.58l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M263.35 268.58l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M264.52 268.8l.47.224-.47-.224z"/> + <path fill="#7b7373" d="M265.46 268.58l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M290.08 268.58l.703.67-.703-.67z"/> + <path fill="#103900" d="M290.78 268.58l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M291.49 268.58l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M292.19 268.58l.703.67-.703-.67z"/> + <path fill="#297b00" d="M292.89 268.58l.704.67-.704-.67z"/> + <path fill="#296300" d="M295.47 268.8l.47.224-.47-.224z"/> + <path fill="#297b00" d="M298.52 268.58l.703.67-.703-.67z"/> + <path fill="#185200" d="M299.22 268.58l.704.67-.704-.67z"/> + <path fill="#297b00" d="M299.93 268.58l.704.67-.704-.67z"/> + <path fill="#103900" d="M303.45 268.58l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#efefef" d="M314.7 268.58l.703.67-.703-.67z"/> + <path fill="#396b10" d="M188.78 269.25l.703.67-.703-.67z"/> + <path fill="#103900" d="M190.89 269.25l.704.67-.704-.67z"/> + <path fill="#294200" d="M196.75 269.7l.235.446-.235-.446z"/> + <path fill="#396b10" d="M201.44 269.25l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M203.55 269.25l.703.67-.703-.67z"/> + <path fill="#dedede" d="M204.96 269.25l.704.67-.704-.67z"/> + <path fill="#214210" d="M205.66 269.25l2.11 2.008-2.11-2.008z"/> + <path fill="#294200" d="M208.71 269.7l.235.446-.235-.446z"/> + <path fill="#103900" d="M214.1 269.25l.704.67-.704-.67z"/> + <path fill="#314231" d="M216.92 269.25l.703.67-.703-.67z"/> + <path fill="#003994" d="M242.94 269.25c.042 3.358.415 5.073 4.22 5.355.59-3.62-.563-4.587-4.22-5.355z"/> + <path fill="#002984" d="M244.35 269.25l.704.67-.704-.67z"/> + <path fill="#00216b" d="M245.06 269.25l.703.67-.703-.67z"/> + <path fill="#10214a" d="M245.76 269.25l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M246.46 269.25l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M247.17 269.25l.704.67-.704-.67z"/> + <path fill="#efefef" d="M247.87 269.25l.703.67-.703-.67z"/> + <path fill="#31425a" d="M248.57 269.25l.703.67-.703-.67z"/> + <path fill="#21315a" d="M251.39 269.25l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M252.79 269.25l.704.67-.704-.67z"/> + <path fill="#ce1810" d="M253.5 269.25l.704.67-.704-.67z"/> + <path fill="#420000" d="M257.01 269.25l.704.67-.704-.67z"/> + <path fill="#ce0008" d="M257.72 269.25l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M258.42 269.25l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M260.53 269.25l.704.67-.704-.67z"/> + <path fill="#63636b" d="M261.24 269.25l.703.67-.703-.67z"/> + <path fill="#21315a" d="M261.94 269.25l.703.67-.703-.67z"/> + <path fill="#00216b" d="M262.64 269.25l.703.67-.703-.67z"/> + <path fill="#002984" d="M263.35 269.25l.704.67-.704-.67z"/> + <path fill="#003994" d="M259.12 270.59c1.647 5.808 6.266 3.942 6.33-1.34l-6.33 1.34z"/> + <path fill="#efefef" d="M290.08 269.25l.703.67-.703-.67z"/> + <path fill="#185200" d="M290.78 269.25l.703.67-.703-.67z"/> + <path fill="#425242" d="M291.49 269.25l.704.67-.704-.67z"/> + <path fill="#efefef" d="M292.19 269.25l.703.67-.703-.67z"/> + <path fill="#103900" d="M292.89 269.25l.704.67-.704-.67m2.814 0l.704.67-.704-.67zM305.56 269.25l.704.67-.704-.67z"/> + <path fill="#185200" d="M309.07 269.25l.703.67-.703-.67z"/> + <path fill="#214210" d="M313.29 269.25l.703.67-.703-.67z"/> + <path fill="#cecece" d="M314 269.25l-.703 1.34.703-1.34z"/> + <path fill="#5a6b52" d="M188.78 269.92l.703.67-.703-.67z"/> + <path fill="#397b00" d="M190.89 269.92l.704.67-.704-.67z"/> + <path fill="#295200" d="M191.59 269.92l.703.67-.703-.67m2.814 0l.703.67-.703-.67m4.22 0l.704.67-.703-.67z"/> + <path fill="#425242" d="M203.55 269.92l.703.67-.703-.67z"/> + <path fill="#cecece" d="M205.66 269.92l2.11 2.008-2.11-2.008z"/> + <path fill="#397b00" d="M212.69 269.92l.703.67-.703-.67z"/> + <path fill="#214210" d="M216.21 269.92l-.703 1.34.703-1.34z"/> + <path fill="#cecece" d="M216.92 269.92l-.704 1.34.704-1.34z"/> + <path fill="#002984" d="M247.17 269.92l.704.67-.704-.67z"/> + <path fill="#001039" d="M247.87 269.92l.703.67-.703-.67z"/> + <path fill="#00184a" d="M248.57 269.92l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M251.39 269.92l.703.67-.703-.67z"/> + <path fill="#b5adad" d="M252.79 269.92l.704.67-.704-.67z"/> + <path fill="#6b0808" d="M257.01 269.92l.704.67-.704-.67z"/> + <path fill="#de2110" d="M257.72 269.92l.703.67-.703-.67z"/> + <path fill="#524242" d="M258.42 269.92l.704.67-.704-.67z"/> + <path fill="#525a6b" d="M259.12 269.92l.703.67-.703-.67z"/> + <path fill="#00184a" d="M259.83 269.92l.704.67-.704-.67z"/> + <path fill="#002984" d="M260.53 269.92l.704.67-.704-.67z"/> + <path fill="#395231" d="M290.78 269.92l.703.67-.703-.67z"/> + <path fill="#296300" d="M291.49 269.92l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M292.19 269.92l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M292.89 269.92l.704.67-.704-.67z"/> + <path fill="#185200" d="M295.71 269.92l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M296.41 269.92l.703.67-.703-.67z"/> + <path fill="#103900" d="M298.75 270.37l.235.446-.235-.446z"/> + <path fill="#297b00" d="M299.22 269.92l.704.67-.704-.67z"/> + <path fill="#103900" d="M304.85 269.92l.703.67-.703-.67z"/> + <path fill="#296300" d="M308.37 269.92l.704.67-.704-.67z"/> + <path fill="#103900" d="M312.59 269.92l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M188.78 270.59l.703.67-.703-.67z"/> + <path fill="#294200" d="M191.59 270.59l.703.67-.703-.67m3.048.446l.235.446-.235-.446z"/> + <path fill="#295200" d="M196.51 270.59l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M204.25 270.59l.703.67-.703-.67z"/> + <path fill="#397b00" d="M207.77 270.59l.704.67-.704-.67z"/> + <path fill="#295200" d="M208.47 270.59l.703.67-.703-.67z"/> + <path fill="#397b00" d="M211.99 270.59l.703.67-.703-.67z"/> + <path fill="#00215a" d="M247.87 270.59l.703.67-.703-.67z"/> + <path fill="#002984" d="M248.57 270.59l.703.67-.703-.67z"/> + <path fill="#00216b" d="M250.68 270.59l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M251.39 270.59l.703.67-.703-.67z"/> + <path fill="#ad0008" d="M257.72 270.59l.703.67-.703-.67z"/> + <path fill="#390821" d="M258.42 270.59l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M290.78 270.59l.703.67-.703-.67z"/> + <path fill="#319400" d="M291.49 270.59l.704.67-.704-.67z"/> + <path fill="#103910" d="M292.19 270.59l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M292.89 270.59l.704.67-.704-.67z"/> + <path fill="#297b00" d="M293.6 270.59l.703.67-.703-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#184a00" d="M299.93 270.59l.704.67-.704-.67z"/> + <path fill="#185200" d="M301.33 270.59l.703.67-.703-.67z"/> + <path fill="#103900" d="M304.15 270.59l.703.67-.703-.67z"/> + <path fill="#297b00" d="M307.67 270.59l.703.67-.703-.67z"/> + <path fill="#185200" d="M311.89 270.59l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M312.59 270.59l.703.67-.703-.67z"/> + <path fill="#dedede" d="M188.78 271.26l.703.67-.703-.67z"/> + <path fill="#295200" d="M189.48 271.26l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#397b00" d="M196.51 271.26l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M202.85 271.26l.703.67-.703-.67z"/> + <path fill="#214210" d="M204.25 271.26l1.407 1.34-1.407-1.34z"/> + <path fill="#cecece" d="M204.96 271.26l1.407 1.34-1.407-1.34z"/> + <path fill="#001000" d="M207.77 271.26l.704.67-.704-.67z"/> + <path fill="#103900" d="M210.58 271.26l.704.67-.704-.67z"/> + <path fill="#397b00" d="M211.29 271.26l.704.67-.704-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#214210" d="M214.1 271.26l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M214.8 271.26l.703.67-.703-.67z"/> + <path fill="#dedede" d="M215.51 271.26l.703.67-.703-.67z"/> + <path fill="#001039" d="M247.87 271.26l.703.67-.703-.67z"/> + <path fill="#00184a" d="M250.68 271.26l.703.67-.703-.67z"/> + <path fill="#7b0008" d="M257.01 271.26l.704.67-.704-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#efefef" d="M289.14 271.48l.47.224-.47-.224z"/> + <path fill="#9c9494" d="M290.78 271.26l.703.67-.703-.67z"/> + <path fill="#297b00" d="M291.95 271.48l.47.224-.47-.224z"/> + <path fill="#7b7373" d="M292.89 271.26l.704.67-.704-.67z"/> + <path fill="#185200" d="M293.6 271.26l.703.67-.703-.67z"/> + <path fill="#184a00" d="M296.64 271.7l.235.446-.235-.446m2.11 0l.235.446-.235-.446z"/> + <path fill="#296300" d="M299.93 271.26l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#184a00" d="M303.45 271.26l.703.67-.703-.67z"/> + <path fill="#297b00" d="M306.96 271.26l.703.67-.703-.67z"/> + <path fill="#296300" d="M311.18 271.26l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M311.89 271.26l.703.67-.703-.67z"/> + <path fill="#dedede" d="M314.7 271.26l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M315.4 271.26l.703.67-.703-.67z"/> + <path fill="#214210" d="M316.11 271.26l.703.67-.703-.67z"/> + <path fill="#395231" d="M316.81 271.26l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M317.52 271.26l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M189.48 271.93l.703.67-.703-.67z"/> + <path fill="#294200" d="M192.29 271.93l.703.67-.703-.67z"/> + <path fill="#295200" d="M194.4 271.93l1.407 1.34-1.407-1.34z"/> + <path fill="#397b00" d="M195.11 271.93l.703.67-.703-.67m3.518 0l-.704 1.34h1.407l-.702-1.34z"/> + <path fill="#396b10" d="M201.44 271.93l.703.67-.703-.67z"/> + <path fill="#526b42" d="M203.08 272.37l.235.446-.235-.446z"/> + <path fill="#efefef" d="M207.07 271.93l-.703 1.34.703-1.34z"/> + <path fill="#294200" d="M207.77 271.93l.704.67-.704-.67m2.345.446l.235.446-.235-.446z"/> + <path fill="#295200" d="M210.58 271.93l.704.67-.704-.67z"/> + <path fill="#294200" d="M211.99 271.93l.703.67-.703-.67z"/> + <path fill="#63636b" d="M212.69 271.93l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M213.4 271.93l.704.67-.704-.67z"/> + <path fill="#00184a" d="M247.87 271.93l.703.67-.703-.67z"/> + <path fill="#31425a" d="M250.68 271.93l.703.67-.703-.67z"/> + <path fill="#6b0808" d="M257.95 272.37l.235.446-.235-.446z"/> + <path fill="#bd0008" d="M258.42 271.93l.704.67-.704-.67z"/> + <path fill="#00215a" d="M259.12 271.93l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M288.67 271.93l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M289.38 271.93l.704.67-.704-.67z"/> + <path fill="#dedede" d="M290.78 271.93l.703.67-.703-.67z"/> + <path fill="#185200" d="M291.49 271.93l.704.67-.704-.67z"/> + <path fill="#184a00" d="M292.89 271.93l.704.67-.704-.67z"/> + <path fill="#314231" d="M293.6 271.93l.703.67-.703-.67z"/> + <path fill="#184a00" d="M301.33 271.93v2.678h.703l-.703-2.678z"/> + <path fill="#185200" d="M303.21 272.15l.47.224-.47-.224m2.345-.223l-1.407 2.008 1.407-2.008z"/> + <path fill="#296300" d="M306.26 271.93l.703.67-.703-.67z"/> + <path fill="#297b00" d="M310.48 271.93l-1.407 3.347h.703l.704-3.347z"/> + <path fill="#63636b" d="M311.18 271.93l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M313.29 271.93l.703.67-.703-.67z"/> + <path fill="#425242" d="M314 271.93l.704.67-.704-.67z"/> + <path fill="#185200" d="M314.7 271.93l.703.67-.703-.67z"/> + <path fill="#297b00" d="M315.4 271.93l.703.67-.703-.67z"/> + <path fill="#184a00" d="M317.52 271.93l.703.67-.703-.67z"/> + <path fill="#cecece" d="M318.22 271.93l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M189.48 272.6l.703.67-.703-.67z"/> + <path fill="#397b00" d="M192.76 272.82l.47.224-.47-.224z"/> + <path fill="#526b42" d="M201.44 272.6l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.02 272.82l.47.224-.47-.224z"/> + <path fill="#314231" d="M205.66 272.6l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M207.07 272.6l-.703 1.34.703-1.34z"/> + <path fill="#397b00" d="M209.18 272.6v2.008l2.11-2.008h-2.11z"/> + <path fill="#5a6b52" d="M211.29 272.6l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M211.99 272.6l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M242.24 272.6l.703.67-.703-.67z"/> + <path fill="#00216b" d="M247.63 272.82l.47.224-.47-.224z"/> + <path fill="#7b7373" d="M250.68 272.6l.703.67-.703-.67z"/> + <path fill="#de2110" d="M258.66 273.04l.235.446-.235-.446z"/> + <path fill="#390821" d="M259.12 272.6l.703.67-.703-.67z"/> + <path fill="#00215a" d="M280.23 272.6l.704.67-.704-.67z"/> + <path fill="#292921" d="M289.38 272.6l.704.67-.704-.67z"/> + <path fill="#315221" d="M291.49 272.6l.704.67-.704-.67z"/> + <path fill="#297b00" d="M292.89 272.6l.704.67-.704-.67z"/> + <path fill="#001000" d="M293.6 272.6l.703.67-.703-.67z"/> + <path fill="#297b00" d="M294.3 272.6l.704.67-.704-.67z"/> + <path fill="#296300" d="M296.88 272.82l.47.224-.47-.224z"/> + <path fill="#185200" d="M298.52 272.6l.703.67-.703-.67z"/> + <path fill="#296300" d="M302.74 272.6l.704.67-.704-.67z"/> + <path fill="#425242" d="M310.48 272.6l.703.67-.703-.67z"/> + <path fill="#efefef" d="M311.18 272.6l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M311.89 272.6l.703.67-.703-.67z"/> + <path fill="#315221" d="M312.59 272.6l.703.67-.703-.67z"/> + <path fill="#297b00" d="M313.29 272.6l.703.67-.703-.67z"/> + <path fill="#314231" d="M318.22 272.6l.703.67-.703-.67z"/> + <path fill="#dedede" d="M189.48 273.27l.703.67-.703-.67z"/> + <path fill="#295200" d="M190.18 273.27l.703.67-.703-.67z"/> + <path fill="#103900" d="M193 273.27l.703.67-.703-.67z"/> + <path fill="#294200" d="M195.11 273.27l.703.67-.703-.67z"/> + <path fill="#295200" d="M197.92 273.27l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M201.44 273.27l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M202.85 273.27l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.49 273.71l.235.446-.235-.446z"/> + <path fill="#315221" d="M207.07 273.27l.703.67-.703-.67z"/> + <path fill="#103900" d="M209.18 273.27l.703.67-.703-.67z"/> + <path fill="#63636b" d="M210.58 273.27l-.703 1.34.703-1.34z"/> + <path fill="#292921" d="M211.99 273.27l.703.67-.703-.67z"/> + <path fill="#dedede" d="M212.69 273.27l.703.67-.703-.67z"/> + <path fill="#733939" d="M220.43 273.27l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M227.47 273.27l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M242.24 273.27l.703.67-.703-.67z"/> + <path fill="#002984" d="M249.98 273.27l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M250.68 273.27l.703.67-.703-.67z"/> + <path fill="#b51010" d="M257.01 273.27l.704.67-.704-.67z"/> + <path fill="#520808" d="M257.72 273.27l.703.67-.703-.67z"/> + <path fill="#7b0008" d="M259.12 273.27l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M265.46 273.27l.703.67-.703-.67z"/> + <path fill="#002984" d="M280.46 273.71l.235.446-.235-.446z"/> + <path fill="#001000" d="M289.38 273.27l.704.67-.704-.67z"/> + <path fill="#dedede" d="M290.08 273.27l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M291.49 273.27l.704.67-.704-.67z"/> + <path fill="#185200" d="M294.07 273.49l.47.224-.47-.224z"/> + <path fill="#103900" d="M297.11 273.27l.704.67-.704-.67z"/> + <path fill="#297b00" d="M299.22 273.27l.704.67-.704-.67z"/> + <path fill="#293129" d="M309.78 273.27l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M310.48 273.27l.703.67-.703-.67z"/> + <path fill="#214210" d="M311.18 273.27l.704.67-.704-.67z"/> + <path fill="#297b00" d="M311.89 273.27l.703.67-.703-.67z"/> + <path fill="#185200" d="M318.22 273.27l.703.67-.703-.67z"/> + <path fill="#cecece" d="M318.92 273.27l.703.67-.703-.67z"/> + <path fill="#314231" d="M190.18 273.94l.703.67-.703-.67z"/> + <path fill="#295200" d="M193 273.94l.703.67-.703-.67z"/> + <path fill="#397b00" d="M195.11 273.94l.703.67-.703-.67z"/> + <path fill="#295200" d="M195.81 273.94l.703.67-.703-.67z"/> + <path fill="#294200" d="M197.92 273.94l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M201.67 274.38l.235.446-.235-.446m1.173-.446l.703.67-.704-.67z"/> + <path fill="#294200" d="M206.36 273.94l.703.67-.703-.67z"/> + <path fill="#397b00" d="M207.07 273.94l-.703 3.347h.703v-3.347z"/> + <path fill="#294200" d="M208.71 274.38l.235.446-.235-.446z"/> + <path fill="#bdbdbd" d="M211.29 273.94l.704.67-.704-.67z"/> + <path fill="#294200" d="M212.23 274.38l.235.446-.235-.446z"/> + <path fill="#bdbdbd" d="M212.69 273.94l.703.67-.703-.67m5.628 0l.703.67-.702-.67z"/> + <path fill="#8c8c8c" d="M219.03 273.94l.704.67-.704-.67z"/> + <path fill="#315221" d="M219.73 273.94l.703.67-.703-.67z"/> + <path fill="#310000" d="M220.43 273.94l.704.67-.704-.67z"/> + <path fill="#a51008" d="M228.17 273.94l.703.67-.703-.67z"/> + <path fill="#845a52" d="M236.61 273.94l.703.67-.703-.67z"/> + <path fill="#dedede" d="M242.24 273.94l.703.67-.703-.67z"/> + <path fill="#10214a" d="M242.94 273.94l.703.67-.703-.67z"/> + <path fill="#00216b" d="M249.98 273.94l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M250.68 273.94l.703.67-.703-.67z"/> + <path fill="#a51008" d="M257.01 273.94l.704.67-.704-.67z"/> + <path fill="#940008" d="M257.72 273.94l1.407 1.34-1.407-1.34z"/> + <path fill="#bd0008" d="M258.89 274.16l.47.224-.47-.224z"/> + <path fill="#00215a" d="M259.83 273.94l.704.67-.704-.67z"/> + <path fill="#10214a" d="M264.75 273.94l.703.67-.703-.67z"/> + <path fill="#cecece" d="M265.46 273.94l-.703 1.34.703-1.34z"/> + <path fill="#103900" d="M289.38 273.94l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M290.08 273.94l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M291.49 273.94l.704.67-.704-.67z"/> + <path fill="#297b00" d="M292.19 273.94l.703.67-.703-.67z"/> + <path fill="#103900" d="M294.3 273.94l.704.67-.704-.67z"/> + <path fill="#184a00" d="M297.11 273.94l.704.67-.704-.67zM304.15 273.94l.703.67-.703-.67z"/> + <path fill="#103900" d="M309.07 273.94l.703.67-.703-.67z"/> + <path fill="#184a00" d="M309.78 273.94l.703.67-.703-.67z"/> + <path fill="#297b00" d="M310.48 273.94l.703.67-.703-.67m6.097.223l.47.223-.47-.223m1.642-.223l.702.67-.704-.67z"/> + <path fill="#7b7373" d="M318.92 273.94l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M190.18 274.6l.703.67-.703-.67z"/> + <path fill="#295200" d="M190.89 274.6l.704.67-.704-.67z"/> + <path fill="#103900" d="M193.7 274.6l.704.67-.704-.67z"/> + <path fill="#294200" d="M195.81 274.6l1.407 1.34-1.407-1.34z"/> + <path fill="#397b00" d="M196.51 274.6l.704.67-.704-.67z"/> + <path fill="#295200" d="M197.92 274.6l-.703 2.008.703-2.008z"/> + <path fill="#bdbdbd" d="M202.85 274.6l.703.67-.703-.67z"/> + <path fill="#397b00" d="M203.55 274.6l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.96 274.6l.704.67-.704-.67z"/> + <path fill="#738c63" d="M209.18 274.6l.703.67-.703-.67z"/> + <path fill="#cecece" d="M210.58 274.6l-2.814 3.347 2.814-3.347z"/> + <path fill="#214210" d="M211.29 274.6l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M212.93 275.05l.235.446-.235-.446z"/> + <path fill="#efefef" d="M215.51 274.6l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M216.21 274.6l.704.67-.704-.67z"/> + <path fill="#315221" d="M216.92 274.6l.703.67-.703-.67z"/> + <path fill="#294200" d="M217.62 274.6v2.008h.704l-.704-2.008z"/> + <path fill="#397b00" d="M218.79 274.83l.47.224-.47-.224z"/> + <path fill="#214210" d="M219.73 274.6l.703.67-.703-.67z"/> + <path fill="#733939" d="M220.43 274.6l.704.67-.704-.67z"/> + <path fill="#941808" d="M228.17 274.6l.703.67-.703-.67z"/> + <path fill="#943131" d="M236.61 274.6l.703.67-.703-.67z"/> + <path fill="#cecece" d="M242.94 274.6l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M243.65 274.6l.703.67-.703-.67z"/> + <path fill="#10295a" d="M244.35 274.6l.704.67-.704-.67z"/> + <path fill="#00184a" d="M245.52 274.83l.47.224-.47-.224z"/> + <path fill="#001039" d="M246.46 274.6l.703.67-.703-.67z"/> + <path fill="#00215a" d="M249.98 274.6l.704.67-.704-.67z"/> + <path fill="#efefef" d="M250.68 274.6l.703.67-.703-.67z"/> + <path fill="#b51010" d="M257.01 274.6l.704.67-.704-.67z"/> + <path fill="#bd0008" d="M257.72 274.6l.703.67-.703-.67z"/> + <path fill="#de2110" d="M259.12 274.6l2.814 7.363-2.814-7.363z"/> + <path fill="#391810" d="M259.83 274.6l.704.67-.704-.67z"/> + <path fill="#636b7b" d="M260.53 274.6l.704.67-.704-.67z"/> + <path fill="#21315a" d="M261.24 274.6l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M264.05 274.6l.703.67-.703-.67z"/> + <path fill="#9c4a42" d="M271.08 274.6l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M279.53 274.6l.703.67-.703-.67z"/> + <path fill="#184a00" d="M289.61 275.05l.235.446-.235-.446z"/> + <path fill="#395231" d="M290.08 274.6l.703.67-.703-.67z"/> + <path fill="#dedede" d="M291.49 274.6l-.703 1.34.703-1.34z"/> + <path fill="#296300" d="M292.19 274.6l.703.67-.703-.67z"/> + <path fill="#184a00" d="M294.3 274.6l.704.67-.704-.67z"/> + <path fill="#185200" d="M297.11 274.6l.704.67-.704-.67z"/> + <path fill="#103900" d="M303.45 274.6l.703.67-.703-.67z"/> + <path fill="#296300" d="M307.9 275.05l.235.446-.235-.446z"/> + <path fill="#103900" d="M308.37 274.6l.704.67-.704-.67z"/> + <path fill="#185200" d="M314.7 274.6l.703.67-.703-.67z"/> + <path fill="#425242" d="M315.4 274.6l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M316.11 274.6l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M316.81 274.6l.704.67-.704-.67z"/> + <path fill="#185200" d="M317.52 274.6l1.407 1.34-1.407-1.34z"/> + <path fill="#315221" d="M318.92 274.6l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M190.89 275.27l.704.67-.704-.67z"/> + <path fill="#397b00" d="M191.59 275.27l1.407 1.34-1.407-1.34m2.11 0l2.11 1.34v-.67l-2.11-.67z"/> + <path fill="#294200" d="M194.4 275.27l.703.67-.703-.67z"/> + <path fill="#397b00" d="M197.22 275.27l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M201.44 275.27l.703.67-.703-.67z"/> + <path fill="#efefef" d="M202.85 275.27l.703.67-.703-.67z"/> + <path fill="#295200" d="M203.55 275.27l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.96 275.27v2.008h.704l-.704-2.008z"/> + <path fill="#295200" d="M207.77 275.27l.704.67-.704-.67z"/> + <path fill="#396b10" d="M208.47 275.27l.703.67-.703-.67z"/> + <path fill="#efefef" d="M209.18 275.27l.703.67-.703-.67z"/> + <path fill="#214210" d="M210.58 275.27l.704.67-.704-.67z"/> + <path fill="#295200" d="M211.99 275.27l.703.67-.703-.67z"/> + <path fill="#efefef" d="M214.1 275.27l-.704 1.34.704-1.34z"/> + <path fill="#63636b" d="M214.8 275.27l.703.67-.703-.67z"/> + <path fill="#396b10" d="M215.51 275.27l.703.67-.703-.67z"/> + <path fill="#295200" d="M219.03 275.27l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M219.73 275.27l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M228.17 275.27l.703.67-.703-.67z"/> + <path fill="#a51008" d="M236.61 275.27l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M246.46 275.27l.703.67-.703-.67z"/> + <path fill="#00216b" d="M247.17 275.27l.704.67-.704-.67z"/> + <path fill="#00184a" d="M249.98 275.27l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M252.79 275.27l.704.67-.704-.67z"/> + <path fill="#a51008" d="M257.01 275.27l.704.67-.704-.67z"/> + <path fill="#6b0808" d="M258.66 275.72l.235.446-.235-.446z"/> + <path fill="#7b0008" d="M259.83 275.27l.704.67-.704-.67z"/> + <path fill="#dedede" d="M260.53 275.27l.704.67-.704-.67z"/> + <path fill="#ad3931" d="M271.08 275.27l.703.67-.703-.67z"/> + <path fill="#842118" d="M279.53 275.27l.703.67-.703-.67z"/> + <path fill="#185200" d="M290.08 275.27l.703.67-.703-.67z"/> + <path fill="#184a00" d="M292.19 275.27l.703.67-.703-.67z"/> + <path fill="#296300" d="M294.77 275.5l.47.224-.47-.224z"/> + <path fill="#185200" d="M299.22 275.27l.704.67-.704-.67z"/> + <path fill="#297b00" d="M306.26 275.27l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M306.96 275.27l.703.67-.703-.67z"/> + <path fill="#296300" d="M313.29 275.27l.703.67-.703-.67z"/> + <path fill="#425242" d="M314 275.27l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M314.7 275.27l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M317.52 275.27l.703.67-.703-.67z"/> + <path fill="#296300" d="M318.92 275.27l.703.67-.703-.67z"/> + <path fill="#cecece" d="M319.63 275.27l.704.67-.704-.67z"/> + <path fill="#dedede" d="M324.55 275.27l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M325.49 275.72l.235.446-.235-.446z"/> + <path fill="#63636b" d="M191.59 275.94l.703.67-.703-.67z"/> + <path fill="#001000" d="M197.92 275.94l.703.67-.703-.67z"/> + <path fill="#397b00" d="M200.73 275.94l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M201.44 275.94l.703.67-.703-.67z"/> + <path fill="#294200" d="M203.55 275.94l.703.67-.703-.67z"/> + <path fill="#103900" d="M207.77 275.94l.704.67-.704-.67z"/> + <path fill="#bdc6ad" d="M208.47 275.94l.703.67-.703-.67z"/> + <path fill="#214210" d="M209.88 275.94l.703.67-.703-.67z"/> + <path fill="#295200" d="M211.29 275.94l.704.67-.704-.67z"/> + <path fill="#526b42" d="M212.93 276.39l.235.446-.235-.446z"/> + <path fill="#314231" d="M214.1 275.94l.704.67-.704-.67z"/> + <path fill="#397b00" d="M218.32 275.94l.703.67-.703-.67z"/> + <path fill="#214210" d="M219.03 275.94l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M228.17 275.94l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M236.61 275.94l.703.67-.703-.67z"/> + <path fill="#a59494" d="M237.32 275.94l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M246.46 275.94l.703.67-.703-.67z"/> + <path fill="#002984" d="M247.17 275.94l.704.67-.704-.67z"/> + <path fill="#10295a" d="M249.98 275.94l.704.67-.704-.67z"/> + <path fill="#c6b5b5" d="M252.79 275.94l.704.67-.704-.67z"/> + <path fill="#ce1810" d="M253.73 276.39l.235.446-.235-.446z"/> + <path fill="#bd0008" d="M259.83 275.94l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M260.53 275.94l.704.67-.704-.67z"/> + <path fill="#debdb5" d="M270.38 275.94l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M271.08 275.94l.703.67-.703-.67z"/> + <path fill="#00184a" d="M279.53 275.94l.703.67-.703-.67z"/> + <path fill="#5a7b42" d="M289.38 275.94l.704.67-.704-.67z"/> + <path fill="#297b00" d="M290.08 275.94l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M290.78 275.94l.703.67-.703-.67z"/> + <path fill="#315221" d="M292.19 275.94l.703.67-.703-.67z"/> + <path fill="#297b00" d="M294.3 275.94l.704.67-.704-.67z"/> + <path fill="#184a00" d="M295 275.94v2.008h.703L295 275.94z"/> + <path fill="#185200" d="M298.05 276.39l.235.446-.235-.446z"/> + <path fill="#296300" d="M299.22 275.94l.704.67-.704-.67z"/> + <path fill="#184a00" d="M302.04 275.94l.704.67-.704-.67z"/> + <path fill="#185200" d="M305.56 275.94l.704.67-.704-.67z"/> + <path fill="#184a00" d="M306.26 275.94l.703.67-.703-.67z"/> + <path fill="#296300" d="M311.89 275.94l.703.67-.703-.67z"/> + <path fill="#395231" d="M312.59 275.94l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M313.29 275.94l.703.67-.703-.67z"/> + <path fill="#63636b" d="M318.22 275.94l.703.67-.703-.67z"/> + <path fill="#297b00" d="M318.92 275.94l.703.67-.703-.67z"/> + <path fill="#63636b" d="M319.63 275.94l.704.67-.704-.67z"/> + <path fill="#dedede" d="M322.44 275.94l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M323.14 275.94l.703.67-.703-.67z"/> + <path fill="#314231" d="M323.85 275.94l.703.67-.703-.67z"/> + <path fill="#001000" d="M324.55 275.94l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M192.29 276.61l.703.67-.703-.67z"/> + <path fill="#214210" d="M193 276.61l.703.67-.703-.67z"/> + <path fill="#397b00" d="M197.92 276.61l.703.67-.703-.67z"/> + <path fill="#294200" d="M198.86 277.06l.235.446-.235-.446z"/> + <path fill="#8c8c8c" d="M201.44 276.61l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M203.55 276.61l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.07 276.61l-.703 1.34.703-1.34z"/> + <path fill="#425242" d="M207.77 276.61l.704.67-.704-.67z"/> + <path fill="#214210" d="M209.18 276.61l.703.67-.703-.67z"/> + <path fill="#103900" d="M211.29 276.61l.704.67-.704-.67z"/> + <path fill="#425242" d="M213.4 276.61l.704.67-.704-.67z"/> + <path fill="#103900" d="M216.92 276.61l.703.67-.703-.67z"/> + <path fill="#397b00" d="M217.62 276.61l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M219.03 276.61l.704.67-.704-.67z"/> + <path fill="#a51008" d="M228.87 276.61l.703.67-.703-.67z"/> + <path fill="#842118" d="M237.32 276.61l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M246.46 276.61l.703.67-.703-.67z"/> + <path fill="#42425a" d="M249.98 276.61v5.355h.704l-.704-5.355z"/> + <path fill="#bdbdbd" d="M252.79 276.61l.704.67-.704-.67z"/> + <path fill="#a51008" d="M257.01 276.61l.704.67-.704-.67z"/> + <path fill="#ad0008" d="M259.12 276.61l.703.67-.703-.67z"/> + <path fill="#733939" d="M260.53 276.61l.704.67-.704-.67z"/> + <path fill="#9c4239" d="M270.38 276.61l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M278.82 276.61l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M287.97 276.61l1.407 1.34-1.407-1.34z"/> + <path fill="#4a6342" d="M289.61 277.06l.235.446-.235-.446z"/> + <path fill="#314231" d="M290.78 276.61l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M292.19 276.61l.703.67-.703-.67z"/> + <path fill="#296300" d="M301.33 276.61l.703.67-.703-.67z"/> + <path fill="#185200" d="M302.04 276.61l.704.67-.704-.67z"/> + <path fill="#103900" d="M304.85 276.61l.703.67-.703-.67z"/> + <path fill="#296300" d="M305.56 276.61l.704.67-.704-.67m4.925 0l.703.67-.703-.67z"/> + <path fill="#294221" d="M311.18 276.61l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M311.89 276.61l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M318.92 276.61l.703.67-.703-.67z"/> + <path fill="#52525a" d="M319.63 276.61l.704.67-.704-.67z"/> + <path fill="#cecece" d="M320.33 276.61l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M321.03 276.61l.703.67-.703-.67z"/> + <path fill="#314231" d="M321.74 276.61l.703.67-.703-.67z"/> + <path fill="#185200" d="M322.67 277.06l.235.446-.235-.446z"/> + <path fill="#296300" d="M323.14 276.61l.703.67-.703-.67z"/> + <path fill="#294221" d="M323.85 276.61l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M324.55 276.61l.703.67-.703-.67z"/> + <path fill="#efefef" d="M193 277.28l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M193.7 277.28l.704.67-.704-.67z"/> + <path fill="#5a5231" d="M194.4 277.28l.703.67-.703-.67z"/> + <path fill="#295200" d="M195.11 277.28l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M201.44 277.28l.703.67-.703-.67z"/> + <path fill="#526b42" d="M203.55 277.28l.703.67-.703-.67z"/> + <path fill="#213918" d="M207.07 277.28l.703.67-.703-.67z"/> + <path fill="#315221" d="M208.47 277.28l.703.67-.703-.67z"/> + <path fill="#295200" d="M210.58 277.28l.704.67-.704-.67z"/> + <path fill="#397b00" d="M211.29 277.28l.704.67-.704-.67z"/> + <path fill="#292100" d="M212.69 277.28l.703.67-.703-.67z"/> + <path fill="#397b00" d="M213.4 277.28l.704.67-.704-.67z"/> + <path fill="#295200" d="M216.21 277.28l.704.67-.704-.67z"/> + <path fill="#397b00" d="M216.92 277.28l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M219.03 277.28l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M228.87 277.28l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M237.32 277.28l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M238.02 277.28l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M246.46 277.28l.703.67-.703-.67z"/> + <path fill="#efefef" d="M252.79 277.28l.704.67-.704-.67z"/> + <path fill="#b51010" d="M253.5 277.28l.704.67-.704-.67z"/> + <path fill="#ad0008" d="M257.72 277.28l.703.67-.703-.67z"/> + <path fill="#bd0008" d="M258.42 277.28l.704.67-.704-.67z"/> + <path fill="#7b0008" d="M259.12 277.28l.703.67-.703-.67z"/> + <path fill="#940008" d="M260.53 277.28l.704.67-.704-.67z"/> + <path fill="#dedede" d="M261.24 277.28l.703.67-.703-.67z"/> + <path fill="#a5847b" d="M269.68 277.28l-.704 1.34.704-1.34z"/> + <path fill="#ce1810" d="M270.38 277.28l.703.67-.703-.67z"/> + <path fill="#392121" d="M278.82 277.28l.703.67-.703-.67z"/> + <path fill="#103910" d="M287.97 277.28l.703.67-.703-.67z"/> + <path fill="#185200" d="M290.78 277.28l.703.67-.703-.67z"/> + <path fill="#efefef" d="M291.49 277.28l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M292.19 277.28l.703.67-.703-.67z"/> + <path fill="#184a00" d="M298.05 277.73l.235.446-.235-.446z"/> + <path fill="#297b00" d="M300.63 277.28l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M301.33 277.28l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#297b00" d="M309.07 277.28l.703.67-.703-.67z"/> + <path fill="#214210" d="M309.78 277.28l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M310.48 277.28l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M316.58 277.51l.47.224-.47-.224z"/> + <path fill="#8c8c8c" d="M317.52 277.28l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M318.22 277.28l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M318.92 277.28l.703.67-.703-.67z"/> + <path fill="#184a00" d="M319.63 277.28l.704.67-.704-.67z"/> + <path fill="#296300" d="M320.33 277.28l.703.67-.703-.67z"/> + <path fill="#297b00" d="M321.03 277.28l-.703 1.34.703-1.34z"/> + <path fill="#319400" d="M321.74 277.28l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M323.14 277.28l.703.67-.703-.67z"/> + <path fill="#efefef" d="M323.85 277.28l.703.67-.703-.67z"/> + <path fill="#dedede" d="M195.11 277.95l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M195.81 277.95l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M196.51 277.95l.704.67-.704-.67z"/> + <path fill="#295200" d="M197.22 277.95l.703.67-.703-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#315221" d="M201.44 277.95l.703.67-.703-.67z"/> + <path fill="#292100" d="M206.36 277.95l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M207.07 277.95l.703.67-.703-.67z"/> + <path fill="#63636b" d="M207.77 277.95l.704.67-.704-.67z"/> + <path fill="#294200" d="M210.58 277.95l.704.67-.704-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#397b00" d="M215.51 277.95l.703.67-.703-.67z"/> + <path fill="#294200" d="M216.21 277.95l.704.67-.704-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#941808" d="M229.58 277.95l.703.67-.703-.67z"/> + <path fill="#b51010" d="M238.02 277.95l1.407 1.34-1.407-1.34z"/> + <path fill="#a59494" d="M238.72 277.95l.704.67-.704-.67z"/> + <path fill="#a51008" d="M253.5 277.95l.704.67-.704-.67z"/> + <path fill="#de2110" d="M258.42 277.95v9.371h2.11l-2.11-9.37z"/> + <path fill="#6b0808" d="M259.36 278.4l.235.446-.235-.446z"/> + <path fill="#ce0008" d="M260.53 277.95l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M261.24 277.95l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M269.68 277.95l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M278.12 277.95l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M287.97 277.95l.703.67-.703-.67z"/> + <path fill="#185200" d="M288.67 277.95l.704.67-.704-.67z"/> + <path fill="#103910" d="M289.38 277.95l.704.67-.704-.67z"/> + <path fill="#297b00" d="M290.78 277.95l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M291.49 277.95l.704.67-.704-.67z"/> + <path fill="#8c9c84" d="M292.42 278.4l.235.446-.235-.446z"/> + <path fill="#296300" d="M295 277.95l.703.67-.703-.67z"/> + <path fill="#297b00" d="M295.71 277.95l-.703 1.34.703-1.34z"/> + <path fill="#185200" d="M300.63 277.95l.703.67-.703-.67m2.11 0l-2.11 2.678 2.11-2.678z"/> + <path fill="#184a00" d="M303.45 277.95l.703.67-.703-.67z"/> + <path fill="#297b00" d="M307.67 277.95l.703.67-.703-.67z"/> + <path fill="#214210" d="M308.37 277.95l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M309.07 277.95l.703.67-.703-.67z"/> + <path fill="#cecece" d="M309.78 277.95l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M310.48 277.95l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M311.65 278.17l.47.224-.47-.224z"/> + <path fill="#6b735a" d="M312.59 277.95l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M313.29 277.95l.703.67-.703-.67z"/> + <path fill="#426331" d="M314 277.95l.704.67-.704-.67z"/> + <path fill="#184a00" d="M314.7 277.95l.703.67-.703-.67z"/> + <path fill="#185200" d="M315.4 277.95l.703.67-.703-.67z"/> + <path fill="#296300" d="M316.58 278.17l.47.224-.47-.224z"/> + <path fill="#184a00" d="M321.03 277.95l.703.67-.703-.67z"/> + <path fill="#63636b" d="M321.74 277.95l.703.67-.703-.67z"/> + <path fill="#dedede" d="M322.44 277.95l.704.67-.704-.67m-125.22.67l.703.67-.703-.67z"/> + <path fill="#52525a" d="M197.92 278.62l.703.67-.703-.67z"/> + <path fill="#103900" d="M198.62 278.62l.703.67-.703-.67z"/> + <path fill="#422100" d="M199.33 278.62l.704.67-.704-.67z"/> + <path fill="#294200" d="M200.03 278.62l1.407 1.34-1.407-1.34z"/> + <path fill="#397b00" d="M201.44 278.62l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M202.14 278.62l.704.67-.704-.67z"/> + <path fill="#293129" d="M206.36 278.62l.703.67-.703-.67z"/> + <path fill="#dedede" d="M207.07 278.62l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.77 278.62l.704.67-.704-.67z"/> + <path fill="#103900" d="M209.88 278.62l.703.67-.703-.67z"/> + <path fill="#295200" d="M212.69 278.62l.703.67-.703-.67z"/> + <path fill="#103900" d="M215.51 278.62l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M218.32 278.62l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M229.58 278.62l.703.67-.703-.67z"/> + <path fill="#b51010" d="M230.28 278.62l1.407 2.008-1.407-2.008z"/> + <path fill="#8c7373" d="M239.43 278.62l.703.67-.703-.67z"/> + <path fill="#efefef" d="M240.13 278.62l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M253.5 278.62l.704.67-.704-.67z"/> + <path fill="#a51008" d="M257.95 279.07l.235.446-.235-.446z"/> + <path fill="#6b2131" d="M261.24 278.62l.703.67-.703-.67z"/> + <path fill="#946b63" d="M268.27 278.62l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M268.97 278.62l.704.67-.704-.67m8.442 0l-.704 1.34.704-1.34z"/> + <path fill="#00216b" d="M278.12 278.62l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M287.97 278.62l.703.67-.703-.67z"/> + <path fill="#319400" d="M288.67 278.62l.704.67-.704-.67z"/> + <path fill="#103900" d="M289.38 278.62l.704.67-.704-.67z"/> + <path fill="#5a6b52" d="M291.49 278.62l.704.67-.704-.67z"/> + <path fill="#185200" d="M295.94 279.07l.235.446-.235-.446m1.876-.446l.704.67-.704-.67z"/> + <path fill="#297b00" d="M306.26 278.62l.703.67-.703-.67z"/> + <path fill="#184a00" d="M306.96 278.62l.703.67-.703-.67z"/> + <path fill="#001000" d="M307.67 278.62l.703.67-.703-.67z"/> + <path fill="#395231" d="M308.37 278.62l.704.67-.704-.67z"/> + <path fill="#184a00" d="M309.07 278.62l.703.67-.703-.67z"/> + <path fill="#185200" d="M309.78 278.62l.703.67-.703-.67z"/> + <path fill="#296300" d="M310.48 278.62l.703.67-.703-.67z"/> + <path fill="#297b00" d="M318.92 278.62l.703.67-.703-.67z"/> + <path fill="#184a00" d="M319.63 278.62l.704.67-.704-.67z"/> + <path fill="#63636b" d="M320.33 278.62l.703.67-.703-.67z"/> + <path fill="#dedede" d="M321.03 278.62l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M197.92 279.29l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M198.62 279.29l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M200.03 279.29l.703.67-.703-.67z"/> + <path fill="#425242" d="M202.14 279.29l.704.67-.704-.67z"/> + <path fill="#397b00" d="M205.66 279.29l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M206.36 279.29l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M207.07 279.29l.703.67-.703-.67z"/> + <path fill="#397b00" d="M209.65 279.51l.47.224-.47-.224m2.814 0l.47.224-.47-.224z"/> + <path fill="#103900" d="M214.8 279.29l.703.67-.703-.67z"/> + <path fill="#397b00" d="M217.62 279.29l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M218.32 279.29l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M240.13 279.29l.703.67-.703-.67z"/> + <path fill="#8c7373" d="M240.83 279.29l.703.67-.703-.67z"/> + <path fill="#efefef" d="M241.54 279.29l.704.67-.704-.67z"/> + <path fill="#943131" d="M253.73 279.74l.235.446-.235-.446z"/> + <path fill="#940008" d="M259.12 279.29l.703.67-.703-.67z"/> + <path fill="#ad0008" d="M259.83 279.29l.704.67-.704-.67z"/> + <path fill="#940008" d="M261.24 279.29l.703.67-.703-.67z"/> + <path fill="#cecece" d="M261.94 279.29l.703.67-.703-.67z"/> + <path fill="#a5847b" d="M266.86 279.29l.703.67-.703-.67z"/> + <path fill="#9c2118" d="M267.57 279.29l.703.67-.703-.67z"/> + <path fill="#00216b" d="M277.42 279.29l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M288.2 279.74l.235.446-.235-.446z"/> + <path fill="#297b00" d="M288.67 279.29v.67h2.11v-.67h-2.11z"/> + <path fill="#185200" d="M289.38 279.29l.704.67-.704-.67z"/> + <path fill="#184a00" d="M291.49 279.29l.704.67-.704-.67z"/> + <path fill="#395231" d="M292.19 279.29l.703.67-.703-.67z"/> + <path fill="#184a00" d="M297.82 279.29l.703.67-.703-.67m7.738 0l.704.67-.704-.67z"/> + <path fill="#082108" d="M306.26 279.29l.703.67-.703-.67z"/> + <path fill="#185200" d="M306.96 279.29l.703.67-.703-.67z"/> + <path fill="#297b00" d="M317.52 279.29l.703.67-.703-.67z"/> + <path fill="#214210" d="M318.22 279.29l.703.67-.703-.67z"/> + <path fill="#63636b" d="M318.92 279.29l.703.67-.703-.67z"/> + <path fill="#dedede" d="M319.63 279.29l.704.67-.704-.67z"/> + <path fill="#52525a" d="M197.92 279.96l.703.67-.703-.67z"/> + <path fill="#422100" d="M200.73 279.96l.703.67-.703-.67z"/> + <path fill="#295200" d="M202.14 279.96l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M202.85 279.96l.703.67-.703-.67z"/> + <path fill="#214210" d="M205.66 279.96l.703.67-.703-.67z"/> + <path fill="#314231" d="M207.07 279.96l.703.67-.703-.67z"/> + <path fill="#294200" d="M209.18 279.96l.703.67-.703-.67z"/> + <path fill="#103900" d="M211.99 279.96l.703.67-.703-.67z"/> + <path fill="#294200" d="M214.1 279.96l.704.67-.704-.67z"/> + <path fill="#397b00" d="M214.8 279.96l.703.67-.703-.67z"/> + <path fill="#396b10" d="M217.62 279.96l.704.67-.704-.67z"/> + <path fill="#efefef" d="M218.32 279.96l.703.67-.703-.67z"/> + <path fill="#a51008" d="M231.69 279.96l.703.67-.703-.67m9.85 0l.702.67-.703-.67z"/> + <path fill="#9c2929" d="M242.24 279.96l.703.67-.703-.67z"/> + <path fill="#845a52" d="M242.94 279.96l.703.67-.703-.67z"/> + <path fill="#a59494" d="M243.65 279.96l.703.67-.703-.67z"/> + <path fill="#c6b5b5" d="M244.35 279.96l.704.67-.704-.67z"/> + <path fill="#8c7373" d="M245.52 280.18l.47.224-.47-.224z"/> + <path fill="#212139" d="M246.46 279.96l.703.67-.703-.67z"/> + <path fill="#b51010" d="M257.72 279.96l.703.67-.703-.67z"/> + <path fill="#ce0008" d="M259.12 279.96l.703.67-.703-.67z"/> + <path fill="#6b0808" d="M259.83 279.96l.704.67-.704-.67z"/> + <path fill="#ce0008" d="M261.24 279.96l.703.67-.703-.67z"/> + <path fill="#734a42" d="M261.94 279.96l.703.67-.703-.67z"/> + <path fill="#946b63" d="M262.64 279.96l.703.67-.703-.67z"/> + <path fill="#bd8c8c" d="M263.35 279.96l.704.67-.704-.67z"/> + <path fill="#a5847b" d="M264.05 279.96l.703.67-.703-.67z"/> + <path fill="#9c5a52" d="M264.75 279.96l.703.67-.703-.67z"/> + <path fill="#ad3931" d="M265.46 279.96l.703.67-.703-.67z"/> + <path fill="#b51010" d="M266.16 279.96l.704.67-.704-.67m9.85 0l.702.67-.703-.67z"/> + <path fill="#00216b" d="M276.71 279.96l.703.67-.703-.67z"/> + <path fill="#296300" d="M288.67 279.96l.704.67-.704-.67z"/> + <path fill="#103900" d="M290.31 280.41l.235.446-.235-.446z"/> + <path fill="#297b00" d="M291.49 279.96l.704.67-.704-.67z"/> + <path fill="#082108" d="M292.19 279.96l.703.67-.703-.67z"/> + <path fill="#184a00" d="M295.71 279.96v2.008h.704l-.704-2.008z"/> + <path fill="#103900" d="M304.85 279.96l.703.67-.703-.67z"/> + <path fill="#297b00" d="M315.4 279.96l.703.67-.703-.67z"/> + <path fill="#185200" d="M316.11 279.96l.703.67-.703-.67z"/> + <path fill="#425242" d="M316.81 279.96l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M317.52 279.96l.703.67-.703-.67z"/> + <path fill="#efefef" d="M318.22 279.96l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M197.92 280.63l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M198.62 280.63l.703.67-.703-.67z"/> + <path fill="#941808" d="M200.03 280.63l.703.67-.703-.67z"/> + <path fill="#213918" d="M200.73 280.63l.703.67-.703-.67z"/> + <path fill="#314231" d="M202.85 280.63l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M205.66 280.63l.703.67-.703-.67z"/> + <path fill="#efefef" d="M206.36 280.63l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.07 280.63l.703.67-.703-.67m2.11 0l.704.67-.704-.67m2.11 0l-1.406 2.678h.703l.704-2.678z"/> + <path fill="#397b00" d="M211.99 280.63l.703.67-.703-.67z"/> + <path fill="#295200" d="M213.87 280.85l.47.224-.47-.224z"/> + <path fill="#397b00" d="M216.92 280.63l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M217.62 280.63l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M231.69 280.63l.703.67-.703-.67z"/> + <path fill="#941808" d="M232.39 280.63l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M246.46 280.63l.703.67-.703-.67z"/> + <path fill="#8c6363" d="M253.5 280.63l.704.67-.704-.67z"/> + <path fill="#a51008" d="M257.95 281.08l.235.446-.235-.446z"/> + <path fill="#520808" d="M259.83 280.63l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M261.94 280.63l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M275.31 280.63l.703.67-.703-.67z"/> + <path fill="#002984" d="M276.01 280.63l.703.67-.703-.67z"/> + <path fill="#185200" d="M288.67 280.63l.704.67-.704-.67z"/> + <path fill="#103900" d="M292.19 280.63l.703.67-.703-.67z"/> + <path fill="#297b00" d="M300.63 280.63l.703.67-.703-.67z"/> + <path fill="#296300" d="M303.45 280.63l.703.67-.703-.67z"/> + <path fill="#103900" d="M304.15 280.63l.703.67-.703-.67z"/> + <path fill="#297b00" d="M314 280.63l.704.67-.704-.67z"/> + <path fill="#214210" d="M314.7 280.63l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M315.4 280.63l.703.67-.703-.67z"/> + <path fill="#dedede" d="M316.11 280.63l.703.67-.703-.67z"/> + <path fill="#cecece" d="M198.62 281.3l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M199.33 281.3l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M200.03 281.3l.703.67-.703-.67z"/> + <path fill="#cecece" d="M200.73 281.3l.703.67-.703-.67z"/> + <path fill="#294200" d="M201.44 281.3l.703.67-.703-.67z"/> + <path fill="#397b00" d="M202.85 281.3l.703.67-.703-.67z"/> + <path fill="#292921" d="M203.55 281.3l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M205.66 281.3l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M206.36 281.3l.703.67-.703-.67z"/> + <path fill="#397b00" d="M207.07 281.3l.703.67-.703-.67z"/> + <path fill="#294200" d="M211.29 281.3l.704.67-.704-.67z"/> + <path fill="#103900" d="M212.69 281.3l.703.67-.703-.67z"/> + <path fill="#397b00" d="M213.4 281.3l.704.67-.704-.67z"/> + <path fill="#314231" d="M216.92 281.3l-1.407 2.008 1.407-2.008z"/> + <path fill="#ad1810" d="M233.1 281.3l.704.67-.704-.67z"/> + <path fill="#941808" d="M233.8 281.3l.703.67-.703-.67z"/> + <path fill="#a51008" d="M246.46 281.3l.703.67-.703-.67z"/> + <path fill="#8c7373" d="M253.5 281.3l.704.67-.704-.67z"/> + <path fill="#6b0808" d="M259.83 281.3l.704.67-.704-.67z"/> + <path fill="#b51010" d="M261.94 281.3l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M273.9 281.3l.703.67-.703-.67z"/> + <path fill="#291029" d="M274.6 281.3l.704.67-.704-.67z"/> + <path fill="#29396b" d="M287.26 281.3l.703.67-.703-.67z"/> + <path fill="#184a00" d="M288.67 281.3l.704.67-.704-.67z"/> + <path fill="#296300" d="M290.08 281.3l.703.67-.703-.67z"/> + <path fill="#297b00" d="M290.78 281.3l.703.67-.703-.67z"/> + <path fill="#184a00" d="M292.19 281.3l.703.67-.703-.67m10.552 0l.704.67-.704-.67z"/> + <path fill="#185200" d="M303.45 281.3l.703.67-.703-.67z"/> + <path fill="#297b00" d="M309.07 281.3l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M309.78 281.3l.703.67-.703-.67z"/> + <path fill="#184a00" d="M310.48 281.3v.67h2.814l-2.814-.67z"/> + <path fill="#185200" d="M313.29 281.3l.703.67-.703-.67z"/> + <path fill="#296300" d="M314 281.3l.704.67-.704-.67z"/> + <path fill="#184a00" d="M314.7 281.3v.67h2.11l-2.11-.67z"/> + <path fill="#4a6342" d="M316.81 281.3v.67h2.11l-2.11-.67z"/> + <path fill="#7b8c73" d="M318.92 281.3l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M319.63 281.3l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M320.33 281.3l.703.67-.703-.67z"/> + <path fill="#efefef" d="M198.62 281.97l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M201.44 281.97l.703.67-.703-.67z"/> + <path fill="#294200" d="M203.55 281.97l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.96 281.97l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M205.66 281.97l.703.67-.703-.67z"/> + <path fill="#733939" d="M206.36 281.97l.703.67-.703-.67z"/> + <path fill="#397b00" d="M211.29 281.97l.704.67-.704-.67z"/> + <path fill="#103900" d="M211.99 281.97l.703.67-.703-.67z"/> + <path fill="#efefef" d="M216.92 281.97l-.704 1.34.704-1.34z"/> + <path fill="#b51010" d="M234.5 281.97l.703.67-.703-.67z"/> + <path fill="#941808" d="M235.21 281.97l.703.67-.703-.67z"/> + <path fill="#b51010" d="M235.91 281.97l1.407 1.34-1.407-1.34z"/> + <path fill="#ce1810" d="M246.46 281.97l.703.67-.703-.67z"/> + <path fill="#00216b" d="M247.17 281.97l.704.67-.704-.67z"/> + <path fill="#425a84" d="M249.98 281.97l.704.67-.704-.67z"/> + <path fill="#b5adad" d="M253.5 281.97l.704.67-.704-.67z"/> + <path fill="#b51010" d="M257.72 281.97l.703.67-.703-.67z"/> + <path fill="#940008" d="M260.3 282.19l.47.224-.47-.224z"/> + <path fill="#ad0008" d="M261.24 281.97l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M261.94 281.97l1.407 1.34-1.407-1.34z"/> + <path fill="#ce1810" d="M271.79 281.97l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M272.49 281.97l.703.67-.703-.67z"/> + <path fill="#00184a" d="M273.19 281.97l.703.67-.703-.67z"/> + <path fill="#42425a" d="M287.26 281.97l.703.67-.703-.67z"/> + <path fill="#396321" d="M288.67 281.97l.704.67-.704-.67z"/> + <path fill="#184a00" d="M290.78 281.97v2.008h.703l-.703-2.008z"/> + <path fill="#296300" d="M292.19 281.97l.703.67-.703-.67z"/> + <path fill="#297b00" d="M292.89 281.97l-.703 1.34.703-1.34z"/> + <path fill="#296300" d="M295.71 281.97v3.347h1.407l-1.407-3.347z"/> + <path fill="#297b00" d="M296.41 281.97l.703.67-.703-.67z"/> + <path fill="#103900" d="M302.04 281.97l-1.407 2.008 1.407-2.008z"/> + <path fill="#297b00" d="M302.74 281.97l.704.67-.704-.67z"/> + <path fill="#296300" d="M307.9 282.41l.235.446-.235-.446z"/> + <path fill="#103900" d="M308.37 281.97l.704.67-.704-.67z"/> + <path fill="#185200" d="M309.07 281.97l.703.67-.703-.67z"/> + <path fill="#297b00" d="M318.92 281.97l.703.67-.703-.67z"/> + <path fill="#184a00" d="M319.63 281.97l.704.67-.704-.67z"/> + <path fill="#313931" d="M320.33 281.97l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M198.62 282.64l.703.67-.703-.67z"/> + <path fill="#63636b" d="M199.33 282.64l.704.67-.704-.67z"/> + <path fill="#efefef" d="M200.03 282.64l.703.67-.703-.67z"/> + <path fill="#cecece" d="M201.44 282.64l.703.67-.703-.67z"/> + <path fill="#295200" d="M202.14 282.64l.704.67-.704-.67z"/> + <path fill="#397b00" d="M204.49 283.08l.235.446-.235-.446z"/> + <path fill="#7b1008" d="M204.96 282.64l.704.67-.704-.67z"/> + <path fill="#de2110" d="M205.89 283.08l.235.446-.235-.446z"/> + <path fill="#631808" d="M206.6 283.08l.235.446-.235-.446z"/> + <path fill="#294200" d="M209.18 282.64l.703.67-.703-.67z"/> + <path fill="#397b00" d="M214.8 282.64l.703.67-.703-.67z"/> + <path fill="#946b63" d="M220.43 282.64l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M235.91 282.64l.704.67-.704-.67z"/> + <path fill="#941808" d="M237.32 282.64l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M238.02 282.64l.703.67-.703-.67z"/> + <path fill="#a51008" d="M238.72 282.64l.704.67-.704-.67z"/> + <path fill="#ce1810" d="M239.43 282.64v.67h5.628l-5.628-.67z"/> + <path fill="#941808" d="M245.06 282.64l.703.67-.703-.67z"/> + <path fill="#a51008" d="M245.76 282.64l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M246.46 282.64l.703.67-.703-.67z"/> + <path fill="#00184a" d="M247.17 282.64l.704.67-.704-.67m3.05.446l.233.446-.235-.446z"/> + <path fill="#bdbdbd" d="M253.5 282.64l.704.67-.704-.67z"/> + <path fill="#ce1810" d="M254.43 283.08l.235.446-.235-.446z"/> + <path fill="#000818" d="M260.53 282.64l.704.67-.704-.67z"/> + <path fill="#00184a" d="M261.24 282.64l.703.67-.703-.67z"/> + <path fill="#080829" d="M261.94 282.64l.703.67-.703-.67z"/> + <path fill="#ce1810" d="M263.35 282.64l.704.67-.704-.67z"/> + <path fill="#b51010" d="M268.97 282.64l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M269.68 282.64l.703.67-.703-.67z"/> + <path fill="#5a1021" d="M270.38 282.64l.703.67-.703-.67z"/> + <path fill="#00215a" d="M271.08 282.64l.703.67-.703-.67z"/> + <path fill="#292921" d="M287.26 282.64l.703.67-.703-.67z"/> + <path fill="#5a7b42" d="M288.67 282.64l.704.67-.704-.67z"/> + <path fill="#185200" d="M292.89 282.64l.704.67-.704-.67z"/> + <path fill="#297b00" d="M302.04 282.64l.704.67-.704-.67m3.518 0l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M306.26 282.64l.703.67-.703-.67z"/> + <path fill="#103900" d="M306.96 282.64l.703.67-.703-.67z"/> + <path fill="#297b00" d="M315.4 282.64l.703.67-.703-.67z"/> + <path fill="#296300" d="M316.11 282.64l.703.67-.703-.67z"/> + <path fill="#185200" d="M316.81 282.64l.704.67-.704-.67z"/> + <path fill="#395231" d="M317.52 282.64l.703.67-.703-.67z"/> + <path fill="#63636b" d="M318.22 282.64l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M318.92 282.64l.703.67-.703-.67z"/> + <path fill="#dedede" d="M319.63 282.64l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M198.62 283.31l.703.67-.703-.67z"/> + <path fill="#397b00" d="M199.33 283.31l.704.67-.704-.67z"/> + <path fill="#294200" d="M200.03 283.31l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M200.73 283.31l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M201.44 283.31l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M202.14 283.31l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M204.96 283.31l.704.67-.704-.67z"/> + <path fill="#397b00" d="M208.94 283.53l.47.224-.47-.224z"/> + <path fill="#396b10" d="M214.1 283.31l.704.67-.704-.67z"/> + <path fill="#b51010" d="M239.43 283.31l.703.67-.703-.67zM244.35 283.31l.704.67-.704-.67z"/> + <path fill="#391810" d="M247.17 283.31l.704.67-.704-.67z"/> + <path fill="#dedede" d="M253.5 283.31l.704.67-.704-.67z"/> + <path fill="#291029" d="M260.53 283.31l.704.67-.704-.67z"/> + <path fill="#002984" d="M264.05 283.31v.67h4.924l-4.924-.67z"/> + <path fill="#082108" d="M287.26 283.31l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M287.97 283.31l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M288.91 283.75l.235.446-.235-.446z"/> + <path fill="#184a00" d="M293.13 283.75l.235.446-.235-.446z"/> + <path fill="#297b00" d="M301.33 283.31l.703.67-.703-.67z"/> + <path fill="#185200" d="M304.85 283.31l.703.67-.703-.67z"/> + <path fill="#103900" d="M305.56 283.31l.704.67-.704-.67z"/> + <path fill="#297b00" d="M311.89 283.31l.703.67-.703-.67z"/> + <path fill="#296300" d="M312.59 283.31l.703.67-.703-.67z"/> + <path fill="#184a00" d="M313.29 283.31l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M314 283.31l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M314.7 283.31l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M315.4 283.31l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M316.11 283.31l.703.67-.703-.67z"/> + <path fill="#cecece" d="M198.62 283.98l.703.67-.703-.67z"/> + <path fill="#295200" d="M199.33 283.98l.704.67-.704-.67z"/> + <path fill="#292100" d="M200.03 283.98l.703.67-.703-.67z"/> + <path fill="#397b00" d="M200.73 283.98l1.407 1.34v-1.34h-1.407z"/> + <path fill="#292100" d="M202.14 283.98l.704.67-.704-.67z"/> + <path fill="#397b00" d="M202.85 283.98l.703.67-.703-.67z"/> + <path fill="#392100" d="M204.96 283.98l.704.67-.704-.67z"/> + <path fill="#b51010" d="M205.66 283.98l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M206.36 283.98l.703.67-.703-.67z"/> + <path fill="#294200" d="M208.47 283.98l.703.67-.703-.67z"/> + <path fill="#214210" d="M212.69 283.98l.703.67-.703-.67z"/> + <path fill="#63636b" d="M213.4 283.98l.704.67-.704-.67z"/> + <path fill="#dedede" d="M214.1 283.98l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M247.17 283.98l.704.67-.704-.67z"/> + <path fill="#00215a" d="M247.87 283.98l.703.67-.703-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#dedede" d="M250.68 283.98l.703.67-.703-.67z"/> + <path fill="#a51008" d="M254.2 283.98l.703.67-.703-.67z"/> + <path fill="#390821" d="M260.53 283.98l.704.67-.704-.67z"/> + <path fill="#184a00" d="M287.26 283.98l1.407 1.34-1.407-1.34z"/> + <path fill="#5a6b52" d="M287.97 283.98l.703.67-.703-.67z"/> + <path fill="#185200" d="M290.78 283.98l.703.67-.703-.67z"/> + <path fill="#297b00" d="M291.49 283.98l-.703 1.34.703-1.34z"/> + <path fill="#185200" d="M299.22 285.98l2.11-2.008-2.11 2.008z"/> + <path fill="#297b00" d="M303.45 283.98l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M304.15 283.98l.703.67-.703-.67z"/> + <path fill="#296300" d="M304.85 283.98l.703.67-.703-.67m5.628 0l.703.67-.702-.67z"/> + <path fill="#315221" d="M311.18 283.98l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M311.89 283.98l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M312.59 283.98l.703.67-.703-.67z"/> + <path fill="#dedede" d="M190.89 284.65l.704.67-.704-.67z"/> + <path fill="#efefef" d="M191.59 284.65l.703.67-.703-.67z"/> + <path fill="#315221" d="M199.33 284.65l.704.67-.704-.67z"/> + <path fill="#103900" d="M200.73 284.65l.703.67-.703-.67z"/> + <path fill="#295200" d="M202.85 284.65l.703.67-.703-.67z"/> + <path fill="#294200" d="M203.55 284.65l.703 2.008h.704l-1.407-2.008z"/> + <path fill="#397b00" d="M205.66 284.65l.703.67-.703-.67z"/> + <path fill="#103900" d="M206.36 284.65l.703.67-.703-.67z"/> + <path fill="#397b00" d="M208.24 284.87l.47.224-.47-.224m2.345-.223l.704.67-.705-.67z"/> + <path fill="#315221" d="M211.29 284.65l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M211.99 284.65l.703.67-.703-.67z"/> + <path fill="#dedede" d="M212.69 284.65l.703.67-.703-.67z"/> + <path fill="#391810" d="M247.87 284.65l.703.67-.703-.67z"/> + <path fill="#00216b" d="M249.98 284.65l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M250.68 284.65l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M254.2 284.65l.703.67-.703-.67z"/> + <path fill="#b51010" d="M257.72 284.65l.703.67-.703-.67z"/> + <path fill="#6b0808" d="M260.53 284.65l.704.67-.704-.67z"/> + <path fill="#395231" d="M288.67 284.65l.704.67-.704-.67z"/> + <path fill="#296300" d="M291.49 284.65l.704.67-.704-.67z"/> + <path fill="#185200" d="M292.89 284.65l.704.67-.704-.67z"/> + <path fill="#297b00" d="M293.6 284.65l-.704 1.34.704-1.34z"/> + <path fill="#296300" d="M302.74 284.65l.704.67-.704-.67z"/> + <path fill="#103900" d="M303.45 284.65l.703.67-.703-.67z"/> + <path fill="#185200" d="M309.07 284.65l.703.67-.703-.67z"/> + <path fill="#425242" d="M309.78 284.65l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M310.48 284.65l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M190.89 285.32l.704.67-.704-.67z"/> + <path fill="#293129" d="M191.59 285.32l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M192.29 285.32l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M193 285.32l.703.67-.703-.67z"/> + <path fill="#efefef" d="M193.7 285.32l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M199.33 285.32l.704.67-.704-.67z"/> + <path fill="#295200" d="M201.44 285.32l.703.67-.703-.67z"/> + <path fill="#294200" d="M202.14 285.32l.704.67-.704-.67z"/> + <path fill="#397b00" d="M203.55 285.32l.703.67-.703-.67z"/> + <path fill="#294200" d="M207.77 285.32l.704.67-.704-.67z"/> + <path fill="#295200" d="M209.88 285.32l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M210.58 285.32l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M211.99 285.32l.703.67-.703-.67z"/> + <path fill="#314231" d="M212.69 285.32l.703.67-.703-.67z"/> + <path fill="#dedede" d="M218.32 285.32l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M219.03 285.32l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M223.25 285.32l.703.67-.703-.67z"/> + <path fill="#10214a" d="M248.57 285.32l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M250.68 285.32l.703.67-.703-.67z"/> + <path fill="#943131" d="M254.43 285.76l.235.446-.235-.446z"/> + <path fill="#a51008" d="M257.72 285.32l.703.67-.703-.67z"/> + <path fill="#297b00" d="M287.97 285.32l.703.67-.703-.67z"/> + <path fill="#082108" d="M288.67 285.32l.704.67-.704-.67z"/> + <path fill="#184a00" d="M291.72 285.76l.235.446-.235-.446z"/> + <path fill="#296300" d="M293.6 285.32l.703.67-.703-.67z"/> + <path fill="#297b00" d="M296.18 285.54l.47.224-.47-.224m2.345-.223l.703.67-.703-.67z"/> + <path fill="#184a00" d="M302.04 285.32l.704.67-.704-.67z"/> + <path fill="#185200" d="M302.74 285.32l.704.67-.704-.67z"/> + <path fill="#297b00" d="M307.67 285.32l.703.67-.703-.67z"/> + <path fill="#294221" d="M308.37 285.32l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M309.07 285.32l.703.67-.703-.67z"/> + <path fill="#cecece" d="M190.89 285.98l.704.67-.704-.67z"/> + <path fill="#295200" d="M191.59 285.98l.703.67-.703-.67zM193.7 285.98l.704.67-.704-.67z"/> + <path fill="#294200" d="M194.87 286.21l.47.224-.47-.224z"/> + <path fill="#526b42" d="M195.81 285.98l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M196.51 285.98l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M197.22 285.98l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M197.92 285.98l.703.67-.703-.67z"/> + <path fill="#dedede" d="M198.62 285.98l.703.67-.703-.67z"/> + <path fill="#efefef" d="M199.33 285.98l.704.67-.704-.67z"/> + <path fill="#315221" d="M200.03 285.98l-.704 1.34.704-1.34z"/> + <path fill="#397b00" d="M202.14 285.98l.704.67-.704-.67z"/> + <path fill="#103900" d="M202.85 285.98l.703.67-.703-.67z"/> + <path fill="#295200" d="M207.77 285.98l.704.67-.704-.67z"/> + <path fill="#397b00" d="M209.18 285.98l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M209.88 285.98l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M211.99 285.98l.703.67-.703-.67z"/> + <path fill="#397b00" d="M212.69 285.98v2.678h.703l-.703-2.678z"/> + <path fill="#63636b" d="M213.4 285.98l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M218.32 285.98l.703.67-.703-.67z"/> + <path fill="#213918" d="M219.03 285.98l1.407 1.34-1.407-1.34z"/> + <path fill="#cecece" d="M219.73 285.98l.703.67-.703-.67z"/> + <path fill="#941808" d="M222.54 285.98l-1.407 2.008 1.407-2.008z"/> + <path fill="#181000" d="M223.25 285.98l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M248.57 285.98l.703.67-.703-.67z"/> + <path fill="#00216b" d="M249.28 285.98l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M250.68 285.98l.703.67-.703-.67z"/> + <path fill="#b51010" d="M257.72 285.98l.703.67-.703-.67z"/> + <path fill="#319400" d="M287.97 285.98v2.008h.703l-.703-2.008z"/> + <path fill="#103900" d="M288.67 285.98l.704.67-.704-.67z"/> + <path fill="#184a00" d="M293.83 286.43l.235.446-.235-.446z"/> + <path fill="#297b00" d="M299.22 287.99l3.518-2.008-3.518 2.008z"/> + <path fill="#103900" d="M301.33 285.98l.703.67-.703-.67z"/> + <path fill="#296300" d="M306.96 285.98l.703.67-.703-.67z"/> + <path fill="#52525a" d="M307.67 285.98l.703.67-.703-.67z"/> + <path fill="#efefef" d="M308.37 285.98l.704.67-.704-.67z"/> + <path fill="#315221" d="M191.59 286.65l.703.67-.703-.67z"/> + <path fill="#397b00" d="M197.92 286.65l.703.67-.703-.67z"/> + <path fill="#295200" d="M198.62 286.65l.703.67-.703-.67z"/> + <path fill="#52525a" d="M200.03 286.65l.703.67-.703-.67z"/> + <path fill="#295200" d="M200.73 286.65l2.11 2.008-2.11-2.008z"/> + <path fill="#294200" d="M203.55 286.65l.703.67-.703-.67z"/> + <path fill="#103900" d="M204.96 286.65l.704.67-.704-.67z"/> + <path fill="#52525a" d="M209.18 286.65l.703.67-.703-.67z"/> + <path fill="#dedede" d="M211.29 286.65l.704.67-.704-.67z"/> + <path fill="#294200" d="M211.99 286.65l.703.67-.703-.67z"/> + <path fill="#428c00" d="M212.69 286.65l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M214.1 286.65l.704.67-.704-.67z"/> + <path fill="#63636b" d="M218.32 286.65l.703.67-.703-.67z"/> + <path fill="#428c00" d="M219.03 286.65c-2.28 4.675-4.734 9.722 1.407 12.718 0-3.93 1.482-9.69-1.407-12.718z"/> + <path fill="#bd2110" d="M221.14 286.65l.703.67-.703-.67z"/> + <path fill="#295200" d="M222.54 286.65l.703.67-.703-.67z"/> + <path fill="#397b00" d="M223.25 286.65l-.703 1.34h1.407l-.704-1.34z"/> + <path fill="#b51010" d="M223.95 286.65l.704.67-.704-.67z"/> + <path fill="#31394a" d="M249.28 286.65l.703.67-.703-.67z"/> + <path fill="#525a6b" d="M250.68 286.65l.703.67-.703-.67z"/> + <path fill="#8c7373" d="M254.43 287.1l.235.446-.235-.446z"/> + <path fill="#a51008" d="M257.72 286.65l.703.67-.703-.67z"/> + <path fill="#002984" d="M286.09 287.1l.235.446-.235-.446z"/> + <path fill="#00216b" d="M286.56 286.65l.704.67-.704-.67z"/> + <path fill="#001000" d="M287.26 286.65l.703.67-.703-.67z"/> + <path fill="#184a00" d="M288.67 286.65l.704.67-.704-.67z"/> + <path fill="#185200" d="M291.49 286.65l.704.67-.704-.67z"/> + <path fill="#297b00" d="M296.41 286.65l-.704 1.34.704-1.34z"/> + <path fill="#103900" d="M300.63 286.65l.703.67-.703-.67z"/> + <path fill="#297b00" d="M305.56 286.65l.704.67-.704-.67z"/> + <path fill="#103900" d="M306.26 286.65l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M306.96 286.65l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M307.67 286.65l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M308.84 286.88l.47.224-.47-.224z"/> + <path fill="#4a6342" d="M310.25 286.88l.47.224-.47-.224z"/> + <path fill="#295210" d="M311.18 286.65l.704.67-.704-.67z"/> + <path fill="#184a00" d="M311.89 286.65l.703.67-.703-.67z"/> + <path fill="#296300" d="M312.59 286.65v.67h3.518l-3.518-.67z"/> + <path fill="#184a00" d="M316.11 286.65l.703.67-.703-.67z"/> + <path fill="#082108" d="M316.81 286.65l.704.67-.704-.67z"/> + <path fill="#313931" d="M317.52 286.65l.703.67-.703-.67z"/> + <path fill="#63636b" d="M318.22 286.65l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M318.92 286.65l.703.67-.703-.67m-127.33.67l.703.67-.703-.67z"/> + <path fill="#295200" d="M193.7 287.32l.704.67-.704-.67z"/> + <path fill="#294200" d="M194.87 287.55l.47.224-.47-.224z"/> + <path fill="#397b00" d="M196.04 287.77l.235.446-.235-.446z"/> + <path fill="#292100" d="M200.73 287.32l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.96 287.32l-.703 2.008h.703v-2.008m3.518 0l.703.67-.702-.67z"/> + <path fill="#8c8c8c" d="M209.18 287.32l.703.67-.703-.67z"/> + <path fill="#425242" d="M211.29 287.32l.704.67-.704-.67z"/> + <path fill="#428c00" d="M211.99 287.32c-1.65 4.31-1.22 6.867 1.407 10.71h.704v-10.71h-.703v8.033h-1.407v-8.033z"/> + <path fill="#315221" d="M214.1 287.32l.704.67-.704-.67z"/> + <path fill="#efefef" d="M217.62 287.32l.704.67-.704-.67z"/> + <path fill="#396b10" d="M218.32 287.32l.703.67-.703-.67z"/> + <path fill="#293129" d="M220.43 287.32l.704.67-.704-.67z"/> + <path fill="#293100" d="M221.84 287.32l.704.67-.704-.67z"/> + <path fill="#631808" d="M223.95 287.32l.704.67-.704-.67z"/> + <path fill="#cecece" d="M249.28 287.32l.703.67-.703-.67z"/> + <path fill="#001039" d="M249.98 287.32l.704.67-.704-.67z"/> + <path fill="#42425a" d="M250.68 287.32l.703.67-.703-.67z"/> + <path fill="#520808" d="M257.72 287.32l.703.67-.703-.67z"/> + <path fill="#6b5252" d="M258.42 287.32l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M259.12 287.32l.703.67-.703-.67z"/> + <path fill="#290018" d="M259.83 287.32l.704.67-.704-.67z"/> + <path fill="#420000" d="M260.53 287.32l.704.67-.704-.67z"/> + <path fill="#001010" d="M286.56 287.32l.704.67-.704-.67z"/> + <path fill="#292921" d="M287.26 287.32l.703.67-.703-.67z"/> + <path fill="#185200" d="M288.67 287.32l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M289.38 287.32l.704.67-.704-.67z"/> + <path fill="#184a00" d="M291.49 287.32v2.008h.704l-.704-2.008z"/> + <path fill="#185200" d="M293.6 287.32l.703.67-.703-.67z"/> + <path fill="#103900" d="M299.93 287.32l.704.67-.704-.67z"/> + <path fill="#297b00" d="M303.45 287.32l.703.67-.703-.67z"/> + <path fill="#184a00" d="M304.15 287.32v.67h2.11l-2.11-.67z"/> + <path fill="#296300" d="M306.73 287.55l.47.224-.47-.224z"/> + <path fill="#297b00" d="M307.67 287.32l.703.67-.703-.67m4.925 0l.703.67-.703-.67z"/> + <path fill="#185200" d="M313.29 287.32l.703.67-.703-.67z"/> + <path fill="#315221" d="M314 287.32l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M314.7 287.32l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M315.4 287.32l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M316.11 287.32l.703.67-.703-.67z"/> + <path fill="#425242" d="M192.29 287.99l.703.67-.703-.67z"/> + <path fill="#103900" d="M201.44 287.99l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.96 287.99l.704.67-.704-.67m3.518 0l1.407 1.34-1.407-1.34z"/> + <path fill="#5a5231" d="M209.18 287.99l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M210.58 287.99l.704.67-.704-.67z"/> + <path fill="#397b00" d="M211.29 287.99l.704.67-.704-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M214.8 287.99l.703.67-.703-.67z"/> + <path fill="#52525a" d="M217.62 287.99l.704.67-.704-.67z"/> + <path fill="#294200" d="M219.26 288.44l.235.446-.235-.446z"/> + <path fill="#295200" d="M220.43 287.99l.704.67-.704-.67z"/> + <path fill="#100808" d="M221.14 287.99l.703.67-.703-.67z"/> + <path fill="#428c00" d="M221.84 287.99l-.703 10.71 2.11-2.008h.704l-.703 2.677c5.504-1.57 6.518-5.128 4.925-10.042l-3.518 7.364h-.703v-8.702h-.703l-1.407 7.363v-7.363z"/> + <path fill="#295200" d="M222.54 287.99l.703.67-.703-.67z"/> + <path fill="#293100" d="M223.95 287.99l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M227.47 287.99l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M228.17 287.99l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M249.98 287.99l.704.67-.704-.67z"/> + <path fill="#080829" d="M250.68 287.99l.703.67-.703-.67z"/> + <path fill="#c6b5b5" d="M254.2 287.99l.703.67-.703-.67z"/> + <path fill="#b51010" d="M257.01 287.99l.704.67-.704-.67z"/> + <path fill="#cecece" d="M257.72 287.99l.703.67-.703-.67z"/> + <path fill="#103900" d="M286.56 287.99l.704.67-.704-.67z"/> + <path fill="#63636b" d="M287.26 287.99l.703.67-.703-.67z"/> + <path fill="#297b00" d="M288.44 288.22l.47.224-.47-.224z"/> + <path fill="#184a00" d="M293.6 287.99l.703.67-.703-.67z"/> + <path fill="#185200" d="M295.71 287.99l.704.67-.704-.67z"/> + <path fill="#184a00" d="M299.22 287.99l.704.67-.704-.67z"/> + <path fill="#185200" d="M302.04 287.99l.704.67-.704-.67z"/> + <path fill="#103900" d="M302.74 287.99l.704.67-.704-.67z"/> + <path fill="#185200" d="M303.45 287.99l.703.67-.703-.67z"/> + <path fill="#297b00" d="M309.78 287.99l.703.67-.703-.67z"/> + <path fill="#185200" d="M310.48 287.99l.703.67-.703-.67z"/> + <path fill="#315221" d="M311.18 287.99l.704.67-.704-.67z"/> + <path fill="#6b735a" d="M311.89 287.99l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M312.59 287.99l.703.67-.703-.67z"/> + <path fill="#dedede" d="M313.29 287.99l.703.67-.703-.67z"/> + <path fill="#cecece" d="M192.29 288.66l1.407 1.34-1.407-1.34z"/> + <path fill="#214210" d="M193 288.66l.703.67-.703-.67z"/> + <path fill="#397b00" d="M202.14 288.66l1.407 1.34v-1.34h-1.407z"/> + <path fill="#103900" d="M203.55 288.66l.703.67-.703-.67m2.814 0l-.703 1.34.704-1.34z"/> + <path fill="#397b00" d="M207.07 288.66l.703.67-.703-.67z"/> + <path fill="#295200" d="M208.47 288.66l.703.67-.703-.67z"/> + <path fill="#213918" d="M210.58 288.66l.704.67-.704-.67z"/> + <path fill="#294200" d="M212.69 288.66v3.347h.703l-.703-3.347z"/> + <path fill="#526b42" d="M214.8 288.66l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M216.92 288.66l.703.67-.703-.67z"/> + <path fill="#397b00" d="M217.62 288.66l.704.67-.704-.67z"/> + <path fill="#103900" d="M221.14 288.66l.703.67-.703-.67z"/> + <path fill="#294200" d="M222.54 288.66v2.678h.703l-.703-2.678z"/> + <path fill="#397b00" d="M223.95 288.66l.704.67-.704-.67z"/> + <path fill="#941808" d="M224.65 288.66l.704.67-.704-.67m2.11 0l-.703 1.34.704-1.34z"/> + <path fill="#293100" d="M227.47 288.66l.704.67-.704-.67z"/> + <path fill="#103900" d="M228.17 288.66l.703.67-.703-.67z"/> + <path fill="#efefef" d="M249.98 288.66l.704.67-.704-.67z"/> + <path fill="#292921" d="M250.68 288.66l.703.67-.703-.67z"/> + <path fill="#efefef" d="M251.39 288.66l.703.67-.703-.67z"/> + <path fill="#842118" d="M257.01 288.66l.704.67-.704-.67z"/> + <path fill="#293129" d="M287.26 288.66l.703.67-.703-.67z"/> + <path fill="#296300" d="M287.97 288.66l.703.67-.703-.67z"/> + <path fill="#103900" d="M289.38 288.66l.704.67-.704-.67z"/> + <path fill="#185200" d="M293.6 288.66l.703.67-.703-.67z"/> + <path fill="#103900" d="M295.71 288.66l.704.67-.704-.67z"/> + <path fill="#296300" d="M300.63 288.66l.703.67-.703-.67z"/> + <path fill="#103900" d="M301.33 288.66l.703.67-.703-.67z"/> + <path fill="#296300" d="M302.04 288.66l.704.67-.704-.67z"/> + <path fill="#297b00" d="M307.67 288.66l.703.67-.703-.67z"/> + <path fill="#103900" d="M308.37 288.66l.704.67-.704-.67z"/> + <path fill="#001000" d="M309.07 288.66l.703.67-.703-.67z"/> + <path fill="#101810" d="M309.78 288.66l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M310.48 288.66l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M311.65 288.89l.47.224-.47-.224z"/> + <path fill="#214210" d="M193.7 289.33l1.407 1.34-1.407-1.34z"/> + <path fill="#397b00" d="M199.56 289.78l.235.446-.235-.446m9.614-.446l.704.67-.704-.67z"/> + <path fill="#63636b" d="M209.88 289.33l.703.67-.703-.67z"/> + <path fill="#397b00" d="M210.58 289.33l.704.67-.704-.67z"/> + <path fill="#294200" d="M215.04 289.78l.235.446-.235-.446z"/> + <path fill="#dedede" d="M216.21 289.33l.704.67-.704-.67z"/> + <path fill="#214210" d="M216.92 289.33l.703.67-.703-.67z"/> + <path fill="#295200" d="M219.03 289.33l.704.67-.704-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#422100" d="M224.65 289.33l.704.67-.704-.67z"/> + <path fill="#295200" d="M226.76 289.33l.704.67-.704-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M228.87 289.33l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M250.68 289.33l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M251.62 289.78l.235.446-.235-.446z"/> + <path fill="#736b6b" d="M257.01 289.33l.704.67-.704-.67z"/> + <path fill="#185200" d="M287.26 289.33l.703.67-.703-.67z"/> + <path fill="#184a00" d="M287.97 289.33l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#296300" d="M291.49 289.33l.704 2.678h.703l-1.407-2.678z"/> + <path fill="#297b00" d="M292.19 289.33l.703.67-.703-.67z"/> + <path fill="#184a00" d="M293.6 289.33l.703.67-.703-.67z"/> + <path fill="#297b00" d="M295 289.33l.703.67-.703-.67zM299.22 289.33l1.407 1.34-1.407-1.34z"/> + <path fill="#184a00" d="M299.93 289.33l.704.67-.704-.67z"/> + <path fill="#185200" d="M300.63 289.33l.703.67-.703-.67z"/> + <path fill="#297b00" d="M305.56 289.33l.704.67-.704-.67z"/> + <path fill="#184a00" d="M306.26 289.33v.67l2.814.67V290l-2.814-.67z"/> + <path fill="#103900" d="M306.96 289.33l.703.67-.703-.67z"/> + <path fill="#185200" d="M307.67 289.33l.703.67-.703-.67z"/> + <path fill="#319400" d="M308.37 289.33v.67h2.11l-2.11-.67z"/> + <path fill="#297b00" d="M310.71 289.78l.235.446-.235-.446z"/> + <path fill="#296300" d="M311.18 289.33v.67l2.814.67V290l-2.814-.67z"/> + <path fill="#185200" d="M312.59 289.33l.703.67-.703-.67z"/> + <path fill="#103900" d="M313.29 289.33l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M314 289.33l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M314.7 289.33l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M315.4 289.33l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M193.7 290l.704.67-.704-.67z"/> + <path fill="#294200" d="M197.69 290.22l.47.224-.47-.224z"/> + <path fill="#295200" d="M198.62 290l.703.67-.703-.67z"/> + <path fill="#292100" d="M204.96 290l.704.67-.704-.67z"/> + <path fill="#001000" d="M209.88 290l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M216.21 290l.704.67-.704-.67z"/> + <path fill="#294200" d="M219.26 290.45l.235.446-.235-.446z"/> + <path fill="#397b00" d="M220.9 290.22l.47.224-.47-.224z"/> + <path fill="#294200" d="M224.65 290l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M225.36 290l.703.67-.703-.67z"/> + <path fill="#294200" d="M226.06 290l.703.67-.703-.67z"/> + <path fill="#397b00" d="M228.17 290l.703.67-.703-.67z"/> + <path fill="#941808" d="M228.87 290l.703.67-.703-.67z"/> + <path fill="#efefef" d="M252.09 290l-.703 1.34.703-1.34z"/> + <path fill="#ce1810" d="M256.31 290l.703.67-.703-.67z"/> + <path fill="#cecece" d="M257.01 290l.704.67-.704-.67z"/> + <path fill="#297b00" d="M287.26 290l.703.67-.703-.67z"/> + <path fill="#082108" d="M287.97 290l.703.67-.703-.67z"/> + <path fill="#185200" d="M289.38 290l.704.67-.704-.67z"/> + <path fill="#297b00" d="M290.08 290l.703.67-.703-.67z"/> + <path fill="#185200" d="M293.6 290l.703.67-.703-.67z"/> + <path fill="#103900" d="M299.22 290l.704.67-.704-.67z"/> + <path fill="#297b00" d="M303.45 290l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M304.15 290l.703.67-.703-.67z"/> + <path fill="#103900" d="M304.85 290l.703.67-.703-.67z"/> + <path fill="#185200" d="M306.02 290.22l.47.224-.47-.224m3.048-.223l.704.67-.704-.67z"/> + <path fill="#296300" d="M310.01 290.45l.235.446-.235-.446z"/> + <path fill="#319400" d="M311.18 290l.704.67-.704-.67z"/> + <path fill="#297b00" d="M311.89 290l.703.67-.703-.67z"/> + <path fill="#185200" d="M314 290l.704.67L314 290z"/> + <path fill="#184a00" d="M314.7 290l.703.67-.703-.67z"/> + <path fill="#082108" d="M315.4 290l.703.67-.703-.67z"/> + <path d="M316.11 290l.703.67-.703-.67z"/> + <path fill="#313931" d="M316.81 290l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M317.52 290l.703.67-.703-.67z"/> + <path fill="#dedede" d="M194.64 291.12l.235.446-.235-.446z"/> + <path fill="#52525a" d="M195.11 290.67l.703.67-.703-.67z"/> + <path fill="#294200" d="M195.81 290.67l.703.67-.703-.67z"/> + <path fill="#295200" d="M196.51 290.67l.704.67-.704-.67z"/> + <path fill="#294200" d="M204.25 290.67l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.96 290.67l.704.67-.704-.67m3.283.223l.47.223-.47-.223z"/> + <path fill="#294200" d="M210.11 291.12l.235.446-.235-.446z"/> + <path fill="#397b00" d="M214.8 290.67l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M215.51 290.67l.703.67-.703-.67z"/> + <path fill="#295200" d="M216.21 290.67l.704.67-.704-.67z"/> + <path fill="#294200" d="M220.43 290.67v2.008h.704l-.704-2.008z"/> + <path fill="#397b00" d="M224.65 290.67v1.34h1.407l-1.407-1.34z"/> + <path fill="#211800" d="M225.36 290.67l.703.67-.703-.67z"/> + <path fill="#294200" d="M227.47 290.67l.704.67-.704-.67z"/> + <path fill="#5a2908" d="M228.87 290.67l.703.67-.703-.67z"/> + <path fill="#63636b" d="M252.09 290.67l.703.67-.703-.67z"/> + <path fill="#9c2118" d="M256.31 290.67l.703.67-.703-.67z"/> + <path fill="#00216b" d="M285.86 290.67l.704.67-.704-.67z"/> + <path fill="#103910" d="M286.56 290.67l.704.67-.704-.67z"/> + <path fill="#103900" d="M288.2 291.12l.235.446-.235-.446z"/> + <path fill="#296300" d="M289.84 290.89l.47.224-.47-.224z"/> + <path fill="#103900" d="M297.82 290.67l.703.67-.703-.67z"/> + <path fill="#296300" d="M302.27 291.12l.235.446-.235-.446z"/> + <path fill="#103900" d="M303.21 290.89l.47.224-.47-.224z"/> + <path fill="#319400" d="M295 298.7c6.744-3.558 11.844-6.024 19.698-6.024-6.507-3.734-17.534-1.503-19.698 6.024z"/> + <path fill="#297b00" d="M309.07 290.67l.703.67-.703-.67z"/> + <path fill="#185200" d="M310.48 290.67l.703.67-.703-.67z"/> + <path fill="#103900" d="M311.18 290.67l.704.67-.704-.67z"/> + <path fill="#293129" d="M311.89 290.67l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M312.59 290.67l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M313.29 290.67l.703.67-.703-.67z"/> + <path fill="#314231" d="M195.11 291.34l.703.67-.703-.67z"/> + <path fill="#295200" d="M201.44 291.34l.703.67-.703-.67z"/> + <path fill="#294200" d="M202.14 291.34l.704.67-.704-.67z"/> + <path fill="#397b00" d="M203.55 291.34l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.25 291.34l.703.67-.703-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#294200" d="M214.8 291.34l.703.67-.703-.67z"/> + <path fill="#63636b" d="M215.51 291.34l.703.67-.703-.67z"/> + <path fill="#397b00" d="M218.79 291.56l.47.224-.47-.224m3.752-.223v2.008h.703l-.703-2.008z"/> + <path fill="#295200" d="M226.76 291.34l.704.67-.704-.67z"/> + <path fill="#293100" d="M228.87 291.34l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M252.09 291.34l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M252.79 291.34l.704.67-.704-.67z"/> + <path fill="#8c6363" d="M256.31 291.34l.703.67-.703-.67z"/> + <path fill="#00184a" d="M285.15 291.34l.703.67-.703-.67z"/> + <path fill="#21315a" d="M285.86 291.34l.704.67-.704-.67z"/> + <path fill="#5a7b42" d="M286.56 291.34l.704.67-.704-.67z"/> + <path fill="#184a00" d="M290.08 291.34l.703.67-.703-.67z"/> + <path fill="#297b00" d="M291.49 291.34l.704.67-.704-.67z"/> + <path fill="#185200" d="M300.63 291.34l.703.67-.703-.67z"/> + <path fill="#103900" d="M301.33 291.34l.703.67-.703-.67z"/> + <path fill="#297b00" d="M312.59 291.34l.703.67-.703-.67z"/> + <path fill="#103900" d="M313.29 291.34l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M314 291.34l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M314.7 291.34l.703.67-.703-.67z"/> + <path fill="#dedede" d="M315.4 291.34l.703.67-.703-.67z"/> + <path fill="#efefef" d="M193.7 292.01l.704.67-.704-.67z"/> + <path fill="#314231" d="M194.4 292.01l.703.67-.703-.67z"/> + <path fill="#295200" d="M200.03 292.01l.703.67-.703-.67z"/> + <path fill="#103900" d="M200.73 292.01l.703.67-.703-.67z"/> + <path fill="#397b00" d="M201.44 292.01l.703.67-.703-.67z"/> + <path fill="#103900" d="M203.55 292.01l.703.67-.703-.67z"/> + <path fill="#294200" d="M208 292.46l.235.446-.235-.446z"/> + <path fill="#295200" d="M209.88 292.01l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#526b42" d="M215.27 292.23l.47.224-.47-.224z"/> + <path fill="#295200" d="M218.32 292.01l.703.67-.703-.67z"/> + <path fill="#294200" d="M224.89 292.46l.235.446-.235-.446m2.11 0l.235.446-.235-.446z"/> + <path fill="#397b00" d="M228.87 292.01l.703.67-.703-.67z"/> + <path fill="#b51010" d="M242.24 292.01l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M242.94 292.01l.703.67-.703-.67z"/> + <path fill="#63636b" d="M252.79 292.01l.704.67-.704-.67z"/> + <path fill="#dedede" d="M256.31 292.01l.703.67-.703-.67z"/> + <path fill="#00216b" d="M283.75 292.01l.703.67-.703-.67z"/> + <path d="M285.15 292.01l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M285.86 292.01l.704.67-.704-.67z"/> + <path fill="#396321" d="M286.56 292.01l.704.67-.704-.67z"/> + <path fill="#185200" d="M287.97 292.01l.703.67-.703-.67z"/> + <path fill="#297b00" d="M288.67 292.01l.704.67-.704-.67z"/> + <path fill="#185200" d="M290.08 292.01l.703.67-.703-.67m2.11 0l.704.67-.704-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#296300" d="M299.22 292.01l.704.67-.704-.67z"/> + <path fill="#103900" d="M299.93 292.01l.704.67-.704-.67z"/> + <path fill="#296300" d="M300.63 292.01l.703.67-.703-.67z"/> + <path fill="#297b00" d="M314.7 292.01l.703.67-.703-.67z"/> + <path fill="#185200" d="M315.4 292.01l.703.67-.703-.67z"/> + <path fill="#314231" d="M316.11 292.01l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M316.81 292.01l.704.67-.704-.67z"/> + <path fill="#424242" d="M193.7 292.68l.704.67-.704-.67z"/> + <path fill="#397b00" d="M197.92 292.68l.703.67-.703-.67z"/> + <path fill="#294200" d="M199.09 292.9l.47.224-.47-.224z"/> + <path fill="#397b00" d="M200.03 292.68l.703.67-.703-.67z"/> + <path fill="#103900" d="M202.85 292.68l.703.67-.703-.67z"/> + <path fill="#294200" d="M210.11 293.12l.235.446-.235-.446z"/> + <path fill="#397b00" d="M211.99 292.68v2.678h1.407v-2.678h-1.407z"/> + <path fill="#6b735a" d="M214.8 292.68l.703.67-.703-.67z"/> + <path fill="#396b10" d="M215.51 292.68l.703.67-.703-.67z"/> + <path fill="#294200" d="M218.32 292.68v3.347h.703l-.703-3.347z"/> + <path fill="#295200" d="M220.67 293.12l.235.446-.235-.446z"/> + <path fill="#392100" d="M242.24 292.68l.703.67-.703-.67z"/> + <path fill="#292100" d="M242.94 292.68l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M252.79 292.68l.704.67-.704-.67z"/> + <path fill="#cecece" d="M253.5 292.68l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M254.2 292.68l-.704 1.34.704-1.34z"/> + <path fill="#bd0008" d="M254.9 292.68l.703.67-.703-.67z"/> + <path fill="#63636b" d="M255.61 292.68l.704.67-.704-.67z"/> + <path fill="#00216b" d="M271.79 292.68l-.703 1.34.703-1.34z"/> + <path fill="#002984" d="M272.73 293.12l.235.446-.235-.446m7.504-.446l.704.67-.704-.67z"/> + <path fill="#00184a" d="M280.93 292.68l2.814 2.008v-.67l-2.814-1.338z"/> + <path fill="#001010" d="M283.75 292.68l.703.67-.703-.67z"/> + <path fill="#002984" d="M284.45 292.68l.703.67-.703-.67z"/> + <path fill="#103900" d="M285.15 292.68l.703.67-.703-.67z"/> + <path fill="#dedede" d="M285.86 292.68l.704.67-.704-.67z"/> + <path fill="#184a00" d="M286.8 293.12l.235.446-.235-.446z"/> + <path fill="#296300" d="M288.44 292.9l.47.224-.47-.224z"/> + <path fill="#184a00" d="M290.08 292.68l.703.67-.703-.67z"/> + <path fill="#297b00" d="M291.49 292.68l.704.67-.704-.67z"/> + <path fill="#296300" d="M292.19 292.68l-.704 2.678.704-2.678z"/> + <path fill="#103900" d="M294.3 292.68l.704.67-.704-.67z"/> + <path fill="#319400" d="M295.24 293.12l.235.446-.235-.446z"/> + <path fill="#103900" d="M295.71 292.68l.704.67-.704-.67z"/> + <path fill="#297b00" d="M297.11 293.35v.67h2.11l-2.11-.67z"/> + <path fill="#103900" d="M298.52 292.68l.703.67-.703-.67z"/> + <path fill="#185200" d="M299.22 292.68l.704.67-.704-.67z"/> + <path fill="#297b00" d="M306.96 292.68l.703.67-.703-.67z"/> + <path fill="#296300" d="M307.67 292.68l.703.67-.703-.67z"/> + <path fill="#184a00" d="M308.37 292.68l-1.407.67v.67l1.407-1.34z"/> + <path fill="#315221" d="M309.07 292.68l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M309.78 292.68v.67h4.925l-4.925-.67z"/> + <path fill="#295210" d="M314.7 292.68l.703.67-.703-.67z"/> + <path fill="#184a00" d="M315.4 292.68l.703.67-.703-.67z"/> + <path fill="#296300" d="M316.11 292.68l.703.67-.703-.67z"/> + <path fill="#185200" d="M316.81 292.68l.704.67-.704-.67z"/> + <path fill="#294221" d="M317.52 292.68l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M318.22 292.68l.703.67-.703-.67m-125.22.67l.703.67-.703-.67z"/> + <path fill="#397b00" d="M193.7 293.35l.704.67-.704-.67z"/> + <path fill="#295200" d="M196.51 293.35l.704.67-.704-.67z"/> + <path fill="#294200" d="M197.22 293.35l.703.67-.703-.67z"/> + <path fill="#295200" d="M197.92 293.35l.703.67-.703-.67z"/> + <path fill="#292100" d="M202.14 293.35l.704.67-.704-.67m5.628 0l.704.67-.704-.67z"/> + <path fill="#397b00" d="M214.1 293.35l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M214.8 293.35l.703.67-.703-.67z"/> + <path fill="#294200" d="M215.51 293.35l.703.67-.703-.67m7.035 0l.703.67-.703-.67z"/> + <path fill="#397b00" d="M224.42 293.57l.47.224-.47-.224z"/> + <path fill="#295200" d="M226.76 293.35l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M235.91 293.35l.704.67-.704-.67z"/> + <path fill="#631808" d="M241.54 293.35l.704.67-.704-.67z"/> + <path fill="#397b00" d="M242.24 293.35l1.407 1.34-1.407-1.34z"/> + <path fill="#428c00" d="M242.94 293.35l.703.67-.703-.67z"/> + <path fill="#631808" d="M243.65 293.35l.703.67-.703-.67z"/> + <path fill="#8c7373" d="M254.2 293.35l.703.67-.703-.67z"/> + <path fill="#6b0808" d="M254.9 293.35l.703.67-.703-.67z"/> + <path fill="#dedede" d="M255.61 293.35l.704.67-.704-.67z"/> + <path fill="#000818" d="M267.57 293.35l.703.67-.703-.67z"/> + <path fill="#082108" d="M271.79 293.35l.704.67-.704-.67z"/> + <path fill="#002984" d="M277.42 293.35l1.407 1.34v-1.34h-1.407z"/> + <path fill="#001039" d="M280.23 293.35l.704.67-.704-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#103900" d="M283.75 293.35l.703.67-.703-.67z"/> + <path d="M284.45 293.35l.703.67-.703-.67z"/> + <path fill="#296300" d="M285.15 293.35l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M285.86 293.35l.704.67-.704-.67z"/> + <path fill="#185200" d="M290.31 293.79l.235.446-.235-.446z"/> + <path fill="#297b00" d="M293.6 293.35v.67l3.518 1.338v-.67l-3.518-1.338z"/> + <path fill="#185200" d="M294.3 293.35l.704.67-.704-.67z"/> + <path fill="#184a00" d="M295.71 293.35l.704.67-.704-.67z"/> + <path fill="#103900" d="M297.82 293.35l.703.67-.703-.67z"/> + <path fill="#296300" d="M304.85 293.35l.703.67-.703-.67z"/> + <path fill="#103900" d="M306.02 293.57l.47.224-.47-.224z"/> + <path fill="#214210" d="M308.37 293.35l.704.67-.704-.67z"/> + <path fill="#5a6b52" d="M309.07 293.35l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M309.78 293.35l.703.67-.703-.67z"/> + <path fill="#cecece" d="M310.48 293.35l.703.67-.703-.67m5.628 0l.703.67-.702-.67z"/> + <path fill="#ada5a5" d="M316.81 293.35l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M317.52 293.35l.703.67-.703-.67z"/> + <path fill="#292921" d="M318.69 293.57l.47.224-.47-.224z"/> + <path fill="#315221" d="M193 294.02l.703.67-.703-.67z"/> + <path fill="#295200" d="M195.11 294.02l.703.67-.703-.67z"/> + <path fill="#294200" d="M195.81 294.02l.703.67-.703-.67m5.628 0l.703.67-.702-.67z"/> + <path fill="#397b00" d="M202.14 294.02l.704.67-.704-.67z"/> + <path fill="#294200" d="M204.25 294.02l-.703 1.34.703-1.34z"/> + <path fill="#397b00" d="M204.96 294.02l.704.67-.704-.67z"/> + <path fill="#295200" d="M207.07 294.02l.703.67-.703-.67z"/> + <path fill="#63636b" d="M207.77 294.02l.704.67-.704-.67z"/> + <path fill="#397b00" d="M208.47 294.02l.703.67-.703-.67m1.876.223l.47.223-.47-.223z"/> + <path fill="#295200" d="M214.1 294.02l.704.67-.704-.67z"/> + <path fill="#efefef" d="M214.8 294.02l.703.67-.703-.67z"/> + <path fill="#426331" d="M215.51 294.02l.703.67-.703-.67z"/> + <path fill="#294200" d="M220.67 294.46l.235.446-.235-.446z"/> + <path fill="#295200" d="M222.54 294.02l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#397b00" d="M226.53 294.24l.47.224-.47-.224m2.345-.223l.703.67-.703-.67z"/> + <path fill="#b51010" d="M235.21 294.02l.703.67-.703-.67z"/> + <path fill="#211800" d="M235.91 294.02l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M236.61 294.02l1.407 1.34-1.407-1.34z"/> + <path fill="#b51010" d="M240.83 294.02l.703.67-.703-.67z"/> + <path fill="#294200" d="M241.54 294.02l.704.67-.704-.67z"/> + <path fill="#428c00" d="M242.24 294.02l-1.407 4.016-2.11-1.338 2.11 5.355h.703v-2.678h.704v4.686c3.403-2.147 2.963-5.962 2.11-9.37h-.703v6.693h-.703l-.704-7.363z"/> + <path fill="#294200" d="M243.65 294.02l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M244.35 294.02l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M253.5 294.02l.704.67-.704-.67z"/> + <path fill="#6b4242" d="M254.2 294.02l.703.67-.703-.67z"/> + <path fill="#63636b" d="M254.9 294.02l.703.67-.703-.67z"/> + <path fill="#103910" d="M267.57 294.02l.703.67-.703-.67z"/> + <path fill="#10214a" d="M268.27 294.02l.703.67-.703-.67z"/> + <path fill="#002984" d="M270.38 294.02l.703.67-.703-.67z"/> + <path fill="#103900" d="M271.08 294.02l.703.67-.703-.67z"/> + <path fill="#184a00" d="M271.79 294.02l.704.67-.704-.67z"/> + <path fill="#002984" d="M273.9 294.02l.703.67-.703-.67z"/> + <path fill="#001010" d="M277.42 294.02l.704.67-.704-.67z"/> + <path fill="#184a00" d="M280.23 294.02l.704.67-.704-.67z"/> + <path fill="#296300" d="M283.75 294.02l.703.67-.703-.67z"/> + <path fill="#424242" d="M284.45 294.02l.703.67-.703-.67z"/> + <path fill="#319400" d="M285.15 294.02l-4.22 12.05c4.018-2.114 6.002-8 4.22-12.05z"/> + <path fill="#293129" d="M285.86 294.02l.704.67-.704-.67z"/> + <path fill="#296300" d="M286.56 294.02l.704.67-.704-.67z"/> + <path fill="#184a00" d="M293.6 294.02l.703.67-.703-.67z"/> + <path fill="#185200" d="M296.18 294.24l.47.224-.47-.224z"/> + <path fill="#184a00" d="M297.11 294.02l.704.67-.704-.67z"/> + <path fill="#185200" d="M302.74 294.02l.704.67-.704-.67z"/> + <path fill="#184a00" d="M302.74 294.69v.67h3.518l-3.518-.67z"/> + <path fill="#297b00" d="M304.85 294.02l.703.67-.703-.67z"/> + <path fill="#319400" d="M305.56 294.02v.67h4.925l-4.925-.67z"/> + <path fill="#296300" d="M310.48 294.02l.703.67-.703-.67z"/> + <path fill="#315221" d="M311.18 294.02l-.703 1.34.703-1.34z"/> + <path fill="#7b7373" d="M311.89 294.02l.703.67-.703-.67z"/> + <path fill="#cecece" d="M312.59 294.02l.703.67-.703-.67z"/> + <path fill="#dedede" d="M318.92 294.02l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M192.29 294.69l.703.67-.703-.67z"/> + <path fill="#397b00" d="M193 294.69l.703.67-.703-.67z"/> + <path fill="#103900" d="M194.4 294.69l.703.67-.703-.67z"/> + <path fill="#397b00" d="M195.11 294.69l.703.67-.703-.67m4.925 0v2.008h.703l-.704-2.008z"/> + <path fill="#103900" d="M200.73 294.69l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.25 294.69l.703.67-.703-.67z"/> + <path fill="#425242" d="M207.07 294.69l.703.67-.703-.67z"/> + <path fill="#315221" d="M208.47 294.69l.703.67-.703-.67z"/> + <path fill="#103900" d="M210.58 294.69l.704.67-.704-.67z"/> + <path fill="#5a5231" d="M214.1 294.69l.704.67-.704-.67z"/> + <path fill="#526b42" d="M215.51 294.69l.703.67-.703-.67z"/> + <path fill="#397b00" d="M222.31 294.91l.47.224-.47-.224z"/> + <path fill="#294200" d="M224.18 295.13l.235.446-.235-.446m1.876-.446l.703.67-.704-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#631808" d="M235.21 294.69l.703.67-.703-.67z"/> + <path fill="#397b00" d="M235.91 294.69l1.407 3.347h2.11l-3.517-3.347z"/> + <path fill="#311000" d="M236.61 294.69l.703.67-.703-.67z"/> + <path fill="#422100" d="M240.83 294.69l.703.67-.703-.67z"/> + <path fill="#294200" d="M242.94 294.69v2.678h.703l-.703-2.678z"/> + <path fill="#5a1008" d="M244.35 294.69l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M253.5 294.69l.704.67-.704-.67z"/> + <path fill="#101810" d="M254.2 294.69l.703.67-.703-.67z"/> + <path fill="#dedede" d="M254.9 294.69l.703.67-.703-.67z"/> + <path fill="#083121" d="M267.57 294.69l.703.67-.703-.67z"/> + <path fill="#185200" d="M268.27 294.69l.703.67-.703-.67z"/> + <path fill="#002984" d="M268.97 294.69l.704.67-.704-.67z"/> + <path fill="#102110" d="M270.38 294.69l.703.67-.703-.67z"/> + <path fill="#319400" d="M271.08 294.69l-.703 6.024h.703v-6.024z"/> + <path fill="#083121" d="M271.79 294.69l.704.67-.704-.67z"/> + <path fill="#000818" d="M273.9 294.69l.703.67-.703-.67z"/> + <path fill="#00216b" d="M276.71 294.69l.703.67-.703-.67z"/> + <path fill="#082108" d="M277.42 294.69l-.703 1.34.703-1.34z"/> + <path fill="#00215a" d="M279.53 294.69l.703.67-.703-.67z"/> + <path fill="#297b00" d="M280.23 294.69l.704.67-.704-.67z"/> + <path fill="#00215a" d="M280.93 294.69l.703.67-.703-.67z"/> + <path fill="#103910" d="M281.64 294.69l.703.67-.703-.67z"/> + <path fill="#424242" d="M282.34 294.69l.703.67-.703-.67z"/> + <path fill="#103910" d="M283.04 294.69l.704.67-.704-.67z"/> + <path fill="#185200" d="M283.75 294.69l-.704 1.34.704-1.34z"/> + <path fill="#294221" d="M284.45 294.69l.703.67-.703-.67z"/> + <path fill="#103900" d="M285.86 294.69l.704.67-.704-.67z"/> + <path fill="#297b00" d="M286.56 294.69l.704.67-.704-.67z"/> + <path fill="#296300" d="M290.31 295.13l.235.446-.235-.446z"/> + <path fill="#103900" d="M293.6 294.69l.703.67-.703-.67z"/> + <path fill="#296300" d="M295 294.69l.703.67-.703-.67z"/> + <path fill="#185200" d="M301.33 294.69l.703.67-.703-.67z"/> + <path fill="#103900" d="M302.04 294.69l.704.67-.704-.67m4.22 0l.704.67-.703-.67z"/> + <path fill="#082108" d="M306.96 294.69v.67h2.11l-2.11-.67z"/> + <path fill="#4a6342" d="M309.54 294.91l.47.224-.47-.224z"/> + <path fill="#184a00" d="M311.18 294.69l.704.67-.704-.67z"/> + <path fill="#296300" d="M311.89 294.69l.703.67-.703-.67z"/> + <path fill="#103900" d="M312.59 294.69l.703.67-.703-.67z"/> + <path fill="#425242" d="M313.29 294.69l.703.67-.703-.67z"/> + <path fill="#dedede" d="M314 294.69l1.407 1.34-1.407-1.34z"/> + <path fill="#7b7373" d="M192.29 295.36l.703.67-.703-.67z"/> + <path fill="#397b00" d="M197.22 295.36l.703 2.678h.704l-1.407-2.678z"/> + <path fill="#294200" d="M199.09 295.58l.47.224-.47-.224z"/> + <path fill="#295200" d="M202.14 295.36l.704.67-.704-.67z"/> + <path fill="#103900" d="M202.85 295.36l.703.67-.703-.67z"/> + <path fill="#397b00" d="M203.55 295.36l.703.67-.703-.67z"/> + <path fill="#213918" d="M206.36 295.36l.703.67-.703-.67z"/> + <path fill="#efefef" d="M207.07 295.36l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M208.47 295.36l.703.67-.703-.67z"/> + <path fill="#294200" d="M209.18 295.36l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M209.88 295.36l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M210.58 295.36l.704.67-.704-.67z"/> + <path fill="#292100" d="M211.29 295.36l.704.67-.704-.67z"/> + <path fill="#5a6b52" d="M214.1 295.36l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M215.51 295.36l.703.67-.703-.67z"/> + <path fill="#295200" d="M220.43 295.36l.704.67-.704-.67z"/> + <path fill="#103900" d="M226.06 295.36l.703.67-.703-.67z"/> + <path fill="#181000" d="M228.87 295.36l.703.67-.703-.67z"/> + <path fill="#310000" d="M229.58 295.36l.703.67-.703-.67z"/> + <path fill="#313918" d="M235.21 295.36l.703.67-.703-.67z"/> + <path fill="#295200" d="M235.91 295.36l.704.67-.704-.67z"/> + <path fill="#293100" d="M237.32 295.36l.703.67-.703-.67z"/> + <path fill="#5a1010" d="M238.02 295.36l.703.67-.703-.67z"/> + <path fill="#734a42" d="M239.19 295.58l.47.224-.47-.224z"/> + <path fill="#5a2121" d="M240.13 295.36l.703.67-.703-.67z"/> + <path fill="#397b00" d="M240.83 295.36l.703.67-.703-.67z"/> + <path fill="#295200" d="M244.35 295.36l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M245.06 295.36l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M253.5 295.36l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M254.2 295.36l.703.67-.703-.67z"/> + <path fill="#002984" d="M264.05 295.36l.703.67-.703-.67z"/> + <path fill="#00216b" d="M264.75 295.36l.703.67-.703-.67z"/> + <path fill="#103921" d="M267.57 295.36l.703.67-.703-.67z"/> + <path fill="#319400" d="M268.27 295.36l-.703 8.702c2.614-2.436 2.55-5.768.703-8.702z"/> + <path fill="#102121" d="M268.97 295.36l.704.67-.704-.67z"/> + <path fill="#212139" d="M269.68 295.36l.703.67-.703-.67z"/> + <path fill="#296300" d="M270.38 295.36l.703.67-.703-.67z"/> + <path fill="#293129" d="M271.79 295.36l.704.67-.704-.67z"/> + <path fill="#42425a" d="M272.49 295.36l.703.67-.703-.67z"/> + <path fill="#31425a" d="M273.19 295.36l.703.67-.703-.67z"/> + <path fill="#103900" d="M273.9 295.36l.703.67-.703-.67z"/> + <path fill="#31425a" d="M274.6 295.36l.704.67-.704-.67z"/> + <path fill="#42425a" d="M275.77 295.58l.47.224-.47-.224z"/> + <path fill="#184a00" d="M277.65 295.8l.235.446-.235-.446z"/> + <path fill="#42425a" d="M278.12 295.36l.703.67-.703-.67z"/> + <path fill="#636b7b" d="M278.82 295.36l.703.67-.703-.67z"/> + <path fill="#082108" d="M279.53 295.36l.703.67-.703-.67z"/> + <path fill="#292921" d="M280.93 295.36l.703.67-.703-.67z"/> + <path fill="#185200" d="M281.64 295.36l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M282.34 295.36l.703.67-.703-.67z"/> + <path fill="#184a00" d="M283.75 295.36l.703.67-.703-.67z"/> + <path fill="#214210" d="M284.45 295.36l.703.67-.703-.67z"/> + <path fill="#185200" d="M291.49 295.36l.704.67-.704-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#297b00" d="M293.6 295.36l.703.67-.703-.67z"/> + <path fill="#103900" d="M295 295.36l.703.67-.703-.67z"/> + <path fill="#185200" d="M299.93 295.36l.704.67-.704-.67z"/> + <path fill="#103900" d="M300.63 295.36l.703.67-.703-.67z"/> + <path fill="#296300" d="M301.33 295.36l.703.67-.703-.67z"/> + <path fill="#297b00" d="M307.67 295.36l.703.67-.703-.67z"/> + <path fill="#296300" d="M308.37 295.36l.704.67-.704-.67z"/> + <path fill="#214210" d="M309.07 295.36l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M309.78 295.36l.703.67-.703-.67z"/> + <path fill="#dedede" d="M310.48 295.36l.703.67-.703-.67z"/> + <path fill="#cecece" d="M311.89 295.36l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M312.59 295.36l-.703 1.34.703-1.34z"/> + <path fill="#8c8c8c" d="M313.29 295.36l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M314 295.36l.704.67-.704-.67z"/> + <path fill="#314231" d="M192.29 296.03l.703.67-.703-.67z"/> + <path fill="#397b00" d="M193 296.03l.703.67-.703-.67z"/> + <path fill="#295200" d="M193.7 296.03l.704.67-.704-.67z"/> + <path fill="#396b10" d="M194.4 296.03l.703.67-.703-.67z"/> + <path fill="#213918" d="M195.11 296.03l.703.67-.703-.67z"/> + <path fill="#294200" d="M196.28 296.25l.47.224-.47-.224z"/> + <path fill="#428c00" d="M199.09 296.25l.47.224-.47-.224z"/> + <path fill="#294200" d="M201.2 296.25l.47.224-.47-.224z"/> + <path fill="#397b00" d="M202.14 296.03l.704.67-.704-.67z"/> + <path fill="#315221" d="M205.66 296.03l.703.67-.703-.67z"/> + <path fill="#cecece" d="M206.36 296.03l.703.67-.703-.67z"/> + <path fill="#420000" d="M209.18 296.03l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M211.52 296.47l.235.446-.235-.446z"/> + <path fill="#295200" d="M211.99 296.03l.703 2.678h.704l-1.407-2.678z"/> + <path fill="#8c8c8c" d="M214.34 296.47l.235.446-.235-.446z"/> + <path fill="#efefef" d="M215.51 296.03l.703.67-.703-.67z"/> + <path fill="#214210" d="M216.21 296.03l.704.67-.704-.67z"/> + <path fill="#294200" d="M220.43 296.03l.704.67-.704-.67z"/> + <path fill="#295200" d="M223.95 296.03l.704.67-.704-.67z"/> + <path fill="#294200" d="M225.36 296.03l.703.67-.703-.67z"/> + <path fill="#295200" d="M228.17 296.03l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M228.87 296.03l.703.67-.703-.67z"/> + <path fill="#313931" d="M229.58 296.03l.703.67-.703-.67z"/> + <path fill="#213918" d="M230.28 296.03l.704.67-.704-.67z"/> + <path fill="#63636b" d="M230.99 296.03l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M231.69 296.03l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M232.39 296.03l.703.67-.703-.67z"/> + <path fill="#cecece" d="M233.1 296.03l.704.67-.704-.67z"/> + <path fill="#526b42" d="M235.21 296.03l.703.67-.703-.67z"/> + <path fill="#428c00" d="M235.91 296.03l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M236.61 296.03l.703.67-.703-.67z"/> + <path fill="#425242" d="M238.72 296.03l.704.67-.704-.67z"/> + <path fill="#dedede" d="M239.43 296.03l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M240.13 296.03l.703.67-.703-.67z"/> + <path fill="#313931" d="M245.06 296.03l.703.67-.703-.67z"/> + <path fill="#7b5252" d="M245.76 296.03l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M246.46 296.03l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M247.17 296.03l.704.67-.704-.67z"/> + <path fill="#002984" d="M260.53 296.03l.704.67-.704-.67z"/> + <path fill="#00184a" d="M261.24 296.03l.703.67-.703-.67z"/> + <path fill="#42425a" d="M261.94 296.03l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M262.64 296.03l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M263.35 296.03l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M264.05 296.03l.703.67-.703-.67z"/> + <path fill="#dedede" d="M264.75 296.03l.703.67-.703-.67z"/> + <path fill="#214210" d="M268.97 296.03l.704.67-.704-.67z"/> + <path fill="#425242" d="M269.68 296.03l.703.67-.703-.67z"/> + <path fill="#63636b" d="M273.19 296.03l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M276.01 296.03l.703.67-.703-.67z"/> + <path fill="#296300" d="M276.71 296.03l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M278.82 296.03l.703.67-.703-.67z"/> + <path fill="#103900" d="M280.93 296.03l1.407 1.34-1.407-1.34z"/> + <path fill="#296300" d="M281.64 296.03l.703.67-.703-.67z"/> + <path fill="#313931" d="M282.34 296.03l.703.67-.703-.67z"/> + <path fill="#297b00" d="M283.04 296.03l.704.67-.704-.67z"/> + <path fill="#103900" d="M283.75 296.03l.703.67-.703-.67z"/> + <path fill="#185200" d="M284.45 296.03l.703.67-.703-.67m5.628 0l.703.67-.702-.67z"/> + <path fill="#184a00" d="M291.72 296.47l.235.446-.235-.446m1.173-.446l.703.67-.703-.67z"/> + <path fill="#297b00" d="M294.3 296.03l1.407 1.34-1.407-1.34z"/> + <path fill="#184a00" d="M295 296.03l.703.67-.703-.67z"/> + <path fill="#297b00" d="M298.52 296.03l.703.67-.703-.67z"/> + <path fill="#103900" d="M299.22 296.03l.704.67-.704-.67z"/> + <path fill="#296300" d="M299.93 296.03l.704.67-.704-.67z"/> + <path fill="#297b00" d="M309.78 296.03l.703.67-.703-.67z"/> + <path fill="#185200" d="M310.48 296.03l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M311.18 296.03l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M192.76 296.92l.47.224-.47-.224z"/> + <path fill="#efefef" d="M194.4 296.69l.703.67-.703-.67z"/> + <path fill="#214210" d="M195.11 296.69l.703.67-.703-.67z"/> + <path fill="#428c00" d="M196.51 299.37l1.407-2.008c-1.82-.4-2.914.654-1.407 2.008z"/> + <path fill="#294200" d="M199.09 296.92l.47.224-.47-.224z"/> + <path fill="#295200" d="M200.03 296.69l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.25 296.69l.703.67-.703-.67z"/> + <path fill="#63636b" d="M204.96 296.69l.704.67-.704-.67z"/> + <path fill="#efefef" d="M205.66 296.69l.703.67-.703-.67z"/> + <path fill="#5a2121" d="M209.18 296.69l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M216.21 296.69l.704.67-.704-.67z"/> + <path fill="#397b00" d="M216.92 296.69l.703.67-.703-.67z"/> + <path fill="#295200" d="M220.67 297.14l.235.446-.235-.446m2.58-.446l.703.67-.704-.67z"/> + <path fill="#63636b" d="M228.17 296.69l.703.67-.703-.67z"/> + <path fill="#dedede" d="M229.58 296.69l.703.67-.703-.67z"/> + <path fill="#294200" d="M230.28 296.69l.704.67-.704-.67z"/> + <path fill="#428c00" d="M230.99 296.69l.703 4.686 3.518 2.677 4.925.67.704-.67c-.52-1.812-6.268-9.642-7.036-5.355l-1.407-2.008h-1.407z"/> + <path fill="#397b00" d="M232.39 296.69v1.34l1.407-1.34h-1.407z"/> + <path fill="#295200" d="M233.8 296.69l.703.67-.703-.67z"/> + <path fill="#294200" d="M234.97 296.92l.47.224-.47-.224z"/> + <path fill="#397b00" d="M236.14 297.14l.235.446-.235-.446z"/> + <path fill="#294200" d="M237.32 296.69l.703.67-.703-.67z"/> + <path fill="#214210" d="M239.43 296.69l.703.67-.703-.67z"/> + <path fill="#295200" d="M240.13 296.69l.703.67-.703-.67z"/> + <path fill="#526b42" d="M245.06 296.69l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M247.17 296.69l.704.67-.704-.67z"/> + <path fill="#63636b" d="M247.87 296.69l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M248.57 296.69l.703.67-.703-.67z"/> + <path fill="#efefef" d="M249.28 296.69l.703.67-.703-.67m9.145 0l.704.67-.705-.67z"/> + <path fill="#8c8c8c" d="M259.12 296.69l.703.67-.703-.67z"/> + <path fill="#63636b" d="M259.83 296.69l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M260.53 296.69l.704.67-.704-.67z"/> + <path fill="#efefef" d="M261.24 296.69l.703.67-.703-.67z"/> + <path fill="#296300" d="M268.97 296.69l.704.67-.704-.67z"/> + <path fill="#103900" d="M269.68 296.69l.703.67-.703-.67z"/> + <path fill="#dedede" d="M272.49 296.69l.703.67-.703-.67z"/> + <path fill="#184a00" d="M273.19 296.69l.703.67-.703-.67z"/> + <path fill="#efefef" d="M275.31 296.69l.703.67-.703-.67z"/> + <path fill="#294221" d="M276.01 296.69l.703.67-.703-.67z"/> + <path fill="#319400" d="M276.71 296.69l-4.925 8.033c5.518-.063 7.887-2.874 8.442-8.033h-.703l-4.925 7.363 2.11-7.363z"/> + <path fill="#4a6342" d="M277.42 296.69l.704.67-.704-.67z"/> + <path fill="#425242" d="M278.82 296.69l.703.67-.703-.67z"/> + <path fill="#185200" d="M280.23 296.69l.704.67-.704-.67z"/> + <path fill="#297b00" d="M280.93 296.69l.703.67-.703-.67z"/> + <path fill="#184a00" d="M282.34 296.69l.703.67-.703-.67z"/> + <path fill="#319400" d="M283.04 296.69l-4.924 8.702c3.275-1.536 5.708-5.148 4.924-8.702z"/> + <path fill="#082108" d="M283.75 296.69l.703.67-.703-.67z"/> + <path fill="#297b00" d="M284.45 296.69l.703.67-.703-.67z"/> + <path fill="#184a00" d="M290.08 296.69l.703.67-.703-.67z"/> + <path fill="#185200" d="M294.3 296.69l.704.67-.704-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#184a00" d="M298.52 296.69l.703.67-.703-.67z"/> + <path fill="#185200" d="M301.1 296.92l.47.224-.47-.224z"/> + <path fill="#296300" d="M302.04 296.69l.704.67-.704-.67z"/> + <path fill="#184a00" d="M302.74 296.69v.67h2.11l-2.11-.67z"/> + <path fill="#185200" d="M304.85 296.69l.703.67-.703-.67z"/> + <path fill="#184a00" d="M306.02 296.92l.47.224-.47-.224z"/> + <path fill="#185200" d="M306.96 296.69l.703.67-.703-.67z"/> + <path fill="#296300" d="M307.9 297.14l.235.446-.235-.446z"/> + <path fill="#297b00" d="M308.37 296.69l.704.67-.704-.67z"/> + <path fill="#185200" d="M311.89 296.69l.703.67-.703-.67z"/> + <path fill="#63636b" d="M312.59 296.69l.703.67-.703-.67z"/> + <path fill="#efefef" d="M313.29 296.69l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M194.4 297.36l.703.67-.703-.67z"/> + <path fill="#397b00" d="M196.51 297.36l-.703 1.34h1.407l-.704-1.34z"/> + <path fill="#103900" d="M197.22 297.36l.703.67-.703-.67z"/> + <path fill="#295200" d="M202.85 297.36l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M203.55 297.36l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M204.25 297.36l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M207.07 297.36l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M207.77 297.36l.704.67-.704-.67z"/> + <path fill="#8c9c84" d="M208.47 297.36l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M209.18 297.36l.703.67-.703-.67z"/> + <path fill="#422100" d="M209.88 297.36l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M210.58 297.36l.704.67-.704-.67z"/> + <path fill="#311000" d="M211.29 297.36l.704.67-.704-.67z"/> + <path fill="#397b00" d="M212.69 297.36l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M214.1 297.36l.704.67-.704-.67z"/> + <path fill="#52525a" d="M216.92 297.36l.703.67-.703-.67z"/> + <path fill="#103900" d="M223.25 297.36l.703.67-.703-.67z"/> + <path fill="#314231" d="M227.47 297.36l-.704 1.34.704-1.34z"/> + <path fill="#dedede" d="M228.17 297.36l.703.67-.703-.67z"/> + <path fill="#63636b" d="M230.28 297.36l.704.67-.704-.67z"/> + <path fill="#295200" d="M231.69 297.36l.703.67-.703-.67z"/> + <path fill="#103900" d="M236.61 297.36l.703.67-.703-.67z"/> + <path fill="#294200" d="M238.02 297.36l-.703 1.34.703-1.34z"/> + <path fill="#103900" d="M240.13 297.36l.703.67-.703-.67z"/> + <path fill="#295200" d="M243.18 297.81l.235.446-.235-.446z"/> + <path fill="#294200" d="M245.29 297.81l.235.446-.235-.446z"/> + <path fill="#dedede" d="M248.57 297.36l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M249.28 297.36l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M249.98 297.36l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M257.72 297.36l.703.67-.703-.67z"/> + <path fill="#63636b" d="M258.42 297.36l.704.67-.704-.67z"/> + <path fill="#dedede" d="M259.12 297.36l.703.67-.703-.67z"/> + <path fill="#184a00" d="M269.68 297.36l.703.67-.703-.67z"/> + <path fill="#63636b" d="M272.49 297.36l-.704 1.34.704-1.34z"/> + <path fill="#297b00" d="M273.19 297.36l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M275.31 297.36l.703.67-.703-.67z"/> + <path fill="#297b00" d="M276.01 297.36l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M277.89 297.59l.47.224-.47-.224z"/> + <path fill="#296300" d="M278.82 297.36l.703.67-.703-.67z"/> + <path fill="#103900" d="M280.23 297.36l.704.67-.704-.67z"/> + <path fill="#319400" d="M280.93 297.36l.703.67-.703-.67z"/> + <path fill="#082108" d="M281.64 297.36l.703.67-.703-.67z"/> + <path fill="#297b00" d="M282.34 297.36l.703.67-.703-.67z"/> + <path fill="#103900" d="M283.75 297.36l.703.67-.703-.67z"/> + <path fill="#296300" d="M290.08 297.36l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#103900" d="M294.3 297.36l.704.67-.704-.67z"/> + <path fill="#297b00" d="M295.71 298.03v.67h2.11l-2.11-.67z"/> + <path fill="#103900" d="M297.11 297.36l.704.67-.704-.67z"/> + <path fill="#296300" d="M297.82 297.36l.703.67-.703-.67z"/> + <path fill="#082108" d="M308.37 297.36l.704.67-.704-.67z"/> + <path fill="#001000" d="M309.07 297.36l.703.67-.703-.67z"/> + <path fill="#395231" d="M309.78 297.36l.703.67-.703-.67z"/> + <path fill="#184a00" d="M310.48 297.36l.703.67-.703-.67z"/> + <path fill="#296300" d="M311.18 297.36l.704.67-.704-.67z"/> + <path fill="#297b00" d="M312.36 297.59l.47.224-.47-.224z"/> + <path fill="#214210" d="M313.29 297.36l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M314 297.36l.704.67-.704-.67z"/> + <path fill="#5a5231" d="M194.4 298.03l.703.67-.703-.67z"/> + <path fill="#397b00" d="M199.33 298.03l.704.67-.704-.67z"/> + <path fill="#295200" d="M200.03 298.03l.703.67-.703-.67z"/> + <path fill="#294200" d="M200.73 298.03l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M201.44 298.03l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M202.14 298.03l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M202.85 298.03l.703.67-.703-.67z"/> + <path fill="#efefef" d="M204.02 298.26l.47.224-.47-.224z"/> + <path fill="#9c9494" d="M204.96 298.03l.704.67-.704-.67z"/> + <path fill="#5a6b52" d="M205.66 298.03l.703.67-.703-.67z"/> + <path fill="#396b10" d="M206.36 298.03l.703.67-.703-.67z"/> + <path fill="#397b00" d="M207.07 298.03l.703.67-.703-.67z"/> + <path fill="#428c00" d="M205.66 298.7v.67h6.33v.67h-6.33v.668h1.407v.67c-3.843.2-5.79 1.557-7.738 4.685l11.958-.67v.67c-3.244.98-7.965.63-9.146 4.017 4.49-1.744 10.988-2.342 13.366-6.694l-4.22 2.008 2.11-2.678-6.332-.67v-.67l11.256.67v.67h-2.11v.67l9.145-.67v-.67h-2.11v-.67h4.22v-.668l-5.627 1.34-16.18-3.348z"/> + <path fill="#294200" d="M213.4 298.03l.704.67-.704-.67z"/> + <path fill="#315221" d="M214.1 298.03l.704.67-.704-.67z"/> + <path fill="#efefef" d="M216.92 298.03l.703.67-.703-.67z"/> + <path fill="#314231" d="M217.62 298.03l.704.67-.704-.67z"/> + <path fill="#294200" d="M220.43 298.03l1.407 1.34-1.407-1.34z"/> + <path fill="#397b00" d="M223.01 298.26l.47.224-.47-.224m3.05-.223l.702.67-.704-.67z"/> + <path fill="#efefef" d="M227.47 298.03l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M230.28 298.03l.704.67-.704-.67z"/> + <path fill="#397b00" d="M230.99 298.03l.703.67-.703-.67z"/> + <path fill="#294200" d="M232.86 298.26l.47.224-.47-.224z"/> + <path fill="#295200" d="M238.02 298.03l2.11 1.34v-.67l-2.11-.67z"/> + <path fill="#103900" d="M238.96 298.48l.235.446-.235-.446z"/> + <path fill="#294200" d="M240.83 298.03l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M249.98 298.03l.704.67-.704-.67z"/> + <path fill="#52525a" d="M250.68 298.03l.703.67-.703-.67z"/> + <path fill="#cecece" d="M251.39 298.03l.703.67-.703-.67m4.925 0l-1.407 2.008 1.407-2.008z"/> + <path fill="#63636b" d="M257.01 298.03l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M257.72 298.03l.703.67-.703-.67z"/> + <path fill="#185200" d="M269.68 298.03l.703.67-.703-.67z"/> + <path fill="#184a00" d="M272.49 298.03l.703.67-.703-.67z"/> + <path fill="#319400" d="M273.19 298.03l-4.22 6.694c2.666-1.298 5.056-3.697 4.22-6.694z"/> + <path fill="#184a00" d="M273.9 298.03l.703.67-.703-.67z"/> + <path fill="#cecece" d="M274.6 298.03l.704.67-.704-.67z"/> + <path fill="#184a00" d="M275.31 298.03l.703.67-.703-.67z"/> + <path fill="#296300" d="M276.71 298.03l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M277.42 298.03l.704.67-.704-.67z"/> + <path fill="#214210" d="M278.12 298.03l.703.67-.703-.67z"/> + <path fill="#184a00" d="M280.23 298.03l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M280.93 298.03l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M281.64 298.03l.703.67-.703-.67z"/> + <path fill="#297b00" d="M283.04 298.03l.704.67-.704-.67z"/> + <path fill="#296300" d="M283.75 298.03l.703.67-.703-.67z"/> + <path fill="#185200" d="M288.67 298.03l.704.67-.704-.67zM294.3 298.03l.704.67-.704-.67z"/> + <path fill="#103900" d="M296.41 298.03l.703.67-.703-.67z"/> + <path fill="#296300" d="M309.07 298.03l.703.67-.703-.67z"/> + <path fill="#425242" d="M309.78 298.03l.703.67-.703-.67z"/> + <path fill="#efefef" d="M310.48 298.03l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M311.18 298.03l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M311.89 298.03l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M312.59 298.03l.703.67-.703-.67z"/> + <path fill="#185200" d="M313.29 298.03l.703.67-.703-.67z"/> + <path fill="#184a00" d="M314 298.03l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M314.7 298.03l.703.67-.703-.67z"/> + <path fill="#294200" d="M194.64 299.15l.235.446-.235-.446m1.876-.446l.704.67-.704-.67z"/> + <path fill="#526b42" d="M197.22 298.7l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M198.39 298.93l.47.224-.47-.224z"/> + <path fill="#bdbdbd" d="M199.33 298.7l.704.67-.704-.67z"/> + <path fill="#dedede" d="M200.03 298.7l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M202.85 298.7l.703.67-.703-.67z"/> + <path d="M203.55 298.7l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.25 298.7l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.96 298.7l.704.67-.704-.67z"/> + <path fill="#292100" d="M214.1 298.7l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M214.8 298.7l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M216.92 298.7l.703.67-.703-.67z"/> + <path fill="#63636b" d="M217.62 298.7l.704.67-.704-.67z"/> + <path fill="#103900" d="M218.32 298.7l.703.67-.703-.67z"/> + <path fill="#001000" d="M220.43 298.7l.704.67-.704-.67z"/> + <path fill="#295200" d="M221.84 298.7l.704.67-.704-.67z"/> + <path fill="#103900" d="M222.54 298.7l.703.67-.703-.67z"/> + <path fill="#397b00" d="M224.65 298.7l.704.67-.704-.67z"/> + <path fill="#214210" d="M225.36 298.7l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M226.06 298.7l.703.67-.703-.67z"/> + <path fill="#efefef" d="M230.28 298.7l.704.67-.704-.67z"/> + <path fill="#295200" d="M230.99 298.7l.703.67-.703-.67z"/> + <path fill="#103900" d="M233.8 298.7l1.407 1.34-1.407-1.34z"/> + <path fill="#295200" d="M240.83 298.7l.703.67-.703-.67z"/> + <path fill="#294200" d="M242.94 298.7v2.678h.703l-.703-2.678z"/> + <path fill="#295200" d="M245.06 298.7l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M251.39 298.7l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M252.09 298.7l2.11 2.678-2.11-2.678z"/> + <path fill="#7b7373" d="M256.31 298.7l-1.407 2.008 1.407-2.008z"/> + <path fill="#efefef" d="M257.01 298.7l.704.67-.704-.67z"/> + <path fill="#184a00" d="M269.91 299.15l.235.446-.235-.446z"/> + <path d="M271.79 298.7l.704.67-.704-.67z"/> + <path fill="#297b00" d="M272.49 298.7l.703.67-.703-.67z"/> + <path fill="#315221" d="M273.9 298.7l.703.67-.703-.67z"/> + <path fill="#314231" d="M274.6 298.7l.704.67-.704-.67z"/> + <path fill="#103900" d="M276.71 298.7l.703.67-.703-.67z"/> + <path fill="#425242" d="M277.42 298.7l.704.67-.704-.67z"/> + <path fill="#297b00" d="M278.12 298.7l.703.67-.703-.67z"/> + <path fill="#103900" d="M280.23 298.7l.704.67-.704-.67m2.814 0l.704.67-.704-.67z"/> + <path fill="#184a00" d="M288.67 298.7l.704.67-.704-.67z"/> + <path fill="#296300" d="M295 298.7l.703.67-.703-.67z"/> + <path fill="#103900" d="M295.71 298.7l.704.67-.704-.67z"/> + <path fill="#297b00" d="M309.78 298.7l.703.67-.703-.67z"/> + <path fill="#103910" d="M310.48 298.7l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M311.18 298.7l.704.67-.704-.67z"/> + <path fill="#efefef" d="M313.29 298.7l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M314 298.7l.704.67-.704-.67z"/> + <path fill="#52525a" d="M314.7 298.7l.703.67-.703-.67z"/> + <path fill="#424242" d="M315.4 298.7l.703.67-.703-.67z"/> + <path fill="#dedede" d="M193.7 299.37l.704.67-.704-.67z"/> + <path fill="#213918" d="M195.11 299.37l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M195.81 299.37l.703.67-.703-.67z"/> + <path fill="#efefef" d="M196.51 299.37l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M203.55 299.37l1.407 1.34-1.407-1.34z"/> + <path fill="#214210" d="M204.25 299.37l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.96 299.37v.67h3.518l-3.518-.67z"/> + <path fill="#295200" d="M208.47 299.37l.703.67-.703-.67z"/> + <path fill="#397b00" d="M209.18 299.37l.703.67-.703-.67z"/> + <path fill="#295200" d="M209.88 299.37l.703.67-.703-.67z"/> + <path fill="#294200" d="M210.58 299.37l.704.67-.704-.67z"/> + <path fill="#295200" d="M211.29 299.37l.704.67-.704-.67z"/> + <path fill="#213918" d="M214.8 299.37l.703.67-.703-.67z"/> + <path fill="#cecece" d="M215.51 299.37l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M216.21 299.37l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M216.92 299.37l.703.67-.703-.67z"/> + <path fill="#941808" d="M218.32 299.37l.703.67-.703-.67z"/> + <path fill="#397b00" d="M219.03 299.37l.704.67-.704-.67z"/> + <path fill="#295200" d="M219.73 299.37l.703.67-.703-.67z"/> + <path fill="#941808" d="M220.43 299.37l.704.67-.704-.67z"/> + <path fill="#de2110" d="M221.14 299.37l-.704 1.34.704-1.34z"/> + <path fill="#b51010" d="M221.84 299.37l.704.67-.704-.67z"/> + <path fill="#294200" d="M222.54 299.37l.703.67-.703-.67z"/> + <path fill="#295200" d="M223.25 299.37l.703.67-.703-.67z"/> + <path fill="#102110" d="M223.95 299.37l.704.67-.704-.67z"/> + <path fill="#63636b" d="M224.65 299.37l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M225.36 299.37l.703.67-.703-.67z"/> + <path fill="#315221" d="M230.99 299.37l.703.67-.703-.67z"/> + <path fill="#397b00" d="M235.21 299.37l2.11 2.008-2.11-2.008m4.22 0l.704.67-.703-.67z"/> + <path fill="#294200" d="M241.77 299.82l.235.446-.235-.446m3.283-.446l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M267.57 299.37l.703.67-.703-.67z"/> + <path fill="#297b00" d="M271.08 299.37l.703.67-.703-.67z"/> + <path fill="#184a00" d="M271.79 299.37l.704.67-.704-.67z"/> + <path fill="#101810" d="M273.9 299.37l.703.67-.703-.67z"/> + <path fill="#297b00" d="M274.6 299.37l.704.67-.704-.67z"/> + <path fill="#001000" d="M276.71 299.37l.703.67-.703-.67z"/> + <path fill="#296300" d="M277.42 299.37l.704.67-.704-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#185200" d="M280.7 299.6l.47.224-.47-.224z"/> + <path fill="#184a00" d="M283.04 299.37l.704.67-.704-.67z"/> + <path fill="#297b00" d="M285.15 299.37l1.407 1.34-1.407-1.34z"/> + <path fill="#184a00" d="M295 299.37l.703.67-.703-.67z"/> + <path fill="#297b00" d="M297.11 299.37l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M297.82 299.37l.703.67-.703-.67z"/> + <path fill="#184a00" d="M298.52 299.37v.67h2.11l-2.11-.67z"/> + <path fill="#296300" d="M300.63 299.37l.703.67-.703-.67z"/> + <path fill="#184a00" d="M301.33 299.37v.67h3.518l-3.518-.67z"/> + <path fill="#296300" d="M304.85 299.37l.703.67-.703-.67z"/> + <path fill="#184a00" d="M305.56 299.37l.704.67-.704-.67z"/> + <path fill="#296300" d="M306.26 299.37l.703.67-.703-.67z"/> + <path fill="#297b00" d="M306.96 299.37l.703.67-.703-.67z"/> + <path fill="#185200" d="M311.18 299.37l1.407 1.34-1.407-1.34z"/> + <path fill="#9c9494" d="M311.89 299.37l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M193.7 300.04l.704.67-.704-.67z"/> + <path fill="#313931" d="M194.4 300.04l.703.67-.703-.67z"/> + <path fill="#efefef" d="M195.11 300.04l-1.407.67v.67l1.407-1.34z"/> + <path fill="#103900" d="M204.96 300.04l.704.67-.704-.67z"/> + <path fill="#295200" d="M211.99 300.04l.703.67-.703-.67z"/> + <path fill="#294200" d="M212.69 300.04l.703.67-.703-.67m2.814 0l.703.67-.703-.67z"/> + <path fill="#391810" d="M216.21 300.04l.704.67-.704-.67z"/> + <path fill="#423100" d="M219.49 300.26l.47.224-.47-.224z"/> + <path fill="#ce2110" d="M221.14 300.04l.703.67-.703-.67z"/> + <path fill="#631808" d="M221.84 300.04l.704.67-.704-.67z"/> + <path fill="#293100" d="M222.54 300.04l.703.67-.703-.67z"/> + <path fill="#397b00" d="M223.25 300.04v.67h2.814l-2.814-.67z"/> + <path fill="#294200" d="M226.06 300.04l.703.67-.703-.67z"/> + <path fill="#315221" d="M226.76 300.04l.704.67-.704-.67z"/> + <path fill="#5a6b52" d="M227.47 300.04l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M228.17 300.04l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M230.99 300.04l.703.67-.703-.67z"/> + <path fill="#294200" d="M235.21 300.04l.703.67-.703-.67m4.22 0l.704 2.008h.704l-1.407-2.008z"/> + <path fill="#315221" d="M245.06 300.04l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M254.2 300.04l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M267.57 300.04l.703.67-.703-.67z"/> + <path fill="#103900" d="M271.08 300.04l.703.67-.703-.67z"/> + <path fill="#185200" d="M273.19 300.04l.703.67-.703-.67z"/> + <path fill="#103900" d="M273.9 300.04l-.703 1.34.703-1.34z"/> + <path fill="#297b00" d="M276.01 300.04l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M276.71 300.04l.703.67-.703-.67z"/> + <path fill="#184a00" d="M279.53 300.04l.703.67-.703-.67z"/> + <path fill="#103900" d="M280.23 300.04l.704.67-.704-.67z"/> + <path fill="#297b00" d="M282.34 300.04l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M283.04 300.04l.704.67-.704-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#297b00" d="M295.71 300.04l.704.67-.704-.67z"/> + <path fill="#184a00" d="M296.41 300.04l.703.67-.703-.67z"/> + <path fill="#185200" d="M297.11 300.04l.704.67-.704-.67z"/> + <path fill="#297b00" d="M305.56 300.04l.704.67-.704-.67z"/> + <path fill="#103900" d="M306.26 300.04l.703.67-.703-.67z"/> + <path fill="#101810" d="M306.96 300.04l.703.67-.703-.67z"/> + <path fill="#425242" d="M307.67 300.04l.703.67-.703-.67z"/> + <path fill="#315221" d="M308.37 300.04l.704.67-.704-.67z"/> + <path fill="#185200" d="M309.07 300.04l.703.67-.703-.67z"/> + <path fill="#296300" d="M309.78 300.04l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M312.59 300.04l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M202.85 300.71l.703.67-.703-.67z"/> + <path fill="#5a5231" d="M203.55 300.71l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.25 300.71l.703.67-.703-.67z"/> + <path fill="#397b00" d="M204.96 300.71l.704.67-.704-.67z"/> + <path fill="#294200" d="M206.13 300.93l.47.224-.47-.224z"/> + <path fill="#397b00" d="M216.21 300.71l.704.67-.704-.67z"/> + <path fill="#293100" d="M216.92 300.71l.703.67-.703-.67z"/> + <path fill="#631808" d="M217.62 300.71l.704.67-.704-.67z"/> + <path fill="#941808" d="M218.32 300.71l.703.67-.703-.67z"/> + <path fill="#295200" d="M219.03 300.71l.704.67-.704-.67z"/> + <path fill="#294200" d="M219.73 300.71l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M220.43 300.71l.704.67-.704-.67z"/> + <path fill="#392100" d="M221.14 300.71l.703.67-.703-.67z"/> + <path fill="#397b00" d="M227.47 300.71l-2.11 2.008 2.11-2.008z"/> + <path fill="#294200" d="M228.17 300.71v1.34h1.407l-1.407-1.34z"/> + <path fill="#213918" d="M228.87 300.71l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M229.58 300.71l1.407 1.34-1.407-1.34z"/> + <path fill="#8c8c8c" d="M230.99 300.71l.703.67-.703-.67z"/> + <path fill="#294200" d="M235.91 300.71l.704.67-.704-.67z"/> + <path fill="#397b00" d="M239.43 300.71l.703.67-.703-.67z"/> + <path fill="#295200" d="M241.54 300.71l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M245.06 300.71l.703.67-.703-.67m9.145 0l.704.67-.705-.67z"/> + <path fill="#294221" d="M267.57 300.71l.703.67-.703-.67z"/> + <path fill="#296300" d="M271.08 300.71l.703.67-.703-.67z"/> + <path fill="#297b00" d="M273.9 300.71l.703.67-.703-.67z"/> + <path fill="#184a00" d="M276.01 300.71l.703.67-.703-.67z"/> + <path fill="#297b00" d="M278.82 300.71l.703.67-.703-.67z"/> + <path d="M279.53 300.71l.703.67-.703-.67z"/> + <path fill="#297b00" d="M280.23 300.71l.704.67-.704-.67z"/> + <path fill="#185200" d="M282.34 300.71l.703.67-.703-.67z"/> + <path fill="#103900" d="M285.15 300.71l.703.67-.703-.67z"/> + <path fill="#296300" d="M287.97 300.71l.703.67-.703-.67z"/> + <path fill="#184a00" d="M289.14 300.93l.47.224-.47-.224z"/> + <path fill="#185200" d="M290.08 300.71l.703.67-.703-.67z"/> + <path fill="#297b00" d="M290.78 300.71l-.703 1.34.703-1.34m2.814 0l.703.67-.703-.67m13.366 0l.703.67-.703-.67z"/> + <path fill="#103910" d="M307.67 300.71l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M308.37 300.71l.704.67-.704-.67z"/> + <path fill="#efefef" d="M309.07 300.71l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M309.78 300.71l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M310.48 300.71l.703.67-.703-.67z"/> + <path fill="#294221" d="M311.18 300.71l.704.67-.704-.67z"/> + <path fill="#296300" d="M311.89 300.71l.703.67-.703-.67z"/> + <path fill="#297b00" d="M312.59 300.71l.703.67-.703-.67z"/> + <path fill="#63636b" d="M313.29 300.71l1.407 1.34-1.407-1.34z"/> + <path fill="#efefef" d="M201.44 301.38l-1.407 2.008 1.407-2.008z"/> + <path fill="#425242" d="M202.14 301.38l.704.67-.704-.67z"/> + <path fill="#397b00" d="M202.85 301.38l.703.67-.703-.67z"/> + <path fill="#294200" d="M207.54 301.6l.47.224-.47-.224z"/> + <path fill="#397b00" d="M208.71 301.83l.235.446-.235-.446z"/> + <path fill="#294200" d="M218.79 301.6l.47.224-.47-.224z"/> + <path d="M220.43 301.38l.704.67-.704-.67z"/> + <path fill="#397b00" d="M221.14 301.38l.703.67-.703-.67z"/> + <path fill="#294200" d="M223.25 301.38v.67h2.11l-2.11-.67z"/> + <path fill="#103900" d="M229.58 301.38l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M230.99 301.38l.703.67-.703-.67z"/> + <path fill="#397b00" d="M231.69 301.38l.703.67-.703-.67z"/> + <path fill="#294200" d="M232.39 301.38l.703.67-.703-.67z"/> + <path fill="#422100" d="M233.1 301.38l.704.67-.704-.67z"/> + <path fill="#4a4208" d="M233.8 301.38l.703.67-.703-.67z"/> + <path fill="#103900" d="M236.61 301.38l.703.67-.703-.67z"/> + <path fill="#295200" d="M237.32 301.38v1.34h1.407l-1.407-1.34zM244.35 301.38l.704.67-.704-.67z"/> + <path fill="#dedede" d="M245.06 301.38l.703.67-.703-.67z"/> + <path fill="#cecece" d="M266.86 301.38l.703.67-.703-.67z"/> + <path fill="#185200" d="M267.57 301.38l.703.67-.703-.67z"/> + <path fill="#297b00" d="M269.68 301.38l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M272.49 301.38l.703.67-.703-.67z"/> + <path fill="#296300" d="M273.19 301.38l.703.67-.703-.67z"/> + <path fill="#297b00" d="M275.31 301.38l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M276.01 301.38l.703.67-.703-.67z"/> + <path fill="#184a00" d="M279.29 301.6l.47.224-.47-.224m3.048-.223l.704.67-.704-.67z"/> + <path fill="#297b00" d="M284.45 301.38l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M285.15 301.38l.703.67-.703-.67z"/> + <path fill="#296300" d="M290.78 301.38l.703.67-.703-.67z"/> + <path fill="#184a00" d="M291.49 301.38l.704.67-.704-.67z"/> + <path fill="#103900" d="M292.19 301.38l.703.67-.703-.67z"/> + <path fill="#296300" d="M292.89 301.38l.704.67-.704-.67z"/> + <path fill="#185200" d="M297.82 301.38l.703.67-.703-.67z"/> + <path fill="#184a00" d="M298.52 301.38l.703.67-.703-.67z"/> + <path fill="#296300" d="M299.22 301.38v1.34h1.407l-1.407-1.34z"/> + <path fill="#297b00" d="M299.93 301.38l.704.67-.704-.67z"/> + <path fill="#185200" d="M308.37 301.38l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M309.07 301.38l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M311.89 301.38l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M312.59 301.38l.703.67-.703-.67z"/> + <path fill="#082108" d="M313.29 301.38l.703.67-.703-.67z"/> + <path fill="#efefef" d="M314.7 301.38l.703.67-.703-.67z"/> + <path fill="#314231" d="M201.44 302.05l.703.67-.703-.67z"/> + <path fill="#295200" d="M209.18 302.05l.703.67-.703-.67z"/> + <path fill="#294200" d="M209.88 302.05v.67h2.814l-2.814-.67z"/> + <path fill="#295200" d="M212.69 302.05l.703.67-.703-.67z"/> + <path fill="#397b00" d="M213.4 302.05v2.008l2.814-2.008H213.4z"/> + <path fill="#294200" d="M216.68 302.27l.47.224-.47-.224z"/> + <path fill="#397b00" d="M217.62 302.05l.704.67-.704-.67z"/> + <path fill="#103900" d="M221.84 302.05l.704.67-.704-.67z"/> + <path fill="#295200" d="M222.54 302.05l.703.67-.703-.67z"/> + <path fill="#214210" d="M226.06 302.05l.703.67-.703-.67z"/> + <path fill="#63636b" d="M226.76 302.05l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M227.47 302.05l-.704 1.34.704-1.34z"/> + <path fill="#bdbdbd" d="M228.17 302.05v1.34h1.407l-1.407-1.34z"/> + <path fill="#cecece" d="M230.05 302.27l.47.224-.47-.224z"/> + <path d="M231.69 302.05l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M232.39 302.05l.703.67-.703-.67zM233.8 302.05l.703.67-.703-.67z"/> + <path fill="#294200" d="M234.5 302.05l.703.67-.703-.67z"/> + <path fill="#397b00" d="M240.6 302.27l.47.224-.47-.224z"/> + <path fill="#5a6b52" d="M244.35 302.05l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M266.86 302.05l.703.67-.703-.67z"/> + <path fill="#103900" d="M269.68 302.05l.703.67-.703-.67z"/> + <path fill="#297b00" d="M271.79 302.05l1.407 1.34-1.407-1.34z"/> + <path fill="#103900" d="M272.49 302.05l.703.67-.703-.67z"/> + <path fill="#184a00" d="M275.54 302.5l.235.446-.235-.446z"/> + <path fill="#297b00" d="M278.12 302.05l1.407 1.34-1.407-1.34z"/> + <path fill="#082108" d="M278.82 302.05l.703.67-.703-.67z"/> + <path fill="#296300" d="M282.11 302.27l.47.224-.47-.224z"/> + <path fill="#185200" d="M284.45 302.05l.703.67-.703-.67m8.676.446l.235.446-.234-.446z"/> + <path fill="#103900" d="M293.83 302.5l.235.446-.235-.446z"/> + <path fill="#297b00" d="M294.3 302.05l.704.67-.704-.67z"/> + <path fill="#296300" d="M296.41 302.05l.703.67-.703-.67z"/> + <path fill="#297b00" d="M297.11 302.05l-1.407 2.008 1.407-2.008z"/> + <path fill="#184a00" d="M300.63 302.05v.67h2.11l-2.11-.67z"/> + <path fill="#185200" d="M302.74 302.05l1.407 1.34v-1.34h-1.407z"/> + <path fill="#297b00" d="M304.15 302.05l.703.67-.703-.67m4.925 0l2.11 2.008-2.11-2.008z"/> + <path fill="#63636b" d="M309.78 302.05l2.11 2.008-2.11-2.008z"/> + <path fill="#efefef" d="M313.29 302.05l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M314.47 302.27l.47.224-.47-.224z"/> + <path fill="#314231" d="M200.73 302.72l.703.67-.703-.67z"/> + <path fill="#292100" d="M213.4 302.72l.704.67-.704-.67z"/> + <path fill="#397b00" d="M223.25 302.72l2.814 1.34v-.67l-2.814-.67z"/> + <path fill="#103900" d="M223.95 302.72l.704.67-.704-.67z"/> + <path fill="#292921" d="M224.65 302.72l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M225.36 302.72l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M226.06 302.72l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M227.47 302.72l.704.67-.704-.67z"/> + <path fill="#dedede" d="M229.58 302.72l.703.67-.703-.67z"/> + <path fill="#734a42" d="M231.69 302.72l.703.67-.703-.67z"/> + <path fill="#423100" d="M234.5 302.72l.703.67-.703-.67z"/> + <path fill="#295200" d="M241.07 303.17l.235.446-.235-.446z"/> + <path fill="#397b00" d="M243.65 302.72l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M244.35 302.72l.704.67-.704-.67z"/> + <path fill="#315221" d="M266.86 302.72l.703.67-.703-.67z"/> + <path fill="#185200" d="M269.21 303.17l.235.446-.235-.446z"/> + <path fill="#296300" d="M269.68 302.72l.703.67-.703-.67z"/> + <path fill="#103900" d="M271.79 302.72l.704.67-.704-.67z"/> + <path fill="#297b00" d="M274.6 302.72l.704.67-.704-.67z"/> + <path fill="#184a00" d="M278.35 303.17l.235.446-.235-.446m3.283-.446l.704.67-.704-.67z"/> + <path fill="#103900" d="M284.45 302.72l.703.67-.703-.67z"/> + <path fill="#297b00" d="M286.56 302.72l.704.67-.704-.67z"/> + <path fill="#185200" d="M287.26 302.72l.703.67-.703-.67z"/> + <path fill="#184a00" d="M285.86 303.39v.67l6.332-.67h-6.332z"/> + <path fill="#296300" d="M292.19 302.72l-.704 1.34.704-1.34z"/> + <path d="M294.3 302.72l.704.67-.704-.67z"/> + <path fill="#103900" d="M295 302.72l.703.67-.703-.67z"/> + <path fill="#185200" d="M297.11 302.72l.704.67-.704-.67z"/> + <path fill="#103900" d="M297.82 302.72l.703.67-.703-.67z"/> + <path fill="#296300" d="M298.52 302.72l.703.67-.703-.67z"/> + <path d="M304.15 302.72l.703.67-.703-.67z"/> + <path fill="#52525a" d="M304.85 302.72l.703.67-.703-.67z"/> + <path fill="#315221" d="M305.56 302.72l.704.67-.704-.67z"/> + <path fill="#185200" d="M306.26 302.72l.703.67-.703-.67z"/> + <path fill="#297b00" d="M306.96 302.72l.703.67-.703-.67z"/> + <path fill="#314231" d="M200.03 303.39l.703.67-.703-.67z"/> + <path fill="#295200" d="M209.18 303.39l-.703 1.34.703-1.34z"/> + <path fill="#294200" d="M209.88 303.39l.703.67-.703-.67z"/> + <path fill="#295200" d="M212.69 303.39l-.703 2.008.703-2.008z"/> + <path fill="#103900" d="M215.51 303.39l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M216.21 303.39l.704.67-.704-.67z"/> + <path fill="#315221" d="M216.92 303.39l.703.67-.703-.67z"/> + <path fill="#295200" d="M217.62 303.39l.704.67-.704-.67z"/> + <path fill="#397b00" d="M218.32 303.39v.67h2.814l-2.814-.67z"/> + <path fill="#294200" d="M221.14 303.39l.703.67-.703-.67z"/> + <path fill="#103900" d="M221.84 303.39l.704.67-.704-.67z"/> + <path fill="#292100" d="M222.54 303.39l.703.67-.703-.67z"/> + <path fill="#428c00" d="M219.73 306.74l14.773-2.008c-4.594-1.838-11.355-1.68-14.773 2.008z"/> + <path fill="#397b00" d="M228.17 303.39v.67h2.11l-2.11-.67z"/> + <path fill="#294200" d="M230.28 303.39v.67h2.11l-2.11-.67z"/> + <path fill="#422100" d="M232.39 303.39l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M233.1 303.39l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M233.8 303.39l.703.67-.703-.67z"/> + <path fill="#294200" d="M234.5 303.39l1.407 1.34-1.407-1.34z"/> + <path fill="#214210" d="M243.65 303.39l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M266.16 303.39l.704.67-.704-.67z"/> + <path fill="#185200" d="M270.38 304.73l2.11-1.34-2.11 1.34z"/> + <path fill="#103900" d="M274.6 303.39l.704.67-.704-.67z"/> + <path fill="#297b00" d="M277.42 303.39l-1.407 2.008h2.11l-.703-2.008z"/> + <path fill="#296300" d="M281.4 303.61l.47.224-.47-.224z"/> + <path fill="#185200" d="M283.75 303.39l.703.67-.703-.67z"/> + <path fill="#296300" d="M284.92 303.61l.47.224-.47-.224z"/> + <path fill="#185200" d="M290.08 303.39l.703.67-.703-.67z"/> + <path fill="#297b00" d="M292.19 303.39l-.704 1.34.704-1.34z"/> + <path fill="#319400" d="M292.89 303.39v.67l9.85 2.677v-.67l-9.85-2.677z"/> + <path fill="#296300" d="M295 303.39l.703.67-.703-.67z"/> + <path fill="#185200" d="M298.52 303.39l.703.67-.703-.67z"/> + <path fill="#103900" d="M299.22 303.39l.704.67-.704-.67z"/> + <path fill="#185200" d="M299.93 303.39l.704.67-.704-.67z"/> + <path fill="#297b00" d="M304.15 303.39l1.407 1.34-1.407-1.34z"/> + <path fill="#314231" d="M304.85 303.39l.703.67-.703-.67z"/> + <path fill="#cecece" d="M305.56 303.39l1.407 1.34-1.407-1.34z"/> + <path fill="#dedede" d="M306.26 303.39l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M306.96 303.39l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M307.67 303.39l.703.67-.703-.67z"/> + <path fill="#214210" d="M308.37 303.39l.704.67-.704-.67z"/> + <path fill="#297b00" d="M309.07 303.39l.703.67-.703-.67z"/> + <path fill="#63636b" d="M199.33 304.06l.704.67-.704-.67z"/> + <path fill="#397b00" d="M200.03 304.06l.703.67-.703-.67m2.814 0v1.34h2.11v-1.34h-2.11z"/> + <path fill="#295200" d="M204.96 304.06l.704.67-.704-.67z"/> + <path fill="#294200" d="M205.66 304.06l.703.67-.703-.67z"/> + <path fill="#295200" d="M206.36 304.06l.703.67-.703-.67z"/> + <path fill="#294200" d="M207.54 304.28l.47.224-.47-.224z"/> + <path fill="#8c8c8c" d="M215.51 304.06l.703.67-.703-.67z"/> + <path fill="#dedede" d="M217.62 304.06l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M218.32 304.06v.67h2.814l-2.814-.67z"/> + <path fill="#52525a" d="M221.14 304.06l.703.67-.703-.67z"/> + <path fill="#397b00" d="M221.84 304.06l.704.67-.704-.67m12.663 0l.703.67-.703-.67z"/> + <path fill="#292100" d="M235.91 304.06v.67h2.11l-2.11-.67z"/> + <path fill="#295200" d="M238.02 304.06l.703.67-.703-.67z"/> + <path fill="#397b00" d="M240.13 304.06l.703.67-.703-.67z"/> + <path fill="#103900" d="M240.83 304.06l.703.67-.703-.67z"/> + <path fill="#313931" d="M243.65 304.06l.703.67-.703-.67z"/> + <path fill="#bd8c8c" d="M244.82 304.28l.47.224-.47-.224z"/> + <path fill="#845a52" d="M245.76 304.06l.703.67-.703-.67z"/> + <path fill="#9c4a42" d="M253.5 304.06l.704.67-.704-.67z"/> + <path fill="#ad524a" d="M254.2 304.06l.703.67-.703-.67z"/> + <path fill="#845a52" d="M261.94 304.06l.703.67-.703-.67z"/> + <path fill="#bd8c8c" d="M263.11 304.28l.47.224-.47-.224z"/> + <path fill="#293129" d="M266.16 304.06l.704.67-.704-.67z"/> + <path fill="#082108" d="M268.27 304.06l.703.67-.703-.67z"/> + <path fill="#103900" d="M277.42 304.06l.704.67-.704-.67z"/> + <path fill="#297b00" d="M280.23 304.06l-.703 1.34.703-1.34z"/> + <path fill="#103900" d="M280.93 304.06l.703.67-.703-.67z"/> + <path fill="#297b00" d="M283.04 304.06l1.407 1.34-1.407-1.34z"/> + <path fill="#184a00" d="M283.75 304.06l.703.67-.703-.67z"/> + <path fill="#319400" d="M283.75 306.07l17.587 2.678v2.677c1.992-5.878-14.25-9.76-17.587-5.355z"/> + <path fill="#103900" d="M292.19 304.06l.703.67-.703-.67z"/> + <path fill="#184a00" d="M292.89 304.06l.704.67-.704-.67z"/> + <path fill="#185200" d="M293.6 304.06l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M294.3 304.06l.704.67-.704-.67z"/> + <path fill="#296300" d="M299.93 304.06l.704.67-.704-.67z"/> + <path fill="#082108" d="M300.63 304.06l.703.67-.703-.67z"/> + <path fill="#103900" d="M301.33 304.06l.703.67-.703-.67z"/> + <path fill="#296300" d="M302.04 304.06l.704.67-.704-.67z"/> + <path fill="#214210" d="M305.56 304.06l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M309.07 304.06l.703.67-.703-.67z"/> + <path fill="#425242" d="M309.78 304.06l.703.67-.703-.67z"/> + <path fill="#185200" d="M310.95 304.28l.47.224-.47-.224z"/> + <path fill="#9c9494" d="M311.89 304.06l.703.67-.703-.67m-113.26.67l-1.407 2.008 1.407-2.01z"/> + <path fill="#397b00" d="M199.33 304.73l.704.67-.704-.67z"/> + <path fill="#295200" d="M200.73 304.73l.703.67-.703-.67z"/> + <path fill="#294200" d="M201.91 304.95l.47.224-.47-.224m9.38-.223l.703.67-.703-.67z"/> + <path fill="#315221" d="M214.8 304.73l.703.67-.703-.67z"/> + <path fill="#efefef" d="M219.73 304.73l-.704 1.34.704-1.34z"/> + <path fill="#293129" d="M220.43 304.73l.704.67-.704-.67z"/> + <path fill="#397b00" d="M232.86 304.95l.47.224-.47-.224z"/> + <path fill="#294200" d="M233.8 304.73l.703.67-.703-.67z"/> + <path fill="#423100" d="M234.5 304.73l.703.67-.703-.67z"/> + <path fill="#422100" d="M235.68 304.95l.47.224-.47-.224z"/> + <path fill="#5a2908" d="M236.61 304.73l.703.67-.703-.67z"/> + <path fill="#631808" d="M237.32 304.73v.67h2.11l-2.11-.67z"/> + <path fill="#ad1810" d="M239.43 304.73v.67h2.11l-2.11-.67z"/> + <path fill="#bd2110" d="M241.54 304.73l.704.67-.704-.67z"/> + <path fill="#de2110" d="M225.36 316.78v-.67l-4.22.67v-.67c19.037-5.743 47.093-5.743 66.128 0v.67l-3.517-.67c3.472 5.038 12.97 1.915 9.817-3.945-2.688-4.997-12.483-5.588-17.555-6.277-14.296-1.94-30.052-2.1-44.32.128-5.08.793-11.26 1.215-15.316 4.598-2.888 2.41-1.836 7.29 2.015 8.37 2.38.667 5.028-1.13 6.97-2.204z"/> + <path fill="#ce2110" d="M266.16 304.73l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M268.97 304.73l.704.67-.704-.67z"/> + <path fill="#631808" d="M270.15 304.95l.47.224-.47-.224z"/> + <path fill="#6b2908" d="M271.08 304.73l.703.67-.703-.67z"/> + <path fill="#184a00" d="M273.9 304.73l.703.67-.703-.67z"/> + <path fill="#185200" d="M274.6 304.73l.704.67-.704-.67z"/> + <path fill="#296300" d="M275.31 304.73l.703.67-.703-.67z"/> + <path fill="#103900" d="M276.71 304.73l.703.67-.703-.67m3.518 0l-.704 1.34.703-1.34m2.814 0l.705.67-.704-.67z"/> + <path fill="#297b00" d="M293.6 304.73l.703.67-.703-.67z"/> + <path fill="#184a00" d="M295.47 304.95l.47.224-.47-.224z"/> + <path fill="#297b00" d="M296.41 304.73l-.704 1.34.704-1.34m4.22 0l.704.67-.703-.67z"/> + <path fill="#214210" d="M301.33 304.73l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M302.04 304.73l1.407 1.34-1.407-1.34z"/> + <path fill="#7b7373" d="M302.74 304.73l.704.67-.704-.67z"/> + <path fill="#315221" d="M303.45 304.73l.703.67-.703-.67z"/> + <path fill="#185200" d="M304.15 304.73l.703.67-.703-.67z"/> + <path fill="#103910" d="M306.26 304.73l.703.67-.703-.67z"/> + <path fill="#efefef" d="M306.96 304.73l1.407 1.34-1.407-1.34z"/> + <path fill="#cecece" d="M310.48 304.73l.703.67-.703-.67z"/> + <path fill="#63636b" d="M311.18 304.73l.704.67-.704-.67z"/> + <path fill="#102110" d="M311.89 304.73l.703.67-.703-.67z"/> + <path fill="#cecece" d="M312.59 304.73l.703.67-.703-.67z"/> + <path fill="#294200" d="M198.62 305.4l4.22 2.008-4.22-2.008z"/> + <path fill="#397b00" d="M210.11 305.84l.235.446-.235-.446z"/> + <path fill="#294200" d="M210.58 305.4l.704.67-.704-.67z"/> + <path fill="#214210" d="M214.1 305.4l.704.67-.704-.67z"/> + <path fill="#cecece" d="M214.8 305.4l.703.67-.703-.67z"/> + <path fill="#314231" d="M219.73 305.4l.703.67-.703-.67z"/> + <path fill="#397b00" d="M228.17 305.4l.703.67-.703-.67z"/> + <path fill="#295200" d="M228.87 305.4l.703.67-.703-.67z"/> + <path fill="#294200" d="M229.58 305.4l.703.67-.703-.67z"/> + <path fill="#422100" d="M230.28 305.4l.704.67-.704-.67z"/> + <path fill="#520808" d="M230.99 305.4l.703.67-.703-.67z"/> + <path fill="#631808" d="M231.69 305.4l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M232.39 305.4l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M233.1 305.4l.704.67-.704-.67m41.506 0l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M275.31 305.4l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M276.01 305.4l.703.67-.703-.67z"/> + <path fill="#631808" d="M276.71 305.4l.703.67-.703-.67z"/> + <path fill="#422100" d="M277.42 305.4l.704.67-.704-.67z"/> + <path fill="#4a4208" d="M278.12 305.4l.703.67-.703-.67z"/> + <path fill="#184a00" d="M278.82 305.4l.703.67-.703-.67z"/> + <path fill="#296300" d="M280.23 305.4l.704.67-.704-.67z"/> + <path fill="#297b00" d="M282.34 305.4l.703.67-.703-.67z"/> + <path fill="#296300" d="M283.04 305.4l.704.67-.704-.67m1.407 0l3.518.67-3.518-.67z"/> + <path fill="#297b00" d="M287.26 305.4l.703.67-.703-.67z"/> + <path fill="#185200" d="M296.41 305.4l.703.67-.703-.67z"/> + <path fill="#082108" d="M297.11 305.4l.704.67-.704-.67z"/> + <path fill="#103900" d="M297.82 305.4l.703.67-.703-.67z"/> + <path fill="#297b00" d="M298.52 305.4l.703.67-.703-.67z"/> + <path fill="#185200" d="M302.04 305.4l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M304.15 305.4l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M304.85 305.4l.703.67-.703-.67z"/> + <path fill="#184a00" d="M305.56 305.4l.704.67-.704-.67z"/> + <path fill="#297b00" d="M306.26 305.4l.703.67-.703-.67z"/> + <path fill="#314231" d="M306.96 305.4l.703.67-.703-.67z"/> + <path fill="#efefef" d="M311.89 305.4l.703.67-.703-.67z"/> + <path fill="#dedede" d="M312.59 305.4l.703.67-.703-.67z"/> + <path fill="#292100" d="M197.92 306.07l.703.67-.703-.67z"/> + <path fill="#397b00" d="M202.85 306.07v1.34h1.407v-1.34h-1.407m5.16.446l.233.446-.234-.446z"/> + <path fill="#294200" d="M208.94 306.29l.47.224-.47-.224z"/> + <path fill="#397b00" d="M212.69 306.07l.703.67-.703-.67z"/> + <path fill="#314231" d="M213.4 306.07l.704.67-.704-.67z"/> + <path fill="#dedede" d="M214.1 306.07l.704.67-.704-.67z"/> + <path fill="#425242" d="M219.03 306.07l.704.67-.704-.67z"/> + <path fill="#397b00" d="M222.31 306.29l.47.224-.47-.224z"/> + <path fill="#294200" d="M223.72 306.29l.47.224-.47-.224z"/> + <path fill="#292100" d="M224.65 306.07l.704.67-.704-.67z"/> + <path fill="#181000" d="M225.36 306.07l.703.67-.703-.67z"/> + <path fill="#310000" d="M226.06 306.07l.703.67-.703-.67z"/> + <path fill="#631808" d="M226.76 306.07l.704.67-.704-.67z"/> + <path fill="#941808" d="M227.47 306.07l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M228.17 306.07l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M228.87 306.07l.703.67-.703-.67z"/> + <path fill="#de3110" d="M244.35 306.07l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M245.06 306.07l.703.67-.703-.67z"/> + <path fill="#de3110" d="M245.76 306.07l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M248.57 306.07l.703.67-.703-.67z"/> + <path fill="#de3110" d="M249.28 306.07l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M254.67 306.29l.47.224-.47-.224z"/> + <path fill="#de3110" d="M255.61 306.07l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M259.59 306.29l.47.224-.47-.224z"/> + <path fill="#de3110" d="M260.53 306.07l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M279.53 306.07l.703.67-.703-.67z"/> + <path fill="#941808" d="M280.23 306.07l.704.67-.704-.67z"/> + <path fill="#631808" d="M280.93 306.07l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M281.64 306.07l.703.67-.703-.67z"/> + <path fill="#293100" d="M282.34 306.07l.703.67-.703-.67z"/> + <path fill="#185200" d="M283.04 306.07l.704.67-.704-.67z"/> + <path fill="#297b00" d="M283.75 306.07l.703.67-.703-.67z"/> + <path fill="#184a00" d="M287.97 306.07v.67h2.11l-2.11-.67z"/> + <path fill="#185200" d="M290.08 306.07l1.407 1.34-1.407-1.34z"/> + <path fill="#297b00" d="M290.78 306.07l.703.67-.703-.67z"/> + <path fill="#185200" d="M297.82 306.07l.703.67-.703-.67z"/> + <path fill="#001000" d="M298.52 306.07l.703.67-.703-.67z"/> + <path fill="#293129" d="M299.22 306.07l.704.67-.704-.67z"/> + <path fill="#214210" d="M299.93 306.07l.704.67-.704-.67z"/> + <path fill="#296300" d="M300.63 306.07l.703.67-.703-.67m2.11 0l1.407 1.34-1.407-1.34z"/> + <path fill="#63636b" d="M303.45 306.07l.703.67-.703-.67z"/> + <path fill="#dedede" d="M305.56 306.07l.704.67-.704-.67z"/> + <path fill="#63636b" d="M306.26 306.07l.703.67-.703-.67z"/> + <path fill="#214210" d="M306.96 306.07l.703.67-.703-.67z"/> + <path fill="#63636b" d="M307.67 306.07l.703.67-.703-.67z"/> + <path fill="#cecece" d="M197.22 306.74l.703.67-.703-.67z"/> + <path fill="#295200" d="M204.25 306.74l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.96 306.74l.704.67-.704-.67z"/> + <path fill="#295200" d="M205.66 306.74l.703.67-.703-.67z"/> + <path fill="#294200" d="M206.83 306.96l.47.224-.47-.224z"/> + <path fill="#397b00" d="M211.29 306.74l.704.67-.704-.67z"/> + <path fill="#214210" d="M211.99 306.74l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M212.69 306.74l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M218.32 306.74l.703.67-.703-.67z"/> + <path fill="#397b00" d="M219.49 306.96l.47.224-.47-.224z"/> + <path fill="#294200" d="M218.32 308.07v.67l4.22-1.34-4.22.67z"/> + <path fill="#293100" d="M222.54 306.74l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M223.25 306.74l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M223.95 306.74l.704.67-.704-.67z"/> + <path fill="#b51010" d="M224.65 306.74l.704.67-.704-.67z"/> + <path fill="#de3110" d="M233.8 306.74l.703.67-.703-.67zM236.61 306.74l1.407 1.34-1.407-1.34z"/> + <path fill="#e75a10" d="M243.65 306.74l.703.67-.703-.67zM246.46 306.74l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M249.28 306.74l.703.67-.703-.67z"/> + <path fill="#de3110" d="M257.01 306.74l1.407 1.34-1.407-1.34z"/> + <path fill="#ef9408" d="M258.42 306.74l1.407 1.34-1.407-1.34z"/> + <path fill="#e75a10" d="M261.24 306.74l1.407 1.34-1.407-1.34z"/> + <path fill="#de3110" d="M261.94 306.74l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M264.75 306.74l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M266.16 306.74l-.703 4.686.703-4.686z"/> + <path fill="#e75a10" d="M266.86 306.74l.703.67-.703-.67z"/> + <path fill="#de3110" d="M268.27 306.74l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M268.97 306.74l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M269.68 306.74l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M271.08 306.74l.703.67-.703-.67z"/> + <path fill="#de3110" d="M273.9 306.74l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M283.04 306.74l.704.67-.704-.67z"/> + <path fill="#941808" d="M283.75 306.74l.703.67-.703-.67z"/> + <path fill="#4a1000" d="M284.45 306.74l.703.67-.703-.67z"/> + <path fill="#293100" d="M285.15 306.74l.703.67-.703-.67z"/> + <path fill="#297b00" d="M286.56 306.74l.704.67-.704-.67z"/> + <path fill="#319400" d="M287.26 306.74v.67l7.035 1.338-7.035-2.008z"/> + <path fill="#297b00" d="M290.08 306.74l.703.67-.703-.67z"/> + <path fill="#184a00" d="M291.49 306.74l.704.67-.704-.67z"/> + <path fill="#103900" d="M292.19 306.74l.703.67-.703-.67z"/> + <path fill="#296300" d="M293.13 307.18l.235.446-.235-.446m6.097-.446l.704.67-.703-.67z"/> + <path fill="#425242" d="M299.93 306.74l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M300.63 306.74l.703.67-.703-.67z"/> + <path fill="#63636b" d="M301.33 306.74l.703.67-.703-.67z"/> + <path fill="#184a00" d="M302.04 306.74l.704.67-.704-.67z"/> + <path fill="#297b00" d="M302.74 306.74l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M304.15 306.74l.703.67-.703-.67z"/> + <path fill="#efefef" d="M306.96 306.74l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M307.67 306.74l.703.67-.703-.67z"/> + <path fill="#cecece" d="M308.37 306.74l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M201.44 307.41l.703.67-.703-.67z"/> + <path fill="#397b00" d="M202.14 307.41l.704.67-.704-.67m6.332 0l.703.67-.704-.67z"/> + <path fill="#295200" d="M209.18 307.41l.703.67-.703-.67z"/> + <path fill="#396b10" d="M209.88 307.41l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M210.58 307.41l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M211.29 307.41l.704.67-.704-.67m6.33 0l.705.67-.704-.67z"/> + <path fill="#295200" d="M218.32 307.41l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M221.14 307.41l.703.67-.703-.67z"/> + <path fill="#941808" d="M221.84 307.41l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M230.28 307.41l.704.67-.704-.67z"/> + <path fill="#f7b508" d="M236.61 307.41l.703.67-.703-.67m2.11 0l.704.67-.703-.67m5.394.223l.47.223-.47-.223z"/> + <path fill="#e75a10" d="M245.06 307.41l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M246.23 307.63l.47.224-.47-.224z"/> + <path fill="#ef9408" d="M257.01 307.41l.704.67-.704-.67z"/> + <path fill="#f7b508" d="M261 307.63l.47.224-.47-.224z"/> + <path fill="#de3110" d="M264.05 307.41l.703.67-.703-.67z"/> + <path fill="#de2110" d="M268.5 307.85l.235.446-.235-.446z"/> + <path fill="#ef9408" d="M275.31 307.41l1.407 1.34-1.407-1.34z"/> + <path fill="#ef7b08" d="M277.42 307.41l.704.67-.704-.67z"/> + <path fill="#de3110" d="M280.23 307.41l.704.67-.704-.67z"/> + <path fill="#b51010" d="M285.86 307.41l.704.67-.704-.67z"/> + <path fill="#631808" d="M286.56 307.41l.704.67-.704-.67z"/> + <path fill="#293100" d="M287.26 307.41l.703.67-.703-.67z"/> + <path fill="#296300" d="M287.97 307.41l.703.67-.703-.67z"/> + <path fill="#103900" d="M293.6 307.41l.703.67-.703-.67z"/> + <path fill="#001000" d="M294.3 307.41l.704.67-.704-.67z"/> + <path fill="#103900" d="M295 307.41l.703.67-.703-.67z"/> + <path fill="#185200" d="M295.71 307.41l.704.67-.704-.67z"/> + <path fill="#297b00" d="M296.41 307.41l.703.67-.703-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#184a00" d="M300.63 307.41l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M301.33 307.41l.703.67-.703-.67z"/> + <path fill="#cecece" d="M302.04 307.41l.704.67-.704-.67z"/> + <path fill="#63636b" d="M302.74 307.41l.704.67-.704-.67z"/> + <path fill="#184a00" d="M303.91 307.63l.47.224-.47-.224z"/> + <path fill="#bdbdbd" d="M304.85 307.41l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M201.44 308.07l.703.67-.703-.67z"/> + <path fill="#397b00" d="M205.66 308.07l.703.67-.703-.67z"/> + <path fill="#396b10" d="M206.36 308.07l.703.67-.703-.67z"/> + <path fill="#526b42" d="M207.07 308.07l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M207.77 308.07l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M208.47 308.07l.703.67-.703-.67z"/> + <path fill="#dedede" d="M209.18 308.07l.703.67-.703-.67z"/> + <path fill="#efefef" d="M216.92 308.07l.703.67-.703-.67z"/> + <path fill="#213918" d="M217.62 308.07l.704.67-.704-.67z"/> + <path fill="#4a1000" d="M219.03 308.07l.704.67-.704-.67z"/> + <path fill="#941808" d="M219.73 308.07l.703.67-.703-.67z"/> + <path fill="#de3110" d="M224.42 308.3l.47.224-.47-.224z"/> + <path fill="#ef7b08" d="M229.58 308.07l.703.67-.703-.67zM233.33 308.52l.235.446-.235-.446z"/> + <path fill="#de2110" d="M235.21 308.07l.703.67-.703-.67z"/> + <path fill="#de3110" d="M235.91 308.07l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M237.32 308.07l.703.67-.703-.67z"/> + <path fill="#de3110" d="M245.76 308.07l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M246.46 308.07l.703.67-.703-.67m1.407 0l.703.67-.703-.67zM249.98 308.07l.704.67-.704-.67z"/> + <path fill="#de2110" d="M255.61 308.07v2.008h.704l-.704-2.008z"/> + <path fill="#ef9408" d="M256.31 308.07l.703.67-.703-.67z"/> + <path fill="#de3110" d="M259.12 308.07l.703.67-.703-.67z"/> + <path fill="#de2110" d="M259.83 308.07l.704 2.008-.704-2.008z"/> + <path fill="#e75a10" d="M264.05 308.07l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M264.75 308.07l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M274.6 308.07l.704.67-.704-.67z"/> + <path fill="#ffce08" d="M275.31 308.07l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M276.71 308.07l.703.67-.703-.67z"/> + <path fill="#de3110" d="M278.12 308.07l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M279.53 308.07l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M280.23 308.07l-.703 2.008.703-2.008z"/> + <path fill="#ef7b08" d="M281.17 308.52l.235.446-.235-.446z"/> + <path fill="#e75a10" d="M283.04 308.07l.704.67-.704-.67z"/> + <path fill="#de3110" d="M283.75 308.07l.703.67-.703-.67z"/> + <path fill="#941808" d="M287.97 308.07l.703.67-.703-.67z"/> + <path fill="#5a2908" d="M288.67 308.07l.704.67-.704-.67z"/> + <path fill="#184a00" d="M289.38 308.07l.704.67-.704-.67z"/> + <path fill="#297b00" d="M290.08 308.07l.703.67-.703-.67m4.455.446l.235.446-.235-.446z"/> + <path fill="#184a00" d="M295 308.07l.703.67-.703-.67z"/> + <path fill="#424242" d="M295.71 308.07l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M296.41 308.07l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M297.11 308.07l.704.67-.704-.67z"/> + <path fill="#214210" d="M297.82 308.07l.703.67-.703-.67z"/> + <path fill="#296300" d="M298.52 308.07l.703.67-.703-.67z"/> + <path fill="#297b00" d="M301.33 308.07l1.407 1.34-1.407-1.34z"/> + <path fill="#314231" d="M302.04 308.07l.704.67-.704-.67z"/> + <path fill="#dedede" d="M303.45 308.07l.703.67-.703-.67z"/> + <path fill="#63636b" d="M304.15 308.07l.703.67-.703-.67z"/> + <path fill="#101810" d="M304.85 308.07l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M201.44 308.74l.703.67-.703-.67z"/> + <path fill="#294200" d="M204.25 308.74l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M204.96 308.74l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M205.66 308.74l.703.67-.703-.67z"/> + <path fill="#52525a" d="M216.92 308.74l.703.67-.703-.67z"/> + <path fill="#311000" d="M217.62 308.74l.704.67-.704-.67z"/> + <path fill="#b51010" d="M218.32 308.74l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M221.84 308.74l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M222.54 308.74l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M223.25 308.74l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M223.95 308.74l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M224.65 308.74l.704.67-.704-.67z"/> + <path fill="#de3110" d="M230.99 308.74l.703.67-.703-.67zM237.32 308.74l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M249.04 308.97l.47.224-.47-.224z"/> + <path fill="#ef7b08" d="M256.31 308.74l.703.67-.703-.67m7.738 0l.704.67-.704-.67z"/> + <path fill="#de3110" d="M268.27 308.74l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M269.68 308.74l.703.67-.703-.67z"/> + <path fill="#de2110" d="M276.01 308.74v2.678l2.814-.67-2.814-2.008z"/> + <path fill="#e75a10" d="M278.12 308.74l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M279.53 308.74l.703.67-.703-.67m3.987.223l.468.223-.468-.223z"/> + <path fill="#de3110" d="M285.15 308.74l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M285.86 308.74l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M289.38 308.74l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M290.08 308.74l.703.67-.703-.67z"/> + <path fill="#184a00" d="M291.25 308.97l.47.224-.47-.224z"/> + <path fill="#185200" d="M292.19 308.74l.703.67-.703-.67z"/> + <path fill="#296300" d="M293.36 308.97l.47.224-.47-.224z"/> + <path fill="#319400" d="M295 308.74l.703.67-.703-.67z"/> + <path fill="#297b00" d="M295.71 308.74l.704.67-.704-.67z"/> + <path fill="#185200" d="M296.41 308.74l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M297.11 308.74l.704.67-.704-.67z"/> + <path fill="#efefef" d="M297.82 308.74l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M298.52 308.74l1.407 2.008-1.407-2.008z"/> + <path fill="#63636b" d="M299.22 308.74l.704.67-.704-.67z"/> + <path fill="#214210" d="M299.93 308.74l.704.67-.704-.67z"/> + <path fill="#297b00" d="M300.63 308.74l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M302.74 308.74l.704.67-.704-.67z"/> + <path fill="#397b00" d="M202.85 309.41l.703.67-.703-.67z"/> + <path fill="#425242" d="M203.55 309.41l.703.67-.703-.67z"/> + <path fill="#dedede" d="M204.25 309.41l.703.67-.703-.67m11.256 0l.703.67-.704-.67z"/> + <path fill="#524242" d="M216.21 309.41l.704.67-.704-.67z"/> + <path fill="#941808" d="M216.92 309.41l.703.67-.703-.67z"/> + <path fill="#de3110" d="M219.49 309.64l.47.224-.47-.224z"/> + <path fill="#f7b508" d="M221.84 309.41l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M223.25 309.41l.703.67-.703-.67z"/> + <path fill="#de2110" d="M227.47 309.41l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M228.17 309.41l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M231.22 309.86l.235.446-.235-.446z"/> + <path fill="#ef7b08" d="M246.46 309.41l.703.67-.703-.67z"/> + <path fill="#de3110" d="M247.17 309.41l.704.67-.704-.67z"/> + <path fill="#ffce08" d="M248.1 309.86l.235.446-.235-.446m2.11 0l.235.446-.234-.446z"/> + <path fill="#ef9408" d="M256.78 309.64l.47.224-.47-.224z"/> + <path fill="#de3110" d="M259.12 309.41l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M263.35 309.41l.704.67-.704-.67zM271.79 309.41l-.703 2.678.703-2.678z"/> + <path fill="#de3110" d="M273.9 309.41l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M274.84 309.86l.235.446-.235-.446z"/> + <path fill="#ef7b08" d="M275.54 309.86l.235.446-.235-.446z"/> + <path fill="#e75a10" d="M278.82 309.41l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M280.23 309.41l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M281.17 309.86l.235.446-.235-.446z"/> + <path fill="#de3110" d="M282.34 309.41l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M285.15 309.41l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M285.86 309.41l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M290.78 309.41l.703.67-.703-.67z"/> + <path fill="#210800" d="M291.49 309.41l.704.67-.704-.67z"/> + <path fill="#292921" d="M292.19 309.41l.703.67-.703-.67z"/> + <path fill="#313931" d="M292.89 309.41l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M293.6 309.41l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M294.3 309.41l1.407 1.34-1.407-1.34z"/> + <path fill="#8c8c8c" d="M295 309.41l.703.67-.703-.67z"/> + <path fill="#5a6b52" d="M295.71 309.41l.704.67-.704-.67z"/> + <path fill="#214210" d="M296.41 309.41l.703.67-.703-.67z"/> + <path fill="#184a00" d="M297.11 309.41l.704.67-.704-.67z"/> + <path fill="#293129" d="M297.82 309.41l.703.67-.703-.67z"/> + <path fill="#efefef" d="M299.93 309.41l.704.67-.704-.67z"/> + <path fill="#294221" d="M300.63 309.41l.703.67-.703-.67z"/> + <path fill="#296300" d="M302.04 309.41l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M302.74 309.41l.704.67-.704-.67z"/> + <path fill="#295200" d="M202.14 310.08l.704.67-.704-.67z"/> + <path fill="#63636b" d="M202.85 310.08l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M214.8 310.08l.703.67-.703-.67z"/> + <path fill="#631808" d="M215.51 310.08l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M216.21 310.08l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M217.62 310.08l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M218.32 310.08l.703.67-.703-.67zM220.43 310.08l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M221.84 310.08l.704.67-.704-.67z"/> + <path fill="#de3110" d="M223.25 310.08l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M226.06 310.08l.703.67-.703-.67z"/> + <path fill="#de3110" d="M229.58 310.08l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M235.21 310.08l.703.67-.703-.67z"/> + <path fill="#de2110" d="M235.91 310.08l.704.67-.704-.67z"/> + <path fill="#f7b508" d="M244.12 310.31l.47.224-.47-.224m2.11 0l.47.224-.47-.224z"/> + <path fill="#e75a10" d="M247.17 310.08l-.703 1.34.703-1.34z"/> + <path fill="#ef9408" d="M249.04 310.31l.47.224-.47-.224z"/> + <path fill="#e75a10" d="M250.68 310.08l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M255.61 310.08l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M257.01 310.08l.704.67-.704-.67z"/> + <path fill="#de3110" d="M257.72 310.08l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M261 310.31l.47.224-.47-.224z"/> + <path fill="#ef7b08" d="M263.35 310.08l.704.67-.704-.67z"/> + <path fill="#f7b508" d="M264.75 310.08l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M270.38 310.08l.703.67-.703-.67zM279.53 310.08l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M280.23 310.08l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M282.34 310.08l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#f7b508" d="M285.15 310.08l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M285.86 310.08l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M287.97 310.08l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M288.91 310.53l.235.446-.235-.446z"/> + <path fill="#7b1008" d="M292.19 310.08l.703.67-.703-.67z"/> + <path fill="#185200" d="M292.89 310.08l1.407 1.34v-1.34h-1.407z"/> + <path fill="#314231" d="M294.3 310.08l.704.67-.704-.67z"/> + <path fill="#dedede" d="M297.11 310.08l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M297.82 310.08l.703.67-.703-.67z"/> + <path fill="#63636b" d="M298.52 310.08l.703.67-.703-.67z"/> + <path fill="#6b735a" d="M300.63 310.08l.703.67-.703-.67z"/> + <path fill="#184a00" d="M302.04 310.08l.704.67-.704-.67z"/> + <path fill="#52525a" d="M202.14 310.75l.704.67-.704-.67z"/> + <path fill="#cecece" d="M214.1 310.75l.704.67-.704-.67z"/> + <path fill="#631818" d="M214.8 310.75l.703.67-.703-.67z"/> + <path fill="#de3110" d="M216.92 310.75l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M217.62 310.75l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M219.03 310.75l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M219.73 310.75l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M221.84 310.75l.704.67-.704-.67m4.22 0l.704.67-.703-.67z"/> + <path fill="#f7b508" d="M227.47 310.75l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M228.17 310.75l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M230.28 310.75l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M230.99 310.75l-.704 1.34.704-1.34zM240.83 310.75l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M243.65 310.75l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M247.17 310.75l.704.67-.704-.67z"/> + <path fill="#f7b508" d="M247.87 310.75l.703.67-.703-.67m2.11 0l.704.67-.703-.67z"/> + <path fill="#ef9408" d="M250.68 310.75l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M256.31 310.75l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M258.42 310.75l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M263.35 310.75l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M264.75 310.75l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M274.6 310.75l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M275.31 310.75l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M276.71 310.75l1.407 1.34-1.407-1.34z"/> + <path fill="#e75a10" d="M278.12 310.75l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M278.82 310.75l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M283.04 310.75l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M284.45 310.75l-.703 1.34.703-1.34zM285.86 310.75l.704.67-.704-.67z"/> + <path fill="#de3110" d="M287.26 310.75l.703.67-.703-.67z"/> + <path fill="#941808" d="M292.89 310.75l.704.67-.704-.67z"/> + <path fill="#319400" d="M294.3 310.75l.704.67-.704-.67z"/> + <path fill="#296300" d="M295.24 311.2l.235.446-.235-.446z"/> + <path fill="#314231" d="M295.71 310.75l.704.67-.704-.67z"/> + <path fill="#cecece" d="M296.41 310.75l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M300.63 310.75l.703.67-.703-.67z"/> + <path fill="#4a6342" d="M302.04 310.75l.704.67-.704-.67z"/> + <path fill="#dedede" d="M213.4 311.42l.704.67-.704-.67z"/> + <path fill="#631818" d="M214.1 311.42l.704.67-.704-.67z"/> + <path fill="#de2110" d="M219.03 311.42l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M219.73 311.42l.703.67-.703-.67z"/> + <path fill="#de3110" d="M221.14 311.42l.703.67-.703-.67z"/> + <path fill="#de2110" d="M222.07 311.87l.235.446-.235-.446z"/> + <path fill="#ef9408" d="M223.48 311.87l.235.446-.235-.446z"/> + <path fill="#e75a10" d="M223.95 311.42l1.407 1.34-1.407-1.34z"/> + <path fill="#de3110" d="M226.06 311.42l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M227.47 311.42l.704.67-.704-.67zM233.1 311.42l.704.67-.704-.67z"/> + <path fill="#de3110" d="M238.02 311.42l.703.67-.703-.67zM244.35 311.42l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M245.06 311.42l.703.67-.703-.67z"/> + <path fill="#de3110" d="M245.76 311.42l.703.67-.703-.67m1.876.223l.47.223-.47-.223m2.814 0l.47.223-.47-.223zM259.12 311.42l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M259.83 311.42l.704.67-.704-.67z"/> + <path fill="#de3110" d="M260.53 311.42l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M262.64 311.42l.703.67-.703-.67m1.407 0l.703.67-.703-.67z"/> + <path fill="#de3110" d="M264.75 311.42v.67h2.11l-2.11-.67m3.518 0l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M268.97 311.42l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M274.6 311.42l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M279.53 311.42l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M281.17 311.87l.235.446-.235-.446z"/> + <path fill="#f7b508" d="M282.34 311.42l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M285.86 311.42l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M293.6 311.42l.703.67-.703-.67z"/> + <path fill="#103900" d="M294.3 311.42l.704.67-.704-.67z"/> + <path fill="#297b00" d="M295.71 311.42l.704.67-.704-.67z"/> + <path fill="#185200" d="M296.41 311.42l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M297.11 311.42l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M300.87 311.87l.235.446-.235-.446z"/> + <path fill="#296300" d="M301.33 311.42l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M302.04 311.42l.704.67-.704-.67m-88.64.67l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M214.1 312.09l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M217.62 312.09l.704.67-.704-.67z"/> + <path fill="#ffce08" d="M218.32 312.09l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M221.14 312.09l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M222.54 312.09l.703.67-.703-.67z"/> + <path fill="#de2110" d="M223.95 312.09l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M225.36 312.09l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M226.76 312.09l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M227.47 312.09l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M230.99 312.09l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M231.69 312.09l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M232.39 312.09l.703.67-.703-.67m42.913 0l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M276.01 312.09l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M276.71 312.09l.703.67-.703-.67z"/> + <path fill="#de3110" d="M277.42 312.09l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M278.82 312.09l.703.67-.703-.67m1.407 0l.704.67-.703-.67z"/> + <path fill="#de3110" d="M281.64 312.09l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M282.57 312.54l.235.446-.235-.446z"/> + <path fill="#e75a10" d="M283.51 312.31l.47.224-.47-.224z"/> + <path fill="#de2110" d="M285.86 312.09l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M286.56 312.09l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M287.97 312.09l.703.67-.703-.67zM289.61 312.54l.235.446-.235-.446z"/> + <path fill="#736b6b" d="M294.3 312.09l.704.67-.704-.67z"/> + <path fill="#cecece" d="M295 312.09l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M295.71 312.09l.704.67-.704-.67z"/> + <path fill="#294221" d="M296.41 312.09l.703.67-.703-.67z"/> + <path fill="#082108" d="M297.11 312.09l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M297.82 312.09l.703.67-.703-.67z"/> + <path fill="#103900" d="M301.33 312.09l.703.67-.703-.67z"/> + <path fill="#dedede" d="M302.04 312.09l.704.67-.704-.67z"/> + <path fill="#6b4242" d="M213.4 312.76l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M219.73 312.76l.703.67-.703-.67z"/> + <path fill="#ef9408" d="M220.43 312.76l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M222.54 312.76l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M225.36 312.76l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M226.76 312.76l.704.67-.704-.67z"/> + <path fill="#de3110" d="M227.47 312.76l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M242.94 312.76v.67h4.22l-4.22-.67z"/> + <path fill="#7b1008" d="M247.17 312.76l.704.67-.704-.67z"/> + <path fill="#631808" d="M247.87 312.76v.67h13.366l-13.366-.67z"/> + <path fill="#ad1810" d="M261.24 312.76v.67h4.22l-4.22-.67z"/> + <path fill="#ce2110" d="M265.46 312.76l.703.67-.703-.67z"/> + <path fill="#de3110" d="M280.23 312.76l.704.67-.704-.67z"/> + <path fill="#ef7b08" d="M280.93 312.76l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M281.64 312.76l.703.67-.703-.67z"/> + <path fill="#de3110" d="M283.51 312.98l.47.224-.47-.224z"/> + <path fill="#f7b508" d="M285.15 312.76l1.407 1.34-1.407-1.34z"/> + <path fill="#e75a10" d="M285.86 312.76l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M287.97 312.76l.703.67-.703-.67z"/> + <path fill="#631818" d="M294.3 312.76l.704.67-.704-.67z"/> + <path fill="#cecece" d="M297.35 313.21l.235.446-.235-.446z"/> + <path fill="#7b7373" d="M297.82 312.76l.703.67-.703-.67z"/> + <path fill="#dedede" d="M298.52 312.76l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#52525a" d="M301.33 312.76l.703.67-.703-.67z"/> + <path fill="#dedede" d="M204.96 313.43l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M205.66 313.43l.703.67-.703-.67z"/> + <path fill="#6b4242" d="M206.36 313.43l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M209.18 313.43l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M209.88 313.43l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M210.58 313.43l.704.67-.704-.67z"/> + <path fill="#6b2908" d="M213.4 313.43l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M218.32 313.43l.703.67-.703-.67z"/> + <path fill="#ffce08" d="M219.26 313.88l.235.446-.235-.446z"/> + <path fill="#f7b508" d="M221.14 313.43l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M223.95 313.43l.704.67-.704-.67z"/> + <path fill="#de3110" d="M224.65 313.43l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M234.27 313.65l.47.224-.47-.224z"/> + <path fill="#941808" d="M235.21 313.43l.703.67-.703-.67z"/> + <path fill="#631808" d="M235.91 313.43l.704.67-.704-.67z"/> + <path fill="#733129" d="M236.61 313.43l.703.67-.703-.67z"/> + <path fill="#734a42" d="M237.79 313.65l.47.224-.47-.224z"/> + <path fill="#845a52" d="M238.72 313.43l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M239.43 313.43v.67h2.814l-2.814-.67z"/> + <path fill="#ada5a5" d="M242.24 313.43l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M242.94 313.43v.67h2.11l-2.11-.67z"/> + <path fill="#cecece" d="M245.06 313.43l.703.67-.703-.67z"/> + <path fill="#63636b" d="M245.76 313.43l.703.67-.703-.67z"/> + <path fill="#295200" d="M246.46 313.43l2.11 2.008-2.11-2.008z"/> + <path fill="#428c00" d="M247.17 313.43c1.85 2.222 3.342 3.202 6.332 2.678l-6.332-2.678z"/> + <path fill="#397b00" d="M251.39 313.43l1.407 3.347h1.408l-2.814-3.347z"/> + <path fill="#63636b" d="M252.09 313.43l2.11 2.008-2.11-2.008z"/> + <path fill="#cecece" d="M254.9 313.43l-.703 1.34.703-1.34z"/> + <path fill="#214210" d="M255.61 313.43l.704.67-.704-.67z"/> + <path fill="#319400" d="M256.31 316.78l5.628-2.678c-2.867-1.142-6.19-.818-5.628 2.678z"/> + <path fill="#185200" d="M261.94 313.43l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M262.64 313.43l.703.67-.703-.67z"/> + <path fill="#946b63" d="M268.97 313.43l.704.67-.704-.67z"/> + <path fill="#734a42" d="M270.15 313.65l.47.224-.47-.224z"/> + <path fill="#8c3939" d="M271.08 313.43l.703.67-.703-.67z"/> + <path fill="#631808" d="M271.79 313.43l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M272.49 313.43l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M273.66 313.65l.47.224-.47-.224z"/> + <path fill="#ce2110" d="M274.6 313.43l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M284.92 313.65l.47.224-.47-.224m1.64-.223l.705.67-.704-.67z"/> + <path fill="#ef7b08" d="M287.26 313.43l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M287.97 313.43l.703.67-.703-.67z"/> + <path fill="#de3110" d="M289.38 313.43l.704.67-.704-.67z"/> + <path fill="#631808" d="M294.3 313.43l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M297.82 313.43l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M298.52 313.43l.703.67-.703-.67zM302.04 313.43l.704.67-.704-.67z"/> + <path fill="#cecece" d="M302.74 313.43l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M204.25 314.1l.703.67-.703-.67z"/> + <path fill="#631818" d="M204.96 314.1l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M205.66 314.1l.703.67-.703-.67z"/> + <path fill="#de2110" d="M204.96 320.12c7.344-4.21 16.793 7.4 22.512-2.008l-.704-.67c-2.337.82-5.164 2.753-7.735 2.393-1.72-.24-19.48-11.747-14.073.285z"/> + <path fill="#bd2110" d="M209.88 314.1l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M210.58 314.1l.704.67-.704-.67z"/> + <path fill="#631818" d="M211.29 314.1l.704.67-.704-.67z"/> + <path fill="#63636b" d="M211.99 314.1l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M212.69 314.1l.703.67-.703-.67z"/> + <path fill="#734a42" d="M213.4 314.1l.704.67-.704-.67z"/> + <path fill="#de3110" d="M218.32 314.1l.703.67-.703-.67z"/> + <path fill="#ef7b08" d="M219.73 314.1l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M228.17 314.1l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M228.87 314.1l.703.67-.703-.67z"/> + <path fill="#631808" d="M229.58 314.1l.703.67-.703-.67z"/> + <path fill="#733129" d="M230.28 314.1l.704.67-.704-.67z"/> + <path fill="#734a42" d="M230.99 314.1l.703.67-.703-.67z"/> + <path fill="#8c6363" d="M231.69 314.1l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M232.86 314.32l.47.224-.47-.224z"/> + <path fill="#bdbdbd" d="M234.27 314.32l.47.224-.47-.224z"/> + <path fill="#efefef" d="M235.21 314.1l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M246.46 314.1l2.11 2.008-2.11-2.008z"/> + <path fill="#103910" d="M254.9 314.1l.703.67-.703-.67z"/> + <path fill="#214210" d="M261.24 314.1l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M261.94 314.1l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M273.66 314.32l.47.224-.47-.224z"/> + <path fill="#8c8c8c" d="M275.07 314.32l.47.224-.47-.224z"/> + <path fill="#8c7373" d="M276.01 314.1l.703.67-.703-.67z"/> + <path fill="#734a42" d="M276.71 314.1l.703.67-.703-.67z"/> + <path fill="#733939" d="M277.42 314.1l.704.67-.704-.67z"/> + <path fill="#631808" d="M278.12 314.1l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M278.82 314.1l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M279.53 314.1l.703.67-.703-.67z"/> + <path fill="#e75a10" d="M285.86 314.1l.704.67-.704-.67m2.345.446l.235.446-.235-.446z"/> + <path fill="#6b2908" d="M294.3 314.1l.704.67-.704-.67z"/> + <path fill="#cecece" d="M295 314.1l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M295.71 314.1l.704.67-.704-.67z"/> + <path fill="#733129" d="M296.41 314.1l.703.67-.703-.67z"/> + <path fill="#941808" d="M297.11 314.1l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M297.82 314.1l.703.67-.703-.67z"/> + <path fill="#de2110" d="M282.34 317.45c-.974 9.363 16.566.076 21.105 2.678 2.42-5.114-3.23-7.393-7.61-4.728-2.097 1.277-3.144 3.904-5.784 4.367-2.602.456-5.402-1.404-7.71-2.317z"/> + <path fill="#ce2110" d="M302.04 314.1l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M302.74 314.1l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M303.45 314.1l.703.67-.703-.67m-99.896.67l.703.67-.703-.67z"/> + <path fill="#631808" d="M204.25 314.77l.703.67-.703-.67z"/> + <path fill="#941808" d="M212.69 314.77l.703.67-.703-.67z"/> + <path fill="#310000" d="M213.4 314.77l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M214.1 314.77l.704.67-.704-.67z"/> + <path fill="#ef9408" d="M219.03 314.77l.704.67-.704-.67z"/> + <path fill="#e75a10" d="M219.73 314.77l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M223.95 314.77l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M224.65 314.77l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M225.36 314.77l.703.67-.703-.67z"/> + <path fill="#6b2908" d="M226.06 314.77l.703.67-.703-.67z"/> + <path fill="#734a42" d="M226.76 314.77l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M227.47 314.77l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M228.17 314.77l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M228.87 314.77l.703.67-.703-.67z"/> + <path fill="#293129" d="M254.2 314.77l.703.67-.703-.67z"/> + <path fill="#297b00" d="M254.9 314.77l1.407 2.008-1.407-2.008m4.925 0l-.704 1.34.705-1.34z"/> + <path fill="#103910" d="M260.53 314.77l.704.67-.704-.67z"/> + <path fill="#cecece" d="M261.24 314.77l-.704 1.34.704-1.34z"/> + <path fill="#bdbdbd" d="M278.82 314.77l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M279.53 314.77l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M280.23 314.77l.704.67-.704-.67z"/> + <path fill="#734a42" d="M280.93 314.77l.703.67-.703-.67z"/> + <path fill="#733129" d="M281.64 314.77l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M282.34 314.77l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M283.04 314.77l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M283.75 314.77l.703.67-.703-.67z"/> + <path fill="#f7b508" d="M288.67 314.77l.704.67-.704-.67z"/> + <path fill="#420000" d="M294.3 314.77l.704.67-.704-.67z"/> + <path fill="#941808" d="M295 314.77l.703.67-.703-.67m8.442 0l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M304.15 314.77l.703.67-.703-.67z"/> + <path fill="#efefef" d="M202.85 315.44l.703.67-.703-.67z"/> + <path fill="#842118" d="M203.55 315.44l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M213.4 315.44l.704.67-.704-.67z"/> + <path fill="#631808" d="M214.1 315.44l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M221.84 315.44l.704.67-.704-.67z"/> + <path fill="#520808" d="M224.65 315.44l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M225.36 315.44l.703.67-.703-.67z"/> + <path fill="#214210" d="M248.57 315.44l.703.67-.703-.67z"/> + <path fill="#103900" d="M254.2 315.44l.703.67-.703-.67z"/> + <path fill="#293129" d="M259.83 315.44l.704.67-.704-.67z"/> + <path fill="#dedede" d="M282.34 315.44l.703.67-.703-.67z"/> + <path fill="#391810" d="M283.04 315.44l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M283.75 315.44l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M284.45 315.44l.703.67-.703-.67z"/> + <path fill="#631808" d="M285.15 315.44l.703.67-.703-.67z"/> + <path fill="#941808" d="M285.86 315.44l1.407 1.34-1.407-1.34m7.738 0l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M294.3 315.44l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M304.15 315.44l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M304.85 315.44l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M202.85 316.11l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M203.55 316.11l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M214.1 316.11l.704.67-.704-.67z"/> + <path fill="#b51010" d="M214.8 316.11l.703.67-.703-.67z"/> + <path fill="#941808" d="M221.61 316.33l.47.224-.47-.224z"/> + <path fill="#631818" d="M225.36 316.11l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M226.06 316.11l.703.67-.703-.67z"/> + <path fill="#cecece" d="M245.76 316.11l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M246.46 316.11l.703.67-.703-.67z"/> + <path fill="#734a42" d="M247.17 316.11v.67h2.11l-2.11-.67z"/> + <path fill="#293100" d="M249.28 316.11l.703.67-.703-.67z"/> + <path fill="#397b00" d="M249.98 316.11l.704.67-.704-.67z"/> + <path fill="#295200" d="M254.2 316.11l.703.67-.703-.67z"/> + <path fill="#082108" d="M254.9 316.11l.703.67-.703-.67z"/> + <path fill="#296300" d="M257.72 316.11l.703.67-.703-.67z"/> + <path fill="#184a00" d="M258.42 316.11l.704.67-.704-.67z"/> + <path fill="#392100" d="M259.12 316.11l.703.67-.703-.67z"/> + <path fill="#733939" d="M259.83 316.11l.704.67-.704-.67z"/> + <path fill="#734a42" d="M260.53 316.11l.704.67-.704-.67z"/> + <path fill="#736b6b" d="M261.24 316.11l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M261.94 316.11l.703.67-.703-.67z"/> + <path fill="#cecece" d="M281.64 316.11l-.703 1.34.703-1.34z"/> + <path fill="#5a1010" d="M282.34 316.11l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M283.04 316.11l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M285.86 316.11l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M292.89 316.11l1.407 1.34-1.407-1.34z"/> + <path fill="#5a1008" d="M293.6 316.11l.703.67-.703-.67z"/> + <path fill="#736b6b" d="M304.85 316.11l.703.67-.703-.67z"/> + <path fill="#8c6363" d="M202.85 316.78l.703.67-.703-.67z"/> + <path fill="#520808" d="M214.8 316.78l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M215.51 316.78l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M224.65 316.78l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M225.36 316.78l-.704 1.34.704-1.34z"/> + <path fill="#100808" d="M226.06 316.78l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M226.76 316.78l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M242.94 316.78l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M243.65 316.78l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M244.35 316.78l.704.67-.704-.67z"/> + <path fill="#52525a" d="M245.06 316.78l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M245.76 316.78l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M246.46 316.78l.703.67-.703-.67z"/> + <path fill="#de2110" d="M245.76 320.12l5.628.67c-.344-4.107-4.818-5.11-5.628-.67z"/> + <path fill="#b51010" d="M249.98 316.78l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M250.68 316.78l.703.67-.703-.67z"/> + <path fill="#292100" d="M251.39 316.78l.703.67-.703-.67z"/> + <path fill="#422100" d="M252.09 316.78l.703.67-.703-.67z"/> + <path fill="#941808" d="M252.79 316.78l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M253.5 316.78v.67h2.11l-2.11-.67z"/> + <path fill="#311000" d="M255.61 316.78l.704.67-.704-.67z"/> + <path fill="#293100" d="M256.31 316.78l.703.67-.703-.67z"/> + <path fill="#631808" d="M257.01 316.78l.704.67-.704-.67z"/> + <path fill="#941808" d="M257.72 316.78l.703.67-.703-.67z"/> + <path fill="#de2110" d="M257.01 317.45l.704 3.347 4.924-.67c-.576-3.284-2.52-3.348-5.628-2.677z"/> + <path fill="#b51010" d="M261.94 316.78l.703.67-.703-.67z"/> + <path fill="#423131" d="M262.64 316.78l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M263.35 316.78l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M264.05 316.78l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M264.75 316.78l.703.67-.703-.67z"/> + <path fill="#efefef" d="M265.46 316.78l.703.67-.703-.67z"/> + <path fill="#101810" d="M281.64 316.78l.703.67-.703-.67z"/> + <path fill="#631808" d="M282.34 316.78l.703.67-.703-.67z"/> + <path fill="#b51010" d="M283.04 316.78l.704.67-.704-.67z"/> + <path fill="#520808" d="M292.89 316.78l.704.67-.704-.67z"/> + <path fill="#734a42" d="M305.09 317.22l.235.446-.235-.446z"/> + <path fill="#8c8c8c" d="M202.85 317.45l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M214.8 317.45l.703.67-.703-.67z"/> + <path fill="#631808" d="M215.51 317.45l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M223.25 317.45l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M223.95 317.45l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M225.36 317.45l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M226.76 317.45l.704.67-.704-.67z"/> + <path fill="#cecece" d="M227.47 317.45l.704.67-.704-.67z"/> + <path fill="#efefef" d="M240.13 317.45l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M240.83 317.45l.703.67-.703-.67z"/> + <path fill="#736b6b" d="M241.54 317.45l.704.67-.704-.67z"/> + <path fill="#631818" d="M242.24 317.45l.703.67-.703-.67z"/> + <path fill="#941808" d="M242.94 317.45l.703.67-.703-.67z"/> + <path fill="#b51010" d="M243.65 317.45l.703.67-.703-.67z"/> + <path fill="#de2110" d="M244.35 317.45l-2.814.67v4.016c2.433-.982 3.837-2.122 2.814-4.686z"/> + <path fill="#5a1008" d="M245.06 317.45l.703.67-.703-.67z"/> + <path fill="#520808" d="M251.39 317.45l.703.67-.703-.67z"/> + <path fill="#de2110" d="M252.09 317.45v4.016h4.22v-4.016h-4.22z"/> + <path fill="#520808" d="M256.31 317.45l.703.67-.703-.67z"/> + <path fill="#941808" d="M262.64 317.45l.703.67-.703-.67z"/> + <path fill="#b51010" d="M263.35 317.45l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M264.05 317.45l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M264.75 317.45l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M265.46 317.45l.703.67-.703-.67z"/> + <path fill="#6b4242" d="M266.16 317.45l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M266.86 317.45l.703.67-.703-.67z"/> + <path fill="#dedede" d="M267.57 317.45l.703.67-.703-.67z"/> + <path fill="#efefef" d="M280.23 317.45l.704.67-.704-.67z"/> + <path fill="#5a1010" d="M280.93 317.45l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M281.64 317.45l.703.67-.703-.67z"/> + <path fill="#941808" d="M283.04 317.45l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M283.75 317.45l.703.67-.703-.67z"/> + <path fill="#941808" d="M284.45 317.45l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M292.19 317.45l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M292.89 317.45l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M203.08 318.56l.235.446-.235-.446z"/> + <path fill="#ad1810" d="M203.55 318.12l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M207.07 318.12l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M207.77 318.12l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M215.51 318.12l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M216.21 318.12l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M221.84 318.12l.704.67-.704-.67z"/> + <path fill="#520808" d="M222.54 318.12l.703.67-.703-.67z"/> + <path fill="#941808" d="M223.25 318.12l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M227.47 318.12l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M240.37 318.56l.235.446-.235-.446z"/> + <path fill="#941808" d="M240.83 318.12l.703.67-.703-.67z"/> + <path fill="#631808" d="M245.06 318.12v2.678h.703l-.703-2.678m6.33 0v2.678h.705l-.704-2.678z"/> + <path fill="#941808" d="M256.31 318.12l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M257.01 318.12l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M262.64 318.12l-2.11 3.347h2.11v-1.34l1.407.67v-2.677h-1.407z"/> + <path fill="#de2110" d="M264.05 318.12v3.347l2.814.67.703-3.348-3.517-.67z"/> + <path fill="#bd2110" d="M266.86 318.12l.703.67-.703-.67z"/> + <path fill="#6b4242" d="M267.57 318.12l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M280.23 318.12l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M280.93 318.12l.703.67-.703-.67m3.518 0l.703.67-.702-.67z"/> + <path fill="#520808" d="M285.15 318.12l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M285.86 318.12l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M291.49 318.12l.704.67-.704-.67z"/> + <path fill="#631808" d="M292.19 318.12l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M300.4 318.34l.47.224-.47-.224m3.752-.223l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M304.85 318.12l.703.67-.703-.67z"/> + <path fill="#cecece" d="M197.92 318.78l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M198.62 318.78l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M202.14 318.78l.704.67-.704-.67z"/> + <path fill="#5a1010" d="M203.55 318.78l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M205.66 318.78l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M206.36 318.78l.703.67-.703-.67z"/> + <path fill="#631808" d="M207.07 318.78l.703.67-.703-.67z"/> + <path fill="#941808" d="M207.77 318.78l.704.67-.704-.67z"/> + <path fill="#631808" d="M208.47 318.78l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M209.18 318.78l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M209.88 318.78l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M210.58 318.78l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M216.21 318.78l.704.67-.704-.67z"/> + <path fill="#941808" d="M217.15 319.23l.235.446-.235-.446z"/> + <path fill="#b51010" d="M220.43 318.78l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M221.14 318.78l.703.67-.703-.67z"/> + <path fill="#631808" d="M221.84 318.78l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M222.54 318.78l.703.67-.703-.67z"/> + <path fill="#941808" d="M226.76 318.78l.704.67-.704-.67z"/> + <path fill="#cecece" d="M227.47 318.78l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M240.83 318.78l.703.67-.703-.67m15.477 0v1.34h1.407v-1.34h-1.407z"/> + <path fill="#8c8c8c" d="M267.8 319.23l.235.446-.235-.446z"/> + <path fill="#dedede" d="M280.23 318.78l.704.67-.704-.67z"/> + <path fill="#631808" d="M280.93 318.78l.703.67-.703-.67z"/> + <path fill="#941808" d="M285.86 318.78l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M286.56 318.78l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M287.26 318.78l.703.67-.703-.67z"/> + <path fill="#b51010" d="M290.78 318.78l.703.67-.703-.67z"/> + <path fill="#520808" d="M291.49 318.78l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M292.19 318.78l.703.67-.703-.67m4.925 0l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M297.82 318.78l.703.67-.703-.67z"/> + <path fill="#631808" d="M298.99 319.01l.47.224-.47-.224z"/> + <path fill="#941808" d="M299.93 318.78l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M300.63 318.78l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M301.33 318.78l.703.67-.703-.67z"/> + <path fill="#b51010" d="M302.04 318.78l.704.67-.704-.67z"/> + <path fill="#520808" d="M304.15 318.78l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M305.32 319.01l.47.224-.47-.224z"/> + <path fill="#bdbdbd" d="M309.54 319.01l.47.224-.47-.224z"/> + <path fill="#ada5a5" d="M195.81 319.45l.703.67-.703-.67z"/> + <path fill="#63636b" d="M196.51 319.45l.704.67-.704-.67z"/> + <path fill="#733129" d="M197.22 319.45l.703.67-.703-.67z"/> + <path fill="#941808" d="M197.92 319.45l.703.67-.703-.67z"/> + <path fill="#de2110" d="M194.4 321.46c2.827 5.764 17.61 7.367 21.105 1.34-8.182.983-13.45-5.158-21.105-1.34z"/> + <path fill="#ce2110" d="M202.14 319.45l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M202.85 319.45l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M203.55 319.45l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M206.36 319.45l.703.67-.703-.67z"/> + <path fill="#de2110" d="M214.8 322.13c-6.6-5.067-10.878 1.308 0 0z"/> + <path fill="#ce2110" d="M209.88 319.45l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M210.58 319.45l.704.67-.704-.67z"/> + <path fill="#520808" d="M211.29 319.45l.704.67-.704-.67z"/> + <path fill="#941808" d="M211.99 319.45l.703.67-.703-.67zM220.43 319.45l.704.67-.704-.67z"/> + <path fill="#ce2110" d="M221.14 319.45l.703.67-.703-.67z"/> + <path fill="#5a2121" d="M226.76 319.45l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M240.83 319.45l.703.67-.703-.67z"/> + <path fill="#736b6b" d="M280.93 319.45l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M281.64 319.45l.703.67-.703-.67z"/> + <path fill="#941808" d="M287.26 319.45l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M287.97 319.45l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M295.71 319.45l.704.67-.704-.67z"/> + <path fill="#631808" d="M296.88 319.68l.47.224-.47-.224z"/> + <path fill="#bd2110" d="M297.82 319.45l.703.67-.703-.67z"/> + <path fill="#de2110" d="M293.6 321.46v.67c3.633.437 7.668 1.733 8.442-2.678l-8.442 2.008z"/> + <path fill="#520808" d="M302.04 319.45l.704.67-.704-.67z"/> + <path fill="#b51010" d="M303.45 319.45l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M304.15 319.45l-.703 1.34.703-1.34z"/> + <path fill="#ad1810" d="M304.85 319.45l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M305.56 319.45l.704.67-.704-.67z"/> + <path fill="#de2110" d="M292.89 322.8c3.475 5.997 18.307 4.366 21.105-1.34-7.655-3.817-12.922 2.324-21.105 1.34z"/> + <path fill="#941808" d="M309.78 319.45l.703.67-.703-.67z"/> + <path fill="#6b2908" d="M310.48 319.45l.703.67-.703-.67z"/> + <path fill="#736b6b" d="M311.18 319.45l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M311.89 319.45l.703.67-.703-.67z"/> + <path fill="#efefef" d="M312.59 319.45l.703.67-.703-.67z"/> + <path fill="#cecece" d="M194.4 320.12l-1.407 2.008 1.407-2.008z"/> + <path fill="#5a3131" d="M195.11 320.12l.703.67-.703-.67z"/> + <path fill="#941808" d="M195.81 320.12l.703.67-.703-.67z"/> + <path fill="#631808" d="M204.25 320.12l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M211.99 320.12l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M213.16 320.35l.47.224-.47-.224z"/> + <path fill="#bd2110" d="M214.1 320.12l.704.67-.704-.67z"/> + <path fill="#631818" d="M226.06 320.12l.703.67-.703-.67z"/> + <path fill="#cecece" d="M226.76 320.12l-.703 1.34.703-1.34z"/> + <path fill="#631808" d="M240.83 320.12l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M245.76 320.12v.67l2.814.67-2.814-1.34z"/> + <path fill="#941808" d="M256.31 320.12l1.407 1.34-1.407-1.34z"/> + <path fill="#ce2110" d="M257.01 320.12l.704.67-.704-.67z"/> + <path fill="#b51010" d="M259.83 320.12l.704.67-.704-.67z"/> + <path fill="#941808" d="M262.64 320.12l1.407 1.34-1.407-1.34z"/> + <path fill="#ad1810" d="M266.86 320.12l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M267.57 320.12l.703.67-.703-.67z"/> + <path fill="#efefef" d="M280.93 320.12l.703.67-.703-.67z"/> + <path fill="#5a2121" d="M281.64 320.12l1.407 1.34-1.407-1.34z"/> + <path fill="#ce2110" d="M293.6 320.12l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M294.3 320.12l-.703 1.34.703-1.34z"/> + <path fill="#5a1008" d="M295 320.12l.703.67-.703-.67z"/> + <path fill="#941808" d="M295.71 320.12l.704.67-.704-.67z"/> + <path fill="#b51010" d="M302.04 320.12l.704.67-.704-.67z"/> + <path fill="#631808" d="M302.74 320.12l.704.67-.704-.67z"/> + <path fill="#b51010" d="M311.89 320.12l.703.67-.703-.67z"/> + <path fill="#5a2121" d="M312.59 320.12l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M313.29 320.12l.703.67-.703-.67z"/> + <path fill="#631818" d="M194.4 320.79l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M204.25 320.79l.703.67-.703-.67z"/> + <path fill="#210800" d="M204.96 320.79l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M205.66 320.79l-.704 1.34.704-1.34z"/> + <path fill="#ce2110" d="M213.4 320.79l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M214.1 320.79l.704.67-.704-.67z"/> + <path fill="#420000" d="M214.8 320.79l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M215.51 320.79l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M224.65 320.79l.704.67-.704-.67z"/> + <path fill="#5a1010" d="M225.36 320.79l.703.67-.703-.67z"/> + <path fill="#734a42" d="M240.83 320.79l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M244.35 320.79l.704.67-.704-.67z"/> + <path fill="#310000" d="M245.06 320.79l.703.67-.703-.67z"/> + <path fill="#941808" d="M245.99 321.24l.235.446-.235-.446z"/> + <path fill="#b51010" d="M246.93 321.02l.47.224-.47-.224z"/> + <path fill="#7b1008" d="M248.57 320.79l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M249.28 320.79l.703.67-.703-.67z"/> + <path fill="#631808" d="M249.98 320.79l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M250.68 320.79l.703.67-.703-.67z"/> + <path fill="#520808" d="M251.39 320.79l.703.67-.703-.67z"/> + <path fill="#420000" d="M256.31 320.79l.703.67-.703-.67z"/> + <path fill="#631808" d="M257.72 320.79v.67h2.11l-2.11-.67z"/> + <path fill="#941808" d="M259.83 320.79l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M261.24 320.79l.703.67-.703-.67z"/> + <path fill="#310000" d="M262.64 320.79l.703.67-.703-.67z"/> + <path fill="#941808" d="M266.86 320.79l.703.67-.703-.67z"/> + <path fill="#cecece" d="M267.57 320.79l.703.67-.703-.67m14.07 0l.703.67-.703-.67z"/> + <path fill="#b51010" d="M283.04 320.79l.704.67-.704-.67m9.145 0l.704.67-.705-.67z"/> + <path fill="#520808" d="M292.89 320.79l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M294.3 320.79l.704.67-.704-.67m7.738 0l.704.67-.704-.67z"/> + <path fill="#210800" d="M302.74 320.79l.704.67-.704-.67z"/> + <path fill="#bd2110" d="M303.45 320.79l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M313.29 320.79l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M314 320.79l.704.67-.704-.67z"/> + <path fill="#631818" d="M193.7 321.46l3.518 4.016-3.518-4.016z"/> + <path fill="#420000" d="M205.66 321.46l.703.67-.703-.67z"/> + <path fill="#842118" d="M214.8 321.46l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M215.51 321.46l.703.67-.703-.67z"/> + <path fill="#524242" d="M216.21 321.46l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M216.92 321.46l.703.67-.703-.67z"/> + <path fill="#b51010" d="M217.62 321.46l.704.67-.704-.67m5.628 0l.703.67-.702-.67z"/> + <path fill="#5a1008" d="M223.95 321.46l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M224.65 321.46l.704.67-.704-.67z"/> + <path fill="#efefef" d="M225.36 321.46l.703.67-.703-.67z"/> + <path fill="#845a52" d="M240.83 321.46l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M242.24 321.46l.703.67-.703-.67z"/> + <path fill="#631818" d="M242.94 321.46l.703.67-.703-.67z"/> + <path fill="#7b5252" d="M243.65 321.46l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M244.35 321.46l.704.67-.704-.67z"/> + <path fill="#63636b" d="M245.06 321.46l.703.67-.703-.67z"/> + <path fill="#de2110" d="M246.46 321.46v.67h2.814l-2.814-.67z"/> + <path fill="#b51010" d="M249.28 321.46l.703.67-.703-.67z"/> + <path fill="#941808" d="M249.98 321.46l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M250.68 321.46l.703.67-.703-.67z"/> + <path fill="#392100" d="M251.39 321.46l.703.67-.703-.67z"/> + <path fill="#292100" d="M252.09 321.46l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M252.79 321.46l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M253.97 321.69l.47.224-.47-.224z"/> + <path fill="#941808" d="M254.9 321.46l.703.67-.703-.67z"/> + <path fill="#311000" d="M255.61 321.46l.704.67-.704-.67z"/> + <path fill="#292100" d="M256.31 321.46l.703.67-.703-.67z"/> + <path fill="#4a1000" d="M257.01 321.46l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M257.72 321.46l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M258.42 321.46l.704.67-.704-.67z"/> + <path fill="#de2110" d="M259.12 321.46v.67h2.814l-2.814-.67z"/> + <path fill="#b51010" d="M261.94 321.46l.703.67-.703-.67z"/> + <path fill="#5a1010" d="M262.64 321.46l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M263.35 321.46l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M264.05 321.46l.703.67-.703-.67z"/> + <path fill="#6b2131" d="M264.75 321.46l.703.67-.703-.67z"/> + <path fill="#941808" d="M265.46 321.46l.703.67-.703-.67z"/> + <path fill="#631808" d="M266.86 321.46l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M283.04 321.46l.704.67-.704-.67z"/> + <path fill="#631818" d="M283.75 321.46l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M284.45 321.46l.703.67-.703-.67z"/> + <path fill="#b51010" d="M290.08 321.46l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M290.78 321.46l.703.67-.703-.67z"/> + <path fill="#733939" d="M291.49 321.46l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M292.19 321.46l.703.67-.703-.67z"/> + <path fill="#631818" d="M292.89 321.46l.704.67-.704-.67z"/> + <path fill="#941808" d="M314 321.46l.704.67-.704-.67z"/> + <path fill="#ada5a5" d="M314.7 321.46l.703.67-.703-.67z"/> + <path fill="#63636b" d="M193 322.13l2.814 2.678L193 322.13z"/> + <path fill="#941808" d="M205.66 322.13l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M206.36 322.13l1.407 1.34-1.407-1.34z"/> + <path fill="#ce2110" d="M211.99 322.13l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M212.93 322.58l.235.446-.235-.446z"/> + <path fill="#631808" d="M213.87 322.35l.47.224-.47-.224z"/> + <path fill="#7b1008" d="M214.8 322.13l.703.67-.703-.67z"/> + <path fill="#392121" d="M215.51 322.13l.703.67-.703-.67z"/> + <path fill="#efefef" d="M216.92 322.13l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M217.62 322.13l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M218.32 322.13l.703.67-.703-.67z"/> + <path fill="#6b2131" d="M219.03 322.13l.704.67-.704-.67z"/> + <path fill="#631808" d="M219.73 322.13l.703.67-.703-.67z"/> + <path fill="#9c4239" d="M220.43 322.13l.704.67-.704-.67z"/> + <path fill="#ad524a" d="M221.14 322.13l.703.67-.703-.67z"/> + <path fill="#734a42" d="M221.84 322.13l.704.67-.704-.67z"/> + <path fill="#63636b" d="M222.54 322.13l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M223.25 322.13l.703.67-.703-.67z"/> + <path fill="#efefef" d="M223.95 322.13l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M240.83 322.13l.703.67-.703-.67z"/> + <path fill="#6b2131" d="M241.54 322.13l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M242.24 322.13l.703.67-.703-.67z"/> + <path fill="#efefef" d="M242.94 322.13l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#313931" d="M245.76 322.13l.703.67-.703-.67z"/> + <path fill="#184a00" d="M246.46 322.13v.67h2.814l-2.814-.67z"/> + <path fill="#296300" d="M249.28 322.13l.703.67-.703-.67z"/> + <path fill="#297b00" d="M249.98 322.13l-.703 2.678.703-2.678z"/> + <path fill="#319400" d="M251.15 322.35l.47.224-.47-.224z"/> + <path fill="#214210" d="M252.09 322.13l-.703 1.34.703-1.34z"/> + <path fill="#9c9494" d="M252.79 322.13l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M253.97 322.35l.47.224-.47-.224z"/> + <path fill="#efefef" d="M254.9 322.13l.703.67-.703-.67z"/> + <path fill="#63636b" d="M255.61 322.13l.704.67-.704-.67z"/> + <path fill="#397b00" d="M256.31 322.13l.703.67-.703-.67z"/> + <path fill="#428c00" d="M257.01 322.13c2.57 3 6.954 6.73 10.552 3.347l-10.552-3.347z"/> + <path fill="#397b00" d="M258.42 322.13l.704.67-.704-.67z"/> + <path fill="#294200" d="M259.12 322.13v.67h2.814l-2.814-.67z"/> + <path fill="#103900" d="M261.94 322.13l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M262.64 322.13l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M265.46 322.13l.703.67-.703-.67z"/> + <path fill="#524242" d="M266.16 322.13l.704.67-.704-.67z"/> + <path fill="#5a1010" d="M266.86 322.13l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M284.45 322.13l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M285.15 322.13l.703.67-.703-.67z"/> + <path fill="#734a42" d="M285.86 322.13l.704.67-.704-.67z"/> + <path fill="#ad524a" d="M287.03 322.35l.47.224-.47-.224z"/> + <path fill="#631808" d="M287.97 322.13l.703.67-.703-.67z"/> + <path fill="#733129" d="M288.67 322.13l.704.67-.704-.67z"/> + <path fill="#736b6b" d="M289.38 322.13l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M290.08 322.13l.703.67-.703-.67z"/> + <path fill="#dedede" d="M290.78 322.13l.703.67-.703-.67z"/> + <path fill="#52525a" d="M292.19 322.13l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M292.89 322.13l.704.67-.704-.67z"/> + <path fill="#631808" d="M294.07 322.35l.47.224-.47-.224z"/> + <path fill="#ad1810" d="M295.24 322.58l.235.446-.235-.446z"/> + <path fill="#ce2110" d="M295.71 322.13l.704.67-.704-.67z"/> + <path fill="#941808" d="M301.33 322.13l.703.67-.703-.67z"/> + <path fill="#631818" d="M314 322.13l.704.67-.704-.67z"/> + <path fill="#63636b" d="M314.7 322.13l-.704 1.34.704-1.34z"/> + <path fill="#efefef" d="M315.4 322.13l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M192.29 322.8l2.814 2.678-2.814-2.678z"/> + <path fill="#cecece" d="M193 322.8l.703.67-.703-.67z"/> + <path fill="#b51010" d="M206.36 322.8l.703.67-.703-.67z"/> + <path fill="#631808" d="M208.24 323.02l.47.224-.47-.224z"/> + <path fill="#941808" d="M209.18 322.8l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M209.88 322.8l.703.67-.703-.67z"/> + <path fill="#941808" d="M210.58 322.8l.704.67-.704-.67z"/> + <path fill="#631808" d="M211.76 323.02l.47.224-.47-.224z"/> + <path fill="#5a1008" d="M215.51 322.8l.703.67-.703-.67z"/> + <path fill="#cecece" d="M216.21 322.8l.704.67-.704-.67z"/> + <path fill="#dedede" d="M240.83 322.8l.703.67-.703-.67z"/> + <path fill="#cecece" d="M244.35 322.8l.704.67-.704-.67z"/> + <path fill="#294221" d="M245.06 322.8l.703.67-.703-.67z"/> + <path fill="#297b00" d="M245.76 322.8l.703.67-.703-.67z"/> + <path fill="#319400" d="M241.54 325.48c3.306 3.105 6.798.214 9.145-2.678l-9.145 2.678z"/> + <path fill="#cecece" d="M252.09 322.8l-.703 1.34.703-1.34z"/> + <path fill="#8c8c8c" d="M256.31 322.8l.703.67-.703-.67z"/> + <path fill="#294200" d="M257.01 322.8l.704.67-.704-.67z"/> + <path fill="#397b00" d="M262.64 322.8l.703.67-.703-.67z"/> + <path fill="#52525a" d="M263.35 322.8l.704.67-.704-.67z"/> + <path fill="#efefef" d="M264.05 322.8l.703.67-.703-.67z"/> + <path fill="#dedede" d="M266.86 322.8l.703.67-.703-.67z"/> + <path fill="#420000" d="M292.19 322.8l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M295.71 322.8l.704.67-.704-.67z"/> + <path fill="#631808" d="M296.41 322.8l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M297.11 322.8l.704.67-.704-.67z"/> + <path fill="#ad1810" d="M297.82 322.8l.703.67-.703-.67z"/> + <path fill="#941808" d="M298.52 322.8l.703.67-.703-.67z"/> + <path fill="#631808" d="M299.22 322.8v.67h2.11l-2.11-.67z"/> + <path fill="#ad1810" d="M301.33 322.8l.703.67-.703-.67z"/> + <path fill="#520808" d="M313.29 322.8l.703.67-.703-.67z"/> + <path fill="#cecece" d="M314.7 322.8l-1.407 2.008 1.407-2.008z"/> + <path fill="#8c8c8c" d="M315.4 322.8l.703.67-.703-.67z"/> + <path fill="#dedede" d="M191.59 323.47l.703.67-.703-.67z"/> + <path fill="#cecece" d="M193.7 323.47l.704.67-.704-.67z"/> + <path fill="#7b1008" d="M215.51 323.47l.703.67-.703-.67z"/> + <path fill="#dedede" d="M216.21 323.47l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M243.65 323.47l.703.67-.703-.67z"/> + <path fill="#184a00" d="M244.35 323.47l.704.67-.704-.67z"/> + <path fill="#314231" d="M250.68 323.47l-.704 1.34.704-1.34z"/> + <path fill="#bdbdbd" d="M257.01 323.47l.704.67-.704-.67z"/> + <path fill="#213918" d="M257.72 323.47l.703.67-.703-.67m6.332 0l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M264.75 323.47l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M292.19 323.47l.703.67-.703-.67z"/> + <path fill="#631808" d="M312.59 323.47l.703.67-.703-.67z"/> + <path fill="#424242" d="M313.29 323.47l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M314.7 323.47l-1.407 2.008 1.407-2.008z"/> + <path fill="#9c9494" d="M315.4 323.47l-.703 1.34.703-1.34z"/> + <path fill="#cecece" d="M192.29 324.14l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#b51010" d="M214.8 324.14l-.704 1.34.704-1.34z"/> + <path fill="#63636b" d="M215.51 324.14l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M242.24 324.14l.703.67-.703-.67z"/> + <path fill="#294221" d="M242.94 324.14l.703.67-.703-.67z"/> + <path fill="#296300" d="M243.65 324.14l.703.67-.703-.67z"/> + <path fill="#efefef" d="M250.68 324.14l.703.67-.703-.67m7.035 0l.703.67-.703-.67z"/> + <path fill="#425242" d="M258.42 324.14l.704.67-.704-.67z"/> + <path fill="#397b00" d="M259.12 324.14l.703.67-.703-.67z"/> + <path fill="#295200" d="M264.75 324.14l.703.67-.703-.67z"/> + <path fill="#425242" d="M265.46 324.14l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M266.16 324.14l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M292.19 324.14l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M292.89 324.14l.704.67-.704-.67z"/> + <path fill="#941808" d="M311.89 324.14l-1.407 2.008 1.407-2.008z"/> + <path fill="#424242" d="M312.59 324.14l-1.407 2.008 1.407-2.008z"/> + <path fill="#7b7373" d="M316.11 324.14l.703.67-.703-.67z"/> + <path fill="#dedede" d="M191.59 324.81l.703.67-.703-.67z"/> + <path fill="#cecece" d="M193 324.81l1.407 1.34-1.407-1.34z"/> + <path fill="#7b7373" d="M193.7 324.81l.704.67-.704-.67z"/> + <path fill="#cecece" d="M195.11 324.81l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M195.81 324.81l1.407 1.34-1.407-1.34z"/> + <path fill="#5a3131" d="M214.8 324.81l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M240.83 324.81l.703.67-.703-.67z"/> + <path fill="#425242" d="M241.54 324.81l.704.67-.704-.67z"/> + <path fill="#296300" d="M242.24 324.81l.703.67-.703-.67z"/> + <path fill="#185200" d="M248.57 324.81l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M249.28 324.81l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M259.12 324.81l.703.67-.703-.67z"/> + <path fill="#295200" d="M259.83 324.81l.704.67-.704-.67m6.33 0l.705.67-.704-.67z"/> + <path fill="#63636b" d="M266.86 324.81l.703.67-.703-.67z"/> + <path fill="#dedede" d="M267.57 324.81l.703.67-.703-.67z"/> + <path fill="#63636b" d="M292.89 324.81l.704.67-.704-.67z"/> + <path fill="#941808" d="M293.6 324.81l.703.67-.703-.67z"/> + <path fill="#dedede" d="M312.59 324.81l.703.67-.703-.67z"/> + <path fill="#a59494" d="M314 324.81l.704.67-.704-.67z"/> + <path fill="#63636b" d="M315.4 324.81l.703.67-.703-.67z"/> + <path fill="#dedede" d="M316.11 324.81l-.703 2.008.703-2.008z"/> + <path fill="#bdbdbd" d="M192.29 325.48l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M194.4 325.48l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M195.11 325.48l4.925 4.016-4.925-4.016z"/> + <path fill="#9c9494" d="M195.81 325.48l.703.67-.703-.67z"/> + <path fill="#7b1008" d="M197.22 325.48l.703.67-.703-.67z"/> + <path fill="#941808" d="M203.55 325.48l.703.67-.703-.67z"/> + <path fill="#631808" d="M204.25 325.48l.703.67-.703-.67z"/> + <path fill="#8c3939" d="M204.96 325.48l.704.67-.704-.67z"/> + <path fill="#843129" d="M209.88 325.48l.703.67-.703-.67z"/> + <path fill="#6b5252" d="M213.4 325.48l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M214.1 325.48l.704.67-.704-.67m26.03 0l.702.67-.703-.67z"/> + <path fill="#184a00" d="M240.83 325.48l.703.67-.703-.67z"/> + <path fill="#297b00" d="M247.17 325.48l.704.67-.704-.67z"/> + <path fill="#294221" d="M247.87 325.48l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M248.57 325.48l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M259.83 325.48l.704.67-.704-.67z"/> + <path fill="#213918" d="M260.53 325.48l.704.67-.704-.67z"/> + <path fill="#103900" d="M267.57 325.48l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M268.27 325.48l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M293.6 325.48l.703.67-.703-.67z"/> + <path fill="#736b6b" d="M294.3 325.48l.704.67-.704-.67z"/> + <path fill="#5a1008" d="M295 325.48l.703.67-.703-.67z"/> + <path fill="#842118" d="M297.82 325.48l.703.67-.703-.67z"/> + <path fill="#8c4a4a" d="M298.52 325.48l.703.67-.703-.67zM302.74 325.48l.704.67-.704-.67z"/> + <path fill="#631808" d="M303.45 325.48l.703.67-.703-.67z"/> + <path fill="#941808" d="M304.15 325.48l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M304.85 325.48l.703.67-.703-.67z"/> + <path fill="#cecece" d="M311.89 325.48l-2.11 2.678 2.11-2.678z"/> + <path fill="#8c8c8c" d="M312.59 325.48l-3.518 4.686 3.518-4.686z"/> + <path fill="#ada5a5" d="M313.76 325.7l.47.224-.47-.224z"/> + <path fill="#dedede" d="M192.29 326.15l.703.67-.703-.67z"/> + <path fill="#cecece" d="M193 326.15l1.407 2.008L193 326.15z"/> + <path fill="#efefef" d="M194.4 326.15l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M196.51 326.15l.704.67-.704-.67z"/> + <path fill="#52525a" d="M197.22 326.15l.703.67-.703-.67z"/> + <path fill="#941808" d="M197.92 326.15l.703.67-.703-.67z"/> + <path fill="#bd2110" d="M201.44 326.15l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M202.14 326.15l.704.67-.704-.67z"/> + <path fill="#736b6b" d="M202.85 326.15l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M203.55 326.15l.703.67-.703-.67z"/> + <path fill="#efefef" d="M240.13 326.15l.703.67-.703-.67z"/> + <path fill="#314231" d="M240.83 326.15l.703.67-.703-.67z"/> + <path fill="#297b00" d="M241.54 326.15l1.407 1.34-1.407-1.34z"/> + <path fill="#185200" d="M246.46 326.15l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M247.17 326.15l.704.67-.704-.67z"/> + <path fill="#efefef" d="M247.87 326.15l.703.67-.703-.67m12.663 0l.704.67-.704-.67z"/> + <path fill="#7b7373" d="M261.24 326.15l.703.67-.703-.67z"/> + <path fill="#294200" d="M261.94 326.15l.703.67-.703-.67z"/> + <path fill="#397b00" d="M266.86 326.15l-.704 1.34.704-1.34z"/> + <path fill="#52525a" d="M267.57 326.15l.703.67-.703-.67z"/> + <path fill="#efefef" d="M268.27 326.15l.703.67-.703-.67z"/> + <path fill="#cecece" d="M304.15 326.15l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M304.85 326.15l.703.67-.703-.67z"/> + <path fill="#631818" d="M305.56 326.15l.704.67-.704-.67z"/> + <path fill="#b51010" d="M306.26 326.15l.703.67-.703-.67m3.518 0l-.704 1.34.703-1.34z"/> + <path fill="#292921" d="M310.48 326.15l.703.67-.703-.67z"/> + <path fill="#cecece" d="M313.29 326.15l.703.67-.703-.67m1.407 0l-2.11 2.678 2.11-2.678z"/> + <path fill="#bdbdbd" d="M193.7 326.82l.704.67-.704-.67z"/> + <path fill="#dedede" d="M195.11 326.82l.703.67-.703-.67z"/> + <path fill="#424242" d="M197.92 326.82l.703.67-.703-.67z"/> + <path fill="#ad1810" d="M198.62 326.82l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#63636b" d="M201.44 326.82l.703.67-.703-.67z"/> + <path fill="#efefef" d="M202.14 326.82l.704.67-.704-.67z"/> + <path fill="#63636b" d="M241.54 326.82l.704.67-.704-.67z"/> + <path fill="#296300" d="M245.06 326.82l.703.67-.703-.67z"/> + <path fill="#425242" d="M245.76 326.82l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M246.46 326.82l.703.67-.703-.67z"/> + <path fill="#dedede" d="M261.94 326.82l.703.67-.703-.67z"/> + <path fill="#425242" d="M262.64 326.82l.703.67-.703-.67z"/> + <path fill="#295200" d="M263.35 326.82l.704.67-.704-.67z"/> + <path fill="#63636b" d="M266.86 326.82l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M306.26 326.82l.703.67-.703-.67z"/> + <path fill="#941808" d="M306.96 326.82l.703.67-.703-.67z"/> + <path fill="#292921" d="M309.78 326.82l.703.67-.703-.67z"/> + <path fill="#cecece" d="M312.59 326.82l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M314.7 326.82l-1.407 2.008 1.407-2.008z"/> + <path fill="#cecece" d="M195.81 327.49l2.814 2.678-2.814-2.678z"/> + <path fill="#7b7373" d="M196.51 327.49l.704.67-.704-.67z"/> + <path fill="#292921" d="M198.62 327.49l.703.67-.703-.67z"/> + <path fill="#b51010" d="M199.33 327.49l.704.67-.704-.67z"/> + <path fill="#941808" d="M200.03 327.49l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M200.73 327.49l.703.67-.703-.67m41.506 0l.703.67-.704-.67z"/> + <path fill="#185200" d="M242.94 327.49l.703.67-.703-.67z"/> + <path fill="#296300" d="M243.65 327.49l.703.67-.703-.67z"/> + <path fill="#395231" d="M244.35 327.49l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M245.06 327.49l.703.67-.703-.67m18.29 0l.705.67-.704-.67z"/> + <path fill="#5a5231" d="M264.05 327.49l.703.67-.703-.67z"/> + <path fill="#397b00" d="M264.75 327.49l.703.67-.703-.67z"/> + <path fill="#295200" d="M265.46 327.49l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M266.16 327.49l.704.67-.704-.67m40.803 0l.703.67-.703-.67z"/> + <path fill="#5a1008" d="M307.67 327.49l.703.67-.703-.67z"/> + <path fill="#ce2110" d="M308.37 327.49l.704.67-.704-.67z"/> + <path fill="#391810" d="M309.07 327.49l.703.67-.703-.67z"/> + <path fill="#cecece" d="M311.89 327.49l.703.67-.703-.67z"/> + <path fill="#7b7373" d="M197.22 328.16l.703.67-.703-.67z"/> + <path fill="#313931" d="M199.33 328.16l.704.67-.704-.67z"/> + <path fill="#9c9494" d="M200.03 328.16l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M242.94 328.16l.703.67-.703-.67z"/> + <path fill="#9c9494" d="M243.65 328.16l.703.67-.703-.67m21.105 0l.703.67-.703-.67z"/> + <path fill="#ada5a5" d="M265.46 328.16l.703.67-.703-.67z"/> + <path fill="#cecece" d="M307.67 328.16l1.407 1.34-1.407-1.34z"/> + <path fill="#292921" d="M308.37 328.16l.704.67-.704-.67z"/> + <path fill="#bdbdbd" d="M309.07 328.16l.703.67-.703-.67m2.11 0l.704.67-.704-.67z"/> + <path fill="#8c8c8c" d="M195.11 328.83l.703.67-.703-.67z"/> + <path fill="#cecece" d="M195.81 328.83l2.814 2.678-2.814-2.678z"/> + <path fill="#7b7373" d="M197.92 328.83l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M310.48 328.83l.703.67-.703-.67z"/> + <path fill="#dedede" d="M311.89 328.83l-.704 1.34.704-1.34z"/> + <path fill="#7b7373" d="M312.59 328.83l-.703 1.34.703-1.34m-116.78.67l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M198.62 329.49l.703.67-.703-.67z"/> + <path fill="#bdbdbd" d="M309.78 329.49l.703.67-.703-.67z"/> + <path fill="#8c8c8c" d="M196.51 330.16l1.407 1.34-1.407-1.34z"/> + <path fill="#efefef" d="M198.62 330.16l.703.67-.703-.67z"/> + <path fill="#dedede" d="M310.48 330.16l.703.67-.703-.67m-113.97.67l1.407 1.338-1.407-1.34z"/> + <path fill="#efefef" d="M309.78 330.83l.703.67-.703-.67z"/> + <path fill="#dedede" d="M311.18 330.83l-.703 1.34.703-1.34z"/> + <path opacity=".99" d="M230.89 207.51l1.132-.302c.077.208.197.358.362.452.164.092.38.122.65.09.298-.034.515-.112.652-.233.09-.084.13-.188.114-.31-.012-.083-.047-.148-.11-.196-.063-.045-.197-.078-.402-.1-.952-.086-1.563-.195-1.832-.327-.372-.184-.584-.474-.635-.87-.045-.36.065-.677.33-.956.267-.28.713-.454 1.337-.527.595-.07 1.05-.028 1.36.123.314.15.548.4.704.748l-1.06.318c-.066-.156-.17-.27-.313-.34-.14-.07-.328-.092-.568-.064-.304.036-.516.1-.636.197-.08.068-.115.147-.103.238.01.078.058.14.14.185.114.06.485.122 1.113.183.63.06 1.08.174 1.347.337.265.167.42.424.464.772.05.38-.076.724-.373 1.036-.297.312-.772.505-1.424.58-.592.07-1.076.01-1.452-.178-.373-.19-.637-.473-.794-.852zm-5.1-.368c-.048-.363.002-.725.146-1.087.145-.362.377-.653.698-.872.323-.22.698-.353 1.123-.403.658-.076 1.223.065 1.695.424.472.356.748.844.828 1.464.08.626-.066 1.17-.44 1.632-.37.46-.876.726-1.52.8-.398.047-.79.005-1.174-.124-.382-.13-.69-.348-.92-.656-.23-.31-.376-.703-.437-1.178zm1.185-.078c.053.41.195.712.428.907.232.195.5.275.8.24.3-.035.536-.173.71-.415.176-.242.238-.57.185-.985-.052-.405-.195-.705-.427-.9-.23-.194-.494-.274-.794-.24-.3.036-.538.174-.715.416-.176.242-.238.568-.185.978zm-3.578-2.25l-.13-1.014 1.15-.133.13 1.012-1.15.133zm.603 4.694l-.53-4.135 1.15-.133.53 4.134-1.15.134zm-6.78-5.005l2.213-.257c.5-.058.885-.066 1.156-.024.364.058.687.198.97.42.284.223.514.51.692.86.178.35.3.79.37 1.325.06.47.05.882-.028 1.236-.097.433-.268.794-.513 1.083-.185.22-.45.404-.792.555-.257.112-.61.194-1.057.246l-2.278.265-.732-5.707zm1.335.825l.485 3.78.904-.105c.338-.04.58-.086.726-.14.19-.07.342-.167.456-.294.117-.127.2-.323.25-.587.047-.266.044-.62-.013-1.06-.056-.442-.14-.776-.253-1.003-.112-.227-.25-.398-.414-.513-.165-.115-.363-.183-.595-.204-.173-.016-.507.004-1 .06l-.545.065z" fill="#ecca5e"/> + <path fill-rule="evenodd" fill="#ecca5e" d="M233.383 223.395l17.104 21.387-.83.96-17.103-21.387zM277.4 221.768l-19.112 25.276-1.465-.506 19.113-25.276zM228.973 227.626l20.24 18.744-.67 1.065-20.24-18.744zM224.286 231.96l22.225 16.585-.547 1.128-22.225-16.585zM280.275 228.716l-20.037 18.942-1.108-.656 20.036-18.943zM284.71 232.226l-22.435 16.328-1.01-.787L283.7 231.44z"/> + <path d="M271.26 229.62l4.638-5.894-.563-.4-4.075 6.294z" fill-opacity=".564" fill="#7b5a00"/> + <path d="M260.75 243.52l4.638-5.894-.563-.4-4.075 6.294z" fill-opacity=".475" fill="#7b5a00"/> + <path d="M266 236.85l4.638-5.894-.563-.4L266 236.85z" fill-opacity=".68" fill="#7b5a00"/> + <path d="M276.83 237.56l6.493-4.007-.383-.56-6.11 4.567z" fill-opacity=".525" fill="#7b5a00"/> + <path d="M268.33 239.95l5.77-4.907-.47-.5-5.3 5.407z" fill-opacity=".398" fill="#7b5a00"/> + <path fill="#428c00" d="M213.63 288.63h-.703c-.13-3.835-1.626-6.29-5.628-7.363.097 2.042 1.564 10.015 4.923 7.363h.703l-1.407 6.024c2.1-2.215 10.777-10.023 7.017-13.46-3.22-2.943-4.87 5.967-4.907 7.436zM208.25 240.72h-.704c-.13-3.835-1.625-6.29-5.627-7.363.097 2.042 1.564 10.015 4.923 7.363h.703l-1.407 6.024c2.1-2.215 10.777-10.023 7.017-13.46-3.22-2.943-4.87 5.967-4.907 7.436z"/> + <path opacity=".99" d="M299.51 210.84l-1.068-.118.074-.608c-.206.216-.438.37-.695.46-.254.088-.504.118-.75.09-.5-.055-.904-.293-1.215-.715-.307-.424-.42-.98-.336-1.665.085-.7.324-1.214.715-1.54.39-.327.852-.462 1.38-.403.487.054.884.293 1.192.716l.252-2.057 1.15.13-.7 5.71zm-2.806-2.498c-.054.44-.03.768.075.98.15.305.39.477.724.514.265.03.504-.052.715-.245.21-.194.343-.504.395-.93.058-.475.01-.827-.145-1.055-.154-.23-.372-.36-.653-.392-.273-.03-.515.048-.726.236-.207.183-.336.48-.386.89zm-4.633-1.24l-1.02-.295c.165-.387.403-.66.713-.822s.747-.21 1.313-.146c.513.056.888.156 1.125.3.238.143.396.31.475.5.082.188.094.52.036.995l-.167 1.276c-.045.365-.06.636-.046.814.017.175.064.368.14.576l-1.137-.126c-.02-.076-.045-.188-.072-.336-.01-.067-.02-.11-.025-.133-.218.16-.445.273-.68.34-.235.066-.48.085-.734.057-.448-.05-.787-.205-1.018-.465-.23-.26-.32-.566-.278-.92.03-.233.113-.434.253-.603.14-.17.32-.293.542-.366.224-.075.54-.127.948-.156.55-.036.933-.084 1.15-.145l.014-.11c.026-.21-.01-.364-.108-.465-.1-.103-.3-.17-.602-.205-.205-.022-.37 0-.494.064-.123.064-.233.187-.327.372zm1.43 1.058c-.152.03-.392.06-.72.09-.327.03-.543.07-.65.122-.16.084-.253.205-.272.36-.02.154.025.293.132.418.106.125.253.198.438.218.207.023.413-.02.618-.13.15-.082.257-.193.32-.33.04-.09.076-.267.11-.53l.025-.218zm-2.933-2.505l-.107.873-.786-.087-.204 1.668c-.04.338-.06.536-.052.595.01.056.038.105.086.148.05.043.113.068.19.077.106.01.264-.006.475-.054l-.007.86c-.28.08-.59.1-.93.063-.207-.023-.39-.076-.548-.16-.16-.086-.27-.185-.337-.297-.064-.117-.1-.265-.108-.448-.008-.13.01-.388.058-.775l.22-1.804-.527-.06.107-.87.528.057.1-.822 1.234-.51-.18 1.46.786.087zm-4.662 3.677l-1.15-.127.505-4.138 1.07.12-.073.587c.217-.258.403-.423.558-.495.16-.073.33-.1.516-.078.263.03.508.126.733.29l-.472.916c-.18-.14-.352-.22-.518-.24-.16-.017-.303.01-.425.084-.122.07-.23.213-.322.426-.09.214-.178.673-.264 1.377l-.155 1.277zm-3.086-1.676l1.123.31c-.196.384-.467.663-.812.838-.34.173-.75.232-1.23.18-.755-.084-1.286-.38-1.59-.892-.242-.408-.327-.9-.257-1.473.084-.687.34-1.202.763-1.548.424-.348.924-.49 1.5-.426.647.072 1.132.332 1.456.782.325.446.427 1.088.31 1.925l-2.884-.32c-.032.326.03.59.185.79.156.2.366.314.63.344.18.02.338-.01.473-.09.133-.08.245-.22.333-.42zm.2-1.1c.03-.317-.026-.567-.17-.75-.143-.183-.332-.288-.567-.314-.25-.028-.47.036-.654.192-.187.155-.296.383-.33.682l1.72.19zm-8.052 1.564l.7-5.71 1.15.127-.25 2.057c.4-.346.844-.49 1.33-.437.53.058.945.29 1.247.695.302.402.41.944.328 1.627-.087.706-.33 1.23-.732 1.573-.398.342-.85.486-1.355.43-.248-.028-.487-.113-.715-.257-.226-.146-.412-.345-.56-.595l-.073.61-1.068-.12zm1.407-2.03c-.052.427-.02.752.097.973.163.313.41.488.74.524.255.028.482-.05.685-.236.206-.187.336-.503.39-.947.058-.472.01-.823-.145-1.05-.155-.23-.373-.362-.654-.393-.276-.03-.517.047-.725.232-.208.182-.337.48-.388.897zm-3.112-2.92l.124-1.014 1.15.128-.123 1.013-1.15-.128zm-.575 4.698l.506-4.138 1.15.128-.506 4.137-1.15-.127zm-5.08-.563l.692-5.665 1.212.134-.576 4.703 3.014.334-.118.963-4.225-.468z" fill="#ecca5e"/> + <path fill="#428c00" d="M201.08 254.06h-.704c-.13-3.835-1.625-6.29-5.627-7.363.097 2.042 1.564 10.015 4.923 7.363h.703l-1.407 6.024c2.1-2.215 10.777-10.023 7.017-13.46-3.22-2.943-4.87 5.967-4.907 7.436z"/> + <path d="M225.94 232.795c0 .514-.583.93-1.303.93s-1.303-.416-1.303-.93c0-.513.583-.93 1.303-.93s1.304.417 1.304.93zM230.34 228.135c0 .514-.583.93-1.303.93s-1.303-.416-1.303-.93c0-.513.583-.93 1.303-.93s1.304.417 1.304.93zM234.41 223.795c0 .514-.583.93-1.303.93s-1.303-.416-1.303-.93c0-.513.583-.93 1.303-.93s1.304.417 1.304.93zM277.75 222.095c0 .514-.583.93-1.303.93s-1.303-.416-1.303-.93c0-.513.583-.93 1.303-.93s1.304.417 1.304.93zM280.84 228.135c0 .514-.583.93-1.303.93s-1.303-.416-1.303-.93c0-.513.583-.93 1.303-.93s1.304.417 1.304.93zM285.41 232.015c0 .514-.583.93-1.303.93s-1.303-.416-1.303-.93c0-.513.583-.93 1.303-.93s1.304.417 1.304.93z" fill-rule="evenodd" fill="#fac349"/> + <path opacity=".99" d="M262.6 199.3l-1.05-.19c.122-.402.33-.698.62-.89.29-.19.72-.282 1.288-.277.517.004.9.067 1.152.187.252.117.428.267.528.448.103.18.152.507.147.986l-.026 1.286c-.005.366.01.637.045.812.036.173.105.36.204.56l-1.147-.01c-.03-.074-.065-.183-.108-.327-.018-.066-.032-.11-.04-.13-.2.18-.412.316-.638.406-.226.09-.467.134-.723.132-.45-.004-.805-.124-1.064-.36-.256-.234-.382-.53-.378-.885.003-.236.063-.444.183-.626.12-.184.286-.323.5-.418.214-.098.523-.18.925-.25.542-.092.918-.18 1.128-.26v-.11c.004-.213-.05-.363-.16-.453-.11-.094-.316-.142-.62-.144-.206 0-.368.036-.484.113-.116.074-.21.207-.284.4zm1.54.908c-.148.046-.384.1-.706.163-.322.063-.533.125-.633.187-.15.1-.228.23-.23.386 0 .155.058.288.178.402.12.113.273.17.46.173.21 0 .41-.062.6-.19.14-.1.234-.22.28-.363.03-.094.048-.273.05-.537l.003-.22zm-4.733-2.773l.01-1.02 1.16.012-.01 1.02-1.16-.012zm-.047 4.73l.04-4.165 1.16.01-.042 4.167-1.158-.012zm-2.177-.02l-1.158-.01.042-4.166 1.076.01-.006.59c.187-.277.353-.46.5-.547.15-.088.318-.13.504-.13.265.004.518.075.76.216l-.367.956c-.194-.122-.375-.183-.542-.185-.162 0-.3.042-.413.127-.113.083-.204.235-.272.456-.066.222-.102.687-.11 1.396l-.012 1.285zm-1.87-4.182l-.008.878-.792-.006-.017 1.68c-.003.34 0 .538.015.595.017.054.05.1.103.138.054.037.12.056.197.056.107 0 .263-.033.467-.1l.09.855c-.27.106-.576.158-.917.155-.208 0-.396-.036-.563-.103-.167-.07-.29-.157-.37-.262-.074-.108-.127-.253-.155-.433-.023-.13-.033-.388-.03-.777l.02-1.816-.533-.004.007-.88.532.005.007-.827 1.17-.633-.016 1.47.793.008zm-5.85 1.217l-1.05-.19c.123-.4.33-.697.62-.888.29-.19.72-.284 1.29-.28.516.005.9.068 1.15.188.253.118.43.267.53.448.1.18.15.508.145.986l-.025 1.286c-.004.367.01.637.046.813.035.173.103.36.203.56l-1.146-.01c-.03-.075-.065-.184-.108-.328l-.04-.13c-.2.182-.413.317-.64.406-.226.09-.467.134-.722.132-.45-.004-.806-.124-1.065-.36-.255-.234-.382-.53-.378-.885.003-.235.063-.444.183-.626.12-.183.287-.323.5-.418.215-.097.523-.18.925-.25.543-.092.92-.18 1.128-.26l.002-.11c.003-.212-.05-.363-.16-.453-.11-.093-.316-.14-.62-.144-.207 0-.368.036-.485.113-.116.074-.21.208-.284.4zm1.54.91c-.148.044-.383.1-.705.16-.323.063-.533.126-.633.187-.152.1-.23.23-.23.387-.002.154.057.288.177.4.12.115.273.173.46.174.21 0 .408-.06.6-.19.14-.1.234-.22.28-.363.03-.094.047-.272.05-.537l.003-.22zm-8.057 1.926l.058-5.75 1.958.018c.742.007 1.225.04 1.45.1.345.09.633.28.864.572.23.29.344.664.34 1.12-.005.354-.075.65-.212.89s-.31.427-.52.564c-.208.134-.42.222-.634.265-.292.052-.714.075-1.266.07l-.796-.007-.02 2.17-1.222-.012zm1.27-4.766l-.018 1.632.668.006c.48.004.802-.023.965-.082s.29-.15.383-.28c.095-.126.143-.275.145-.445.003-.208-.06-.38-.19-.518-.126-.137-.29-.224-.487-.26-.144-.027-.436-.043-.876-.047l-.59-.006zM246.62 307.91l-.8-.02c.04-.312.155-.555.346-.73.19-.174.497-.292.92-.353.382-.055.674-.052.876.007.2.06.35.15.446.272.1.12.176.36.233.714l.144.954c.044.272.09.47.136.597.05.125.123.255.222.39l-.85.124c-.03-.05-.07-.128-.12-.23-.023-.046-.038-.076-.047-.09-.125.156-.265.28-.422.373-.156.09-.33.152-.518.18-.334.047-.612 0-.833-.146-.22-.143-.35-.348-.392-.61-.028-.176-.008-.337.057-.485.066-.15.17-.274.317-.368.147-.096.365-.193.654-.29.39-.13.657-.238.802-.322l-.013-.08c-.025-.16-.083-.264-.175-.318-.092-.056-.252-.068-.478-.036-.153.023-.267.07-.344.14-.076.07-.13.18-.16.33zm1.255.497c-.104.05-.272.118-.503.2-.23.083-.38.154-.444.21-.1.092-.14.196-.123.313.02.114.08.206.182.277.103.07.224.095.363.075.154-.022.294-.092.42-.21.092-.088.146-.188.16-.3.012-.072.002-.206-.03-.402l-.025-.163zm-2.552-.34l-.824.27c-.055-.158-.14-.27-.255-.337-.112-.067-.25-.088-.41-.065-.214.03-.374.126-.48.287-.104.157-.13.4-.077.73.058.367.164.617.317.75.154.132.34.182.558.15.163-.023.29-.086.38-.19.09-.102.14-.265.147-.487l.865.015c-.028.38-.152.683-.37.907-.22.224-.537.367-.955.427-.475.07-.877-.02-1.205-.263-.327-.243-.53-.617-.61-1.122-.083-.51-.004-.927.234-1.25.237-.327.597-.524 1.08-.594.395-.057.722-.02.98.108.26.127.468.35.622.666zm-4.783-.67l-.12-.757.86-.124.12.756-.86.124zm.56 3.507l-.493-3.09.86-.123.492 3.09-.86.124zm-1.74.25l-.68-4.262.86-.124.68 4.263-.86.125zm-3.86.56l-.68-4.264.86-.124.244 1.535c.22-.324.51-.513.873-.565.395-.057.744.032 1.047.268.302.234.494.606.575 1.116.083.526.016.95-.204 1.275-.217.323-.514.512-.89.566-.187.028-.377.01-.572-.05-.194-.064-.37-.172-.528-.325l.073.453-.8.115zm.597-1.736c.05.32.14.55.272.688.182.195.397.275.644.24.19-.028.338-.128.446-.3.11-.175.138-.428.085-.76-.056-.352-.164-.596-.323-.732-.16-.138-.345-.192-.554-.16-.206.028-.365.13-.477.303-.112.17-.143.412-.093.72zm-2.246 1.974l-.073-.463c-.092.18-.227.334-.406.457-.175.123-.37.2-.584.23-.218.032-.42.015-.61-.052-.187-.066-.332-.176-.436-.33-.104-.153-.18-.375-.225-.666l-.312-1.955.86-.125.225 1.42c.07.434.127.7.174.793.048.092.118.16.21.208.094.045.204.057.332.04.147-.022.272-.08.377-.17.104-.096.17-.202.193-.32.025-.122 0-.403-.07-.845l-.207-1.303.86-.124.492 3.088-.797.116zm-6.477-2.224l.8-.115.073.454c.08-.17.2-.317.362-.44.16-.122.35-.2.566-.23.377-.055.72.04 1.027.283.31.243.503.615.583 1.117.083.516.014.937-.205 1.262-.22.322-.517.51-.894.566-.18.026-.348.015-.506-.03-.155-.05-.327-.143-.514-.284l.25 1.556-.86.124-.68-4.264zm1.088 1.37c.056.347.17.593.34.74.172.143.36.2.57.17.2-.03.353-.13.46-.3.11-.172.135-.43.08-.778-.052-.324-.158-.555-.32-.692-.162-.137-.343-.19-.545-.162-.21.03-.372.133-.485.308-.115.173-.147.41-.1.713zm-2.328.964l.878.013c-.063.314-.2.568-.414.76-.212.188-.496.31-.852.36-.565.082-1.01-.034-1.337-.345-.26-.25-.423-.59-.49-1.018-.083-.512-.007-.933.23-1.262.233-.332.566-.528.996-.59.483-.07.888.027 1.216.29.326.263.534.708.622 1.336l-2.152.31c.045.243.144.42.298.538.154.115.33.158.527.13.135-.02.242-.07.323-.155.08-.084.132-.206.154-.368zm-.083-.833c-.045-.237-.138-.407-.28-.51-.142-.108-.3-.148-.475-.123-.188.027-.332.115-.434.262-.1.147-.132.332-.095.555l1.284-.186zm-6.152 2.74l-.68-4.264 1.903-.276c.48-.07.834-.08 1.062-.035.23.045.426.156.588.333.162.177.262.39.303.643.05.32-.006.6-.17.838-.165.236-.44.41-.824.52.212.08.392.177.54.288.15.112.357.317.626.618l.68.753-1.082.156-.802-.833c-.285-.298-.477-.484-.577-.557-.1-.074-.2-.12-.3-.138-.1-.018-.255-.012-.463.017l-.183.026.283 1.78-.905.13zm.512-2.592l.67-.097c.433-.062.7-.118.804-.17.102-.05.177-.122.225-.216.046-.094.06-.205.04-.333-.024-.142-.083-.252-.178-.328-.094-.077-.216-.117-.366-.12-.075.002-.296.03-.663.082l-.706.102.173 1.08zM287.46 311.83l-.76-.24c.13-.286.315-.487.55-.602.236-.115.565-.145.987-.088.384.05.663.133.838.245.175.11.29.238.347.382.058.143.06.392.008.747l-.15.954c-.04.272-.056.474-.05.61.01.13.042.275.096.433l-.85-.112c-.016-.058-.03-.142-.05-.253-.006-.05-.01-.085-.015-.1-.165.116-.338.197-.515.242-.178.046-.36.056-.55.03-.336-.044-.587-.165-.756-.364-.167-.2-.23-.43-.192-.694.025-.176.092-.326.2-.45.108-.126.246-.214.414-.265.17-.053.408-.086.714-.1.413-.02.7-.05.866-.09l.012-.082c.023-.157 0-.274-.073-.35-.07-.08-.22-.135-.447-.165-.152-.02-.276-.007-.37.04-.094.045-.178.135-.253.272zm1.054.818c-.115.02-.296.038-.543.055-.244.017-.408.044-.488.08-.123.06-.194.15-.21.266-.018.114.013.22.09.314.078.096.186.153.325.17.155.022.31-.007.465-.085.115-.06.197-.142.245-.245.033-.067.064-.198.093-.394l.024-.162zm-2.886 1.13l-.86-.115.232-1.58c.05-.333.063-.55.04-.653-.022-.104-.07-.19-.146-.254-.074-.066-.168-.106-.285-.122-.15-.02-.29 0-.42.064-.13.06-.226.153-.29.276-.06.122-.118.356-.17.702l-.205 1.4-.86-.113.455-3.094.8.105-.068.454c.335-.312.718-.44 1.15-.382.19.025.358.082.505.17.148.083.254.182.32.294.065.112.105.233.117.366.014.132.003.318-.033.557l-.282 1.923zm-5.485-2.924l-.76-.24c.13-.286.315-.487.55-.602.236-.115.565-.145.987-.088.384.05.663.133.838.245.175.11.29.237.347.38.058.144.06.393.008.748l-.15.954c-.04.272-.057.475-.05.61.01.13.042.275.096.433l-.853-.113c-.014-.058-.03-.142-.047-.253-.007-.052-.012-.086-.016-.1-.167.115-.34.196-.516.24-.177.047-.362.057-.55.032-.336-.045-.587-.166-.756-.365-.166-.2-.23-.43-.19-.694.024-.175.09-.324.2-.45.107-.125.245-.213.413-.264.17-.054.408-.087.714-.102.41-.018.7-.048.865-.09l.012-.08c.023-.158 0-.275-.073-.352-.07-.08-.22-.134-.447-.164-.153-.02-.277-.007-.372.04-.094.045-.177.136-.25.273zm1.054.818c-.116.02-.297.038-.543.055-.245.017-.41.044-.49.08-.122.06-.193.15-.21.266-.017.115.014.22.09.315.08.096.187.153.325.17.155.022.31-.007.465-.085.114-.06.197-.14.245-.243.033-.068.063-.2.092-.395l.024-.163zm-2.344-1.02l-.87.032c-.004-.165-.052-.295-.143-.39-.087-.095-.212-.153-.373-.175-.215-.03-.396.02-.546.143-.146.123-.244.35-.293.68-.054.367-.028.635.08.804.107.17.27.268.49.297.162.022.302-.004.42-.078.116-.075.212-.218.287-.428l.825.25c-.144.357-.353.614-.63.77-.276.154-.624.203-1.042.148-.476-.064-.834-.257-1.076-.58-.24-.323-.322-.738-.248-1.242.075-.51.275-.89.6-1.135.327-.25.732-.34 1.215-.276.395.053.698.176.907.37.21.193.342.462.396.808zm-4.38-1.945l.11-.757.86.114-.11.758-.86-.115zm-.52 3.514l.457-3.093.86.115-.455 3.093-.86-.114zm-.872-.116l-.86-.115.234-1.58c.05-.334.063-.552.04-.654-.022-.103-.07-.19-.147-.254-.073-.065-.168-.106-.284-.12-.15-.02-.29 0-.42.062s-.225.154-.29.276c-.06.123-.117.356-.168.702l-.207 1.402-.86-.115.456-3.095.8.107-.068.454c.335-.31.718-.44 1.15-.38.19.024.357.08.505.167.148.085.255.184.32.295.066.112.105.234.117.367.014.132.003.318-.032.556l-.284 1.924zm-4.18-4.14l.112-.758.86.115-.112.76-.86-.116zm-.518 3.513l.456-3.093.86.114-.455 3.094-.86-.115zm-5.184-3.846l.793.107-.06.422c.33-.29.693-.41 1.085-.358.21.028.383.093.524.195.14.102.248.242.32.42.168-.146.34-.25.518-.308.177-.06.36-.078.548-.053.24.032.434.106.585.22.153.114.257.266.312.455.04.14.038.358-.006.653l-.29 1.978-.862-.115.26-1.768c.046-.307.046-.51 0-.606-.062-.127-.176-.202-.342-.224-.12-.016-.24.004-.355.06-.116.055-.208.148-.275.277-.067.128-.122.338-.165.63l-.22 1.485-.86-.115.25-1.696c.045-.3.058-.496.04-.587-.017-.092-.055-.163-.114-.214-.057-.053-.14-.086-.25-.1-.134-.018-.258 0-.374.054-.117.053-.208.14-.274.264-.064.122-.118.33-.16.628l-.223 1.504-.86-.115.455-3.094zm-4.186.975c.04-.27.15-.525.328-.76.178-.236.406-.404.682-.503.28-.1.578-.13.897-.086.49.065.872.272 1.14.618.27.345.37.75.303 1.214-.07.468-.286.835-.65 1.102-.36.264-.783.364-1.264.3-.3-.04-.575-.14-.827-.306-.25-.164-.43-.38-.533-.644-.104-.268-.13-.58-.078-.935zm.876.162c-.045.307-.003.552.125.736.13.183.306.29.53.32.226.03.425-.027.6-.17.177-.142.288-.37.334-.68.045-.303.003-.546-.126-.73-.126-.183-.302-.29-.527-.32-.224-.03-.425.027-.602.17-.176.142-.287.367-.332.674zm-4.807-3.42l1.657.222c.374.05.655.114.843.195.252.11.458.27.618.484.16.212.27.462.327.75.058.284.057.627 0 1.026-.053.352-.143.65-.273.89-.158.297-.355.527-.592.69-.18.126-.407.21-.687.258-.208.033-.48.027-.816-.017l-1.704-.228.63-4.272zm.8.845l-.416 2.828.677.09c.254.034.44.045.555.033.152-.015.282-.058.39-.13.11-.07.21-.196.3-.378.09-.184.16-.44.207-.77.05-.33.055-.59.02-.774-.035-.184-.1-.333-.196-.447-.095-.113-.225-.2-.39-.257-.122-.044-.368-.09-.738-.14l-.407-.054z" fill="#ecca5e"/> + </g> +</svg> diff --git a/s/flag/dz.svg b/s/flag/dz.svg new file mode 100755 index 0000000..36613d1 --- /dev/null +++ b/s/flag/dz.svg @@ -0,0 +1,10 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g stroke-width="1pt" fill-rule="evenodd"> + <path fill="#fff" d="M0 0h640.01v479.997H0z"/> + <path fill="#00bf13" d="M0 0h320.006v479.997H0z"/> + <g fill="#f21930"> + <path d="M445.896 308.66c-40.313 72.507-129.227 98.27-199.877 59.356S149.612 240.18 188.526 169.53c38.914-70.648 127.83-96.406 198.48-57.49 26.117 14.385 44.713 33.297 59.338 60.236-5.337-7.34-11.296-13.4-19.118-19.55-48.19-37.886-118.046-29.525-155.93 18.664-37.887 48.19-29.526 118.046 18.662 155.93 48.19 37.888 118.045 29.526 155.93-18.663z"/> + <path d="M411.372 321.598l-35.185-49.87-58.022 18.922 36.55-48.875-35.923-49.332 57.78 19.662 35.82-49.412-.852 61.028 58.062 18.795-58.295 18.046"/> + </g> + </g> +</svg> diff --git a/s/flag/earth.svg b/s/flag/earth.svg new file mode 100755 index 0000000..b810372 --- /dev/null +++ b/s/flag/earth.svg @@ -0,0 +1,266 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<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" + width="640" + height="480" + viewBox="-600 -400 853.33336 640" + id="svg2" + version="1.1" + inkscape:version="0.48.4 r9939" + sodipodi:docname="earth.svg"> + <metadata + id="metadata64"> + <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> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1027" + id="namedview62" + showgrid="false" + fit-margin-left="0" + inkscape:zoom="0.89881129" + inkscape:cx="358.96668" + inkscape:cy="290.27432" + inkscape:window-x="-8" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="svg2"> + <sodipodi:guide + position="0,0" + orientation="0,640" + id="guide3041" /> + <sodipodi:guide + position="640,0" + orientation="-480,0" + id="guide3043" /> + <sodipodi:guide + position="640,480" + orientation="0,-640" + id="guide3045" /> + <sodipodi:guide + position="0,480" + orientation="480,0" + id="guide3047" /> + </sodipodi:namedview> + <defs + id="defs4"> + <circle + id="rb" + r="145.6633" + cx="0" + cy="0" + sodipodi:cx="0" + sodipodi:cy="0" + sodipodi:rx="145.6633" + sodipodi:ry="145.6633" + style="fill:none;stroke:#013ba6;stroke-width:39.03036118" /> + <circle + id="rw" + r="145.6633" + cx="0" + cy="0" + sodipodi:cx="0" + sodipodi:cy="0" + sodipodi:rx="145.6633" + sodipodi:ry="145.6633" + style="fill:none;stroke:#ffffff;stroke-width:17.34682655" /> + <clipPath + id="o"> + <path + d="m 0,-200 v 400 h 200 v -400 z m -200,0 v 400 h 100 v -400 z" + id="path9" + inkscape:connector-curvature="0" /> + </clipPath> + <clipPath + id="h"> + <path + d="M -200,-200 H 200 V 50 h -400 z" + id="path12" + inkscape:connector-curvature="0" /> + </clipPath> + <clipPath + id="i1"> + <path + d="M 0,0 -200,-150 V 150 z" + id="path15" + inkscape:connector-curvature="0" /> + </clipPath> + <clipPath + id="i2"> + <path + d="M 0,0 -200,-200 V 200 z" + id="path18" + inkscape:connector-curvature="0" /> + </clipPath> + <clipPath + id="l1"> + <path + d="M 0,0 -50,-200 H -200 V 150 z" + id="path21" + inkscape:connector-curvature="0" /> + </clipPath> + <clipPath + id="l2"> + <path + d="M 0,0 V -200 H -200 V 200 z" + id="path24" + inkscape:connector-curvature="0" /> + </clipPath> + </defs> + <rect + width="853.33337" + height="640" + x="-600" + y="-400" + id="rect26" + style="fill:#013ba6" /> + <g + id="ro" + transform="matrix(0.80000006,0,0,0.80000002,-56.802618,-79.999986)"> + <use + xlink:href="#rb" + clip-path="url(#o)" + id="use29" + x="0" + y="0" + width="1200" + height="800" /> + <use + xlink:href="#rw" + id="use31" + x="0" + y="0" + width="1200" + height="800" /> + </g> + <use + xlink:href="#ro" + transform="matrix(0.5,-0.86602537,0.86602543,0.5,-17.384607,-190.11096)" + id="use33" + x="0" + y="0" + width="1200" + height="800" /> + <use + xlink:href="#ro" + transform="matrix(0.5,0.86602537,-0.86602543,0.5,-155.94868,110.11099)" + id="use35" + x="0" + y="0" + width="1200" + height="800" /> + <use + xlink:href="#ro" + transform="matrix(-0.5,0.86602537,-0.86602543,-0.5,-329.28189,30.111019)" + id="use37" + x="0" + y="0" + width="1200" + height="800" /> + <use + xlink:href="#ro" + transform="matrix(-1,0,0,-1,-346.66653,-159.99995)" + id="use39" + x="0" + y="0" + width="1200" + height="800" /> + <use + xlink:href="#ro" + transform="matrix(-0.5,-0.86602537,0.86602543,-0.5,-190.71785,-270.11095)" + id="use41" + x="0" + y="0" + width="1200" + height="800" /> + <g + id="g43" + transform="matrix(0.80000006,0,0,0.80000002,-173.33326,-79.999986)"> + <use + xlink:href="#rb" + clip-path="url(#h)" + id="use45" + x="0" + y="0" + width="1200" + height="800" /> + <use + xlink:href="#rw" + id="use47" + x="0" + y="0" + width="1200" + height="800" /> + </g> + <g + transform="matrix(0.80000006,0,0,0.80000002,-56.802618,-79.999986)" + id="g49"> + <use + xlink:href="#rb" + clip-path="url(#i1)" + id="use51" + x="0" + y="0" + width="1200" + height="800" /> + <use + xlink:href="#rw" + clip-path="url(#i2)" + id="use53" + x="0" + y="0" + width="1200" + height="800" /> + </g> + <g + id="rl" + transform="matrix(-0.40000003,0.69282034,-0.69282037,-0.40000001,-231.59858,20.918509)"> + <use + xlink:href="#rb" + clip-path="url(#l1)" + id="use56" + x="0" + y="0" + width="1200" + height="800" /> + <use + xlink:href="#rw" + clip-path="url(#l2)" + id="use58" + x="0" + y="0" + width="1200" + height="800" /> + </g> + <use + xlink:href="#rl" + transform="matrix(-1,0,0,1,-346.66653,-5.3984375e-6)" + id="use60" + x="0" + y="0" + width="1200" + height="800" /> +</svg> diff --git a/s/flag/ec.svg b/s/flag/ec.svg new file mode 100755 index 0000000..d32cd10 --- /dev/null +++ b/s/flag/ec.svg @@ -0,0 +1,145 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#ffe800" d="M0 0h640v480H0z"/> + <path fill="#00148e" d="M0 240h640v240H0z"/> + <path fill="#da0010" d="M0 360h640v120H0z"/> + </g> + <g fill-rule="evenodd"> + <path d="M269.55 290.834l-72.424 76.485-1.277-1.644 72.422-76.485 1.277 1.644zM320.002 303.334l-94.777 99.908-1.662-1.572 94.777-99.91 1.662 1.574z"/> + <path d="M478.35 60.236v88.583l17.717 88.582 17.717-88.583V60.235H478.35z" transform="matrix(-.07 -.07 -.1 .1 265.03 429.55)" stroke="#000" stroke-width="4.104" fill="gray"/> + <path d="M478.35 60.236v88.583l17.717 88.582 17.717-88.583V60.235H478.35z" transform="matrix(-.07 -.07 -.1 .1 240.59 390.52)" stroke="#000" stroke-width="4.104" fill="gray"/> + </g> + <path d="M301.18 272.84s-17.716 336.61 53.15 336.61 106.3-35.433 106.3-35.433l-.86-185.03-158.59-116.15z" fill-rule="evenodd" transform="matrix(.45 0 0 .64 72.37 -59.76)" stroke="#000" stroke-width="1pt" fill="#ffdf00"/> + <path d="M344.46 304.2c0 17.717-7.846 269.82 27.587 269.82s88.583-17.717 88.583-17.717l-.86-167.31-115.31-84.79z" fill-rule="evenodd" transform="matrix(.45 0 0 .64 72.37 -59.76)" stroke="#000" stroke-width="1pt" fill="#0000c4"/> + <path d="M367.52 321.16c0 17.717 4.525 217.42 39.958 217.42h53.15l-.86-149.59-92.248-67.833z" fill-rule="evenodd" transform="matrix(.45 0 0 .64 72.37 -59.76)" stroke="#000" stroke-width="1pt" fill="#e10000"/> + <path d="M206.202 116.02l72.422 76.485 1.277-1.642-72.422-76.485-1.276 1.642z" fill-rule="evenodd"/> + <path d="M301.18 272.84s-35.433 336.61 70.866 336.61c88.583 0 88.583-53.15 106.3-53.15l-17.72-124.02-159.45-159.44z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#ffdf00" transform="matrix(.58 0 0 .62 9.63 -10.18)"/> + <g stroke="#000"> + <path d="M269.59 155.24c1.133 0 28.318-94.016 118.94-147.25" transform="matrix(.4 -.03 -.05 .35 135.14 147.37)" stroke-width="2.305" fill="none"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.14 -.22 .3 .14 175.87 257.36)" stroke-width="1pt" fill="#005b00"/> + <path d="M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z" fill-rule="evenodd" transform="matrix(.18 -.1 .1 .17 177.61 256.68)" stroke-width="1pt" fill="red"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.18 .12 -.13 .33 181 96.41)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.17 -.03 -.03 .33 179.31 159.26)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.06 .25 -.17 .2 227.98 45.45)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.2 -.2 .2 .24 150.27 241.08)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.22 -.22 .25 .2 135.57 282.11)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.26 .1 -.2 .32 130.78 147.66)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.15 .2 -.32 .22 178.5 103.35)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.08 .1 -.14 .16 250.68 102.64)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.1 0 -.08 .17 238.09 136.41)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(0 .14 -.14 .08 287.38 81.13)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.07 .1 -.25 .15 220.69 115.6)" stroke-width="1pt" fill="#005b00"/> + <path d="M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z" fill-rule="evenodd" transform="matrix(.13 .22 -.33 .2 207.03 70.11)" stroke-width="1pt" fill="#005b00"/> + <path d="M269.59 155.24c1.133 0 28.318-94.016 118.94-147.25" transform="matrix(.35 -.2 .14 .28 111.76 227.82)" stroke-width="2.37" fill="none"/> + <path d="M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z" fill-rule="evenodd" transform="matrix(.18 -.1 .1 .17 200.34 224.62)" stroke-width="1pt" fill="red"/> + <path d="M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z" fill-rule="evenodd" transform="matrix(.18 -.1 .1 .17 211.12 218.26)" stroke-width="1pt" fill="red"/> + <path d="M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z" fill-rule="evenodd" transform="matrix(.2 -.1 .07 .13 166.81 232.7)" stroke-width="1pt" fill="red"/> + <path d="M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z" fill-rule="evenodd" transform="matrix(.2 -.1 .07 .13 169.93 231.34)" stroke-width="1pt" fill="red"/> + <path d="M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z" fill-rule="evenodd" transform="matrix(.2 -.1 .07 .13 168.14 234.25)" stroke-width="1pt" fill="red"/> + <path d="M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z" fill-rule="evenodd" transform="matrix(.2 -.1 .1 .2 178.73 246.53)" stroke-width="1pt" fill="red"/> + <path d="M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z" fill-rule="evenodd" transform="matrix(.2 -.1 .1 .2 181.02 244.15)" stroke-width="1pt" fill="red"/> + <path d="M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z" fill-rule="evenodd" transform="matrix(.2 -.1 .1 .2 181.6 245.3)" stroke-width="1pt" fill="red"/> + </g> + <path d="M336.61 308.27c0 17.717-35.433 212.6 53.15 265.75 35.433 17.716 88.582-17.717 88.582 0l-17.71-141.74-124.02-124.01z" fill-rule="evenodd" transform="matrix(.58 0 0 .62 9.63 -10.18)" stroke="#000" stroke-width="1pt" fill="#0000c4"/> + <path d="M372.05 343.7c0 17.717-17.716 159.45 35.433 194.88 35.433 35.433 124.02 25.822 124.02 25.822l-70.87-132.12-88.58-88.58z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#e10000" transform="matrix(.58 0 0 .62 9.63 -10.18)"/> + <path d="M183.85 158.08l94.775 99.91 1.662-1.573-94.776-99.91-1.66 1.574z" fill-rule="evenodd"/> + <path d="M460.63 184.25l17.716 35.433V237.4c-.865-1.305 0 17.716-17.716 17.716-17.717 0-17.717-35.433-17.717-35.433s-17.716 35.433-17.716 70.866 17.716 53.15 17.716 53.15-2.61-36.704 17.717-35.434c20.328 1.27 17.716 17.716 17.716 17.716v35.433h17.717v-141.73l17.717-35.433-27.136-53.15-26.014 53.15z" fill-rule="evenodd" transform="matrix(.14 -.14 .1 .1 86.35 192.15)" stroke="#000" stroke-width="1pt" fill="#cececc"/> + <path d="M557.82 95.67l-26.323 70.865 17.717 53.15-35.433-17.716 35.434 53.148v35.433h17.716V255.12l35.433-53.15-35.433 17.717 17.717-53.15L557.82 95.67z" fill-rule="evenodd" transform="matrix(.1 -.16 .14 .1 113.99 183.83)" stroke="#000" stroke-width="1pt" fill="#cececc"/> + <path d="M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746-2.413 0-4.372-1.678-4.372-3.746s1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c0 35.8 20.917 187.81 22.582 191.56.14 4.44-4.718 6.382-7.077.832-6.55-17.342-20.743-159.91-21.332-193.22-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z" fill-rule="evenodd" transform="matrix(.4 0 0 .3 43.75 69.8)" stroke="#000" stroke-width="1pt" fill="#e10000"/> + <path d="M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746-2.413 0-4.372-1.678-4.372-3.746s1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c31.488 61.414 48.722 166.77 50.387 170.52.14 4.44-4.718 6.382-7.077.832-2.48-3.315-12.667-100.18-49.138-172.18-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z" fill-rule="evenodd" transform="matrix(.38 .1 -.15 .3 76.05 38.16)" stroke="#000" stroke-width="1pt" fill="#0000c4"/> + <path d="M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746-2.413 0-4.372-1.678-4.372-3.746s1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c0 35.8 20.917 187.81 22.582 191.56.14 4.44-4.718 6.382-7.077.832-6.55-17.342-20.743-159.91-21.332-193.22-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z" fill-rule="evenodd" transform="matrix(.5 0 0 .5 -24.61 83.06)" stroke="#000" stroke-width="1pt" fill="#e10000"/> + <path d="M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746-2.413 0-4.372-1.678-4.372-3.746s1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c31.488 61.414 48.722 166.77 50.387 170.52.14 4.44-4.718 6.382-7.077.832-2.48-3.315-12.667-100.18-49.138-172.18-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z" fill-rule="evenodd" transform="matrix(.48 .15 -.2 .48 16.67 31.58)" stroke="#000" stroke-width="1pt" fill="#0000c4"/> + <g fill-rule="evenodd"> + <path d="M370.454 290.834l72.423 76.485 1.277-1.644-72.423-76.485-1.276 1.644zM320 303.334l94.778 99.908 1.662-1.572-94.777-99.91-1.662 1.574z"/> + <path d="M478.35 60.236v88.583l17.717 88.582 17.717-88.583V60.235H478.35z" transform="matrix(.07 -.07 .1 .1 374.97 429.55)" stroke="#000" stroke-width="4.104" fill="gray"/> + <path d="M478.35 60.236v88.583l17.717 88.582 17.717-88.583V60.235H478.35z" transform="matrix(.07 -.07 .1 .1 399.41 390.52)" stroke="#000" stroke-width="4.104" fill="gray"/> + </g> + <g fill-rule="evenodd" stroke-width="1pt"> + <path d="M301.18 272.84s-17.716 336.61 53.15 336.61 106.3-35.433 106.3-35.433l-.86-185.03-158.59-116.15z" transform="matrix(-.45 0 0 .64 567.65 -59.76)" stroke="#000" fill="#ffdf00"/> + <path d="M344.46 304.2c0 17.717-7.846 269.82 27.587 269.82s88.583-17.717 88.583-17.717l-.86-167.31-115.31-84.79z" transform="matrix(-.45 0 0 .64 567.65 -59.76)" stroke="#000" fill="#0000c4"/> + <path d="M367.52 321.16c0 17.717 4.525 217.42 39.958 217.42h53.15l-.86-149.59-92.248-67.833z" transform="matrix(-.45 0 0 .64 567.65 -59.76)" stroke="#000" fill="#e10000"/> + <path d="M433.814 116.02l-72.423 76.485-1.276-1.642 72.423-76.485 1.277 1.642z"/> + <g stroke="#000" fill="#005b00"> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.16 -.07 .08 .35 309.51 210.98)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.2 -.05 .07 .4 291.49 182.57)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.23 .14 -.03 .4 296.48 69.41)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.25 .03 .02 .44 274.4 114.91)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.18 .17 -.04 .35 329.99 66.98)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.23 0 .03 .4 280.58 141.86)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.2 -.07 .07 .38 290.14 196.84)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.2 -.03 .05 .4 292.69 166.78)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.22 .15 -.05 .38 305.08 65.51)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.24 .05 0 .44 278.88 97.67)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.17 .17 -.06 .33 338.96 70)"/> + <path d="M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z" transform="matrix(.24 .02 0 .4 276.43 128.02)"/> + </g> + <path d="M301.18 272.84s-35.433 336.61 70.866 336.61c88.583 0 88.583-53.15 106.3-53.15l-17.72-124.02-159.45-159.44z" transform="matrix(-.58 0 0 .62 630.39 -10.18)" stroke="#000" fill="#ffdf00"/> + <path d="M336.61 308.27c0 17.717-35.433 212.6 53.15 265.75 35.433 17.716 88.582-17.717 88.582 0l-17.71-141.74-124.02-124.01z" transform="matrix(-.58 0 0 .62 630.39 -10.18)" stroke="#000" fill="#0000c4"/> + <path d="M372.05 343.7c0 17.717-17.716 159.45 35.433 194.88 35.433 35.433 124.02 25.822 124.02 25.822l-70.87-132.12-88.58-88.58z" transform="matrix(-.58 0 0 .62 630.39 -10.18)" stroke="#000" fill="#e10000"/> + <path d="M456.172 158.08l-94.777 99.91-1.66-1.573 94.775-99.91 1.662 1.574z"/> + <path d="M460.63 184.25l17.716 35.433V237.4c-.865-1.305 0 17.716-17.716 17.716-17.717 0-17.717-35.433-17.717-35.433s-17.716 35.433-17.716 70.866 17.716 53.15 17.716 53.15-2.61-36.704 17.717-35.434c20.328 1.27 17.716 17.716 17.716 17.716v35.433h17.717v-141.73l17.717-35.433-27.136-53.15-26.014 53.15z" transform="matrix(-.14 -.14 -.1 .1 553.66 192.15)" stroke="#000" fill="#cececc"/> + <path d="M557.82 95.67l-26.323 70.865 17.717 53.15-35.433-17.716 35.434 53.148v35.433h17.716V255.12l35.433-53.15-35.433 17.717 17.717-53.15L557.82 95.67z" transform="matrix(-.1 -.16 -.14 .1 526.03 183.83)" stroke="#000" fill="#cececc"/> + <path d="M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746-2.413 0-4.372-1.678-4.372-3.746s1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c0 35.8 20.917 187.81 22.582 191.56.14 4.44-4.718 6.382-7.077.832-6.55-17.342-20.743-159.91-21.332-193.22-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z" transform="matrix(-.4 0 0 .3 596.29 69.8)" stroke="#000" fill="#e10000"/> + <path d="M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746-2.413 0-4.372-1.678-4.372-3.746s1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c31.488 61.414 48.722 166.77 50.387 170.52.14 4.44-4.718 6.382-7.077.832-2.48-3.315-12.667-100.18-49.138-172.18-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z" transform="matrix(-.38 .1 .15 .3 563.96 38.16)" stroke="#000" fill="#0000c4"/> + <path d="M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746-2.413 0-4.372-1.678-4.372-3.746s1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c0 35.8 20.917 187.81 22.582 191.56.14 4.44-4.718 6.382-7.077.832-6.55-17.342-20.743-159.91-21.332-193.22-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z" transform="matrix(-.5 0 0 .5 664.61 83.06)" stroke="#000" fill="#e10000"/> + <path d="M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746-2.413 0-4.372-1.678-4.372-3.746s1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c31.488 61.414 48.722 166.77 50.387 170.52.14 4.44-4.718 6.382-7.077.832-2.48-3.315-12.667-100.18-49.138-172.18-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z" transform="matrix(-.48 .15 .2 .48 623.32 31.58)" stroke="#000" fill="#0000c4"/> + </g> + <g fill-rule="evenodd" stroke="#000" stroke-width="1pt"> + <path d="M478.35 698.03c17.717 10.652 37.09 8.268 53.15 0V556.3h-35.433c17.717 53.15 17.717 106.3-17.717 141.73z" fill="#e10000" transform="matrix(.58 0 0 .62 9.63 -10.18)"/> + <path d="M513.78 609.45c0 88.582-42.466 108.27-42.466 125.98 17.716 0 29.465-8.248 42.466-19.685 17.716-17.717 19.426-107.68 17.716-106.3H513.78z" transform="matrix(.35 0 0 .7 123.48 -89.93)" fill="#0000c4"/> + <path d="M478.35 609.45c-.81 51.77-44.794 99.64-36.497 110.24 9.474 9.475 36.497-21.654 71.93-3.937 17.717-17.717 19.427-107.68 17.717-106.3h-53.15z" transform="matrix(.35 0 0 .7 123.48 -89.93)" fill="#0000c4"/> + <path d="M513.78 609.45c0 88.582-40.696 94.47-40.696 118.09 17.717 0 40.603-12.912 40.696-11.79 17.716-17.718 19.426-107.68 17.716-106.3H513.78z" transform="matrix(.35 0 0 .46 112.52 51)" fill="#ffdf00"/> + <path d="M478.35 609.45c-.81 51.77-43.73 95.702-35.433 106.3 9.474 9.475 35.433-17.717 70.867 0 17.716-17.717 19.426-107.68 17.716-106.3h-53.15z" transform="matrix(.35 0 0 .46 112.52 51)" fill="#ffdf00"/> + <path d="M478.35 698.03c17.717 10.652 37.09 8.252 53.15-.015v-141.72h-35.433c17.717 53.15 17.717 106.3-17.717 141.73z" transform="matrix(-.58 0 0 .62 630.39 -10.17)" fill="#e10000"/> + <path d="M513.78 609.45c0 88.582-42.466 108.27-42.466 125.98 17.716 0 29.465-8.248 42.466-19.685 17.716-17.717 19.426-107.68 17.716-106.3H513.78z" transform="matrix(-.35 0 0 .7 516.53 -89.92)" fill="#0000c4"/> + <path d="M478.35 609.45c-.81 51.77-44.794 99.64-36.497 110.24 9.474 9.475 36.497-21.654 71.93-3.937 17.717-17.717 19.427-107.68 17.717-106.3h-53.15z" transform="matrix(-.35 0 0 .7 516.53 -89.92)" fill="#0000c4"/> + <path d="M513.78 609.45c0 88.582-40.696 94.47-40.696 118.09 17.717 0 40.603-12.912 40.696-11.79 17.716-17.718 19.426-107.68 17.716-106.3H513.78z" transform="matrix(-.35 0 0 .46 527.51 51.01)" fill="#ffdf00"/> + <path d="M478.35 609.45c-.81 51.77-43.73 95.702-35.433 106.3 9.474 9.475 35.433-17.717 70.867 0 17.716-17.717 19.426-107.68 17.716-106.3h-53.15z" transform="matrix(-.35 0 0 .46 527.51 51)" fill="#ffdf00"/> + </g> + <g stroke="#000" fill-rule="evenodd"> + <path d="M198.56 77.952l-89.676 35.434 89.676 35.434 44.837-17.717 22.42 17.717 22.418 35.433 22.42-35.433 22.418-17.717 1201.9-.002V95.668l-1201.9.002-22.42-17.718c0-17.716 4.704-35.433 22.42-35.433 17.717 0 54.242-.003 89.675-.003 0-17.716-44.838-53.15-134.51-53.15-89.675 0-134.51 35.434-134.51 53.15l89.675.002c17.716 0 22.42 17.716 22.42 35.432l-22.44 17.717-44.84-17.717z" transform="matrix(.12 0 0 .22 217.8 324.36)" stroke-width="4.467" fill="#908f8a"/> + <path transform="matrix(.28 0 0 .27 216.06 334.6)" stroke-width="1.838" fill="#b74d00" d="M204.35 95.67h336.61v17.718H204.35z"/> + <path transform="matrix(.28 0 0 .27 216.06 334.6)" stroke-width="1.838" fill="#b74d00" d="M204.35 77.955h336.61v17.717H204.35zM204.35 60.237h336.61v17.717H204.35z"/> + <path transform="matrix(.28 0 0 .27 216.06 334.6)" stroke-width="1.838" fill="#b74d00" d="M204.35 42.522h336.61V60.24H204.35zM204.35 24.805h336.61v17.717H204.35z"/> + <path transform="matrix(.28 0 0 .27 216.06 334.6)" stroke-width="1.838" fill="#b74d00" d="M204.35 7.09h336.61v17.716H204.35zM204.35-10.628h336.61V7.09H204.35z"/> + <path d="M423.23 60.236l137.8 124.02h19.686l-137.8-124.02H423.23z" transform="matrix(.25 0 0 .27 171.89 315.18)" stroke-width="3.255" fill="#908f8a"/> + <path d="M423.23 60.236l137.8 124.02h19.686l-137.8-124.02H423.23z" transform="matrix(.25 0 0 -.27 171.89 382.19)" stroke-width="3.255" fill="#908f8a"/> + <path d="M425.2 60.236v124.02h17.716V60.236H425.2z" transform="matrix(.28 0 0 .27 159.56 315.18)" stroke-width="3.087" fill="#908f8a"/> + <path d="M423.23 60.236l137.8 124.02h19.686l-137.8-124.02H423.23z" transform="matrix(.25 0 0 .27 216.23 315.18)" stroke-width="3.255" fill="#908f8a"/> + <path d="M423.23 60.236l137.8 124.02h19.686l-137.8-124.02H423.23z" transform="matrix(.25 0 0 -.27 216.23 382.19)" stroke-width="3.255" fill="#908f8a"/> + <path d="M425.2 60.236v124.02h17.716V60.236H425.2z" transform="matrix(.28 0 0 .27 238.4 315.18)" stroke-width="3.087" fill="#908f8a"/> + <path d="M425.2 60.236v124.02h17.716V60.236H425.2z" transform="matrix(.28 0 0 .27 203.91 315.18)" stroke-width="3.087" fill="#908f8a"/> + <path d="M425.2 60.236v124.02h17.716V60.236H425.2z" transform="matrix(.28 0 0 .27 194.05 315.18)" stroke-width="3.087" fill="#908f8a"/> + </g> + <g> + <g stroke="#000" stroke-width="1pt" fill="#ffdf00" fill-rule="evenodd"> + <path d="M655.51 396.85c0 88.016-55.56 159.45-124.02 159.45-68.456 0-124.02-71.433-124.02-159.45 0-88.015 55.56-159.45 124.02-159.45 68.457 0 124.02 71.433 124.02 159.45zm-17.717 0c0 78.237-47.622 141.73-106.3 141.73-58.677 0-106.3-63.495-106.3-141.73 0-78.236 47.622-141.73 106.3-141.73 58.677 0 106.3 63.497 106.3 141.73z" transform="matrix(.58 0 0 .62 9.63 -10.18)"/> + <path d="M579.75 249.94c-14.836-8.072-31.144-12.537-48.258-12.537s-33.422 4.465-48.257 12.537l6.893 16.323c12.716-7.175 26.695-11.144 41.364-11.144s28.648 3.968 41.364 11.143l6.894-16.323z" transform="matrix(.58 0 0 .62 9.63 -10.18)"/> + <path d="M579.75 249.94c-14.836-8.072-31.144-12.537-48.258-12.537s-33.422 4.465-48.257 12.537l6.893 16.323c12.716-7.175 26.695-11.144 41.364-11.144s28.648 3.968 41.364 11.143l6.894-16.323z" transform="matrix(.58 0 0 -.62 9.75 479.31)"/> + </g> + <path d="M379.554 235.867c0 48.532-27.603 87.873-61.654 87.873-34.05 0-61.654-39.343-61.654-87.873 0-48.532 27.603-87.873 61.654-87.873 34.05 0 61.654 39.343 61.654 87.873z" fill-rule="evenodd" fill="#a7cfff"/> + <path d="M637.8 396.85c1.133 26.658-4.634 39.635-11.89 67.356-1.912 2.98-10.966-6.537-16.447-11.236s-7.812 4.24-14.537-3.046c-6.725-7.284-11.05 2.058-15.983-4.095s-51.3-7.057-51.366-7.586c4.59-2.276 28.27.152 24.474-11.193-4.3-11.72-31.093-.35-34.69-15.364-2.44-14.907-53.567-15.543-57.22-19.225 1.444 5.665 39.728 8.05 38.814 22.57-.833 5.916-37.693 7.645-41.247 12.652-3.045 6.295 28.927-1.707 30.114 6.032-.077 3.185-4.704.068-21.357 4.99-8.326 2.46 15.454 10.33 6.41 14.637-9.045 4.308-28.26 6.188-27.433 7.998 2.94 8.908 44.693 19.536 40.535 21.065-14.754 6.56-22.552 10.872-29.627 14.652-19.24-25.653-31.146-61.087-31.146-100.2 31.716-11.405 24.968-13.735 83.645-13.735s77.98 2.33 128.95 13.735z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#afff7b" transform="matrix(.58 0 0 .62 9.63 -10.18)"/> + <path d="M637.8 396.85c-8.07 0-16.454 3.4-25.07 3.4-8.617 0-17.465-3.4-26.466-3.4s-19.287 4.532-28.512 4.532c-9.224 0-17.388-4.53-26.676-4.53-9.287 0-18.566 3.397-27.755 3.397s-18.288-3.4-27.218-3.4-17.69 3.4-26.2 3.4-16.77-3.4-24.7-3.4c0-19.56 2.976-38.197 8.358-55.15 27.075 2 11.042-15.716 27.075-15.716 8.655 0 17.434 1.86 25.238 9.788 2.447 0 14.48-11.373 27.912-9.788 13.432 1.586 8.492 27.272 26.37 28.637 9.063 6.797 14.393 11.134 26.78 13.872 17.716 1.606 68.35-2.5 68.704-.194 1.416 9.223 2.16 18.772 2.16 28.552z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#fff" transform="matrix(.58 0 0 .62 9.63 -10.18)"/> + <path d="M549.85 473.94c0-5.664 13.512-9.462 13.512-18.524s-11.914-9.35-12.38-17.86c-.2-3.46 10.32-7.046 14.915-7.335s8.493 7.42 8.493 9.12-4.662-4.192-8.578-4.378-12.313.63-12.313 2.33c0 3.4 14.85 7.598 13.717 18.925-1.132 11.327-12.71 14.657-12.71 18.055s5.056 12.86 5.056 12.86-9.713-7.53-9.713-13.192z" fill-rule="evenodd" transform="matrix(.2 0 0 .48 217.23 59.5)" stroke="#000" stroke-width="1pt"/> + <path d="M549.85 473.94c0-5.664 13.512-9.462 13.512-18.524s-11.95-9.348-12.38-17.86c-.946-3.962 11.814-6.544 16.41-6.833s9.985 7.92 9.985 9.62-5.41-5.195-9.325-5.38-14.553.63-14.553 2.33c0 3.398 14.85 7.597 13.717 18.924-1.132 11.327-12.71 14.657-12.71 18.055s5.056 12.86 5.056 12.86-9.713-7.53-9.713-13.192z" fill-rule="evenodd" transform="matrix(-.2 0 0 .48 445.83 59.12)" stroke="#000" stroke-width="1pt"/> + <path d="M332.965 264.846c0 1.333-.65 2.413-1.454 2.413-.803 0-1.454-1.08-1.454-2.414s.65-2.413 1.455-2.413c.804 0 1.455 1.08 1.455 2.413zM349.916 273.81h.465v19.617h-.464zM354.098 272.323h.464v19.616h-.464z" fill-rule="evenodd"/> + <path fill-rule="evenodd" d="M352.597 281.23l.004-.493 3.978.684-.004.495z"/> + <path d="M497.26 478.07s26.052 11.328 31.716 18.124c5.664 6.797 3.398 6.796 3.398 6.796l57.77 2.266c0-3.398 10.193-3.4 12.46-11.328 2.264-7.93 2.264-10.194 2.264-10.194l-18.123 5.664 1.132-10.194H572.02l-2.266 10.194-33.982-1.133 2.266-27.186-6.796 1.132-1.133 26.053c-1.134 0-31.718-7.93-32.85-10.195z" fill-rule="evenodd" transform="matrix(.58 0 0 .62 6.99 -9.48)" stroke="#000" stroke-width="1pt" fill="#b74d00"/> + <path d="M440.53 316.28s37.645-11.214 92.11-10.413 92.11 12.815 91.31 12.815-10.414-18.422-10.414-18.422-38.446-10.412-81.697-11.213c-43.253-.8-80.898 8.01-80.097 8.81L440.53 316.28z" fill-rule="evenodd" stroke="#fede00" stroke-width="1pt" fill="#fede00" transform="matrix(.58 0 0 .62 9.63 -10.18)"/> + <path fill-rule="evenodd" fill="#38a9f9" d="M306.072 169.855l13.562-.262.137 7.9-13.56.264zM274.775 174.155l-4.783 7.784 16.165-1.992-1.297-7.783-10.085 1.99zM288.553 171.16l13.518-1.187.62 7.876-13.516 1.187zM337.39 170.354l-13.538-.91-.475 7.888 13.537.91zM366.572 175.307l4.918 9.69-14.642-3.614 1.63-7.714 8.094 1.637zM354.836 172.49l-13.453-1.83-.957 7.837 13.453 1.832z"/> + <path fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#ffdf00" d="M532.64 323.49l-2.58-13.47-7.54 11.46 2.77-13.43-11.34 7.7 7.7-11.35-13.43 2.78 11.45-7.54-13.47-2.58 13.47-2.58-11.45-7.53 13.43 2.77-7.7-11.35 11.34 7.7-2.77-13.43 7.54 11.46 2.58-13.47 2.57 13.47 7.54-11.46-2.77 13.43 11.35-7.7-7.71 11.35 13.44-2.77-11.46 7.53 13.47 2.58-13.47 2.58 11.46 7.54-13.44-2.78 7.71 11.35-11.35-7.7 2.77 13.43-7.54-11.46z" transform="matrix(.58 0 0 .62 9.63 -10.18)"/> + <path d="M547.05 293.86c0 9.29-6.634 16.82-14.818 16.82s-14.818-7.53-14.818-16.82 6.634-16.82 14.818-16.82 14.818 7.53 14.818 16.82z" fill-rule="evenodd" transform="matrix(.57 0 0 .5 18.27 21.75)" stroke="#000" stroke-width="1pt" fill="#ffdf00"/> + <path d="M320.676 170.552c0 .545-1.257.988-2.807.988s-2.807-.443-2.807-.988 1.256-.988 2.806-.988 2.806.442 2.806.988zM326.755 170.55c0 .547-.943.99-2.105.99s-2.105-.443-2.105-.99c0-.544.942-.987 2.105-.987s2.105.443 2.105.988z" fill-rule="evenodd"/> + <path d="M529.43 297.86l.8.8c-1.9-1.9-.995-1.125 1.603 3.204 2.393-.495 3.09-1.39 4.806-2.403" transform="matrix(.56 -.18 .17 .6 -26.71 90.63)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M527.83 304.27l.8.8c-1.9-1.9-1.123-.994 3.205 1.603 4.027.544 8.092-1.196 10.412-4.005" transform="matrix(.58 0 0 .62 8.7 -10.18)" stroke="#000" stroke-width="1pt" fill="none"/> + <path d="M281.395 194.854s.93 7.945-5.11 17.877c-6.04 9.933-5.11 6.457-5.11 6.457s2.787 5.462 2.323 5.462-4.646-4.966-4.646-4.966l-5.11 5.462s4.646-8.442 4.18-8.442-1.393-2.98-1.393-2.98l3.715-1.49s5.575-10.428 5.575-9.93-16.724 11.42-16.724 11.42l22.3-18.87zM285.113 197.836c-.465 0 2.322 7.946 4.645 11.918 2.323 3.973 2.323 8.94 2.323 8.94l7.9 3.972-10.222-15.394 6.504 2.482-11.15-11.918zM285.113 218.693s5.574 5.96 6.04 7.945.463 6.456.463 6.456l-2.322-4.966-3.252 4.47s2.323-6.953 1.858-7.45-3.717 2.484-3.717 2.484 1.394-3.973 1.394-4.47 0-2.98-.464-4.47zM257.238 232.593c1.858-1.49 5.574-2.482 5.574-2.482s-2.323 3.973-2.787 3.973-1.858 0-2.787-1.49zM321.345 210.745s12.078 7.45 12.078 7.946-7.897-3.476-7.897-3.476l-4.18-4.47zM299.514 195.35c.93.497 17.653 14.4 17.188 14.4s-7.432-3.972-7.432-3.475v3.476l-3.717-7.945-.93 2.98-5.11-9.435zM303.69 217.695l4.646 9.435 4.645-.993s-8.825-8.442-9.29-8.442zM318.097 211.737c0 1.49.465 8.938.465 8.938s2.787 2.483 2.787 1.987-2.788-10.43-3.253-10.925z" fill-rule="evenodd" fill="#b7e1ff"/> + </g> + <g> + <path d="M182.612 89.522s20.98-11.61 44.87-20.254c23.886-8.644 50.68-14.325 54.222-14.325 7.077 0 19.21 17.783 21.233 17.783 2.022 0 10.11-4.94 20.223-4.94s16.178 7.904 18.2 7.904h18.2c2.023 0-6.066-19.76 0-18.77 3.034.493 28.817 4.445 52.833 12.225 24.014 7.78 58.103 21.515 58.103 21.515s-55.714 7.44-70.488 5.24c-2.022.988-.1 13.07-2.933 7.754-4.656-1.063-21.744-3.727-24.778-3.727s-8.69 3.427-16.78 5.402c-8.088 1.976-18.2 4.94-18.2 4.94l13.146 20.747-16.178 7.903s-10.11-23.71-14.156-23.71-6.067 16.795-11.123 15.807c-5.056-.988-7.078-15.808-11.123-19.76-4.044-3.95-25.368-5.39-33.458-7.366-8.09-1.975-21.144-3.5-28.222-5.476-7.078-1.976-14.155 4.94-17.19 4.94-3.032 0 4.046-5.928 1.012-6.916s-5.055 2.964-7.078 2.964c-2.022 0-23.256-3.952-25.278-4.94-2.022-.988 5.056-4.94 3.034-4.94h-8.09z" fill-rule="evenodd" fill="#984000"/> + <path d="M462.91-64.94c0 21.15-20.5 38.298-45.79 38.298S371.327-43.79 371.327-64.94s20.5-38.298 45.79-38.298S462.91-86.09 462.91-64.94z" fill-rule="evenodd" transform="matrix(.22 0 0 .26 231.63 96.52)" stroke="#772600" stroke-width="3.706" fill="gray"/> + <path d="M284.74-59.945c6.66-6.66 14.987-16.65 36.633-16.65 4.996-1.666 4.996-11.657 16.65-11.657 11.657 0 8.327 9.99 16.653 13.32 8.325 3.33 76.596-3.33 76.596-3.33s6.66 4.996 6.66 11.657c0 6.66-4.995 11.656-6.66 11.656s-68.27-4.995-73.266-3.33c-4.995 1.666-8.326 3.33-19.982 3.33-11.655 0-14.986-11.655-23.31-11.655-8.327 0-16.653-1.665-29.974 6.66z" fill-rule="evenodd" transform="matrix(.27 0 0 .32 205.39 100.65)" stroke="#772600" stroke-width="5.25" fill="#984000"/> + <path d="M487.88-76.597h26.642c9.572.114 12.873 3.005 21.647 3.33h23.31c8.476-.314 12.952-2.295 21.648-3.33 14.504-.175 9.555-1.306 6.66-9.99-2.625-6.565-2.95-9.61-6.66-13.322-1.396-7.944-4.655-10.77-4.996-19.98-1.527-7.027-4.342-11.753-1.665-19.983 3.84 5.647 5.387 7.97 14.986 8.326 10.045 0 13.937-.206 19.982 3.33 4.663 4.89 10.886 3.33 19.982 3.33 7.677 1.406 8.96 5.313 14.986 8.326 7.103 3.935 11.694 4.995 21.646 4.995 7.967 1.422 14.88 2.578 19.98 4.995 4.25 5.08 10.952 6.338 19.983 6.66 5.05 0 8.95-.524 13.32-1.665 7.678.37 15.474 0 24.978 0 6.163 7.21 7.587 9.862 18.317 9.99 7.338 5.155 13.527 6.037 19.982 8.327h24.976c8.928.687 11.79 4.35 19.98 6.66 8.115 3.768 15.722 6.35 21.648 8.326 5.89 1.28 13.574 1.665 21.646 1.665 6.183 3.175 13.61 3.46 18.317 6.66 6.89 1.477 16.302 3.215 21.647 4.996 8.816 1.168 12.187 3.94 19.98 4.995 6.704 1.915-2.223 3.56-6.66 4.995-9.826-.364-10.536-3.946-19.98-4.995-5.024-2.94-12.64-2.548-19.982-4.996h-1.666c6.6 3.903 12.948 6.422 9.99 13.32-8.49 0-15.366-1.097-23.31-1.665-8.385-1.616-12.227-3.33-21.647-3.33 9.394-2.264 11.854.27 18.315 3.33 2.396 8.06-2.725 4.996-11.656 4.996-7.61-2.73-12.174-5.983-21.648-6.66h-19.98c9.89.366 11.976 4.1 18.315 8.326.518 2.59-.132 2.472-4.995 3.33-5.16-4.478-11.89-6.013-19.982-8.326-7.88-.28-16.217-.965-23.31-3.33-4.868-.304-4.117-6.177 6.66 3.33 6.532 3.843 8.832 6.946 8.325 9.99-8.576-2.143-12.825-5.58-18.317-8.324-7.736-2.855-14.128-3.33-23.312-3.33-8.61-2.266.894-3.574 6.66 4.995 12.38 8.77-1.632 5.007-6.66 3.33-7.507-2.144-15.284-5.184-21.646-6.66-5.046-1.44-9.44-2.855-14.986-3.33 8.63.785 11.57 3.823 14.986 9.99 8.755 6.032-.384 3.1-8.326 1.666-5.07-4.402-11.487-6.658-14.986-11.656-8.35-4.176-8.563-8.982-3.33 1.665 1.363 3.407 1.11 10.795 1.665 11.656-6.136-6.625-4.825-8.325-11.656-8.325-4.634-3.244-11.496-5.765-14.986-9.99-6.435-.604-6.84-2.9-13.32-4.996 5.34 6.273 12.39 12.478 16.65 18.315 7.598 4.242 9.7 8.06 14.987 11.656 2.14 3.64 7.904 6.657 1.665 1.666-7.144-7.043-12.46-8.67-23.312-13.32-6.15-4.96-8.37-7.045-14.986-11.657-9.003-2.905-5.508-4.543 0 4.995 6.318 5.77 11.17 12.23 16.652 16.65 3.767 4.908 10.136 10.12 14.986 13.322 1.5 2.25 5.99 2.664 0 3.33-5.09-4.598-12.398-7.53-18.317-11.656-8.302-2.34-12.19-6.652-18.316-11.655-3.9-5.85-10.383-10.38-14.987-14.986-9.63-3.77 1.9 3.636 4.995 8.325 2.153 6.068 4.788 11.035 6.66 16.65 2.78 5.56-8.47-1.327-11.655-3.33-7.32-4.157-12.674-6.937-21.647-8.325-5.98-1.3-13.602-2.468-19.982-3.33-7.614-2.05 4.042 4.8 8.326 11.656 8.418 7.908-8.332 1.425-13.32 0-8.224-1.645-16.288-1.666-24.978-1.666-10.67.628-3.05 1.947 0 6.66 3.287 2.53 5.637 7.855 4.995 9.992-7.032-.95-13.025-3.023-21.646-3.33-6.96 2.32-15.344 1.665-23.31 1.665-.382 4.19 1.443.654 4.994 4.995 5.763 2.34 9.585 5.177 8.326 8.326H497.87c-5.29 1.447 1.14.704 5 6.663-2.16 5.403-4.95 3.332-11.655 3.332-4.545-1.818-13.598-2.636-18.317-4.996-4.69 0-4.336-1.22-8.325-1.665 14.035 9.93 7.073 7.45 14.986 14.987 1.366.456 4.523 1.665 1.664 1.665M371.32 73.265c-.997 0-3.2-5.375-6.66-9.99-2.327-6.05-5.392-2.59-8.326-11.657.348-9.402.684-11.094 0-19.982-6.863-4.783-9.714-6.27-14.986-14.986-8.46-7.078 1.236-19.063 2.845-27.85-7.375-1.638-11 11.477-22.34 16.194-8.156 5.492-.912-11.354-4.892-21.188-2.774-13.872-10.825 6.956-13.91 12.862-5.467 3.718-7.128 8.542-14.986 1.665 0-5.144 4.937-19.49 2.845-22.28-7.815 3.815-18.088 15.49-26.158 17.284-8.13-1.767 1.77-14.828 1.77-24.518-2.938-.98-14.696 25.755-19.52 26.002-4.824.248-2.713-25.993-4.972-25.428-3.542 4.96-10.65 15.43-15.576 18.948-9.454-1.22 1.398-17.435 2.845-23.427 1.628-7.168-8.905 13.75-14.502 15.102-4.1 3.554-12.237 6.072-14.986 6.66 3.24-6.13 19.076-18.712 17.935-22.278-9.21.34-23.31 12.556-31.256 13.952-5.19 0-12.387 1.758-13.32 1.665.448-7.926 19.418-14.65 22.445-19.465-9.306 1.494-27.186 9.706-32.436 16.135-6.146 1.336-13.944 3.02-19.983 0 .897-7.475 14.856-21.998 17.936-26.758-8.396 3.697-12.642 6.59-21.647 8.325-1.652 1.652-6.524 5.23-4.995 1.665 2.656-6.945 6.676-10.11 9.99-14.986-7.45 1.364-10.28 5.634-18.315 9.99-5.094.222-19.646 14.855-24.596 15.103-11.45 8.382-16.01 9.807-28.308 13.32-7.587 1.356-11.26 2.934-14.986 6.66 3.796-6.687 9.597-13.092 14.986-16.65 3.677-5.567 7.12-10.195 14.986-13.32 1.897-2.32 7.188-2.906 1.665-3.33-4.746 4.236-12.696 8.965-16.65 11.655-5.102 3.207-11.01 6.48-13.322 4.995 2.62-7.197 7.438-8.902 11.657-14.986 8.81-5.604.042-1.914-6.66 0-4.338 3.868-12.122 6.727-18.316 9.992-7.113 1.856-11.703 6.132-19.98 8.326 0 2.375 2.364-4.25 3.33-6.66 6.83-7.41 8.656-9.476 16.65-11.657 1.912-2.866 4.42-1.664-1.665-1.664-4.514 4.024-10.81 6.212-16.65 9.99-5.892 1.282-13.575 1.666-21.648 1.666-10.355 1.243-9.46 2.025 0-3.33 5.357-5.042 9.77-3.775 9.99-9.99C10.394-40.43 2.78-37.1-4.998-33.304c-6.434.19-8.133 1.665-14.985 1.665 3.298-3.415 5.277-7.633 9.99-9.99 6.896-7.663-4.377-1.478-6.66 0h-24.977c-4.465 5.58-.23.05 3.33-3.33 4.306-2.24 8.756-5.155 8.326-6.66-4.972 4.314-10.726 6.297-14.986 9.99-4.64 1.39-9.99 2.084-9.99 3.33 3.626-5.346 9.524-8.576 13.32-13.32 5.612-1.22 10.396-2.936 11.656-4.996h-23.312 16.65c8.4 0 15.63-.75 23.313-1.665 13.263-2.21-1.16-3.33-8.326-3.33-1.39-2.548 4.11-3.987 9.99-4.995 5.024-2.38 11.233-4.493 16.65-6.66 5.257-1.434 12.707-5.81 13.322-6.66-5.015.263-4.975 1.4-9.99 1.664 7.446-.574 12.8-1.666 21.646-1.666 8.028-2.58 14.906-5.41 21.647-8.326 2.936-3.588 4.24-3.33-3.33-3.33 6.713-2.158 16.238-3.193 21.647-4.995 7.872-1.687 14.9-4.253 19.982-6.66 4.876-3.316 7.69-7.176 13.32-9.99 6.528 4.437 6.602 4.994 18.318 4.994 9.41-.112 15.17-2.373 19.98-6.66 7.208-1.966 8.483-5.43 16.652-6.66 7.444 1.328 15.03 1.664 23.312 1.664 8.096-2.12 15.677-6.01 21.647-9.99 5.093-2.502 11.14-6.12 16.65-8.326 6.07 3.133 10.844 5.65 18.318 6.66 7.728-1.148 11.747-4.868 18.317-6.66 3.577-4.33 8.777-6.632 14.986-8.325 9.67-4.75 8.913 1.573 13.32 6.66 4.896 5.132 11.374 2.68 18.318 4.995 3.83 5.893 6.647 9.914 11.657 13.32 3.89 4.71 8.508 6.035 16.65 6.66 2.968 3.958.602 6.812 6.662 8.327 2.387 2.53 6.517 3.606 9.99 4.995" transform="matrix(.27 0 0 .32 205.39 104.9)" stroke="#772600" stroke-width="3.5" fill="none"/> + <path d="M468.74 30.803v.833c0-2.327-.103-1.09 1.665 3.33.595 3.64-.81 3.22-2.498 5.828-.286 3.723-.832 6.4-.832 10.823-.537 3.612-2.57 7.04-4.163 9.99-1.604 3.133-8.555 4.87-8.326 9.16-3.99 1.14-4.084-1.445-4.162-5.83-2.386-2.726-3.212-6.466-4.996-9.99-1.108-3.476-3.47-6.032-4.995-9.99-2.46-3.787-4.546-4.876-6.66-9.16-.827-2.065-.683-4.617-2.498-5.827-2.72-3.438-4.49-3.99-9.16-4.163-3.59.845-4.97 2.416-8.324 3.33-2.57.857-7.57.58-10.823 1.666-.808 1.314 1.6 1.94 2.498 4.995-2.135 1.764-2.926 4.883-4.163 7.493-1.965 2.487-3.283 3.706-4.163 7.494 1.362 2.316.2 5.387-1.666 7.493-.574 3.864-2.434 5.874-3.33 9.16-2.686 1.825-3.652 3.537-5.828 6.66-1.914 2.678-3.636 2.497-8.326 2.497-3.667-1-4.18-2.988-7.493-4.163-.352-1.056-.608-1.312-1.665-1.664" transform="matrix(.27 0 0 .32 205.39 104.9)" stroke="#782600" stroke-width="3.125" fill="none"/> + <path d="M307.65 125.534s-.455 4.955-3.643 8.258-9.794 7.157-9.794 7.157 8.882-4.222 9.793-3.304c.91.917-5.694 8.258-5.694 8.258s8.655-7.708 9.794-7.708 3.644 7.524 4.555 7.34c.912-.183-2.05-9.542-1.593-11.01.455-1.468 0-9.36 0-9.36l-3.416.368zM328.146 124.862s-.456 5.297-3.644 8.828-9.794 7.65-9.794 7.65 8.882-4.512 9.793-3.53c.913.98-5.692 8.827-5.692 8.827s8.654-8.24 9.793-8.24 3.645 8.043 4.556 7.847c.91-.196-2.05-10.2-1.594-11.77.455-1.57 0-10.004 0-10.004l-3.416.392zM299.453 76.817c0 .987-.967 1.788-2.16 1.788s-2.158-.8-2.158-1.788.966-1.787 2.16-1.787 2.158.8 2.158 1.787z" fill-rule="evenodd" fill="#812e00"/> + </g> +</svg> diff --git a/s/flag/ee.svg b/s/flag/ee.svg new file mode 100755 index 0000000..63d95b1 --- /dev/null +++ b/s/flag/ee.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <rect rx="0" ry="0" height="477.9" width="640"/> + <rect rx="0" ry="0" height="159.3" width="640" y="320.7" fill="#fff"/> + <path fill="#00f" d="M0 0h640v159.3H0z"/> + </g> +</svg> diff --git a/s/flag/eg.svg b/s/flag/eg.svg new file mode 100755 index 0000000..c14a682 --- /dev/null +++ b/s/flag/eg.svg @@ -0,0 +1,67 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-85.333 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" transform="matrix(.94 0 0 .94 80 0)"> + <g fill-rule="evenodd"> + <path fill="#fff" d="M-128 168.222h767.975v171.886H-128z"/> + <path d="M-128 340.108h767.975v171.886H-128z"/> + <path fill="red" d="M-128 0h767.975v168.222H-128z"/> + <path d="M322.44-322.44h7.087l3.75 60.236-7.294 7.087-7.086-7.087 3.543-60.236z" transform="matrix(.63 -.03 .06 .78 65.27 520.62)" stroke="#fff" stroke-width="1pt" fill="#d7b900"/> + <path d="M322.44-322.44h7.087l3.75 60.236-7.294 7.087-7.086-7.087 3.543-60.236z" transform="matrix(.63 .02 -.04 .78 23.81 502.29)" stroke="#fff" stroke-width="1pt" fill="#d7b900"/> + <g stroke="#fff" stroke-width="4.824" fill="#d7b900"> + <path d="M177.16 255.12l-17.716 442.91 35.433-35.434 17.716-407.48H177.16z" transform="matrix(-.28 0 0 .2 355.88 162.13)"/> + <path d="M177.16 290.55l-17.717 407.48 35.433-35.434 17.717-372.05H177.16z" transform="matrix(-.28 0 0 .2 346.13 155.19)"/> + <path d="M177.17 325.98l-17.718 372.05 35.433-35.434 17.718-336.61H177.17z" transform="matrix(-.28 0 0 .2 336.37 148.25)"/> + <path d="M177.16 361.42l-17.717 336.62 35.433-35.434 17.717-301.18H177.16z" transform="matrix(-.28 0 0 .2 326.62 141.31)"/> + </g> + <g stroke="#fff" stroke-width="4.824" fill="#d7b900"> + <path d="M177.16 255.12l-17.716 442.91 35.433-35.434 17.716-407.48H177.16z" transform="matrix(.24 0 0 .2 144.93 162.07)"/> + <path d="M177.16 290.55l-17.717 407.48 35.433-35.434 17.717-372.05H177.16z" transform="matrix(.24 0 0 .2 153.61 155.13)"/> + <path d="M177.17 325.98l-17.717 372.05 35.433-35.434 17.717-336.61H177.17z" transform="matrix(.24 0 0 .2 162.27 148.19)"/> + <path d="M177.16 361.42l-17.716 336.62 35.433-35.434 17.716-301.18H177.16z" transform="matrix(.24 0 0 .2 171.33 142.16)"/> + </g> + <path d="M181.73 256.05c-1.004-1.312 19.847-18.646 55.28-18.646 53.15 0 61.307 18.646 96.74 18.646h152.02c35.434 0 45.724-18.646 98.873-18.646 35.433 0 52.168 18.293 53.15 18.646 0 0-17.717-.93-53.15-.93s-49.3 39.04-85.052 38.222c-26.787.818-144.23 0-179.66 0-35.432 0-47.485-37.292-82.92-37.292-35.432 0-56.283-1.312-55.28 0z" transform="matrix(.26 0 0 .2 139.54 161.9)" stroke="#d7b900" stroke-width="4.824" fill="#fff"/> + <path d="M400.39-109.84v3.543l3.543 3.543-3.543 3.543v3.543c-14.174 7.086-28.85 7.086-42.52 7.086-13.67 0-28.346 0-46.063-7.087v-3.544l-3.543-3.544 3.543-3.543v-3.543c14.173 3.543 28.347 7.086 46.063 7.086 17.717 0 28.347-3.543 42.52-7.086z" transform="matrix(1.37 0 0 1.24 -238.12 442.85)" stroke="#d7b900" stroke-width="1pt" fill="#fff"/> + <g transform="matrix(-1.1 .3 .3 1.02 681.2 318.85)" stroke="#d7b900" fill="#fff"> + <rect transform="matrix(-.56 -.83 -.9 .46 0 0)" rx="2.395" ry="4.505" height="40.13" width="4.789" y="-406.53" x="-73.159" stroke-width=".623"/> + <g stroke-width="4.713"> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 323.45 -377.05)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 320.18 -384.16)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 316.91 -391.27)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 312.79 -400.03)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 309.52 -407.13)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 306.24 -414.24)"/> + </g> + <path d="M345.63-96.125c0 3.28-1.12 5.938-2.5 5.938s-2.5-2.66-2.5-5.938 1.12-5.938 2.5-5.938 2.5 2.66 2.5 5.938z" transform="matrix(.5 -.4 .3 .66 228.03 87.16)" stroke-width="1pt"/> + <path d="M345.63-96.125c0 3.28-1.12 5.938-2.5 5.938s-2.5-2.66-2.5-5.938 1.12-5.938 2.5-5.938 2.5 2.66 2.5 5.938z" transform="matrix(.5 -.43 .3 .74 242.09 102.86)" stroke-width="1pt"/> + <path d="M345.63-96.125c0 3.28-1.12 5.938-2.5 5.938s-2.5-2.66-2.5-5.938 1.12-5.938 2.5-5.938 2.5 2.66 2.5 5.938z" transform="matrix(.53 -.4 .3 .7 245.2 88.25)" stroke-width="1pt"/> + </g> + <path d="M268.29 261.84s32.89-42.16 32.89-95.31c0 .002 70.866.002 70.866 0 0 53.15 34.308 95.31 35.434 88.585-17.717 0-53.15-17.717-70.866-53.15-17.716 35.434-50.608 59.875-68.324 59.875z" transform="matrix(.32 0 0 .2 138.92 168.07)" stroke="#d7b900" stroke-width="4.824" fill="#fff"/> + <path d="M253.46 240.41s47.94-58.726 47.94-111.88V53.946c0-17.717 23.97-18.646 35.954-18.646 17.717 0 35.954.93 35.954 18.646v74.584c0 53.15 47.94 111.88 47.94 111.88-35.433 0-54.193-39.15-71.91-74.584 0 17.717 4.994 53.862-12.723 71.58-17.716-17.718-11.246-53.863-11.246-71.58-17.718 35.433-36.476 74.584-71.91 74.584z" transform="matrix(.3 0 0 .2 143.21 168.61)" stroke="#d7b900" stroke-width="4.824" fill="#fff"/> + <path d="M283.12 77.953h53.15c0 17.716 0 35.433-17.717 35.433S283.12 95.67 283.12 77.953z" transform="matrix(.25 .08 -.06 .12 162.35 142.1)" stroke="#d7b900" stroke-width="5.909" fill="#fff"/> + <path d="M183.96 42.52c11.81 0 11.81 17.716 11.81 35.433-17.715 0-29.527-17.717-47.243 0 0-19.56 0-35.433 17.716-35.433h17.717z" transform="matrix(.38 .12 -.06 .12 172.02 147.66)" stroke="#d7b900" stroke-width="4.824" fill="#fff"/> + <path d="M336.61 69.094c0 4.892-3.966 8.858-8.858 8.858s-8.86-3.966-8.86-8.858 3.967-8.858 8.86-8.858 8.858 3.966 8.858 8.858z" transform="matrix(.25 .08 -.08 .18 168.37 139.81)" stroke="#d7b900" stroke-width="4.824" fill="#fff"/> + <path d="M322.44-322.44h7.087l3.75 60.236-7.294 7.087-7.086-7.087 3.543-60.236z" transform="matrix(.63 0 0 .78 41.62 510.33)" stroke="#fff" stroke-width="1pt" fill="#d7b900"/> + <g transform="matrix(1.2 .3 -.37 1.02 -234.85 310.23)" stroke="#d7b900" fill="#fff"> + <rect transform="matrix(-.56 -.83 -.9 .46 0 0)" rx="2.395" ry="4.505" height="40.13" width="4.789" y="-406.53" x="-73.159" stroke-width=".623"/> + <g stroke-width="4.713"> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 323.45 -377.05)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 320.18 -384.16)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 316.91 -391.27)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 312.79 -400.03)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 309.52 -407.13)"/> + <path d="M318.9 574.02l17.716 17.716 17.717-17.716 17.716 17.716 17.716-17.716 17.716 17.716c5.257-9.426 7.092-22.888-.112-36.52-36.185-13.817-68.824-12.642-107.18 1.19-3.087 11.03-2.975 23.927 0 35.432l18.71-17.818z" transform="matrix(-.12 .1 .17 .38 306.24 -414.24)"/> + </g> + <path d="M345.63-96.125c0 3.28-1.12 5.938-2.5 5.938s-2.5-2.66-2.5-5.938 1.12-5.938 2.5-5.938 2.5 2.66 2.5 5.938z" transform="matrix(.5 -.4 .3 .66 228.03 87.16)" stroke-width="1pt"/> + <path d="M345.63-96.125c0 3.28-1.12 5.938-2.5 5.938s-2.5-2.66-2.5-5.938 1.12-5.938 2.5-5.938 2.5 2.66 2.5 5.938z" transform="matrix(.5 -.43 .3 .74 242.09 102.86)" stroke-width="1pt"/> + <path d="M345.63-96.125c0 3.28-1.12 5.938-2.5 5.938s-2.5-2.66-2.5-5.938 1.12-5.938 2.5-5.938 2.5 2.66 2.5 5.938z" transform="matrix(.53 -.4 .3 .7 245.2 88.25)" stroke-width="1pt"/> + </g> + <path d="M301.18 290.55c0 194.88 35.433 177.17 106.3 248.03 70.866-70.866 106.3-53.15 106.3-248.03-35.434 0-70.867 0-106.3-17.716-35.432 17.716-70.866 17.716-106.3 17.716z" transform="matrix(.25 0 0 .2 142.3 162.3)" stroke="#d7b900" stroke-width="4.824" fill="#fff"/> + <path d="M220.78 220.665c0 35.052 8.38 31.867 25.143 44.612 16.762-12.747 25.144-9.56 25.144-44.612-8.382 0-16.763 0-25.144-3.187-8.38 3.187-16.762 3.187-25.144 3.187z" fill="#d7b900"/> + <path d="M237.046 221.122v36.522l9.01 5.307 9.01-5.306v-36.522c-3.213-.403-6.315-1.134-8.995-1.973-2.98.893-6.016 1.596-9.024 1.972z" fill="#fff"/> + </g> + </g> +</svg> diff --git a/s/flag/eh.svg b/s/flag/eh.svg new file mode 100755 index 0000000..95c3f44 --- /dev/null +++ b/s/flag/eh.svg @@ -0,0 +1,15 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-158.67 0H524v512h-682.67z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" fill-rule="evenodd" transform="matrix(.94 0 0 .94 148.75 0)"> + <path d="M-180 0H844v256H-180z"/> + <path fill="#107b00" d="M-180 256H844v256H-180z"/> + <path fill="#fff" d="M-180 169.31H844v176.13H-180z"/> + <path d="M309.98 195.55c-45.202-19.423-84.107 20.644-84.063 58.085.046 39.158 38.02 80.92 86.168 62.43-34.087-10.037-48.156-35.215-48.15-60.68-.245-25.216 15.887-54.54 46.045-59.835z" fill="#f0f"/> + <path fill="#ff1800" d="M363.145 294.214l-25.835-18.868-25.993 18.898 9.963-30.403-26-18.87 31.984.07 9.93-30.552 9.816 30.435 32.115.005-25.924 18.735"/> + <path d="M314.34 315.65c-50.517 17.536-88.554-20.48-89.216-59.456-.66-38.976 37.59-79.167 89.473-60.865-29.355 4.352-50.912 30.08-51.17 59.168-.196 21.994 12.812 53.345 50.913 61.152zM-179.98 0l348.61 256.62L-180 512l.002-509.38.015-2.622z" fill="red"/> + </g> +</svg> diff --git a/s/flag/er.svg b/s/flag/er.svg new file mode 100755 index 0000000..f7f0013 --- /dev/null +++ b/s/flag/er.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd"> + <path fill="#be0027" d="M-.002 0h640.008v480H-.002z"/> + <path d="M-.002 480l640.008-.3-.032-239.7L-.002 480z" fill="#b4d7f4"/> + <path d="M-.002 0l640.008.3-.032 239.7L-.002 0z" fill="#239e46"/> + <path d="M186.23 360.4c-10.713 2.958-16.854 11.27-16.697 19.11l52.73-.21c.475-8.427-6.457-16.22-17.01-19.29 51.627-1.065 96.478-20.404 104.63-32.813-8.066-3.5-17.392 2.134-24.04.837 15.784-7.295 63.073-37.903 55.384-70.717-5.976 18.226-24.08 33.306-31.79 37.354 17.664-26.822 41.785-54.748 20.858-76.373 1.057 12.533-7.965 26.327-11.95 27.364 10.248-28.34 20.025-63.925-2.177-87.383 2.916 8.48 1.738 32.396-2.276 33.47-1.236-19.27-4.525-59.807-24.82-59.23 6.445 5.738 9.266 21.4 9.41 37.22-4.626-10.838-9.883-18.998-21.126-27-9.095-17.444-25.28-31.897-41.464-42.25 1.817 12.696 3.32 22.713 21.048 35.882-9.243-.576-18.484-18.098-28.362-18.583-7.857-.38-14.024 7.12-26.864 2.805 1.422 4.238 7.412 6.115 8.676 9.25-2.75 1.9-9.28-.296-14.707-3.123 7.467 10.17 19.036 16.15 28.858 14.13 11.682-2.245 24.205-1.057 36.15 5.74-3.05 1.567-14.925 1.556-22.545.603 6.927 7.013 11.572 11.66 23.615 11.584 10.757-.07 16.397-5.74 19.16-2.228 6.746 7.993 11.286 15.984 16.93 25.397-12.467 1.377-8.708-14.1-22.593-22.016-7.8 16.148 8.973 35.29 20.39 43.245.155 12.136 1.93 22.29 7.077 31.53 3.47 6.515 7.956 13.184 6.264 27.887-6.835-4.98-13.515-21.768-11.058-35.096-8.555 2.333-11.9 17.377-7.867 24.95 3.012 5.764 5.022 16.798 1.548 21.73-3.384 4.595-3.74 4.08-3.695 13.943.12 5.9-3.175 12.88-8.545 17.745 1.12-4.158 2.4-11.312 1.158-15.784-4.245 7.2-14.893 14.652-18.246 22.392-3.293 7.76-4.128 21.198-20.062 24.297-20.5 4.068-27.575 7.62-40.766 13.018-1.464-10.02 2.917-30.912 11.295-29.72 8.18 1.455 32.98-8.546 24.108-29.44-1.753 6.586-7.598 13.012-13.917 13.297 6.828-8.858 19.013-18.03 13.08-32.872-3.3 6.31-8.488 13.88-16.355 18.14 8.434-16.162.98-20.997-9.036-7.685-3.783 5.135-6.068 15.427-8.47 28.497-3.935-10.63-3.675-24.623-8.337-35.985-4.87-12.287 6.463-15.532 11.796-14.546 13.057 3.486 34.88 3.484 33.258-18.088-5.64 7.297-15.53 9.55-26.21 6.924 11.995-8.76 21.466-25.234 8.1-33.836-.446 9.12-7.505 19.35-16.93 24.06-2.205-7.698-2.205-15.865-.314-24.82-5.262 5.538-9.105 17.064-12.162 30.166-.23-12.95 2.22-22.282 4.037-29.25 2.753-10.175 9.6-3.554 20.078-2.804 10.092.572 23.986-5.005 21.33-18.69-3.445 5.415-10.518 7.522-17.745 6.95 8.7-5.272 23.86-14.638 15.546-29.044-3.493 5.456-4.624 10.124-14.732 11.798 2.647-6.09 3.087-14.7 10.933-18.11-13.994-2.787-22.007 6.397-26.08 20.78-1.65-9.972-3.617-13.643-4.008-20.94 7.565-8.4 8.357-24.838-8.02-28.514-.973 8.48-.685 10.5 1.178 17.403-7.688-4.568-18.524-7.088-25.738-.63 4.888 5.275 12.453 9.918 24.113 4.166-2.754 9.01-9.918 7.468-19.762 4.032 6.017 11.302 13.61 13.31 21.99 12.007 4.388 11.568 4.58 20.357-8.24 37.203.592-10.47-.152-18.268-8.47-26.732-7.127-6.98-12.92.3-1.78 15.818-6.758-4.976-14.406-15.076-16.708-25.174-2.228 12.475-.222 27.178 6.684 35.42-3.268 3.492-6.982-.37-12.476-8.91 2.078 27.328 13.737 32.6 29.406 26.51.445 15 .445 28.888 1.336 47.007-9.136-13.142-20.718-22.946-27.18-25.396-2.004 7.353 5.572 16.93 9.804 22.277-6.46-1.337-20.496-12.03-20.496-12.03-1.412 12.18 14.334 23.467 24.506 28.516-11.955-.52-17.23-5.05-24.952-12.475.15 33.788 36.608 27.92 43.442 22.722.89 16.635 2.16 35.864 3.053 52.5-10.307-1.8-9.497-4.898-18.316-5.715-24.478-.954-43.895-29.384-50.325-50.297-1.845 3.442-.382 7.043-2.07 11.27-3.973-10.264-9.05-23.52-15.86-29.69 1.735 5.983 1.918 12.065 1.315 23.25-2.337-7.248-4.51-9.47-4.667-17.977.15-6.53 6.3-11.35 5.96-20.535-.252-6.706-6.37-21.242-7.27-32.495-2.96 11.582-4.82 23.79-9.357 30.96 2.255-12.367 1.532-20.902 5.346-29.226 4.404-8.763 8.15-16.586 5.217-25.43-2.813 3.416-1.845 6.52-8.912 14.818-1.535-9.025 9.138-23.47 19.496-29.277 7.306-3.85 16.515-17.617 10.516-27.053-6.87 4.934-9.955 11.6-19.66 22.99 6.923-27.06 24.91-34.138 46.44-34.23 4.765-.023 14.37-1.743 17.067-8.048-6.07 2.343-13.245 2.64-19.63 1.363 4.646-6.823 14.434-5.936 23.554-5.977 7.154-.034 18.322-1.004 22.837-11.193-8.727 3.78-22.337 4.567-30.906 1.89 13.628-7.062 34.975-7.822 45.924-17.088-12.48-9.315-43.706 2.168-63.43 15.696 5.512-5.04 14.225-13.983 19.032-21.202-10.787-5.172-38.068 25.05-47.466 43.008-8.927 5.04-12.497 12.943-15.963 18.457 4.756-16.073 5.26-27.736 9.228-40.97-30.6 10.532-17.88 67.068-24.536 80.594.784-14.933.15-34.116-6-44.008-9.423 7.19-10.184 49.51-1.335 84.74-3.196-9.43-9.226-18.23-11.16-29.705-13.95 25.44 8.175 55.454 26.677 79.162-13.93-7.255-27.7-22.86-36.747-35.94 2.496 45.532 50.046 54.992 57.427 66.183-10.02-4.664-29.173-13.892-37.3-4.223 13.23 3.055 23.785 6.586 32.29 12.16 12.34 15.407 35.707 22.145 76.403 23.847z" fill="#f3e295"/> + </g> +</svg> diff --git a/s/flag/es.svg b/s/flag/es.svg new file mode 100755 index 0000000..09ea9b2 --- /dev/null +++ b/s/flag/es.svg @@ -0,0 +1,676 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#c00" d="M.05 0h639.9v480H.05z"/> + <path fill="#ff3" d="M0 120h640v240.01H0z"/> + </g> + <path fill="#c00" d="M180.724 173.017s-.864 0-1.34-.27c-.475-.277-1.91-1.635-1.91-1.635l-1.15-.818-1.045-1.448s-1.245-1.982-.674-3.528c.57-1.538 1.528-2.085 2.392-2.535.863-.452 2.672-.997 2.672-.997s1.44-.632 1.916-.728c.475-.09 2.202-.542 2.202-.542s.477-.27.952-.45c.482-.18 1.15-.18 1.535-.276.38-.09 1.34-.397 1.91-.427.89-.036 2.298.156 2.78.156.475 0 2.1.095 2.767.095.667 0 3.058-.186 3.73-.186.667 0 1.15-.084 1.918 0 .76.09 2.1.54 2.486.727.382.18 2.68.997 3.536 1.268.862.264 2.968.63 3.928 1.082.95.456 1.535 1.22 2.01 1.855.483.633.572 1.323.762 1.78.184.45.19 1.424.007 1.876-.193.45-.87 1.382-.87 1.382l-1.055 1.717-1.337 1.082s-.96.913-1.72.817c-.768-.078-8.517-1.448-13.49-1.448-4.977 0-12.92 1.447-12.92 1.447"/> + <path stroke-linejoin="round" d="M180.724 173.017s-.864 0-1.34-.27c-.475-.277-1.91-1.635-1.91-1.635l-1.15-.818-1.045-1.448s-1.245-1.982-.674-3.528c.57-1.538 1.528-2.085 2.392-2.535.863-.452 2.672-.997 2.672-.997s1.44-.632 1.916-.728c.475-.09 2.202-.542 2.202-.542s.477-.27.952-.45c.482-.18 1.15-.18 1.535-.276.38-.09 1.34-.397 1.91-.427.89-.036 2.298.156 2.78.156.475 0 2.1.095 2.767.095.667 0 3.058-.186 3.73-.186.667 0 1.15-.084 1.918 0 .76.09 2.1.54 2.486.727.382.18 2.68.997 3.536 1.268.862.264 2.968.63 3.928 1.082.95.456 1.535 1.22 2.01 1.855.483.633.572 1.323.762 1.78.184.45.19 1.424.007 1.876-.193.45-.87 1.382-.87 1.382l-1.055 1.717-1.337 1.082s-.96.913-1.72.817c-.768-.078-8.517-1.448-13.49-1.448-4.977 0-12.92 1.447-12.92 1.447h.006z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M191.367 161.92c0-2.337 1.046-4.223 2.334-4.223 1.29 0 2.336 1.886 2.336 4.224 0 2.327-1.047 4.22-2.335 4.22-1.287 0-2.333-1.893-2.333-4.22"/> + <path d="M191.367 161.92c0-2.337 1.046-4.223 2.334-4.223 1.29 0 2.336 1.886 2.336 4.224 0 2.327-1.047 4.22-2.335 4.22-1.287 0-2.333-1.893-2.333-4.22z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M192.67 161.92c0-2.15.483-3.893 1.073-3.893.596 0 1.072 1.744 1.072 3.894 0 2.135-.476 3.878-1.072 3.878-.59 0-1.072-1.743-1.072-3.877"/> + <path d="M192.67 161.92c0-2.15.483-3.893 1.073-3.893.596 0 1.072 1.744 1.072 3.894 0 2.135-.476 3.878-1.072 3.878-.59 0-1.072-1.743-1.072-3.877z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M192.163 157.458c0-.81.7-1.484 1.563-1.484.862 0 1.56.673 1.56 1.484 0 .816-.698 1.472-1.56 1.472-.864 0-1.563-.656-1.563-1.472"/> + <path fill="#c8b100" d="M194.827 156.936v.985h-2.416v-.984h.793v-2.217h-1.046v-.98h1.046v-.962h1.028v.96h1.042v.98h-1.04v2.218h.595"/> + <path d="M194.827 156.936v.985h-2.416v-.984h.793v-2.217h-1.046v-.98h1.046v-.962h1.028v.96h1.042v.98h-1.04v2.218h.595" stroke="#000" stroke-width=".5067477" fill="none"/> + <path fill="#c8b100" d="M195.912 156.936v.985h-4.29v-.984h1.586v-2.217h-1.047v-.98h1.048v-.962h1.027v.96h1.042v.98h-1.042v2.218h1.677"/> + <path d="M195.912 156.936v.985h-4.29v-.984h1.586v-2.217h-1.047v-.98h1.048v-.962h1.027v.96h1.042v.98h-1.042v2.218h1.677" stroke="#000" stroke-width=".5067477" fill="none"/> + <path d="M194.182 156.03c.647.18 1.11.75 1.11 1.424 0 .817-.698 1.473-1.56 1.473-.864 0-1.563-.656-1.563-1.473 0-.685.488-1.268 1.155-1.43" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M193.742 172.743h-8.135l-.19-1.996-.38-2.08-.406-2.594c-2.24-2.958-4.302-4.9-4.994-4.483.165-.547.36-.956.794-1.208 1.992-1.185 6.104 1.658 9.195 6.327.278.426.546.853.78 1.28h6.72c.242-.42.508-.848.787-1.28 3.085-4.67 7.202-7.513 9.19-6.328.43.252.627.66.798 1.208-.697-.41-2.754 1.525-5.007 4.483l-.4 2.595-.38 2.08-.186 1.995h-8.178"/> + <path d="M193.742 172.743h-8.135l-.19-1.996-.38-2.08-.406-2.594c-2.24-2.958-4.302-4.9-4.994-4.483.165-.547.36-.956.794-1.208 1.992-1.185 6.104 1.658 9.195 6.327.278.426.546.853.78 1.28h6.72c.242-.42.508-.848.787-1.28 3.085-4.67 7.202-7.513 9.19-6.328.43.252.627.66.798 1.208-.697-.41-2.754 1.525-5.007 4.483l-.4 2.595-.38 2.08-.186 1.995h-8.186z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M179.982 161.51c1.53-.902 5.102 1.928 8 6.326m19.547-6.327c-1.537-.902-5.103 1.928-8.004 6.326" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M181.712 176.423c-.335-.968-.976-1.833-.976-1.833 3.294-.968 7.88-1.575 12.983-1.587 5.094.012 9.72.62 13.008 1.587l-.876 1.55c-.286.5-.66 1.37-.635 1.37-2.976-.913-6.808-1.382-11.523-1.387-4.71.006-9.24.583-11.6 1.447.025 0-.165-.545-.4-1.147h.018"/> + <path d="M181.712 176.423c-.335-.968-.976-1.833-.976-1.833 3.294-.968 7.88-1.575 12.983-1.587 5.094.012 9.72.62 13.008 1.587l-.876 1.55c-.286.5-.66 1.37-.635 1.37-2.976-.913-6.808-1.382-11.523-1.387-4.71.006-9.24.583-11.6 1.447.025 0-.165-.545-.4-1.147h.018" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M193.73 180.612c4.11-.007 8.647-.63 10.317-1.064 1.123-.325 1.775-.83 1.656-1.412-.058-.276-.298-.517-.622-.655-2.46-.786-6.885-1.345-11.35-1.352-4.463.007-8.917.566-11.373 1.353-.323.14-.565.38-.622.656-.12.582.534 1.087 1.65 1.412 1.675.433 6.232 1.057 10.344 1.064"/> + <path d="M193.73 180.612c4.11-.007 8.647-.63 10.317-1.064 1.123-.325 1.775-.83 1.656-1.412-.058-.276-.298-.517-.622-.655-2.46-.786-6.885-1.345-11.35-1.352-4.463.007-8.917.566-11.373 1.353-.323.14-.565.38-.622.656-.12.582.534 1.087 1.65 1.412 1.675.433 6.232 1.057 10.344 1.064z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M206.94 172.743l-1.01-.907s-.952.588-2.15.407c-1.194-.18-1.58-1.627-1.58-1.627s-1.34 1.123-2.438 1.04c-1.097-.098-1.815-1.04-1.815-1.04s-1.192.852-2.245.77c-1.054-.097-2.057-1.407-2.057-1.407s-1.053 1.357-2.106 1.452c-1.055.085-1.92-.913-1.92-.913s-.474.997-1.813 1.22c-1.338.227-2.482-1.04-2.482-1.04s-.766 1.225-1.675 1.543c-.906.32-2.106-.456-2.106-.456s-.19.456-.33.727c-.145.27-.527.32-.527.32l.298.81c3.28-.95 7.723-1.54 12.748-1.544 5.033.006 9.596.595 12.883 1.55l.336-.907"/> + <path d="M206.94 172.743l-1.01-.907s-.952.588-2.15.407c-1.194-.18-1.58-1.627-1.58-1.627s-1.34 1.123-2.438 1.04c-1.097-.098-1.815-1.04-1.815-1.04s-1.192.852-2.245.77c-1.054-.097-2.057-1.407-2.057-1.407s-1.053 1.357-2.106 1.452c-1.055.085-1.92-.913-1.92-.913s-.474.997-1.813 1.22c-1.338.227-2.482-1.04-2.482-1.04s-.766 1.225-1.675 1.543c-.906.32-2.106-.456-2.106-.456s-.19.456-.33.727c-.145.27-.527.32-.527.32l.298.81c3.28-.95 7.723-1.54 12.748-1.544 5.033.006 9.596.595 12.883 1.55l.336-.907h-.013z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M193.756 168.362l.476.085c-.077.198-.096.407-.096.63 0 .985.844 1.785 1.892 1.785.836 0 1.542-.517 1.79-1.232.03.018.183-.65.26-.638.056 0 .05.692.082.68.114.895.938 1.508 1.865 1.508 1.042 0 1.877-.8 1.877-1.784 0-.073 0-.145-.01-.216l.59-.59.323.752c-.132.228-.177.492-.177.775 0 .944.806 1.708 1.795 1.708.628 0 1.174-.307 1.497-.764l.382-.48-.007.595c0 .588.254 1.118.832 1.214 0 0 .653.046 1.542-.65.875-.69 1.357-1.27 1.357-1.27l.055.71s-.86 1.418-1.648 1.87c-.426.252-1.087.516-1.605.426-.547-.084-.94-.53-1.145-1.033-.387.234-.848.366-1.344.366-1.066 0-2.024-.59-2.404-1.46-.49.527-1.167.846-1.968.846-.85 0-1.63-.378-2.118-.973-.482.445-1.137.716-1.854.716-.94 0-1.783-.472-2.258-1.162-.477.69-1.314 1.16-2.253 1.16-.717 0-1.372-.27-1.854-.715-.486.595-1.268.973-2.12.973-.798 0-1.476-.32-1.965-.847-.38.865-1.34 1.46-2.405 1.46-.495 0-.96-.133-1.346-.367-.203.504-.596.95-1.142 1.033-.52.09-1.174-.174-1.605-.426-.787-.452-1.714-1.87-1.714-1.87l.12-.71s.49.58 1.36 1.27c.882.696 1.54.65 1.54.65.58-.097.833-.627.833-1.215l-.007-.594.38.48c.323.458.87.765 1.497.765.99 0 1.796-.764 1.796-1.708 0-.283-.044-.547-.17-.775l.317-.752.59.59c-.013.07-.02.143-.02.216 0 .985.84 1.784 1.885 1.784.927 0 1.745-.613 1.866-1.508.027.013.02-.68.083-.68.077-.012.235.656.26.638.248.715.958 1.232 1.797 1.232 1.04 0 1.885-.8 1.885-1.784 0-.224-.014-.433-.096-.63l.493-.086"/> + <path d="M193.756 168.362l.476.085c-.077.198-.096.407-.096.63 0 .985.844 1.785 1.892 1.785.836 0 1.542-.517 1.79-1.232.03.018.183-.65.26-.638.056 0 .05.692.082.68.114.895.938 1.508 1.865 1.508 1.042 0 1.877-.8 1.877-1.784 0-.073 0-.145-.01-.216l.59-.59.323.752c-.132.228-.177.492-.177.775 0 .944.806 1.708 1.795 1.708.628 0 1.174-.307 1.497-.764l.382-.48-.007.595c0 .588.254 1.118.832 1.214 0 0 .653.046 1.542-.65.875-.69 1.357-1.27 1.357-1.27l.055.71s-.86 1.418-1.648 1.87c-.426.252-1.087.516-1.605.426-.547-.084-.94-.53-1.145-1.033-.387.234-.848.366-1.344.366-1.066 0-2.024-.59-2.404-1.46-.49.527-1.167.846-1.968.846-.85 0-1.63-.378-2.118-.973-.482.445-1.137.716-1.854.716-.94 0-1.783-.472-2.258-1.162-.477.69-1.314 1.16-2.253 1.16-.717 0-1.372-.27-1.854-.715-.486.595-1.268.973-2.12.973-.798 0-1.476-.32-1.965-.847-.38.865-1.34 1.46-2.405 1.46-.495 0-.96-.133-1.346-.367-.203.504-.596.95-1.142 1.033-.52.09-1.174-.174-1.605-.426-.787-.452-1.714-1.87-1.714-1.87l.12-.71s.49.58 1.36 1.27c.882.696 1.54.65 1.54.65.58-.097.833-.627.833-1.215l-.007-.594.38.48c.323.458.87.765 1.497.765.99 0 1.796-.764 1.796-1.708 0-.283-.044-.547-.17-.775l.317-.752.59.59c-.013.07-.02.143-.02.216 0 .985.84 1.784 1.885 1.784.927 0 1.745-.613 1.866-1.508.027.013.02-.68.083-.68.077-.012.235.656.26.638.248.715.958 1.232 1.797 1.232 1.04 0 1.885-.8 1.885-1.784 0-.224-.014-.433-.096-.63l.493-.086h.014z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M193.73 173.004c-5.103.005-9.69.61-12.978 1.586-.223.072-.496-.097-.566-.295-.07-.21.09-.468.305-.54 3.307-1.01 8.01-1.648 13.24-1.653 5.222.006 9.942.643 13.248 1.653.216.072.375.33.305.54-.063.198-.343.367-.56.295-3.29-.975-7.9-1.58-12.994-1.586"/> + <path stroke-linejoin="round" d="M193.73 173.004c-5.103.005-9.69.61-12.978 1.586-.223.072-.496-.097-.566-.295-.07-.21.09-.468.305-.54 3.307-1.01 8.01-1.648 13.24-1.653 5.222.006 9.942.643 13.248 1.653.216.072.375.33.305.54-.063.198-.343.367-.56.295-3.29-.975-7.9-1.58-12.994-1.586z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#fff" d="M188.785 174.816c0-.383.33-.697.74-.697.408 0 .737.313.737.696 0 .39-.33.697-.736.697-.412 0-.74-.306-.74-.697"/> + <path d="M188.785 174.816c0-.383.33-.697.74-.697.408 0 .737.313.737.696 0 .39-.33.697-.736.697-.412 0-.74-.306-.74-.697z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c00" d="M193.784 175.12h-1.636c-.305 0-.56-.242-.56-.53 0-.284.248-.518.546-.518h3.325c.304 0 .546.234.546.517 0 .288-.25.53-.552.53h-1.67"/> + <path d="M193.784 175.12h-1.636c-.305 0-.56-.242-.56-.53 0-.284.248-.518.546-.518h3.325c.304 0 .546.234.546.517 0 .288-.25.53-.552.53h-1.67" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#05906f" d="M185.558 175.682l-1.175.173c-.298.043-.59-.15-.633-.438-.045-.282.158-.547.456-.59l1.18-.173 1.206-.186c.298-.035.578.15.63.433.036.282-.167.553-.465.596l-1.2.186"/> + <path d="M185.558 175.682l-1.175.173c-.298.043-.59-.15-.633-.438-.045-.282.158-.547.456-.59l1.18-.173 1.206-.186c.298-.035.578.15.63.433.036.282-.167.553-.465.596l-1.2.186" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c00" d="M180.82 176.506l.52-.84 1.11.21-.647.943-.983-.314"/> + <path d="M180.82 176.506l.52-.84 1.11.21-.647.943-.983-.314" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#fff" d="M197.19 174.816c0-.383.33-.697.742-.697.406 0 .737.313.737.696 0 .39-.332.697-.738.697-.412 0-.743-.306-.743-.697"/> + <path d="M197.19 174.816c0-.383.33-.697.742-.697.406 0 .737.313.737.696 0 .39-.332.697-.738.697-.412 0-.743-.306-.743-.697z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#05906f" d="M201.886 175.682l1.18.173c.3.043.58-.15.63-.438.044-.282-.154-.547-.452-.59l-1.186-.173-1.2-.186c-.305-.035-.582.15-.628.433-.05.282.16.553.463.596l1.193.186"/> + <path d="M201.886 175.682l1.18.173c.3.043.58-.15.63-.438.044-.282-.154-.547-.452-.59l-1.186-.173-1.2-.186c-.305-.035-.582.15-.628.433-.05.282.16.553.463.596l1.193.186" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c00" d="M206.542 176.547l-.42-.895-1.14.096.544 1.003 1.016-.203"/> + <path d="M206.542 176.547l-.42-.895-1.14.096.544 1.003 1.016-.203" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c00" d="M193.715 179.65c-4.117-.005-7.842-.366-10.673-1.1 2.83-.726 6.556-1.176 10.673-1.188 4.12.005 7.862.457 10.7 1.19-2.837.732-6.58 1.093-10.7 1.098"/> + <path stroke-linejoin="round" d="M193.715 179.65c-4.117-.005-7.842-.366-10.673-1.1 2.83-.726 6.556-1.176 10.673-1.188 4.12.005 7.862.457 10.7 1.19-2.837.732-6.58 1.093-10.7 1.098z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M206.706 170.724c.108-.32.007-.632-.22-.71-.23-.065-.51.14-.616.444-.11.326-.014.644.22.716.23.066.502-.13.616-.45"/> + <path d="M206.706 170.724c.108-.32.007-.632-.22-.71-.23-.065-.51.14-.616.444-.11.326-.014.644.22.716.23.066.502-.13.616-.45z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M198.508 169.13c.037-.33-.12-.624-.362-.655-.24-.03-.47.223-.507.554-.046.33.113.622.353.653.242.024.47-.228.515-.552"/> + <path d="M198.508 169.13c.037-.33-.12-.624-.362-.655-.24-.03-.47.223-.507.554-.046.33.113.622.353.653.242.024.47-.228.515-.552z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M188.977 169.13c-.037-.33.12-.624.363-.655.24-.03.47.223.513.554.04.33-.12.622-.36.653-.236.024-.472-.228-.516-.552"/> + <path d="M188.977 169.13c-.037-.33.12-.624.363-.655.24-.03.47.223.513.554.04.33-.12.622-.36.653-.236.024-.472-.228-.516-.552z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M180.778 170.724c-.107-.32-.006-.632.224-.71.228-.065.506.14.615.444.107.326.012.644-.223.716-.23.066-.5-.13-.616-.45"/> + <path d="M180.778 170.724c-.107-.32-.006-.632.224-.71.228-.065.506.14.615.444.107.326.012.644-.223.716-.23.066-.5-.13-.616-.45z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M193.715 164.407l-1.452.876 1.08 2.338.372.248.368-.247 1.086-2.337-1.455-.876"/> + <path d="M193.715 164.407l-1.452.876 1.08 2.338.372.248.368-.247 1.086-2.337-1.455-.876" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M190.53 167.936l.658.963 2.272-.7.235-.317-.242-.325-2.265-.66-.66 1.038"/> + <path d="M190.53 167.936l.658.963 2.272-.7.235-.317-.242-.325-2.265-.66-.66 1.038" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M196.915 167.936l-.66.963-2.27-.7-.243-.317.247-.325 2.265-.66.66 1.038"/> + <path d="M196.915 167.936l-.66.963-2.27-.7-.243-.317.247-.325 2.265-.66.66 1.038" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M184.267 165.437l-1.142 1.075 1.46 1.924.387.155.285-.294.508-2.324-1.498-.535"/> + <path d="M184.267 165.437l-1.142 1.075 1.46 1.924.387.155.285-.294.508-2.324-1.498-.535" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M181.877 169.296l.857.804 2.07-1.118.157-.36-.297-.27-2.367-.205-.42 1.15"/> + <path d="M181.877 169.296l.857.804 2.07-1.118.157-.36-.297-.27-2.367-.205-.42 1.15" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M188.126 168.046l-.438 1.063-2.374-.217-.305-.27.164-.367 2.076-1.094.876.884"/> + <path d="M188.126 168.046l-.438 1.063-2.374-.217-.305-.27.164-.367 2.076-1.094.876.884" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M179.597 169.598l-.19 1.125-2.367.245-.355-.205.075-.383 1.784-1.48 1.053.698"/> + <path d="M179.597 169.598l-.19 1.125-2.367.245-.355-.205.075-.383 1.784-1.48 1.053.698" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M184.157 168.637c0-.438.375-.793.83-.793s.833.355.833.793c0 .432-.375.787-.832.787s-.83-.355-.83-.787"/> + <path d="M184.157 168.637c0-.438.375-.793.83-.793s.833.355.833.793c0 .432-.375.787-.832.787s-.83-.355-.83-.787z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M203.204 165.437l1.142 1.075-1.46 1.924-.394.155-.278-.294-.514-2.324 1.504-.535"/> + <path d="M203.204 165.437l1.142 1.075-1.46 1.924-.394.155-.278-.294-.514-2.324 1.504-.535" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M205.58 169.296l-.857.804-2.07-1.118-.164-.36.31-.27 2.368-.205.412 1.15"/> + <path d="M205.58 169.296l-.857.804-2.07-1.118-.164-.36.31-.27 2.368-.205.412 1.15" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M199.345 168.046l.438 1.063 2.36-.217.312-.27-.172-.367-2.068-1.094-.87.884"/> + <path d="M199.345 168.046l.438 1.063 2.36-.217.312-.27-.172-.367-2.068-1.094-.87.884" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M207.544 169.598l.198 1.125 2.367.245.353-.205-.082-.383-1.78-1.48-1.056.698"/> + <path d="M207.544 169.598l.198 1.125 2.367.245.353-.205-.082-.383-1.78-1.48-1.056.698" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M192.89 167.88c0-.444.376-.79.833-.79.463 0 .83.346.83.79 0 .434-.367.79-.83.79-.457 0-.832-.356-.832-.79"/> + <path d="M192.89 167.88c0-.444.376-.79.833-.79.463 0 .83.346.83.79 0 .434-.367.79-.83.79-.457 0-.832-.356-.832-.79z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M201.653 168.637c0-.438.373-.793.83-.793.463 0 .83.355.83.793 0 .432-.367.787-.83.787-.457 0-.83-.355-.83-.787"/> + <path d="M201.653 168.637c0-.438.373-.793.83-.793.463 0 .83.355.83.793 0 .432-.367.787-.83.787-.457 0-.83-.355-.83-.787z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M176.398 170.916c-.026.02-.64-.816-1.11-1.237-.337-.296-1.143-.548-1.143-.548 0-.15.47-.487.983-.487.305 0 .59.126.755.337l.07-.325s.412.078.603.542c.19.48.07 1.207.07 1.207s-.077.335-.228.51"/> + <path d="M176.398 170.916c-.026.02-.64-.816-1.11-1.237-.337-.296-1.143-.548-1.143-.548 0-.15.47-.487.983-.487.305 0 .59.126.755.337l.07-.325s.412.078.603.542c.19.48.07 1.207.07 1.207s-.077.335-.228.51z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M176.425 170.504c.196-.204.602-.162.9.097.305.26.393.637.198.848-.198.21-.604.162-.902-.097-.304-.256-.393-.64-.195-.846"/> + <path d="M176.425 170.504c.196-.204.602-.162.9.097.305.26.393.637.198.848-.198.21-.604.162-.902-.097-.304-.256-.393-.64-.195-.846z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M210.744 170.916c.02.02.64-.816 1.11-1.237.323-.296 1.143-.548 1.143-.548 0-.15-.476-.487-.99-.487-.3 0-.585.126-.755.337l-.07-.325s-.413.078-.604.542c-.184.48-.063 1.207-.063 1.207s.07.335.23.51"/> + <path d="M210.744 170.916c.02.02.64-.816 1.11-1.237.323-.296 1.143-.548 1.143-.548 0-.15-.476-.487-.99-.487-.3 0-.585.126-.755.337l-.07-.325s-.413.078-.604.542c-.184.48-.063 1.207-.063 1.207s.07.335.23.51z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M210.77 170.504c-.195-.204-.602-.162-.905.097-.305.26-.394.637-.198.848.198.21.603.162.908-.097.304-.256.387-.64.196-.846"/> + <path d="M210.77 170.504c-.195-.204-.602-.162-.905.097-.305.26-.394.637-.198.848.198.21.603.162.908-.097.304-.256.387-.64.196-.846z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M174.956 190.156h37.717v-9.887h-37.717v9.886z"/> + <path d="M174.956 190.156h37.717v-9.887h-37.717v9.886z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M178.91 196.734c.236-.095.408-.107.7-.107h28.244c.28 0 .545.048.767.138-.964-.324-1.66-1.2-1.66-2.236 0-1.033.754-1.93 1.73-2.266-.22.072-.55.138-.817.138H179.61c-.287 0-.56-.012-.793-.09l.15.024c1.01.312 1.588 1.208 1.588 2.193 0 .948-.64 1.9-1.645 2.204"/> + <path stroke-linejoin="round" d="M178.91 196.734c.236-.095.408-.107.7-.107h28.244c.28 0 .545.048.767.138-.964-.324-1.66-1.2-1.66-2.236 0-1.033.754-1.93 1.73-2.266-.22.072-.55.138-.817.138H179.61c-.287 0-.56-.012-.793-.09l.15.024c1.01.312 1.588 1.208 1.588 2.193 0 .948-.64 1.9-1.645 2.204z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M179.61 196.624h28.246c.957 0 1.73.595 1.73 1.323 0 .733-.773 1.327-1.73 1.327H179.61c-.957 0-1.732-.594-1.732-1.327 0-.728.775-1.323 1.733-1.323"/> + <path d="M179.61 196.624h28.246c.957 0 1.73.595 1.73 1.323 0 .733-.773 1.327-1.73 1.327H179.61c-.957 0-1.732-.594-1.732-1.327 0-.728.775-1.323 1.733-1.323z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M179.61 190.156h28.265c.953 0 1.733.505 1.733 1.118 0 .624-.78 1.13-1.733 1.13H179.61c-.957 0-1.732-.506-1.732-1.13 0-.613.775-1.118 1.733-1.118"/> + <path d="M179.61 190.156h28.265c.953 0 1.733.505 1.733 1.118 0 .624-.78 1.13-1.733 1.13H179.61c-.957 0-1.732-.506-1.732-1.13 0-.613.775-1.118 1.733-1.118z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#0076bc" d="M220.137 356.53c-2.607 0-4.93-.546-6.644-1.46-1.7-.865-4.003-1.393-6.542-1.393-2.55 0-4.91.535-6.61 1.406-1.708.896-4.068 1.448-6.645 1.448-2.61 0-4.93-.605-6.644-1.52-1.686-.828-3.946-1.333-6.42-1.333-2.558 0-4.83.488-6.53 1.37-1.714.91-4.087 1.485-6.69 1.485v4.086c2.603 0 4.976-.595 6.69-1.496 1.7-.878 3.972-1.376 6.53-1.376 2.467 0 4.727.51 6.42 1.347 1.708.906 4.036 1.525 6.645 1.525 2.577 0 4.937-.564 6.644-1.454 1.7-.882 4.06-1.417 6.61-1.417 2.54 0 4.842.535 6.543 1.405 1.714.914 3.998 1.466 6.614 1.466l.03-4.086"/> + <path d="M220.137 356.53c-2.607 0-4.93-.546-6.644-1.46-1.7-.865-4.003-1.393-6.542-1.393-2.55 0-4.91.535-6.61 1.406-1.708.896-4.068 1.448-6.645 1.448-2.61 0-4.93-.605-6.644-1.52-1.686-.828-3.946-1.333-6.42-1.333-2.558 0-4.83.488-6.53 1.37-1.714.91-4.087 1.485-6.69 1.485v4.086c2.603 0 4.976-.595 6.69-1.496 1.7-.878 3.972-1.376 6.53-1.376 2.467 0 4.727.51 6.42 1.347 1.708.906 4.036 1.525 6.645 1.525 2.577 0 4.937-.564 6.644-1.454 1.7-.882 4.06-1.417 6.61-1.417 2.54 0 4.842.535 6.543 1.405 1.714.914 3.998 1.466 6.614 1.466l.03-4.086z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#ccc" d="M220.137 360.624c-2.607 0-4.93-.552-6.644-1.466-1.7-.87-4.003-1.405-6.542-1.405-2.55 0-4.91.535-6.61 1.417-1.708.89-4.068 1.454-6.645 1.454-2.61 0-4.93-.62-6.644-1.525-1.686-.838-3.946-1.348-6.42-1.348-2.558 0-4.83.498-6.53 1.376-1.714.9-4.087 1.496-6.69 1.496v4.074c2.603 0 4.976-.582 6.69-1.484 1.7-.89 3.972-1.382 6.53-1.382 2.467 0 4.727.51 6.42 1.346 1.708.91 4.036 1.52 6.645 1.52 2.577 0 4.937-.564 6.644-1.453 1.7-.878 4.06-1.413 6.61-1.413 2.54 0 4.842.535 6.543 1.406 1.714.908 3.998 1.46 6.614 1.46l.03-4.074"/> + <path d="M220.137 360.624c-2.607 0-4.93-.552-6.644-1.466-1.7-.87-4.003-1.405-6.542-1.405-2.55 0-4.91.535-6.61 1.417-1.708.89-4.068 1.454-6.645 1.454-2.61 0-4.93-.62-6.644-1.525-1.686-.838-3.946-1.348-6.42-1.348-2.558 0-4.83.498-6.53 1.376-1.714.9-4.087 1.496-6.69 1.496v4.074c2.603 0 4.976-.582 6.69-1.484 1.7-.89 3.972-1.382 6.53-1.382 2.467 0 4.727.51 6.42 1.346 1.708.91 4.036 1.52 6.645 1.52 2.577 0 4.937-.564 6.644-1.453 1.7-.878 4.06-1.413 6.61-1.413 2.54 0 4.842.535 6.543 1.406 1.714.908 3.998 1.46 6.614 1.46l.03-4.074" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#0076bc" d="M220.137 364.69c-2.607 0-4.93-.553-6.644-1.462-1.7-.87-4.003-1.405-6.542-1.405-2.55 0-4.91.535-6.61 1.412-1.708.89-4.068 1.454-6.645 1.454-2.61 0-4.93-.613-6.644-1.52-1.686-.836-3.946-1.347-6.42-1.347-2.558 0-4.83.492-6.53 1.382-1.714.9-4.087 1.484-6.69 1.484v4.073c2.603 0 4.976-.582 6.69-1.49 1.7-.877 3.972-1.37 6.53-1.37 2.467 0 4.727.512 6.42 1.34 1.708.914 4.036 1.52 6.645 1.52 2.577 0 4.937-.557 6.644-1.446 1.7-.878 4.06-1.413 6.61-1.413 2.54 0 4.842.528 6.543 1.4 1.714.92 3.998 1.46 6.614 1.46l.03-4.075"/> + <path d="M220.137 364.69c-2.607 0-4.93-.553-6.644-1.462-1.7-.87-4.003-1.405-6.542-1.405-2.55 0-4.91.535-6.61 1.412-1.708.89-4.068 1.454-6.645 1.454-2.61 0-4.93-.613-6.644-1.52-1.686-.836-3.946-1.347-6.42-1.347-2.558 0-4.83.492-6.53 1.382-1.714.9-4.087 1.484-6.69 1.484v4.073c2.603 0 4.976-.582 6.69-1.49 1.7-.877 3.972-1.37 6.53-1.37 2.467 0 4.727.512 6.42 1.34 1.708.914 4.036 1.52 6.645 1.52 2.577 0 4.937-.557 6.644-1.446 1.7-.878 4.06-1.413 6.61-1.413 2.54 0 4.842.528 6.543 1.4 1.714.92 3.998 1.46 6.614 1.46l.03-4.075" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#ccc" d="M220.11 372.846c-2.616 0-4.9-.552-6.614-1.465-1.7-.865-4.003-1.395-6.542-1.395-2.55 0-4.91.53-6.612 1.408-1.707.89-4.067 1.453-6.644 1.453-2.61 0-4.93-.613-6.644-1.526-1.687-.83-3.947-1.335-6.42-1.335-2.56 0-4.83.494-6.53 1.37-1.715.91-4.087 1.49-6.69 1.49v-4.054c2.603 0 4.975-.608 6.69-1.514 1.7-.878 3.97-1.37 6.53-1.37 2.467 0 4.726.51 6.42 1.34 1.707.913 4.035 1.52 6.644 1.52 2.577 0 4.937-.558 6.644-1.448 1.7-.877 4.06-1.412 6.612-1.412 2.54 0 4.842.528 6.542 1.4 1.715.92 4.037 1.46 6.644 1.46l-.03 4.08"/> + <path d="M220.11 372.846c-2.616 0-4.9-.552-6.614-1.465-1.7-.865-4.003-1.395-6.542-1.395-2.55 0-4.91.53-6.612 1.408-1.707.89-4.067 1.453-6.644 1.453-2.61 0-4.93-.613-6.644-1.526-1.687-.83-3.947-1.335-6.42-1.335-2.56 0-4.83.494-6.53 1.37-1.715.91-4.087 1.49-6.69 1.49v-4.054c2.603 0 4.975-.608 6.69-1.514 1.7-.878 3.97-1.37 6.53-1.37 2.467 0 4.726.51 6.42 1.34 1.707.913 4.035 1.52 6.644 1.52 2.577 0 4.937-.558 6.644-1.448 1.7-.877 4.06-1.412 6.612-1.412 2.54 0 4.842.528 6.542 1.4 1.715.92 4.037 1.46 6.644 1.46l-.03 4.08" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#0076bc" d="M220.11 376.925c-2.616 0-4.9-.554-6.614-1.46-1.7-.878-4.003-1.413-6.542-1.413-2.55 0-4.91.54-6.612 1.418-1.707.89-4.067 1.455-6.644 1.455-2.61 0-4.93-.62-6.644-1.527-1.687-.835-3.947-1.346-6.42-1.346-2.56 0-4.83.5-6.53 1.382-1.715.9-4.087 1.49-6.69 1.49v-4.044c2.603 0 4.975-.62 6.69-1.527 1.7-.876 3.97-1.364 6.53-1.364 2.467 0 4.726.504 6.42 1.334 1.707.906 4.035 1.52 6.644 1.52 2.577 0 4.937-.564 6.644-1.454 1.7-.878 4.06-1.4 6.612-1.4 2.54 0 4.842.522 6.542 1.393 1.715.908 4.024 1.46 6.638 1.46l-.024 4.082"/> + <path d="M220.11 376.925c-2.616 0-4.9-.554-6.614-1.46-1.7-.878-4.003-1.413-6.542-1.413-2.55 0-4.91.54-6.612 1.418-1.707.89-4.067 1.455-6.644 1.455-2.61 0-4.93-.62-6.644-1.527-1.687-.835-3.947-1.346-6.42-1.346-2.56 0-4.83.5-6.53 1.382-1.715.9-4.087 1.49-6.69 1.49v-4.044c2.603 0 4.975-.62 6.69-1.527 1.7-.876 3.97-1.364 6.53-1.364 2.467 0 4.726.504 6.42 1.334 1.707.906 4.035 1.52 6.644 1.52 2.577 0 4.937-.564 6.644-1.454 1.7-.878 4.06-1.4 6.612-1.4 2.54 0 4.842.522 6.542 1.393 1.715.908 4.024 1.46 6.638 1.46l-.024 4.082z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M178.91 339.79c.09.343.217.68.217 1.047 0 2.476-2.138 4.446-4.753 4.446h38.818c-2.616 0-4.754-1.97-4.754-4.446 0-.36.07-.704.16-1.046-.223.08-.49.09-.743.09H179.61c-.228 0-.494-.023-.698-.09"/> + <path stroke-linejoin="round" d="M178.91 339.79c.09.343.217.68.217 1.047 0 2.476-2.138 4.446-4.753 4.446h38.818c-2.616 0-4.754-1.97-4.754-4.446 0-.36.07-.704.16-1.046-.223.08-.49.09-.743.09H179.61c-.228 0-.494-.023-.698-.09z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M179.61 337.223h28.246c.957 0 1.73.6 1.73 1.33 0 .732-.773 1.327-1.73 1.327H179.61c-.957 0-1.732-.595-1.732-1.328 0-.728.775-1.33 1.733-1.33"/> + <path d="M179.61 337.223h28.246c.957 0 1.73.6 1.73 1.33 0 .732-.773 1.327-1.73 1.327H179.61c-.957 0-1.732-.595-1.732-1.328 0-.728.775-1.33 1.733-1.33z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M174.434 355.158h38.714v-9.875h-38.714v9.875z"/> + <path d="M174.434 355.158h38.714v-9.875h-38.714v9.875z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M171.4 302.272c-3.834 2.212-6.43 4.477-6.01 5.607.21 1.038 1.428 1.814 3.166 2.967 2.735 1.905 4.4 5.307 3.097 6.876 2.266-1.827 3.7-4.555 3.7-7.59 0-3.173-1.51-6.034-3.954-7.86"/> + <path d="M171.4 302.272c-3.834 2.212-6.43 4.477-6.01 5.607.21 1.038 1.428 1.814 3.166 2.967 2.735 1.905 4.4 5.307 3.097 6.876 2.266-1.827 3.7-4.555 3.7-7.59 0-3.173-1.51-6.034-3.954-7.86z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#ccc" d="M179.968 335.63h27.51V200.853h-27.51V335.63z"/> + <path d="M199.58 201.033v134.484m3.088-134.484v134.484M179.968 335.63h27.51V200.853h-27.51V335.63z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M235.587 251.268c-6.002-2.48-16.206-4.32-27.915-4.705-4.036.03-8.534.41-13.18 1.184-16.454 2.746-28.987 9.315-27.99 14.665.02.114.056.347.082.45 0 0-6.167-13.9-6.27-14.428-1.097-5.938 12.807-13.234 31.07-16.28 5.73-.957 11.32-1.328 16.173-1.28 11.683 0 21.836 1.495 27.953 3.767l.076 16.63"/> + <path stroke-linejoin="round" d="M235.587 251.268c-6.002-2.48-16.206-4.32-27.915-4.705-4.036.03-8.534.41-13.18 1.184-16.454 2.746-28.987 9.315-27.99 14.665.02.114.056.347.082.45 0 0-6.167-13.9-6.27-14.428-1.097-5.938 12.807-13.234 31.07-16.28 5.73-.957 11.32-1.328 16.173-1.28 11.683 0 21.836 1.495 27.953 3.767l.076 16.63" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M179.927 268.187c-7.627-.547-12.837-2.585-13.433-5.775-.47-2.543 2.106-5.354 6.714-7.91 2.055.223 4.37.506 6.763.506l-.043 13.18"/> + <path d="M179.927 268.187c-7.627-.547-12.837-2.585-13.433-5.775-.47-2.543 2.106-5.354 6.714-7.91 2.055.223 4.37.506 6.763.506l-.043 13.18" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M207.53 257.874c4.765.72 8.345 1.905 10.128 3.36l.158.293c.85 1.743-3.337 5.45-10.33 9.592l.044-13.246"/> + <path d="M207.53 257.874c4.765.72 8.345 1.905 10.128 3.36l.158.293c.85 1.743-3.337 5.45-10.33 9.592l.044-13.246" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M162.843 294.184c-.724-2.176 6.714-6.532 17.228-10.39 4.805-1.72 8.77-3.51 13.688-5.68 14.603-6.455 25.39-13.865 24.063-16.57l-.144-.275c.78.63 1.986 13.94 1.986 13.94 1.332 2.476-8.54 9.778-21.988 16.22-4.303 2.056-13.39 5.415-17.68 6.918-7.672 2.662-15.3 7.68-14.6 9.543l-2.552-13.7"/> + <path stroke-linejoin="round" d="M162.843 294.184c-.724-2.176 6.714-6.532 17.228-10.39 4.805-1.72 8.77-3.51 13.688-5.68 14.603-6.455 25.39-13.865 24.063-16.57l-.144-.275c.78.63 1.986 13.94 1.986 13.94 1.332 2.476-8.54 9.778-21.988 16.22-4.303 2.056-13.39 5.415-17.68 6.918-7.672 2.662-15.3 7.68-14.6 9.543l-2.552-13.7v-.007z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M178.073 244.8c3.364-1.227 5.565-2.676 4.487-5.325-.68-1.682-2.418-2.008-5.013-1.057l-4.6 1.67 4.143 10.21c.45-.204.9-.415 1.37-.59.463-.168.953-.294 1.428-.432l-1.815-4.47v-.007zm-2-4.928l1.162-.42c.964-.356 2.056.155 2.54 1.345.36.908.265 1.917-.845 2.626-.363.223-.78.39-1.188.554l-1.668-4.105M188.826 235.6c-.482.13-.965.275-1.454.37-.487.097-.99.15-1.484.217l2.386 10.62 7.418-1.492c-.09-.21-.203-.433-.247-.65-.05-.22-.045-.468-.058-.69-1.3.372-2.722.776-4.43 1.12l-2.124-9.496M203.685 244.76c1.402-3.853 3.096-7.544 4.765-11.28-.3.047-.616.09-.914.107-.298.018-.622.024-.92.012-.888 2.71-1.992 5.42-3.154 8.12-1.396-2.562-2.938-5.062-4.112-7.64-.578.073-1.167.156-1.752.2-.576.035-1.18.028-1.757.035 2.14 3.485 4.202 6.96 6.156 10.553.273-.05.552-.114.85-.133.273-.02.56.007.84.02M219.19 236.587c.26-.516.52-1.022.81-1.503-.398-.378-1.623-.93-3.058-1.075-3.026-.3-4.765 1.046-4.967 2.872-.426 3.822 5.608 3.492 5.33 6.028-.12 1.094-1.283 1.538-2.514 1.417-1.375-.138-2.377-.894-2.556-2.02l-.374-.035c-.197.668-.49 1.31-.8 1.953.88.57 2.03.896 3.128 1.004 3.085.305 5.44-.932 5.66-2.963.402-3.63-5.69-3.84-5.457-5.98.103-.9.795-1.49 2.368-1.334 1.13.114 1.828.726 2.134 1.604l.298.03"/> + <path fill="#c00" d="M446.182 169.94s-1.244 1.312-2.152 1.497c-.906.18-2.055-.816-2.055-.816s-.818.853-1.822 1.082c-1.002.228-2.394-1.13-2.394-1.13s-.957 1.358-1.816 1.677c-.86.317-1.908-.41-1.908-.41s-.38.674-1.098 1.046c-.305.145-.81-.096-.81-.096l-1.013-.632-1.15-1.225-1.05-.41s-.475-1.538-.527-1.807c-.037-.27-.14-.956-.14-.956-.214-1.1 1.48-2.374 3.896-2.92 1.39-.325 2.6-.3 3.492-.025.964-.823 3.007-1.394 5.412-1.394 2.176 0 4.086.463 5.14 1.18 1.04-.717 2.95-1.18 5.134-1.18 2.392 0 4.434.572 5.4 1.395.895-.276 2.1-.295 3.497.024 2.408.546 4.11 1.82 3.893 2.92 0 0-.1.685-.143.956-.052.27-.527 1.808-.527 1.808l-1.055.41-1.148 1.224-.996.632s-.507.24-.812.096c-.718-.367-1.105-1.045-1.105-1.045s-1.053.727-1.91.41c-.862-.32-1.82-1.678-1.82-1.678s-1.384 1.358-2.394 1.13c-1.002-.23-1.817-1.08-1.817-1.08s-1.148.996-2.053.815c-.913-.185-2.144-1.496-2.144-1.496"/> + <path d="M446.182 169.94s-1.244 1.312-2.152 1.497c-.906.18-2.055-.816-2.055-.816s-.818.853-1.822 1.082c-1.002.228-2.394-1.13-2.394-1.13s-.957 1.358-1.816 1.677c-.86.317-1.908-.41-1.908-.41s-.38.674-1.098 1.046c-.305.145-.81-.096-.81-.096l-1.013-.632-1.15-1.225-1.05-.41s-.475-1.538-.527-1.807c-.037-.27-.14-.956-.14-.956-.214-1.1 1.48-2.374 3.896-2.92 1.39-.325 2.6-.3 3.492-.025.964-.823 3.007-1.394 5.412-1.394 2.176 0 4.086.463 5.14 1.18 1.04-.717 2.95-1.18 5.134-1.18 2.392 0 4.434.572 5.4 1.395.895-.276 2.1-.295 3.497.024 2.408.546 4.11 1.82 3.893 2.92 0 0-.1.685-.143.956-.052.27-.527 1.808-.527 1.808l-1.055.41-1.148 1.224-.996.632s-.507.24-.812.096c-.718-.367-1.105-1.045-1.105-1.045s-1.053.727-1.91.41c-.862-.32-1.82-1.678-1.82-1.678s-1.384 1.358-2.394 1.13c-1.002-.23-1.817-1.08-1.817-1.08s-1.148.996-2.053.815c-.913-.185-2.144-1.496-2.144-1.496h-.008z" stroke="#000" stroke-width=".4573089" fill="none"/> + <path fill="#c8b100" d="M443.82 162.786c0-1.832 1.042-3.316 2.328-3.316 1.288 0 2.336 1.484 2.336 3.316 0 1.84-1.048 3.33-2.336 3.33-1.287 0-2.328-1.49-2.328-3.33"/> + <path d="M443.82 162.786c0-1.832 1.042-3.316 2.328-3.316 1.288 0 2.336 1.484 2.336 3.316 0 1.84-1.048 3.33-2.336 3.33-1.287 0-2.328-1.49-2.328-3.33z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M445.125 162.786c0-1.682.482-3.052 1.074-3.052.593 0 1.07 1.37 1.07 3.052 0 1.69-.477 3.06-1.07 3.06-.593 0-1.075-1.37-1.075-3.06"/> + <path d="M445.125 162.786c0-1.682.482-3.052 1.074-3.052.593 0 1.07 1.37 1.07 3.052 0 1.69-.477 3.06-1.07 3.06-.593 0-1.075-1.37-1.075-3.06z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M434.18 176.423c-.343-.968-.985-1.833-.985-1.833 3.295-.968 7.883-1.575 12.985-1.587 5.102.012 9.722.62 13.016 1.587 0 0-.368.65-.883 1.55-.285.5-.66 1.37-.634 1.37-2.978-.913-6.81-1.382-11.52-1.387-4.714.006-9.245.583-11.607 1.447.034 0-.164-.545-.4-1.147h.027"/> + <path d="M434.18 176.423c-.343-.968-.985-1.833-.985-1.833 3.295-.968 7.883-1.575 12.985-1.587 5.102.012 9.722.62 13.016 1.587 0 0-.368.65-.883 1.55-.285.5-.66 1.37-.634 1.37-2.978-.913-6.81-1.382-11.52-1.387-4.714.006-9.245.583-11.607 1.447.034 0-.164-.545-.4-1.147h.027" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M446.17 180.612c4.116-.007 8.65-.63 10.324-1.064 1.116-.325 1.77-.83 1.65-1.412-.057-.276-.3-.517-.624-.655-2.456-.786-6.883-1.345-11.35-1.352-4.46.007-8.91.566-11.374 1.353-.316.14-.564.38-.615.656-.126.582.53 1.087 1.652 1.412 1.67.433 6.223 1.057 10.337 1.064"/> + <path d="M446.17 180.612c4.116-.007 8.65-.63 10.324-1.064 1.116-.325 1.77-.83 1.65-1.412-.057-.276-.3-.517-.624-.655-2.456-.786-6.883-1.345-11.35-1.352-4.46.007-8.91.566-11.374 1.353-.316.14-.564.38-.615.656-.126.582.53 1.087 1.652 1.412 1.67.433 6.223 1.057 10.337 1.064z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#fff" d="M456.153 164.27c0-.404.342-.728.76-.728.426 0 .768.324.768.727 0 .402-.34.72-.767.72-.418 0-.76-.318-.76-.72"/> + <path d="M456.153 164.27c0-.404.342-.728.76-.728.426 0 .768.324.768.727 0 .402-.34.72-.767.72-.418 0-.76-.318-.76-.72zM455.727 161.743c0-.403.34-.726.762-.726.42 0 .765.323.765.726 0 .397-.344.722-.766.722-.422 0-.763-.325-.763-.722zm-1.917-1.587c0-.402.34-.726.768-.726.416 0 .762.324.762.726 0 .404-.346.728-.762.728-.427 0-.768-.324-.768-.728zm-2.395-.763c0-.408.345-.733.77-.733.425 0 .762.325.762.733 0 .392-.337.722-.763.722-.424 0-.77-.33-.77-.722zm-2.435.085c0-.404.34-.728.762-.728.426 0 .77.324.77.728 0 .402-.344.72-.77.72-.42 0-.762-.318-.762-.72z" stroke="#000" stroke-width=".3515648" fill="none"/> + <path d="M463.72 169.2c.228-.56.37-1.178.37-1.82 0-2.693-2.134-4.88-4.78-4.88-.846 0-1.638.228-2.33.625" stroke="#000" stroke-linecap="round" stroke-width=".4380827" fill="none"/> + <path d="M455.205 165.78c.247-.438.426-.973.426-1.477 0-1.94-2.005-3.516-4.472-3.516-1.055 0-2.02.288-2.78.762" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M464.38 166.99c0-.398.348-.73.767-.73.424 0 .767.332.767.73 0 .4-.343.72-.767.72-.42 0-.768-.32-.768-.72zm-.29-2.67c0-.404.347-.72.77-.72.42 0 .763.316.763.72 0 .397-.343.72-.764.72-.423 0-.77-.323-.77-.72zm-1.717-2.043c0-.397.342-.72.762-.72.426 0 .766.323.766.72 0 .402-.34.726-.765.726-.42 0-.762-.324-.762-.726zm-2.297-1.09c0-.394.342-.72.767-.72.42 0 .763.326.763.72 0 .405-.342.735-.763.735-.425 0-.767-.33-.767-.734zm-2.442.098c0-.402.342-.728.767-.728s.77.326.77.728c0 .397-.345.72-.77.72-.424 0-.766-.323-.766-.72z" stroke="#000" stroke-width=".3515648" fill="none"/> + <path fill="#c8b100" d="M459.394 172.743l-1-.907s-.96.588-2.158.407c-1.193-.18-1.575-1.627-1.575-1.627s-1.343 1.123-2.435 1.04c-1.098-.098-1.815-1.04-1.815-1.04s-1.2.852-2.253.77c-1.053-.097-2.057-1.407-2.057-1.407s-1.05 1.357-2.106 1.452c-1.053.085-1.91-.913-1.91-.913s-.483.997-1.822 1.22c-1.338.227-2.486-1.04-2.486-1.04s-.755 1.225-1.67 1.543c-.907.32-2.1-.456-2.1-.456s-.19.456-.335.727c-.146.27-.528.32-.528.32l.3.81c3.277-.95 7.723-1.54 12.75-1.544 5.03.006 9.598.595 12.873 1.55l.337-.907"/> + <path d="M459.394 172.743l-1-.907s-.96.588-2.158.407c-1.193-.18-1.575-1.627-1.575-1.627s-1.343 1.123-2.435 1.04c-1.098-.098-1.815-1.04-1.815-1.04s-1.2.852-2.253.77c-1.053-.097-2.057-1.407-2.057-1.407s-1.05 1.357-2.106 1.452c-1.053.085-1.91-.913-1.91-.913s-.483.997-1.822 1.22c-1.338.227-2.486-1.04-2.486-1.04s-.755 1.225-1.67 1.543c-.907.32-2.1-.456-2.1-.456s-.19.456-.335.727c-.146.27-.528.32-.528.32l.3.81c3.277-.95 7.723-1.54 12.75-1.544 5.03.006 9.598.595 12.873 1.55l.337-.907h-.008z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#fff" d="M434.564 164.27c0-.404.34-.728.767-.728.42 0 .763.324.763.727 0 .402-.344.72-.762.72-.425 0-.766-.318-.766-.72"/> + <path d="M434.564 164.27c0-.404.34-.728.767-.728.42 0 .763.324.763.727 0 .402-.344.72-.762.72-.425 0-.766-.318-.766-.72zM434.99 161.743c0-.403.343-.726.767-.726.42 0 .762.323.762.726 0 .397-.344.722-.763.722-.424 0-.767-.325-.767-.722zm1.91-1.587c0-.402.343-.726.767-.726.426 0 .77.324.77.726 0 .404-.344.728-.77.728-.424 0-.767-.324-.767-.728zm2.393-.763c0-.408.342-.733.767-.733.426 0 .768.325.768.733 0 .392-.342.722-.768.722-.425 0-.767-.33-.767-.722zm2.442.085c0-.404.342-.728.762-.728.426 0 .768.324.768.728 0 .402-.342.72-.768.72-.42 0-.762-.318-.762-.72z" stroke="#000" stroke-width=".3515648" fill="none"/> + <path d="M428.522 169.2c-.223-.56-.368-1.178-.368-1.82 0-2.693 2.137-4.88 4.78-4.88.847 0 1.64.228 2.333.625" stroke="#000" stroke-linecap="round" stroke-width=".4380827" fill="none"/> + <path d="M437.105 165.71c-.247-.43-.484-.912-.484-1.416 0-1.94 2.008-3.516 4.476-3.516 1.046 0 2.017.288 2.78.762" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M426.338 166.99c0-.398.34-.73.77-.73.415 0 .76.332.76.73 0 .4-.345.72-.76.72-.43 0-.77-.32-.77-.72zm.285-2.67c0-.404.35-.72.768-.72.427 0 .77.316.77.72 0 .397-.343.72-.77.72-.418 0-.767-.323-.767-.72zm1.726-2.043c0-.397.342-.72.768-.72.42 0 .76.323.76.72 0 .402-.34.726-.76.726-.426 0-.77-.324-.77-.726zm2.296-1.09c0-.394.343-.72.76-.72.428 0 .77.326.77.72 0 .405-.342.735-.77.735-.417 0-.76-.33-.76-.734zm2.437.098c0-.402.342-.728.768-.728s.763.326.763.728c0 .397-.337.72-.762.72s-.767-.323-.767-.72z" stroke="#000" stroke-width=".3515648" fill="none"/> + <path fill="#c8b100" d="M446.196 168.362l.476.085c-.075.198-.09.407-.09.63 0 .985.846 1.785 1.886 1.785.838 0 1.55-.517 1.79-1.232.03.018.183-.65.258-.638.07 0 .06.692.076.68.127.895.944 1.508 1.873 1.508 1.04 0 1.883-.8 1.883-1.784 0-.073-.005-.145-.017-.216l.598-.59.315.752c-.126.228-.177.492-.177.775 0 .944.807 1.708 1.797 1.708.63 0 1.18-.307 1.498-.764l.38-.48-.006.595c0 .588.256 1.118.83 1.214 0 0 .667.046 1.544-.65.883-.69 1.365-1.27 1.365-1.27l.05.71s-.864 1.418-1.643 1.87c-.43.252-1.087.516-1.605.426-.554-.084-.94-.53-1.144-1.033-.39.234-.854.366-1.35.366-1.065 0-2.023-.59-2.398-1.46-.49.527-1.174.846-1.975.846-.848 0-1.63-.378-2.12-.973-.48.445-1.133.716-1.852.716-.937 0-1.782-.472-2.258-1.162-.477.69-1.31 1.16-2.254 1.16-.718 0-1.37-.27-1.85-.715-.49.595-1.264.973-2.12.973-.8 0-1.48-.32-1.967-.847-.377.865-1.34 1.46-2.4 1.46-.494 0-.952-.133-1.346-.367-.203.504-.595.95-1.142 1.033-.52.09-1.174-.174-1.605-.426-.787-.452-1.72-1.87-1.72-1.87l.122-.71s.48.58 1.358 1.27c.88.696 1.547.65 1.547.65.578-.097.823-.627.823-1.215v-.594l.377.48c.324.458.874.765 1.496.765 1 0 1.803-.764 1.803-1.708 0-.283-.052-.547-.178-.775l.317-.752.588.59c-.012.07-.012.143-.012.216 0 .985.838 1.784 1.87 1.784.935 0 1.753-.613 1.874-1.508.025.013.017-.68.082-.68.083-.012.235.656.26.638.247.715.958 1.232 1.795 1.232 1.043 0 1.886-.8 1.886-1.784 0-.224-.012-.433-.09-.63l.49-.086"/> + <path d="M446.196 168.362l.476.085c-.075.198-.09.407-.09.63 0 .985.846 1.785 1.886 1.785.838 0 1.55-.517 1.79-1.232.03.018.183-.65.258-.638.07 0 .06.692.076.68.127.895.944 1.508 1.873 1.508 1.04 0 1.883-.8 1.883-1.784 0-.073-.005-.145-.017-.216l.598-.59.315.752c-.126.228-.177.492-.177.775 0 .944.807 1.708 1.797 1.708.63 0 1.18-.307 1.498-.764l.38-.48-.006.595c0 .588.256 1.118.83 1.214 0 0 .667.046 1.544-.65.883-.69 1.365-1.27 1.365-1.27l.05.71s-.864 1.418-1.643 1.87c-.43.252-1.087.516-1.605.426-.554-.084-.94-.53-1.144-1.033-.39.234-.854.366-1.35.366-1.065 0-2.023-.59-2.398-1.46-.49.527-1.174.846-1.975.846-.848 0-1.63-.378-2.12-.973-.48.445-1.133.716-1.852.716-.937 0-1.782-.472-2.258-1.162-.477.69-1.31 1.16-2.254 1.16-.718 0-1.37-.27-1.85-.715-.49.595-1.264.973-2.12.973-.8 0-1.48-.32-1.967-.847-.377.865-1.34 1.46-2.4 1.46-.494 0-.952-.133-1.346-.367-.203.504-.595.95-1.142 1.033-.52.09-1.174-.174-1.605-.426-.787-.452-1.72-1.87-1.72-1.87l.122-.71s.48.58 1.358 1.27c.88.696 1.547.65 1.547.65.578-.097.823-.627.823-1.215v-.594l.377.48c.324.458.874.765 1.496.765 1 0 1.803-.764 1.803-1.708 0-.283-.052-.547-.178-.775l.317-.752.588.59c-.012.07-.012.143-.012.216 0 .985.838 1.784 1.87 1.784.935 0 1.753-.613 1.874-1.508.025.013.017-.68.082-.68.083-.012.235.656.26.638.247.715.958 1.232 1.795 1.232 1.043 0 1.886-.8 1.886-1.784 0-.224-.012-.433-.09-.63l.49-.086h.013z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M446.17 173.004c-5.103.005-9.686.61-12.978 1.586-.22.072-.49-.097-.564-.295-.072-.21.09-.468.302-.54 3.314-1.01 8.01-1.648 13.24-1.653 5.22.006 9.942.643 13.25 1.653.22.072.38.33.31.54-.07.198-.35.367-.565.295-3.294-.975-7.894-1.58-12.997-1.586"/> + <path d="M446.17 173.004c-5.103.005-9.686.61-12.978 1.586-.22.072-.49-.097-.564-.295-.072-.21.09-.468.302-.54 3.314-1.01 8.01-1.648 13.24-1.653 5.22.006 9.942.643 13.25 1.653.22.072.38.33.31.54-.07.198-.35.367-.565.295-3.294-.975-7.894-1.58-12.997-1.586z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#fff" d="M441.24 174.816c0-.383.33-.697.74-.697.407 0 .738.313.738.696 0 .39-.33.697-.737.697-.41 0-.74-.306-.74-.697"/> + <path d="M441.24 174.816c0-.383.33-.697.74-.697.407 0 .738.313.738.696 0 .39-.33.697-.737.697-.41 0-.74-.306-.74-.697z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c00" d="M446.237 175.12h-1.642c-.305 0-.56-.242-.56-.53 0-.284.248-.518.553-.518h3.32c.304 0 .543.234.543.517 0 .288-.244.53-.55.53h-1.663"/> + <path d="M446.237 175.12h-1.642c-.305 0-.56-.242-.56-.53 0-.284.248-.518.553-.518h3.32c.304 0 .543.234.543.517 0 .288-.244.53-.55.53h-1.663" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#05906f" d="M438.01 175.682l-1.173.173c-.3.043-.584-.15-.635-.438-.045-.282.156-.547.456-.59l1.18-.173 1.204-.186c.302-.035.58.15.63.433.045.282-.165.553-.463.596l-1.2.186"/> + <path d="M438.01 175.682l-1.173.173c-.3.043-.584-.15-.635-.438-.045-.282.156-.547.456-.59l1.18-.173 1.204-.186c.302-.035.58.15.63.433.045.282-.165.553-.463.596l-1.2.186" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c00" d="M433.273 176.506l.522-.84 1.118.21-.65.943-.99-.314"/> + <path d="M433.273 176.506l.522-.84 1.118.21-.65.943-.99-.314" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#fff" d="M449.643 174.816c0-.383.336-.697.74-.697.41 0 .744.313.744.696 0 .39-.335.697-.743.697-.405 0-.74-.306-.74-.697"/> + <path d="M449.643 174.816c0-.383.336-.697.74-.697.41 0 .744.313.744.696 0 .39-.335.697-.743.697-.405 0-.74-.306-.74-.697z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#05906f" d="M454.34 175.682l1.18.173c.3.043.577-.15.628-.438.042-.282-.152-.547-.45-.59l-1.18-.173-1.206-.186c-.305-.035-.584.15-.63.433-.05.282.167.553.465.596l1.193.186"/> + <path d="M454.34 175.682l1.18.173c.3.043.577-.15.628-.438.042-.282-.152-.547-.45-.59l-1.18-.173-1.206-.186c-.305-.035-.584.15-.63.433-.05.282.167.553.465.596l1.193.186" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c00" d="M458.982 176.547l-.42-.895-1.145.096.55 1.003 1.015-.203"/> + <path d="M458.982 176.547l-.42-.895-1.145.096.55 1.003 1.015-.203" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c00" d="M446.17 179.65c-4.118-.005-7.843-.366-10.68-1.1 2.836-.726 6.562-1.176 10.68-1.188 4.117.005 7.86.457 10.69 1.19-2.83.732-6.573 1.093-10.69 1.098"/> + <path stroke-linejoin="round" d="M446.17 179.65c-4.118-.005-7.843-.366-10.68-1.1 2.836-.726 6.562-1.176 10.68-1.188 4.117.005 7.86.457 10.69 1.19-2.83.732-6.573 1.093-10.69 1.098z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M459.146 170.724c.108-.32.013-.632-.225-.71-.227-.065-.498.14-.605.444-.114.326-.014.644.214.716.228.066.507-.13.616-.45"/> + <path d="M459.146 170.724c.108-.32.013-.632-.225-.71-.227-.065-.498.14-.605.444-.114.326-.014.644.214.716.228.066.507-.13.616-.45z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M450.948 169.13c.044-.33-.12-.624-.362-.655-.235-.03-.47.223-.507.554-.046.33.113.622.355.653.24.024.468-.228.513-.552"/> + <path d="M450.948 169.13c.044-.33-.12-.624-.362-.655-.235-.03-.47.223-.507.554-.046.33.113.622.355.653.24.024.468-.228.513-.552z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M441.43 169.13c-.044-.33.113-.624.355-.655.242-.03.47.223.515.554.036.33-.12.622-.356.653-.24.024-.47-.228-.513-.552"/> + <path d="M441.43 169.13c-.044-.33.113-.624.355-.655.242-.03.47.223.515.554.036.33-.12.622-.356.653-.24.024-.47-.228-.513-.552z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M433.232 170.724c-.114-.32-.012-.632.217-.71.225-.065.505.14.614.444.107.326.012.644-.215.716-.236.066-.51-.13-.618-.45"/> + <path d="M433.232 170.724c-.114-.32-.012-.632.217-.71.225-.065.505.14.614.444.107.326.012.644-.215.716-.236.066-.51-.13-.618-.45z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M446.17 164.407l-1.453.876 1.077 2.338.375.248.368-.247 1.084-2.337-1.453-.876"/> + <path d="M446.17 164.407l-1.453.876 1.077 2.338.375.248.368-.247 1.084-2.337-1.453-.876" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M442.983 167.936l.662.963 2.265-.7.24-.317-.24-.325-2.265-.66-.662 1.038"/> + <path d="M442.983 167.936l.662.963 2.265-.7.24-.317-.24-.325-2.265-.66-.662 1.038" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M449.368 167.936l-.666.963-2.265-.7-.24-.317.24-.325 2.265-.66.666 1.038"/> + <path d="M449.368 167.936l-.666.963-2.265-.7-.24-.317.24-.325 2.265-.66.666 1.038" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M436.72 165.437l-1.138 1.075 1.46 1.924.386.155.286-.294.513-2.324-1.507-.535"/> + <path d="M436.72 165.437l-1.138 1.075 1.46 1.924.386.155.286-.294.513-2.324-1.507-.535" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M434.33 169.296l.856.804 2.07-1.118.157-.36-.296-.27-2.367-.205-.42 1.15"/> + <path d="M434.33 169.296l.856.804 2.07-1.118.157-.36-.296-.27-2.367-.205-.42 1.15" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M440.566 168.046l-.438 1.063-2.37-.217-.307-.27.164-.367 2.076-1.094.876.884"/> + <path d="M440.566 168.046l-.438 1.063-2.37-.217-.307-.27.164-.367 2.076-1.094.876.884" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M432.05 169.598l-.195 1.125-2.37.245-.36-.205.09-.383 1.78-1.48 1.056.698"/> + <path d="M432.05 169.598l-.195 1.125-2.37.245-.36-.205.09-.383 1.78-1.48 1.056.698" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M436.61 168.637c0-.438.374-.793.83-.793.464 0 .832.355.832.793 0 .432-.368.787-.832.787-.456 0-.83-.355-.83-.787"/> + <path d="M436.61 168.637c0-.438.374-.793.83-.793.464 0 .832.355.832.793 0 .432-.368.787-.832.787-.456 0-.83-.355-.83-.787z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M455.644 165.437l1.142 1.075-1.46 1.924-.387.155-.286-.294-.514-2.324 1.504-.535"/> + <path d="M455.644 165.437l1.142 1.075-1.46 1.924-.387.155-.286-.294-.514-2.324 1.504-.535" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M458.048 169.296l-.857.804-2.068-1.118-.165-.36.305-.27 2.367-.205.418 1.15"/> + <path d="M458.048 169.296l-.857.804-2.068-1.118-.165-.36.305-.27 2.367-.205.418 1.15" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M451.8 168.046l.437 1.063 2.37-.217.302-.27-.16-.367-2.073-1.094-.878.884"/> + <path d="M451.8 168.046l.437 1.063 2.37-.217.302-.27-.16-.367-2.073-1.094-.878.884" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M459.998 169.598l.19 1.125 2.366.245.356-.205-.09-.383-1.774-1.48-1.048.698"/> + <path d="M459.998 169.598l.19 1.125 2.366.245.356-.205-.09-.383-1.774-1.48-1.048.698" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M445.345 167.88c0-.444.366-.79.83-.79.45 0 .833.346.833.79 0 .434-.377.79-.832.79-.465 0-.83-.356-.83-.79"/> + <path d="M445.345 167.88c0-.444.366-.79.83-.79.45 0 .833.346.833.79 0 .434-.377.79-.832.79-.465 0-.83-.356-.83-.79z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M454.106 168.637c0-.438.374-.793.832-.793.462 0 .838.355.838.793 0 .432-.376.787-.838.787-.458 0-.832-.355-.832-.787"/> + <path d="M454.106 168.637c0-.438.374-.793.832-.793.462 0 .838.355.838.793 0 .432-.376.787-.838.787-.458 0-.832-.355-.832-.787z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M444.617 158.996c0-.818.698-1.48 1.56-1.48.86 0 1.568.662 1.568 1.48 0 .816-.707 1.477-1.567 1.477-.863 0-1.56-.66-1.56-1.477"/> + <path fill="#c8b100" d="M447.28 158.474v.98h-2.412v-.98h.79v-2.212h-1.05v-.985h1.05v-.968h1.033v.967h1.03v.985h-1.03v2.212h.584"/> + <path d="M447.28 158.474v.98h-2.412v-.98h.79v-2.212h-1.05v-.985h1.05v-.968h1.033v.967h1.03v.985h-1.03v2.212h.591z" stroke="#000" stroke-width=".5067477" fill="none"/> + <path fill="#c8b100" d="M448.366 158.474v.98h-4.29v-.98h1.587v-2.212h-1.048v-.985h1.048v-.968h1.035v.967h1.032v.985h-1.032v2.212h1.668"/> + <path d="M446.636 157.568c.647.175 1.117.746 1.117 1.42 0 .815-.698 1.477-1.567 1.477-.863 0-1.56-.662-1.56-1.478 0-.685.488-1.256 1.154-1.43" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M428.838 170.916c-.02.02-.64-.816-1.11-1.237-.33-.296-1.14-.548-1.14-.548 0-.15.474-.487.99-.487.297 0 .58.126.75.337l.06-.325s.42.078.603.542c.192.48.07 1.207.07 1.207s-.076.335-.222.51"/> + <path d="M428.838 170.916c-.02.02-.64-.816-1.11-1.237-.33-.296-1.14-.548-1.14-.548 0-.15.474-.487.99-.487.297 0 .58.126.75.337l.06-.325s.42.078.603.542c.192.48.07 1.207.07 1.207s-.076.335-.222.51z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M428.88 170.504c.196-.204.602-.162.9.097.305.26.394.637.195.848-.195.21-.595.162-.9-.097-.305-.256-.392-.64-.196-.846"/> + <path d="M428.88 170.504c.196-.204.602-.162.9.097.305.26.394.637.195.848-.195.21-.595.162-.9-.097-.305-.256-.392-.64-.196-.846z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M463.198 170.916c.025.02.64-.816 1.112-1.237.324-.296 1.142-.548 1.142-.548 0-.15-.475-.487-.99-.487-.298 0-.584.126-.755.337l-.063-.325s-.42.078-.603.542c-.188.48-.07 1.207-.07 1.207s.076.335.228.51"/> + <path d="M463.198 170.916c.025.02.64-.816 1.112-1.237.324-.296 1.142-.548 1.142-.548 0-.15-.475-.487-.99-.487-.298 0-.584.126-.755.337l-.063-.325s-.42.078-.603.542c-.188.48-.07 1.207-.07 1.207s.076.335.228.51z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M463.225 170.504c-.2-.204-.603-.162-.908.097-.305.26-.387.637-.198.848.197.21.602.162.906-.097.305-.256.395-.64.2-.846"/> + <path d="M463.225 170.504c-.2-.204-.603-.162-.908.097-.305.26-.387.637-.198.848.197.21.602.162.906-.097.305-.256.395-.64.2-.846z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M427.354 190.156h37.717v-9.887h-37.716v9.886z"/> + <path d="M427.354 190.156h37.717v-9.887h-37.716v9.886z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M461.11 196.734c-.237-.095-.416-.107-.7-.107h-28.243c-.28 0-.545.048-.78.138.97-.324 1.668-1.2 1.668-2.236 0-1.033-.76-1.93-1.74-2.266.237.072.552.138.83.138h28.267c.282 0 .552-.012.792-.09l-.158.024c-1.01.312-1.587 1.208-1.587 2.193 0 .948.64 1.9 1.65 2.204"/> + <path stroke-linejoin="round" d="M461.11 196.734c-.237-.095-.416-.107-.7-.107h-28.243c-.28 0-.545.048-.78.138.97-.324 1.668-1.2 1.668-2.236 0-1.033-.76-1.93-1.74-2.266.237.072.552.138.83.138h28.267c.282 0 .552-.012.792-.09l-.158.024c-1.01.312-1.587 1.208-1.587 2.193 0 .948.64 1.9 1.65 2.204z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M432.16 196.624h28.246c.95 0 1.726.595 1.726 1.323 0 .733-.775 1.327-1.726 1.327H432.16c-.957 0-1.732-.594-1.732-1.327 0-.728.775-1.323 1.733-1.323"/> + <path d="M432.16 196.624h28.246c.95 0 1.726.595 1.726 1.323 0 .733-.775 1.327-1.726 1.327H432.16c-.957 0-1.732-.594-1.732-1.327 0-.728.775-1.323 1.733-1.323z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M432.147 190.156h28.266c.95 0 1.726.505 1.726 1.118 0 .624-.777 1.13-1.727 1.13h-28.266c-.956 0-1.73-.506-1.73-1.13 0-.613.774-1.118 1.73-1.118"/> + <path d="M432.147 190.156h28.266c.95 0 1.726.505 1.726 1.118 0 .624-.777 1.13-1.727 1.13h-28.266c-.956 0-1.73-.506-1.73-1.13 0-.613.774-1.118 1.73-1.118z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#0076bc" d="M419.87 356.53c2.614 0 4.935-.546 6.65-1.46 1.702-.865 4.004-1.393 6.54-1.393 2.547 0 4.914.535 6.615 1.406 1.7.896 4.06 1.448 6.637 1.448 2.602 0 4.937-.605 6.65-1.52 1.688-.828 3.94-1.333 6.422-1.333 2.558 0 4.823.488 6.53 1.37 1.706.91 4.087 1.485 6.687 1.485v4.086c-2.6 0-4.98-.595-6.686-1.496-1.707-.878-3.972-1.376-6.53-1.376-2.48 0-4.734.51-6.42 1.347-1.708.906-4.05 1.525-6.652 1.525-2.57 0-4.93-.564-6.637-1.454-1.7-.882-4.06-1.417-6.614-1.417-2.536 0-4.838.535-6.54 1.405-1.715.914-4.004 1.466-6.613 1.466l-.037-4.086"/> + <path d="M419.87 356.53c2.614 0 4.935-.546 6.65-1.46 1.702-.865 4.004-1.393 6.54-1.393 2.547 0 4.914.535 6.615 1.406 1.7.896 4.06 1.448 6.637 1.448 2.602 0 4.937-.605 6.65-1.52 1.688-.828 3.94-1.333 6.422-1.333 2.558 0 4.823.488 6.53 1.37 1.706.91 4.087 1.485 6.687 1.485v4.086c-2.6 0-4.98-.595-6.686-1.496-1.707-.878-3.972-1.376-6.53-1.376-2.48 0-4.734.51-6.42 1.347-1.708.906-4.05 1.525-6.652 1.525-2.57 0-4.93-.564-6.637-1.454-1.7-.882-4.06-1.417-6.614-1.417-2.536 0-4.838.535-6.54 1.405-1.715.914-4.004 1.466-6.613 1.466l-.037-4.086z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#ccc" d="M419.87 360.624c2.614 0 4.935-.552 6.65-1.466 1.702-.87 4.004-1.405 6.54-1.405 2.547 0 4.914.535 6.615 1.417 1.7.89 4.06 1.454 6.637 1.454 2.602 0 4.937-.62 6.65-1.525 1.688-.838 3.94-1.348 6.422-1.348 2.558 0 4.823.498 6.53 1.376 1.706.9 4.087 1.496 6.687 1.496v4.074c-2.6 0-4.98-.582-6.686-1.484-1.707-.89-3.972-1.382-6.53-1.382-2.48 0-4.734.51-6.42 1.346-1.708.91-4.05 1.52-6.652 1.52-2.57 0-4.93-.564-6.637-1.453-1.7-.878-4.06-1.413-6.614-1.413-2.536 0-4.838.535-6.54 1.406-1.715.908-4.004 1.46-6.613 1.46l-.037-4.074"/> + <path d="M419.87 360.624c2.614 0 4.935-.552 6.65-1.466 1.702-.87 4.004-1.405 6.54-1.405 2.547 0 4.914.535 6.615 1.417 1.7.89 4.06 1.454 6.637 1.454 2.602 0 4.937-.62 6.65-1.525 1.688-.838 3.94-1.348 6.422-1.348 2.558 0 4.823.498 6.53 1.376 1.706.9 4.087 1.496 6.687 1.496v4.074c-2.6 0-4.98-.582-6.686-1.484-1.707-.89-3.972-1.382-6.53-1.382-2.48 0-4.734.51-6.42 1.346-1.708.91-4.05 1.52-6.652 1.52-2.57 0-4.93-.564-6.637-1.453-1.7-.878-4.06-1.413-6.614-1.413-2.536 0-4.838.535-6.54 1.406-1.715.908-4.004 1.46-6.613 1.46l-.037-4.074" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#0076bc" d="M419.87 364.69c2.614 0 4.935-.553 6.65-1.462 1.702-.87 4.004-1.405 6.54-1.405 2.547 0 4.914.535 6.615 1.412 1.7.89 4.06 1.454 6.637 1.454 2.602 0 4.937-.613 6.65-1.52 1.688-.836 3.94-1.347 6.422-1.347 2.558 0 4.823.492 6.53 1.382 1.706.9 4.087 1.484 6.687 1.484v4.073c-2.6 0-4.98-.582-6.686-1.49-1.707-.877-3.972-1.37-6.53-1.37-2.48 0-4.734.512-6.42 1.34-1.708.914-4.05 1.52-6.652 1.52-2.57 0-4.93-.557-6.637-1.446-1.7-.878-4.06-1.413-6.614-1.413-2.536 0-4.838.528-6.54 1.4-1.715.92-4.004 1.46-6.613 1.46l-.037-4.075"/> + <path d="M419.87 364.69c2.614 0 4.935-.553 6.65-1.462 1.702-.87 4.004-1.405 6.54-1.405 2.547 0 4.914.535 6.615 1.412 1.7.89 4.06 1.454 6.637 1.454 2.602 0 4.937-.613 6.65-1.52 1.688-.836 3.94-1.347 6.422-1.347 2.558 0 4.823.492 6.53 1.382 1.706.9 4.087 1.484 6.687 1.484v4.073c-2.6 0-4.98-.582-6.686-1.49-1.707-.877-3.972-1.37-6.53-1.37-2.48 0-4.734.512-6.42 1.34-1.708.914-4.05 1.52-6.652 1.52-2.57 0-4.93-.557-6.637-1.446-1.7-.878-4.06-1.413-6.614-1.413-2.536 0-4.838.528-6.54 1.4-1.715.92-4.004 1.46-6.613 1.46l-.037-4.075" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#ccc" d="M419.91 372.846c2.61 0 4.9-.552 6.613-1.465 1.702-.865 4.004-1.395 6.542-1.395 2.546 0 4.913.53 6.613 1.408 1.7.89 4.06 1.453 6.638 1.453 2.602 0 4.937-.613 6.65-1.526 1.688-.83 3.94-1.335 6.422-1.335 2.558 0 4.822.494 6.53 1.37 1.706.91 4.086 1.49 6.687 1.49v-4.054c-2.6 0-4.98-.608-6.687-1.514-1.708-.878-3.972-1.37-6.53-1.37-2.48 0-4.734.51-6.42 1.34-1.71.913-4.05 1.52-6.652 1.52-2.57 0-4.932-.558-6.638-1.448-1.7-.877-4.06-1.412-6.613-1.412-2.537 0-4.84.528-6.542 1.4-1.714.92-4.035 1.46-6.65 1.46l.038 4.08"/> + <path d="M419.91 372.846c2.61 0 4.9-.552 6.613-1.465 1.702-.865 4.004-1.395 6.542-1.395 2.546 0 4.913.53 6.613 1.408 1.7.89 4.06 1.453 6.638 1.453 2.602 0 4.937-.613 6.65-1.526 1.688-.83 3.94-1.335 6.422-1.335 2.558 0 4.822.494 6.53 1.37 1.706.91 4.086 1.49 6.687 1.49v-4.054c-2.6 0-4.98-.608-6.687-1.514-1.708-.878-3.972-1.37-6.53-1.37-2.48 0-4.734.51-6.42 1.34-1.71.913-4.05 1.52-6.652 1.52-2.57 0-4.932-.558-6.638-1.448-1.7-.877-4.06-1.412-6.613-1.412-2.537 0-4.84.528-6.542 1.4-1.714.92-4.035 1.46-6.65 1.46l.038 4.08" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#0076bc" d="M419.91 376.925c2.61 0 4.9-.554 6.613-1.46 1.702-.878 4.004-1.413 6.542-1.413 2.546 0 4.913.54 6.613 1.418 1.7.89 4.06 1.455 6.638 1.455 2.602 0 4.937-.62 6.65-1.527 1.688-.835 3.94-1.346 6.422-1.346 2.558 0 4.822.5 6.53 1.382 1.706.9 4.086 1.49 6.687 1.49v-4.044c-2.6 0-4.98-.62-6.687-1.527-1.708-.876-3.972-1.364-6.53-1.364-2.48 0-4.734.504-6.42 1.334-1.71.906-4.05 1.52-6.652 1.52-2.57 0-4.932-.564-6.638-1.454-1.7-.878-4.06-1.4-6.613-1.4-2.537 0-4.84.522-6.542 1.393-1.714.908-4.03 1.46-6.638 1.46l.026 4.082"/> + <path d="M419.91 376.925c2.61 0 4.9-.554 6.613-1.46 1.702-.878 4.004-1.413 6.542-1.413 2.546 0 4.913.54 6.613 1.418 1.7.89 4.06 1.455 6.638 1.455 2.602 0 4.937-.62 6.65-1.527 1.688-.835 3.94-1.346 6.422-1.346 2.558 0 4.822.5 6.53 1.382 1.706.9 4.086 1.49 6.687 1.49v-4.044c-2.6 0-4.98-.62-6.687-1.527-1.708-.876-3.972-1.364-6.53-1.364-2.48 0-4.734.504-6.42 1.334-1.71.906-4.05 1.52-6.652 1.52-2.57 0-4.932-.564-6.638-1.454-1.7-.878-4.06-1.4-6.613-1.4-2.537 0-4.84.522-6.542 1.393-1.714.908-4.03 1.46-6.638 1.46l.026 4.082z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M461.096 339.79c-.088.343-.21.68-.21 1.047 0 2.476 2.138 4.446 4.747 4.446H426.82c2.61 0 4.743-1.97 4.743-4.446 0-.36-.07-.704-.147-1.046.21.08.477.09.737.09h28.244c.23 0 .494-.023.692-.09"/> + <path stroke-linejoin="round" d="M461.096 339.79c-.088.343-.21.68-.21 1.047 0 2.476 2.138 4.446 4.747 4.446H426.82c2.61 0 4.743-1.97 4.743-4.446 0-.36-.07-.704-.147-1.046.21.08.477.09.737.09h28.244c.23 0 .494-.023.692-.09h.006z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M432.16 337.223h28.246c.95 0 1.726.6 1.726 1.33 0 .732-.775 1.327-1.726 1.327H432.16c-.957 0-1.732-.595-1.732-1.328 0-.728.775-1.33 1.733-1.33"/> + <path d="M432.16 337.223h28.246c.95 0 1.726.6 1.726 1.33 0 .732-.775 1.327-1.726 1.327H432.16c-.957 0-1.732-.595-1.732-1.328 0-.728.775-1.33 1.733-1.33z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M426.874 355.158h38.716v-9.875h-38.716v9.875z"/> + <path d="M426.874 355.158h38.716v-9.875h-38.716v9.875z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M468.608 302.272c3.835 2.212 6.437 4.477 6.017 5.607-.21 1.038-1.427 1.814-3.166 2.967-2.736 1.905-4.406 5.307-3.104 6.876-2.26-1.827-3.687-4.555-3.687-7.59 0-3.173 1.503-6.034 3.94-7.86"/> + <path d="M468.608 302.272c3.835 2.212 6.437 4.477 6.017 5.607-.21 1.038-1.427 1.814-3.166 2.967-2.736 1.905-4.406 5.307-3.104 6.876-2.26-1.827-3.687-4.555-3.687-7.59 0-3.173 1.503-6.034 3.94-7.86z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#ccc" d="M432.532 335.63h27.508V200.853h-27.508V335.63z"/> + <path d="M452.486 200.8v134.488m3.093-134.49v134.49M432.532 335.63h27.508V200.853h-27.508V335.63z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M404.434 251.268c6.007-2.48 16.213-4.32 27.922-4.705 4.034.03 8.532.41 13.18 1.184 16.447 2.746 28.98 9.315 27.983 14.665-.02.114-.05.347-.083.45 0 0 6.172-13.9 6.263-14.428 1.104-5.938-12.795-13.234-31.055-16.28-5.73-.957-11.327-1.328-16.174-1.28-11.688 0-21.842 1.495-27.958 3.767l-.077 16.63"/> + <path stroke-linejoin="round" d="M404.434 251.268c6.007-2.48 16.213-4.32 27.922-4.705 4.034.03 8.532.41 13.18 1.184 16.447 2.746 28.98 9.315 27.983 14.665-.02.114-.05.347-.083.45 0 0 6.172-13.9 6.263-14.428 1.104-5.938-12.795-13.234-31.055-16.28-5.73-.957-11.327-1.328-16.174-1.28-11.688 0-21.842 1.495-27.958 3.767l-.077 16.63" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M460.094 268.187c7.63-.547 12.838-2.585 13.428-5.775.477-2.543-2.106-5.354-6.707-7.91-2.062.223-4.38.506-6.77.506l.05 13.18"/> + <path d="M460.094 268.187c7.63-.547 12.838-2.585 13.428-5.775.477-2.543-2.106-5.354-6.707-7.91-2.062.223-4.38.506-6.77.506l.05 13.18" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M432.49 257.874c-4.77.72-8.346 1.905-10.135 3.36l-.157.293c-.857 1.743 3.337 5.45 10.33 9.592l-.037-13.246"/> + <path d="M432.49 257.874c-4.77.72-8.346 1.905-10.135 3.36l-.157.293c-.857 1.743 3.337 5.45 10.33 9.592l-.037-13.246" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M477.178 294.184c.722-2.176-6.716-6.532-17.228-10.39-4.804-1.72-8.77-3.51-13.687-5.68-14.603-6.455-25.39-13.865-24.058-16.57l.142-.275c-.77.63-1.974 13.94-1.974 13.94-1.332 2.476 8.54 9.778 21.973 16.22 4.305 2.056 13.396 5.415 17.687 6.918 7.672 2.662 15.294 7.68 14.602 9.543l2.544-13.7"/> + <path stroke-linejoin="round" d="M477.178 294.184c.722-2.176-6.716-6.532-17.228-10.39-4.804-1.72-8.77-3.51-13.687-5.68-14.603-6.455-25.39-13.865-24.058-16.57l.142-.275c-.77.63-1.974 13.94-1.974 13.94-1.332 2.476 8.54 9.778 21.973 16.22 4.305 2.056 13.396 5.415 17.687 6.918 7.672 2.662 15.294 7.68 14.602 9.543l2.544-13.7v-.007z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M421.573 245.35c1.04-3.95 2.386-7.766 3.706-11.63-.292.08-.61.14-.902.186-.297.043-.615.072-.92.084-.627 2.777-1.478 5.565-2.39 8.353-1.627-2.438-3.397-4.807-4.805-7.27-.564.113-1.15.25-1.726.336-.566.083-1.17.125-1.752.18 2.456 3.292 4.83 6.586 7.108 10.004.272-.07.536-.16.838-.204.274-.036.558-.03.843-.04M432.037 233.8c-.502.024-1.003.06-1.506.053-.498-.006-1-.065-1.495-.103l-.203 10.854 7.59.127c-.04-.222-.095-.462-.09-.69 0-.224.07-.457.107-.68-1.36.09-2.842.175-4.58.144l.177-9.704M443.958 235.585c1.213.102 2.38.312 3.55.523-.023-.228-.06-.457-.04-.692.017-.22.102-.445.165-.66l-10.274-.853c.025.228.062.45.04.673-.022.24-.104.457-.163.678 1.048-.024 2.312-.036 3.727.084l-.895 9.766c.5.012 1 .007 1.497.048.5.037.997.126 1.49.2l.896-9.767M448.16 246.283c.496.078.995.138 1.486.247.487.102.964.26 1.44.397l1.218-4.988.133.028c.285.685.654 1.52.844 2.002l1.524 3.768c.596.096 1.19.174 1.777.3.603.133 1.18.307 1.758.47l-.528-1.13c-.82-1.702-1.68-3.395-2.39-5.12 1.89.083 3.356-.602 3.724-2.122.26-1.058-.16-1.888-1.157-2.597-.734-.524-2.16-.8-3.08-1.004l-4.145-.907-2.602 10.653m5.316-9.176c1.195.264 2.686.456 2.686 1.814-.007.344-.04.584-.095.8-.387 1.594-1.594 2.146-3.604 1.546l1.013-4.16M467.73 249.538c-.093 1.177-.302 2.32-.53 3.558.52.247 1.034.468 1.535.744.5.278.963.583 1.447.885l1.015-12.235c-.242-.098-.458-.2-.685-.32-.23-.125-.426-.25-.637-.403l-10.787 6.852c.285.137.58.263.857.413.28.157.515.324.794.48.904-.763 1.86-1.38 2.95-2.192l4.036 2.212.003.006zm-3.058-2.795l3.593-2.324-.42 4.054-3.173-1.73"/> + <path d="M277.54 136.13c0-1.923 1.646-3.48 3.67-3.48 2.016 0 3.667 1.557 3.667 3.48 0 1.918-1.644 3.473-3.667 3.473-2.024 0-3.67-1.555-3.67-3.472z" stroke="#000" stroke-width=".0865179" fill="none"/> + <path fill="#c00" d="M318.92 106.138c11.244 0 21.25 1.665 27.768 4.248 3.73 1.684 8.74 2.928 14.22 3.66 4.176.56 8.143.673 11.594.41 4.614-.09 11.29 1.26 17.965 4.2 5.526 2.452 10.14 5.432 13.203 8.317l-2.65 2.362-.768 6.706-7.275 8.33-3.635 3.085-8.61 6.893-4.4.36-1.336 3.804-55.71-6.526-55.88 6.526-1.34-3.805-4.404-.36-8.61-6.892-3.635-3.085-7.27-8.33-.758-6.705-2.666-2.362c3.077-2.885 7.692-5.865 13.205-8.317 6.675-2.94 13.352-4.29 17.963-4.2 3.45.263 7.42.15 11.594-.41 5.484-.732 10.497-1.976 14.22-3.66 6.526-2.583 15.974-4.248 27.21-4.248"/> + <path d="M318.92 106.138c11.244 0 21.25 1.665 27.768 4.248 3.73 1.684 8.74 2.928 14.22 3.66 4.176.56 8.143.673 11.594.41 4.614-.09 11.29 1.26 17.965 4.2 5.526 2.452 10.14 5.432 13.203 8.317l-2.65 2.362-.768 6.706-7.275 8.33-3.635 3.085-8.61 6.893-4.4.36-1.336 3.804-55.71-6.526-55.88 6.526-1.34-3.805-4.404-.36-8.61-6.892-3.635-3.085-7.27-8.33-.758-6.705-2.666-2.362c3.077-2.885 7.692-5.865 13.205-8.317 6.675-2.94 13.352-4.29 17.963-4.2 3.45.263 7.42.15 11.594-.41 5.484-.732 10.497-1.976 14.22-3.66 6.526-2.583 15.974-4.248 27.21-4.248z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M319.784 179.678c-20.756-.03-39.35-2.488-52.617-6.484-.97-.295-1.48-1.184-1.423-2.105-.017-.895.484-1.707 1.423-1.99 13.268-3.99 31.86-6.448 52.617-6.478 20.752.03 39.33 2.488 52.6 6.48.94.28 1.433 1.093 1.416 1.987.05.92-.45 1.81-1.415 2.104-13.27 3.996-31.85 6.453-52.6 6.484"/> + <path fill="#c00" d="M319.73 176.96c-18.733-.025-35.663-2.188-48.55-5.517 12.888-3.335 29.818-5.373 48.55-5.41 18.727.037 35.747 2.075 48.634 5.41-12.888 3.33-29.907 5.492-48.635 5.516"/> + <path d="M321.116 177.07v-11.116" stroke="#000" stroke-width=".1579295" fill="none"/> + <path d="M318.095 177.07v-11.116" stroke="#000" stroke-width=".233461" fill="none"/> + <path d="M315.252 177.07v-11.116" stroke="#000" stroke-width=".3131124" fill="none"/> + <path d="M312.423 177.07v-11.116" stroke="#000" stroke-width=".3913905" fill="none"/> + <path d="M309.91 177.07v-11.116" stroke="#000" stroke-width=".4710419" fill="none"/> + <path d="M305.103 176.478l-.066-10.116m2.342 10.25v-10.583" stroke="#000" stroke-width=".5506933" fill="none"/> + <path d="M300.68 176.025v-9.32m2.247 9.586l-.066-9.918" stroke="#000" stroke-width=".6248515" fill="none"/> + <path d="M294.72 175.49v-8.19m1.952 8.322v-8.588m2.01 8.855v-8.923" stroke="#000" stroke-width=".7045029" fill="none"/> + <path d="M292.647 175.42v-7.92" stroke="#000" stroke-width=".7841542999999999" fill="none"/> + <path d="M290.697 175.022v-7.39" stroke="#000" stroke-width=".8624324" fill="none"/> + <path d="M288.61 174.816v-6.857" stroke="#000" stroke-width=".9420838" fill="none"/> + <path d="M284.353 174.226l-.067-5.46m2.254 5.726v-6.125" stroke="#000" stroke-width="1.0176153" fill="none"/> + <path d="M282.155 173.76v-4.795" stroke="#000" stroke-width="1.0739206000000001" fill="none"/> + <path d="M280.164 173.36v-3.992" stroke="#000" stroke-width="1.1535719999999998" fill="none"/> + <path d="M277.967 172.84v-3.128" stroke="#000" stroke-width="1.2277301999999999" fill="none"/> + <path d="M275.728 172.564v-2.328" stroke="#000" stroke-width="1.3032617" fill="none"/> + <path d="M273.353 172.042v-1.13" stroke="#000" stroke-width="1.5367226999999999" fill="none"/> + <path d="M333.132 176.478v-10.182m-5.114 10.515l.066-10.78m-3.794 10.914v-10.98" stroke="#000" stroke-width=".0796514" fill="none"/> + <path fill="#c8b100" d="M319.633 162.608c-21.005.04-39.857 2.673-53.126 6.76 1.102-.523 1.003-1.88-.368-5.414-1.658-4.274-4.24-4.086-4.24-4.086 14.672-4.334 35.093-7.045 57.822-7.074 22.738.03 43.322 2.74 57.994 7.074 0 0-2.583-.188-4.24 4.086-1.37 3.533-1.472 4.89-.367 5.414-13.27-4.087-32.474-6.72-53.476-6.76"/> + <path stroke-linejoin="round" d="M319.633 162.608c-21.005.04-39.857 2.673-53.126 6.76 1.102-.523 1.003-1.88-.368-5.414-1.658-4.274-4.24-4.086-4.24-4.086 14.672-4.334 35.093-7.045 57.822-7.074 22.738.03 43.322 2.74 57.994 7.074 0 0-2.583-.188-4.24 4.086-1.37 3.533-1.472 4.89-.367 5.414-13.27-4.087-32.474-6.72-53.476-6.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M319.73 152.802c-22.73.036-43.152 2.74-57.822 7.08-.98.294-2.013-.09-2.33-1.015-.317-.927.21-1.99 1.188-2.29 14.732-4.52 35.68-7.357 58.968-7.404 23.29.042 44.32 2.885 59.054 7.404.98.3 1.505 1.363 1.188 2.29-.318.926-1.353 1.31-2.33 1.016-14.672-4.34-35.18-7.045-57.917-7.08"/> + <path d="M319.73 152.802c-22.73.036-43.152 2.74-57.822 7.08-.98.294-2.013-.09-2.33-1.015-.317-.927.21-1.99 1.188-2.29 14.732-4.52 35.68-7.357 58.968-7.404 23.29.042 44.32 2.885 59.054 7.404.98.3 1.505 1.363 1.188 2.29-.318.926-1.353 1.31-2.33 1.016-14.672-4.34-35.18-7.045-57.917-7.08zM319.784 179.678c-20.756-.03-39.35-2.488-52.617-6.484-.97-.295-1.48-1.184-1.423-2.105-.017-.895.484-1.707 1.423-1.99 13.268-3.99 31.86-6.448 52.617-6.478 20.752.03 39.33 2.488 52.6 6.48.94.28 1.433 1.093 1.416 1.987.05.92-.45 1.81-1.415 2.104-13.27 3.996-31.85 6.453-52.6 6.484z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path stroke-linejoin="round" d="M319.73 176.96c-18.733-.025-35.663-2.188-48.55-5.517 12.888-3.335 29.818-5.373 48.55-5.41 18.727.037 35.747 2.075 48.634 5.41-12.888 3.33-29.907 5.492-48.635 5.516z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M303.51 157.966c0-.968.83-1.755 1.853-1.755 1.03 0 1.86.788 1.86 1.756 0 .966-.83 1.76-1.86 1.76-1.023 0-1.853-.794-1.853-1.76"/> + <path d="M303.51 157.966c0-.968.83-1.755 1.853-1.755 1.03 0 1.86.788 1.86 1.756 0 .966-.83 1.76-1.86 1.76-1.023 0-1.853-.794-1.853-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M319.77 159.34h-5.562c-1.026 0-1.876-.783-1.876-1.756 0-.968.83-1.76 1.854-1.76h11.242c1.022 0 1.855.792 1.855 1.76 0 .973-.85 1.755-1.88 1.755h-5.633"/> + <path d="M319.77 159.34h-5.562c-1.026 0-1.876-.783-1.876-1.756 0-.968.83-1.76 1.854-1.76h11.242c1.022 0 1.855.792 1.855 1.76 0 .973-.85 1.755-1.88 1.755h-5.633" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#05906f" d="M291.823 160.877l-4 .464c-1.022.12-1.967-.565-2.095-1.52-.124-.967.6-1.845 1.62-1.96l4.024-.468 4.093-.47c1.014-.12 1.94.554 2.07 1.522.118.96-.623 1.844-1.64 1.958l-4.07.475"/> + <path d="M291.823 160.877l-4 .464c-1.022.12-1.967-.565-2.095-1.52-.124-.967.6-1.845 1.62-1.96l4.024-.468 4.093-.47c1.014-.12 1.94.554 2.07 1.522.118.96-.623 1.844-1.64 1.958l-4.07.475" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M275.577 161.22c0-.967.832-1.754 1.853-1.754 1.03 0 1.86.787 1.86 1.755 0 .974-.83 1.76-1.86 1.76-1.02 0-1.853-.786-1.853-1.76"/> + <path d="M275.577 161.22c0-.967.832-1.754 1.853-1.754 1.03 0 1.86.787 1.86 1.755 0 .974-.83 1.76-1.86 1.76-1.02 0-1.853-.786-1.853-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M263.204 164.42l2.064-2.7 5.698.722-4.557 3.325-3.206-1.346"/> + <path d="M263.204 164.42l2.064-2.7 5.698.722-4.557 3.325-3.206-1.346" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#05906f" d="M347.717 160.877l3.998.464c1.014.12 1.968-.565 2.094-1.52.113-.967-.604-1.845-1.62-1.96l-4.022-.468-4.093-.47c-1.022-.12-1.948.554-2.07 1.522-.126.96.623 1.844 1.637 1.958l4.075.475"/> + <path d="M347.717 160.877l3.998.464c1.014.12 1.968-.565 2.094-1.52.113-.967-.604-1.845-1.62-1.96l-4.022-.468-4.093-.47c-1.022-.12-1.948.554-2.07 1.522-.126.96.623 1.844 1.637 1.958l4.075.475" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M332.322 157.966c0-.968.832-1.755 1.854-1.755 1.028 0 1.86.788 1.86 1.756 0 .966-.832 1.76-1.86 1.76-1.022 0-1.854-.794-1.854-1.76"/> + <path d="M332.322 157.966c0-.968.832-1.755 1.854-1.755 1.028 0 1.86.788 1.86 1.756 0 .966-.832 1.76-1.86 1.76-1.022 0-1.854-.794-1.854-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M360.255 161.22c0-.967.832-1.754 1.854-1.754 1.027 0 1.858.787 1.858 1.755 0 .974-.83 1.76-1.86 1.76-1.02 0-1.853-.786-1.853-1.76"/> + <path d="M360.255 161.22c0-.967.832-1.754 1.854-1.754 1.027 0 1.858.787 1.858 1.755 0 .974-.83 1.76-1.86 1.76-1.02 0-1.853-.786-1.853-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M376.336 164.42l-2.062-2.7-5.698.722 4.557 3.325 3.203-1.346"/> + <path d="M376.336 164.42l-2.062-2.7-5.698.722 4.557 3.325 3.203-1.346M268.944 172.042c13.123-3.684 30.967-5.967 50.79-6.003 19.82.035 37.75 2.318 50.874 6.002" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M277.775 120.86l2.348 1.88 3.52-5.75c-3.82-2.34-6.44-6.4-6.44-11.03 0-.522.03-1.032.096-1.538.367-7.338 9.307-13.4 20.66-13.4 5.888 0 11.207 1.61 14.95 4.195.1-1.137.203-2.11.36-3.144-4.122-2.405-9.473-3.852-15.31-3.852-13.052 0-23.263 7.416-23.76 16.197-.05.51-.076 1.027-.076 1.544 0 4.683 2.14 8.9 5.522 11.834l-1.87 3.065"/> + <path d="M277.775 120.86l2.348 1.88 3.52-5.75c-3.82-2.34-6.44-6.4-6.44-11.03 0-.522.03-1.032.096-1.538.367-7.338 9.307-13.4 20.66-13.4 5.888 0 11.207 1.61 14.95 4.195.1-1.137.203-2.11.36-3.144-4.122-2.405-9.473-3.852-15.31-3.852-13.052 0-23.263 7.416-23.76 16.197-.05.51-.076 1.027-.076 1.544 0 4.683 2.14 8.9 5.522 11.834l-1.87 3.065" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M277.926 120.914c-4.455-3.323-7.22-7.842-7.22-12.818 0-5.732 3.75-10.846 9.447-14.235-3.516 2.824-5.647 6.473-5.952 10.547-.05.51-.076 1.028-.076 1.544 0 4.684 2.14 8.9 5.52 11.834l-1.718 3.13"/> + <path d="M277.926 120.914c-4.455-3.323-7.22-7.842-7.22-12.818 0-5.732 3.75-10.846 9.447-14.235-3.516 2.824-5.647 6.473-5.952 10.547-.05.51-.076 1.028-.076 1.544 0 4.684 2.14 8.9 5.52 11.834l-1.718 3.13" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M238.636 126.723c-2.495-2.794-4.024-6.405-4.024-10.354 0-2.38.55-4.658 1.548-6.69 3.604-7.415 14.912-12.812 28.35-12.812 3.663 0 7.167.397 10.403 1.135-.717.782-1.282 1.64-1.83 2.507-2.69-.524-5.57-.806-8.572-.806-12.302 0-22.595 4.785-25.576 11.25-.795 1.648-1.24 3.486-1.24 5.415 0 3.93 1.84 7.45 4.723 9.856l-4.455 7.276-2.385-1.898 3.058-4.874"/> + <path d="M238.636 126.723c-2.495-2.794-4.024-6.405-4.024-10.354 0-2.38.55-4.658 1.548-6.69 3.604-7.415 14.912-12.812 28.35-12.812 3.663 0 7.167.397 10.403 1.135-.717.782-1.282 1.64-1.83 2.507-2.69-.524-5.57-.806-8.572-.806-12.302 0-22.595 4.785-25.576 11.25-.795 1.648-1.24 3.486-1.24 5.415 0 3.93 1.84 7.45 4.723 9.856l-4.455 7.276-2.385-1.898 3.058-4.874v-.007z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M243.195 102.347c-3.236 2.037-5.687 4.543-7.038 7.338-.997 2.03-1.547 4.308-1.547 6.69 0 3.947 1.528 7.558 4.023 10.353l-2.704 4.388c-2.59-3.325-4.094-7.207-4.094-11.336 0-7.11 4.524-13.322 11.36-17.433"/> + <path d="M243.195 102.347c-3.236 2.037-5.687 4.543-7.038 7.338-.997 2.03-1.547 4.308-1.547 6.69 0 3.947 1.528 7.558 4.023 10.353l-2.704 4.388c-2.59-3.325-4.094-7.207-4.094-11.336 0-7.11 4.524-13.322 11.36-17.433z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M319.578 86.747c2.982 0 5.547 1.97 6.157 4.616.398 2.338.647 5 .703 7.835.006.295-.02.583-.02.873.008.337.072.698.077 1.04.102 5.95.952 11.2 2.164 14.417l-9.087 8.69-9.184-8.69c1.218-3.215 2.06-8.467 2.175-14.417.007-.342.072-.703.072-1.04 0-.29-.02-.577-.014-.872.045-2.835.3-5.497.7-7.835.602-2.645 3.273-4.616 6.25-4.616"/> + <path d="M319.578 86.747c2.982 0 5.547 1.97 6.157 4.616.398 2.338.647 5 .703 7.835.006.295-.02.583-.02.873.008.337.072.698.077 1.04.102 5.95.952 11.2 2.164 14.417l-9.087 8.69-9.184-8.69c1.218-3.215 2.06-8.467 2.175-14.417.007-.342.072-.703.072-1.04 0-.29-.02-.577-.014-.872.045-2.835.3-5.497.7-7.835.602-2.645 3.273-4.616 6.25-4.616h.005z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M319.578 89.576c1.55 0 2.854.986 3.173 2.355.376 2.213.616 4.738.667 7.405 0 .278-.014.554-.014.823 0 .33.058.66.065 1 .096 5.617.902 10.57 2.055 13.616l-5.99 5.673-5.996-5.673c1.143-3.04 1.95-8 2.05-13.617.007-.338.065-.668.07-1 0-.268-.02-.544-.02-.822.052-2.667.292-5.192.672-7.404.31-1.368 1.726-2.354 3.268-2.354"/> + <path d="M319.578 89.576c1.55 0 2.854.986 3.173 2.355.376 2.213.616 4.738.667 7.405 0 .278-.014.554-.014.823 0 .33.058.66.065 1 .096 5.617.902 10.57 2.055 13.616l-5.99 5.673-5.996-5.673c1.143-3.04 1.95-8 2.05-13.617.007-.338.065-.668.07-1 0-.268-.02-.544-.02-.822.052-2.667.292-5.192.672-7.404.31-1.368 1.726-2.354 3.268-2.354z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M361.326 120.86l-2.348 1.88-3.52-5.75c3.818-2.34 6.44-6.4 6.44-11.03 0-.522-.032-1.032-.095-1.538-.363-7.338-9.316-13.4-20.657-13.4-5.9 0-11.214 1.61-14.962 4.195-.102-1.137-.19-2.11-.363-3.144 4.127-2.405 9.476-3.852 15.326-3.852 13.048 0 23.257 7.416 23.758 16.197.044.51.07 1.027.07 1.544 0 4.683-2.137 8.9-5.52 11.834l1.87 3.065"/> + <path d="M361.326 120.86l-2.348 1.88-3.52-5.75c3.818-2.34 6.44-6.4 6.44-11.03 0-.522-.032-1.032-.095-1.538-.363-7.338-9.316-13.4-20.657-13.4-5.9 0-11.214 1.61-14.962 4.195-.102-1.137-.19-2.11-.363-3.144 4.127-2.405 9.476-3.852 15.326-3.852 13.048 0 23.257 7.416 23.758 16.197.044.51.07 1.027.07 1.544 0 4.683-2.137 8.9-5.52 11.834l1.87 3.065" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M361.175 120.914c4.455-3.323 7.222-7.842 7.222-12.818 0-5.732-3.752-10.846-9.442-14.235 3.508 2.824 5.64 6.473 5.95 10.547.045.51.07 1.028.07 1.544 0 4.684-2.137 8.9-5.52 11.834l1.72 3.13"/> + <path d="M361.175 120.914c4.455-3.323 7.222-7.842 7.222-12.818 0-5.732-3.752-10.846-9.442-14.235 3.508 2.824 5.64 6.473 5.95 10.547.045.51.07 1.028.07 1.544 0 4.684-2.137 8.9-5.52 11.834l1.72 3.13" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M400.48 126.723c2.487-2.794 4.014-6.405 4.014-10.354 0-2.38-.55-4.658-1.54-6.69-3.61-7.415-14.92-12.812-28.36-12.812-3.662 0-7.164.397-10.4 1.135.724.782 1.283 1.64 1.835 2.507 2.676-.524 5.57-.806 8.557-.806 12.307 0 22.604 4.785 25.58 11.25.8 1.648 1.24 3.486 1.24 5.415 0 3.93-1.84 7.45-4.723 9.856l4.455 7.276 2.39-1.898-3.056-4.874"/> + <path d="M400.48 126.723c2.487-2.794 4.014-6.405 4.014-10.354 0-2.38-.55-4.658-1.54-6.69-3.61-7.415-14.92-12.812-28.36-12.812-3.662 0-7.164.397-10.4 1.135.724.782 1.283 1.64 1.835 2.507 2.676-.524 5.57-.806 8.557-.806 12.307 0 22.604 4.785 25.58 11.25.8 1.648 1.24 3.486 1.24 5.415 0 3.93-1.84 7.45-4.723 9.856l4.455 7.276 2.39-1.898-3.056-4.874.006-.007z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M395.906 102.347c3.236 2.037 5.686 4.543 7.044 7.338.984 2.03 1.54 4.308 1.54 6.69 0 3.947-1.528 7.558-4.016 10.353l2.698 4.388c2.59-3.325 4.086-7.207 4.086-11.336 0-7.11-4.517-13.322-11.352-17.433"/> + <path d="M395.906 102.347c3.236 2.037 5.686 4.543 7.044 7.338.984 2.03 1.54 4.308 1.54 6.69 0 3.947-1.528 7.558-4.016 10.353l2.698 4.388c2.59-3.325 4.086-7.207 4.086-11.336 0-7.11-4.517-13.322-11.352-17.433z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M316.35 116.643c0-1.68 1.447-3.04 3.225-3.04s3.224 1.358 3.224 3.04c0 1.69-1.448 3.054-3.225 3.054s-3.224-1.365-3.224-3.054"/> + <path d="M316.35 116.643c0-1.68 1.447-3.04 3.225-3.04s3.224 1.358 3.224 3.04c0 1.69-1.448 3.054-3.225 3.054s-3.224-1.365-3.224-3.054z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M316.35 110.67c0-1.682 1.447-3.054 3.225-3.054s3.224 1.372 3.224 3.054c0 1.683-1.448 3.046-3.225 3.046s-3.224-1.363-3.224-3.046"/> + <path d="M316.35 110.67c0-1.682 1.447-3.054 3.225-3.054s3.224 1.372 3.224 3.054c0 1.683-1.448 3.046-3.225 3.046s-3.224-1.363-3.224-3.046z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M316.996 104.243c0-1.347 1.155-2.434 2.577-2.434 1.414 0 2.57 1.086 2.57 2.433 0 1.346-1.156 2.435-2.57 2.435-1.422 0-2.577-1.09-2.577-2.435"/> + <path d="M316.996 104.243c0-1.347 1.155-2.434 2.577-2.434 1.414 0 2.57 1.086 2.57 2.433 0 1.346-1.156 2.435-2.57 2.435-1.422 0-2.577-1.09-2.577-2.435z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M317.724 98.433c0-.966.832-1.753 1.854-1.753 1.027 0 1.852.787 1.852 1.753 0 .975-.825 1.762-1.852 1.762-1.023 0-1.854-.787-1.854-1.762"/> + <path d="M317.724 98.433c0-.966.832-1.753 1.854-1.753 1.027 0 1.852.787 1.852 1.753 0 .975-.825 1.762-1.852 1.762-1.023 0-1.854-.787-1.854-1.762z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M318.095 93.366c0-.782.664-1.406 1.486-1.406.82 0 1.485.624 1.485 1.406 0 .775-.666 1.406-1.484 1.406-.82 0-1.485-.63-1.485-1.406"/> + <path d="M318.095 93.366c0-.782.664-1.406 1.486-1.406.82 0 1.485.624 1.485 1.406 0 .775-.666 1.406-1.484 1.406-.82 0-1.485-.63-1.485-1.406z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M319.853 135.004l2.094.386c-.338.846-.407 1.772-.407 2.747 0 4.343 3.73 7.878 8.326 7.878 3.687 0 6.828-2.284 7.906-5.438.12.083.795-2.85 1.142-2.814.292.03.26 3.047.368 2.993.534 3.972 4.163 6.66 8.25 6.66 4.587 0 8.307-3.516 8.307-7.87 0-.322-.02-.646-.064-.96l2.607-2.583 1.4 3.292c-.556 1.035-.778 2.195-.778 3.44 0 4.152 3.553 7.51 7.94 7.51 2.76 0 5.182-1.327 6.605-3.34l1.668-2.123-.012 2.603c0 2.614 1.104 4.958 3.655 5.372 0 0 2.93.18 6.81-2.866 3.884-3.046 6.022-5.57 6.022-5.57l.334 3.053s-3.222 4.982-6.73 7.014c-1.918 1.118-4.83 2.288-7.146 1.91-2.45-.397-4.195-2.362-5.095-4.627-1.747 1.028-3.81 1.628-6.017 1.628-4.746 0-9.01-2.602-10.698-6.52-2.183 2.355-5.223 3.803-8.788 3.803-3.79 0-7.26-1.704-9.437-4.325-2.14 1.948-5.046 3.15-8.25 3.15-4.195 0-7.937-2.056-10.06-5.158-2.117 3.102-5.856 5.157-10.044 5.157-3.2 0-6.115-1.2-8.256-3.15-2.167 2.622-5.645 4.327-9.434 4.327-3.566 0-6.606-1.447-8.79-3.802-1.686 3.918-5.95 6.52-10.697 6.52-2.21 0-4.264-.6-6.01-1.628-.907 2.265-2.652 4.23-5.096 4.627-2.316.378-5.228-.793-7.15-1.91-3.51-2.032-6.73-7.014-6.73-7.014l.338-3.052s2.14 2.524 6.017 5.57c3.884 3.053 6.81 2.867 6.81 2.867 2.55-.414 3.653-2.758 3.653-5.372l-.012-2.603 1.668 2.122c1.422 2.014 3.854 3.342 6.608 3.342 4.384 0 7.937-3.36 7.937-7.512 0-1.244-.223-2.404-.78-3.44l1.4-3.29 2.61 2.582c-.038.314-.062.638-.062.96 0 4.354 3.715 7.87 8.306 7.87 4.092 0 7.715-2.688 8.248-6.66.114.054.084-2.962.373-2.993.346-.036 1.024 2.897 1.138 2.814 1.086 3.154 4.22 5.438 7.92 5.438 4.593 0 8.313-3.535 8.313-7.878 0-.975-.057-1.9-.4-2.747l2.172-.386"/> + <path d="M319.853 135.004l2.094.386c-.338.846-.407 1.772-.407 2.747 0 4.343 3.73 7.878 8.326 7.878 3.687 0 6.828-2.284 7.906-5.438.12.083.795-2.85 1.142-2.814.292.03.26 3.047.368 2.993.534 3.972 4.163 6.66 8.25 6.66 4.587 0 8.307-3.516 8.307-7.87 0-.322-.02-.646-.064-.96l2.607-2.583 1.4 3.292c-.556 1.035-.778 2.195-.778 3.44 0 4.152 3.553 7.51 7.94 7.51 2.76 0 5.182-1.327 6.605-3.34l1.668-2.123-.012 2.603c0 2.614 1.104 4.958 3.655 5.372 0 0 2.93.18 6.81-2.866 3.884-3.046 6.022-5.57 6.022-5.57l.334 3.053s-3.222 4.982-6.73 7.014c-1.918 1.118-4.83 2.288-7.146 1.91-2.45-.397-4.195-2.362-5.095-4.627-1.747 1.028-3.81 1.628-6.017 1.628-4.746 0-9.01-2.602-10.698-6.52-2.183 2.355-5.223 3.803-8.788 3.803-3.79 0-7.26-1.704-9.437-4.325-2.14 1.948-5.046 3.15-8.25 3.15-4.195 0-7.937-2.056-10.06-5.158-2.117 3.102-5.856 5.157-10.044 5.157-3.2 0-6.115-1.2-8.256-3.15-2.167 2.622-5.645 4.327-9.434 4.327-3.566 0-6.606-1.447-8.79-3.802-1.686 3.918-5.95 6.52-10.697 6.52-2.21 0-4.264-.6-6.01-1.628-.907 2.265-2.652 4.23-5.096 4.627-2.316.378-5.228-.793-7.15-1.91-3.51-2.032-6.73-7.014-6.73-7.014l.338-3.052s2.14 2.524 6.017 5.57c3.884 3.053 6.81 2.867 6.81 2.867 2.55-.414 3.653-2.758 3.653-5.372l-.012-2.603 1.668 2.122c1.422 2.014 3.854 3.342 6.608 3.342 4.384 0 7.937-3.36 7.937-7.512 0-1.244-.223-2.404-.78-3.44l1.4-3.29 2.61 2.582c-.038.314-.062.638-.062.96 0 4.354 3.715 7.87 8.306 7.87 4.092 0 7.715-2.688 8.248-6.66.114.054.084-2.962.373-2.993.346-.036 1.024 2.897 1.138 2.814 1.086 3.154 4.22 5.438 7.92 5.438 4.593 0 8.313-3.535 8.313-7.878 0-.975-.057-1.9-.4-2.747l2.172-.386" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M376.982 145.387c.48-1.41.05-2.807-.965-3.112-1.014-.32-2.234.57-2.714 1.977-.484 1.406-.05 2.794.964 3.113 1.014.305 2.232-.578 2.715-1.978"/> + <path d="M376.982 145.387c.48-1.41.05-2.807-.965-3.112-1.014-.32-2.234.57-2.714 1.977-.484 1.406-.05 2.794.964 3.113 1.014.305 2.232-.578 2.715-1.978z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M340.81 138.383c.188-1.473-.516-2.757-1.576-2.878-1.06-.126-2.075.96-2.264 2.428-.19 1.465.513 2.76 1.573 2.885 1.06.12 2.075-.968 2.266-2.435"/> + <path d="M340.81 138.383c.188-1.473-.516-2.757-1.576-2.878-1.06-.126-2.075.96-2.264 2.428-.19 1.465.513 2.76 1.573 2.885 1.06.12 2.075-.968 2.266-2.435z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M298.814 138.383c-.19-1.473.52-2.757 1.574-2.878 1.06-.126 2.076.96 2.267 2.428.182 1.465-.515 2.76-1.575 2.885-1.06.12-2.076-.968-2.266-2.435"/> + <path d="M298.814 138.383c-.19-1.473.52-2.757 1.574-2.878 1.06-.126 2.076.96 2.267 2.428.182 1.465-.515 2.76-1.575 2.885-1.06.12-2.076-.968-2.266-2.435z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M262.64 145.387c-.48-1.41-.05-2.807.965-3.112 1.016-.32 2.228.57 2.71 1.977.475 1.406.044 2.794-.965 3.113-1.015.305-2.227-.578-2.71-1.978"/> + <path d="M262.64 145.387c-.48-1.41-.05-2.807.965-3.112 1.016-.32 2.228.57 2.71 1.977.475 1.406.044 2.794-.965 3.113-1.015.305-2.227-.578-2.71-1.978z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M278.35 121.244c1.798 1.135 3.365 3.023 3.91 5.133 0 0 .21-.433 1.2-1.004.995-.56 1.84-.542 1.84-.542s-.286 1.642-.425 2.232c-.145.576-.16 2.338-.54 3.924-.38 1.587-1.072 2.854-1.072 2.854-.704-.577-1.67-.865-2.666-.703-.99.168-1.79.75-2.246 1.52 0 0-1.11-.967-2.037-2.332-.932-1.364-1.566-3.01-1.922-3.51-.348-.504-1.206-1.958-1.206-1.958s.79-.295 1.924-.085c1.135.21 1.49.554 1.49.554-.24-2.17.48-4.436 1.753-6.082"/> + <path d="M278.35 121.244c1.798 1.135 3.365 3.023 3.91 5.133 0 0 .21-.433 1.2-1.004.995-.56 1.84-.542 1.84-.542s-.286 1.642-.425 2.232c-.145.576-.16 2.338-.54 3.924-.38 1.587-1.072 2.854-1.072 2.854-.704-.577-1.67-.865-2.666-.703-.99.168-1.79.75-2.246 1.52 0 0-1.11-.967-2.037-2.332-.932-1.364-1.566-3.01-1.922-3.51-.348-.504-1.206-1.958-1.206-1.958s.79-.295 1.924-.085c1.135.21 1.49.554 1.49.554-.24-2.17.48-4.436 1.753-6.082z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M279.107 138.52c-.57-.452-1.002-1.082-1.142-1.827-.14-.74.02-1.472.394-2.074 0 0-1.5-.757-3.106-1.178-1.22-.32-3.362-.33-4.01-.343-.647-.02-1.94-.048-1.94-.048s.107.295.475.937c.442.774.835 1.26.835 1.26-2.145.494-3.972 1.905-5.127 3.54 1.677 1.16 3.904 1.864 6.092 1.64 0 0-.19.585-.33 1.468-.113.727-.106 1.027-.106 1.027l1.808-.666c.603-.224 2.614-.92 3.648-1.618 1.35-.926 2.507-2.117 2.507-2.117"/> + <path d="M279.107 138.52c-.57-.452-1.002-1.082-1.142-1.827-.14-.74.02-1.472.394-2.074 0 0-1.5-.757-3.106-1.178-1.22-.32-3.362-.33-4.01-.343-.647-.02-1.94-.048-1.94-.048s.107.295.475.937c.442.774.835 1.26.835 1.26-2.145.494-3.972 1.905-5.127 3.54 1.677 1.16 3.904 1.864 6.092 1.64 0 0-.19.585-.33 1.468-.113.727-.106 1.027-.106 1.027l1.808-.666c.603-.224 2.614-.92 3.648-1.618 1.35-.926 2.507-2.117 2.507-2.117v-.005z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M283.927 137.71c.373-.6.552-1.334.412-2.08-.14-.744-.548-1.374-1.118-1.826 0 0 1.13-1.196 2.48-2.115 1.03-.698 3.046-1.4 3.65-1.618.602-.22 1.81-.673 1.81-.673s.004.306-.11 1.033c-.138.878-.33 1.46-.33 1.46 2.19-.228 4.42.505 6.098 1.67-1.154 1.63-2.994 3.017-5.133 3.51 0 0 .387.487.837 1.262.368.65.477.937.477.937s-1.294-.03-1.942-.04c-.647-.013-2.79-.02-4.01-.343-1.604-.43-3.12-1.173-3.12-1.173"/> + <path d="M283.927 137.71c.373-.6.552-1.334.412-2.08-.14-.744-.548-1.374-1.118-1.826 0 0 1.13-1.196 2.48-2.115 1.03-.698 3.046-1.4 3.65-1.618.602-.22 1.81-.673 1.81-.673s.004.306-.11 1.033c-.138.878-.33 1.46-.33 1.46 2.19-.228 4.42.505 6.098 1.67-1.154 1.63-2.994 3.017-5.133 3.51 0 0 .387.487.837 1.262.368.65.477.937.477.937s-1.294-.03-1.942-.04c-.647-.013-2.79-.02-4.01-.343-1.604-.43-3.12-1.173-3.12-1.173v-.007z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M277.54 136.13c0-1.923 1.646-3.48 3.67-3.48 2.016 0 3.667 1.557 3.667 3.48 0 1.918-1.644 3.473-3.667 3.473-2.024 0-3.67-1.555-3.67-3.472"/> + <path d="M277.54 136.13c0-1.923 1.646-3.48 3.67-3.48 2.016 0 3.667 1.557 3.667 3.48 0 1.918-1.644 3.473-3.667 3.473-2.024 0-3.67-1.555-3.67-3.472z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M319.715 115.682c1.764 1.598 3.122 3.99 3.294 6.448 0 0 .316-.444 1.54-.89 1.225-.444 2.164-.27 2.164-.27s-.653 1.786-.94 2.41c-.284.625-.652 2.585-1.415 4.273-.743 1.7-1.777 2.98-1.777 2.98-.673-.768-1.687-1.267-2.83-1.267-1.137 0-2.15.5-2.824 1.268 0 0-1.035-1.28-1.784-2.98-.756-1.69-1.13-3.65-1.41-4.275-.283-.624-.945-2.41-.945-2.41s.947-.174 2.166.27c1.223.446 1.55.89 1.55.89.17-2.46 1.452-4.85 3.21-6.448"/> + <path d="M319.715 115.682c1.764 1.598 3.122 3.99 3.294 6.448 0 0 .316-.444 1.54-.89 1.225-.444 2.164-.27 2.164-.27s-.653 1.786-.94 2.41c-.284.625-.652 2.585-1.415 4.273-.743 1.7-1.777 2.98-1.777 2.98-.673-.768-1.687-1.267-2.83-1.267-1.137 0-2.15.5-2.824 1.268 0 0-1.035-1.28-1.784-2.98-.756-1.69-1.13-3.65-1.41-4.275-.283-.624-.945-2.41-.945-2.41s.947-.174 2.166.27c1.223.446 1.55.89 1.55.89.17-2.46 1.452-4.85 3.21-6.448z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M316.982 135.087c-.545-.607-.894-1.394-.894-2.248 0-.848.323-1.64.87-2.237 0 0-1.51-1.13-3.212-1.898-1.288-.59-3.68-.997-4.398-1.13l-2.157-.41s.06.344.336 1.13c.338.957.674 1.57.674 1.57-2.487.15-4.83 1.388-6.454 2.993 1.624 1.592 3.96 2.8 6.454 2.963 0 0-.336.608-.674 1.57-.277.775-.335 1.122-.335 1.122s1.436-.264 2.158-.395c.717-.145 3.11-.547 4.398-1.142 1.7-.77 3.236-1.88 3.236-1.88"/> + <path d="M316.982 135.087c-.545-.607-.894-1.394-.894-2.248 0-.848.323-1.64.87-2.237 0 0-1.51-1.13-3.212-1.898-1.288-.59-3.68-.997-4.398-1.13l-2.157-.41s.06.344.336 1.13c.338.957.674 1.57.674 1.57-2.487.15-4.83 1.388-6.454 2.993 1.624 1.592 3.96 2.8 6.454 2.963 0 0-.336.608-.674 1.57-.277.775-.335 1.122-.335 1.122s1.436-.264 2.158-.395c.717-.145 3.11-.547 4.398-1.142 1.7-.77 3.236-1.88 3.236-1.88v-.008z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M322.503 135.087c.545-.607.893-1.394.893-2.248 0-.848-.322-1.64-.87-2.237 0 0 1.512-1.13 3.213-1.898 1.292-.59 3.685-.997 4.402-1.13.71-.138 2.144-.41 2.144-.41s-.05.344-.336 1.13c-.337.957-.666 1.57-.666 1.57 2.488.15 4.828 1.388 6.447 2.993-1.618 1.592-3.953 2.8-6.446 2.963 0 0 .33.608.666 1.57.28.775.336 1.122.336 1.122s-1.426-.264-2.144-.395c-.717-.145-3.11-.547-4.403-1.142-1.702-.77-3.237-1.88-3.237-1.88"/> + <path d="M322.503 135.087c.545-.607.893-1.394.893-2.248 0-.848-.322-1.64-.87-2.237 0 0 1.512-1.13 3.213-1.898 1.292-.59 3.685-.997 4.402-1.13.71-.138 2.144-.41 2.144-.41s-.05.344-.336 1.13c-.337.957-.666 1.57-.666 1.57 2.488.15 4.828 1.388 6.447 2.993-1.618 1.592-3.953 2.8-6.446 2.963 0 0 .33.608.666 1.57.28.775.336 1.122.336 1.122s-1.426-.264-2.144-.395c-.717-.145-3.11-.547-4.403-1.142-1.702-.77-3.237-1.88-3.237-1.88v-.008z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M361.27 121.244c-1.788 1.135-3.354 3.023-3.9 5.133 0 0-.22-.433-1.206-1.004-.99-.56-1.842-.542-1.842-.542s.286 1.642.433 2.232c.146.576.15 2.338.53 3.924.383 1.587 1.073 2.854 1.073 2.854.713-.577 1.677-.865 2.667-.703.99.168 1.79.75 2.253 1.52 0 0 1.104-.967 2.038-2.332.925-1.364 1.566-3.01 1.91-3.51.348-.504 1.212-1.958 1.212-1.958s-.794-.295-1.93-.085c-1.135.21-1.492.554-1.492.554.254-2.17-.47-4.436-1.745-6.082"/> + <path d="M361.27 121.244c-1.788 1.135-3.354 3.023-3.9 5.133 0 0-.22-.433-1.206-1.004-.99-.56-1.842-.542-1.842-.542s.286 1.642.433 2.232c.146.576.15 2.338.53 3.924.383 1.587 1.073 2.854 1.073 2.854.713-.577 1.677-.865 2.667-.703.99.168 1.79.75 2.253 1.52 0 0 1.104-.967 2.038-2.332.925-1.364 1.566-3.01 1.91-3.51.348-.504 1.212-1.958 1.212-1.958s-.794-.295-1.93-.085c-1.135.21-1.492.554-1.492.554.254-2.17-.47-4.436-1.745-6.082z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M360.516 138.52c.566-.452 1.004-1.082 1.135-1.827.142-.74-.012-1.472-.384-2.074 0 0 1.49-.757 3.094-1.178 1.22-.32 3.37-.33 4.01-.343.65-.02 1.943-.048 1.943-.048s-.103.295-.474.937c-.447.774-.84 1.26-.84 1.26 2.144.494 3.97 1.905 5.128 3.54-1.67 1.16-3.897 1.864-6.092 1.64 0 0 .196.585.33 1.468.106.727.1 1.027.1 1.027s-1.205-.445-1.8-.666c-.603-.224-2.616-.92-3.65-1.618-1.345-.926-2.5-2.117-2.5-2.117"/> + <path d="M360.516 138.52c.566-.452 1.004-1.082 1.135-1.827.142-.74-.012-1.472-.384-2.074 0 0 1.49-.757 3.094-1.178 1.22-.32 3.37-.33 4.01-.343.65-.02 1.943-.048 1.943-.048s-.103.295-.474.937c-.447.774-.84 1.26-.84 1.26 2.144.494 3.97 1.905 5.128 3.54-1.67 1.16-3.897 1.864-6.092 1.64 0 0 .196.585.33 1.468.106.727.1 1.027.1 1.027s-1.205-.445-1.8-.666c-.603-.224-2.616-.92-3.65-1.618-1.345-.926-2.5-2.117-2.5-2.117v-.005z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M355.696 137.71c-.375-.6-.546-1.334-.414-2.08.14-.744.553-1.374 1.123-1.826 0 0-1.135-1.196-2.487-2.115-1.027-.698-3.047-1.4-3.648-1.618-.603-.22-1.803-.673-1.803-.673s-.005.306.107 1.033c.135.878.326 1.46.326 1.46-2.19-.228-4.424.505-6.094 1.67 1.157 1.63 2.99 3.017 5.13 3.51 0 0-.387.487-.834 1.262-.373.65-.474.937-.474.937s1.287-.03 1.935-.04c.64-.013 2.8-.02 4.01-.343 1.6-.43 3.116-1.173 3.116-1.173"/> + <path d="M355.696 137.71c-.375-.6-.546-1.334-.414-2.08.14-.744.553-1.374 1.123-1.826 0 0-1.135-1.196-2.487-2.115-1.027-.698-3.047-1.4-3.648-1.618-.603-.22-1.803-.673-1.803-.673s-.005.306.107 1.033c.135.878.326 1.46.326 1.46-2.19-.228-4.424.505-6.094 1.67 1.157 1.63 2.99 3.017 5.13 3.51 0 0-.387.487-.834 1.262-.373.65-.474.937-.474.937s1.287-.03 1.935-.04c.64-.013 2.8-.02 4.01-.343 1.6-.43 3.116-1.173 3.116-1.173l.006-.007z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M354.734 136.13c0-1.923 1.64-3.48 3.667-3.48 2.033 0 3.675 1.557 3.675 3.48 0 1.918-1.642 3.473-3.674 3.473-2.025 0-3.666-1.555-3.666-3.472"/> + <path d="M354.734 136.13c0-1.923 1.64-3.48 3.667-3.48 2.033 0 3.675 1.557 3.675 3.48 0 1.918-1.642 3.473-3.674 3.473-2.025 0-3.666-1.555-3.666-3.472z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M395.77 143.848c-.865-.913-2.655-.72-3.992.42-1.34 1.136-1.728 2.808-.864 3.715.864.913 2.653.715 3.99-.42 1.34-1.148 1.728-2.813.865-3.715"/> + <path d="M395.77 143.848c-.865-.913-2.655-.72-3.992.42-1.34 1.136-1.728 2.808-.864 3.715.864.913 2.653.715 3.99-.42 1.34-1.148 1.728-2.813.865-3.715z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M390.55 146.06c.184-.626.603-1.263 1.218-1.792 1.338-1.14 3.127-1.334 3.99-.42.11.12.23.282.3.426 0 0 1.86-3.528 4.06-4.7 2.204-1.183 5.93-.883 5.93-.883 0-2.703-2.216-4.89-5.072-4.89-1.676 0-3.262.697-4.196 1.875l-.385-1.815s-2.297.457-3.352 3.083c-1.046 2.632.096 6.436.096 6.436s-.572-1.635-1.435-2.724c-.857-1.08-3.058-2.265-4.207-2.805-1.15-.534-2.323-1.34-2.323-1.34s-.05.295-.095 1.022c-.044.87.025 1.406.025 1.406-2.106-.276-4.563.067-6.48.81.82 1.612 2.38 3.127 4.424 3.902 0 0-.738.607-1.41 1.273-.558.566-.735.83-.735.83l2.164.306c.715.095 3.107.473 4.535.378 1.053-.067 2.234-.24 2.945-.38"/> + <path stroke-linejoin="round" d="M390.55 146.06c.184-.626.603-1.263 1.218-1.792 1.338-1.14 3.127-1.334 3.99-.42.11.12.23.282.3.426 0 0 1.86-3.528 4.06-4.7 2.204-1.183 5.93-.883 5.93-.883 0-2.703-2.216-4.89-5.072-4.89-1.676 0-3.262.697-4.196 1.875l-.385-1.815s-2.297.457-3.352 3.083c-1.046 2.632.096 6.436.096 6.436s-.572-1.635-1.435-2.724c-.857-1.08-3.058-2.265-4.207-2.805-1.15-.534-2.323-1.34-2.323-1.34s-.05.295-.095 1.022c-.044.87.025 1.406.025 1.406-2.106-.276-4.563.067-6.48.81.82 1.612 2.38 3.127 4.424 3.902 0 0-.738.607-1.41 1.273-.558.566-.735.83-.735.83l2.164.306c.715.095 3.107.473 4.535.378 1.053-.067 2.234-.24 2.945-.38z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M243.854 143.848c.87-.913 2.653-.72 3.993.42 1.344 1.136 1.724 2.808.862 3.715-.863.913-2.654.715-3.992-.42-1.34-1.148-1.726-2.813-.864-3.715"/> + <path d="M243.854 143.848c.87-.913 2.653-.72 3.993.42 1.344 1.136 1.724 2.808.862 3.715-.863.913-2.654.715-3.992-.42-1.34-1.148-1.726-2.813-.864-3.715z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b100" d="M249.073 146.06c-.184-.626-.6-1.263-1.22-1.792-1.338-1.14-3.122-1.334-3.99-.42-.115.12-.23.282-.3.426 0 0-1.865-3.528-4.067-4.7-2.195-1.183-5.92-.883-5.92-.883 0-2.703 2.215-4.89 5.07-4.89 1.68 0 3.256.697 4.2 1.875l.382-1.815s2.297.457 3.35 3.083c1.05 2.632-.096 6.436-.096 6.436s.57-1.635 1.435-2.724c.863-1.08 3.064-2.265 4.21-2.805 1.146-.534 2.325-1.34 2.325-1.34s.045.295.09 1.022c.045.87-.025 1.406-.025 1.406 2.1-.276 4.562.067 6.48.81-.82 1.612-2.376 3.127-4.425 3.902 0 0 .737.607 1.408 1.273.56.566.743.83.743.83l-2.162.306c-.725.095-3.11.473-4.537.378-1.054-.067-2.234-.24-2.95-.38"/> + <path stroke-linejoin="round" d="M249.073 146.06c-.184-.626-.6-1.263-1.22-1.792-1.338-1.14-3.122-1.334-3.99-.42-.115.12-.23.282-.3.426 0 0-1.865-3.528-4.067-4.7-2.195-1.183-5.92-.883-5.92-.883 0-2.703 2.215-4.89 5.07-4.89 1.68 0 3.256.697 4.2 1.875l.382-1.815s2.297.457 3.35 3.083c1.05 2.632-.096 6.436-.096 6.436s.57-1.635 1.435-2.724c.863-1.08 3.064-2.265 4.21-2.805 1.146-.534 2.325-1.34 2.325-1.34s.045.295.09 1.022c.045.87-.025 1.406-.025 1.406 2.1-.276 4.562.067 6.48.81-.82 1.612-2.376 3.127-4.425 3.902 0 0 .737.607 1.408 1.273.56.566.743.83.743.83l-2.162.306c-.725.095-3.11.473-4.537.378-1.054-.067-2.234-.24-2.95-.38z" stroke="#000" stroke-linecap="round" stroke-width=".6605573" fill="none"/> + <path fill="#c00" d="M316.076 132.848c0-1.922 1.643-3.473 3.667-3.473s3.674 1.55 3.674 3.473c0 1.924-1.643 3.48-3.674 3.48-2.024 0-3.667-1.556-3.667-3.48"/> + <path d="M316.076 132.848c0-1.922 1.643-3.473 3.667-3.473s3.674 1.55 3.674 3.473c0 1.924-1.643 3.48-3.674 3.48-2.024 0-3.667-1.556-3.667-3.48z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#0076bc" d="M312.12 80.03c0-3.93 3.36-7.103 7.495-7.103 4.138 0 7.495 3.173 7.495 7.104 0 3.92-3.357 7.092-7.495 7.092-4.135 0-7.494-3.173-7.494-7.09"/> + <path fill="#c8b100" d="M328.326 79.03v3.852H311.39V79.03h6.26V67.827h-4.116V63.97h4.117v-3.834h4.076v3.834h4.1v3.858h-4.1v11.2h6.593"/> + <path d="M328.326 79.03v3.852H311.39V79.03h6.26V67.827h-4.116V63.97h4.117v-3.834h4.076v3.834h4.1v3.858h-4.1v11.2h6.599z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#ccc" d="M320.347 379.644c-22.14 0-44.083-5.427-62.53-14.454-13.6-6.736-22.615-20.318-22.615-35.858v-56.36h169.96v56.36c0 15.542-9.016 29.122-22.617 35.858-18.446 9.027-40.047 14.454-62.194 14.454"/> + <path fill="#c8b100" d="M325.744 79.03v3.852H313.54V79.03h4.118V67.827h-4.117V63.97h4.118v-3.834h4.075v3.834h4.1v3.858h-4.1v11.2h4.01"/> + <path d="M325.744 79.03v3.852H313.54V79.03h4.118V67.827h-4.117V63.97h4.118v-3.834h4.075v3.834h4.1v3.858h-4.1v11.2h4.01" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M328.326 79.03v3.852H311.39V79.03h6.26V67.827h-4.116V63.97h4.117v-3.834h4.076v3.834h4.1v3.858h-4.1v11.2h6.593"/> + <path d="M328.326 79.03v3.852H311.39V79.03h6.26V67.827h-4.116V63.97h4.117v-3.834h4.076v3.834h4.1v3.858h-4.1v11.2h6.599z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M321.748 73.22c3.11.86 5.356 3.587 5.356 6.814 0 3.918-3.357 7.09-7.495 7.09-4.137 0-7.495-3.172-7.495-7.09 0-3.287 2.348-6.046 5.54-6.862" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M320.347 379.644c-22.14 0-44.083-5.427-62.53-14.454-13.6-6.736-22.615-20.318-22.615-35.858v-56.36h169.96v56.36c0 15.542-9.016 29.122-22.617 35.858-18.446 9.027-40.047 14.454-62.194 14.454z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#ccc" d="M319.99 272.884h85.165v-94.292H319.99v94.292z"/> + <path d="M319.99 272.884h85.165v-94.292H319.99v94.292z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#c00" d="M320.06 329.27c0 22.274-18.875 40.327-42.383 40.327-23.518 0-42.58-18.053-42.58-40.326v-56.44h84.963v56.44"/> + <path d="M253.66 362.547c2.654 1.41 6.3 3.755 10.197 4.694l-.247-96.403h-9.95v91.71z" stroke="#000" stroke-width=".8775387" fill="#c7b300"/> + <path stroke-linejoin="round" d="M234.955 328.502c.26 11.895 4.98 20.737 9.703 26.527V271.3h-9.584l-.12 57.2z" stroke="#000" stroke-width=".8486994" fill="#c7b300"/> + <path d="M272.597 369.358c3.894.392 6.798.314 9.95 0V270.84h-9.95v98.518z" stroke="#000" stroke-width=".8775387" fill="#c7b500"/> + <path d="M291.302 367.243c3.895-.782 8.287-3.207 10.2-4.46V270.84h-9.952l-.248 96.405z" stroke="#000" stroke-width=".8775387" fill="#c7b300"/> + <path fill="#c00" d="M235.092 272.884h84.925v-94.292h-84.925v94.292z"/> + <path d="M235.092 272.884h84.925v-94.292h-84.925v94.292z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path d="M310.734 354.1c4.142-3.677 8.038-12.05 9.454-21.597l.247-61.663h-9.95l.25 83.26z" stroke="#000" stroke-width=".8775387" fill="#c7b300"/> + <path d="M320.06 329.27c0 22.274-18.875 40.327-42.383 40.327-23.518 0-42.58-18.053-42.58-40.326v-56.44h84.963v56.44" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#c00" d="M405.244 272.83v56.44c0 22.274-19.087 40.327-42.605 40.327-23.512 0-42.58-18.053-42.58-40.326v-56.44h85.184"/> + <path d="M405.244 272.83v56.44c0 22.274-19.087 40.327-42.605 40.327-23.512 0-42.58-18.053-42.58-40.326v-56.44h85.184" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#c8b100" d="M335.55 315.43c.134.287.21.576.21.883 0 1.04-.882 1.868-1.98 1.868-1.093 0-1.98-.828-1.98-1.867 0-.307.077-.596.215-.85l-2.766-.034c-.058.28-.09.576-.09.883 0 1.958 1.352 3.618 3.222 4.177l-.003 6.79 2.9.017.005-6.838c1.346-.44 2.406-1.45 2.87-2.736h7.79v-2.295H335.55m38.214 0v2.294l-7.005.02c-.11.305-.283.588-.45.857l8.134 9.244-2.183 1.767-8.095-9.253c-.148.047-.223.107-.382.15l-.018 15.294h-2.868l-.007-15.36c-.12-.028-.223-.09-.336-.142l-8.428 9.314-2.185-1.767 8.424-9.35c-.146-.236-.253-.493-.35-.77h-7.24v-2.296h22.996-.006zm4.666 0v2.294h7.798c.463 1.286 1.51 2.297 2.868 2.735l.005 6.837 2.896-.017-.006-6.79c1.872-.56 3.23-2.22 3.23-4.177 0-.307-.032-.602-.102-.884h-2.754c.133.287.203.576.203.883 0 1.04-.874 1.868-1.973 1.868-1.09 0-1.98-.828-1.98-1.867 0-.307.076-.596.216-.85l-10.4-.035m-11.773 38.997c2.273-.36 4.367-.985 6.436-1.856l1.42 2.42c-2.378 1.02-4.942 1.756-7.614 2.158-.446 1.977-2.292 3.46-4.512 3.46-2.215 0-4.063-1.465-4.52-3.43-2.823-.385-5.5-1.112-8.007-2.188l1.43-2.42c2.175.917 4.498 1.53 6.908 1.867.51-1.105 1.44-1.96 2.667-2.356l.025-11.855h2.86l.027 11.814c1.27.38 2.34 1.243 2.875 2.385h.005zm-19.45-3.978l-1.413 2.434c-2.42-1.502-4.575-3.358-6.428-5.44-1.472.434-3.135.177-4.39-.845-1.944-1.575-2.18-4.34-.516-6.173l.242-.257c-1.17-2.645-1.963-5.487-2.234-8.467l2.894.012c.228 2.542.862 4.964 1.85 7.235.815-.114 1.684-.018 2.464.27l7.24-8.01 2.182 1.76-7.194 8c.97 1.477.932 3.382-.178 4.838 1.597 1.767 3.432 3.34 5.48 4.645zm-10.736-8.4c.713-.795 1.962-.885 2.794-.212.832.673.934 1.863.223 2.645-.714.787-1.96.882-2.793.21-.83-.68-.932-1.856-.223-2.644zm-3.647-7.923l-2.976-.666-.42-7.536 2.953-.974.002 4.32c0 1.678.15 3.264.44 4.856zm2.47-9.343l2.962.698s.152 4.843.09 3.755c-.078-1.267.323 3.787.323 3.787l-2.99.985c-.298-1.54-.398-3.114-.398-4.736l.005-4.49h.007zm9.768 24.11c2.498 1.948 5.398 3.53 8.534 4.53l.66-2.865c-2.577-.81-4.965-2-7.064-3.544l-2.13 1.88m-1.432 2.476c2.532 1.906 5.428 3.432 8.53 4.49l-2.216 2.073c-2.486-.92-4.826-2.133-6.972-3.576l.658-2.988m3.867-16.61l2.83 1.202 5.177-5.745-1.7-2.447-6.307 6.99m-2.195-1.774l-1.697-2.457 5.18-5.744 2.822 1.207-6.305 6.995m31.873 17.466l1.416 2.434c2.415-1.503 4.574-3.36 6.427-5.44 1.465.433 3.135.176 4.39-.847 1.942-1.574 2.165-4.338.512-6.172l-.246-.257c1.174-2.645 1.968-5.487 2.227-8.468l-2.88.013c-.227 2.543-.868 4.965-1.853 7.236-.818-.114-1.68-.018-2.468.27l-7.234-8.01-2.183 1.76 7.19 8c-.965 1.477-.928 3.382.176 4.837-1.594 1.767-3.428 3.342-5.478 4.646zm10.73-8.4c-.71-.795-1.954-.885-2.784-.212-.834.673-.935 1.862-.224 2.644.71.788 1.96.883 2.793.21.83-.678.924-1.856.213-2.643zm3.65-7.923l2.976-.667.418-7.535-2.945-.975-.007 4.322c0 1.677-.146 3.263-.443 4.855zm-2.462-9.344l-2.962.698s-.16 4.843-.096 3.756c.082-1.268-.324 3.787-.324 3.787l2.99.986c.298-1.54.398-3.114.398-4.736l-.005-4.49m-9.772 24.11c-2.5 1.95-5.402 3.53-8.53 4.532l-.66-2.866c2.57-.81 4.964-2 7.058-3.545l2.132 1.88m1.435 2.477c-2.54 1.905-5.426 3.432-8.53 4.49l2.214 2.073c2.488-.92 4.83-2.132 6.975-3.576l-.66-2.987m-3.866-16.61l-2.83 1.202-5.178-5.746 1.7-2.447 6.308 6.99m2.195-1.774l1.698-2.457-5.18-5.744-2.822 1.206 6.305 6.995m-35.444-15.252l.87 2.825h7.976l.86-2.824h-9.706m37.26 0l-.875 2.825h-7.97l-.862-2.824h9.707m-20.49 38.498c0-1.04.89-1.88 1.982-1.88 1.09 0 1.97.84 1.97 1.88 0 1.034-.88 1.87-1.97 1.87-1.093 0-1.98-.836-1.98-1.87zm3.36-13.665l2.974-.835v-7.542l-2.976-.818v9.195m-2.887 0l-2.97-.835v-7.542l2.97-.818v9.195"/> + <path fill="#c8b100" d="M329.246 315.497c.342-1.57 1.57-2.847 3.154-3.324l-.022-9.313h2.87l.007 9.362c1.416.447 2.506 1.493 2.944 2.843l7.74.012v.42h-10.394c-.322-.572-.997-.998-1.77-.998-.767 0-1.44.425-1.764 1.034l-2.766-.036m21.517 0v-.42h7.19c.083-.236.19-.465.31-.68l-8.87-9.888 2.18-1.77 8.76 9.724c.152-.073.312-.14.47-.194l.006-12.956h2.867v12.878c.127.036.323.07.45.11l8.556-9.743 2.2 1.743-8.59 9.702c.22.325.373.686.493 1.072h6.968v.42h-22.998.007zm38.062 0c.323-.573.99-1 1.764-1 .775 0 1.44.427 1.77 1.036l2.753-.036c-.344-1.572-1.56-2.848-3.147-3.325l.02-9.308h-2.864l-.012 9.363c-1.408.446-2.5 1.487-2.938 2.837l-7.747.012v.42h10.4M335.713 289.2l10.67 11.962 2.185-1.77-10.73-11.915c.214-.32.366-.668.494-1.043h7.806v-2.722h-7.81c-.6-1.764-2.35-3.028-4.41-3.028-2.552 0-4.628 1.963-4.628 4.385 0 1.92 1.3 3.557 3.113 4.146l-.017 9.23h2.868v-9.168c.12-.036.343-.036.46-.08zm56.304.06l-.026 9.187h-2.87v-9.224c-.218-.068-.435-.158-.64-.26l-10.614 11.977-2.195-1.746 10.82-12.212c-.09-.174-.185-.354-.248-.548h-7.85v-2.722h7.826c.6-1.764 2.334-3.028 4.39-3.028 2.55 0 4.626 1.963 4.626 4.384 0 1.97-1.34 3.63-3.217 4.19zm-28.308-.037l-.027 5.66h-2.868l.007-5.612c-1.428-.422-2.553-1.48-3.02-2.836H350.8v-2.722h7c.604-1.764 2.33-3.028 4.385-3.028s3.795 1.264 4.4 3.028h7.137v2.722h-7.157c-.452 1.307-1.49 2.35-2.856 2.79zm-31.3 6.87l-2.974.836v7.563l2.975.818v-9.218m2.89 0l2.968.837v7.563l-2.968.818v-9.218m53.796 0l-2.97.837v7.563l2.97.818v-9.218m2.888 0l2.977.837v7.563l-2.976.818v-9.218m-45.037 1.493l2.832-1.203 5.178 5.756-1.7 2.456-6.31-7.01m-2.194 1.783l-1.694 2.464 5.177 5.75 2.824-1.21-6.306-7.003m32.516-2.004l-2.838-1.18-5.127 5.798 1.72 2.44 6.245-7.057m2.208 1.764l1.718 2.444-5.126 5.8-2.83-1.187 6.238-7.056m-35.847 15.945l.87-2.825h7.977l.86 2.825h-9.706m-11.694-29.998c0-1.034.888-1.878 1.98-1.878 1.09 0 1.973.844 1.973 1.878 0 1.036-.883 1.873-1.974 1.873-1.092 0-1.98-.837-1.98-1.873zm21.333 1.367l-.875 2.83h-7.972l-.862-2.83h9.71m0-2.74l-.876-2.823h-7.97l-.864 2.823h9.71m27.62 31.372l-.874-2.825h-7.972l-.86 2.825h9.706m7.738-29.998c0-1.035.88-1.878 1.978-1.878 1.093 0 1.975.843 1.975 1.878 0 1.036-.88 1.873-1.974 1.873-1.097 0-1.978-.837-1.978-1.873zm-28.422 0c0-1.035.888-1.878 1.98-1.878 1.09 0 1.974.843 1.974 1.878 0 1.036-.883 1.873-1.975 1.873-1.09 0-1.98-.837-1.98-1.873zm11.046 1.366l.878 2.83h7.968l.864-2.83h-9.71m0-2.74l.878-2.823h7.968l.864 2.823h-9.71m-10.412 8.834l-2.97.837v7.564l2.97.82v-9.22m2.856 0l2.97.837v7.564l-2.97.82v-9.22"/> + <path d="M366.655 354.43c2.273-.36 4.367-.985 6.436-1.855l1.422 2.42c-2.38 1.022-4.943 1.756-7.615 2.158-.445 1.977-2.29 3.46-4.51 3.46-2.216 0-4.064-1.464-4.522-3.43-2.822-.384-5.5-1.112-8.006-2.187l1.427-2.422c2.176.92 4.5 1.532 6.908 1.868.51-1.104 1.442-1.958 2.667-2.355l.026-11.857h2.86l.027 11.814c1.27.38 2.34 1.244 2.874 2.386h.005zm-8.3-35.925c-.144-.24-.253-.498-.35-.776h-7.24v-2.717h7.192c.082-.228.196-.457.315-.673l-8.876-9.873 2.18-1.768 8.767 9.706c.15-.073.305-.138.468-.193l.008-12.932h2.86v12.855c.13.036.325.07.453.114l8.555-9.73 2.2 1.75-8.59 9.675c.222.323.373.685.494 1.068h6.967v2.716l-7.007.018c-.1.307-.278.59-.443.86l8.135 9.25-2.182 1.766-8.096-9.262c-.15.055-.224.114-.39.157l-.018 15.293h-2.868l-.008-15.36c-.12-.036-.22-.097-.334-.15l-8.428 9.32-2.182-1.766 8.42-9.352m-22.64-29.32l10.67 11.94 2.186-1.766-10.73-11.894c.214-.32.365-.667.493-1.04h7.807v-2.716h-7.812c-.598-1.76-2.348-3.023-4.41-3.023-2.55 0-4.627 1.96-4.627 4.376 0 1.917 1.3 3.55 3.114 4.14l-.017 9.213h2.868v-9.152c.12-.036.342-.036.458-.08zm11.49 61.27l-1.414 2.432c-2.42-1.503-4.575-3.36-6.428-5.44-1.472.434-3.135.176-4.39-.846-1.944-1.574-2.18-4.338-.516-6.17l.242-.26c-1.17-2.643-1.963-5.486-2.234-8.466l2.894.012c.228 2.543.862 4.964 1.85 7.236.815-.114 1.684-.02 2.465.27l7.24-8.01 2.18 1.76-7.193 8c.97 1.476.932 3.382-.177 4.837 1.596 1.766 3.432 3.34 5.48 4.644zm-14.83-23.17l.004-6.79c-1.87-.553-3.227-2.218-3.227-4.176 0-1.956 1.376-3.638 3.25-4.204l-.023-9.29h2.87l.007 9.345c1.416.446 2.507 1.485 2.945 2.83l7.74.014v2.716h-7.79c-.463 1.287-1.523 2.297-2.87 2.735l-.005 6.84-2.9-.018m4.09 14.765c.713-.794 1.962-.884 2.794-.21.833.672.935 1.862.224 2.644-.714.787-1.96.882-2.793.21-.83-.68-.93-1.856-.222-2.644zm-3.647-7.922l-2.976-.666-.42-7.536 2.953-.975.002 4.322c0 1.677.147 3.263.44 4.855zm2.47-9.343l2.962.697s.152 4.842.09 3.755c-.078-1.268.323 3.786.323 3.786l-2.99.985c-.298-1.538-.398-3.113-.398-4.735l.005-4.488h.007zm9.768 24.11c2.497 1.947 5.397 3.528 8.533 4.53l.66-2.866c-2.576-.81-4.964-2-7.063-3.543l-2.13 1.88m-1.432 2.475c2.532 1.905 5.428 3.432 8.53 4.49l-2.216 2.073c-2.487-.92-4.827-2.132-6.973-3.575l.658-2.988" stroke="#c8b100" stroke-width=".4380827" fill="none"/> + <path d="M347.497 334.75l2.83 1.202 5.177-5.744-1.7-2.447-6.307 6.99m-2.195-1.773l-1.697-2.457 5.18-5.745 2.822 1.207-6.305 6.995m-13.498-16.67c0-1.04.886-1.88 1.98-1.88 1.09 0 1.974.84 1.974 1.88s-.883 1.87-1.975 1.87c-1.093 0-1.98-.83-1.98-1.87zm45.37 34.136l1.417 2.433c2.418-1.503 4.577-3.36 6.43-5.44 1.465.434 3.135.176 4.39-.846 1.94-1.575 2.165-4.34.512-6.172l-.246-.258c1.174-2.644 1.97-5.487 2.228-8.467l-2.88.012c-.23 2.543-.87 4.964-1.854 7.236-.818-.113-1.68-.018-2.468.272l-7.234-8.01-2.183 1.76 7.19 7.998c-.965 1.477-.927 3.383.177 4.838-1.593 1.767-3.427 3.34-5.477 4.645zm14.832-23.168l-.007-6.79c1.87-.555 3.228-2.22 3.228-4.177 0-1.955-1.375-3.637-3.248-4.203l.02-9.29h-2.87l-.013 9.345c-1.408.445-2.5 1.484-2.938 2.83l-7.748.013v2.716h7.798c.463 1.285 1.51 2.296 2.868 2.734l.005 6.838 2.896-.017h.005zm-4.1 14.766c-.71-.793-1.955-.884-2.785-.21-.832.673-.933 1.862-.222 2.644.71.787 1.96.883 2.793.21.832-.678.926-1.856.216-2.643zm3.65-7.922l2.975-.666.42-7.535-2.944-.975-.007 4.32c0 1.678-.148 3.265-.444 4.856zm-2.463-9.343l-2.963.697s-.16 4.843-.096 3.756c.082-1.268-.323 3.786-.323 3.786l2.99.985c.298-1.54.398-3.114.398-4.736l-.005-4.49m2.93-35.54l-.025 9.17h-2.87v-9.207c-.22-.067-.435-.157-.64-.26l-10.615 11.955-2.194-1.743 10.816-12.19c-.088-.173-.184-.353-.247-.546h-7.85v-2.716h7.825c.602-1.76 2.335-3.023 4.39-3.023 2.55 0 4.626 1.96 4.626 4.376 0 1.966-1.338 3.624-3.216 4.183zm-28.307-.037l-.025 5.65h-2.867l.006-5.602c-1.428-.42-2.553-1.478-3.022-2.83h-7v-2.717h7c.603-1.76 2.328-3.023 4.385-3.023s3.795 1.263 4.398 3.023h7.14v2.716h-7.158c-.45 1.304-1.49 2.345-2.856 2.783zm15.605 59.686c-2.5 1.948-5.4 3.53-8.528 4.53l-.66-2.865c2.57-.81 4.963-2 7.057-3.544l2.13 1.88m1.436 2.475c-2.54 1.904-5.426 3.43-8.53 4.49l2.214 2.072c2.488-.92 4.83-2.132 6.975-3.575l-.66-2.988m-48.335-55.306l-2.976.835v7.548l2.976.816v-9.2m2.888 0l2.97.835v7.548l-2.97.816v-9.2m53.796 0l-2.968.835v7.548l2.968.816v-9.2" stroke="#c8b100" stroke-width=".4380827" fill="none"/> + <path d="M391.992 296.065l2.977.835v7.55l-2.978.815v-9.2m-15.104 38.696l-2.828 1.202-5.18-5.745 1.702-2.447 6.306 6.99m2.195-1.773l1.697-2.458-5.178-5.745-2.824 1.206 6.305 6.997m-32.128-35.433l2.832-1.2 5.18 5.745-1.702 2.45-6.31-6.996m-2.193 1.78l-1.694 2.458 5.177 5.74 2.823-1.21-6.306-6.99m32.515-2l-2.837-1.177-5.128 5.787 1.72 2.434 6.245-7.043m2.21 1.76l1.717 2.44-5.126 5.787-2.83-1.184 6.238-7.043m-35.847 15.914l.868-2.82h7.977l.86 2.82h-9.706m0 2.728l.868 2.824h7.977l.86-2.825h-9.706m-11.696-32.67c0-1.032.888-1.874 1.98-1.874 1.09 0 1.973.843 1.973 1.876 0 1.034-.882 1.87-1.973 1.87-1.092 0-1.98-.836-1.98-1.87zm21.333 1.366l-.875 2.824h-7.97l-.864-2.823h9.71m0-2.734l-.876-2.82h-7.97l-.864 2.82h9.71m35.338 32.62c0-1.04.89-1.88 1.98-1.88 1.1 0 1.973.84 1.973 1.88s-.875 1.87-1.974 1.87c-1.09 0-1.98-.83-1.98-1.87zm-7.718-1.31l-.874-2.818h-7.972l-.86 2.818h9.706m0 2.73l-.874 2.822h-7.972l-.86-2.823h9.706m-20.49 38.496c0-1.038.89-1.88 1.982-1.88 1.09 0 1.97.84 1.97 1.88 0 1.035-.88 1.87-1.97 1.87-1.093 0-1.98-.835-1.98-1.87zm3.358-13.664l2.976-.835v-7.54l-2.976-.82v9.196m-2.886 0l-2.97-.835v-7.54l2.97-.82v9.196m27.755-57.5c0-1.033.88-1.874 1.98-1.874 1.09 0 1.974.84 1.974 1.874 0 1.034-.884 1.87-1.976 1.87-1.098 0-1.98-.836-1.98-1.87zm-28.42 0c0-1.033.886-1.874 1.977-1.874 1.092 0 1.975.84 1.975 1.874 0 1.034-.883 1.87-1.975 1.87-1.09 0-1.978-.836-1.978-1.87zm11.045 1.365l.877 2.825h7.968l.864-2.824h-9.71m0-2.734l.877-2.82h7.968l.864 2.82h-9.71M360.846 292.508l-2.97.835v7.548l2.97.82v-9.202m2.856 0l2.968.835v7.548l-2.968.82v-9.202" stroke="#c8b100" stroke-width=".4380827" fill="none"/> + <path fill="#05906f" d="M357.756 316.362c0-2.428 2.075-4.393 4.633-4.393 2.55 0 4.624 1.964 4.624 4.392 0 2.417-2.074 4.375-4.625 4.375-2.56 0-4.634-1.958-4.634-4.375"/> + <path fill="#db4446" d="M363.4 201.815l.095-1.046.145-.584s-2.726.224-4.16-.18c-1.436-.408-2.73-.997-4.07-2.127-1.337-1.138-1.865-1.846-2.823-1.99-2.297-.366-4.067.673-4.067.673s1.726.636 3.02 2.218c1.288 1.594 2.692 2.398 3.3 2.59 1.004.307 4.494.09 5.452.127.957.048 3.108.324 3.108.324"/> + <path d="M363.4 201.815l.095-1.046.145-.584s-2.726.224-4.16-.18c-1.436-.408-2.73-.997-4.07-2.127-1.337-1.138-1.865-1.846-2.823-1.99-2.297-.366-4.067.673-4.067.673s1.726.636 3.02 2.218c1.288 1.594 2.692 2.398 3.3 2.59 1.004.307 4.494.09 5.452.127.957.048 3.108.324 3.108.324v-.005z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#f38fb0" d="M376.158 197.984s.007 1.22.126 2.386c.114 1.118-.36 2.097-.177 2.716.177.625.266 1.118.507 1.568.23.45.355 1.593.355 1.593s-.654-.464-1.26-.913c-.593-.457-1.02-.74-1.02-.74s.122 1.22.178 1.743c.064.523.37 1.508.864 2.09.49.572 1.467 1.51 1.77 2.26.312.76.25 2.43.25 2.43s-.795-1.27-1.477-1.497c-.67-.235-2.142-1.052-2.142-1.052s1.35 1.34 1.35 2.614c0 1.273-.55 2.722-.55 2.722s-.61-1.154-1.403-1.91c-.8-.752-1.903-1.508-1.903-1.508s.862 1.97.862 3.3c0 1.338-.24 4.18-.24 4.18s-.674-1.1-1.348-1.634c-.678-.516-1.47-.98-1.72-1.322-.24-.348.802 1.094.914 1.965.12.872.534 3.98 3.25 7.946 1.587 2.32 4.042 6.376 9.303 5.04 5.266-1.326 3.31-8.405 2.207-11.71-1.104-3.3-1.656-6.96-1.59-8.24.055-1.268.975-5.036.854-5.74-.12-.69-.406-3.382.248-5.55.673-2.26 1.232-3.138 1.593-4.07.36-.926.666-1.45.79-2.26.12-.81.12-2.326.12-2.326s.976 1.803 1.223 2.44c.242.643.242 2.548.242 2.548s.183-1.905 1.657-2.83c1.472-.938 3.184-1.918 3.614-2.44.428-.53.554-.872.554-.872s-.126 3.252-1.04 4.53c-.61.83-3.007 3.536-3.007 3.536s1.23-.47 2.085-.517c.857-.067 1.468 0 1.468 0s-1.042.81-2.388 2.78c-1.344 1.967-.797 2.14-1.776 3.763-.984 1.622-1.777 1.682-3.002 2.668-1.84 1.48-.85 7.356-.608 8.23.247.864 3.427 8.063 3.49 9.8.056 1.742.368 5.626-2.698 8.12-1.973 1.616-5.203 1.628-5.94 2.09-.737.456-2.195 1.905-2.195 4.923 0 3.023 1.09 3.48 1.948 4.236.862.756 1.962.348 2.207.93.25.577.368.926.738 1.274.368.343.615.752.49 1.382-.122.644-1.53 2.093-2.02 3.144-.495 1.033-1.473 3.768-1.473 4.17 0 .41-.114 1.684.305 2.326 0 0 1.53 1.786.488 2.134-.672.228-1.33-.42-1.648-.348-.915.24-1.392.804-1.656.757-.612-.116-.612-.415-.675-1.276-.056-.866-.025-1.22-.298-1.22-.368 0-.554.3-.615.758-.066.462-.066 1.5-.49 1.5-.43 0-1.04-.75-1.408-.917-.368-.176-1.408-.35-1.468-.81-.06-.465.612-1.45 1.284-1.625.673-.174 1.288-.516.857-.864-.43-.35-.857-.35-1.282 0-.43.348-1.346.053-1.288-.47.063-.522.184-1.154.12-1.447-.057-.284-.793-.867.178-1.397.984-.516 1.408.47 2.386.295.984-.167 1.473-.528 1.84-1.1.37-.577.305-1.797-.367-2.547-.673-.757-1.344-.876-1.593-1.34-.247-.462-.608-1.563-.608-1.563s.177 2.027.056 2.32c-.12.29-.056 1.503-.056 1.503s-.674-.752-1.226-1.328c-.545-.582-1.097-2.32-1.097-2.32s-.06 1.623-.06 2.266c0 .63.73 1.213.49 1.448-.247.23-1.408-1.22-1.713-1.448-.31-.234-1.288-.985-1.72-1.803-.425-.81-.737-1.965-.856-2.38-.122-.403-.323-2.21-.122-2.668.305-.69.796-1.91.796-1.91h-2.387c-1.282 0-2.202-.404-2.69.462-.488.87-.248 2.613.362 4.873.614 2.253.975 3.358.798 3.767-.18.403-.976 1.335-1.28 1.503-.313.18-1.17.12-1.538-.047-.362-.176-.97-.47-2.14-.47-1.16 0-1.896.054-2.32-.048-.43-.12-1.472-.643-1.968-.53-.49.12-1.334.553-1.104 1.22.374 1.046-.362 1.28-.856 1.222-.49-.062-.908-.236-1.53-.404-.608-.18-1.53 0-1.408-.702.12-.697.368-.752.672-1.268.31-.53.424-.866.08-.902-.43-.042-.86-.09-1.197.186-.324.27-.85.854-1.284.637-.433-.228-.767-.727-.767-1.82 0-1.088-1.15-2.038-.096-1.99 1.053.048 2.393.818 2.633.228.235-.594.09-.858-.48-1.322-.575-.45-1.29-.72-.524-1.31.763-.583.954-.583 1.246-.907.285-.314.696-1.334 1.23-1.082 1.052.5.05 1.225 1.103 2.398 1.055 1.177 1.72 1.593 3.492 1.405 1.77-.18 2.253-.407 2.253-.906s-.15-1.4-.2-1.766c-.042-.362.244-1.677.244-1.677s-.813.504-1.053.997c-.23.5-.713 1.353-.713 1.353s-.196-1.016-.14-1.846c.032-.484.204-1.333.186-1.5-.046-.452-.382-1.586-.382-1.586s-.287 1.225-.475 1.586c-.19.36-.286 1.815-.286 1.815s-1.124-.98-.812-2.626c.233-1.27-.193-2.946.19-3.493.374-.547 1.28-2.766 3.484-2.86 2.202-.085 3.92.094 4.69.054.765-.054 3.49-.547 3.49-.547s-5.022-2.578-6.17-3.353c-1.148-.764-2.918-2.76-3.496-3.666-.572-.908-1.097-2.668-1.097-2.668s-.903.04-1.72.492c-.813.445-1.625 1.137-2.102 1.67-.484.547-1.244 1.774-1.244 1.774s.14-1.586.14-2.086c0-.487-.095-1.453-.095-1.453s-.572 2.174-1.72 2.985c-1.15.823-2.49 1.953-2.49 1.953s.148-1.212.148-1.488c0-.27.286-1.677.286-1.677s-.813 1.213-2.057 1.454c-1.244.222-3.065.174-3.21.95-.14.76.335 1.808.05 2.348-.287.547-.907.908-.907.908s-.716-.595-1.34-.637c-.622-.05-1.198.275-1.198.275s-.526-.685-.337-1.135c.196-.452 1.148-1.13.913-1.406-.24-.27-1.007.096-1.484.32-.476.227-1.484.45-1.39-.32.096-.77.337-1.22.096-1.767-.238-.535-.095-.902.292-1.04.38-.126 1.91.04 2.055-.306.14-.366-.38-.817-1.39-1.046-1.002-.22-1.483-.816-.956-1.315.527-.5.672-.632.91-1.088s.333-1.27 1.246-.86c.902.403.71 1.4 1.677 1.718.946.324 3.2-.132 3.672-.402.484-.277 2.013-1.407 2.54-1.683.528-.265 2.722-1.9 2.722-1.9s-1.288-.895-1.77-1.357c-.475-.45-1.333-1.534-1.757-1.762-.433-.233-2.54-1.04-3.256-1.087-.718-.05-2.92-.812-2.92-.812s1.004-.324 1.34-.595 1.09-.956 1.484-.908c.375.05.47.05.47.05s-2.05-.098-2.482-.224c-.43-.144-1.674-.912-2.15-.912-.483 0-1.434.185-1.434.185s1.288-.816 2.34-.996c1.054-.174 1.867-.138 1.867-.138s-1.625-.453-2.013-.993c-.38-.547-.76-1.353-1.053-1.72-.285-.36-.476-.954-1.002-.997-.527-.047-1.437.638-1.962.588-.52-.04-.908-.366-.96-1.13-.035-.773 0-.504-.18-.906-.192-.414-.96-1.365-.243-1.586.724-.23 2.252.133 2.392-.138.146-.27-.812-1.088-1.434-1.406-.622-.314-1.626-.86-1.1-1.31.53-.452 1.052-.63 1.34-1.04.287-.41.622-1.54 1.244-1.18.622.362 1.483 2.134 1.962 1.996.482-.138.518-1.406.43-1.946-.095-.547 0-1.496.47-1.408.483.09.863.723 1.632.776.76.042 1.908-.18 1.813.354-.095.542-.528 1.215-1.053 1.81-.513.595-.755 1.767-.424 2.535.334.775 1.2 2.002 1.96 2.494.76.498 2.196.866 3.11 1.45.906.593 3.014 2.263 3.73 2.444.717.186 1.434.547 1.434.547s.81-.36 1.917-.36c1.1 0 3.63.18 4.59-.23.956-.414 2.2-1.087 1.82-1.953-.38-.853-2.488-1.63-2.297-2.302.19-.678.958-.726 2.245-.773 1.29-.043 3.06.228 3.39-1.587.336-1.81.432-2.856-1.376-3.258-1.822-.41-3.163-.45-3.49-1.767-.34-1.31-.673-1.627-.293-1.996.387-.355 1.052-.54 2.39-.624 1.34-.097 2.87-.097 3.302-.42.43-.308.52-1.174 1.046-1.54.525-.354 2.59-.68 2.59-.68s2.456 1.203 4.74 2.897c2.043 1.527 3.89 3.782 3.89 3.782"/> + <path d="M376.158 197.984s.007 1.22.126 2.386c.114 1.118-.36 2.097-.177 2.716.177.625.266 1.118.507 1.568.23.45.355 1.593.355 1.593s-.654-.464-1.26-.913c-.593-.457-1.02-.74-1.02-.74s.122 1.22.178 1.743c.064.523.37 1.508.864 2.09.49.572 1.467 1.51 1.77 2.26.312.76.25 2.43.25 2.43s-.795-1.27-1.477-1.497c-.67-.235-2.142-1.052-2.142-1.052s1.35 1.34 1.35 2.614c0 1.273-.55 2.722-.55 2.722s-.61-1.154-1.403-1.91c-.8-.752-1.903-1.508-1.903-1.508s.862 1.97.862 3.3c0 1.338-.24 4.18-.24 4.18s-.674-1.1-1.348-1.634c-.678-.516-1.47-.98-1.72-1.322-.24-.348.802 1.094.914 1.965.12.872.534 3.98 3.25 7.946 1.587 2.32 4.042 6.376 9.303 5.04 5.266-1.326 3.31-8.405 2.207-11.71-1.104-3.3-1.656-6.96-1.59-8.24.055-1.268.975-5.036.854-5.74-.12-.69-.406-3.382.248-5.55.673-2.26 1.232-3.138 1.593-4.07.36-.926.666-1.45.79-2.26.12-.81.12-2.326.12-2.326s.976 1.803 1.223 2.44c.242.643.242 2.548.242 2.548s.183-1.905 1.657-2.83c1.472-.938 3.184-1.918 3.614-2.44.428-.53.554-.872.554-.872s-.126 3.252-1.04 4.53c-.61.83-3.007 3.536-3.007 3.536s1.23-.47 2.085-.517c.857-.067 1.468 0 1.468 0s-1.042.81-2.388 2.78c-1.344 1.967-.797 2.14-1.776 3.763-.984 1.622-1.777 1.682-3.002 2.668-1.84 1.48-.85 7.356-.608 8.23.247.864 3.427 8.063 3.49 9.8.056 1.742.368 5.626-2.698 8.12-1.973 1.616-5.203 1.628-5.94 2.09-.737.456-2.195 1.905-2.195 4.923 0 3.023 1.09 3.48 1.948 4.236.862.756 1.962.348 2.207.93.25.577.368.926.738 1.274.368.343.615.752.49 1.382-.122.644-1.53 2.093-2.02 3.144-.495 1.033-1.473 3.768-1.473 4.17 0 .41-.114 1.684.305 2.326 0 0 1.53 1.786.488 2.134-.672.228-1.33-.42-1.648-.348-.915.24-1.392.804-1.656.757-.612-.116-.612-.415-.675-1.276-.056-.866-.025-1.22-.298-1.22-.368 0-.554.3-.615.758-.066.462-.066 1.5-.49 1.5-.43 0-1.04-.75-1.408-.917-.368-.176-1.408-.35-1.468-.81-.06-.465.612-1.45 1.284-1.625.673-.174 1.288-.516.857-.864-.43-.35-.857-.35-1.282 0-.43.348-1.346.053-1.288-.47.063-.522.184-1.154.12-1.447-.057-.284-.793-.867.178-1.397.984-.516 1.408.47 2.386.295.984-.167 1.473-.528 1.84-1.1.37-.577.305-1.797-.367-2.547-.673-.757-1.344-.876-1.593-1.34-.247-.462-.608-1.563-.608-1.563s.177 2.027.056 2.32c-.12.29-.056 1.503-.056 1.503s-.674-.752-1.226-1.328c-.545-.582-1.097-2.32-1.097-2.32s-.06 1.623-.06 2.266c0 .63.73 1.213.49 1.448-.247.23-1.408-1.22-1.713-1.448-.31-.234-1.288-.985-1.72-1.803-.425-.81-.737-1.965-.856-2.38-.122-.403-.323-2.21-.122-2.668.305-.69.796-1.91.796-1.91h-2.387c-1.282 0-2.202-.404-2.69.462-.488.87-.248 2.613.362 4.873.614 2.253.975 3.358.798 3.767-.18.403-.976 1.335-1.28 1.503-.313.18-1.17.12-1.538-.047-.362-.176-.97-.47-2.14-.47-1.16 0-1.896.054-2.32-.048-.43-.12-1.472-.643-1.968-.53-.49.12-1.334.553-1.104 1.22.374 1.046-.362 1.28-.856 1.222-.49-.062-.908-.236-1.53-.404-.608-.18-1.53 0-1.408-.702.12-.697.368-.752.672-1.268.31-.53.424-.866.08-.902-.43-.042-.86-.09-1.197.186-.324.27-.85.854-1.284.637-.433-.228-.767-.727-.767-1.82 0-1.088-1.15-2.038-.096-1.99 1.053.048 2.393.818 2.633.228.235-.594.09-.858-.48-1.322-.575-.45-1.29-.72-.524-1.31.763-.583.954-.583 1.246-.907.285-.314.696-1.334 1.23-1.082 1.052.5.05 1.225 1.103 2.398 1.055 1.177 1.72 1.593 3.492 1.405 1.77-.18 2.253-.407 2.253-.906s-.15-1.4-.2-1.766c-.042-.362.244-1.677.244-1.677s-.813.504-1.053.997c-.23.5-.713 1.353-.713 1.353s-.196-1.016-.14-1.846c.032-.484.204-1.333.186-1.5-.046-.452-.382-1.586-.382-1.586s-.287 1.225-.475 1.586c-.19.36-.286 1.815-.286 1.815s-1.124-.98-.812-2.626c.233-1.27-.193-2.946.19-3.493.374-.547 1.28-2.766 3.484-2.86 2.202-.085 3.92.094 4.69.054.765-.054 3.49-.547 3.49-.547s-5.022-2.578-6.17-3.353c-1.148-.764-2.918-2.76-3.496-3.666-.572-.908-1.097-2.668-1.097-2.668s-.903.04-1.72.492c-.813.445-1.625 1.137-2.102 1.67-.484.547-1.244 1.774-1.244 1.774s.14-1.586.14-2.086c0-.487-.095-1.453-.095-1.453s-.572 2.174-1.72 2.985c-1.15.823-2.49 1.953-2.49 1.953s.148-1.212.148-1.488c0-.27.286-1.677.286-1.677s-.813 1.213-2.057 1.454c-1.244.222-3.065.174-3.21.95-.14.76.335 1.808.05 2.348-.287.547-.907.908-.907.908s-.716-.595-1.34-.637c-.622-.05-1.198.275-1.198.275s-.526-.685-.337-1.135c.196-.452 1.148-1.13.913-1.406-.24-.27-1.007.096-1.484.32-.476.227-1.484.45-1.39-.32.096-.77.337-1.22.096-1.767-.238-.535-.095-.902.292-1.04.38-.126 1.91.04 2.055-.306.14-.366-.38-.817-1.39-1.046-1.002-.22-1.483-.816-.956-1.315.527-.5.672-.632.91-1.088s.333-1.27 1.246-.86c.902.403.71 1.4 1.677 1.718.946.324 3.2-.132 3.672-.402.484-.277 2.013-1.407 2.54-1.683.528-.265 2.722-1.9 2.722-1.9s-1.288-.895-1.77-1.357c-.475-.45-1.333-1.534-1.757-1.762-.433-.233-2.54-1.04-3.256-1.087-.718-.05-2.92-.812-2.92-.812s1.004-.324 1.34-.595 1.09-.956 1.484-.908c.375.05.47.05.47.05s-2.05-.098-2.482-.224c-.43-.144-1.674-.912-2.15-.912-.483 0-1.434.185-1.434.185s1.288-.816 2.34-.996c1.054-.174 1.867-.138 1.867-.138s-1.625-.453-2.013-.993c-.38-.547-.76-1.353-1.053-1.72-.285-.36-.476-.954-1.002-.997-.527-.047-1.437.638-1.962.588-.52-.04-.908-.366-.96-1.13-.035-.773 0-.504-.18-.906-.192-.414-.96-1.365-.243-1.586.724-.23 2.252.133 2.392-.138.146-.27-.812-1.088-1.434-1.406-.622-.314-1.626-.86-1.1-1.31.53-.452 1.052-.63 1.34-1.04.287-.41.622-1.54 1.244-1.18.622.362 1.483 2.134 1.962 1.996.482-.138.518-1.406.43-1.946-.095-.547 0-1.496.47-1.408.483.09.863.723 1.632.776.76.042 1.908-.18 1.813.354-.095.542-.528 1.215-1.053 1.81-.513.595-.755 1.767-.424 2.535.334.775 1.2 2.002 1.96 2.494.76.498 2.196.866 3.11 1.45.906.593 3.014 2.263 3.73 2.444.717.186 1.434.547 1.434.547s.81-.36 1.917-.36c1.1 0 3.63.18 4.59-.23.956-.414 2.2-1.087 1.82-1.953-.38-.853-2.488-1.63-2.297-2.302.19-.678.958-.726 2.245-.773 1.29-.043 3.06.228 3.39-1.587.336-1.81.432-2.856-1.376-3.258-1.822-.41-3.163-.45-3.49-1.767-.34-1.31-.673-1.627-.293-1.996.387-.355 1.052-.54 2.39-.624 1.34-.097 2.87-.097 3.302-.42.43-.308.52-1.174 1.046-1.54.525-.354 2.59-.68 2.59-.68s2.456 1.203 4.74 2.897c2.043 1.527 3.89 3.782 3.89 3.782v-.03z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path d="M358.525 196.707s-.287-.816-.336-1.045c-.045-.223-.194-.5-.194-.5s1.486 0 1.437.45c-.046.457-.477.457-.573.633-.093.186-.335.462-.335.462"/> + <path d="M358.525 196.707s-.287-.816-.336-1.045c-.045-.223-.194-.5-.194-.5s1.486 0 1.437.45c-.046.457-.477.457-.573.633-.093.186-.335.462-.335.462z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M365.322 194.345l-.1-.726s1.293.01 1.915.45c.96.68 1.575 1.723 1.53 1.766-.166.162-.908-.452-1.434-.63 0 0-.382.09-.767.09-.382 0-.573-.18-.624-.362-.042-.185.05-.5.05-.5l-.57-.082"/> + <path d="M365.322 194.345l-.1-.726s1.293.01 1.915.45c.96.68 1.575 1.723 1.53 1.766-.166.162-.908-.452-1.434-.63 0 0-.382.09-.767.09-.382 0-.573-.18-.624-.362-.042-.185.05-.5.05-.5l-.57-.082v-.007z" stroke="#000" stroke-width=".0865179" fill="none"/> + <path d="M374.647 204.59s-.577-.818-.717-1.094c-.147-.265-.387-.812-.387-.812" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#db4446" d="M339.628 196.432s.813.583 1.435.673c.622.096 1.295.096 1.39.096.094 0 .292-.913.19-1.536-.336-2.044-2.202-2.495-2.202-2.495s.558 1.238.287 1.81c-.38.815-1.1 1.452-1.1 1.452"/> + <path d="M339.628 196.432s.813.583 1.435.673c.622.096 1.295.096 1.39.096.094 0 .292-.913.19-1.536-.336-2.044-2.202-2.495-2.202-2.495s.558 1.238.287 1.81c-.38.815-1.1 1.452-1.1 1.452z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M335.742 198.204s-.718-1.316-2.246-1.137c-1.53.18-2.54 1.365-2.54 1.365s1.69-.054 2.107.222c.623.41.813 1.455.813 1.455s.915-.548 1.2-.91c.284-.366.666-.996.666-.996"/> + <path d="M335.742 198.204s-.718-1.316-2.246-1.137c-1.53.18-2.54 1.365-2.54 1.365s1.69-.054 2.107.222c.623.41.813 1.455.813 1.455s.915-.548 1.2-.91c.284-.366.666-.996.666-.996z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M333.888 203.505s-1.29.185-2.004 1.003c-.724.817-.622 2.355-.622 2.355s.855-.9 1.624-.9c.768 0 1.96.27 1.96.27s-.38-.96-.38-1.365c0-.407-.578-1.363-.578-1.363"/> + <path d="M333.888 203.505s-1.29.185-2.004 1.003c-.724.817-.622 2.355-.622 2.355s.855-.9 1.624-.9c.768 0 1.96.27 1.96.27s-.38-.96-.38-1.365c0-.407-.578-1.363-.578-1.363z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path d="M358.58 203.312l.57-.9.563.817-1.133.082"/> + <path d="M358.58 203.312l.57-.9.563.817-1.133.082" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M359.953 203.27l.67-.9.72.81-1.39.09"/> + <path d="M359.953 203.27l.67-.9.72.81-1.39.09" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M359.335 197.71l1.39.5-1.245.63-.145-1.13"/> + <path d="M359.335 197.71l1.39.5-1.245.63-.145-1.13" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M361.01 198.162l1.244.314-1.002.77-.242-1.084"/> + <path d="M361.01 198.162l1.244.314-1.002.77-.242-1.084" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M351.686 208.806s-1.362.397-1.865 1.13c-.62.906-.575 1.814-.575 1.814s1.15-.95 2.633-.547c1.486.41 1.624.547 2.253.505.623-.048 2.153-.595 2.153-.595s-1.244 1.448-1.104 2.452c.144.992.328 1.442.29 1.948-.104 1.225-1.01 2.72-1.01 2.72s.528-.323 1.772-.594c1.237-.272 2.297-.866 2.963-1.36.667-.503 1.53-1.723 1.53-1.723s-.28 1.676 0 2.402c.285.727.38 2.813.38 2.813s.8-.71 1.434-1.046c.334-.186 1.198-.638 1.536-1.178.233-.386.526-1.804.526-1.804s.19 1.527.665 2.267c.484.714 1.193 2.944 1.193 2.944s.484-1.448 1.01-2.043c.52-.59 1.15-1.358 1.193-1.815.045-.452-.14-1.444-.14-1.444l.667 1.443m-19.323 1.04s.813-1.402 1.58-1.86c.77-.455 1.822-1.266 2.106-1.357.28-.09 1.53-.775 1.53-.775m1.676 8.75s1.84-.944 2.39-1.274c1.15-.673 1.96-1.9 1.96-1.9" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M338.227 220.63s-.715-.764-1.96-.542c-1.243.228-2.056 1.636-2.056 1.636s1.054-.278 1.678-.14c.62.14 1.053.77 1.053.77s.572-.5.762-.77c.19-.27.52-.954.52-.954"/> + <path d="M338.227 220.63s-.715-.764-1.96-.542c-1.243.228-2.056 1.636-2.056 1.636s1.054-.278 1.678-.14c.62.14 1.053.77 1.053.77s.572-.5.762-.77c.19-.27.52-.954.52-.954h.006z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M336.8 225.656s-1.054-.18-1.96.547c-.91.728-.96 2.128-.96 2.128s.864-.726 1.537-.63c.666.084 1.477.45 1.477.45s.147-.865.19-1.087c.148-.632-.285-1.407-.285-1.407"/> + <path d="M336.8 225.656s-1.054-.18-1.96.547c-.91.728-.96 2.128-.96 2.128s.864-.726 1.537-.63c.666.084 1.477.45 1.477.45s.147-.865.19-1.087c.148-.632-.285-1.407-.285-1.407z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M339.244 230.284s-.07 1.346.57 2.17c.673.865 1.918.998 1.918.998s-.42-.902-.483-1.36c-.096-.678.57-1.268.57-1.268s-.615-.63-1.237-.63c-.624 0-1.34.09-1.34.09"/> + <path d="M339.244 230.284s-.07 1.346.57 2.17c.673.865 1.918.998 1.918.998s-.42-.902-.483-1.36c-.096-.678.57-1.268.57-1.268s-.615-.63-1.237-.63c-.624 0-1.34.09-1.34.09zM367.465 232.536s3.445 2.134 3.35 3.9c-.102 1.768-1.917 4.08-1.917 4.08" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M351.686 242.204s-.86-1.087-2.054-1.044c-1.2.047-2.445 1.17-2.445 1.17s1.488-.126 1.866.367c.388.506.768 1.13.768 1.13s.67-.355.96-.583c.287-.222.906-1.04.906-1.04"/> + <path d="M351.686 242.204s-.86-1.087-2.054-1.044c-1.2.047-2.445 1.17-2.445 1.17s1.488-.126 1.866.367c.388.506.768 1.13.768 1.13s.67-.355.96-.583c.287-.222.906-1.04.906-1.04z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M347.99 246.956s-1.57-.228-2.34.588c-.768.813-.717 2.31-.717 2.31s.96-1.04 1.814-.952c.864.09 1.822.547 1.822.547s-.147-.908-.243-1.317c-.095-.41-.336-1.177-.336-1.177"/> + <path d="M347.99 246.956s-1.57-.228-2.34.588c-.768.813-.717 2.31-.717 2.31s.96-1.04 1.814-.952c.864.09 1.822.547 1.822.547s-.147-.908-.243-1.317c-.095-.41-.336-1.177-.336-1.177z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M351.397 251.982s-.768 1.087-.19 1.946c.57.866 1.765 1.275 1.765 1.275s-.426-.63-.235-1.365c.15-.576 1.148-1.358 1.148-1.358l-2.488-.493"/> + <path d="M351.397 251.982s-.768 1.087-.19 1.946c.57.866 1.765 1.275 1.765 1.275s-.426-.63-.235-1.365c.15-.576 1.148-1.358 1.148-1.358l-2.488-.493v-.005z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M372.395 254.028s-1.382-.325-2.15.13c-.762.453-1.384 2.358-1.384 2.358s1.245-1.04 2.153-.913c.906.143 1.58.504 1.58.504s.138-.775.042-1.31c-.056-.324-.24-.77-.24-.77"/> + <path d="M372.395 254.028s-1.382-.325-2.15.13c-.762.453-1.384 2.358-1.384 2.358s1.245-1.04 2.153-.913c.906.143 1.58.504 1.58.504s.138-.775.042-1.31c-.056-.324-.24-.77-.24-.77z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M373.068 259.096s-1.053 1.087-.673 1.994c.387.908 1.053 1.857 1.053 1.857s-.038-1.35.388-1.718c.616-.543 1.764-.638 1.764-.638s-.908-.81-1.2-.902c-.28-.097-1.332-.594-1.332-.594"/> + <path d="M373.068 259.096s-1.053 1.087-.673 1.994c.387.908 1.053 1.857 1.053 1.857s-.038-1.35.388-1.718c.616-.543 1.764-.638 1.764-.638s-.908-.81-1.2-.902c-.28-.097-1.332-.594-1.332-.594z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#db4446" d="M378.328 260.69s-.527 1.31.482 2.168c1.002.866 1.866.956 1.866.956s-.77-1.365-.527-2.086c.246-.75.906-1.22.906-1.22s-1.244-.414-1.435-.366c-.188.042-1.292.547-1.292.547"/> + <path d="M378.328 260.69s-.527 1.31.482 2.168c1.002.866 1.866.956 1.866.956s-.77-1.365-.527-2.086c.246-.75.906-1.22.906-1.22s-1.244-.414-1.435-.366c-.188.042-1.292.547-1.292.547z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fdeaab" d="M324.44 354.623c3.54 1.065 5.335 3.703 5.335 6.79 0 4.022-3.9 7.074-8.965 7.074-5.063 0-9.17-3.052-9.17-7.074 0-3.04 1.69-6.436 5.21-6.68 0 0-.108-.32-.41-.843-.366-.39-1.087-1.118-1.087-1.118s1.345-.252 2.12.042c.78.295 1.293.788 1.293.788s.368-.72.883-1.28c.52-.554 1.192-.9 1.192-.9s.78.653 1.034 1.09c.254.452.42.988.42.988s.715-.59 1.337-.83c.62-.246 1.42-.438 1.42-.438s-.227.775-.38 1.17c-.152.392-.234 1.22-.234 1.22"/> + <path d="M324.44 354.623c3.54 1.065 5.335 3.703 5.335 6.79 0 4.022-3.9 7.074-8.965 7.074-5.063 0-9.17-3.052-9.17-7.074 0-3.04 1.69-6.436 5.21-6.68 0 0-.108-.32-.41-.843-.366-.39-1.087-1.118-1.087-1.118s1.345-.252 2.12.042c.78.295 1.293.788 1.293.788s.368-.72.883-1.28c.52-.554 1.192-.9 1.192-.9s.78.653 1.034 1.09c.254.452.42.988.42.988s.715-.59 1.337-.83c.62-.246 1.42-.438 1.42-.438s-.227.775-.38 1.17c-.152.392-.234 1.22-.234 1.22z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#05906f" d="M320.06 372.86s-6.734-4.538-9.653-5.15c-3.732-.79-7.926-.15-9.74-.247.05.053 2.175 1.568 3.107 2.505.934.932 4.044 2.795 5.8 3.235 5.464 1.37 10.485-.343 10.485-.343"/> + <path d="M320.06 372.86s-6.734-4.538-9.653-5.15c-3.732-.79-7.926-.15-9.74-.247.05.053 2.175 1.568 3.107 2.505.934.932 4.044 2.795 5.8 3.235 5.464 1.37 10.485-.343 10.485-.343z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#05906f" d="M321.98 373.258s4.314-4.483 8.828-5.102c5.336-.74 8.827.44 10.9.98.047 0-1.713.835-2.643 1.472-.936.638-3.34 2.65-7.013 2.693-3.68.055-7.74-.384-8.415-.282-.673.09-1.656.24-1.656.24"/> + <path d="M321.98 373.258s4.314-4.483 8.828-5.102c5.336-.74 8.827.44 10.9.98.047 0-1.713.835-2.643 1.472-.936.638-3.34 2.65-7.013 2.693-3.68.055-7.74-.384-8.415-.282-.673.09-1.656.24-1.656.24z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#c00" d="M320.69 367.71c-1.695-1.575-2.75-3.81-2.75-6.29 0-2.477 1.06-4.713 2.755-6.28 1.69 1.567 2.735 3.803 2.735 6.28 0 2.48-1.053 4.715-2.74 6.29"/> + <path d="M320.69 367.71c-1.695-1.575-2.75-3.81-2.75-6.29 0-2.477 1.06-4.713 2.755-6.28 1.69 1.567 2.735 3.803 2.735 6.28 0 2.48-1.053 4.715-2.74 6.29z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#05906f" d="M318.974 376.897s1.04-2.57 1.14-4.783c.09-1.85-.26-3.677-.26-3.677h1.347s.674 1.965.674 3.677c0 1.718-.312 4.003-.312 4.003s-.932.143-1.242.288c-.305.15-1.346.493-1.346.493"/> + <path d="M318.974 376.897s1.04-2.57 1.14-4.783c.09-1.85-.26-3.677-.26-3.677h1.347s.674 1.965.674 3.677c0 1.718-.312 4.003-.312 4.003s-.932.143-1.242.288c-.305.15-1.346.493-1.346.493z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#fff" d="M404.146 133.137c0-.975.83-1.75 1.854-1.75 1.027 0 1.852.775 1.852 1.75 0 .973-.825 1.753-1.852 1.753-1.023 0-1.854-.78-1.854-1.753"/> + <path d="M404.146 133.137c0-.975.83-1.75 1.854-1.75 1.027 0 1.852.775 1.852 1.75 0 .973-.825 1.753-1.852 1.753-1.023 0-1.854-.78-1.854-1.753z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M406.686 128.632c0-.968.827-1.75 1.854-1.75 1.02 0 1.853.782 1.853 1.75 0 .98-.832 1.76-1.853 1.76-1.027 0-1.854-.78-1.854-1.76"/> + <path d="M406.686 128.632c0-.968.827-1.75 1.854-1.75 1.02 0 1.853.782 1.853 1.75 0 .98-.832 1.76-1.853 1.76-1.027 0-1.854-.78-1.854-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M408.375 123.428c0-.968.834-1.756 1.863-1.756 1.02 0 1.852.788 1.852 1.756 0 .973-.83 1.76-1.852 1.76-1.03 0-1.863-.787-1.863-1.76"/> + <path d="M408.375 123.428c0-.968.834-1.756 1.863-1.756 1.02 0 1.852.788 1.852 1.756 0 .973-.83 1.76-1.852 1.76-1.03 0-1.863-.787-1.863-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M408.595 117.852c0-.973.83-1.754 1.85-1.754 1.023 0 1.855.78 1.855 1.754 0 .975-.832 1.755-1.854 1.755-1.02 0-1.85-.78-1.85-1.755"/> + <path d="M408.595 117.852c0-.973.83-1.754 1.85-1.754 1.023 0 1.855.78 1.855 1.754 0 .975-.832 1.755-1.854 1.755-1.02 0-1.85-.78-1.85-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M407.208 112.345c0-.968.832-1.75 1.85-1.75 1.03 0 1.862.782 1.862 1.75 0 .978-.832 1.76-1.86 1.76-1.02 0-1.852-.782-1.852-1.76"/> + <path d="M407.208 112.345c0-.968.832-1.75 1.85-1.75 1.03 0 1.862.782 1.862 1.75 0 .978-.832 1.76-1.86 1.76-1.02 0-1.852-.782-1.852-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M404.352 107.36c0-.973.83-1.754 1.854-1.754 1.027 0 1.856.78 1.856 1.754 0 .975-.83 1.762-1.856 1.762-1.023 0-1.854-.787-1.854-1.762"/> + <path d="M404.352 107.36c0-.973.83-1.754 1.854-1.754 1.027 0 1.856.78 1.856 1.754 0 .975-.83 1.762-1.856 1.762-1.023 0-1.854-.787-1.854-1.762z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M400.548 103.267c0-.973.83-1.76 1.852-1.76 1.03 0 1.86.787 1.86 1.76 0 .968-.83 1.756-1.86 1.756-1.023 0-1.852-.788-1.852-1.756"/> + <path d="M400.548 103.267c0-.973.83-1.76 1.852-1.76 1.03 0 1.86.787 1.86 1.76 0 .968-.83 1.756-1.86 1.756-1.023 0-1.852-.788-1.852-1.756z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M396.126 99.862c0-.975.83-1.762 1.86-1.762 1.02 0 1.853.787 1.853 1.762 0 .966-.833 1.753-1.854 1.753-1.03 0-1.86-.787-1.86-1.753"/> + <path d="M396.126 99.862c0-.975.83-1.762 1.86-1.762 1.02 0 1.853.787 1.853 1.762 0 .966-.833 1.753-1.854 1.753-1.03 0-1.86-.787-1.86-1.753z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M390.838 97.074c0-.973.83-1.748 1.853-1.748 1.028 0 1.86.775 1.86 1.748 0 .975-.832 1.762-1.86 1.762-1.022 0-1.852-.787-1.852-1.762"/> + <path d="M390.838 97.074c0-.973.83-1.748 1.853-1.748 1.028 0 1.86.775 1.86 1.748 0 .975-.832 1.762-1.86 1.762-1.022 0-1.852-.787-1.852-1.762z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M385.36 95.083c0-.968.83-1.756 1.858-1.756 1.02 0 1.854.788 1.854 1.756 0 .973-.833 1.76-1.854 1.76-1.027 0-1.86-.787-1.86-1.76"/> + <path d="M385.36 95.083c0-.968.83-1.756 1.858-1.756 1.02 0 1.854.788 1.854 1.756 0 .973-.833 1.76-1.854 1.76-1.027 0-1.86-.787-1.86-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M379.234 93.984c0-.968.83-1.76 1.852-1.76 1.03 0 1.858.792 1.858 1.76s-.828 1.755-1.858 1.755c-1.022 0-1.852-.788-1.852-1.756"/> + <path d="M379.234 93.984c0-.968.83-1.76 1.852-1.76 1.03 0 1.858.792 1.858 1.76s-.828 1.755-1.858 1.755c-1.022 0-1.852-.788-1.852-1.756z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M373.41 93.682c0-.968.833-1.75 1.86-1.75 1.023 0 1.854.782 1.854 1.75 0 .975-.83 1.762-1.854 1.762-1.027 0-1.86-.788-1.86-1.762"/> + <path d="M373.41 93.682c0-.968.833-1.75 1.86-1.75 1.023 0 1.854.782 1.854 1.75 0 .975-.83 1.762-1.854 1.762-1.027 0-1.86-.788-1.86-1.762z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M367.698 93.874c0-.968.834-1.755 1.86-1.755 1.03 0 1.854.786 1.854 1.754 0 .973-.825 1.76-1.855 1.76-1.025 0-1.86-.787-1.86-1.76"/> + <path d="M367.698 93.874c0-.968.834-1.755 1.86-1.755 1.03 0 1.854.786 1.854 1.754 0 .973-.825 1.76-1.855 1.76-1.025 0-1.86-.787-1.86-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M362 93.874c0-.968.83-1.755 1.85-1.755 1.022 0 1.854.786 1.854 1.754 0 .973-.832 1.76-1.853 1.76-1.02 0-1.85-.787-1.85-1.76"/> + <path d="M362 93.874c0-.968.83-1.755 1.85-1.755 1.022 0 1.854.786 1.854 1.754 0 .973-.832 1.76-1.853 1.76-1.02 0-1.85-.787-1.85-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M364.856 98.777c0-.973.83-1.76 1.852-1.76 1.027 0 1.852.787 1.852 1.76 0 .968-.825 1.76-1.852 1.76-1.02 0-1.852-.792-1.852-1.76"/> + <path d="M364.856 98.777c0-.973.83-1.76 1.852-1.76 1.027 0 1.852.787 1.852 1.76 0 .968-.825 1.76-1.852 1.76-1.02 0-1.852-.792-1.852-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M366.01 104.188c0-.973.83-1.762 1.853-1.762 1.028 0 1.86.79 1.86 1.762 0 .96-.832 1.748-1.86 1.748-1.022 0-1.854-.787-1.854-1.748"/> + <path d="M366.01 104.188c0-.973.83-1.762 1.853-1.762 1.028 0 1.86.79 1.86 1.762 0 .96-.832 1.748-1.86 1.748-1.022 0-1.854-.787-1.854-1.748z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M366.215 109.57c0-.98.832-1.76 1.86-1.76 1.022 0 1.85.78 1.85 1.76 0 .97-.828 1.756-1.85 1.756-1.028 0-1.86-.787-1.86-1.755"/> + <path d="M366.215 109.57c0-.98.832-1.76 1.86-1.76 1.022 0 1.85.78 1.85 1.76 0 .97-.828 1.756-1.85 1.756-1.028 0-1.86-.787-1.86-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M364.526 114.474c0-.968.832-1.76 1.852-1.76 1.03 0 1.854.792 1.854 1.76 0 .973-.825 1.755-1.854 1.755-1.02 0-1.852-.783-1.852-1.756"/> + <path d="M364.526 114.474c0-.968.832-1.76 1.852-1.76 1.03 0 1.854.792 1.854 1.76 0 .973-.825 1.755-1.854 1.755-1.02 0-1.852-.783-1.852-1.756z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M361.38 118.992c0-.968.834-1.76 1.855-1.76 1.026 0 1.853.792 1.853 1.76s-.827 1.755-1.853 1.755c-1.02 0-1.854-.787-1.854-1.755"/> + <path d="M361.38 118.992c0-.968.834-1.76 1.855-1.76 1.026 0 1.853.792 1.853 1.76s-.827 1.755-1.853 1.755c-1.02 0-1.854-.787-1.854-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M357.673 90.482c0-.968.832-1.75 1.86-1.75 1.022 0 1.852.782 1.852 1.75 0 .973-.83 1.76-1.853 1.76-1.027 0-1.86-.787-1.86-1.76"/> + <path d="M357.673 90.482c0-.968.832-1.75 1.86-1.75 1.022 0 1.852.782 1.852 1.75 0 .973-.83 1.76-1.853 1.76-1.027 0-1.86-.787-1.86-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M352.606 87.68c0-.967.826-1.76 1.854-1.76 1.022 0 1.85.793 1.85 1.76 0 .968-.828 1.756-1.85 1.756-1.028 0-1.854-.788-1.854-1.755"/> + <path d="M352.606 87.68c0-.967.826-1.76 1.854-1.76 1.022 0 1.85.793 1.85 1.76 0 .968-.828 1.756-1.85 1.756-1.028 0-1.854-.788-1.854-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M347.016 85.99c0-.967.832-1.747 1.858-1.747 1.022 0 1.854.78 1.854 1.748 0 .974-.832 1.763-1.854 1.763-1.026 0-1.858-.79-1.858-1.762"/> + <path d="M347.016 85.99c0-.967.832-1.747 1.858-1.747 1.022 0 1.854.78 1.854 1.748 0 .974-.832 1.763-1.854 1.763-1.026 0-1.858-.79-1.858-1.762z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M341.194 84.99c0-.97.83-1.756 1.852-1.756 1.027 0 1.854.787 1.854 1.755 0 .965-.826 1.754-1.854 1.754-1.02 0-1.852-.79-1.852-1.755"/> + <path d="M341.194 84.99c0-.97.83-1.756 1.852-1.756 1.027 0 1.854.787 1.854 1.755 0 .965-.826 1.754-1.854 1.754-1.02 0-1.852-.79-1.852-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M335.508 85.085c0-.968.83-1.76 1.852-1.76 1.028 0 1.86.792 1.86 1.76 0 .975-.832 1.755-1.86 1.755-1.022 0-1.852-.78-1.852-1.755"/> + <path d="M335.508 85.085c0-.968.83-1.76 1.852-1.76 1.028 0 1.86.792 1.86 1.76 0 .975-.832 1.755-1.86 1.755-1.022 0-1.852-.78-1.852-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M329.59 86.087c0-.967.83-1.75 1.853-1.75 1.028 0 1.86.783 1.86 1.75 0 .98-.832 1.76-1.86 1.76-1.022 0-1.854-.78-1.854-1.76"/> + <path d="M329.59 86.087c0-.967.83-1.75 1.853-1.75 1.028 0 1.86.783 1.86 1.75 0 .98-.832 1.76-1.86 1.76-1.022 0-1.854-.78-1.854-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M324.11 87.983c0-.975.83-1.762 1.852-1.762 1.028 0 1.86.788 1.86 1.763 0 .966-.832 1.76-1.86 1.76-1.02 0-1.852-.794-1.852-1.76"/> + <path d="M324.11 87.983c0-.975.83-1.762 1.852-1.762 1.028 0 1.86.788 1.86 1.763 0 .966-.832 1.76-1.86 1.76-1.02 0-1.852-.794-1.852-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M231.247 133.137c0-.975.832-1.75 1.853-1.75 1.03 0 1.854.775 1.854 1.75 0 .973-.825 1.753-1.854 1.753-1.02 0-1.853-.78-1.853-1.753"/> + <path d="M231.247 133.137c0-.975.832-1.75 1.853-1.75 1.03 0 1.854.775 1.854 1.75 0 .973-.825 1.753-1.854 1.753-1.02 0-1.853-.78-1.853-1.753z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M228.707 128.632c0-.968.83-1.75 1.854-1.75 1.028 0 1.86.782 1.86 1.75 0 .98-.832 1.76-1.86 1.76-1.022 0-1.853-.78-1.853-1.76"/> + <path d="M228.707 128.632c0-.968.83-1.75 1.854-1.75 1.028 0 1.86.782 1.86 1.75 0 .98-.832 1.76-1.86 1.76-1.022 0-1.853-.78-1.853-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M227.017 123.428c0-.968.832-1.756 1.86-1.756 1.022 0 1.854.788 1.854 1.756 0 .973-.83 1.76-1.853 1.76-1.028 0-1.86-.787-1.86-1.76"/> + <path d="M227.017 123.428c0-.968.832-1.756 1.86-1.756 1.022 0 1.854.788 1.854 1.756 0 .973-.83 1.76-1.853 1.76-1.028 0-1.86-.787-1.86-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M226.798 117.852c0-.973.83-1.754 1.854-1.754 1.027 0 1.86.78 1.86 1.754 0 .975-.833 1.755-1.86 1.755-1.023 0-1.854-.78-1.854-1.755"/> + <path d="M226.798 117.852c0-.973.83-1.754 1.854-1.754 1.027 0 1.86.78 1.86 1.754 0 .975-.833 1.755-1.86 1.755-1.023 0-1.854-.78-1.854-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M228.185 112.345c0-.968.83-1.75 1.852-1.75 1.023 0 1.854.782 1.854 1.75 0 .978-.83 1.76-1.853 1.76-1.02 0-1.852-.782-1.852-1.76"/> + <path d="M228.185 112.345c0-.968.83-1.75 1.852-1.75 1.023 0 1.854.782 1.854 1.75 0 .978-.83 1.76-1.853 1.76-1.02 0-1.852-.782-1.852-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M231.027 107.36c0-.973.832-1.754 1.86-1.754 1.022 0 1.854.78 1.854 1.754 0 .975-.83 1.762-1.852 1.762-1.03 0-1.86-.787-1.86-1.762"/> + <path d="M231.027 107.36c0-.973.832-1.754 1.86-1.754 1.022 0 1.854.78 1.854 1.754 0 .975-.83 1.762-1.852 1.762-1.03 0-1.86-.787-1.86-1.762z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M234.845 103.267c0-.973.832-1.76 1.86-1.76 1.02 0 1.852.787 1.852 1.76 0 .968-.832 1.756-1.853 1.756-1.027 0-1.86-.788-1.86-1.756"/> + <path d="M234.845 103.267c0-.973.832-1.76 1.86-1.76 1.02 0 1.852.787 1.852 1.76 0 .968-.832 1.756-1.853 1.756-1.027 0-1.86-.788-1.86-1.756z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M239.267 99.862c0-.975.832-1.762 1.86-1.762 1.022 0 1.854.787 1.854 1.762 0 .966-.83 1.753-1.854 1.753-1.027 0-1.86-.787-1.86-1.753"/> + <path d="M239.267 99.862c0-.975.832-1.762 1.86-1.762 1.022 0 1.854.787 1.854 1.762 0 .966-.83 1.753-1.854 1.753-1.027 0-1.86-.787-1.86-1.753z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M244.54 97.074c0-.973.832-1.748 1.86-1.748 1.022 0 1.854.775 1.854 1.748 0 .975-.832 1.762-1.854 1.762-1.028 0-1.86-.787-1.86-1.762"/> + <path d="M244.54 97.074c0-.973.832-1.748 1.86-1.748 1.022 0 1.854.775 1.854 1.748 0 .975-.832 1.762-1.854 1.762-1.028 0-1.86-.787-1.86-1.762z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M250.034 95.083c0-.968.83-1.756 1.852-1.756 1.028 0 1.86.788 1.86 1.756 0 .973-.832 1.76-1.86 1.76-1.022 0-1.852-.787-1.852-1.76"/> + <path d="M250.034 95.083c0-.968.83-1.756 1.852-1.756 1.028 0 1.86.788 1.86 1.756 0 .973-.832 1.76-1.86 1.76-1.022 0-1.852-.787-1.852-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M256.173 93.984c0-.968.83-1.76 1.852-1.76 1.02 0 1.852.792 1.852 1.76s-.83 1.755-1.852 1.755c-1.023 0-1.852-.788-1.852-1.756"/> + <path d="M256.173 93.984c0-.968.83-1.76 1.852-1.76 1.02 0 1.852.792 1.852 1.76s-.83 1.755-1.852 1.755c-1.023 0-1.852-.788-1.852-1.756z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M261.982 93.682c0-.968.83-1.75 1.86-1.75 1.02 0 1.85.782 1.85 1.75 0 .975-.83 1.762-1.85 1.762-1.03 0-1.86-.788-1.86-1.762"/> + <path d="M261.982 93.682c0-.968.83-1.75 1.86-1.75 1.02 0 1.85.782 1.85 1.75 0 .975-.83 1.762-1.85 1.762-1.03 0-1.86-.788-1.86-1.762z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M267.695 93.874c0-.968.833-1.755 1.854-1.755 1.028 0 1.858.786 1.858 1.754 0 .973-.83 1.76-1.86 1.76-1.02 0-1.853-.787-1.853-1.76"/> + <path d="M267.695 93.874c0-.968.833-1.755 1.854-1.755 1.028 0 1.858.786 1.858 1.754 0 .973-.83 1.76-1.86 1.76-1.02 0-1.853-.787-1.853-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M273.394 93.874c0-.968.83-1.755 1.854-1.755 1.027 0 1.86.786 1.86 1.754 0 .973-.833 1.76-1.86 1.76-1.023 0-1.854-.787-1.854-1.76"/> + <path d="M273.394 93.874c0-.968.83-1.755 1.854-1.755 1.027 0 1.86.786 1.86 1.754 0 .973-.833 1.76-1.86 1.76-1.023 0-1.854-.787-1.854-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M270.55 98.777c0-.973.83-1.76 1.853-1.76 1.028 0 1.86.787 1.86 1.76 0 .968-.832 1.76-1.86 1.76-1.022 0-1.852-.792-1.852-1.76"/> + <path d="M270.55 98.777c0-.973.83-1.76 1.853-1.76 1.028 0 1.86.787 1.86 1.76 0 .968-.832 1.76-1.86 1.76-1.022 0-1.852-.792-1.852-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M269.384 104.188c0-.973.825-1.762 1.854-1.762 1.02 0 1.852.79 1.852 1.762 0 .96-.83 1.748-1.852 1.748-1.03 0-1.854-.787-1.854-1.748"/> + <path d="M269.384 104.188c0-.973.825-1.762 1.854-1.762 1.02 0 1.852.79 1.852 1.762 0 .96-.83 1.748-1.852 1.748-1.03 0-1.854-.787-1.854-1.748z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M269.164 109.57c0-.98.832-1.76 1.86-1.76 1.02 0 1.852.78 1.852 1.76 0 .97-.832 1.756-1.853 1.756-1.027 0-1.86-.787-1.86-1.755"/> + <path d="M269.164 109.57c0-.98.832-1.76 1.86-1.76 1.02 0 1.852.78 1.852 1.76 0 .97-.832 1.756-1.853 1.756-1.027 0-1.86-.787-1.86-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M270.867 114.474c0-.968.832-1.76 1.852-1.76 1.028 0 1.858.792 1.858 1.76 0 .973-.83 1.755-1.86 1.755-1.02 0-1.85-.783-1.85-1.756"/> + <path d="M270.867 114.474c0-.968.832-1.76 1.852-1.76 1.028 0 1.858.792 1.858 1.76 0 .973-.83 1.755-1.86 1.755-1.02 0-1.85-.783-1.85-1.756z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M274.012 118.992c0-.968.833-1.76 1.852-1.76 1.03 0 1.86.792 1.86 1.76s-.83 1.755-1.86 1.755c-1.02 0-1.852-.787-1.852-1.755"/> + <path d="M274.012 118.992c0-.968.833-1.76 1.852-1.76 1.03 0 1.86.792 1.86 1.76s-.83 1.755-1.86 1.755c-1.02 0-1.852-.787-1.852-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M277.72 90.482c0-.968.83-1.75 1.852-1.75 1.028 0 1.86.782 1.86 1.75 0 .973-.832 1.76-1.86 1.76-1.02 0-1.852-.787-1.852-1.76"/> + <path d="M277.72 90.482c0-.968.83-1.75 1.852-1.75 1.028 0 1.86.782 1.86 1.75 0 .973-.832 1.76-1.86 1.76-1.02 0-1.852-.787-1.852-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M282.787 87.68c0-.967.832-1.76 1.852-1.76 1.027 0 1.86.793 1.86 1.76 0 .968-.833 1.756-1.86 1.756-1.02 0-1.853-.788-1.853-1.755"/> + <path d="M282.787 87.68c0-.967.832-1.76 1.852-1.76 1.027 0 1.86.793 1.86 1.76 0 .968-.833 1.756-1.86 1.756-1.02 0-1.853-.788-1.853-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M288.376 85.99c0-.967.834-1.747 1.86-1.747 1.022 0 1.854.78 1.854 1.748 0 .974-.832 1.763-1.854 1.763-1.026 0-1.86-.79-1.86-1.762"/> + <path d="M288.376 85.99c0-.967.834-1.747 1.86-1.747 1.022 0 1.854.78 1.854 1.748 0 .974-.832 1.763-1.854 1.763-1.026 0-1.86-.79-1.86-1.762z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M294.2 84.99c0-.97.833-1.756 1.853-1.756 1.03 0 1.86.787 1.86 1.755 0 .965-.83 1.754-1.86 1.754-1.02 0-1.854-.79-1.854-1.755"/> + <path d="M294.2 84.99c0-.97.833-1.756 1.853-1.756 1.03 0 1.86.787 1.86 1.755 0 .965-.83 1.754-1.86 1.754-1.02 0-1.854-.79-1.854-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M299.885 85.085c0-.968.823-1.76 1.852-1.76 1.02 0 1.852.792 1.852 1.76 0 .975-.832 1.755-1.853 1.755-1.03 0-1.852-.78-1.852-1.755"/> + <path d="M299.885 85.085c0-.968.823-1.76 1.852-1.76 1.02 0 1.852.792 1.852 1.76 0 .975-.832 1.755-1.853 1.755-1.03 0-1.852-.78-1.852-1.755z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M305.804 86.087c0-.967.83-1.75 1.852-1.75 1.03 0 1.854.783 1.854 1.75 0 .98-.825 1.76-1.854 1.76-1.02 0-1.852-.78-1.852-1.76"/> + <path d="M305.804 86.087c0-.967.83-1.75 1.852-1.75 1.03 0 1.854.783 1.854 1.75 0 .98-.825 1.76-1.854 1.76-1.02 0-1.852-.78-1.852-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#fff" d="M311.283 87.983c0-.975.83-1.762 1.858-1.762 1.023 0 1.855.788 1.855 1.763 0 .966-.832 1.76-1.854 1.76-1.027 0-1.857-.794-1.857-1.76"/> + <path d="M311.283 87.983c0-.975.83-1.762 1.858-1.762 1.023 0 1.855.788 1.855 1.763 0 .966-.832 1.76-1.854 1.76-1.027 0-1.857-.794-1.857-1.76z" stroke="#000" stroke-width=".6605573" fill="none"/> + <path fill="#c8b000" d="M301.74 259.782h-48.006v-12.068h6.86v-24.7h-3.186V212h5.26v-7.768h-2.32v-5.566h2.2v1.617h2.327v-1.616h2.566v1.617h2.33v-1.616h2.202v5.566h-2.45v7.768h4.778v-16.585h-2.817v-6.382h2.088v1.63h2.564v-1.63h3.433v1.63h2.698v-1.63h2.08v6.383h-3.184v16.585h4.65v-7.768h-2.32v-5.566h2.074v1.617h2.442v-1.616h2.578v1.617h2.328v-1.616h2.2v5.566h-2.447v7.768h5.635v11.017h-3.307v24.7h6.734v12.067"/> + <path d="M301.74 259.782h-48.006v-12.068h6.86v-24.7h-3.186V212h5.26v-7.768h-2.32v-5.566h2.2v1.617h2.327v-1.616h2.566v1.617h2.33v-1.616h2.202v5.566h-2.45v7.768h4.778v-16.585h-2.817v-6.382h2.088v1.63h2.564v-1.63h3.433v1.63h2.698v-1.63h2.08v6.383h-3.184v16.585h4.65v-7.768h-2.32v-5.566h2.074v1.617h2.442v-1.616h2.578v1.617h2.328v-1.616h2.2v5.566h-2.447v7.768h5.635v11.017h-3.307v24.7h6.734v12.067h.013z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#0076bc" d="M265.415 231.218c0-1.16.906-2.093 2.074-2.093 1.166 0 2.112.932 2.112 2.093v4.807h-4.187v-4.807"/> + <path d="M265.415 231.218c0-1.16.906-2.093 2.074-2.093 1.166 0 2.112.932 2.112 2.093v4.807h-4.187v-4.807z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#0076bc" d="M286.014 231.218c0-1.16.904-2.093 2.07-2.093 1.175 0 2.12.932 2.12 2.093v4.807h-4.195l.005-4.807"/> + <path d="M286.014 231.218c0-1.16.904-2.093 2.07-2.093 1.175 0 2.12.932 2.12 2.093v4.807h-4.195l.005-4.807z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#0076bc" d="M273.23 252.325c0-2.416 1.972-4.37 4.518-4.37 2.548 0 4.613 1.954 4.613 4.37v7.464h-9.138l.007-7.465"/> + <path d="M273.23 252.325c0-2.416 1.972-4.37 4.518-4.37 2.548 0 4.613 1.954 4.613 4.37v7.464h-9.138l.007-7.465z" stroke="#000" stroke-width=".8775387" fill="none"/> + <path fill="#c00" d="M292.73 272.472c0-17.098 12.317-30.956 27.508-30.956 15.197 0 27.514 13.86 27.514 30.956 0 17.097-12.317 30.955-27.514 30.955-15.19 0-27.508-13.86-27.508-30.955"/> + <path d="M292.73 272.472c0-17.098 12.317-30.956 27.508-30.956 15.197 0 27.514 13.86 27.514 30.956 0 17.097-12.317 30.955-27.514 30.955-15.19 0-27.508-13.86-27.508-30.955z" stroke="#000" stroke-width="1.0244818" fill="none"/> + <path fill="#0076bc" d="M300.9 272.417c0-12.537 8.663-22.698 19.36-22.698 10.692 0 19.356 10.16 19.356 22.697 0 12.542-8.664 22.71-19.356 22.71-10.698 0-19.36-10.168-19.36-22.71"/> + <path d="M300.9 272.417c0-12.537 8.663-22.698 19.36-22.698 10.692 0 19.356 10.16 19.356 22.697 0 12.542-8.664 22.71-19.356 22.71-10.698 0-19.36-10.168-19.36-22.71z" stroke="#000" stroke-width="1.0244818" fill="none"/> + <path fill="#c8b100" d="M311.118 256.79s-2.298 2.517-2.298 4.848c0 2.345.97 4.29.97 4.29-.347-.924-1.286-1.59-2.39-1.59-1.396 0-2.532 1.07-2.532 2.397 0 .385.235.985.412 1.316l.825 1.666c.273-.614.915-.956 1.663-.956 1 0 1.815.763 1.815 1.714 0 .143-.02.288-.056.42l-2.064.006v1.755h1.84l-1.37 2.717 1.815-.71 1.37 1.545 1.422-1.544 1.81.71-1.366-2.718h1.84V270.9l-2.068-.007c-.037-.13-.044-.276-.044-.42 0-.95.8-1.713 1.8-1.713.75 0 1.39.342 1.67.956l.817-1.665c.178-.33.413-.93.413-1.315 0-1.327-1.13-2.397-2.532-2.397-1.103 0-2.035.666-2.385 1.59 0 0 .965-1.945.965-4.29 0-2.33-2.347-4.85-2.347-4.85"/> + <path stroke-linejoin="round" d="M311.118 256.79s-2.298 2.517-2.298 4.848c0 2.345.97 4.29.97 4.29-.347-.924-1.286-1.59-2.39-1.59-1.396 0-2.532 1.07-2.532 2.397 0 .385.235.985.412 1.316l.825 1.666c.273-.614.915-.956 1.663-.956 1 0 1.815.763 1.815 1.714 0 .143-.02.288-.056.42l-2.064.006v1.755h1.84l-1.37 2.717 1.815-.71 1.37 1.545 1.422-1.544 1.81.71-1.366-2.718h1.84V270.9l-2.068-.007c-.037-.13-.044-.276-.044-.42 0-.95.8-1.713 1.8-1.713.75 0 1.39.342 1.67.956l.817-1.665c.178-.33.413-.93.413-1.315 0-1.327-1.13-2.397-2.532-2.397-1.103 0-2.035.666-2.385 1.59 0 0 .965-1.945.965-4.29 0-2.33-2.347-4.85-2.347-4.85h.006z" stroke="#000" stroke-width=".5740394" fill="none"/> + <path fill="#c8b100" d="M307.452 272.65h7.366v-1.755h-7.366v1.755z"/> + <path d="M307.452 272.65h7.366v-1.755h-7.366v1.755z" stroke="#000" stroke-width=".5740394" fill="none"/> + <path fill="#c8b100" d="M329.11 256.79s-2.3 2.517-2.3 4.848c0 2.345.966 4.29.966 4.29-.343-.924-1.282-1.59-2.386-1.59-1.402 0-2.532 1.07-2.532 2.397 0 .385.235.985.412 1.316l.818 1.666c.282-.614.922-.956 1.67-.956 1.002 0 1.808.763 1.808 1.714 0 .143-.012.288-.05.42l-2.063.006v1.755h1.84l-1.37 2.717 1.81-.71 1.376 1.545 1.415-1.544 1.815.71-1.372-2.718h1.84V270.9l-2.062-.007c-.04-.13-.05-.276-.05-.42 0-.95.805-1.713 1.81-1.713.747 0 1.388.342 1.66.956l.825-1.665c.18-.33.412-.93.412-1.315 0-1.327-1.133-2.397-2.53-2.397-1.103 0-2.046.666-2.392 1.59 0 0 .97-1.945.97-4.29 0-2.33-2.347-4.85-2.347-4.85"/> + <path stroke-linejoin="round" d="M329.11 256.79s-2.3 2.517-2.3 4.848c0 2.345.966 4.29.966 4.29-.343-.924-1.282-1.59-2.386-1.59-1.402 0-2.532 1.07-2.532 2.397 0 .385.235.985.412 1.316l.818 1.666c.282-.614.922-.956 1.67-.956 1.002 0 1.808.763 1.808 1.714 0 .143-.012.288-.05.42l-2.063.006v1.755h1.84l-1.37 2.717 1.81-.71 1.376 1.545 1.415-1.544 1.815.71-1.372-2.718h1.84V270.9l-2.062-.007c-.04-.13-.05-.276-.05-.42 0-.95.805-1.713 1.81-1.713.747 0 1.388.342 1.66.956l.825-1.665c.18-.33.412-.93.412-1.315 0-1.327-1.133-2.397-2.53-2.397-1.103 0-2.046.666-2.392 1.59 0 0 .97-1.945.97-4.29 0-2.33-2.347-4.85-2.347-4.85h.006z" stroke="#000" stroke-width=".5740394" fill="none"/> + <path fill="#c8b100" d="M325.442 272.65h7.36v-1.755h-7.36v1.755z"/> + <path d="M325.442 272.65h7.36v-1.755h-7.36v1.755z" stroke="#000" stroke-width=".5740394" fill="none"/> + <path fill="#c8b100" d="M320.1 272.266s-2.297 2.518-2.297 4.856.97 4.284.97 4.284c-.348-.925-1.282-1.59-2.392-1.59-1.394 0-2.53 1.07-2.53 2.396 0 .39.234.985.412 1.316l.824 1.665c.28-.614.914-.96 1.662-.96 1.003 0 1.816.767 1.816 1.718 0 .15-.018.294-.058.427l-2.062.006v1.755h1.848l-1.372 2.716 1.81-.714 1.37 1.544 1.42-1.544 1.816.714-1.377-2.716h1.844v-1.755l-2.062-.006c-.037-.133-.05-.276-.05-.426 0-.95.807-1.718 1.81-1.718.746 0 1.38.347 1.662.96l.825-1.664c.175-.33.41-.925.41-1.316 0-1.327-1.135-2.397-2.53-2.397-1.105 0-2.037.666-2.393 1.59 0 0 .97-1.945.97-4.283s-2.354-4.856-2.354-4.856"/> + <path stroke-linejoin="round" d="M320.1 272.266s-2.297 2.518-2.297 4.856.97 4.284.97 4.284c-.348-.925-1.282-1.59-2.392-1.59-1.394 0-2.53 1.07-2.53 2.396 0 .39.234.985.412 1.316l.824 1.665c.28-.614.914-.96 1.662-.96 1.003 0 1.816.767 1.816 1.718 0 .15-.018.294-.058.427l-2.062.006v1.755h1.848l-1.372 2.716 1.81-.714 1.37 1.544 1.42-1.544 1.816.714-1.377-2.716h1.844v-1.755l-2.062-.006c-.037-.133-.05-.276-.05-.426 0-.95.807-1.718 1.81-1.718.746 0 1.38.347 1.662.96l.825-1.664c.175-.33.41-.925.41-1.316 0-1.327-1.135-2.397-2.53-2.397-1.105 0-2.037.666-2.393 1.59 0 0 .97-1.945.97-4.283s-2.354-4.856-2.354-4.856h.007z" stroke="#000" stroke-width=".5740394" fill="none"/> + <path fill="#c8b100" d="M316.447 288.127h7.366v-1.755h-7.366v1.755z"/> + <path d="M316.447 288.127h7.366v-1.755h-7.366v1.755z" stroke="#000" stroke-width=".5740394" fill="none"/> + <path fill="#c8b100" d="M375.17 190.733l-.49.036c-.022.058-.242.408-.45.6-.433.414-1.085.462-1.453.114-.18-.18-.268-.433-.236-.692-.285.145-.583.145-.863-.012-.437-.252-.547-.854-.228-1.353.05-.095.1-.22.178-.293l-.032-.547-.592.138-.17.324c-.368.415-.913.522-1.186.277-.133-.115-.23-.433-.222-.445.006.012-.14.143-.293.18-.906.222-1.268-1.774-1.288-2.29l-.298.42s.267 1.196.133 2.206c-.133 1.01-.49 2.02-.49 2.02 1.265.323 3.157 1.35 5.033 2.8 1.88 1.436 3.357 2.998 3.967 4.092 0 0 .97-.54 1.992-.865 1.01-.33 2.297-.338 2.297-.338l.365-.36c-.538.08-2.675.17-2.632-.727.008-.143.116-.3.134-.3-.012.013-.354-.018-.508-.114-.31-.204-.304-.728.04-1.16l.297-.217.02-.577-.574.08c-.05.07-.182.154-.26.227-.45.39-1.097.42-1.453.053-.214-.21-.28-.493-.19-.787-.26.078-.532.054-.762-.08-.437-.263-.52-.882-.183-1.362.157-.235.47-.51.524-.54l-.12-.506"/> + <path d="M375.17 190.733l-.49.036c-.022.058-.242.408-.45.6-.433.414-1.085.462-1.453.114-.18-.18-.268-.433-.236-.692-.285.145-.583.145-.863-.012-.437-.252-.547-.854-.228-1.353.05-.095.1-.22.178-.293l-.032-.547-.592.138-.17.324c-.368.415-.913.522-1.186.277-.133-.115-.23-.433-.222-.445.006.012-.14.143-.293.18-.906.222-1.268-1.774-1.288-2.29l-.298.42s.267 1.196.133 2.206c-.133 1.01-.49 2.02-.49 2.02 1.265.323 3.157 1.35 5.033 2.8 1.88 1.436 3.357 2.998 3.967 4.092 0 0 .97-.54 1.992-.865 1.01-.33 2.297-.338 2.297-.338l.365-.36c-.538.08-2.675.17-2.632-.727.008-.143.116-.3.134-.3-.012.013-.354-.018-.508-.114-.31-.204-.304-.728.04-1.16l.297-.217.02-.577-.574.08c-.05.07-.182.154-.26.227-.45.39-1.097.42-1.453.053-.214-.21-.28-.493-.19-.787-.26.078-.532.054-.762-.08-.437-.263-.52-.882-.183-1.362.157-.235.47-.51.524-.54l-.12-.506-.01-.006z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M371.365 191.9c.084-.102.26-.097.394.006.132.102.17.266.087.36-.082.096-.254.096-.393-.01-.126-.097-.17-.26-.09-.356"/> + <path d="M371.365 191.9c.084-.102.26-.097.394.006.132.102.17.266.087.36-.082.096-.254.096-.393-.01-.126-.097-.17-.26-.09-.356z" stroke="#000" stroke-width=".0865179" fill="none"/> + <path d="M372.958 193.246l-.552-.426c-.1-.078-.133-.204-.068-.276.063-.066.196-.066.298.005l.55.432.566.428c.096.072.13.198.07.276-.07.067-.203.06-.305-.012l-.56-.428"/> + <path d="M372.958 193.246l-.552-.426c-.1-.078-.133-.204-.068-.276.063-.066.196-.066.298.005l.55.432.566.428c.096.072.13.198.07.276-.07.067-.203.06-.305-.012l-.56-.428" stroke="#000" stroke-width=".0865179" fill="none"/> + <path d="M370.02 191.227l-.44-.257c-.108-.066-.164-.193-.113-.276.044-.09.177-.102.285-.038l.436.26.446.26c.108.058.16.184.115.275-.053.08-.18.096-.293.03l-.438-.253"/> + <path d="M370.02 191.227l-.44-.257c-.108-.066-.164-.193-.113-.276.044-.09.177-.102.285-.038l.436.26.446.26c.108.058.16.184.115.275-.053.08-.18.096-.293.03l-.438-.253" stroke="#000" stroke-width=".0865179" fill="none"/> + <path d="M368.26 190.02c.085-.092.264-.092.397.01.133.103.17.265.088.36-.083.098-.26.09-.393-.005-.133-.11-.172-.264-.09-.366"/> + <path d="M368.26 190.02c.085-.092.264-.092.397.01.133.103.17.265.088.36-.083.098-.26.09-.393-.005-.133-.11-.172-.264-.09-.366z" stroke="#000" stroke-width=".0865179" fill="none"/> + <path d="M374.743 194.482c.084-.097.043-.252-.088-.36-.133-.103-.31-.11-.394-.007-.08.096-.043.258.09.36.13.102.308.102.393.007"/> + <path d="M374.743 194.482c.084-.097.043-.252-.088-.36-.133-.103-.31-.11-.394-.007-.08.096-.043.258.09.36.13.102.308.102.393.007z" stroke="#000" stroke-width=".0865179" fill="none"/> + <path d="M375.718 195.594l.362.35c.088.083.228.114.305.048.076-.06.066-.18-.02-.265l-.355-.354-.368-.36c-.09-.085-.23-.11-.305-.042-.082.054-.07.187.025.27l.356.354"/> + <path d="M375.718 195.594l.362.35c.088.083.228.114.305.048.076-.06.066-.18-.02-.265l-.355-.354-.368-.36c-.09-.085-.23-.11-.305-.042-.082.054-.07.187.025.27l.356.354" stroke="#000" stroke-width=".0865179" fill="none"/> + <path d="M377.31 196.968c.085-.102.047-.258-.086-.367-.132-.1-.31-.106-.393-.004-.083.102-.044.257.09.366.132.096.31.102.39.006"/> + <path d="M377.31 196.968c.085-.102.047-.258-.086-.367-.132-.1-.31-.106-.393-.004-.083.102-.044.257.09.366.132.096.31.102.39.006z" stroke="#000" stroke-width=".0865179" fill="none"/> + <path fill="#c8b100" d="M372.67 186.75l-1 .03-.197 1.473.108.234.262-.017 1.28-.86-.452-.86"/> + <path d="M372.67 186.75l-1 .03-.197 1.473.108.234.262-.017 1.28-.86-.452-.86" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M369.95 187.56l-.027.92 1.556.192.24-.102-.02-.253-.906-1.208-.844.45"/> + <path d="M369.95 187.56l-.027.92 1.556.192.24-.102-.02-.253-.906-1.208-.844.45" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M373.164 189.4l-.83.464-.908-1.213-.02-.246.243-.102 1.56.186-.046.913"/> + <path d="M373.164 189.4l-.83.464-.908-1.213-.02-.246.243-.102 1.56.186-.046.913" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M371.16 188.26c.14-.222.44-.294.665-.156.23.126.305.41.167.626-.14.22-.438.288-.666.162-.228-.132-.305-.415-.167-.63"/> + <path d="M371.16 188.26c.14-.222.44-.294.665-.156.23.126.305.41.167.626-.14.22-.438.288-.666.162-.228-.132-.305-.415-.167-.63z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M367.52 186.75c-.026.006-.218-.775-.433-1.208-.145-.313-.66-.72-.66-.72.052-.098.7-.33 1.473.154.627.518-.05 1.468-.05 1.468s-.167.228-.325.306"/> + <path d="M367.52 186.75c-.026.006-.218-.775-.433-1.208-.145-.313-.66-.72-.66-.72.052-.098.7-.33 1.473.154.627.518-.05 1.468-.05 1.468s-.167.228-.325.306h-.006z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M369.264 187.272l-.71.614-1.154-1.004.1-.145.04-.247 1.567-.114.157.896"/> + <path d="M369.264 187.272l-.71.614-1.154-1.004.1-.145.04-.247 1.567-.114.157.896" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M367.3 186.64c.09-.252.31-.402.487-.347.178.065.25.312.166.56-.09.25-.31.394-.488.346-.185-.067-.254-.312-.165-.56"/> + <path d="M367.3 186.64c.09-.252.31-.402.487-.347.178.065.25.312.166.56-.09.25-.31.394-.488.346-.185-.067-.254-.312-.165-.56z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M376.5 189.154l-.996-.108-.417 1.437.076.245.26.007 1.397-.68-.32-.9"/> + <path d="M376.5 189.154l-.996-.108-.417 1.437.076.245.26.007 1.397-.68-.32-.9" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M373.686 189.593l-.157.908 1.51.397.253-.072.02-.245-.72-1.33-.907.343"/> + <path d="M373.686 189.593l-.157.908 1.51.397.253-.072.02-.245-.72-1.33-.907.343" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M376.61 191.832l-.894.354-.717-1.322.018-.253.254-.065 1.51.397-.17.89"/> + <path d="M376.61 191.832l-.894.354-.717-1.322.018-.253.254-.065 1.51.397-.17.89" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M374.785 190.445c.165-.205.477-.222.68-.067.21.157.24.445.076.644-.17.198-.476.222-.686.065-.202-.155-.242-.445-.07-.642"/> + <path d="M374.785 190.445c.165-.205.477-.222.68-.067.21.157.24.445.076.644-.17.198-.476.222-.686.065-.202-.155-.242-.445-.07-.642z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M379.838 192.257l.183.943-1.477.492-.26-.053-.03-.248.614-1.365.97.23"/> + <path d="M379.838 192.257l.183.943-1.477.492-.26-.053-.03-.248.614-1.365.97.23" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M379.577 194.95l-.945.21-.524-1.407.06-.24.26-.036 1.44.59-.29.882"/> + <path d="M379.577 194.95l-.945.21-.524-1.407.06-.24.26-.036 1.44.59-.29.882" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M377.01 192.34l-.306.872 1.442.583.264-.036.05-.24-.512-1.402-.94.222"/> + <path d="M377.01 192.34l-.306.872 1.442.583.264-.036.05-.24-.512-1.402-.94.222" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M378.602 193.974c.196-.18.203-.47.026-.656-.184-.18-.498-.193-.692-.024-.19.18-.203.463-.02.656.18.186.49.19.686.024"/> + <path d="M378.602 193.974c.196-.18.203-.47.026-.656-.184-.18-.498-.193-.692-.024-.19.18-.203.463-.02.656.18.186.49.19.686.024z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M380.937 197.036c-.006.024.845.043 1.334.15.35.074.89.464.89.464.094-.072.19-.716-.476-1.334-.667-.476-1.5.36-1.5.36s-.2.2-.247.36"/> + <path d="M380.937 197.036c-.006.024.845.043 1.334.15.35.074.89.464.89.464.094-.072.19-.716-.476-1.334-.667-.476-1.5.36-1.5.36s-.2.2-.247.36z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M380.017 195.512l-.488.787 1.28.865.158-.138.21-.072-.197-1.48-.963.037"/> + <path d="M380.017 195.512l-.488.787 1.28.865.158-.138.21-.072-.197-1.48-.963.037" stroke="#000" stroke-width=".4380827" fill="none"/> + <path fill="#c8b100" d="M381.074 197.2c.235-.13.35-.37.254-.52-.102-.157-.373-.176-.608-.043-.235.138-.35.367-.247.528.093.15.366.17.6.036"/> + <path d="M381.074 197.2c.235-.13.35-.37.254-.52-.102-.157-.373-.176-.608-.043-.235.138-.35.367-.247.528.093.15.366.17.6.036z" stroke="#000" stroke-width=".4380827" fill="none"/> + <path d="M448.366 158.474v.98h-4.29v-.98h1.587v-2.212h-1.048v-.985h1.048v-.968h1.035v.967h1.032v.985h-1.032v2.212h1.668" stroke="#000" stroke-width=".5067477" fill="none"/> + <g stroke="#000" fill="none"> + <path d="M193.323 179.64v-2.146" stroke-width=".03058863"/> + <path d="M192.74 179.64v-2.146" stroke-width=".045060670000000004"/> + <path d="M192.19 179.64v-2.146" stroke-width=".06019052999999999"/> + <path d="M191.645 179.64v-2.146" stroke-width=".0756493"/> + <path d="M191.16 179.64v-2.146" stroke-width=".09077916"/> + <path d="M190.234 179.524l-.012-1.952m.452 1.978v-2.043" stroke-width=".10623793"/> + <path d="M189.38 179.436v-1.8m.433 1.85l-.013-1.914" stroke-width=".12070996999999999"/> + <path d="M188.23 179.334v-1.58m.378 1.605V177.7m.388 1.71v-1.723" stroke-width=".13583983"/> + <path d="M187.827 179.32v-1.53" stroke-width=".1512986"/> + <path d="M187.452 179.245v-1.427" stroke-width=".16642846"/> + <path d="M187.05 179.205v-1.323" stroke-width=".18188723"/> + <path d="M186.228 179.09l-.012-1.054m.434 1.105v-1.18" stroke-width=".19635926999999997"/> + <path d="M185.804 178.998v-.925" stroke-width=".2072133"/> + <path d="M185.42 178.926v-.77" stroke-width=".22267207"/> + <path d="M184.995 178.82v-.603" stroke-width=".23714410999999996"/> + <path d="M184.56 178.77v-.448" stroke-width=".25161615"/> + <path d="M184.104 178.67v-.22" stroke-width=".29667682"/> + <path d="M195.642 179.524v-1.965m-.987 2.028l.012-2.08m-.732 2.106v-2.12" stroke-width=".015458769999999998"/> + </g> + <g stroke="#000" fill="none"> + <path d="M446.05 179.667v-2.145" stroke-width=".03058863"/> + <path d="M445.47 179.667v-2.145" stroke-width=".045060670000000004"/> + <path d="M444.92 179.667v-2.145" stroke-width=".06019052999999999"/> + <path d="M444.374 179.667v-2.145" stroke-width=".0756493"/> + <path d="M443.887 179.667v-2.145" stroke-width=".09077916"/> + <path d="M442.963 179.552l-.013-1.953m.452 1.977v-2.042" stroke-width=".10623793"/> + <path d="M442.108 179.463v-1.8m.433 1.85l-.012-1.913" stroke-width=".12070996999999999"/> + <path d="M440.96 179.36v-1.58m.376 1.607v-1.658m.388 1.708v-1.722" stroke-width=".13583983"/> + <path d="M440.555 179.348v-1.53" stroke-width=".1512986"/> + <path d="M440.18 179.272v-1.426" stroke-width=".16642846"/> + <path d="M439.78 179.233v-1.324" stroke-width=".18188723"/> + <path d="M438.957 179.118l-.013-1.054m.435 1.105v-1.183" stroke-width=".19635926999999997"/> + <path d="M438.532 179.026v-.926" stroke-width=".2072133"/> + <path d="M438.148 178.953v-.77" stroke-width=".22267207"/> + <path d="M437.723 178.848v-.604" stroke-width=".23714410999999996"/> + <path d="M437.29 178.8v-.45" stroke-width=".25161615"/> + <path d="M436.832 178.697v-.22" stroke-width=".29667682"/> + <path d="M448.37 179.552v-1.966m-.987 2.03l.013-2.08m-.732 2.106v-2.12" stroke-width=".015458769999999998"/> + </g> +</svg> diff --git a/s/flag/et.svg b/s/flag/et.svg new file mode 100755 index 0000000..abcb0a9 --- /dev/null +++ b/s/flag/et.svg @@ -0,0 +1,14 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-61.312 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 57.48 0)" stroke-width="1pt"> + <path fill="#ffc621" d="M-237.99 3.5h1037.9v498h-1037.9z"/> + <path fill="#ef2118" d="M-240 342.5H799.3V512H-240z"/> + <path fill="#298c08" d="M-237.99 0h1038v180h-1038z"/> + <ellipse cx="534.22" rx="199.65" cy="352.97" transform="matrix(.54 0 0 .54 -25.81 73.95)" ry="199.65" fill="#006bc6"/> + <path d="M214.25 188.2l-6.432 4.522 23.494 33.02 6.266-3.995-23.33-33.546zm29.41 77.942l-9.66-6.736 3.99-12.676-48.12.672-13.93-10.664 65.69-.708 12.184-36.908 6.545 14.924-16.7 52.098zm76.522-70.68l-6.254-4.764-24.378 32.374 5.703 4.766 24.93-32.375zM254.77 247.05l3.503-11.245 13.29-.024-15.182-45.67 5.958-16.5 20.524 62.408 38.864.46-12.248 10.748-54.71-.176zm90.672 51.165l2.615-7.415-38.295-13.262-2.785 6.89 38.465 13.786zm-69.18-46.416l11.778-.12 4.104 12.64 38.803-28.468 17.532.604-53.093 38.693 11.493 37.127-13.99-8.357-16.628-52.12zm-19.748 102.08l7.862.114.363-40.524-7.42-.443-.806 40.853zm21.944-80.366l3.867 11.125-10.673 7.917 39.353 27.705 5.016 16.81-53.596-37.99-31.528 22.73 3.462-15.924 44.1-32.375zM175.188 286.5l2.325 7.51 38.646-12.202-1.877-7.192L175.19 286.5zm83.21-4.02l-9.38 7.12-10.835-7.695-14.157 45.997-14.432 9.975 19.525-62.727-31.376-22.94 16.213-1.638 44.44 31.908z" fill="#ffc621"/> + </g> +</svg> diff --git a/s/flag/eu.svg b/s/flag/eu.svg new file mode 100755 index 0000000..57cd1ee --- /dev/null +++ b/s/flag/eu.svg @@ -0,0 +1,176 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<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.1" + width="640" + height="480" + id="svg2" + inkscape:version="0.48.4 r9939" + sodipodi:docname="eu.svg"> + <metadata + id="metadata43"> + <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> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1920" + inkscape:window-height="1027" + id="namedview41" + showgrid="false" + inkscape:zoom="0.35308642" + inkscape:cx="-65.13986" + inkscape:cy="270" + inkscape:window-x="-8" + inkscape:window-y="-8" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" /> + <desc + id="desc4">European flag</desc> + <defs + id="defs6"> + <g + id="s"> + <g + id="c"> + <path + id="t" + d="M 0,0 V 1 H 0.5 z" + transform="matrix(0.95105652,0.30901699,-0.30901699,0.95105652,0,-1)" + inkscape:connector-curvature="0" /> + <use + xlink:href="#t" + transform="scale(-1,1)" + id="use11" + x="0" + y="0" + width="810" + height="540" /> + </g> + <g + id="a"> + <use + xlink:href="#c" + transform="matrix(0.30901699,0.95105652,-0.95105652,0.30901699,0,0)" + id="use14" + x="0" + y="0" + width="810" + height="540" /> + <use + xlink:href="#c" + transform="matrix(-0.80901699,0.58778525,-0.58778525,-0.80901699,0,0)" + id="use16" + x="0" + y="0" + width="810" + height="540" /> + </g> + <use + xlink:href="#a" + transform="scale(-1,1)" + id="use18" + x="0" + y="0" + width="810" + height="540" /> + </g> + </defs> + <rect + width="640" + height="480" + id="rect20" + x="0" + y="0" + style="fill:#003399" /> + <g + transform="matrix(26.666667,0,0,26.666667,320,240)" + id="g22" + style="fill:#ffcc00"> + <use + xlink:href="#s" + y="-6" + id="use24" + x="0" + width="810" + height="540" /> + <use + xlink:href="#s" + y="6" + id="use26" + x="0" + width="810" + height="540" /> + <g + id="l"> + <use + xlink:href="#s" + x="-6" + id="use29" + y="0" + width="810" + height="540" /> + <use + xlink:href="#s" + transform="matrix(-0.80901699,-0.58778525,0.58778525,-0.80901699,-3,-5.1961524)" + id="use31" + x="0" + y="0" + width="810" + height="540" /> + <use + xlink:href="#s" + transform="matrix(-0.80901699,0.58778525,-0.58778525,-0.80901699,-5.1961524,-3)" + id="use33" + x="0" + y="0" + width="810" + height="540" /> + <use + xlink:href="#s" + transform="matrix(0.30901699,0.95105652,-0.95105652,0.30901699,-5.1961524,3)" + id="use35" + x="0" + y="0" + width="810" + height="540" /> + <use + xlink:href="#s" + transform="matrix(0.30901699,0.95105652,-0.95105652,0.30901699,-3,5.1961524)" + id="use37" + x="0" + y="0" + width="810" + height="540" /> + </g> + <use + xlink:href="#l" + transform="scale(-1,1)" + id="use39" + x="0" + y="0" + width="810" + height="540" /> + </g> +</svg> diff --git a/s/flag/fi.svg b/s/flag/fi.svg new file mode 100755 index 0000000..0af77d5 --- /dev/null +++ b/s/flag/fi.svg @@ -0,0 +1,15 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-19.45 0h682.67v512H-19.45z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 18.23 0)" stroke-width="1pt"> + <path fill="#fff" d="M-105.62 325.66h249.35V512h-249.35z"/> + <path fill="#0062da" d="M143.57 0h149.94v512H143.57z"/> + <path fill="#0062da" d="M-105.62 186.18h897.67v139.64h-897.67z"/> + <path fill="#fff" d="M-105.62.003h249.35v186.34h-249.35zM293.35 325.66h498.7V512h-498.7zM293.35.002h498.7v186.34h-498.7zM-105.62 325.66h249.35V512h-249.35z"/> + <path fill="#0062da" d="M143.57 0h149.94v512H143.57z"/> + <path fill="#fff" d="M-105.62.003h249.35v186.34h-249.35zM293.35 325.66h498.7V512h-498.7zM293.35.002h498.7v186.34h-498.7z"/> + </g> +</svg> diff --git a/s/flag/fj.svg b/s/flag/fj.svg new file mode 100755 index 0000000..6fcc5b4 --- /dev/null +++ b/s/flag/fj.svg @@ -0,0 +1,138 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <path d="M0 0v480h640V0H0z" fill-rule="evenodd" fill="#67b1ff"/> + <g stroke-width="1pt"> + <path fill-rule="evenodd" fill="#0000b4" d="M0 0h431.43v277.167H0z"/> + <path d="M0 0v30.99L383.195 277.17h48.234v-30.988L48.233 0H0zm431.43 0v30.988L48.233 277.17H0v-30.987L383.195 0h48.234z" fill="#fff"/> + <path d="M179.762 0v277.17h71.905V0h-71.905zM0 92.39v92.39h431.43V92.39H0z" fill="#fff"/> + <path d="M0 110.87v55.433h431.43V110.87H0zM194.143 0v277.17h43.143V0h-43.143zM0 277.17l143.81-92.39h32.155l-143.81 92.39H0zM0 0l143.81 92.39h-32.156L0 20.66V0zm255.463 92.39L399.273 0h32.156L287.62 92.39h-32.157zM431.43 277.17l-143.81-92.39h32.155l111.654 71.733v20.658z" fill="#c00"/> + </g> + <g fill-rule="evenodd"> + <path d="M391.43 137.047V296.31c20.534 111.483 56.467 127.41 102.667 159.262 46.2-31.853 82.132-47.78 102.666-159.263V137.046H391.43z" fill="#fff"/> + <path d="M480.408 137.047l.215 309.49 13.69 8.987L508 446.288l-.214-309.236h-27.378z" fill="#da0000"/> + <path d="M391.43 297.99l10.27 43.38 185.335-.12 9.73-43.26H391.433zM391.43 137.047h205.333V248.53H391.43z" fill="#da0000"/> + <g transform="matrix(.28 0 0 .4 309.75 297.89)"> + <rect rx="23.225" ry="27.989" height="55.978" width="46.45" stroke="#000" y="-281.68" x="306.09" stroke-width=".75" fill="#f6efec"/> + <path d="M850.4-296.57s47.64-3.573 64.315-22.63c16.675-19.056-11.314-53.596 6.55-57.17 7.147-.595 17.27 1.788 25.012 11.315-1.19-7.145-5.955-11.314-7.74-15.48-6.552-5.958-13.103-5.362-22.63-5.362-6.552 1.192-7.743-1.192-18.46-13.697-5.36-5.955-5.36-20.842-1.193-30.966-12.505 9.528-10.123 22.628-8.932 25.606 2.977 13.102 5.955 16.675 5.955 22.63-3.573-1.786-10.124-17.27-44.068-19.652-33.946-2.382-119.7 23.82-158.41 23.82-38.71 0-94.688-16.078-94.688-16.078s14.292-11.315-2.978-16.08c-17.27-4.763-55.382 16.676-66.102 4.765-7.74-11.314-4.764-8.932-5.955-14.29-2.977 1.785-4.764 8.932-.595 18.46 4.168 9.528 6.55 6.55 5.955 6.55-.596 0-13.697 0-14.888 4.765-1.192 3.572-2.98 7.74 3.572 20.842 2.382-13.1-6.55-14.887 13.1-16.078 19.654-1.192 33.35 7.74 50.024 10.718 16.675 2.978 16.675-7.146 17.27-6.55.596.595 51.214 14.292 97.664 11.314 46.45-2.977 121.49-28.585 156.02-23.225 34.54 5.36 57.17 30.37 57.765 53.596-.595 14.292-15.483 21.438-27.393 23.82-14.292 2.382-47.64 5.956-47.64 5.956l18.46 13.1z" transform="matrix(.88 0 0 .7 113.77 -89.63)" stroke="#000" stroke-width=".875" fill="#ff0"/> + <path d="M683.06-248.92c-.596 0-32.754.596-42.282 14.292-9.528 13.697-13.697 26.8-13.1 26.8.594 0 21.437-11.316 21.437-11.316s-15.483 22.63-7.146 42.877c8.336 20.247-22.01 19.056-39.508 19.65-7.742-5.954-32.473-16.078-41.292-17.864-5.507-2.085-16.32-2.354-27.616 10.346-6.653 7.83 9.888-7.37 26.295-6.178 1.773 1.786 2.915 3.574 3.23 7.74-8.74-.594-17.84-10.718-28.558 10.125 10.72-7.146 12.06-6.997 17.493-7.444 7.24-.537 6.31 3.275 6.01 3.275-1.19 0-4.144.595-8.616 4.764-2.383 2.976-8.338 9.527-7.147 9.527s4.752-3.573 10.327-6.55c3.484-2.383 6.793-2.383 17.322.595 57.765 13.696 88.73 3.573 92.304-1.787 1.787-2.38-33.35-69.675 60.147-87.54-1.19-.596-39.303-10.72-39.303-11.315z" transform="matrix(.85 0 0 1 231.25 -38.11)" stroke="#000" stroke-width=".5" fill="#ff0"/> + <path d="M472.84-212.6c32.753 27.394 253.69-29.18 281.68-48.832 16.08-11.315 44.068-19.652 44.068 19.056 7.146-26.203 7.147-32.753 7.147-32.158.595.596 11.314 10.125 20.843 42.283 2.382-28.587-4.17-45.26-.596-42.88 2.382-2.38 2.382 14.293 21.438 37.518-4.168-18.46-5.36-26.798-5.36-26.798s35.732 34.54 55.98 39.304c20.247 4.764 49.427-9.528 58.36-1.19 8.932 8.337 24.418 23.224 23.818 35.135-.59 11.91-33.347 1.785-36.92 11.313-3.573 9.53 2.382 9.53 2.382 9.53s2.977 7.145 5.36 13.1c1.786-4.17-1.787-13.102 4.764-13.697 4.764.595 4.764 8.337 5.955 12.506 1.388-4.764-.2-14.292 4.168-14.292 4.764-.993 5.36 7.543 8.932 13.1v-13.1c13.698-4.17 25.604-4.764 27.394-13.697 1.78-8.933-20.846-29.18-26.206-42.282-5.356-13.1 4.17-18.46-5.952-25.606-10.123-7.146-48.832 11.315-66.697 4.17-17.867-7.147-10.72-58.362-78.014-69.676-67.293-11.315-249.52 59.55-281.68 62.53-32.158 2.976-71.46-10.125-71.46-10.125l.594 54.787z" stroke="#000" stroke-width=".625" fill="#ff0"/> + <path d="M420.43-263.22s-28.585-37.518-51.81-41.09c-23.225-2.978-45.855 14.292-50.62 11.91-4.763-2.383-6.55.596-9.527 5.955-2.978 5.36.596 8.932.595 8.337 1.19 0 4.17-8.933 5.36-9.528 1.192-.596-5.955 10.72 1.192 11.91 2.382.596 3.573-8.337 6.55-11.91.596.595-4.764 12.506-1.786 13.1 2.977.597 6.55-11.91 11.91-14.887 7.742-5.36 19.056-7.147 33.35-7.146 14.29 4.17 43.47 38.71 46.45 38.113l8.336-4.763z" transform="matrix(.98 .23 .18 -1.25 64.17 -655.73)" stroke="#000" stroke-width=".5" fill="#ff0"/> + <path d="M420.43-263.22s-28.585-37.518-51.81-41.09c-23.225-2.978-45.855 14.292-50.62 11.91-4.763-2.383-6.55.596-9.527 5.955-2.978 5.36.596 8.932.595 8.337 1.19 0 4.17-8.933 5.36-9.528 1.192-.596-5.955 10.72 1.192 11.91 2.382.596 3.573-8.337 6.55-11.91.596.595-4.764 12.506-1.786 13.1 2.977.597 6.55-11.91 11.91-14.887 7.742-5.36 19.056-7.147 33.35-7.146 14.29 4.17 43.47 38.71 46.45 38.113l8.336-4.763z" transform="matrix(1 0 0 1.13 11.31 42.24)" stroke="#000" stroke-width=".5" fill="#ff0"/> + <path d="M417.46-267.98l-31.562 15.483 23.225 5.956-16.675 19.056 23.82-7.742-1.785 25.607 13.697-16.673 8.932 23.225 9.528-17.27 11.315 19.056 4.764-18.46 13.696 18.46 4.764-25.01 16.675 15.482-2.382-26.203 20.247 6.55-12.506-20.247s22.034-1.19 20.843-1.19-16.674-13.102-30.37-16.675l-76.227.595z" stroke="#000" stroke-width=".5" fill="#ff0"/> + <path d="M417.46-267.98l-31.562 15.483 23.225 5.956-16.675 19.056 23.82-7.742-1.785 25.607 13.697-16.673 8.932 23.225 9.528-17.27 11.315 19.056 4.764-18.46 13.696 18.46 4.764-25.01 16.675 15.482-2.382-26.203 20.247 6.55-12.506-20.247s22.034-1.19 20.843-1.19-16.674-13.102-30.37-16.675l-76.227.595z" transform="matrix(.55 0 0 .57 205.56 -123.01)" stroke="#000" stroke-width=".808" fill="#ff0"/> + <path d="M443.06-316.81s-8.93-7.146-12.504 0c-3.574 7.147 7.74 4.17 7.74 5.36s-7.74 9.528-7.74 19.057c0 9.528 5.955 25.607 5.955 27.99s2.383 8.93 10.72 11.313 11.315-7.74 13.1-8.932c1.788-1.19 13.103 1.786 17.27-8.337 4.17-10.123 4.17-28.584 4.17-28.584s7.146 5.36 7.146-5.36-7.742 0-7.742 0 1.19-11.314-17.27-16.674-20.247 5.36-20.843 4.168z" stroke="#000" stroke-width=".5" fill="#ff0"/> + <path d="M441.48-317.31c-2.38-4.827-9.14-23.32-9.14-23.32l16.205 6.942c-5.53-1.374-10.25-2.18-9.654-2.18.596 0 7.147 8.934 7.147 8.934 6.45-.374 12.903 1.774 20.843 3.503 0 0 6.55-7.287 5.955-7.287-.596 0-3.573-1.192-3.573-1.192l14.888-6.83-4.764 9.214h-2.978l-5.955 6.69c6.7 1.26 9.975 2.242 16.525 6.445 5.807-.84 10.72-3.852 13.846-6.13-5.21-1.437-7.592-2.558-6.997-2.558.596 0 21.885 1.12 21.885 1.12s-20.89 12.917-33.093 17.65c-11.29-3.245-39.95-9.215-41.14-11.002z" transform="matrix(.94 -.02 .03 1.42 35.5 137.73)" stroke="#000" stroke-width=".54" fill="#ff0"/> + <rect transform="matrix(.9 .43 -1 -.1 0 0)" rx="6.865" ry="3.077" height="6.153" width="13.731" y="-1416.1" x="-1065.8"/> + <rect transform="matrix(.9 .43 -1 -.1 0 0)" rx="6.865" ry="3.077" height="6.153" width="13.731" y="-1419.6" x="-1050"/> + <rect transform="matrix(.95 .32 -1 -.08 0 0)" rx="12.761" ry="5.97" height="11.94" width="25.522" y="-1636.5" x="-1253.9"/> + <rect transform="matrix(.94 .35 -1 -.1 0 0)" rx="5.781" ry="2.674" height="5.349" width="11.562" y="-1565.8" x="-1186.4"/> + <rect transform="matrix(.33 -.94 .14 1 0 0)" rx="4.931" ry="2.046" height="4.093" width="9.861" y="734.39" x="1061.7"/> + </g> + <g stroke="#000" transform="matrix(1.1 0 0 1.27 -361.45 -17.2)"> + <path d="M737.05 319.5c1.663 4.742.814 0-.957 7.344 1.094-2.188 2.656-3.438 3.28-3.437.94 0 1.407 0 3.282 1.406-1.718-2.5-4.687-1.875-4.53-5.625-.157-.86-1 .08-1.075.312z" transform="matrix(1.05 0 0 1.4 -30.43 -120.97)" stroke-width=".375" fill="#ff7300"/> + <rect transform="matrix(.82 -.57 .2 .98 0 0)" rx=".685" ry=".506" height="18.038" width="1.369" y="717.59" x="708.8" stroke-width=".103" fill="#b2802e"/> + <path d="M734.06 312.16c.78-.47 6.562-11.094 34.062-9.532-15.625 5.313-25.313 16.563-27.656 17.03-1.72.47-5.47-5.78-6.406-7.498z" transform="matrix(.8 0 0 .98 152.8 3.9)" stroke-width=".375" fill="#fff"/> + <g stroke-width=".333" fill="#007500"> + <path d="M-3819.3-4447.1l-7.42-2.76 15.13 11.39-2.9-5.35-4.81-3.28z" transform="matrix(-.5 -1.05 .3 .95 159.9 514.87)"/> + <path d="M-3819.3-4447.1l-5.31.27 12.7 7.59-2.58-4.58-4.81-3.28z" transform="matrix(.07 -.68 -.3 .54 -293.62 91.01)"/> + <path d="M-3819.9-4447.6l4.64 7.4 4.42 1.26-3.58-4.96-5.48-3.7z" transform="matrix(-1.36 -.47 1.52 .64 2287.67 1355.68)"/> + <path d="M-3821.8-4448.7l17.53 22.4-6.67-12.48-3.47-5.09-7.39-4.83z" transform="matrix(-.55 .32 .76 -.15 2024.7 827.17)"/> + <path d="M-3822.2-4449.9l-12.5-6.51 24.05 18.66-3.81-6.13-7.74-6.02z" transform="matrix(.98 .07 -1.18 -.24 -766.75 -528.55)"/> + <path d="M-3823.5-4450.2l-5.23-1.22 17.81 13.32-3.56-5.79-9.02-6.31z" transform="matrix(1.5 .65 -1.64 -.82 -831.78 -851.13)"/> + <path d="M-3824.7-4451.7l-13.4-9.74 24.35 20.96-.74-3.33-10.21-7.89z" transform="matrix(1.75 1.24 -1.77 -1.34 -460.51 -944.94)"/> + <path d="M-3822.2-4449.3l10.6 14.41 1.71-2.6-4.55-6.35-7.76-5.46z" transform="matrix(1.37 1.4 -1.26 -1.4 359.75 -588.43)"/> + <path d="M-3820.2-4447l15.6 19.25-3.35-7.74-6.53-8.32-5.72-3.19z" transform="matrix(.92 1.25 -.75 -1.2 896.99 -233.09)"/> + <path d="M-3821-4448.7l12.21 17.13-.11-5.25-5.57-6.99-6.53-4.89z" transform="matrix(.2 .85 .02 -.73 1547.59 307.23)"/> + <path d="M-3818.9-4446.9l1.97 4.26 4.24 2.13-1.8-3.38-4.41-3.01z" transform="matrix(-1.14 -1.33 1 1.3 788.44 989.43)"/> + <path d="M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84-4.81-3.28z" transform="matrix(-.5 -.73 .34 .64 325.56 337.13)"/> + <path d="M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84-4.81-3.28z" transform="matrix(-.84 -.28 .9 .4 1501.16 974.27)"/> + <path d="M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84-4.81-3.28z" transform="matrix(.7 .14 -.82 -.25 -238.04 -272.2)"/> + <path d="M-3819.3-4447.1l15.68 18.95-10.18-13.71-.69-1.96-4.81-3.28z" transform="matrix(.25 .62 -.13 -.56 1093.02 160.12)"/> + <path d="M-3819.3-4447.1l10.95 13.18-4.32-6.06-1.82-3.84-4.81-3.28z" transform="matrix(1.64 1.38 -1.6 -1.44 -104.7 -827.04)"/> + <path d="M-3819.3-4447.1l-14.43-12.59 18.26 16.79.98-.92-4.81-3.28z" transform="matrix(1.46 .6 -1.6 -.77 -839.02 -829.37)"/> + <path d="M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84-4.81-3.28z" transform="matrix(-.36 -.73 .22 .66 328.35 444.53)"/> + </g> + <path d="M759.39 305.01c-3.24 1.066-4.827 1.573-6.465 1.782.835.357 2.69.14 4.807.71-1.886.042-5.374 1.48-6.825 1.516 1.003.602 4.58.022 5.238.18-1.913.118-4.99 1.6-6.908 1.6-.878.67 4.46-.46 6.602.807-2.216-.114-6.52 1.16-8.85.853 1.777 1.042 4.952-.112 7.6 1.017-.767.084-6.91.772-9.086.445 1.3.65 5.218.543 6.18 1.12-1.62-.21-5.927.69-7.425.332 1.348.972 5.413.424 6.16 1.01-2.657.925-6.683.186-8.535.437 1.242.58 2.267 1.167 3.366 1.71 1.605 1.127 6.61 4.294 9.6 5.245-3.31-.433-4.464-.49-6.603-.665l4.867 5.16c-2.03-1.095-5.61-3.162-7.988-4.23-5.264-2.577-9.058-2.13-12.704-4.313-5.122-4.966-7.966-10.885-8.222-12.464-.257-1.578-.48-4.407-5.153-2.933 4.51-.58 6.405-5.792 6.758-5.583.16.09.578 3.483 1.638 4.853.706.983 6.71 4.348 7.706 4.527 8.943-5.314 16.197-5.967 24.24-3.117z" transform="matrix(1.05 0 0 1.4 -29.62 -119.66)" stroke-width=".375" fill="#fff"/> + </g> + <g stroke="#000" stroke-width=".25" transform="matrix(1.1 0 0 1.27 -358.42 -17.2)"> + <rect transform="rotate(44.69)" rx="1.391" ry="5.563" height="11.127" width="2.782" y="-352.62" x="802.37" fill="#e4cc00"/> + <path d="M795.02 334.335c-.21-1.173-.348-1.765.244-3.303.864-1.083 1.317-2.043 2.893-3.164 1.71-.563 2.286-.055 4.528-2.134.72-1.37 1.82-2.405 2.445-3.882 1.46-2.177 1.95-3.252 3.12-4.927 1.55-1.74 2.8-3.302 3.708-4.636.97-1.71 1.84-2.768 3.245-4.174.57-1.604 1.79-2.794 3.245-4.172 1.113-2.033 3.247-4.36 4.173-6.027 1.642-1.88 2.284-2.697 3.71-4.636 1.254-.827 3.37-2.643 5.1-3.244 2.358-.99 3.62-1.97 5.172-.464 1.027 1.027 2.873 2.68 1.59 3.9-.675.748-1.78.84-3.054.273-1.31-.848-1.946-3.315-3.71-1.39-1.273 1.454-1.926 2.615-3.708 4.17-.886 1.305-1.525 2.28-2.318 4.174-1.048 1.208-1.914 2.567-2.78 4.635-1.125.928-2.094 2.77-2.783 4.172-1.113 1.166-1.916 2.364-2.783 4.173-1.75 1.677-2.405 3.095-3.71 4.172-.86 1.82-2.216 3.558-3.244 4.636-.812 1.32-1.618 2.695-2.318 4.173-1.475 1.506-1.54 1.83-3.71 4.173-1.805 2.355-1.197 2.07-4.025 4.8-1.548.51-3.103.685-5.03-1.298z" fill="#006000"/> + <rect transform="rotate(22.17)" rx="1.391" ry="5.563" height="11.127" width="2.782" y="-20.84" x="862.29" fill="#e4cc00"/> + <rect transform="rotate(24.03)" rx="1.391" ry="5.563" height="11.127" width="2.782" y="-48.488" x="863.44" fill="#e4cc00"/> + <rect transform="rotate(35.85)" rx="1.391" ry="5.563" height="11.127" width="2.782" y="-224.52" x="840.48" fill="#e4cc00"/> + <rect transform="rotate(49.53)" rx="1.391" ry="5.563" height="11.127" width="2.782" y="-420.33" x="773.6" fill="#e4cc00"/> + <rect transform="rotate(45.46)" rx="1.391" ry="5.563" height="11.127" width="2.782" y="-363.86" x="799.69" fill="#e4cc00"/> + <rect transform="rotate(35.85)" rx="1.391" ry="5.563" height="11.127" width="2.782" y="-224.23" x="844.16" fill="#e4cc00"/> + <rect transform="rotate(35.85)" rx="1.391" ry="5.563" height="11.127" width="2.782" y="-224.62" x="842.29" fill="#e4cc00"/> + <g transform="rotate(35.85 -1.43 -10.31)" fill="#e4cc00"> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.57" x="838.79"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.68" x="840.85"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.66" x="843"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.7" x="845.3"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.54" x="847.15"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-245.75" x="857.84"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-245.32" x="856.37"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-245.1" x="854.94"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-245.02" x="852.83"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.68" x="850.76"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.64" x="848.96"/> + </g> + <rect transform="rotate(28.47 -.2 -.77)" rx="1.391" ry="5.563" height="11.127" width="2.782" y="-115.05" x="859.81" fill="#e4cc00"/> + <g transform="rotate(35.85 -14.89 -15.59)" fill="#e4cc00"> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.57" x="838.79"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.68" x="840.85"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.66" x="843"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.7" x="845.3"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.54" x="847.15"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-245.75" x="857.84"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-245.32" x="856.37"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-245.1" x="854.94"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-245.02" x="852.83"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.68" x="850.76"/> + <rect rx="1.391" ry="5.563" height="11.127" width="2.782" y="-244.64" x="848.96"/> + </g> + </g> + <g stroke="#000" transform="matrix(1.06 0 0 1.15 -335.89 12.3)"> + <rect transform="rotate(18.82)" rx="1.432" ry=".678" height="24.19" width="2.864" y="-28.09" x="774.89" stroke-width=".172" fill="#b2802e"/> + <rect rx="1.432" ry=".678" height="24.19" width="2.864" y="221.74" x="727.44" stroke-width=".172" fill="#b2802e"/> + <rect rx="1.432" ry=".678" height="24.19" width="2.864" y="221.28" x="707.97" stroke-width=".172" fill="#b2802e"/> + <g stroke-width=".25" fill="#004500"> + <path d="M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-14.492-19.462 1.56-16.9 2.41.754-2.172 2.144-5.51 2.76-4.52.572-1.702 6.83 7.266 12.633 1.96 1.508 6.33 4.597 6.33 4.597s-1.583 2.788-1.734 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014.687 3.448.084 7.97-1.055 3.918-1.582 3.466-1.81-.075.785-2.466-2.345-6.312-2.344-8.272z" transform="matrix(.42 .6 -.7 .23 583.24 -257.26)"/> + <path d="M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-6.197-19.173 9.854-16.61 2.41.753 1.945 1.61-1.392 2.227-4.52.57-14.114 7.073-5.146 12.875 1.96 1.508 6.33 4.597 6.33 4.597s-1.583 2.788-1.734 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014 1.095 5.817.492 10.34-1.055 3.917-1.582 3.465-1.81-.076.076-.602-2.753-8.68-2.752-10.64z" transform="matrix(.38 .62 -.7 .2 612.9 -260.63)"/> + <path d="M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-2.64-11.925 11.99-9.1 1.586.2-2.096 2.163-5.433 2.78-4.52.57-12.21-.99-3.24 4.813 1.958 1.508 6.328 4.597 6.328 4.597s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014 7.07 9.44 6.467 13.96-1.055 3.92-1.582 3.467-1.81-.074.076-.603-8.728-12.303-8.727-14.263z" transform="matrix(.33 .65 -.7 .13 652.31 -262.77)"/> + </g> + <g stroke-width=".25" fill="#004500"> + <path d="M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-10.194-16.4 5.857-13.838 2.41.753-2.095 2.164-5.432 2.78-4.52.572-6.077 3.75 2.89 9.55 1.96 1.51 6.33 4.598 6.33 4.598s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014-1.734 3.165-2.337 7.687-1.055 3.918-1.582 3.466-1.81-.075.076-.604.076-6.03.077-7.99z" transform="matrix(.43 .6 -.7 .24 560.19 -256.51)"/> + <path d="M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-10.194-16.4 5.857-13.838 2.41.753-2.095 2.164-5.432 2.78-4.52.572-6.077 3.75 2.89 9.55 1.96 1.51 6.33 4.598 6.33 4.598s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014-1.734 3.165-2.337 7.687-1.055 3.918-1.582 3.466-1.81-.075.076-.604.076-6.03.077-7.99z" transform="matrix(.4 .62 -.7 .2 589.82 -260.11)"/> + <path d="M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-10.194-16.4 5.857-13.838 2.41.753-2.095 2.164-5.432 2.78-4.52.572-6.077 3.75 2.89 9.55 1.96 1.51 6.33 4.598 6.33 4.598s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014-1.734 3.165-2.337 7.687-1.055 3.918-1.582 3.466-1.81-.075.076-.604.076-6.03.077-7.99z" transform="matrix(.34 .65 -.7 .14 629.21 -262.57)"/> + </g> + <g stroke-width=".25" fill="#004500"> + <path d="M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-14.492-19.462 1.56-16.9 2.41.754-2.172 2.144-5.51 2.76-4.52.572-1.702 6.83 7.266 12.633 1.96 1.508 6.33 4.597 6.33 4.597s-1.583 2.788-1.734 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014.687 3.448.084 7.97-1.055 3.918-1.582 3.466-1.81-.075.785-2.466-2.345-6.312-2.344-8.272z" transform="matrix(.2 .7 -.73 -.02 770.2 -279)"/> + <path d="M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-6.197-19.173 9.854-16.61 2.41.753 1.945 1.61-1.392 2.227-4.52.57-14.114 7.073-5.146 12.875 1.96 1.508 6.33 4.597 6.33 4.597s-1.583 2.788-1.734 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014 1.095 5.817.492 10.34-1.055 3.917-1.582 3.465-1.81-.076.076-.602-2.753-8.68-2.752-10.64z" transform="matrix(.15 .72 -.72 -.06 799.25 -272.13)"/> + <path d="M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-2.64-11.925 11.99-9.1 1.586.2-2.096 2.163-5.433 2.78-4.52.57-12.21-.99-3.24 4.813 1.958 1.508 6.328 4.597 6.328 4.597s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014 7.07 9.44 6.467 13.96-1.055 3.92-1.582 3.467-1.81-.074.076-.603-8.728-12.303-8.727-14.263z" transform="matrix(.1 .73 -.72 -.12 837.06 -260.81)"/> + </g> + </g> + <g stroke="#000" transform="matrix(1.1 0 0 1.27 -361.45 -17.2)"> + <rect rx="1.432" ry=".678" height="24.19" width="2.864" y="222.49" x="826.05" stroke-width=".172" fill="#b2802e"/> + <g stroke-width=".333" fill="#007500"> + <path d="M-3819.3-4447.1l-7.42-2.76 15.13 11.39-2.9-5.35-4.81-3.28z" transform="matrix(2.83 -1.24 -3.05 .95 -1925.62 -304.33)"/> + <path d="M-3819.3-4447.1l-5.31.27 12.7 7.59-2.58-4.58-4.81-3.28z" transform="matrix(3.13 -.33 -3.22 -.02 -1573.42 -1098.14)"/> + <path d="M-3819.9-4447.6l4.64 7.4 4.42 1.26-3.58-4.96-5.48-3.7z" transform="matrix(-2.35 -1.9 2.13 2.18 1324.03 2719.86)"/> + <path d="M-3821.8-4448.7l17.53 22.4-6.67-12.48-3.47-5.09-7.39-4.83z" transform="matrix(-3.1 -.45 3.1 .8 2735.85 2087.12)"/> + <path d="M-3822.2-4449.9l-12.5-6.51 24.05 18.66-3.81-6.13-7.74-6.02z" transform="matrix(2.85 1.2 -2.74 -1.54 -448.35 -2034.45)"/> + <path d="M-3823.5-4450.2l-5.23-1.22 17.81 13.32-3.56-5.79-9.02-6.31z" transform="matrix(2.03 2.16 -1.77 -2.43 720.32 -2307.97)"/> + <path d="M-3824.7-4451.7l-13.4-9.74 24.35 20.96-.74-3.33-10.21-7.89z" transform="matrix(.34 2.82 .04 -2.9 2314.66 -1926.99)"/> + <path d="M-3822.2-4449.3l10.6 14.41 1.71-2.6-4.55-6.35-7.76-5.46z" transform="matrix(-1.55 2.47 1.92 -2.34 3429.12 -741.41)"/> + <path d="M-3820.2-4447l15.6 19.25-3.35-7.74-6.53-8.32-5.72-3.19z" transform="matrix(-2.4 1.85 2.68 -1.6 3638.7 109.42)"/> + <path d="M-3821-4448.7l12.21 17.13-.11-5.25-5.57-6.99-6.53-4.89z" transform="matrix(-3.04 .75 3.2 -.42 3422.62 1206.87)"/> + <path d="M-3818.9-4446.9l1.97 4.26 4.24 2.13-1.8-3.38-4.41-3.01z" transform="matrix(2.05 -2.16 -2.38 1.96 -1931.76 726.96)"/> + <path d="M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84-4.81-3.28z" transform="matrix(1.5 -1.04 -1.62 .8 -633.93 -217.22)"/> + <path d="M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84-4.81-3.28z" transform="matrix(-1.52 -1.17 1.2 1.3 424.38 1558.92)"/> + <path d="M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84-4.81-3.28z" transform="matrix(1.7 .92 -1.6 -1.12 156.59 -1254.09)"/> + <path d="M-3819.3-4447.1l15.68 18.95-10.18-13.71-.69-1.96-4.81-3.28z" transform="matrix(-1.85 .67 2 -.5 2589.49 580.62)"/> + <path d="M-3819.3-4447.1l10.95 13.18-4.32-6.06-1.82-3.84-4.81-3.28z" transform="matrix(-.6 2.78 1 -2.76 2955.04 -1435.12)"/> + <path d="M-3819.3-4447.1l-14.43-12.59 18.26 16.79.98-.92-4.81-3.28z" transform="matrix(2.13 2.1 -1.88 -2.36 604.09 -2303.24)"/> + <path d="M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84-4.81-3.28z" transform="matrix(1.96 -.88 -2.12 .67 -1083.67 -148.42)"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/fk.svg b/s/flag/fk.svg new file mode 100755 index 0000000..e16d2cf --- /dev/null +++ b/s/flag/fk.svg @@ -0,0 +1,92 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" xmlns:xlink="http://www.w3.org/1999/xlink"> + <defs> + <linearGradient id="a"> + <stop stop-color="#a43907" stop-opacity=".996" offset="0"/> + <stop stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="b" y2="577.14" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="470.9" y1="592.2" x1="444.4"/> + <linearGradient id="c" y2="552.83" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="520.55" gradientTransform="scale(.94 1.07)" y1="562.51" x1="458.24"/> + <linearGradient id="d" y2="580.2" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="445.28" y1="578.68" x1="472.38"/> + <linearGradient id="e" y2="558.12" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="456.44" gradientTransform="scale(.94 1.07)" y1="553.74" x1="517.97"/> + <linearGradient id="f" y2="369.94" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="646.19" y1="369.94" x1="851.78"/> + <linearGradient id="g" y2="508.75" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="677.4" gradientTransform="scale(.82 1.22)" y1="507.23" x1="388.53"/> + <linearGradient id="h" y2="505.86" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="556.8" gradientTransform="scale(.84 1.2)" y1="504.94" x1="579.84"/> + <linearGradient id="i" y2="514.33" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="558.88" gradientTransform="scale(.82 1.22)" y1="512.01" x1="581.43"/> + <linearGradient id="j" y2="503.9" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="589.77" gradientTransform="scale(.84 1.2)" y1="517.88" x1="552"/> + </defs> + <path fill="#006" d="M0 0h640v480H0z"/> + <path fill-rule="evenodd" fill="#006" d="M0 0h400v200H0z"/> + <g stroke-width="1pt"> + <path d="M0 0v25.562L317.137 228.63h39.92v-25.56L39.918 0H0zm357.056 0v25.56L39.92 228.63H0v-25.562L317.137 0h39.92z" fill="#fff"/> + <path d="M148.773 0v228.63h59.51V0h-59.51zM0 76.21v76.21h357.056V76.21H0z" fill="#fff"/> + <path d="M0 91.452v45.726h357.056V91.452H0zM160.675.002v228.627h35.706V0h-35.705zM0 228.63l119.02-76.21h26.61L26.614 228.63H0zM0 0l119.02 76.21H92.405L0 17.042V.002zm211.425 76.21L330.445 0h26.61L238.038 76.21h-26.612zm145.63 152.42l-119.018-76.21h26.613l92.406 59.168v17.04z" fill="#c00"/> + </g> + <g> + <path d="M670.97 321.56c-.734.012-1.438.084-2.03.188-3.39.59-8.734 11.63-11.69 18.094-4.62 5.644-7.088 10.03-9.03 13.28-.755 1.263-1.92 2.728-1.563 4.407-6.996 1.718-7.344 7.724-7.344 10.06 0 2.48.782 3.72.782 3.72l4.187 7.843.03.094c4.458 9.216 11.058 21.626 14.75 22.656 5.244 1.462 18.822-3.55 29-12.156 16.69 6.875 38.073 12.562 61.97 12.562 23.896 0 45.248-5.69 61.938-12.563 10.18 8.606 23.758 13.618 29 12.156 3.705-1.033 10.324-13.525 14.78-22.75l4.19-7.844s.78-1.24.78-3.72c0-2.338-.377-8.344-7.375-10.062.35-1.678-.776-3.143-1.53-4.406-1.958-3.274-4.42-7.7-9.095-13.406-2.966-6.48-8.29-17.382-11.656-17.97-4.742-.825-14.97 1.58-14.97 2.407 0 .02-.057.45-.062.5l-20.54 19.4c0 .557 1.09 14.594 4.938 27-13.75 5.006-30.626 8.532-50.406 8.532-19.793 0-36.715-3.52-50.47-8.532 3.85-12.406 4.97-26.443 4.97-27l-20.53-19.4c-.005-.05-.063-.48-.063-.5 0-.723-7.83-2.675-12.968-2.593zm5.25 24.094c2.582-.032 5.332 2.095 7.594 4.47-.078.465-.157.943-.25 1.374-.624 2.872-1.696 6.663-3.188 10.625-5.87-3.43-10.66-6.996-14.312-10.312 2.228-2.37 5.806-5.596 9.594-6.124.185-.026.375-.03.563-.03zm147.56 0c.187.002.377.005.563.03 3.788.53 7.397 3.757 9.625 6.126-3.66 3.324-8.457 6.91-14.344 10.344-1.498-3.97-2.563-7.778-3.188-10.656-.094-.432-.172-.907-.25-1.375 2.265-2.38 5.006-4.5 7.594-4.47zm-166 27.375c2.73 2.09 6.296 4.475 10.594 7-1.19.755-2.456 1.316-3.78 1.624-1.766.41-3.622.33-5.5-.063-.588-1.45-1.083-3.274-1.22-5.717-.057-1.018-.08-1.966-.094-2.844zm184.47 0c-.014.877-.068 1.825-.125 2.843-.137 2.443-.6 4.267-1.188 5.72-1.88.392-3.766.47-5.53.06-1.326-.307-2.56-.868-3.75-1.624 4.3-2.525 7.862-4.908 10.593-7z" fill-rule="evenodd" transform="matrix(1.17 0 0 1.17 -389.23 -21.96)" stroke="#fff" stroke-width="10" fill="url(#b)"/> + <path d="M445.63 595.48s5.625-8.75 10.313-8.125c4.687.625 9.062 6.25 9.375 6.562.312.313 7.187-7.187 6.875-7.5-.313-.312-7.188-16.562-10.938-17.187s-11.847 1.196-11.847 1.82-3.778 24.43-3.778 24.43z" fill-rule="evenodd" transform="matrix(-1.48 0 0 1.54 1073.61 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#b)"/> + <path d="M433.13 586.11c0 .625 1.875 23.75 10 31.875s21.25 13.125 25.938 11.875c4.687-1.25 15.312-24.687 15.312-24.687s-11.25 11.25-19.687 9.375c-8.438-1.875-13.438-15.938-15-22.813-1.563-6.875-.313-20.313-.313-20.313l-16.25 14.688z" fill-rule="evenodd" transform="matrix(-1.48 0 0 1.54 1073.61 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#c)"/> + <path d="M445.63 595.48s5.625-8.75 10.313-8.125c4.687.625 9.062 6.25 9.375 6.562.312.313 7.187-7.187 6.875-7.5-.313-.312-7.188-16.562-10.938-17.187s-11.847 1.196-11.847 1.82-3.778 24.43-3.778 24.43z" fill-rule="evenodd" transform="matrix(1.48 0 0 1.54 -99.78 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#d)"/> + <path d="M433.13 586.11c0 .625 1.875 23.75 10 31.875s21.25 13.125 25.938 11.875c4.687-1.25 15.312-24.687 15.312-24.687s-11.25 11.25-19.687 9.375c-8.438-1.875-13.438-15.938-15-22.813-1.563-6.875-.313-20.313-.313-20.313l-16.25 14.688z" fill-rule="evenodd" transform="matrix(1.48 0 0 1.54 -99.78 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#e)"/> + <path d="M656.44 338.56c-4.742 5.785-7.274 10.257-9.25 13.562-1.976 3.306-.814 7.906 3.75 14.47 4.92 7.072 45.374 34.718 98.062 34.718 52.69 0 93.142-27.646 98.062-34.72 4.564-6.562 5.695-11.162 3.72-14.468-1.977-3.306-4.478-7.777-9.22-13.562 0 8.677-33.512 40.03-92.562 40.03s-92.562-31.353-92.562-40.03z" fill-rule="evenodd" transform="matrix(1.17 0 0 1.17 -388.04 -20.79)" stroke="#000" stroke-width="1.5" fill="url(#f)"/> + <path d="M467.82 625.48c.625-.937 7.187-11.875 7.187-11.875l-3.598-2.538c-1.106 3.094-5.153 4.1-5.778 7.85s2.813 7.5 2.188 6.563z" fill-rule="evenodd" transform="matrix(1.48 0 0 1.54 -98.8 -524.06)" stroke="#000" stroke-width="1.16" fill="url(#g)"/> + <path d="M475 622.98s1.25-5.312-2.812-5.937c-4.063-.625-6.214 2.973-5.625 1.562.654-1.567 3.125-3.125 3.437-8.437.313-5.313-.312-8.125-.312-8.125s1.562-6.876 8.125-5.938c6.562.938 6.875 5.938 6.875 7.813s-.625 2.812-.625 2.812L475 622.98z" fill-rule="evenodd" transform="matrix(1.48 0 0 1.54 -99.78 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#h)"/> + <path d="M568.3 406.338l1.973 3.453 1.332-.83-.884-2.28.165-.448 2.318-1.446 6.067 10.608-.15.516-1.2.88.546.957 5.777-3.606-.547-.954-1.31.686-.507-.106-6.068-10.61 2.32-1.447.434.072 1.52 1.883 1.335-.833-1.973-3.452-11.148 6.958zM554.047 414.507l.48.993 1.216-.513.478.155 5.21 10.764-.165.494-1.117.716.48.993 5.687-3.002-.48-.993-1.256.536-.48-.154-2.47-5.108 5.806-3.065 2.47 5.11-.143.482-1.158.737.48.993 5.667-2.99-.48-.993-1.215.514-.478-.154-5.21-10.765.165-.493 1.116-.718-.48-.993-5.665 2.99.48.994 1.256-.535.46.165 2.147 4.44-5.807 3.064-2.148-4.438.165-.494 1.157-.74-.48-.992-5.687 3zM550.71 423.658l.305 1.066 1.628-.39.432.198 1.275 4.437c-.55.217-.952.368-1.168.435-3.32 1.037-6.004-.613-7.128-4.53-1.093-3.806.24-6.687 3.455-7.692.625-.195 1.237-.27 1.89-.21l.434.29 1.072 2.177 1.574-.492-1.06-3.697c-1.735.02-3.334.26-4.758.704-4.787 1.496-7.015 5.44-5.734 9.9 1.3 4.523 5.26 6.7 9.788 5.285 1.574-.493 3.083-1.296 4.575-2.403l-1.454-5.068.257-.413 1.22-.5-.306-1.066-6.298 1.968zM537.372 436.17l6.428-2.024-.32-1.064-1.473.346-.45-.24-3.483-11.577.253-.412 1.407-.563-.32-1.064-6.428 2.025.32 1.064 1.452-.338.435.196 3.484 11.578-.24.456-1.385.554.32 1.064zM502.572 441.863l11.316-1.036-.345-4.047-1.433.13-.155 2.432-.243.387-4.888.446-.502-5.88 2.74-.252.322.29.35 1.61 1.242-.115-.447-5.25-1.243.115-.073 1.65-.268.34-2.74.252-.458-5.383 4.194-.384.3.27.484 1.962 1.475-.136-.3-3.55-10.622.97.095 1.11 1.295-.005.364.287 1.028 12.056-.307.392-1.276.23.095 1.108zM485.727 426.947l.02 1.112 1.228.092.345.357.21 12.053-.332.37-1.225.133.02 1.112 5.985-.104-.02-1.112-1.27-.09-.345-.358-.1-5.72 6.112-.107.1 5.72-.31.37-1.267.134.02 1.113 5.965-.104-.02-1.113-1.23-.092-.343-.357-.21-12.054.33-.37 1.226-.135-.02-1.113-5.965.104.02 1.113 1.272.092.323.358.087 4.97-6.113.108-.087-4.97.332-.37 1.267-.136-.02-1.112-5.985.105zM472.88 426.516l-.038 4.02 1.46.017.36-2.426.342-.29 2.54.03-.117 12.35-.364.36-1.376.095-.01 1.112 6.326.076.01-1.112-1.375-.13-.356-.367.116-12.35 2.54.03.314.3.337 2.434 1.458.017.038-4.018-12.206-.146zM453.397 439.355l11.06.548.18-4.058-1.402-.07-.456 2.387-.285.35-4.778-.237.258-5.897 2.677.132.275.333.135 1.642 1.215.06.23-5.26-1.214-.06-.278 1.623-.303.302-2.677-.133.236-5.397 4.1.203.256.308.22 2.013 1.442.07.156-3.56-10.38-.514-.05 1.11 1.252.176.316.334-.53 12.088-.345.346-1.262.05-.048 1.11zM428.05 432.796l5.87 1.98.324-1.06-1.282-.55-.208-.45 3.536-11.518.407-.197 1.35.336.324-1.058-5.87-1.98-.324 1.06 1.262.544.22.41-3.535 11.515-.42.24-1.33-.33-.324 1.06zM417.612 428.742c1.073.885 2.315 1.567 3.572 1.99 3.22 1.086 5.773-.103 6.563-2.674.39-1.275.12-2.654-.772-3.838-.906-1.21-1.848-1.887-2.33-2.502-.828-1.04-1.18-1.875-.874-2.87.366-1.188 1.514-1.753 2.948-1.27.628.212 1.047.47 1.34.784l.183.396-.355 2.36 1.413.477 1.074-3.5c-1.09-.893-2.247-1.57-3.465-1.98-2.807-.946-5.204.296-5.94 2.694-.326 1.06-.18 2.276.465 3.423.618 1.09 1.43 1.77 2.08 2.466 1.156 1.247 1.625 2.263 1.267 3.43-.366 1.188-1.574 1.735-3.165 1.2-.608-.206-1.145-.507-1.634-.887l-.155-.41.482-2.698-1.494-.504-1.2 3.912zM404.346 423.188l9.996 4.997 1.672-3.665-1.265-.632-1.308 2.013-.392.207-4.318-2.158 2.43-5.327 2.42 1.21.13.417-.49 1.567 1.1.55 2.167-4.753-1.1-.55-.858 1.384-.39.155-2.42-1.21 2.223-4.873 3.703 1.85.12.388-.54 1.943 1.3.653 1.468-3.216-9.383-4.69-.458 1.002 1.09.67.166.436-4.977 10.916-.448.18-1.182-.467-.457 1.003zM402.662 404.997l-5.03-3.466-.585.93.99.82.086.493-6.333 10.065-.466.113-1.11-.63-.585.93 5.03 3.465c1.723 1.187 3.194 1.793 4.835 1.62 2.136-.214 3.957-1.46 5.364-3.695 2.504-3.98 1.8-7.888-2.198-10.643zm-2.098.076l1 .69c2.74 1.886 2.98 4.526.74 8.09s-4.667 4.39-7.407 2.504l-1-.69 6.667-10.594zM440.642 420.763l-.224 1.088 1.167.376.258.383-2.438 11.837-.395.284-1.213-.152-.224 1.088 5.685 1.257.224-1.088-1.207-.382-.25-.426 1.03-4.998.343.075c2.035.45 2.363 1.52 2.553 3.77.104 1.135.08 2.176.945 3.296.398.53 1.088.96 1.956 1.152.625.138 1.324.223 2.052.27l.22-1.068-.262-.058c-1.35-.298-1.886-.764-2.06-2.08-.153-1.195-.067-2.43-.49-3.546-.317-.813-.917-1.386-1.834-1.845 2.374.037 3.83-.987 4.25-3.03.508-2.467-.83-4.156-3.955-4.847l-6.128-1.355zm3.872 2.18l.928.205c1.954.432 2.772 1.68 2.397 3.502-.422 2.045-1.642 2.75-3.798 2.273-.223-.05-.464-.102-.722-.183l1.194-5.797zM518.608 424.233l.173 1.098 1.33-.11.406.253 1.883 11.943-.3.42-1.294.334.173 1.098 6.265-1.07-.173-1.098-1.373.12-.413-.297-.795-5.042.378-.064c2.244-.383 2.973.482 3.997 2.493.525 1.013.886 1.988 2.18 2.687.602.334 1.466.462 2.422.3.688-.12 1.432-.315 2.192-.56l-.17-1.075-.29.05c-1.487.253-2.206.03-2.868-1.122-.598-1.047-.966-2.227-1.81-3.096-.624-.63-1.448-.925-2.552-.99 2.436-.9 3.542-2.423 3.217-4.484-.393-2.488-2.382-3.53-5.827-2.94l-6.755 1.153zm4.757.5l1.022-.175c2.155-.368 3.45.47 3.74 2.306.325 2.063-.66 3.197-3.036 3.603-.244.042-.51.087-.803.114l-.922-5.847z"/> + <path d="M467.82 625.48c.625-.937 7.187-11.875 7.187-11.875l-3.598-2.538c-1.106 3.094-5.153 4.1-5.778 7.85s2.813 7.5 2.188 6.563z" fill-rule="evenodd" transform="matrix(-1.48 0 0 1.54 1072.67 -524.06)" stroke="#000" stroke-width="1.16" fill="url(#i)"/> + <path d="M475 622.98s1.25-5.312-2.812-5.937c-4.063-.625-6.214 2.973-5.625 1.562.654-1.567 3.125-3.125 3.437-8.437.313-5.313-.312-8.125-.312-8.125s1.562-6.876 8.125-5.938c6.562.938 6.875 5.938 6.875 7.813s-.625 2.812-.625 2.812L475 622.98z" fill-rule="evenodd" transform="matrix(-1.48 0 0 1.54 1073.61 -525.43)" stroke="#000" stroke-width="1.16" fill="url(#j)"/> + <path d="M396.85 605.91s-75.43-21.26-74.99-102.14l.58-106.91h148.82l.584 106.3c.44 80.882-74.993 102.76-74.993 102.76z" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.48 0 0 1.54 -99.33 -521.46)" stroke="#fff" stroke-width="3.867" fill="#0072c4"/> + <g fill-rule="evenodd"> + <path d="M392.306 128.963c.184 0 1.534-1.282 2.77-2.412 1.727-.864 3.324-2.08 5.08-2.896 1.307-.757 3.89-1.344 5.077-1.93 1.555-.815 2.824-1.752 4.156-3.38.158-2.16.46-3.71.46-6.275 1.837-.885 3.467-1.742 5.078-2.415 2.31-.65 2.812-1.574 5.08-1.93 1.46-.51 3.87-.485 6-.485 2.297 0 3.747 1.633 5.81 2.02 2.447.986 3.59 1.67 5.54 3.38 1.102 1.394 1.788 2.528 3.667 3.578 1.488.763 2.88 1.92 4.617 2.413 1.905 1.105 3.597 1.745 5.077 3.38 1.355.965 1.915 2.397 3.23 3.38 1.526 1.264 2.972 2.403 4.618 3.38 1.978 1.324 3.94 2.33 7.143 2.043 1.697-.1 3.523-.296 5.54.08 2.26 0 4.464-.04 6.464.485 2.355 0 4.26.318 6.463.482 2.064.386 4.168.483 6.463.483 2.002.522 4.205.482 6.464.482h12.926c2.352 0 4.733.096 6.463.484 2.33 0 4.333-.22 6.463-.485 2.507 0 4.42-.46 6.926-.482h7.85c2.014.552 4.59.93 6 1.93 1.848.528 2.768 1.404 4.616 1.932 1.416.726 3.565 1.875 4.617 3.378 1.303 1.363 2.64 3.314 3.693 5.31 1.285 1.855 1.774 3.974 2.77 6.276.528 2.205.895 4.302.923 6.757.502 2.093.464 4.396.464 6.758-.528 2.2-.643 4.65-1.386 6.758-.08 2.356-.55 4.487-.923 6.276-.41 1.975-.894 3.246-.924 5.792v6.758c-.16 2.217-.646 3.845-.922 6.275-1.117 2.108-2.186 4.573-3.23 7.24-1.537 1.072-2.87 2.595-3.694 3.863-.985.61-1.556 1.532-1.386 1.93 1.845.643 1.386 1.927 1.386 4.345.24 1.86.42 4.17.923 6.276.17 2.303.662 3.712 1.385 5.308.728.95.87.483-.924.483-1.334 1.047-2.684.5-3.23-1.448-1.078-1.3-1.432-2.87-1.847-5.31-.255-2.234-.612-4.412-1.385-5.79-.236-2.722-.96-2.694-3.693-2.898-1.3-1.152-3.017-1.45-5.54-1.45-2.513 0-2.724-.255-2.77 2.416v6.758c-.434 1.96-1.387 3.547-1.847 5.31-1.377 1.008-2.093 2.7-3.693 3.86-.762 2.193-1.87 2.574-4.156 2.897-.8-.998-2.102-2.3-2.77-3.378 1.293-2.17 2.422-2.496 3.233-4.827.98-1.922 1.556-3.17 2.306-4.828-.985-1.516-1.87-2.2-2.77-4.345-.76-1.168-1.81-3.68-2.307-5.31-1.517-.527-3.904-.612-5.08-1.448-2.24-.522-2.866 1.93-5.54 1.93h-6.462c-2.858 0-3.572 1.596-6.002 1.45-.714.23-2.445-.103-5.08 0-1.928.67-4.252.48-6.462.48-2.342-.03-4.258-.568-6-.965-2.122-.58-4.232-1.17-6.464-1.447-2.71 0-3.72.216-5.54 1.447-1.44.855-3.528 2.807-5.08 3.862-.655 1.602-.996 4.313-1.846 6.276-.49 1.883-1.288 3.077-1.846 4.828-.625 1.633-1.216 3.314-1.385 5.793-.156 3.253-.867 2.855-2.77 1.93-.793-1.346-2.057-2.827-2.77-4.344.42-2.457.893-3.68.924-6.276-.45-1.874-1.498-1.813-2.77-.483 0 2.528.117 4.477-.924 5.793-.52 1.995-1.356 2.857-2.77 3.862-.69 1.792-2.226 2.612-3.693 3.38-.235-.082 0-.647 0-1.93-1.106-2.208-.08-4.04-.08-6.76.03-2.437-.11-4.052.597-6.275 0-2.34-1.085-4.566-1.44-6.275-.858-1.793-1.353-2.68-3.693-3.38-1.645-.653-4.014-1.537-5.08-2.896-1.34-1.74-2.195-2.454-4.153-3.38-2.124-.77-3.155-1.473-4.616-2.414-1.427-1.574-2.587-2.256-3.232-4.343-.964-1.485-1.13-4.242-1.847-6.277-.157-2.12-.764-4.088-1.384-5.792-.274-2.12-.608-3.67-1.385-5.793-.257-1.984-.83-4.06-1.384-6.273 0-2.362.04-4.667-.462-6.76v-6.757c-.332-1.95-.455-4.807-.923-6.276 0-2.626-.28-4.11-.923-5.793-1.056-1.704-1.142-2.47-2.77-2.895-1.176 1.5-3.114 2.112-5.54 2.415-1.695-.387-4.086-.638-6.002-1.45-1.85-.455-3.117-1.187-4.617-1.93-.82-1.262-1.8-2.69-2.77-3.862-.286-2.52-.836-3.82-.923-6.275 0-1.843.044-.865 1.846-3.38z" fill="#bcbcbc"/> + <path d="M419.65 146.357l.328-.34c-.742.774-.47.4 1.306-.343.993-.625 2.88-1.727 3.59-2.39.854-.39 2.21-.9 2.938-1.705.91-.97 1.82-1.776 2.938-2.732 1.293-1.097 2.498-1.457 3.918-2.39 1.847-.137 2.516-.928 4.243-.34 1.622.367 2.294.377 3.592-1.025 1.31-.84 2.753-1.654 3.265-3.073v-2.046c-.025 2.23-.427 2.953-1.96 3.753-1.067 1.224-2.398 2.608-2.937 3.756-1.037 1.5-1.257 2.34-2.285 3.072-.844 1.075-2.292 1.644-2.61 3.412.464.813.04 1.258.977 1.366.946.812 1.93.466 3.265 0 1.328-1.537 1.925-2.53 2.612-4.095 1.095-1.497 1.708-2.21 2.284-3.414 1.135-.823 1.856-1.464 2.286-2.73 1.313-.77 2.393-1.578 3.263-2.39.976-.628 1.494-1.138 2.938-1.366-.02 1.833-.29 2.7-.978 3.755-.325 1.9-.26 2.802.326 4.096.938.58.772 1.084 1.306 2.39.532-1.13.802-3.415.98-4.78v-.342c0 1.493.136 3.473-.327 4.438.022 1.99.464 2.878.98 4.437.55.752.938 1.24 1.632 1.707.064-1.97.556-3.267.652-5.12.455 1.43.303 3.32.653 4.778.118 1.607.7 2.852 1.306 4.097.744.46.997 1.813 1.305.683.773-2.402.792-5.03 1.306-7.51.094-1.26.195-3.133.654-4.096l-.653 4.095c.094-1.26.195-3.132.654-4.095v-.34c.305 1.797.593 3.533.653 5.46 0 1.536-.1 3.1.327 4.437 1.086-.503 1.715-1.68 2.285-3.073.87-1.65 1.465-2.382 2.61-3.754l-2.61 3.754c.87-1.65 1.465-2.382 2.61-3.754v-.34c-.18 1.573-.325 3.056-.325 4.777 0 1.574-.018 3.358.326 4.438.385 1.81.91 2.145.98 4.095 0 .95-.124 1.92.327 2.39 1.406.367 1.41-.452 1.632-2.39.017-2.202.58-3.703.65-5.802 0-2.59.367.316.654 1.366.66 1.52.864 2.872.98 4.437 0 .95-.123 1.92.326 2.39 1.26-.523 1.76-1.996 2.612-2.732.65-1.616 1.322-2.33 1.96-3.41 1.69-.355 1.607-1.05 1.63-3.073 0-1.633-.127-3.352.328-4.78.523-1.483 1.016-3.134 1.305-4.436.61-.364 1.27.538 1.63 1.366.716 1.1.654 2.705.654 4.437.314 1.51.942 2.69 1.632 4.096.818 1.577 1.483 2.533 2.285 3.413.344 1.08.327 2.864.327 4.437 1.272-1.445 1.515-3.598 1.632-5.802-.17-1.5-.202-3.368-.653-4.78-.052-1.503-.32-3.055-.653-4.095-1.102-.53-1.276-1-.326-2.39 1.05-.908 2.185-.557 3.918-.34.876.915 1.236 1.405 1.305 3.41 0 1.82.077 3.218.653 4.44.64.982 1.272 1.657 1.63 3.413.502.428.89 1.12 1.634.342.41-1 .65-3.062.98-4.097.318-1.295.893-1.93 1.632-2.39 0 1.9-.022 3.066.653 4.44.638 1.524 1.082 2.097 1.63 3.755.697.485.786 1.53 1.633 2.046.2-1.602.327-3.437.327-5.46v-4.78c.12-1.625.514-2.54.98-3.752 1.05 1.31.98 1.852.98 3.753 1.073-.4 1.253-1.17 1.63-2.387.767-.675.976-.99 1.306.68.23 1.787.665 3.395.98 5.122.67.788 1.447 2.696 2.285 3.414.575.975 1.22 1.92 1.96 2.73.508 1.123.638 1.71 1.958 2.047 0-2.31.077-4.627-.326-6.826 0-1.96-.428-2.66-.653-4.437-.545-1.177-.865-2.912-.654-3.412 1.53 1.517 2.22 2.398 2.938 4.096.766 1.64 1.41 2.743 1.958 4.437.755.648 2.092 2.59 2.612 3.414 1.165 1.04 1.733 2.126 2.938 3.07.623.588 1.94.916 2.285.684-.06-2-.364-3.72-.98-5.46-.02-1.91-.458-2.948-.978-4.096-1.285-1.108-2.26-1.863-2.94-3.414-.505-.432-.604-.755-.653-1.705 1.876 1.552 3.187 2.936 4.57 4.777.936 1.213 1.412 1.763 2.613 2.39.65.73 2.545 1.638 3.916 2.048.823 1.09 1.922 1.718 3.265 2.05l-3.264-2.05c.823 1.09 1.922 1.718 3.265 2.05v.34c-.163-2.135-.947-3.695-1.958-5.462-.85-1.868-1.63-2.56-2.938-3.755-.854-1.352-1.81-2.15-3.264-3.07-.9-1.06-2.25-2.82-2.938-3.415 1.392-.874 3.027.592 4.57 1.366 1.274 1.38 2.465 3.18 3.264 4.095.87 1.753 1.537 2.838 2.94 4.437 1.405.834 2.38 1.66 3.59 2.73 1.87.518 1.124-.166.653-1.706-.647-1.926-.072-1.956 1.305-.682.908.647 1.92 1.725 3.263 2.39.58.752 1.457 1.17 2.286.682.345-.482.326-.427.326-1.024-.687-2.118-1.325-3.767-2.938-4.438-.74-.942-1.942-2.063-2.937-3.072-.65-1-1.408-1.576-1.96-2.73l1.96 2.73c-.65-1-1.408-1.576-1.96-2.73h-.326c1.97.073 2.672.573 4.242 1.366 1.12.408 2.327 1.475 2.94 2.388.635.845 1.655 1.753 2.284 2.73 1.003.773 2.11 1.652 3.265 2.39 1.087 1.425 1.282 2.352 1.307 4.44.626.964.738 2.938.978 4.094-.24 1.877-.882.403-.978-.683-.277-1.507-.85-1.428-1.96-1.023 0 2.062.228 2.626.98 4.096-.204 1.41-.672 2.44-1.306 3.414-.76.454-.925-1.004-1.63-1.707-.076-2.11-.67-2.343-1.96-3.414v1.366c.728 1.457 1.497 2.785 1.632 4.78.504 1.52.653 2.482.653 4.436 0 1.67.027 3.3-.326 4.78 0 1.85-.307 2.645-.328 4.437v9.558c-.25 1.207-.326 2.78-.326 4.436l.326-4.438c-.25 1.208-.326 2.782-.326 4.437v.34c-.62-1.715-1.296-3.267-1.632-5.12-1.058-1.047-1.73-2.126-2.286-3.413-.25-1.464-.406-3.253-.653-4.438-.46-1.203-.947-2.486-1.96-1.706-.4 2.544.106 4.06.98 6.484.513 1.608.457 2.872.98 4.438.757 1.805 1.365 2.064 0 4.095-.673 1.084-1.034 1.427-1.306 2.732-1.208.632-1.51.913-1.632 2.39-.406-1.328-1.393-2.884-1.96-4.438-.584-1.634-1.306-3.313-1.63-4.778-.793-1.143-1.722-2.992-2.613-3.755-.82-1.102-1.997-2.94-2.612-4.095-1.25-1.457-1.526-2.3-2.61-3.07-.28-.683-.612-1.534-1.306-1.025 0 1.632-.13 3.35.326 4.777.33 2.013.91 3.13.98 5.12v3.756c-.785-1.923-1.622-3.64-2.286-5.462-.713-1.018-1.41-3.003-2.285-3.754-.555-1.324-.988-2.422-1.632-3.412-.167-.992-.606-.98-.98-1.707.022 1.935.61 2.613.98 4.095.636 1.3.84 3.48.653 4.096-.823-2.392-1.568-5.008-2.612-7.167-.99-1.402-1.955-3.204-2.61-4.437-.972-1.172-1.97-1.21-2.938-2.048-.882-.437-1.726-.926-2.285-1.707.257 1.8.927 2.924 1.305 4.438.215 1.716.97 3.09 1.306 4.438-.363 2.335-.89-.648-1.306-1.707-.344-1.922-.98-2.99-1.632-4.097-.875-.622-1.67-1.727-2.612-2.39-.916-.367-.653.067-.653 1.366 0 2.112.077 3.507.653 4.78.652 1 .653 2.306.653 4.094-.056 1.68-.325 3.03-.325 4.78V188c-.75-1.45-1.46-2.275-1.96-4.096-1.132-1.55-1.468-2.688-2.285-4.436-.724-.305-1.902-.556-2.61 0 .127 1.727.89 2.487.98 4.436-1.302 1.333-1.067 1.713-1.96-.34-.744-1.557-1.61-1.484-2.61-2.39-1.64-.214-1.12-1.263-1.634-2.73 0-1.315.13-2.642-.326-3.756-1.79 0-2.816-.064-3.917 1.025-.518 1.08-.335 3.033 0 4.436v4.778c-.372 1.196-1.11 1.26-1.306 2.73-.63 1.458-.84 3.066-1.305 4.098-1.163 1.05-.658 1.182-1.306-.683v-10.925c0-1.854.267-2.758.326-4.435-.677-1.415-.86-1.68-2.938-1.707-.506.882-.313 2.52 0 3.414 0 1.654.075 3.23.326 4.436 0 1.813.214 2.912.327 4.438-.062 1.81-.4 3.25-1.306 4.096-1.177.308-.128 1.057-1.305 1.366-1.18-.592-2.568-1.396-3.59-2.39-1.27-.404-2.466-.682-4.244-.682-2.164-.028-2.2-.29-2.938-2.05-.662-1.88-.973-3.514-1.306-5.46-.718-1.598-.886-2.687-1.306-4.437-.548-1.043-1.133-1.83-1.957-2.39-.473 1.726-.917 3.17-.98 5.12-.382.8-.462 2.834-.652 3.754-.655-1.01-.912-2.995-1.305-4.435-.62-2.07-1.148-3.414-3.265-2.73-2.197.027-2.26.09-2.286 2.39.946 1.48 1.956 2.918 2.612 4.094v4.778c0 1.973.115 2.544-1.306 3.072-.54-2.048-1.688-4.003-2.938-5.803-.17-1.392-.6-1.024-1.957-1.024-.91 0-1.837-.128-2.286.34 0 1.19.097 2.842 0 3.074-.788.145-1.106-.008-1.633-.683-.57.993-.14 2.393 0 3.755-.415 1.518-.91 2.905-1.633 3.753-.144-.454-.47-.342 0-.342-2.24-.86-3.993-1.39-5.875-2.045-1.134.146-1.957 1.19-2.613 2.046-1.66.56-2.393 1.002-4.244 1.025-1.776 0-2.64.28-4.244.342-1.155.262-2.662.34-4.244.34-.878-.26-2.41-.268-2.94-.682.675-1.005 1.426-1.513 1.96-3.07.894-.637 1.732-1.452 2.612-2.39.86-.613 1.87-1.883 2.61-2.73.51-1.645 1.21-1.93 2.286-2.732 1.94.076 2.32.692 4.244 1.024 1.88.712 2.92.922 3.918-.34 1.56-.66 2.882-1.69 4.57-2.05 1.307-.653 2.144-1.288 3.264-2.048 1.39-.837 2.05-1.696 3.265-2.73.347-1.392 1.33-2.467.98-4.097-1.767-.462-2.89-.277-3.918.683-1.43 1.177-1.7 1.666-3.265 2.73-1.352.385-1.93.98-3.59 1.366-1.365.476-3.01.342-4.57.342-1.428 0-3.322-.142-4.245.34 1.452-.977 3.197-1.993 4.57-2.39 1.318-.884 1.816-1.332 3.592-1.364.823-1.078 1.673-1.105 1.956-2.73.553-2.02-1.204-1.38-2.61-.684-1.327.244-2.79 1.183-3.918 1.707-1.09.38-2.68.663-4.244.683-.412-.615.322-1.106.653-2.05 1.525-.54 1.77-.738 1.96-2.388-1.73.24-2.39.808-3.92 1.024-1.665.436-3.394.63-5.22.683h-4.572c-1.604-.062-2.47-.342-4.243-.342-1.3-.68-1.306-1.002-1.306-3.072 1.024-1.176 2.02-1.022 3.917-1.022 1.46-.718 2.597-1.1 3.59-1.707 1.183-.254 1.99-.76 1.633-1.364h-4.57c-1.76-.745-.08-1.086.98-1.707 1.587 0 3.225.093 4.243.682 1.963-.076 2.647-.697 4.242-2.05 1.25-1.03 1.864-1.687 3.265-2.388 1.006-1.11 1.956-1.723 2.612-2.73 1.342-1.28 2.23-1.988 2.937-3.072.864-.476 1.392-1.09.98-1.707-2.046.25-2.874.993-4.245 2.048-.796.793-1.57 1.503-2.612 2.048-1.47.874-2.385 1.228-4.242 1.365-1.676 0-2.964-.28-4.57-.34-1.774-.186-.142-.6.325-1.365.686-.48 1.22-1.542.653-2.39-1.365-.475-3.008-.34-4.57-.34h-4.57c-1.725-.067-2.455-.463-3.59-1.025-.353-.958.062-.683 1.305-.683 1.574-.062 2.69-.276 4.245-.683 1.535-.438 1.727-.95 1.958-2.732-1.506 0-3.21.02-4.243-.34h-2.94zM391.376 138.618c-.287-2.52-.836-3.82-.924-6.275 0-1.843.045-.865 1.847-3.38.182 0 1.532-1.282 2.77-2.412 1.726-.864 3.323-2.08 5.078-2.896 1.307-.757 3.89-1.344 5.077-1.93 1.556-.815 2.825-1.752 4.156-3.38.16-2.16.464-3.71.464-6.275 1.836-.885 3.465-1.742 5.077-2.415 2.312-.65 2.812-1.574 5.08-1.93 1.46-.51 3.872-.485 6-.485 2.298 0 3.747 1.633 5.81 2.02 2.447.986 3.59 1.67 5.54 3.38 1.103 1.394 1.788 2.528 3.668 3.578 1.487.763 2.88 1.92 4.616 2.413.015 1.743.386 1.442-.858 1.442-.132 1.786-.56 1.675-2.286 1.707-1.323-.72-2.267-1.69-2.938-2.732.653-1.773.22 1.435 0 2.048-.84.69-1.338 1.426-2.285.683-.53-1.666-.978-2.817-.978-4.78-.25-2.132-.846-.584-1.307.343-.442 1.72-.24 2.343.326 3.753-1.666 0-2.942-.157-4.245-.34-1.21-.302-2.572.068-3.918.682-1.71 1.073-1.177 1.08-.326 2.39 1.51.444 2.593 1.28 3.92 2.048 1.505-.3 3.08-.635 4.57-1.025 1.555-.54 2.98-.196 4.57 0 .788.414 1.825.497 2.284 1.026 0 1.055.084 2.158-.326 2.73-.68.452-1.324 1.7-2.286 2.047-1.44.825-2.95 1.344-4.57 1.707-2 .076-2.73.515-4.243 1.366-.25 1.725-.753 2.212-2.287 2.73-1.526.667-2.74 1.025-4.57 1.025-.908 0-1.835.13-2.285-.34 1.454-1.66 1.89-2.44 2.612-4.097.282-.69.873-1.134.327-1.707-1.934.076-2.44.063-2.612 2.048-.22 1.798-.91 2.1-2.285 2.73.37-1.664.432-2.943.98-4.436-1.156.262-2.662.34-4.245.34-.99.628-1.4.872-.98 2.05-1.312.456-2.91.175-4.57 0-1.386-.076-.62-.705-1.63-1.366-.663-1.3-1.424-1.616-2.94-1.707-.752.94-2.145 1.33-2.938 2.048-1.43.5-2.34.085-3.59-.683-1.63.05-1.412.576-.98 1.707.622.434-.038.907.98 1.024.938.852 1.74 1.025 3.59 1.025 1.415-.37 2.974-.34 4.57-.34 1.612.05 1.307.43 1.307 2.047-1.054.746-2.59.683-4.245.683-1.576-.196-2.784-.604-3.917-1.024-1.53-.113-2.752-.405-3.918 0-.526.583-2.11.838-.326 1.025.7.66 4.478.342 4.747 1.466.89.99.692 2.29-.83 2.29-.925-.483-1.64-.364-2.286 0-1.086.285-2.377.078-4.274.22 2.477.204-1.8-2.69-2.77-3.862z" fill="#fefefe"/> + <path d="M401.687 127.25c-.108 0-1.083.677-1.96 1.364-1.433.768-2.965 2.075-3.916 2.73-.748.6-.744.862-1.63 1.026 1.555-.22 2.248-.617 3.59-1.366 1.695-.204 3.338-.564 4.244-1.365.85-.298-.064-1.66-.327-2.39zM416.712 111.2c.187 0 .57 1.067 1.304 1.706.47 1.31.903 2.235.98 3.755.4-1.667 1.084-3.008 1.305-4.778-.507-.9-.54-1.32-1.958-1.365 0 .922.108.32-1.63.682z" fill="#bcbcbc"/> + <path d="M349.36 417.73c-.494 0 .87-.492 1.326-.663.364-.767.653-1.31 1.326-1.767 1.107.085 1.65.404 2.21 1.104.93.254 1.265.697 2.43.884.434.366 1.02.408 0 .663-.692.367-1.563.443-2.65.443-1.14.082-1.955.333-2.653.663-1.48 0-1.243.05-1.99-1.326z" transform="matrix(1.48 0 0 1.54 -109.52 -520.08)" stroke="#000" stroke-width=".875" fill="#c4c4c2"/> + <path d="M422.576 111.54v.34c0-.92-.02-.45.327 1.366.54 1.145.653 2.373.653 4.097.857-.64 1.572-1.916 1.96-3.073 0-2.695-.366-2.536-2.94-2.73zM434.66 150.79h.327c-.96 0-.42.06 1.306-1.024 1.117-.778 2.03-1.93 3.592-2.39 1.51-1.24 2.673-1.82 4.242-2.388.766-.367 1.44-1.005 2.286-.34-.243 1.683-.522 2.32-1.96 3.07-.742.973-1.912 1.54-2.936 2.048-1.062.488-2.23.513-2.612 1.707-1.776.817-1.994.68-4.244-.683zM440.865 160.692c.583-.46 2.627-2.592 3.59-3.412 1.09-1.503 2.193-2.653 3.265-3.414.952-1.465 2.17-2.446 2.94-3.755.906-1.147 1.573-2.12 2.61-3.412 0 1.492-.136 3.47.325 4.437 0 2.062-.227 2.626-.978 4.096-.74 1.21-1.294 2.01-2.938 2.732-1.484.822-2.373 1.11-3.592 2.047-.93.597-1.897 1.192-2.94 1.706-.932.42-.504.236-2.283-1.024zM430.746 168.54h.326c-.96 0-.42.058 1.306-1.025 1.393-1.457 2.503-1.963 4.245-2.73 1.325-.108 2.928-.452 3.917-1.025.79-.146 1.34-.648 1.958 0 1.025 1.45 1.307 1.858-.327 2.73-.78.694-2.158 1.392-3.262 1.708-.815.702-2.43.746-3.918 1.024-1.334 0-2.075.157-2.612-.683l2.612.682c-1.334 0-2.075.157-4.244-.683zM444.78 168.54v-.342c0 .953-.04.448.653-1.366 1.224-1.91 1.684-2.963 3.265-3.414.74-.936 2.023-1.178 3.59-1.707.59 1.027.137 2.223 0 3.415-.425 1.275-1.59 2.174-2.284 3.073-1.018.723-1.433 1.418-2.938 1.706-1.246 0-.585-.032-2.286-1.365z" fill="#bcbcbc"/> + <path d="M412.788 124.16c0 .942-.73 1.706-1.632 1.706-.9 0-1.632-.764-1.632-1.707 0-.944.73-1.708 1.632-1.708.902 0 1.632.764 1.632 1.707z"/> + </g> + <g stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" stroke="#002b0d" stroke-width="1pt" fill="#005120"> + <path d="M351.79 479.6h.884c-2.77 0-1.115-.185 3.535 3.535 1.947-1.623 1.924-1.842 3.535.884.93 1.55 1.203-.16 2.65-1.768.7 3.21 1.146 6.578 3.537 3.535 2.73 0 5.59-.227 7.07.884 1.79 3.326 1.205-.563 2.653.885 3.892.467 3.818-3.338 8.057-4.322 2.635 3.293 3.79.76 7.072-.883 2.438.682 4.736 4.38 5.2.785 1.996-3.256 2.17-2.98 3.536 0 1.94 1.748 2.76-.874 4.42-1.767 2.958 1.73 6.258 1.97 10.606.884.736 2.944 2.592 1.667 4.42.883 3.91 1.643 5.273 2.146 9.722 0 2.204-2.604.956.073 2.65 1.768 3.297-1.023 2.387-1.24 6.19-.884 3.82 0 4.13-.093 5.302-2.652 1.92 1.92 2.614 3.304 5.303.884 4.12.12 2.846.52 5.304-.884 1.818 4.026 2.245 1.117 4.42 2.65-1.433 3.632-3.633 5.335-6.188 7.072-1.7 2.816-2.764 5.857-6.188 7.072-2.498 2.548-5.16 4.025-7.955 6.187-3.832.957-8.05.883-12.375.883H388.03c-2.64 1.32-6.96 1.948-10.608 2.65-4.075 0-8.694.05-11.49-.883-1.895-1.894-5.22-4.01-7.07-6.187-1.875-1.51-1.93-4.46-3.537-6.187-1.48-2.53-1.936-6.486-3.535-8.84V479.6z" transform="matrix(1.48 0 0 1.54 -103 -521.43)"/> + <path d="M437.52 487.56v.884c0-2.47.11-1.158-1.768 3.535-.38 1.14-1.212 1.407-2.652 1.767M429.57 491.09h.884c-3.273 3.09-5.476 4.515-6.188 7.955l6.188-7.955c-3.273 3.09-5.476 4.515-6.188 7.955M417.19 486.68c0 .08-.124 3.153-.884 4.42M413.66 492.86v.884-.884zM406.59 487.56h.884-.884c.294 0 .59 0 0 0zM357.09 487.56c.422 0 2.16 2.806 4.42 4.42-.563 2.585-1.427 5.577 0 7.954M364.16 492.86c.422 0 2.16 2.807 4.42 4.42l-4.42-4.42c.422 0 2.16 2.807 4.42 4.42v.884c0-2.73-.227-5.59.883-7.072.983 1.663 2.224 4.337 2.652 1.768 4.978-.178 7.38-1.576 10.607-2.65 0 1.3-.21.674.884 1.766M443.71 488.44h.884c-1.667 1.39-2.946 4.222-4.42 6.187M407.47 485.79h7.07" transform="matrix(1.48 0 0 1.54 -103 -521.43)"/> + </g> + <path d="M413.61 239.342c-15.702 0-20.906 16.41-36.61 16.41-.302 0-.588-.024-.883-.035v.993c-.06 11.375.835 21.97 2.466 31.864 14.485-1.058 19.866-16.41 35.028-16.41 15.704 0 20.945 16.446 36.65 16.446s20.943-16.447 36.646-16.447 20.944 16.447 36.648 16.447 20.944-16.447 36.647-16.447c15.123 0 20.52 15.244 34.92 16.373 1.724-10.158 2.635-21.07 2.574-32.784v-.037c-.294.012-.58.037-.883.037-15.702 0-20.906-16.41-36.61-16.41s-20.944 16.41-36.647 16.41-20.944-16.41-36.648-16.41-20.944 16.41-36.647 16.41-20.944-16.41-36.647-16.41zM413.61 303.406c-12.214 0-18.09 9.902-27.485 14.313 3.282 9.047 7.25 17.283 11.664 24.836 4.46-3.374 9.202-6.292 15.822-6.292 15.695-.012 20.934 16.4 36.64 16.4 15.705 0 20.945-16.41 36.65-16.41 15.702 0 20.943 16.41 36.646 16.41s20.944-16.41 36.648-16.41c6.472 0 11.15 2.794 15.527 6.07 4.415-7.517 8.398-15.738 11.7-24.725-9.244-4.47-15.123-14.203-27.227-14.203-15.703 0-20.944 16.41-36.647 16.41s-20.945-16.41-36.65-16.41c-15.702 0-20.943 16.41-36.646 16.41s-20.944-16.41-36.648-16.41zM486.894 367.458c-15.703 0-20.944 16.448-36.647 16.448-14.85 0-20.347-14.703-34.182-16.3 18.49 20.597 39.458 33.068 53.757 39.92 4.836-3.752 9.844 4.564 17.072 4.564 7.178 0 12.16-8.36 16.963-4.636 14.14-6.885 34.853-19.375 53.242-39.775-13.384 1.956-18.932 16.225-33.558 16.225-15.703 0-20.944-16.447-36.648-16.447z" fill-rule="evenodd" fill="#fff"/> + <g transform="matrix(1.18 0 0 1.18 -406.92 -18.22)"> + <path d="M332.54 541.35c1.744-.58 10.173-3.197 10.464-2.907.29.29 16.278 15.697 16.278 15.697l-13.37 2.616-13.372-15.406z" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103M416.54 471.32c0-.29 6.686-31.127 6.686-31.127M418.83 471.37c.29-1.744 5.558-31.175 5.558-31.175M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035M415.96 462.58c1.453 0 4.36-1.163 4.36-1.163M416.83 459.09c0-.29 4.36-1.163 4.36-1.163M417.41 454.73l4.65-.872M419.45 450.95c0 .29 3.197.29 3.197.29M420.32 447.46c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(1.06 0 0 1.03 276.8 -177.96)" stroke="#512007" stroke-width=".594" fill="none"/> + <path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103M416.54 470.13c0-.29 6.686-29.94 6.686-29.94M419.45 467.81c.29-1.744 4.94-27.614 4.94-27.614M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035M415.96 462.58c1.453 0 4.36-1.163 4.36-1.163M416.83 459.09c0-.29 4.36-1.163 4.36-1.163M417.41 454.73l4.65-.872M419.45 450.95c0 .29 3.197.29 3.197.29M420.32 447.46c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(-1.25 0 0 1.76 1290.4 -502.06)" stroke="#512007" stroke-width=".41" fill="none"/> + <path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103M416.54 470.13c0-.29 6.686-29.94 6.686-29.94M419.45 467.81c.29-1.744 4.94-27.614 4.94-27.614M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035M415.96 462.58c1.453 0 4.36-1.163 4.36-1.163M416.83 459.09c0-.29 4.36-1.163 4.36-1.163M417.41 454.73l4.65-.872M419.45 450.95c0 .29 3.197.29 3.197.29M420.32 447.46c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(-1.25 0 0 1.3 1321.3 -301.92)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M395.32 572.16c0-.29.872-72.96.872-72.96s2.616-.29 2.616 0-.29 72.67-.58 72.96-3.2.58-2.908 0zM423.81 502.4c0 .582-.582 61.333-.582 61.333l-2.035 2.326.582-63.66h2.035z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <path d="M363.06 560.24s2.907 29.94 36.335 29.068 42.73-30.23 42.73-30.23-14.244-.582-14.535-.582c-.29 0-11.627 13.953-26.16 13.662s-19.185-3.78-22.383-6.685c-3.197-2.907-6.104-7.267-6.104-7.267l-16.86-6.686.873 6.395 6.104 2.325zM453.3 557.13c-.29-.872-1.007-3.866-1.007-3.866v-3.488l1.61-3.532s-25.29 3.623-25.29 3.914c0-.335-.156 6.885-.156 6.885l24.843.087z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <path d="M448.52 549.78l-.58 6.104h4.068l-.29-6.104h-3.198zM444.16 550.07l-.29 6.394 2.615-.29.29-6.104h-2.615zM439.8 556.46v-4.94l2.616-.873.29 4.94-2.906.873zM434.85 556.18l.582-4.36 2.906.29.29 4.65-3.778-.58zM429.33 556.18l.29-3.78 2.908-.29v4.36l-3.198-.29zM361.89 559.95c.872 0 7.558 1.453 7.558 1.453l6.976 9.302" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M366.84 561.12c.29.29 6.104 19.766 34.01 19.766s34.59-22.09 34.59-22.09" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M439.8 559.37s-13.37 29.068-38.95 27.033c-25.58-2.034-29.65-11.627-31.685-16.568-2.035-4.942-3.197-9.01-3.197-9.01" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M373.23 558.21c.29-1.745.29-54.357.29-54.357l-1.744-.29-.29 53.775 1.744.872zM331.66 541.06l22.09 10.755-.58 1.453s-21.22-9.883-21.22-10.174c0-.29.29-1.453-.29-2.034z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <path d="M341.84 537.86c0 .872 3.198 18.603 3.198 18.603s2.035.29 2.035 0-3.49-18.312-3.49-18.312l-1.743-.29zM362.18 538.44c1.163 0 20.93-3.197 20.93-3.197l-.292 3.197-19.475 2.035-1.163-2.035z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <path d="M365.09 514.32c.58 0 6.976 3.198 9.592 2.326s.872-2.907 1.453-2.907c.582 0 2.616 1.452 3.78.29 1.162-1.163 2.034-4.65 1.453-4.36-.582.29-15.988 5.813-16.278 4.65z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/> + <path d="M362.48 521.58c1.163.29 23.836-6.104 23.836-6.104s0 2.035-.29 2.035-23.546 6.105-23.546 6.105v-2.035z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <path d="M415.09 512.57s1.454 3.488 2.907 2.907 2.907-1.744 2.907-1.744 1.163 2.907 3.197 2.325c2.036-.58 3.2-3.78 3.2-3.78s2.033.583 2.905.292c.873-.29 2.035-4.94 2.035-4.94l-17.15 4.94zM413.34 540.77c-.29.58 1.454 2.035 2.907 2.035s2.035-2.035 2.325-1.454c.29.583.29 3.2 4.07 2.327s3.78-3.488 3.78-3.488-1.164.87 1.452 1.16c2.616.292 5.232-3.778 4.942-3.778-.29 0-18.894 3.49-19.476 3.198z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/> + <path d="M363.35 513.15c-.29 1.163.29 2.617.29 2.617l18.894-6.395s.872-1.454 0-1.454-19.475 5.814-19.184 5.232zM388.35 509.08c.58 0 19.475-6.104 19.475-6.104s.29 2.616 0 2.616-17.73 5.232-17.73 5.232l-1.745-1.744z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <path d="M413.34 521.88s-2.907 3.197-2.035 7.557c.872 4.36 2.035 8.14 2.326 8.14s3.49-5.814 6.977-6.105 9.883 3.198 9.883 3.198-.872-6.977-.58-10.174c.29-3.198 5.23-8.72 5.23-8.72l-21.8 6.104z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/> + <path d="M386.89 516.64s-.58 2.616-.29 2.616 24.707-6.395 24.707-6.395v-1.743l-24.417 5.523z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <path d="M355.5 551.82s-5.813-.872-5.523.58c.29 1.454 2.907 2.908 3.198 3.78.29.872-.872 4.07.872 3.78 1.744-.292 3.488-1.455 3.488-2.327s-.29-4.94-.29-4.94l-1.745-.873z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#b6b6b4"/> + <path d="M387.76 537.28v2.034l20.93-2.906-.582-1.454-20.348 2.326z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <path d="M363.06 540.77c.29 0 0 2.616 2.325 2.035 2.326-.582 2.907-2.035 2.907-2.035s.58 3.197 3.78 2.907c3.196-.29 4.94-3.78 4.94-3.78s.29 2.617 2.326 1.745 2.616-2.907 2.616-2.907l-18.313 2.616-.58-.58zM363.06 523.62s-2.616.872-1.744 6.104 2.907 8.14 3.197 8.14c.29 0 2.616-4.942 6.104-5.814 3.49-.873 9.593 2.616 9.593 2.616s-.582-4.65.29-9.01c.873-4.362 3.78-7.56 3.78-7.56s-20.348 5.524-21.22 5.524z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/> + <path d="M411.89 538.73l.29 1.744s20.93-2.616 20.93-2.907c0-.29 0-2.034-.29-2.034-.292 0-20.64 3.488-20.93 3.197zM411.6 520.13l.29 2.034 24.708-6.685s.582-1.745.29-1.745-24.707 7.267-25.288 6.395z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <path d="M414.22 510.83s-.29 1.744 0 1.744 18.313-4.36 18.313-4.65c0-.29 1.744-2.036.29-1.745-1.453.29-18.02 5.522-18.603 4.65zM452.88 544.55l-18.03-28.49M432.53 535.83c.29-.872 1.163-18.312 1.163-18.312" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M388.93 509.96c1.163.29 3.198 3.197 4.36 2.616 1.163-.58 2.907-2.325 2.907-2.325s-.29 3.49 2.035 2.907c2.325-.58 2.616-2.906 2.616-2.906s1.744.873 3.197 0c1.454-.87 2.907-5.232 2.326-5.232s-16.858 5.233-17.44 4.942zM388.35 518.39c0 .58-2.907 5.232-2.035 9.592s2.616 8.43 2.907 8.43 4.65-4.65 8.43-5.523c3.778-.873 9.3 2.906 9.01 2.906-.29 0-1.453-4.36-1.453-7.558 0-3.198 4.36-13.08 4.36-13.08l-21.22 5.232zM388.35 539.32c0 .29.872 2.326 2.907 2.326 2.034 0 2.325-2.035 2.325-2.035s-.29 3.49 2.907 3.2c3.196-.292 4.36-3.49 4.36-3.49s.29 1.745 2.906.873c2.616-.873 6.104-3.78 5.813-3.78-.29 0-20.93 3.78-21.22 2.907z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#fecf3e"/> + <use xlink:href="#k" transform="translate(-6.56 7.28)" height="496.063" width="992.126"/> + <use xlink:href="#k" transform="translate(6.56 3.76)" height="496.063" width="992.126"/> + <use xlink:href="#k" transform="translate(0 11.03)" height="496.063" width="992.126"/> + <path id="k" d="M408.98 476.96c0 1.044-.846 1.89-1.89 1.89s-1.89-.847-1.89-1.89.847-1.89 1.89-1.89 1.89.847 1.89 1.89z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" transform="matrix(.04 -1.07 1.02 .04 251.6 667.92)" stroke="#512007" stroke-width=".581" fill="#be0f17"/> + <path d="M398.23 500.07c0-.29 9.01 3.78 9.01 4.07 0 .29 31.975 42.73 32.266 42.73M423.52 504.14l8.14 3.49 2.615 6.393M372.94 503.56c-.29 0 9.01 6.976 9.01 6.976l1.164 5.814M341.26 546c4.07-1.744 32.265-26.452 32.265-26.452M333.7 541.35c3.49-2.907 31.684-26.742 31.684-26.742M386.6 518.68l29.94 49.706M413.01 539.23s3.532 11.71 7.02 13.455 7.557 4.65 7.557 4.65" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M412.61 539.48s2.48 13.793 5.97 16.41 6.976 5.522 6.976 5.522" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M390.96 439.03s3.488 19.185 10.465 23.545c6.976 4.36 12.79 8.14 12.79 8.14" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M390.67 438.74s7.557 15.116 13.952 19.767c6.395 4.65 15.115 9.01 15.115 9.01M366.26 439.9c2.034 3.488 1.744 10.174 4.07 12.5 2.324 2.325 5.813 7.557 5.813 7.557" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M366.84 440.19c1.163 1.744 4.406 10.428 6.395 13.08 1.454 2.326 16.278 17.15 16.278 17.15" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M384.57 471.15c0 1.204-.976 2.18-2.18 2.18s-2.18-.976-2.18-2.18.976-2.18 2.18-2.18 2.18.976 2.18 2.18zM395.32 475.8c0 1.044-.846 1.89-1.89 1.89s-1.89-.847-1.89-1.89.847-1.89 1.89-1.89 1.89.847 1.89 1.89zM408.98 476.96c0 1.044-.846 1.89-1.89 1.89s-1.89-.847-1.89-1.89.847-1.89 1.89-1.89 1.89.847 1.89 1.89zM420.9 472.46c0 .963-.716 1.744-1.6 1.744-.882 0-1.597-.78-1.597-1.744 0-.963.715-1.744 1.598-1.744.884 0 1.6.78 1.6 1.744zM430.49 466.79c0 .883-.846 1.6-1.89 1.6s-1.89-.717-1.89-1.6c0-.883.847-1.6 1.89-1.6s1.89.717 1.89 1.6z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475"/> + <path d="M374.1 404.44c-.872.582-15.406 4.07-13.37 3.78 2.033-.29 13.66 2.906 13.37 2.034s0-5.232 0-5.814zM398.81 400.08c-.582 0-9.012 3.198-8.72 3.198s9.592 2.616 9.3 2.034c-.29-.58-.29-4.36-.58-5.232zM424.1 402.99c-.582.29-10.465 2.616-8.72 2.907s8.43 2.616 8.43 2.035c0-.582 0-4.65.29-4.942z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="red"/> + <path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103M416.54 470.13c0-.29 6.686-29.94 6.686-29.94M419.45 467.81c.29-1.744 4.94-27.614 4.94-27.614M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035M415.96 462.58c1.453 0 4.36-1.163 4.36-1.163M416.83 459.09c0-.29 4.36-1.163 4.36-1.163M417.41 454.73l4.65-.872M419.45 450.95c0 .29 3.197.29 3.197.29M420.32 447.46c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(1.25 0 0 1.3 256.26 -299.49)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103M416.54 471.32c0-.29 6.686-31.127 6.686-31.127M418.83 471.37c.29-1.744 5.558-31.175 5.558-31.175M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035M415.96 462.58c1.453 0 4.36-1.163 4.36-1.163M416.83 459.09c0-.29 4.36-1.163 4.36-1.163M417.41 454.73l4.65-.872M419.45 450.95c0 .29 3.197.29 3.197.29M420.32 447.46c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(1.25 0 0 1.36 225.31 -323.36)" stroke="#512007" stroke-width=".475" fill="none"/> + <path d="M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103M416.54 470.13c0-.29 6.686-29.94 6.686-29.94M419.45 467.81c.29-1.744 4.94-27.614 4.94-27.614M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035M415.96 462.58c1.453 0 4.36-1.163 4.36-1.163M416.83 459.09c0-.29 4.36-1.163 4.36-1.163M417.41 454.73l4.65-.872M419.45 450.95c0 .29 3.197.29 3.197.29M420.32 447.46c.58 0 3.197.58 3.197.58" stroke-opacity=".996" transform="matrix(-1.25 0 0 1.32 1259.2 -307.28)" stroke="#512007" stroke-width=".474" fill="none"/> + <path d="M426.42 558.5l27.614.582.29-2.035-28.486-.29.582 1.743zM427.59 551.23c3.198 0 27.324-4.65 27.324-4.65s.872-2.907 0-2.907-27.324 5.523-27.324 5.523v2.034z" stroke-opacity=".996" fill-rule="evenodd" transform="matrix(1.25 0 0 1.3 259.35 -430)" stroke="#512007" stroke-width=".475" fill="#dd8b59"/> + <use xlink:href="#k" transform="translate(0 5.52)" height="496.063" width="992.126"/> + </g> + </g> +</svg> diff --git a/s/flag/fm.svg b/s/flag/fm.svg new file mode 100755 index 0000000..df0de0d --- /dev/null +++ b/s/flag/fm.svg @@ -0,0 +1,11 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-81.333 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 76.25 0)" stroke-width="1pt"> + <path fill="#6797d6" d="M-252 0H772v512H-252z"/> + <path fill="#fff" d="M259.787 122.985l-32.44 22.214 12.433-35.9-32.475-22.177 40.122.038 12.366-35.92 12.366 35.92 40.12-.026L279.8 109.3l12.43 35.905M259.787 390.052l-32.44-22.214 12.433 35.9-32.475 22.176 40.122-.038 12.366 35.92 12.366-35.92 40.12.027-32.48-22.166 12.43-35.905M103.845 275.367l-24.53 30.73 1.395-37.967-37.54-11.713 38.38-11.695 1.324-37.966 22.328 30.735 38.36-11.755-24.58 30.694 22.383 30.7M415.645 275.367l24.53 30.73-1.395-37.967 37.54-11.713-38.38-11.695-1.324-37.966-22.328 30.735-38.36-11.755 24.58 30.694-22.383 30.7"/> + </g> +</svg> diff --git a/s/flag/fo.svg b/s/flag/fo.svg new file mode 100755 index 0000000..de838d3 --- /dev/null +++ b/s/flag/fo.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-78.015 32h640v480h-640z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="translate(78.02 -32)" stroke-width="0"> + <path fill="#fff" d="M-78.015 32h663.91v480h-663.91z"/> + <path d="M-76.033 218.67h185.9V32h106.23v186.67h371.79v106.67h-371.79v186.67h-106.23V325.34h-185.9V218.67z" fill="#003897"/> + <path d="M-76.033 245.33h212.45V32h53.113v213.33h398.35v53.333H189.53v213.33h-53.113v-213.33h-212.45V245.33z" fill="#d72828"/> + </g> +</svg> diff --git a/s/flag/fr.svg b/s/flag/fr.svg new file mode 100755 index 0000000..bfbea35 --- /dev/null +++ b/s/flag/fr.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#fff" d="M0 0h640v480H0z"/> + <path fill="#00267f" d="M0 0h213.337v480H0z"/> + <path fill="#f31830" d="M426.662 0H640v480H426.662z"/> + </g> +</svg> diff --git a/s/flag/ga.svg b/s/flag/ga.svg new file mode 100755 index 0000000..581c0f0 --- /dev/null +++ b/s/flag/ga.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd"> + <path fill="#ffe700" d="M640 480H0V0h640z"/> + <path fill="#36a100" d="M640 160.003H0V0h640z"/> + <path fill="#006dbc" d="M640 480H0V319.997h640z"/> + </g> +</svg> diff --git a/s/flag/gb.svg b/s/flag/gb.svg new file mode 100755 index 0000000..05a0bf4 --- /dev/null +++ b/s/flag/gb.svg @@ -0,0 +1,15 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-85.333 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" transform="matrix(.94 0 0 .94 80 0)"> + <g stroke-width="1pt"> + <path fill="#006" d="M-256 0H768.02v512.01H-256z"/> + <path d="M-256 0v57.244l909.535 454.768H768.02V454.77L-141.515 0H-256zM768.02 0v57.243L-141.515 512.01H-256v-57.243L653.535 0H768.02z" fill="#fff"/> + <path d="M170.675 0v512.01h170.67V0h-170.67zM-256 170.67v170.67H768.02V170.67H-256z" fill="#fff"/> + <path d="M-256 204.804v102.402H768.02V204.804H-256zM204.81 0v512.01h102.4V0h-102.4zM-256 512.01L85.34 341.34h76.324l-341.34 170.67H-256zM-256 0L85.34 170.67H9.016L-256 38.164V0zm606.356 170.67L691.696 0h76.324L426.68 170.67h-76.324zM768.02 512.01L426.68 341.34h76.324L768.02 473.848v38.162z" fill="#c00"/> + </g> + </g> +</svg> diff --git a/s/flag/gd.svg b/s/flag/gd.svg new file mode 100755 index 0000000..6232574 --- /dev/null +++ b/s/flag/gd.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd"> + <path fill="red" d="M0 0h640v480H0z"/> + <path fill="#009a00" d="M145.996 83.454h360.91v314.41h-360.91z"/> + <path d="M145.996 397.865h360.91l-180.46-157.19-180.46 157.19z" fill="#ffca00"/> + <path d="M145.996 83.528l180.46 157.19 180.45-157.19h-360.91z" fill="#ffca00"/> + <path fill="#ffce00" d="M177.71 61.366L161.263 49.64l-16.466 11.698 6.073-19.262-16.207-12.044 20.192-.177 6.446-19.14 6.41 19.152 20.192.212-16.236 12.014M342.597 61.856L326.15 50.128l-16.466 11.7 6.073-19.263-16.207-12.043 20.192-.178 6.446-19.14 6.408 19.152 20.193.213-16.237 12.013M507.59 61.59l-16.447-11.727-16.466 11.7L480.75 42.3l-16.207-12.044 20.192-.177 6.446-19.142 6.41 19.153 20.192.213-16.236 12.015M177.71 468.793l-16.447-11.728-16.466 11.7 6.073-19.263-16.207-12.043 20.192-.18 6.446-19.14 6.41 19.153 20.192.213-16.236 12.014M342.597 469.283l-16.447-11.728-16.466 11.7 6.073-19.263-16.207-12.043 20.192-.18 6.446-19.14 6.408 19.153 20.193.213-16.237 12.014M507.59 469.023l-16.447-11.728-16.466 11.7 6.073-19.263-16.207-12.043 20.192-.18 6.446-19.14 6.41 19.153 20.192.213-16.236 12.014"/> + <path d="M369.722 243.097c0 24.172-19.594 43.765-43.764 43.765s-43.765-19.594-43.765-43.765c0-24.17 19.595-43.764 43.765-43.764s43.764 19.594 43.764 43.764z" fill="red"/> + <path fill="#ffce00" d="M345.755 270.04l-19.536-13.93-19.56 13.895 7.214-22.88-19.25-14.305 23.984-.21 7.657-22.738 7.612 22.75 23.985.253-19.286 14.272"/> + <path d="M169.972 273.464s2.22-18.394.952-30.762c-1.27-12.368-32.983-15.857-32.983-15.857l-.316 28.86s25.372 20.613 32.348 17.76z" fill="red"/> + <path d="M123.67 200.525s3.056 16.207-1.27 48.522c-2.31 17.546 16.81 29.494 40.278 34.885-4.757-8.245-17.442-21.565-14.27-45.985 17.124 2.22 33.298 35.52 33.298 35.52s12.813-47.217-13.003-54.547c-25.09-7.05-45.033-18.077-45.033-18.394z" fill="#ffce00"/> + </g> +</svg> diff --git a/s/flag/ge.svg b/s/flag/ge.svg new file mode 100755 index 0000000..a3ce6a8 --- /dev/null +++ b/s/flag/ge.svg @@ -0,0 +1,18 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 213.33333 160"> + <defs> + <g id="c"> + <clipPath id="a"> + <path d="M-109 104a104 104 0 0 0 0-208h218a104 104 0 0 0 0 208z"/> + </clipPath> + <path id="b" clip-path="url(#a)" d="M-55 74a55 55 0 0 1 110 0V-74a55 55 0 0 1-110 0z"/> + <use xlink:href="#b" transform="rotate(90)" height="200" width="300"/> + </g> + </defs> + <path fill="#fff" d="M0 0h213.33v160H0z"/> + <path fill="#fff" d="M6.385 13.192h200.56v133.71H6.385z"/> + <path fill="red" d="M93.296 13.192v53.484H6.386v26.742h86.91v53.484h26.742V93.418h86.91V66.676h-86.91V13.192H93.296z"/> + <use xlink:href="#c" transform="matrix(.67 0 0 .67 49.47 39.57)" height="200" width="300" fill="red"/> + <use xlink:href="#c" transform="matrix(.67 0 0 .67 163.86 120.53)" height="200" width="300" fill="red"/> + <use xlink:href="#c" transform="matrix(.67 0 0 .67 163.86 39.57)" height="200" width="300" fill="red"/> + <use xlink:href="#c" transform="matrix(.67 0 0 .67 49.47 120.53)" height="200" width="300" fill="red"/> +</svg> diff --git a/s/flag/gf.svg b/s/flag/gf.svg new file mode 100755 index 0000000..bfbea35 --- /dev/null +++ b/s/flag/gf.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#fff" d="M0 0h640v480H0z"/> + <path fill="#00267f" d="M0 0h213.337v480H0z"/> + <path fill="#f31830" d="M426.662 0H640v480H426.662z"/> + </g> +</svg> diff --git a/s/flag/gg.svg b/s/flag/gg.svg new file mode 100755 index 0000000..9b71caa --- /dev/null +++ b/s/flag/gg.svg @@ -0,0 +1,18 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-18 -12 36 24"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-18-13.5h36v27h-36z"/> + </clipPath> + </defs> + <g clip-path="url(#a)"> + <path fill="#fff" d="M-18-18h36v36h-36z"/> + <path fill="#fff" d="M-18-13.5h36v27h-36z"/> + <path d="M0-21.586v43.172M-21.586 0h43.172" stroke="#e8112d" stroke-width="7.195" fill="none"/> + <g transform="scale(1.75)"> + <path id="b" fill="#f9dd16" d="M-6.75 1.5L-6 .75H.75v-1.5H-6l-.75-.75z"/> + <use xlink:href="#b" transform="rotate(90)" height="24" width="36"/> + <use xlink:href="#b" transform="rotate(-90)" height="24" width="36"/> + <use xlink:href="#b" transform="scale(-1)" height="24" width="36"/> + </g> + </g> +</svg> diff --git a/s/flag/gh.svg b/s/flag/gh.svg new file mode 100755 index 0000000..d642d50 --- /dev/null +++ b/s/flag/gh.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)"> + <path fill="#fff41e" d="M-40 0h720v480H-40z"/> + <path fill="#1f7848" d="M-40 320h720v160H-40z"/> + <path fill="#e80006" d="M-40 0h720v160H-40z"/> + <path d="M401.33 364.98l-81.518-58.21-81.12 58.782 30.17-95.522-80.97-58.985 100.17-.822 31.072-95.232 31.736 95.014 100.17.125-80.555 59.54 30.836 95.31z"/> + </g> +</svg> diff --git a/s/flag/gi.svg b/s/flag/gi.svg new file mode 100755 index 0000000..68101b2 --- /dev/null +++ b/s/flag/gi.svg @@ -0,0 +1,197 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-85.24 0h682.67v512H-85.24z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" transform="matrix(.94 0 0 .94 79.91 0)"> + <path fill-rule="evenodd" fill="#fff" d="M-254.55 0h1021.8v510.88h-1021.8z"/> + <path d="M405.2 175.1zm-71.913-62.795l-12.743 64.988 88.98-.91-9.56-64.07" fill="#a11011"/> + <path fill-rule="evenodd" fill="#a11011" d="M276.15 77.584h27.31v6.827h-27.31zM243.38 77.584h26.398v6.827H243.38zM209.7 77.13h26.398v6.37H209.7z"/> + <path d="M301.84 99.56zm-91.904-16.392v16.75h93.536V83.525l-93.536-.358M221.33 106.84l-10.926 69.082 94.438.458-12.743-69.082m2.96 66.43z" fill="#a11011"/> + <path fill-rule="evenodd" fill="#d61517" d="M-256 384.54H768.2V512H-256z"/> + <path fill-rule="evenodd" fill="#a11011" d="M82.674 175.2h347.88v26.356H82.674z"/> + <path d="M95.91 198.65l-7.36 131.63-37.822.455v21.157h413.49v-21.157l-37.822.455-7.357-131.92-323.12-.628z" fill="#a11011"/> + <path fill="#d61517" d="M204.56 234.3v21.755h5.338V234.3h-5.338m8.008 0v21.755h42.707V234.3h-42.707m45.377 0v21.755h40.038V234.3h-40.038m42.707 0v21.755h8.007V234.3h-8.008zM366.97 256.01zm-38.317-21.736v22.21h38.997v-21.736l-38.997-.475M316.67 306.19v23.548h29.36V306.19h-29.36m32.03 0v14.718h5.34V306.19h-5.34m37.37 0v14.718h5.338V306.19h-5.338m8.008 0v23.548h29.36V306.19h-29.36zM319.33 282.23v21.3h5.338v-21.3h-5.338m8.008 0v21.3h18.684v-21.3h-18.684zM394.07 282.23v21.3h19.135v-21.3H394.07m21.87 0v21.3h5.466v-21.3h-5.467zM317.91 201.89v5.78h102.92v-5.78H317.91zM101.56 282.68v21.3h18.04v-21.3h-18.04zM167.19 282.23v22.21h18.684v-22.21H167.19m21.354 0v22.21h5.338v-22.21h-5.338zM203.21 202.35v5.325h106.1v-5.325h-106.1zM95.343 202.81v5.325h97.002v-5.325H95.343z"/> + <path d="M313.08 200.53c-10.186.754 1.348 96.04 1.367 125.75 0 0 12.182-119.51-1.367-125.75z" fill="#fff"/> + <path fill="#d61517" d="M84.444 184.62v14.61h344.33v-14.61H84.444z"/> + <path d="M196.57 200.98c-10.186.767 1.348 97.777 1.367 128.03 0 0 12.182-121.67-1.367-128.03z" fill="#fff"/> + <path d="M90.9 282.68v21.3h8.217v-21.3H90.9zM90.693 305.73v24.03h29.36l-.16-24-29.2-.03m28.85 23.517zM454.7 349.85zM51.55 331.678v18.57h410.32v-18.173l-410.32-.397M167.16 306.19v23.226h28.45v-23.203l-28.45-.023m27.954 22.73zM201.75 305.73v23.548h29.36l-.16-23.52-29.2-.028m28.85 23.045zM279.58 306.19v23.548h32.547l-.16-23.52-32.388-.028m31.978 23.045zM139.48 256.45zm-38.208-22.626v23.12h38.887V234.32l-38.888-.495M97.684 256.46zm-3.806-22.18v22.664h3.874v-22.18l-3.874-.485M183.51 256.9zm-40.476-22.626v23.12h41.195V234.77l-41.196-.495M190.97 256.91zm-4.7-22.18v22.664h4.783v-22.18l-4.783-.485M346.23 279.7zm-27.06-20.845v21.3h27.54V259.31l-27.54-.455M420.87 279.26zm-27.507-19.954v20.39h27.996v-19.954l-27.997-.436M390.15 279.71zm-39.92-20.4v20.846h40.63v-20.4l-40.63-.445" fill="#d61517"/> + <path d="M315.23 183.92zm-4.7-9.264v9.466h4.783v-9.264l-4.783-.202" fill="#fff"/> + <path d="M325.23 255.57zm-5.147-21.29v21.755h5.238v-21.29l-5.237-.465M408.49 256.02zm-37.052-21.29v21.755h37.71v-21.29l-37.71-.465M419.86 256.02zm-7.383-21.29v21.755h7.514v-21.29l-7.513-.465M343.11 231.89zm-23.482-21.736v22.21h23.9v-21.736l-23.9-.475M389.21 231.9zm-41.894-21.29v21.755h42.64v-21.29l-42.64-.465M417.72 231.89zm-25.27-21.736v22.21h25.72v-21.736l-25.72-.475M201.75 281.15v21.755h12.066v-21.61l-12.066-.145m11.855 21.29zM216.31 281.61v21.755h14.93v-21.61l-14.93-.145m14.67 21.29zM279.58 282.07v21.755h19.348V282.05l-19.348.02m19.01 21.29zM311.04 303.36zm-9.62-21.29v21.755h9.79v-21.29l-9.79-.465M92.612 201.44v4.415h102.92v-4.415H92.612zM198.2 201.44v4.415h113.84v-4.415H198.2zM314.64 200.98v4.415h108.91v-4.415H314.64zM119.12 280.14zm-27.06-21.29v21.755h27.54v-21.29l-27.54-.465M192.44 280.14zm-24.824-21.29v21.755h25.265v-21.29l-25.264-.465M122.93 259.31v21.755h42.183l.16-21.61-42.343-.145m41.447 21.29zM203.57 257.94v21.755h27.996l.16-21.61-28.156-.145m27.507 21.29zM276.77 279.23zm-43.16-21.29v21.755h43.927l-.16-21.45-43.766-.306M280.03 258.4v21.755h28.45l.16-21.774-28.61.02m27.954 21.29zM232.42 230.99zm-28.402-21.29v21.755h28.906v-21.29l-28.906-.465M277.76 231.43zm-42.79-21.736v22.21h43.55v-21.736l-43.55-.475M306.67 231.43zm-25.27-21.736v22.21h25.72v-21.736l-25.72-.475" fill="#d61517"/> + <path d="M186.73 182.38zM113 119.585l-10.926 64.988 88.98-.91-10.015-65.438" fill="#a11011"/> + <path fill="#d61517" d="M220.62 123.84l-2.718 10.65h38.052v-10.65H220.62m38.052 0v10.65h35.334v-10.65h-35.334zM217.9 137.15v10.65h13.503v-10.65H217.9m16.204 0v10.65h43.21v-10.65h-43.21m45.91 0v10.65h16.204v-10.65h-16.204zM223.3 110.53l-2.722 10.65h10.887v-10.65H223.3m10.887 0v10.65h43.548v-10.65h-43.548m46.27 0v10.65h10.886v-10.65h-10.887zM209.9 86.565v5.325h45.832v-5.325H209.9m48.528 0v5.325h43.136v-5.325h-43.136zM209.9 94.553v5.325h21.354v-5.325H209.9m24.023 0v5.325h42.707v-5.325h-42.707m45.377 0v5.325h21.354v-5.325H279.3zM244.6 78.578v5.325h24.023v-5.325H244.6zM84.444 177.09v5.325h21.354v-5.325H84.444zM407.42 177.09v5.325h21.354v-5.325H407.42zM127.43 182.66zm-20.352-4.364v4.46h20.714v-4.365l-20.714-.094M172.99 183.13zm-17.67-3.735v3.817h17.984v-3.735l-17.983-.08"/> + <path d="M203.25 184.34zm-5.147-10.6v10.832h5.238v-10.6l-5.237-.232" fill="#fff"/> + <path d="M124.29 176.09zm-17.67-13.088v13.374h17.984v-13.088l-17.983-.286M134.91 176.1zm-9.172-12.643v12.92h9.335v-12.644l-9.335-.276M187.13 177.42zm-15.88-14.87v15.195h16.162v-14.87l-16.162-.325M168.16 176.18zm-12.38-12.98v13.264h12.6v-12.98l-12.6-.284" fill="#d61517"/> + <path d="M192.98 181.7zm-19.905-6.591v6.734h20.258v-6.591l-20.258-.144M295.06 173.73zm-74.187-66.43l-11.383-7.384h93.534l-10.47 8.293" fill="#a11011"/> + <path fill="#d61517" d="M210.92 78.578v5.325h24.023v-5.325H210.92zM276.91 79.033v5.325h25.388v-5.325H276.91z"/> + <g fill="#d61517"> + <path d="M288.207 108.076zm-66.875-1.692v1.73h68.05v-1.693l-68.05-.036"/> + <path d="M291.718 107.166zm-74.03-1.692v1.73h75.332v-1.693l-75.333-.036"/> + <path d="M294.834 105.8zm-77.61-1.692v1.73h78.974v-1.693l-78.974-.037"/> + <path d="M294.834 105.8zm-77.61-1.692v1.73h78.974v-1.693l-78.974-.037M297.067 103.98zm-80.74-1.693v1.73h82.16v-1.693l-82.16-.037"/> + </g> + <path d="M243.12 182.68zm-15.88-3.474v3.55h16.162v-3.474l-16.162-.076M283.21 182.68zm-13.644-3.474v3.55h13.887v-3.474l-13.887-.076M117.39 231.88zM95.696 209.7v22.664h22.08v-22.18l-22.08-.485M242.86 177.45zm-30.19-13.718v14.018h30.727v-13.718l-30.727-.3M302.57 177.45zm-25.61-13.718v14.018h26.065v-13.718l-26.065-.3M273.31 177.45zm-7.383-13.718v14.018h7.514v-13.718l-7.513-.3" fill="#d61517"/> + <path d="M226.71 182.14zm-16.774-7.037v7.19h17.072v-7.036l-17.072-.154" fill="#a11011"/> + <path fill="#d61517" d="M175.2 177.09v5.78h21.354v-5.78H175.2m29.36 0v5.78h21.355v-5.78H204.56z"/> + <path d="M304.02 182.15zm-20.352-6.591v6.734h20.714v-6.591l-20.714-.144" fill="#a11011"/> + <path d="M165.23 231.89zm-44.578-21.736v22.21h45.37v-21.736l-45.37-.475M191.1 231.89zm-23.035-21.736v22.21h23.444v-21.736l-23.445-.475M254.98 161.56zm-40.03-11.936v12.197h40.74v-11.935l-40.74-.26M298.21 162.01zm-40.03-11.936v12.197h40.74v-11.935l-40.74-.26" fill="#d61517"/> + <path fill-rule="evenodd" fill="#a11011" d="M168.74 88.962h23.667v6.827H168.74zM134.15 88.507h26.398v7.737H134.15zM105.02 88.962h20.937v6.827H105.02z"/> + <path d="M189.57 109.24zm-76.616 10.8l-8.146-11.472 87.616.455-10.497 9.576" fill="#a11011"/> + <path fill="#d61517" d="M105.8 102.54v5.325h18.684v-5.325H105.8m21.354 0v5.325h42.707v-5.325h-42.706m45.377 0v5.325h18.685v-5.325H172.53zM105.8 90.138v4.68h18.684v-4.68H105.8m29.36 0v4.68h24.024v-4.68H135.16zM169.86 90.593v4.038h21.354v-4.037H169.86z"/> + <path fill-rule="evenodd" fill="#a11011" d="M105.02 95.79h87.387v13.654H105.02z"/> + <path d="M142.29 160.22zm-33.845-10.416v10.643h34.446V150.03l-34.445-.226M184.89 160.22zm-39.788-10.416v10.643h40.495V150.03l-40.495-.226M146.64 101.2zm-40.476-3.92v4.006h41.195v-3.92l-41.196-.085M124.8 147.01zm-14.54-11.046v11.287h14.798v-11.045l-14.797-.24M167.22 147.04zm-39.288-9.786v10h39.986v-9.786l-39.986-.214M183.55 147.47zm-12.75-11.046v11.287h12.976v-11.045l-12.976-.24M145.03 134.75zm-32.95-9.786v10h33.536v-9.786l-33.536-.214M181.82 134.75zm-33.32-9.786v10h33.912v-9.786l-33.913-.214M171.53 122.59zm-48.973-3.92v4.006H172.4v-3.92l-49.843-.085M180.46 122.59zm-6.936-3.92v4.006h7.06v-3.92l-7.06-.085M120.82 122.59zm-7.83-3.92v4.006h7.97v-3.92l-7.97-.085M190.79 101.2zm-40.553-3.92v4.006h41.273v-3.92l-41.273-.085M126.53 109.81zm-19.905-5.593v5.715h20.258v-5.592l-20.258-.123M166.76 109.17zm-35.263-5.147v5.26h35.89v-5.148l-35.89-.112M190.7 109.18zm-19.796-4.963v5.07h20.148v-4.96l-20.148-.11" fill="#d61517"/> + <g fill="#d61517"> + <path d="M178.967 116.536zm-66.875-1.505v1.54h68.05v-1.506l-68.05-.033"/> + <path d="M182.478 115.727zm-74.03-1.506v1.54h75.332v-1.506l-75.333-.032"/> + <path d="M185.594 114.512zm-77.61-1.505v1.538h78.974v-1.505l-78.974-.033"/> + <path d="M185.594 114.512zm-77.61-1.505v1.538h78.974v-1.505l-78.974-.033M187.827 112.892zm-80.74-1.505v1.538h82.16v-1.505l-82.16-.033"/> + </g> + <path d="M354.19 182.67zm-14.986-3.92v4.006h15.252v-3.92l-15.252-.085M404.57 182.21zm-22.588-3.92v4.006h22.99v-3.92l-22.99-.085M406.89 176.57zm-20.167-12.305v12.574h20.525v-12.306l-20.525-.27M383.89 176.56zm-8.243-12.75v13.028h8.39v-12.75l-8.39-.28M340.5 176.99zm-16.775-13.642v13.94h17.073v-13.642l-17.073-.298M354.26 176.99zm-10.59-13.826v14.128h10.778v-13.826l-10.78-.302" fill="#d61517"/> + <path d="M338.66 183.03zm-17.67-7.928v8.1h17.984v-7.926l-17.983-.174" fill="#a11011"/> + <path fill="#d61517" d="M285.54 177.09v5.78h23.613v-5.78H285.54m31.484 0v5.78h20.99v-5.78h-20.99zM298.25 162.01zm-38.132-11.936v12.197h38.81v-11.935l-38.81-.26"/> + <path fill-rule="evenodd" fill="#a11011" d="M387.66 88.852h23.667v6.827H387.66zM353.07 88.397h26.398v7.737H353.07zM323.94 88.852h20.937v6.827H323.94z"/> + <path d="M408.49 109.13zm-76.616 10.8l-8.146-11.472 87.617.455-10.497 9.576" fill="#a11011"/> + <path fill="#d61517" d="M324.72 102.43v5.325h18.684v-5.325H324.72m21.354 0v5.325h42.707v-5.325h-42.706m45.377 0v5.325h18.685v-5.325H391.45zM324.72 90.027v4.038h18.684v-4.038H324.72m29.36 0v4.038h24.024v-4.038H354.08zM388.78 90.483v3.394h21.354v-3.394H388.78z"/> + <path fill-rule="evenodd" fill="#a11011" d="M323.94 95.68h87.387v13.653H323.94z"/> + <path d="M361.83 160.1zm-35.372-11.046v11.287h36v-11.045l-36-.24M403.84 160.1zm-38.055-11.046v11.287h38.73v-11.045l-38.73-.24M363.04 101.09zm-37.946-3.92v4.006h38.62v-3.92l-38.62-.085M343.73 146.9zm-14.54-11.046v11.287h14.798v-11.045l-14.797-.24M386.16 146.9zm-38.655-11.046v11.287h39.342v-11.045l-39.342-.24M402.47 147.35zm-12.75-11.046v11.287h12.976v-11.045l-12.976-.24M364.59 133.39zm-33.583-7.896v8.068h34.18v-7.896l-34.18-.172M400.75 133.39zm-32.688-7.896v8.068h33.27v-7.896l-33.27-.172M390.45 122.48zm-48.973-3.92v4.006h49.843v-3.92l-49.843-.085M399.39 122.48zm-6.936-3.92v4.006h7.06v-3.92l-7.06-.085M339.75 122.48zm-7.83-3.92v4.006h7.97v-3.92l-7.97-.085M409.69 101.09zm-41.818-3.92v4.006h42.56v-3.92l-42.56-.085M344.19 108.4zm-18.64-6.223v6.36h18.97v-6.224l-18.97-.136M384.38 108.41zm-36.528-5.777v5.903h37.177v-5.777l-37.178-.127M409.59 108.41zm-21.694-5.593v5.715h22.08v-5.592l-22.08-.123" fill="#d61517"/> + <g fill="#d61517"> + <path d="M397.895 116.425zm-66.875-1.505v1.538h68.05v-1.505l-68.05-.033"/> + <path d="M401.406 115.616zm-74.03-1.506v1.538h75.332v-1.505l-75.333-.032"/> + <path d="M404.522 114.4zm-77.61-1.504v1.538h78.974v-1.505l-78.974-.034"/> + <path d="M404.522 114.4zm-77.61-1.504v1.538h78.974v-1.505l-78.974-.034M406.755 112.78zm-80.74-1.504v1.538h82.16v-1.505l-82.16-.034"/> + </g> + <g fill="#d61517"> + <path d="M397.895 115.162zm-66.875-.383v.39h68.05v-.383l-68.05-.008"/> + <path d="M401.406 114.956zm-74.03-.384v.392h75.332v-.383l-75.333-.007"/> + <path d="M404.522 114.646zm-77.61-.383v.392h78.974v-.383l-78.974-.01"/> + <path d="M404.522 114.646zm-77.61-.383v.392h78.974v-.383l-78.974-.01M406.755 114.234zm-80.74-.383v.392h82.16v-.383l-82.16-.01"/> + </g> + <path fill-rule="evenodd" fill="gray" d="M232.07 462.6h19.954v28.965H232.07z"/> + <path fill-rule="evenodd" fill="#ffc500" d="M234.64 464.54h17.38v25.103h-17.38z"/> + <path fill-rule="evenodd" fill="gray" d="M237.86 469.68h11.586v17.38H237.86z"/> + <path fill-rule="evenodd" fill="#d61517" d="M240.44 471.62h7.08v13.517h-7.08z"/> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="gray" d="M231.443 474.208h7.724v9.01h-7.724z"/> + <path fill="#d61517" d="M231.443 476.134h8.367v5.15h-8.367z"/> + </g> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="gray" d="M261.382 502.994h-9.656v-75.312h9.656z"/> + <path fill="#ffc500" d="M259.445 501.068h-5.793v-71.45h5.793z"/> + </g> + <path fill-rule="evenodd" fill="gray" d="M283.112 407.475l-4.69 4.442-25.197-23.854 4.69-4.442z"/> + <path fill-rule="evenodd" fill="gray" d="M261.015 432.113l-4.433-4.854 21.935-24.02 4.433 4.856z"/> + <path fill-rule="evenodd" fill="#ffc500" d="M254.326 388.39l3.834-3.676 23.857 22.875-3.834 3.676z"/> + <path fill-rule="evenodd" fill="#ffc500" d="M259.698 432.207l-3.55-3.928 22.09-24.446 3.552 3.93z"/> + <path fill-rule="evenodd" fill="gray" d="M230.87 410.55l4.432-4.357 21.936 21.557-4.434 4.357z"/> + <path fill-rule="evenodd" fill="gray" d="M254.87 383.84l4.8 4.654-25.773 25.005-4.798-4.657z"/> + <path fill-rule="evenodd" fill="#ffc500" d="M235.31 411.494l-3.738-3.74 23.268-23.268 3.74 3.74z"/> + <path fill-rule="evenodd" fill="gray" d="M254.14 336.22h5.15v62.156h-5.15z"/> + <path fill-rule="evenodd" fill="#ffc500" d="M255.01 337.05h3.54v60.114h-3.54zM230.432 408.962l3.992-3.99 24.837 24.836-3.99 3.99z"/> + <g fill-rule="evenodd" transform="matrix(1.3 0 0 1.06 -279.63 -7.67)" stroke-width="1pt" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(1.24 0 0 1.02 -244.64 3.97)" stroke-width="1pt" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(.92 0 0 .96 -87.88 23.93)" stroke-width="1pt" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <path fill-rule="evenodd" fill="#d61517" d="M355.98 289.23h28.04v40.45h-28.04z"/> + <rect fill-rule="evenodd" ry="16.707" height="33.414" width="27.829" y="273.09" x="356.11" fill="#d61517"/> + <g fill-rule="evenodd" transform="matrix(1.35 0 0 1.06 -412.97 -8.72)" stroke-width="1pt" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(1.28 0 0 1.02 -376.99 2.92)" stroke-width="1pt" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(.95 0 0 .96 -215.77 22.88)" stroke-width="1pt" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(.83 0 0 .9 -158 36.21)" stroke-width="1pt" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(1.33 0 0 1.06 -515.42 -8.56)" stroke-width="1pt" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(1.26 0 0 1.02 -479.94 3.08)" stroke-width="1pt" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(.94 0 0 .96 -320.95 23.04)" stroke-width="1pt" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(.82 0 0 .9 -263.97 36.37)" stroke-width="1pt" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <path d="M233.03 322.27v2.312h6.294v-2.312h-6.294zM121.19 320.66v2.312h6.294v-2.312h-6.294zM121.19 303.44v2.312h6.294v-2.312h-6.294zM121.35 287.19v2.312h6.294v-2.312h-6.294zM159.65 321.3v2.312h6.294V321.3h-6.294zM159.49 303.92v2.312h6.294v-2.312h-6.294zM159.01 287.51v2.312h6.294v-2.312h-6.294zM242.09 278.03l1.635-1.635-4.45-4.45-1.635 1.635 4.45 4.45zM271.16 322.11v2.312h6.294v-2.312h-6.294zM233.19 303.6v2.312h6.294V303.6h-6.294zM232.71 287.03v2.312h6.294v-2.312h-6.294zM271.16 303.92v2.312h6.294v-2.312h-6.294zM271.49 286.22v2.312h6.294v-2.312h-6.294zM348.24 322.91v2.312h6.294v-2.312h-6.294zM348.24 303.6v2.312h6.294V303.6h-6.294zM348.4 285.26v2.312h6.294v-2.312H348.4zM385.58 323.07v2.312h6.294v-2.312h-6.294zM385.42 303.76v2.312h6.294v-2.312h-6.294zM385.58 285.9v2.312h6.294V285.9h-6.294z" fill="#a11011"/> + <g fill-rule="evenodd" transform="matrix(.56 0 0 .46 88.21 34.4)" stroke-width="1pt" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(.53 0 0 .45 103.13 39.5)" stroke-width="1pt" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(.4 0 0 .42 169.98 48.25)" stroke-width="1pt" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g fill-rule="evenodd" transform="matrix(.35 0 0 .4 193.94 54.09)" stroke-width="1pt" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <path d="M371.21 265.24h-2.312v6.294h2.312v-6.294zM273.33 274.06l-1.635-1.635-4.45 4.45 1.635 1.635 4.45-4.45zM386.46 273.9l-1.635-1.635-4.45 4.45 1.635 1.635 4.45-4.45zM358.27 278.19l1.635-1.635-4.45-4.45-1.635 1.635 4.45 4.45zM129.37 270.66l-1.635 1.635 4.45 4.45 1.635-1.635-4.45-4.45zM256.48 264.76h-2.312v6.294h2.312v-6.294zM142.33 272.02h2.312v-6.294h-2.312v6.294zM154.77 276.23l1.635 1.635 4.45-4.45-1.635-1.635-4.45 4.45zM358.63 175.86v7.006h22.902v-7.006H358.63z" fill="#a11011"/> + <path fill="#d61517" d="M359.37 177.09v5.325h21.354v-5.325H359.37z"/> + <g fill-rule="evenodd" stroke-width="1pt"> + <g transform="matrix(.63 0 0 .48 -58.15 30.37)" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g transform="matrix(.6 0 0 .46 -41.28 35.62)" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g transform="matrix(.45 0 0 .43 34.29 44.63)" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g transform="matrix(.4 0 0 .4 61.38 50.65)" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + </g> + <path d="M244.32 176.14v7.006h25.424v-7.006H244.32z" fill="#a11011"/> + <path fill="#d61517" d="M244.6 177.55v5.325h24.023v-5.325H244.6z"/> + <g fill-rule="evenodd" stroke-width="1pt"> + <g transform="matrix(.63 0 0 .48 -169.94 30.37)" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g transform="matrix(.6 0 0 .46 -153.07 35.62)" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g transform="matrix(.45 0 0 .43 -77.5 44.63)" fill="#a11011"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + <g transform="matrix(.4 0 0 .4 -50.41 50.65)" fill="#d61517"> + <path d="M477.98 275.98h34.57v44.3h-34.57z"/> + <rect ry="18.298" height="36.596" width="34.311" y="258.3" x="478.13"/> + </g> + </g> + <path d="M128.32 173.9v8.407h22.342V173.9H128.32z" fill="#a11011"/> + <path d="M149.29 182.59zm-19.458-7.482v7.645h19.803v-7.482l-19.803-.162" fill="#d61517"/> + </g> +</svg> diff --git a/s/flag/gl.svg b/s/flag/gl.svg new file mode 100755 index 0000000..b7eac43 --- /dev/null +++ b/s/flag/gl.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-62.883 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 58.95 0)"> + <path fill="#fff" d="M661.1 512h-766.65V0H661.1z"/> + <path fill="#df0000" d="M661.1 512h-766.65V256.45H661.1zM347.57 255.85c0-86.577-70.184-156.766-156.763-156.766-86.576 0-156.765 70.185-156.765 156.765"/> + <path d="M347.57 255.75c0 86.577-70.184 156.766-156.763 156.766-86.576 0-156.765-70.185-156.765-156.765" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/gm.svg b/s/flag/gm.svg new file mode 100755 index 0000000..6727e35 --- /dev/null +++ b/s/flag/gm.svg @@ -0,0 +1,14 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0-48h640v480H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="translate(0 48)" stroke-width="1pt"> + <path fill="red" d="M0-128h640V85.33H0z"/> + <path fill="#fff" d="M0 85.333h640v35.556H0z"/> + <path fill="#009" d="M0 120.89h640v142.22H0z"/> + <path fill="#fff" d="M0 263.11h640v35.556H0z"/> + <path fill="#090" d="M0 298.67h640V512H0z"/> + </g> +</svg> diff --git a/s/flag/gn.svg b/s/flag/gn.svg new file mode 100755 index 0000000..1745155 --- /dev/null +++ b/s/flag/gn.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="red" d="M0 0h213.333v480H0z"/> + <path fill="#ff0" d="M213.333 0h213.333v480H213.333z"/> + <path fill="#090" d="M426.666 0H640v480H426.665z"/> + </g> +</svg> diff --git a/s/flag/gp.svg b/s/flag/gp.svg new file mode 100755 index 0000000..bfbea35 --- /dev/null +++ b/s/flag/gp.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#fff" d="M0 0h640v480H0z"/> + <path fill="#00267f" d="M0 0h213.337v480H0z"/> + <path fill="#f31830" d="M426.662 0H640v480H426.662z"/> + </g> +</svg> diff --git a/s/flag/gq.svg b/s/flag/gq.svg new file mode 100755 index 0000000..978e933 --- /dev/null +++ b/s/flag/gq.svg @@ -0,0 +1,36 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h682.67v512H0z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" transform="matrix(.94 0 0 .94 0 0)"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#3e9a00" d="M0 0h767.975v171.886H0z"/> + <path fill="#fff" d="M0 171.886h767.975v168.222H0z"/> + <path fill="#e32118" d="M0 340.108h767.975v171.886H0z"/> + <path d="M0 0v511.984l255.994-255.992L0 0z" fill="#5567e4"/> + </g> + <path d="M283.46 148.82v442.91c0 35.433 17.716 70.866 53.15 70.866h70.865c17.717 0 35.433 35.433 35.433 35.433s16.938-35.434 35.433-35.434h70.868c35.433 0 53.15-35.433 53.15-70.866V148.82h-318.9z" fill-rule="evenodd" transform="matrix(.24 0 0 .2 269.51 179.77)" stroke="#000" stroke-width="3.791" fill="#ccc"/> + <path d="M215.38 731.79c-18.02 0-35.738-17.717-35.738-35.433v-88.583c15.502 15.502 88.583 70.866 70.867 88.583-17.718 17.716-35.738 0-35.434 0s.304 35.433.304 35.433z" fill-rule="evenodd" transform="matrix(.24 0 0 .2 267.81 160.36)" stroke="#000" stroke-width="1pt" fill="#ccc"/> + <path d="M319.345 289.56c4.245-3.286 4.245 3.288 8.49 0l-4.245 19.724c-4.118-.618-4.26 0-6.638-3.287 0-3.288 0-13.792 2.393-16.436z" fill-rule="evenodd" fill="#ccc"/> + <path d="M215.38 731.79c-18.02 0-35.738-17.717-35.738-35.433v-88.583c15.502 15.502 88.583 70.866 70.867 88.583-17.718 17.716-35.738 0-35.434 0s.304 35.433.304 35.433z" fill-rule="evenodd" transform="matrix(-.24 0 0 .2 481.9 160.36)" stroke="#000" stroke-width="1pt" fill="#ccc"/> + <path d="M429.71 289.56c-4.245-3.286-4.245 3.288-8.49 0l4.245 19.724c4.118-.618 4.26 0 6.638-3.287 0-3.288 0-13.792-2.394-16.436z" fill-rule="evenodd" fill="#ccc"/> + <path d="M513.78 1140.9c0-17.71-35.433-53.14-35.433-70.86s35.433 17.72 106.3 17.72c70.866 0 106.3-88.588 88.582-106.3 17.716 35.434 17.716 70.864 17.716 88.584 0 35.43-35.433 70.86-106.3 70.86H513.78z" fill-rule="evenodd" transform="matrix(.24 0 0 .2 268.41 107.46)" stroke="#000" stroke-width="1pt" fill="#ccc"/> + <path d="M513.78 1140.9c0-17.71-35.433-53.14-35.433-70.86s35.433 17.72 106.3 17.72c70.866 0 106.3-88.588 88.582-106.3 17.716 35.434 17.716 70.864 17.716 88.584 0 35.43-35.433 70.86-106.3 70.86H513.78z" fill-rule="evenodd" transform="matrix(-.24 0 0 .2 480.65 107.46)" stroke="#000" stroke-width="1pt" fill="#ccc"/> + <path d="M357.548 315.853c0-3.287 8.49-6.574 8.49-9.862v16.436h-8.49v-6.573zM391.505 315.853c0-3.287-8.49-6.574-8.49-9.862v16.436h8.49v-6.573z" fill-rule="evenodd" fill="#ccc"/> + <path d="M371.17 1034.6c0 17.71 141.73 17.71 141.73 0v70.87c0 17.71-141.73 17.71-141.73 0v-70.87z" fill-rule="evenodd" transform="matrix(.24 0 0 .2 268.62 123.89)" stroke="#000" stroke-width="1pt" fill="#ccc"/> + <path d="M249.63 696.36c-17.717 17.716-17.717-17.717-35.433 0-17.717 17.716 17.717 106.3 88.583 106.3s106.3-35.433 106.3-17.717c0 17.717-35.433 35.433-35.433 53.15s141.73 17.717 141.73 0-35.433-35.433-35.433-53.15c0-17.716 35.433 17.717 106.3 17.717 70.866 0 106.3-88.583 88.583-106.3-17.716-17.717-17.716 17.716-35.433 0" transform="matrix(.24 0 0 .2 268.02 160.36)" stroke="#000" stroke-width="1.25" fill="none"/> + <path d="M426.836 313.608l-4.368-7.285.762-.308 4.368 7.285-.762.308zM424.102 312.023l.913-.01c.236.874.246 1.598.028 2.172-.217.57-.636.958-1.256 1.164-.642.213-1.245.22-1.81.027-.564-.2-1.106-.577-1.625-1.133-.517-.558-.952-1.196-1.306-1.915-.385-.785-.603-1.508-.654-2.168-.05-.665.07-1.22.357-1.666.288-.45.695-.763 1.22-.937.595-.2 1.19-.173 1.785.075.595.25 1.143.694 1.644 1.336l-.663.49c-.407-.503-.803-.835-1.19-.998-.385-.162-.776-.177-1.174-.045-.458.152-.773.418-.945.797-.17.38-.2.824-.095 1.334.105.508.28 1.01.523 1.506.315.64.663 1.176 1.045 1.607.384.427.79.707 1.217.84.428.132.823.14 1.186.018.44-.146.735-.432.883-.855.148-.424.12-.97-.084-1.64zM418.77 317.044l-2.847-7.777.813-.2 2.847 7.776-.814.2zM413.39 317.903l-.748-7.137-2.108.15-.1-.956 5.07-.36.1.956-2.116.15.748 7.137-.846.06zM405.245 315.74l.802-.086c.037.405.125.74.262 1.002.14.26.356.47.647.63.293.16.62.24.986.24.324 0 .61-.06.858-.183.25-.122.434-.288.554-.5.122-.213.184-.446.184-.697 0-.254-.06-.477-.176-.665-.117-.19-.31-.35-.578-.48-.173-.086-.553-.216-1.143-.394-.59-.18-1.002-.35-1.24-.51-.305-.203-.534-.453-.687-.753-.148-.303-.222-.64-.222-1.014 0-.41.092-.793.276-1.147.184-.36.453-.63.806-.815.353-.184.746-.277 1.178-.277.477 0 .895.1 1.258.294.365.193.645.477.84.854.196.376.3.803.316 1.28l-.815.077c-.045-.513-.193-.9-.448-1.163-.25-.263-.623-.393-1.116-.393-.515 0-.89.12-1.126.36-.234.235-.35.52-.35.857 0 .292.083.532.25.72.162.19.59.383 1.278.582.692.195 1.167.366 1.423.515.375.217.652.494.83.83.177.332.266.716.266 1.152 0 .432-.098.84-.293 1.225-.196.38-.478.677-.845.892-.365.21-.777.316-1.235.316-.582 0-1.07-.108-1.463-.322-.392-.214-.7-.536-.925-.964-.222-.432-.338-.92-.35-1.463zM402.932 310.142l.85.032-.26 4.687c-.046.817-.155 1.46-.328 1.936-.172.474-.458.855-.857 1.143-.396.283-.903.415-1.52.392-.602-.023-1.086-.173-1.454-.448-.367-.277-.62-.665-.755-1.166-.136-.504-.18-1.186-.132-2.046l.26-4.687.848.032-.26 4.68c-.038.706-.016 1.228.068 1.568.086.336.25.6.49.79.244.19.548.29.914.305.623.023 1.078-.14 1.364-.487.285-.348.456-1.03.512-2.05l.26-4.68zM392.445 315.582l.766-.133c.022.62.114 1.045.278 1.273.163.23.39.344.68.344.212 0 .396-.06.55-.183.155-.126.262-.294.32-.505.06-.215.088-.555.088-1.02v-5.595h.85v5.535c0 .68-.066 1.205-.197 1.578-.13.373-.336.658-.62.853-.28.197-.61.295-.99.295-.562 0-.994-.205-1.296-.615-.297-.41-.44-1.02-.43-1.828zM378.002 329.146v-1.126l3.29-5.87c.233-.418.455-.78.666-1.09h-3.583v-1.08h4.6v1.08l-3.606 6.36-.39.645h4.1v1.08H378zM331.238 317.884l2.025-9.015.835.126-2.025 9.015-.835-.126zM322.147 314.332l5.28-8.075.767.34-1.174 7.65 4.145-6.34.718.317-5.28 8.076-.767-.34 1.177-7.657-4.15 6.346-.716-.318zM326.685 305.32l.6.495-4.55 3.75c-.794.65-1.474 1.126-2.043 1.425-.57.3-1.137.458-1.7.478-.56.018-1.06-.152-1.497-.51-.426-.35-.647-.74-.663-1.172-.016-.432.158-.893.523-1.383.367-.494.97-1.084 1.804-1.77l4.552-3.75.6.493-4.546 3.745c-.684.564-1.154 1.01-1.408 1.338-.248.326-.37.635-.368.925.003.292.135.544.394.756.442.362.93.477 1.466.346.536-.133 1.3-.606 2.288-1.42l4.547-3.745zM335.753 318.58l.31-9.163 2.21.05c.5.012.88.064 1.14.158.362.13.67.355.917.678.326.415.56.945.705 1.585.15.638.21 1.365.18 2.18-.022.698-.1 1.313-.232 1.85-.132.534-.293.976-.483 1.326-.19.346-.395.62-.615.818-.217.195-.477.34-.78.44-.303.096-.648.14-1.036.13l-2.317-.05zm.886-1.06l1.37.03c.422.01.756-.04 1-.147.245-.106.443-.26.594-.46.21-.284.38-.666.507-1.147.13-.485.208-1.073.23-1.764.033-.96-.053-1.697-.257-2.215-.202-.522-.458-.873-.767-1.056-.223-.13-.587-.2-1.092-.21l-1.35-.032-.235 7zM341.68 318.64l2.467-9.166h.915l2.628 9.167h-.968l-.75-2.775h-2.684l-.705 2.776h-.902zm1.854-3.763h2.177l-.67-2.538c-.204-.773-.356-1.406-.455-1.902-.082.587-.198 1.17-.346 1.75l-.706 2.69zM348.368 318.64v-9.166h2.212c.5 0 .88.044 1.144.13.368.123.68.342.94.66.34.407.592.93.76 1.567.17.635.253 1.36.253 2.177 0 .697-.057 1.314-.17 1.852-.115.537-.26.983-.44 1.337-.177.35-.373.628-.586.832-.21.198-.465.35-.765.455-.3.104-.642.156-1.03.156h-2.317zm.85-1.08h1.37c.424 0 .756-.056.995-.17.242-.112.435-.27.578-.474.203-.29.36-.674.47-1.157.114-.49.17-1.08.17-1.77 0-.96-.11-1.695-.332-2.21-.22-.515-.486-.86-.802-1.036-.227-.125-.594-.188-1.1-.188h-1.348v7.004zM366.55 329.146v-9.167h2.422c.426 0 .75.03.976.086.315.076.58.22.793.433.214.207.385.5.513.88.132.38.198.796.198 1.25 0 .78-.174 1.44-.52 1.983-.348.538-.976.806-1.884.806H367.4v3.726h-.85zm.85-4.81h1.66c.548 0 .938-.144 1.168-.436.23-.29.346-.702.346-1.232 0-.384-.068-.71-.205-.98-.136-.277-.314-.458-.536-.546-.143-.054-.407-.08-.793-.08h-1.64v3.275zM371.827 329.146l2.467-9.167h.915l2.627 9.166h-.968l-.75-2.776h-2.685l-.705 2.776h-.903zm1.853-3.764h2.177l-.67-2.54c-.204-.77-.357-1.403-.455-1.9-.083.588-.198 1.17-.347 1.75l-.705 2.69zM428.76 312.892l-4.287-7.838.677-.41 8.057 5.56-.716.434-2.404-1.705-1.987 1.2 1.328 2.356-.667.402zm-1.138-3.594l1.61-.973-2.188-1.566c-.666-.477-1.2-.874-1.604-1.194.33.468.634.948.91 1.44l1.272 2.292z"/> + <path d="M419.16 331.78c.065 32.968 19.893 131.63-37.678 284.94-4.262 11.127 7.064 16.484 16.484 18.84 9.42 2.354 14.13-9.42 14.13-11.775s2.354 18.84 11.773 16.484c9.42-2.356 18.838-16.485 18.838-16.485s4.71 21.194 16.484 21.194 11.774-25.905 11.774-25.905c0 2.355 8.164 22.235 17.583 22.235 9.42 0 23.928-8.76 15.547-23.144-59.832-100.72-56.68-267.54-56.68-286.38 0-18.84 27.784-53.068 55.418-53.89l-10.675-16.755c-6.96 2.136-15.28 3.67-29.41 15.444s-22.397 24.59-22.397 24.59v-80.066h-23.548l2.355 73s-8.05-9.438-20.095-19.93c-11.4-9.935-31.972-9.2-44.637-7.12l-1.204 15.99c14.97 3.123 34.067-3.068 43.487 11.06 11.775 11.775 22.415 21.26 22.45 37.678z" fill-rule="evenodd" transform="matrix(.15 0 0 .15 312.13 202.03)" stroke="#000" stroke-width="5.029" fill="#682900"/> + <path d="M310.55 312.21v-.832c0 1.976-.067 1.1.833-2.498.777-2.848 2.407-5.523 4.163-7.493 3.04-1.014 7.44.053 10.823-.833 2.277-3.268 5.827 4.267 5.827-.833 4.343-.31 4.4-4.558 5.828-6.66 4.054-.5 4.963-5.44 8.326-2.496 2.757 1.305.407-.833 4.997-.833 2.713.664 4.13 2.32 6.66.833.62-2.85 1.4-6.268 1.665-9.99-1.177-2.356-.832-7.184-.832-10.824 2.274-3.033 6.262 2.475 9.99 1.664 1.018-3.562 4.146-3.466 2.498-6.66-.308-4.007-1.08-6.503 0-10.823 1.314-3.703 3.228-3.606 6.66-5.827 1.093-3.277-.122-6.03.833-9.99 3.902-.116 3.833-1.133 4.164-4.996 1.26-2.66 2.858-5.356 4.995-7.493 1.967-2.382 4.302-2.147 5.827-5.828 1.308-3.27 1.31-4.75 4.995-5.828 2.696-1.27 4.833-1.41 6.66-3.33 1.733-3.057 3.175-5.487 5.83-9.16 2.63-1.77 15.236 1.666 19.148 1.666 2.118-2.67 5.397-6.86 7.493-8.326 3.587-1.916 4.96-2.497 9.99-2.497 4.288 1.27 6.082 2.795 10.824 1.666 1.932-2.706 3.816-3.965 8.325-2.498 3.433 2.22 5.347 2.124 6.66 5.828 1.947 4.615 1.51 6.192 6.662 6.66 5.18.186 5.71 1.443 9.158 4.163 5.248 2.25 4.995.98 4.995 5.827 3.72 0 4.052-.44 4.163 3.33 2.294.714 4.907 2.72 6.66 4.163 2.094 2.416 2.63 3.93 7.494 4.163 3.59-1.508 4.75-1.496 4.995-5.828 2.75-.982 3.21-3.635 4.162-6.66 2.108-2.885 3.474-3.33 8.325-3.33 4.28 1.772 4.14 3.567 3.33 7.493 2.665.55 3.765.24 4.164 3.33 1.408 2.346 1.04 5.15-.832 6.66 2.132 1.568 3.37 4.256 4.163 7.493-1.41 2.353-.546 5.81 0 8.327 2.913 1.456 4.416 2.81 8.326 4.163 1.983 1.68 6.2 3.44 9.99 4.163 4.482-.606 5.962-.568 9.992 1.665 2.084 2.993 2.235 6.77 4.163 8.326 2.176 1.843 5.82 2.65 7.494 4.995 2.778 2.03 3.594 4.28 7.493 4.994 1.47 2.228 4.634 5.896 5.828 8.326.94 2.694 1.36 7.413 2.498 10.823v11.656c-.158 4.303-.833 6.915-.833 11.655-.74 2.384-1.665 3.3-1.665 6.66-1.582 3.527-2.93 6.49-4.995 9.16-.94 4.234-2.473 6.222-4.163 9.99.052 4.37.832 6.304.832 10.823-1.81 2.69-3.888 4.647-7.494 6.66-2.724 3.188-4.368 4.427-4.995 9.16-1.565 2.704-1.442 2.497-4.994 2.497-4.2 0-7.814.375-11.656.832-3.378 0-4.64.356-6.66-1.665-3.99-1.804-7.346-1.91-11.657-.833-2.325-1.595-3.258-2.498-7.493-2.498-3.16.427-5.965.832-9.99.832-2.496-2.79-3.898-3.33-8.326-3.33-2.356 1.178-7.184.833-10.824.833-3.82-1.043-4.313-2.63-5.828-5.828-2.605-1.236-3.635-3.04-7.493-3.332-3.64 0-8.47.345-10.824-.832-2.723-.327-5.586-1.027-7.493-2.498-1.556-2.288-3.54-4.272-5.828-5.828-3.698 0-5.864.355-7.493-1.665-2.732-2.157-4.89-5.564-8.326-7.493-3.062-2.43-5.136-3.916-6.66-8.326 0-3.943.78-4.874-3.33-4.995-2.756 2.813-4.01 3.33-9.16 3.33-3.388 0-6.93-.017-9.157-.83-3.682-2.09-5.03-3.014-9.16-3.332-2.584 1.645-6.007 3.547-9.99 4.163-3.405 1.967-5.437 2.38-6.66 5.83-3.146 2.567-4.99 4.077-9.16 5.827-2.315 2.21-4.525 2.59-5.827 6.66-.792 3.367-1.665 5.37-1.665 9.99.59 4.37.36 6.238-1.665 9.992-1.74 2.485-4.757 3.7-7.493 5.827-4.116.494-4.548.186-7.493-1.665-2.933-.977-6.266-1.78-9.99-2.498-4.497-.866-6.018-1.96-8.327-4.162l8.326 4.162c-4.496-.866-6.017-1.96-8.326-4.162-5.064-3.583-6.063-5.398-11.656-5.828-5.198.06-7.43.318-8.325 4.995 2.96.788.608 2.553-.834 3.33-2.078 1.85-5.41 3.367-8.326 4.162-1.328 1.328-1.072-1.1-3.33-1.665-3.448-1.842-4.89-3.226-8.326-4.163-1.683-2.97-3.584-5.274-5.828-8.326-1.734-2.818-3.382-3.838-5.828-6.66-1.17-1.754-4.16-1.83-5.827-3.33-1-3.002-3.168-8.57-2.497-11.656 1.68-1.586 2.632-7.243 4.995-8.326 3.367-2.525 4.635-.223 9.16 0 4.258 0-5.867-6.71-1.666-6.66 3.92-.666 4.387-2.595 5.827-4.996h9.99z" fill-rule="evenodd" transform="matrix(.2 0 0 .15 285.64 190.05)" stroke="#000" stroke-width="4.464" fill="#009200"/> + <path d="M382.98 253.1c.878.713 4.684 2.498 8.326 2.498 3.976.728 4.843 2.216 5.828 5.828 2.174 1.304 3.55 1.665 7.493 1.665 4.36.872 4.322 2.213 7.493 4.996M358.84 299.72c1.812.266 8.154.832 12.488.832 3.333-1.924 4.912-3.24 7.493-4.995 3.944 0 5.32.36 7.495 1.665 2.105.702 7.052.963 9.158 1.665 0 1.11-.278.833.832.833M391.31 286.4c.065-.025 3.252-1.946 5.828-2.498 2.835-1.976 5.946-2.94 9.158-4.163 2.117-.46 7.102-.45 8.326-.833M432.1 273.91v.833c0-2.327-.104-1.09 1.665 3.33.874 4.078 1.95 7.526 3.33 10.823 2.455 3.83 4.058 5.547 7.493 7.493 2.94 2.315 5.164 4.723 8.326 5.827 2.202 1.963 5.106 3.584 8.325 4.996 4.27 0 7.557.686 11.655.832h2.498M477.06 227.29v.833c0-2.247.055-1.105-.832 3.33-1.257 2.654-2.705 5.124-4.163 7.493-3.915 1.42-5.374 4.277-6.66 7.493-1.373 2.23-3.506 5.17-4.996 7.492-2.59 3.21-3.623 4.242-8.327 5.828M510.36 244.77c0 .244-1.537 2.434-2.498 4.996-1.653 2.436-2.075 6.86-2.497 9.99 0 3.618.02 7.557.832 9.99 2.516 3.122 3.158 4.765 7.493 6.662l-7.49-6.66c2.516 3.12 3.158 4.764 7.493 6.66M571.14 273.91v.833c0-2.61.217-1.006-4.163 2.497-3.252 3-5.572 5.416-8.325 7.493-4.732 1.255-5.455 1.182-9.99.833h-7.494M582.8 337.19h-.832c2.327 0 1.09-.103-3.33 1.665-3.693.923-7.88.982-10.824 0-2.966-1.68-5.955-3.055-8.326-5.828-1.24-.93-1.42-1.306-2.497-1.665M553.66 363v-.833c0 2.61.217 1.006-4.163-2.498-1.872-2.754-3.748-3.795-7.493-6.66-3.236-3.914-3.66-5.482-4.995-9.992-.357-3.323-1.456-6.734 0-9.158M492.05 348.84c1.81 0 8.56-.16 11.656-.833 2.418-1.643 5.094-2.746 8.326-4.162 1.764-4.36 3.27-5.81 3.33-10.824M441.26 323.87c-.652-1.483-3.544-7.436-4.995-10.823-.065-3.638-.833-6.285-.833-9.99M328.86 350.51c.84.126 4.375.403 6.66 0 3.635-1.86 7.022-2.205 10.823-2.498 1.933-1.16 5.086-1.03 6.66-2.497 3.475-2.316 3.938-4.645 5.83-8.326.166-1.674.664-2.49.83-4.164M383.81 338.02c-1.828 0-8.658.125-12.49-.833-1.966-1.273-3.362-3.364-4.994-4.995 1.11 0 .833.277.833-.833M393.8 313.88c.353-.106 4.485-1.665 7.493-1.665 1.79-1.158 4.76-2.237 7.493-3.33 1.48-.797 2.504-1.787 4.163-2.498M293.06 347.18h.833c-2.25 0-1.1.053 3.33-.833 5.18-.32 8.666-2.11 12.49-3.33 2.495-2.318 5.938-4.635 8.324-5.828 0-1.424-.34-1.275.833-1.666M504.54 301.39h.833c-2.328 0-1.09-.103 3.33 1.665 3.517 1.346 6.695 1.78 9.99 2.498 2.994.73 4.128 1.665 8.326 1.665 4.19 1.826 5.103 2.397 8.325 4.995 2.465 1.168 4.22 1.665 8.326 1.665 2.18-1.206 6.162-2.61 8.326-3.33 1.21-.908 1.293-.55 1.665-1.665" transform="matrix(.2 0 0 .2 285.64 179.15)" stroke="#006800" stroke-width="4.05" fill="none"/> + <path d="M430.94 469.54v18.84c0 6.016-.557 11.276-2.355 16.483 0 5.875-.077 11.554-2.355 15.306-.4 5.617-1.177 10.478-1.177 16.483-1.705 5.116-1.504 12.044-2.355 17.662-.738 5.508-1.393 12.06-2.355 16.484-1.754 3.683-4.745 10.348-7.064 12.95-.29 5.085-1.533 7.588 0 11.775 1.64 4.922 1.176 10.85 1.176 16.484 1.537 4.61 1.178 10.003 1.178 15.305M436.82 493.08c.358 2.36 2.118 10.873 2.355 16.484v25.904c0 6.3.532 11.85 1.178 17.66-.084 6.944-1.346 9.54-4.71 15.308-.662 5.56-1.693 10.924-2.355 16.484-1.64 4.923-1.177 10.85-1.177 16.484 1.405 6.322 3.704 7.453 4.71 12.95 0 3.36.32 5.067 1.178 7.066M447.42 535.47c0 2.155-.14 12.532 1.178 16.484 0 6.023 1.106 10.544 1.177 16.484-.714 5.28-1.453 9.084-4.71 11.774-2.144 4.358-3.314 8.235-3.532 14.13 3.043 2.13 6.35 8.078 9.42 10.596 2.566 5.36 4.955 5.59 5.887 11.774 2.458 2.732-1.733 4.154 0 5.887 1.91 2.547.687 1.468 0 3.532" transform="matrix(.2 0 0 .2 288.36 178.53)" stroke="#000" stroke-width="1pt" fill="none"/> + <path fill-rule="evenodd" transform="matrix(.16 0 0 .15 369.58 198.54)" stroke="#000" stroke-width="3.125" fill="#ffd100" d="M93.248-106.57l15.982 25.596 30.16 1.046-14.17 26.642 14.17 26.642-30.16 1.045L93.248 0 77.262-25.6l-30.16-1.044 14.175-26.642-14.175-26.642 30.16-1.046z"/> + <path fill-rule="evenodd" transform="matrix(.16 0 0 .15 349.7 198.54)" stroke="#000" stroke-width="3.125" fill="#ffd100" d="M93.248-106.57l15.982 25.596 30.16 1.046-14.17 26.642 14.17 26.642-30.16 1.045L93.248 0 77.262-25.6l-30.16-1.044 14.175-26.642-14.175-26.642 30.16-1.046z"/> + <path fill-rule="evenodd" transform="matrix(.16 -.02 .02 .15 332.67 203.68)" stroke="#000" stroke-width="3.125" fill="#ffd100" d="M93.248-106.57l15.982 25.596 30.16 1.046-14.17 26.642 14.17 26.642-30.16 1.045L93.248 0 77.262-25.6l-30.16-1.044 14.175-26.642-14.175-26.642 30.16-1.046z"/> + <path fill-rule="evenodd" transform="matrix(-.16 -.02 -.02 .15 418.3 203.19)" stroke="#000" stroke-width="3.125" fill="#ffd100" d="M93.248-106.57l15.982 25.596 30.16 1.046-14.17 26.642 14.17 26.642-30.16 1.045L93.248 0 77.262-25.6l-30.16-1.044 14.175-26.642-14.175-26.642 30.16-1.046z"/> + <path fill-rule="evenodd" transform="matrix(-.15 -.05 -.05 .14 433.58 213.41)" stroke="#000" stroke-width="3.125" fill="#ffd100" d="M93.248-106.57l15.982 25.596 30.16 1.046-14.17 26.642 14.17 26.642-30.16 1.045L93.248 0 77.262-25.6l-30.16-1.044 14.175-26.642-14.175-26.642 30.16-1.046z"/> + <path fill-rule="evenodd" transform="matrix(.15 -.05 .05 .14 316.85 212.43)" stroke="#000" stroke-width="3.125" fill="#ffd100" d="M93.248-106.57l15.982 25.596 30.16 1.046-14.17 26.642 14.17 26.642-30.16 1.045L93.248 0 77.262-25.6l-30.16-1.044 14.175-26.642-14.175-26.642 30.16-1.046z"/> + </g> +</svg> diff --git a/s/flag/gr.svg b/s/flag/gr.svg new file mode 100755 index 0000000..8e36ca6 --- /dev/null +++ b/s/flag/gr.svg @@ -0,0 +1,22 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h120v90H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="scale(5.33)" stroke-width="1pt"> + <path fill="#0061f3" d="M0 0h135v10H0z"/> + <path fill="#fff" d="M0 10h135v10H0z"/> + <path fill="#0061f3" d="M0 20h135v10H0z"/> + <path fill="#fff" d="M0 30h135v10H0z"/> + <path fill="#0061f3" d="M0 40h135v10H0z"/> + <path fill="#fff" d="M0 50h135v10H0z"/> + <path fill="#0061f3" d="M0 60h135v10H0z"/> + <path fill="#fff" d="M0 70h135v10H0z"/> + <path fill="#0061f3" d="M0 80h135v10H0zM0 0h50v50H0z"/> + <g fill="#fff"> + <path d="M20 0h10v50H20z"/> + <path d="M0 20h50v10H0z"/> + </g> + </g> +</svg> diff --git a/s/flag/gs.svg b/s/flag/gs.svg new file mode 100755 index 0000000..5772442 --- /dev/null +++ b/s/flag/gs.svg @@ -0,0 +1,209 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" xmlns:xlink="http://www.w3.org/1999/xlink"> + <defs> + <linearGradient id="b"> + <stop stop-color="#d5dfff" offset="0"/> + <stop stop-color="#fff" offset="1"/> + </linearGradient> + <linearGradient id="a"> + <stop stop-color="#474747" offset="0"/> + <stop stop-color="#f50" offset="1"/> + </linearGradient> + <linearGradient id="c" y2="173.45" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="110.94" gradientTransform="matrix(1.5 0 0 .65 40.51 .01)" y1="218.47" x1="109.34"/> + <linearGradient id="d" y2="337.23" gradientUnits="userSpaceOnUse" x2="126.02" gradientTransform="matrix(1.23 0 0 .8 40.51 .01)" y1="316.38" x1="125.91"> + <stop stop-color="#b50000" offset="0"/> + <stop stop-color="#ffc500" offset="1"/> + </linearGradient> + <linearGradient id="e" y2="147.35" xlink:href="#b" gradientUnits="userSpaceOnUse" x2="456.4" gradientTransform="matrix(.56 0 0 1.76 40.51 .01)" y1="149.38" x1="407.87"/> + <linearGradient id="f" y2="102.99" xlink:href="#a" gradientUnits="userSpaceOnUse" x2="228.97" gradientTransform="matrix(.74 0 0 1.33 40.51 .01)" y1="102.99" x1="215.83"/> + <linearGradient id="g" y2="1003.7" xlink:href="#b" gradientUnits="userSpaceOnUse" x2="78.221" gradientTransform="matrix(2.56 0 0 .38 40.51 .01)" y1="1040.4" x1="117.6"/> + <linearGradient id="h" y2="226.38" xlink:href="#b" gradientUnits="userSpaceOnUse" x2="255.03" gradientTransform="matrix(.9 0 0 1.1 40.51 .01)" y1="245.98" x1="264.72"/> + </defs> + <path fill="#006" d="M0 0h640v480H0z"/> + <g stroke-width="1pt"> + <path fill="#fff" d="M0 0v32.946l403.223 261.736h50.755v-32.945L50.755 0H0zm453.978 0v32.945L50.755 294.68H0v-32.944L403.223 0h50.755z"/> + <path fill="#fff" d="M189.157 0v294.68h75.663V0h-75.663zM0 98.227v98.227h453.978V98.227H0z"/> + <path fill="#c00" d="M0 117.872v58.937h453.978V117.87H0zM204.29 0v294.68h45.398V0H204.29zM0 294.68l151.326-98.226h33.836L33.836 294.68H0zM0 0l151.326 98.227H117.49L0 21.965V0zm268.816 98.227L420.142 0h33.836L302.652 98.227h-33.836zM453.978 294.68l-151.326-98.226h33.836l117.49 76.263v21.964z"/> + </g> + <path d="M463.75 349.947s-2.878 7.61-4.523 7.61c-1.646 0-7.61-3.29-7.61-3.29s-4.32 6.99-6.58 7.403c-2.263.41-8.227-1.03-8.227-1.03s-5.758 0-5.964-.82c-.206-.824.206-2.47.206-2.47s-8.227 6.582-10.078 6.17c-1.85-.41-8.02-8.226-8.02-8.226l-1.03 4.123-11.723-.413-10.283-6.584s-5.758 9.46-5.964 9.255c-.205-.206-10.077 2.262-10.077 2.262l-.617-1.85-6.582-3.908s5.14-7.2 5.14-7.405c0-.205-2.467-1.028-2.467-1.028l-3.7 3.085-7.61 4.935-7.61-3.496 3.292-6.168.41-4.525 5.965-9.05 73.008-70.95 35.99 66.427-5.347 19.948z" fill-rule="evenodd" stroke="#000" stroke-width=".86059pt" fill="#6a4c2d"/> + <path d="M515.62 354.25l19.003-.682-8.09-3.996 72.41-2.73-10.232-3.897-9.063-12.28-37.52-2.826s-2.827-2.145-7.407-1.073c-.195-2.923-3.704-6.724-3.704-6.724l-23.097-1.754-14.425 9.842 9.746 24.948 12.378 1.17z" fill-rule="evenodd" stroke="#000" stroke-width=".86059pt" fill="#fff"/> + <path d="M121.32 150.76l2.224-7.561s3.892-6.562 3.892-9.453c0-2.892 2.89-6.34 2.89-6.34s8.897-2.557 10.787 2.892c9.563-14.457 20.794-.668 20.794-.668l3.114-3.67 6.34-7.783s9.006 8.45 9.117 9.895 1.557.445 1.557.445l9.786-.778s4.644 3.635 3.67 10.564c3.448 2.034 6.56 14.01 6.56 14.01l-80.73-1.556z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#c)" transform="matrix(.86 0 0 .86 337.27 11.7)"/> + <path d="M515.505 218.72c1.45-.893 6.023-2.343 5.465-9.035-.557-6.692-6.357-7.473-9.592-7.25-3.235.223-6.135 3.01-6.135 3.01l-10.707-6.802s5.353-33.797 11.042-35.916c5.402-3.893 6.358-5.577 6.358-6.47s-2.008-3.122-2.008-3.122l-34.912-4.127L442 152.912s-2.564 3.904-2.23 5.465.446 3.235 6.358 7.808c6.54 5.03 11.042 33.908 11.042 33.908s-9.258 4.573-9.815 4.015c-.558-.557-3.346-1.115-4.796-.892-1.45.223-6.247 2.677-6.247 9.034 0 6.358 4.796 10.04 4.796 10.04s31.564-3.68 36.25 5.018c4.572-10.484 34.576-6.803 38.145-8.588z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#656263"/> + <path stroke-linejoin="round" d="M549.51 183.588s.35-3.67 2.97-5.415c2.62-1.747 20.088-2.62 24.28 0s5.765 15.547 5.765 15.547 2.62 4.542 2.795 7.86.524 5.59.524 5.59 13.975 18.168 14.15 34.588c1.572 11.18 1.222 41.05-3.145 52.405-.176 14.148-6.115 23.407-6.115 23.407s1.398 2.445 1.223 5.066c-.175 2.62-1.573 5.066-1.573 5.066l20.438 10.132-7.51-2.795s7.686 6.46 7.51 6.287c-.174-.175-8.56-4.018-8.56-4.018l5.067 5.065c-.175-.175-12.402-5.59-12.402-5.59s5.763 5.416 5.414 5.24c-.35-.174-9.258-4.367-9.258-4.367s5.59 5.94 5.416 5.59-8.036-3.493-8.036-3.493l.35 2.97s-6.29-.35-6.29-5.067c-3.143-1.747-5.24-4.192-5.24-4.192l-14.498-2.445-16.42-49.086 3.843-82.974 1.047-4.193-1.748-11.18z" stroke-opacity=".979" fill-rule="evenodd" stroke="#000" stroke-width="1.075"/> + <path d="M538.536 448.752s-8.41-17.698-12.604-17.946c-3.784-7.212 13.15-66.187 45.907-69.55 18.01 1.485 1.48 20.763-10.36 14.83 1.478 5.19 7.4 12.605 7.4 12.605s-23.438 10.135-30.344 60.062z" fill-rule="evenodd" stroke="#000" stroke-width="1.13864" fill="#fb0"/> + <path d="M425.773 451.332s6.96-20.138 11.187-20.386c4.226-.25-11.187-67.126-44.75-67.623-18.148 1.492-1.49 20.883 10.442 14.917-1.49 5.22-7.458 12.68-7.458 12.68s23.618 10.192 30.58 60.412z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fb0"/> + <path d="M456.56 325.54c-.08-.162-8.33 2.588-2.99 11.565.403-3.478 4.123-5.58 4.123-5.58s-5.66 6.712.324 12.373c.727-5.337 4.124-7.035 4.124-7.035s-4.204 12.373.082 14.88c.485-4.934 3.64-7.117 3.64-7.117s-3.802 11.08-.405 13.587c.404-4.205 3.235-6.066 3.235-6.066s-1.7 11.485 2.75 12.293c.08-4.043 3.315-8.006 3.315-8.006s-1.456 9.38 5.5 9.786c.08-3.56 1.375-7.603 1.375-7.603s3.154 9.948 7.763 8.33c-.08-2.91.08-8.41 0-8.41s2.912 9.462 8.41 7.683c-.807-2.67.325-5.824.325-5.824s2.912 5.904 8.17 3.963c.888-1.78-.245-5.257-.245-5.257s7.684 7.926 10.03 3.154c2.345-4.772-6.148-6.39-6.148-6.39h5.743s-1.86-4.85-9.625-5.903c2.67-1.213 5.42-.324 5.42-.324s-1.618-6.065-9.544-6.712c3.074-1.052 6.47-.324 6.47-.324s-1.05-5.74-9.785-7.36c1.376-1.536 5.095-1.05 5.095-1.05s-3.477-5.42-7.44-5.096-39.79-3.64-39.71-3.558z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00713d"/> + <g stroke="#3ec26d" stroke-linecap="round" stroke-width="1.25" fill="none"> + <path d="M491.898 354.737s3.154 1.537 3.073 2.912M493.764 352.234s4.044 2.83 3.963 4.933M497.316 350.772s3.235 2.022 3.397 5.177M502.734 352.07s1.618 3.48 1.05 4.125M505.976 353.928c.243 2.75-.243 2.992-.243 2.992M466.098 336.54s3.8 2.425 3.478 5.822M465.857 339.455s1.78 1.697 1.375 2.83M470.553 336.625s2.507 3.478 1.698 5.904M474.836 338.887s1.132 2.184.08 3.397M476.857 339.936s1.375 2.184.16 2.91M475.326 347.134s3.558.81 4.044 3.478M477.424 344.71s3.72.242 4.125 4.205M482.36 343.333c.08 0 2.507 4.286 2.103 5.66M487.134 343.737s.97 4.125.242 5.418M490.204 345.354c0 .08.08 4.77.08 4.77M485.517 338.887s2.345.89 2.183 3.154M487.693 336.78s2.992 1.7 2.668 4.934M491.176 335.413s2.588 3.072 1.617 6.47M495.7 336.135s-.972 3.8-.568 5.338M498.45 338.724s-1.697 1.294-.808 2.912M483.737 353.524s.565 2.91 0 3.396M480.013 351.83s1.86 3.234 1.212 4.852M476.048 351.667s2.103 2.426 2.022 4.367M472.815 352.148s1.94 1.86 1.78 2.91M471.12 354.978s1.86 1.94 1.78 2.345" stroke-width="1.075"/> + </g> + <path d="M430.89 222.21l26.748-.477s17.674 0 19.585 5.732c3.343-7.642 18.628-7.164 18.628-7.164 9.236-.317 18.47-.637 27.705-.955l.48 66.873c-5.415 25.953-24.203 44.263-44.902 52.065-24.68-7.962-40.283-28.82-45.378-52.543l-2.865-63.53z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/> + <path d="M440.418 221.96L479.382 325.8l35.2-106.098c-10.918.704-34.347-1.72-37.258 8.244-4.503-8.917-29.15-5.322-36.906-5.982z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#006b00"/> + <path d="M466.94 278.18c1.5.784 1.458-28.18 3.426-29.08.563-2.398.845-3.448 1.547-5.996-1.687-2.998-9.28-2.848-12.09-.3 1.264 4.048 1.826 5.397 1.826 5.397 3.796 6.146 3.042 30.633 5.29 29.98z" fill-rule="evenodd" stroke="#006b00" stroke-linecap="round" stroke-width=".59254" fill="#ffc900"/> + <path stroke-linejoin="round" d="M456.5 54.31s2.753-3.127 2.878-3.877c.126-.75 12.512-1.25 19.893-15.014 4.13-7.258 0-3.004 0-3.004l-.25-3.503s5.13-4.88 3.255-7.507c-1.877-2.627-1.252 3.378-4.255 3.253-3.002-.126-1.376-6.507-1.376-6.507s-.25-.75-1.126-1.126c-1.25.125-.876 2.377-2.002 2.627-1.125.25-2.126-5.255-2.126-5.255s-1.877-2.503-3.504 5.38c.876 8.382 6.256 6.756 6.256 12.26 0 5.505-4.755 9.76-6.13 9.884-1.377.126-.877-4.63-.877-4.63s-.75-2.25-1.25-2.25 2.752-.5 2.252-6.757c-1.127-7.507-2.002 1.75-4.004 1.376s-.5-6.88.25-7.632-.876-3.877-5.255 4.13c-.375 3.88-.876-1-1.75-.75-1.503 3.127-1.253 5.38.874 8.257 3.128 2.877 5.13 5.755 5.005 7.256-.125 1.502-1.75 4.88-4.004 4.88s.125-4.13 0-5.505c-.125-1.376-3.878-6.38-3.878-6.38s-2.628-4.255-2.377-4.38c.25-.125-.25-.75-1.502 3.628s-2.753-2.877-2.753-2.877-1.75 5.38 2.002 8.63c-2.877-.374-3.128.752-3.128.752 0 1.502 3.88 2.127 4.38 4.754s-4.004 4.13-4.004 4.13 1.877 2.627 7.13-2.503c.127 3.253-2 5.505-2 5.505 1.75.792 3.127.71 3.377 2.753z" fill-rule="evenodd" stroke="#000" stroke-width="1.075" fill="#cdad56"/> + <path stroke-linejoin="round" d="M439.335 54.31s-2.338-3.47-2.444-4.154c-.105-.683-11.502.864-16.895-13.035-3.506-6.603 0-2.732 0-2.732l.213-3.187s-3.732-4.565-2.138-6.955c1.594-2.39.938 3.073 2.988 3.085 2.55-.114 1.168-5.92 1.168-5.92s.212-.684.957-1.025c1.062.114 1.494 3.54 2.452 3.767.955.228 2.93-4.03 3.557-4.907.875-.125.842-3.528 2.224 3.645-.744 7.627-7.064 6.147-7.064 11.156 0 5.01 4.038 8.88 5.206 8.994 1.17.114.744-4.212.744-4.212s.637-2.05 1.062-2.05c.426 0-3.713.796-3.29-4.896.958-5.33 3.078.343 4.778 0 1.7-.34-.2-5.635.288-6.443.113-.81 2.62-4.28 3.588 3.38.32 3.53 2.244-3.037 2.988-2.81 1.276 2.847-.564 6.648-2.37 9.266-2.656 2.62-3.856 5.488-3.75 6.854.106 1.366.737 3.063 2.65 3.063 1.913 0 .644-2.38.75-3.633.107-1.252 3.295-5.305 3.295-5.305.626-1 .106-2.87.77-3.735 1.037.01 1.462-1.434 2.525 2.55 1.062 3.986 2.337-2.617 2.337-2.617s1.488 4.895-1.7 7.855c2.445-.34 2.656.683 2.656.683 0 1.367-1.166 1.937-1.592 4.327-.425 2.39 1.273 3.757 1.273 3.757s-1.594 2.39-6.057-2.277c-.107 2.96 1.7 5.01 1.7 5.01-1.487.72-2.655.645-2.87 2.504z" fill-rule="evenodd" stroke="#000" stroke-width=".94514" fill="#cdad56"/> + <path d="M508.083 237.45c-2.33-2.115-2.607-.267-3.754-.74-.562-.236-1.003-.762-1.49-1.24-.426-.437-.93-.617-1.492-.854l-.636 1.88c-.212.625.59 1.663.572 2.603-.16 1.396-.728 2.552-2.48 3.03.5-.99.782-1.038.63-2.246-.076-.604-1.765-1.675-1.557-2.247.31-.92.838-1.982.448-2.9-.72.492-1.66.234-2.38.534-.604.27-.645 1.395-1.486 1.863-.863.403-2.764.203-4.35-.698.97-.735 1.77-.24 2.74-.975.486-.368.464-1.944.95-2.312s1.645-.76 2.13-1.128c-.435-.497-.412-1.284-.848-1.78-.437-.497-2.37-.39-2.808-.887-.872-.993-.706-2.3-1.58-3.295 2.26.81 1.932 1.91 2.498 1.828 1.07-.513 2.138-.615 2.7-.38.56.237 1.63 1.633 2.19 1.87.212-.627.52-1.422.733-2.048.212-.627-.953-1.712-.74-2.34.423-1.25 1.476-2.358 1.9-3.61.152 1.207.353 2.223.505 3.43.076.605 1.263.918 1.34 1.523.075.605-.62 2.007-.545 2.61.65-.13 1.587-.04 2.235-.17.648-.13 1.08-1.637 1.727-1.766 1.297-.258 2.23-.18 3.552.07-.97.904-1.723.843-2.33 1.675-.486.367.188 1.58-1.215 2.432-.527.306-1.912-.062-2.397.306l1.308 1.49s2.396.728 2.832 1.225c.872.995 1.334 2.18 1.095 3.247zM448.167 238.473c2.33-2.115 2.608-.268 3.754-.74.562-.237 1.003-.763 1.49-1.24.426-.437.93-.618 1.492-.854l.636 1.878s-.59 1.663-.572 2.603c.158 1.4.728 2.554 2.48 3.034-.5-.99-.782-1.04-.63-2.247.076-.604 1.765-1.675 1.557-2.248-.31-.918-.838-1.98-.448-2.9.72.492 1.66.235 2.38.533.604.27.645 1.394 1.486 1.862.863.404 2.764.204 4.35-.696-.97-.738-1.77-.24-2.74-.978-.486-.368-.463-1.943-.948-2.31-.486-.37-1.648-.76-2.133-1.13.436-.496.412-1.283.848-1.78.437-.496 2.37-.39 2.808-.886.872-.994.706-2.302 1.578-3.295-2.257.812-1.93 1.912-2.497 1.828-1.07-.512-2.137-.614-2.7-.378-.56.236-1.627 1.632-2.19 1.868-.21-.626-.52-1.422-.732-2.048-.212-.626.953-1.71.74-2.337-.423-1.253-1.476-2.36-1.9-3.613-.152 1.208-.353 2.223-.505 3.43-.076.605-1.264.92-1.34 1.524-.076.604.62 2.005.545 2.61-.65-.13-1.587-.042-2.235-.17-.648-.13-1.08-1.637-1.728-1.767-1.297-.26-2.23-.18-3.552.07.97.904 1.724.842 2.332 1.675.485.368-.19 1.58 1.213 2.433.526.305 1.913-.06 2.398.307l-1.31 1.49c-.435.496-2.394.728-2.83 1.225-.873.993-1.335 2.18-1.096 3.246z" fill-rule="evenodd" fill="#ffc900"/> + <path stroke-linejoin="round" d="M505.993 244.14c-2.11 1.65-15.747 5.096-15.887 16.938-.14 11.842 2.39 14.54-.14 14.84-4.922 0-5.625-13.19-5.484-19.036.14-5.847.28-4.947.28-4.947s3.374.9 3.094 3.748c-.28 2.847 3.374-7.045 2.11-9.744 2.248 2.248 5.2 1.348 5.2 1.198 0-.15-1.686-1.948-2.39-3.297-.702-1.35 2.532.75 2.532.75s.14-2.248-2.672-2.1c-3.655 0 .563-1.198.563-1.198s2.108 1.948 3.514-.15c-1.547-1.648-3.796-2.548-3.796-2.548s-1.97-3.747-4.64-4.496c-3.093-.75-2.672 1.348-6.187 1.05-.7 1.347-.7 1.498.705 1.947-2.39 1.65-1.125 4.947-1.125 4.947s3.796-1.65 3.655 1.05c-.14 2.697-2.25 2.248-3.655.6-1.265-.75-1.687.748-1.687.748l1.968 2.098s-3.796-.15-4.78 2.4c2.11-.15 3.235.45 3.235.45s-4.36 1.948-4.782 2.997c-.42 1.05-.56-1.2-.702-1.2-.14 0-4.217-1.498-4.217-1.498l-1.408 6.482s2.814 2.81 4.36 1.91c1.548-.9 4.36-3.597 6.046-2.848-4.92 3.748-9.84 9.144-12.512 9.894-.703-.6-3.093-2.998-4.077-1.8-.983 1.2-.28 2.7.985 2.55 1.265-.15-4.077 1.198-2.952 3.446 1.125 2.25.984 2.1 1.968 1.5.985-.6-.842-.75 2.813-1.8 3.655-1.048 3.514-2.098 3.514-2.098s-.702 1.65-2.67 2.1c-1.968.45-3.516.45-3.093 1.048.42.6 1.264 1.65.983 2.25-.28.598 4.078-3.15 5.203-.15 2.953-.15 4.92-3.748 3.514-5.847.14 2.248 1.547 2.997.703 4.047s6.608-3.448 2.952-6.146c.985 2.25 1.124 4.047 1.124 4.047s1.688-.15 2.11-.75c.42-.6-.844 1.65-.28 2.1.56.45 3.232 2.998 2.107 4.797-.7-1.05-.842-2.7-1.685-2.55-.845.15-4.36 2.7-6.468 2.85s2.53 7.794 2.53 7.794-3.234-.45-3.654-.15c-.422.3-2.53-2.698-2.953-.9-.704 2.25.702 1.35.702 1.35s-1.827-.9-2.81.15c-.985 1.05-1.97 2.098-1.267 2.547.703.45 3.797.45 4.218.3s-3.515.3-3.796.75c-.282.45-.843 2.1 0 2.7s2.953-.3 3.093-.75c.14-.45.282 1.65.282 1.65s3.655.298 3.655-3.45.282 2.7.282 2.7 3.654.598 3.794-3.15.422 2.55.422 2.55 2.39-.75 2.39-1.35c0-.6-.14 7.495-1.827 9.744-2.673-1.8-4.36 1.198-4.36 1.198s.14 4.348-.14 5.397c-.28 1.048 1.827-.6 1.968-1.05.14-.45 2.67-1.65 2.812-1.95l.843-1.798s-.563 2.098-1.546 2.398-1.97 1.35-1.548 2.25c.422.898 1.97 1.498 2.53 2.397.563.9 2.53-5.246 2.53-5.246l.142 1.35s2.53-.6 2.812-1.8c.28-1.198-2.67-2.247-.28-4.196 2.39-1.948 0 1.8 0 1.8s.842 2.847 1.405 2.847 1.966-5.395.56-6.745c-1.405-1.348 2.11 1.65 2.11 1.65s1.97-5.546-.14-6.296-3.094-1.05-3.094-1.05 1.125-1.5.563-1.65 2.95 3.3 3.513 2.4 1.407-3.6-2.67-5.097c-4.078-1.5-.14-5.697-.14-5.697s2.53 2.998 4.358 1.35c1.828-1.65-.14-1.65-.14-1.65s5.202-3.296 5.342-4.946c-.984-.15-2.67.15-2.67.15s2.952-1.948 2.25-5.096c-1.126 1.648-2.673 1.65-2.673 1.65s2.53-2.55 2.108-4.948c-1.546 1.2-1.406 2.098-2.39 1.8s-2.67-9.744 1.265-10.345c3.937-.597 1.828 4.65 1.97 4.65.14 0 5.904-2.4 0-6.297 1.405-.45 4.357 2.25 4.357 2.25s-1.265-6.598-7.592-2.55c1.547-1.648 2.53-2.698 3.796-2.398 1.266.3 5.766-.15 5.766-1.5-1.125-.9-3.516.45-4.782 0-1.265-.45 8.998-1.2 8.155-6.294z" fill-rule="evenodd" stroke="#006b00" stroke-linecap="round" stroke-width=".59254" fill="#ffc900"/> + <path d="M481.3 118.54s12.247-6.43 18.37 1.53M504.57 132.32c-.306 0-4.286 3.98-5.205 3.98M512.84 145.18s11.328.918 18.676-10.41" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path d="M525.08 141.81s.92 6.123 2.756 6.123-3.062 1.53-4.9.306c2.144 2.755 3.37 7.654 0 9.49" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path d="M519.26 218.97s-3.98 4.286-8.88 4.592" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-linecap="round" stroke-width="1.25" fill="#e80000"/> + <path d="M523.86 199.37s-2.45-12.247-.92-15.31c.92-3.978 4.9-5.51 7.962-10.715M522.63 190.49s-3.062 7.348-16.533 4.9M526.31 172.12s.92 9.797-11.328 6.123M511.3 128.04s-4.9 4.287-3.062 10.104" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path d="M483.732 247.596s2.955-1.2 3.517-1.8c.562-.6 1.547-1.8 1.828-2.7.282-.9-1.97-2.25-.844-4.2.704-.9 1.688-1.05 3.377 0 1.69 1.05-1.547-3.3-3.235-3.45s-2.814 1.2-3.236.9c-.423-.3.14 1.2-.564 1.2s1.407 1.2 1.267 1.95c-.14.75 2.25 3.3 2.11 3.9-.14.6-3.517 4.05-4.22 4.2z" fill-rule="evenodd" fill="#006b00"/> + <path stroke-linejoin="round" d="M534.27 97.112c2.794-.636 3.243.07 2.755 2.45-1.31-.66-1.79-1.218-2.755-2.45z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#ffc900" stroke-linecap="round" stroke-width="1.25" fill="#ffc900"/> + <path stroke-linejoin="round" d="M514.71 233.52s-1.033 6.41 1.49 6.946c-.125-2.48.537-4.176 1.157-4.837-.538-.25-2.522-2.068-2.647-2.11zM509.03 225.63c-2.316-.33-6.23 1.59-5.105 3.91 1.88-1.62 3.626.135 4.94-1.518.405-.453.29-1.812.165-2.392zM509.01 221.05s-3.65-.58-4.157 1.948c2.52-.32 3.274-.59 4.11-.06.24-.54.007-1.762.047-1.888z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1.25" fill="#e80000"/> + <path stroke-linejoin="round" d="M493.54 184.94s2.19.828 2.81 3.06c1.737-1.075 2.565-5.83-2.81-3.06zM488.12 190.39c.083-.04 4.59-2.77 5.045-.165-.952.95-1.365 1.57-2.11 1.778-.578 0-1.736-1.778-2.935-1.613zM487.67 199.24c.082-.042 2.894-2.522 3.97-.868 1.074 1.653-.87 1.57-.87 1.57s-.992-.454-3.1-.702zM483.7 149.96c-.04 0-3.597-1.364-5.085 1.116 2.357.29 3.184 1.117 4.258 1.944-.29-1.034-.785-2.605.827-3.06zM476.8 168.52s.165-4.176 2.15-5.87c1.116.62 1.446 1.61 2.19 2.852-1.487.33-3.472.413-4.34 3.018zM486.3 165.54s-3.928 1.82-2.646 3.804c1.282-1.364 2.688-.95 2.688-.992s0-2.77-.042-2.812z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1pt" fill="#e80000"/> + <path stroke-linejoin="round" d="M480.64 125.6c-1.406 1.57 1.736 5.003 5.044 4.507.827-3.72-4.217-5.664-5.044-4.507z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1pt" fill="#ffc900"/> + <path d="M461.183 248.13c-.317.857.943 2.06 1.672 1.72.297-.877-1.343-2.402-1.672-1.72z" fill="none"/> + <path stroke-linejoin="round" d="M484.28 122.75s.62 2.936 3.473 2.15c-.455-2.274-2.44-3.97-2.44-3.97-.123.663.414 1.696-1.033 1.82zM486.18 131.27s1.57 1.695 4.672-1.778c-1.405.413-3.886-.827-3.886-.827s0 2.398-.786 2.605z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1pt" fill="#e80000"/> + <path stroke-linejoin="round" d="M480.46 118.86c-1.406 1.57.583 3.762 3.89 3.266.828-3.72-3.063-4.423-3.89-3.266z" fill-rule="evenodd" transform="matrix(.46 0 0 .5 240.33 190.12)" stroke="#006b00" stroke-width="1pt" fill="#ffc900"/> + <path d="M144.62 266.62s7.037-2.01 10.77 1.005 3.735.287 3.735.287 5.457 2.01 7.037 1.58-1.148.144 1.006-1.15c2.154-1.29-4.31.29-4.883-2.44-1.006-1.724.143-3.878-2.154-3.16-1.58-2.01 1.006-3.446.43-5.6-1.578 1.148-2.44-.432-3.733 2.44-3.015-.574-.43-4.74-3.734-5.17 0 3.016-2.442 3.16-2.585 4.883-1.436 1.006-7.755 4.74-5.888 7.325z" fill-rule="evenodd" fill="url(#d)" transform="matrix(.86 0 0 .86 337.27 11.7)"/> + <path d="M391.987 437.9c3.926-.95 25.203 4.696 33.405 13.49-1.74-15.662-6.08-27.66-6.08-27.66s-12.68-3.618-14.42-1.877c-2.552 2.688-10.22 10.743-12.905 16.046zM385.5 365.556c-1.49.248-2.983 1.243-4.474 3.73-1.74 4.225-2.984 14.915-5.47 17.402-2.486 2.486-4.724 2.734-4.724 4.972 0 2.237.25 7.458 6.962 9.447 6.712.25 17.403-10.69 17.403-10.69s5.47-5.967 7.706-12.43c-12.927 4.474-22.126-7.46-17.402-12.43z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#c01500"/> + <path d="M572.47 435.405c-3.895-.943-25.417 4.67-33.556 13.413 1.728-15.57 6.034-27.5 6.034-27.5 1.502-.41 12.444-3.596 14.172-1.865 2.533 2.673 10.686 10.68 13.35 15.952zM578.5 363.483c1.48.247 2.004 2.192 3.212 4.663 1.726 4.2 3.506 10.322 5.974 12.793 2.466 2.472 4.687 6.133 4.687 8.358 0 2.223-.52 5.23-7.18 7.206-6.662.247-16.314-8.305-16.314-8.305s-5.428-5.934-7.65-12.36c12.83 4.45 21.138-7.005 17.27-12.357z" fill-rule="evenodd" stroke="#000" stroke-width="1.13864" fill="#c01500"/> + <path d="M378.043 424.233s13.424 9.2 13.674 13.425c36.05-53.452 128.036-70.11 180.496-3.73 6.96-9.198 14.17-12.18 14.17-12.18-55.193-72.103-165.084-63.15-208.342 2.485z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fb0"/> + <g stroke="#000" fill-rule="evenodd" fill="#1e5aa6"> + <path d="M514.93 219.86l5.258-.124-9.39 11.893 11.27 13.145-22.162 27.92 20.91 25.166c-2.296 5.635-4.968 10.77-8.515 15.4l-12.018-13.27 21.785-27.17-17.904-20.282 10.767-32.677zM439.81 222.236l-5.634.125 10.516 11.394-11.143 13.898 23.16 25.165-19.155 25.666c2.296 5.634 5.593 11.894 9.14 16.526l11.393-14.4-23.412-26.04 17.152-21.785-12.02-30.55z" stroke-width=".86059pt"/> + <path d="M465.85 289.844l-8.263 11.018 29.548 34.18c5.217-2.63 9.307-5.634 13.772-9.265l-15.4-17.78 6.26-18.404 9.015 10.392-28.17 35.933c-4.716-2.003-9.933-5.133-14.65-9.015l14.9-18.905-7.01-18.154zM456.71 272.692l5.385 6.76-3.505-9.14-1.88 2.38z" stroke-width=".86059pt"/> + <path d="M495.274 278.673c.118-.125 4.345-5.76 4.345-5.76l-1.645-2.253-2.7 8.013z" stroke-width="1.1110216899999998"/> + </g> + <text font-weight="bold" transform="matrix(.56 -.65 .65 .56 337.27 11.7)" font-size="14" y="362.397" x="-328.344" font-family="Timmons"> + <tspan y="362.397" x="-328.344">L</tspan> + </text> + <text font-weight="bold" transform="matrix(.6 -.6 .6 .6 337.27 11.7)" font-size="14" y="384.266" x="-292.335" font-family="Timmons"> + <tspan y="384.266" x="-292.335">E</tspan> + </text> + <text font-weight="bold" transform="matrix(.66 -.47 .5 .65 337.27 11.7)" font-size="14" y="451.681" x="-239.78" font-family="Timmons"> + <tspan y="451.681" x="-239.78">O</tspan> + </text> + <text font-weight="bold" transform="matrix(.7 -.48 .48 .7 337.27 11.7)" font-size="14" y="429.958" x="-188.526" font-family="Timmons"> + <tspan y="429.958" x="-188.526">T</tspan> + </text> + <text font-weight="bold" transform="matrix(.78 -.37 .37 .78 337.27 11.7)" font-size="14" y="451.479" x="-115.426" font-family="Timmons"> + <tspan y="451.479" x="-115.426">E</tspan> + </text> + <text font-weight="bold" transform="matrix(.8 -.35 .35 .8 337.27 11.7)" font-size="14" y="453.046" x="-94.111" font-family="Timmons"> + <tspan y="453.046" x="-94.111">R</tspan> + </text> + <text font-weight="bold" transform="matrix(.8 -.32 .32 .8 337.27 11.7)" font-size="14" y="454.982" x="-68.371" font-family="Timmons"> + <tspan y="454.982" x="-68.371">R</tspan> + </text> + <text font-weight="bold" transform="matrix(.86 -.07 .07 .86 337.27 11.7)" font-size="14" y="445.666" x="112.016" font-family="Timmons"> + <tspan y="445.666" x="112.016">R</tspan> + </text> + <text font-weight="bold" transform="matrix(.86 0 0 .86 337.27 11.7)" font-size="14" y="430.793" x="180.225" font-family="Timmons"> + <tspan y="430.793" x="180.225">R</tspan> + </text> + <text font-weight="bold" transform="matrix(.75 .43 -.43 .75 337.27 11.7)" font-size="14" y="275.217" x="414.759" font-family="Timmons"> + <tspan y="275.217" x="414.759">R</tspan> + </text> + <text font-weight="bold" transform="matrix(.66 .55 -.55 .66 337.27 11.7)" font-size="14" y="193.05" x="483.878" font-family="Timmons"> + <tspan y="193.05" x="483.878">E</tspan> + </text> + <text font-weight="bold" transform="matrix(.83 .16 -.13 .82 337.27 11.7)" font-size="14" y="414.028" x="309.116" font-family="Timmons"> + <tspan y="414.028" x="309.116">O</tspan> + </text> + <text font-weight="bold" transform="matrix(.78 -.1 .12 .84 337.27 11.7)" font-size="14" y="459.272" x="105.058" font-family="Timmons"> + <tspan y="459.272" x="105.058">O</tspan> + </text> + <text font-weight="bold" transform="matrix(.8 -.3 .3 .8 337.27 11.7)" font-size="14" y="455.835" x="-45.708" font-family="Timmons"> + <tspan y="455.835" x="-45.708">A</tspan> + </text> + <text font-weight="bold" transform="matrix(.6 .6 -.6 .6 337.27 11.7)" font-size="14" y="144.724" x="518.35" font-family="Timmons"> + <tspan y="144.724" x="518.35">A</tspan> + </text> + <text font-weight="bold" transform="matrix(.84 .17 -.17 .84 337.27 11.7)" font-size="14" y="388.298" x="271.188" font-family="Timmons"> + <tspan y="388.298" x="271.188">A</tspan> + </text> + <text font-weight="bold" transform="matrix(.85 -.16 .16 .85 337.27 11.7)" font-size="14" y="455.168" x="40.322" font-family="Timmons"> + <tspan y="455.168" x="40.322">M</tspan> + </text> + <text font-weight="bold" transform="matrix(.86 -.1 .1 .86 337.27 11.7)" font-size="14" y="448.079" x="94.429" font-family="Timmons"> + <tspan y="448.079" x="94.429">P</tspan> + </text> + <text font-weight="bold" transform="translate(337.27 11.7) scale(.86)" font-size="14" y="437.607" x="155.088" font-family="Timmons"> + <tspan y="437.607" x="155.088">P</tspan> + </text> + <text font-weight="bold" transform="matrix(.75 .42 -.42 .75 337.27 11.7)" font-size="14" y="276.665" x="405.134" font-family="Timmons"> + <tspan y="276.665" x="405.134">P</tspan> + </text> + <text font-weight="bold" transform="matrix(.85 .1 -.1 .85 337.27 11.7)" font-size="14" y="409.793" x="232.095" font-family="Timmons"> + <tspan y="409.793" x="232.095">I</tspan> + </text> + <text font-weight="bold" transform="matrix(.6 .63 -.63 .6 337.27 11.7)" font-size="14" y="132.089" x="530.392" font-family="Timmons"> + <tspan y="132.089" x="530.392">T</tspan> + </text> + <text font-weight="bold" transform="matrix(.7 .52 -.52 .7 337.27 11.7)" font-size="14" y="218.519" x="464.158" font-family="Timmons"> + <tspan y="218.519" x="464.158">T</tspan> + </text> + <text font-weight="bold" transform="matrix(.83 .24 -.24 .83 337.27 11.7)" font-size="14" y="361.961" x="313.725" font-family="Timmons"> + <tspan y="361.961" x="313.725">M</tspan> + </text> + <text font-weight="bold" transform="matrix(.58 .64 -.64 .58 337.27 11.7)" font-size="14" y="123.248" x="513.704" font-family="Timmons"> + <tspan y="123.248" x="513.704">G</tspan> + </text> + <g stroke="#fff700" stroke-linecap="round" stroke-width="1pt" fill="none"> + <path d="M557.378 184.508s5.188-4.447 8.894-4.57M558.127 183.89c.123-.124 31.003-4.447 31.99-5.435M558.247 184.14c.124-.125 34.586-2.966 34.586-2.966M558.127 184.26s36.685-1.73 38.908.123M557.998 184.14s35.944.245 36.562 1.11M558.127 184.14l34.584 2.84M557.757 184.388c.123 0 35.203 3.088 38.66 7.534M598.263 198.217c-.123-.123-11.98-14.205-40.638-13.958M557.757 184.508s19.886 1.358 26.186 8.276M558.127 184.26s12.845-2.47 26.31 13.71" stroke-width=".86pt"/> + </g> + <path d="M247.4 217.74s20.718.813 20.718 2.844-15.437 5.89-15.64 14.422c-.203 8.53 11.78 9.14 12.593 19.905.814 10.767-9.342 12.39-11.374 15.235-2.03 1.422-6.906 16.656-6.296 25.593.61 8.938 3.25 39.203 7.92 45.296 3.658 2.844 9.142 11.984 15.032 9.14 5.89-2.843 1.828-13.202 1.22-16.046s2.436-7.516 2.436-11.78c0-4.267-2.234-7.72-2.03-8.735.202-1.016 16.452 3.86 15.436 19.906-1.015 16.045-7.515 11.17-7.515 11.17s2.03 19.703-3.048 22.343c-9.14 4.875-15.843-1.015-15.843-1.015l.858 4.007-6.953-3.6s-8.937-12.798-10.968-18.485-4.47-31.077-3.656-36.56c.813-5.486 1.422-37.58 1.016-39.204s-2.03-28.436-1.015-32.5c1.016-4.06 7.313-21.936 7.11-21.936z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#e)" transform="matrix(.86 0 0 .86 337.27 11.7)"/> + <path d="M530.822 194.416s12.402-12.053 19.564-10.656c3.668 0 .174 2.62.174 2.62s6.29.524 7.162 3.32c.175 1.222-2.97 1.57-2.97 1.57s2.62.525 2.796 2.796-26.552.524-26.726.35z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#ff7000"/> + <path d="M531.518 193.89s13.276-1.746 18.866-7.336M544.97 190.227s9.78-.35 9.78 1.05" stroke="#000" stroke-width=".86pt" fill="none"/> + <path stroke-linejoin="round" d="M579.73 333.116s8.385-1.92 10.655-4.89c1.4-1.05 8.735 11.004-10.655 4.89z" fill-rule="evenodd" stroke="#000" stroke-width="1.075" fill="#fff"/> + <path d="M577.46 263.766s1.048 6.463-1.923 10.83c-1.572 1.747-6.288 4.716-6.288 6.813 0 2.095 1.746 4.89 1.396 7.336s-2.97 4.89-2.795 6.987c0 2.096 2.97 13.276 2.622 13.45M562.09 242.808s-6.636 2.27-8.034 8.91" stroke="#fff" stroke-linecap="round" stroke-width="1.075" fill="none"/> + <path d="M559.288 190.227s2.27 6.29 9.608.35c-4.717-6.462-9.608-.175-9.608-.35z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#c75b00"/> + <path d="M564.865 190.086c0 .338-.352.612-.787.612s-.786-.274-.786-.612c0-.338.352-.612.786-.612s.787.274.787.612z" fill-rule="evenodd"/> + <path d="M499.303 175.633s13.912 15.058 22.913 14.895c1.637 4.42-4.086 8.53-6.378 10.493-4.582-1.472-8.724.27-19.363-12.824.655-8.347 2.99-12.235 2.828-12.563zM518.128 140.605c1.8-5.564 5.4-9.983 8.51-10.474-.817-4.255 6.548-23.077 27.99-30.278 1.308 9.656-9.167 19.15-9.167 19.15s31.59-5.402 37.972-13.422c-.654 3.6-7.037 26.024-40.753 25.86 12.765 12.112-4.093 21.77-11.295 18.822 13.258-10.148-3.764-16.203-13.258-9.657z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/> + <path d="M528.93 132.754c6.383-4.092 8.674-4.092 13.912-3.274-3.765.49-3.765.655-3.765.655s-.327.49 1.964 2.62c-2.617-.656-4.91-2.13-12.11 0z" fill-rule="evenodd" stroke="#ccc" stroke-width=".86pt" fill="#cccccd"/> + <path d="M526.47 130.13s12.602-6.71 19.64-11.293" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M515.668 201.003s17.35 4.747 19.313-20.132c-3.763-10.8-9-34.042-.98-40.752-7.366-5.074-15.386.164-15.386.164-.49 1.145-7.038 10.474 1.8 26.842-20.95-5.565-12.44 14.24-12.44 14.24.82-3.11 11.95-6.057 14.73 9.82 1.147 3.927-7.527 9.983-7.036 9.82z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/> + <path d="M535.147 181.034s18.33-9.82 17.84-32.898c-15.55.328-21.113 20.46-21.113 20.46l3.274 12.438z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/> + <path d="M452.983 179.89s-13.585 11.785-21.277 8.02c-5.73 3.437-12.44-2.62-12.44-2.62s7.857 28.97 36.008 8.02c-.49-6.382-1.964-12.93-2.29-13.42z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/> + <path d="M431.543 187.415c1.146-6.056 5.892-9 9.657-3.273 5.074.982 10.148-19.804-7.856-16.367 5.074-27.17-10.147-37.317-10.147-37.317s-5.4 30.115-2.946 35.68c2.456 5.565-3.6-10.31-23.077-14.73-.327 22.75 21.77 33.39 21.77 33.39s6.218 5.727 12.6 2.618z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/> + <path d="M433.34 167.61s-8.51 7.2-6.546 17.02M420.415 166.63s-1.964 7.037 2.29 17.02M419.105 185.945s3.928-6.383 12.44 1.8" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M420.742 141.75c0-.164-12.93 0-5.238 13.093-5.728 1.8-18.495-6.547-9.657-17.677-28.97-.654-40.754-14.566-40.754-27.332 8.51 8.838 28.806 5.237 36.008 10.638-8.837-8.184-7.037-19.476-7.037-19.476s24.715 7.365 29.133 29.296c-1.473 4.256-2.127 11.785-2.455 11.457z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/> + <path d="M400.86 119.905c4.77 4.853 17.025 6.303 23.244 11.704" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M406.503 134.224s10.145-1.31 13.085 2.292c-3.97 0-5.293-.983-11.027 1.145 1.618-.817 1.177-2.29 2.06-2.29s-3.677-1.146-4.118-1.146z" fill-rule="evenodd" stroke="#ccc" stroke-width=".8152799999999999" fill="#cccccd"/> + <path d="M457.077 54.843s5.564-4.91 11.62-.49c-2.736 8.174-12.603 5.072-12.603 5.072s.328 4.092-.654 6.056c1.975 1.486 3.6 6.384 3.6 6.384s10.15-2.455 12.276 1.964c3.886-.536 6.71 0 6.71 0s7.857-1.964 10.64-1.964c2.78 0 11.62 2.292 12.438 3.93.818 1.635 3.764 12.6 5.728 12.438 1.964-.164-4.746 2.618-6.546-.164-1.8-2.782-1.31 3.6-1.31 3.6s5.565 5.893 6.22 7.202c.654 1.31-3.437 11.948-.328 19.313-2.724.252-2.946 3.11-2.946 3.11-.15 3.242-4.255 4.092-4.255 4.092l-.982-4.42-2.783 1.637 1.146-3.437s3.765-9.166 4.092-12.11c.327-2.947-3.437-8.185-6.383-8.185s-5.074 9.33-5.074 9.33-1.473 7.037-.982 7.692c.492.655-1.963-2.29-1.963-2.29s-1.31 4.254-2.29 5.563c-.983 1.31-3.11 1.8-3.11 1.8s-1.474-4.255-.983-5.89c.49-1.638 8.02-8.02 7.365-12.604-.656-4.582 0-3.436-.165-3.6-.163-.163-3.928-3.437-4.09-5.237-.165-1.8-4.912 2.29-11.13.982-1.904 3.326-2.128 11.62-2.128 11.62s-.655 9.984.654 11.13c1.31 1.145-3.272 3.6-3.272 3.6l-3.274 4.42s-1.145-2.783-1.145-2.62c0 .164-2.293 1.637-2.293 1.637l1.31-3.273c-.08-2.48 3.182-9.246 3.182-14.975 0-5.73.417-11.868.417-11.868s-6.055-.328-5.892 5.892c.164 6.218-1.473 6.546-1.145 8.346.327 1.8 1.964 6.874 1.473 8.347-.49 1.473-2.455 1.964-2.455 1.964l-.49.82s-6.057 2.78-5.894 3.927c.164 1.145-.163-3.274-.163-3.274l-.327-4.746s3.6-2.292 3.6-8.02c0-5.73-.83-6.543-.665-7.852.164-1.31.993-6.06.83-6.55-.164-.492-3.437 1.308-4.42 1.308s1.8-3.437 2.128-5.892c.328-2.455-3.273 2.29-6.22-.49 1.37-3.023 3.438-3.93 3.765-6.22s-2.29 1.964-4.58.327c.185-2.196 2.454-4.092 2.454-4.092s-1.865-.228-2.62 0c-1.472-.49 1.638-2.782 1.8-6.056.165-3.273-1.8-4.582-1.8-4.746 0-.163-3.272-2.945-3.763-4.09-.49-1.146-.49-2.456-.49-2.456s-5.402 3.928-11.785-4.42c5.845-4.99 12.11-1.308 12.11-1.308s1.638-4.583 9.167-4.256c7.53.328 9.002 4.583 8.675 4.092z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#923f00"/> + <path d="M498.253 139.505c.137 0 13.904.408 14.04 7.77.136 7.36-4.226 5.45-4.362 5.45s-10.086-1.225-10.086-1.225l.41-11.996z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/> + <path d="M484.89 137.458s17.174-.137 16.22 7.36c-.955 7.497-5.317 5.998-5.317 5.998l-8.314-.682-2.59-12.676z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fffeff"/> + <path d="M475.214 136.64l9.95.82s5.998.816 5.725 6.54c-.273 5.726-6.135 5.863-6.135 5.863l-9.677-.546.136-12.676z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/> + <path d="M451.908 139.505c-.136 0-13.904.408-14.04 7.77-.136 7.36 4.226 5.45 4.362 5.45s10.087-1.225 10.087-1.225l-.412-11.997z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/> + <path d="M465.264 137.458s-17.175-.137-16.22 7.36c.954 7.497 5.315 5.998 5.315 5.998l8.314-.682 2.59-12.676z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#00f"/> + <path d="M474.947 136.64l-9.95.82s-5.997.816-5.725 6.54c.273 5.726 6.134 5.863 6.134 5.863l9.678-.546-.137-12.676z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#fff"/> + <path d="M501.59 219.4s7.155-10.546 10.168-9.417c2.636.88.628 9.04-.628 9.792l-9.54-.376zM452.544 221.282c-2.26-3.138-5.523-11.8-8.536-9.415-2.636.878-.627 9.038.628 9.792l7.908-.378z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#5e0043"/> + <path d="M457.283 200.427s13.942 8.59 18.516 8.812c4.572.222 19.072-11.156 19.072-11.156" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M458.625 166.75l2.677-3.347 13.385 6.804 13.607-6.023 2.677 2.788-15.168 10.708-17.177-10.93z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#5e0043"/> + <path stroke-linejoin="round" d="M447.995 166.57c1.087 1.372 9.738 11.89 11.3 20.59 1.56 8.7-.893-11.934-.893-11.934s10.708 5.242 11.043 8.588c.334 3.346 5.12-.226 5.348-.798L443.79 162.88l4.205 3.69zM500.894 165.967s-11.266 14.835-9.927 31.007c-2.324-7.744-.447-20.523-.447-20.523l-2.453 1.563s-2.566 10.93-5.8 12.604c-.546-1.302-.447-1.785-.447-1.785s-3.457 4.462-4.127 4.908c-.67.446.224 15.058.224 15.058s1.16 10.59 2.5 10.48c-1.523.745-3.393 1.903-3.393 1.903l-1.387-28.277 3.172-3.178s4.237-5.13 4.572-10.15c-1.84 1.56-3.904 2.008-3.904 2.008s-.558 7.138-2.23 8.142c-1.674 1.004-1.72 2.866-1.72 2.866l-.397-9.328 25.763-17.295z" fill-rule="evenodd" stroke="#474747" stroke-width="1.075" fill="#474747"/> + <path d="M475.128 183.14l2.176 44.61" stroke="#000" stroke-linecap="round" stroke-width="1.075" fill="none"/> + <path d="M447.694 204.443s5.13 3.012 7.027 12.158c16.73-1.226 21.974 4.686 21.974 4.686s13.72-6.58 20.077-5.354c2.23-4.685 8.59-10.708 8.59-10.708" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M440.694 160.72l34.438 22.532 31.008-20.858s6.47-3.57 5.912-6.134-2.788-1.562-3.904-1.116c-1.115.447-32.458 22.642-32.458 22.642l-33.35-21.08s-2.454-.78-2.9.78.92 2.455 1.253 3.235z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#b4b6b9"/> + <path stroke-linejoin="round" d="M502.278 154.873s-8.81-3.74-8.81-.5c0 3.243.248 3.575 1.66 5.654 1.414 2.078-1.08 3.408-1.08 3.408s-.332-.914-.83-2.328c-.5-1.413-5.238-2.41-5.653-4.073-.416-1.662.997-4.323-1.83-4.655-2.826-.334-5.57 1.163-6.15 4.405-.583 3.242-4.24 10.807-4.24 10.807l.5-17.208c6.205.443 17.733 1.8 26.6 2.826-2.66-.415.997.166.914 1.08-.25.75-1.165.832-1.082.583zM471.103 150.547c-1.58 0-9.476.915-11.47 2.078-1.996 1.164 3.24 2.993 2.576 4.572-.666 1.58-.75 4.74-3.243 4.074-2.494-.664-10.89-4.82-11.14-6.234-.248-1.413-1.994-1.496-1.994-1.496s24.107-3.242 25.27-2.993z" fill-rule="evenodd" stroke="#474747" stroke-width="1.075" fill="#474747"/> + <path d="M474.904 148.57l-.06 21.14M458.625 123.663s-9.66 15.684-9.85 16.162" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M161.8 129.74s4.893 6.672 4.337 8.562c2 1.557 4.225 7.784 4.225 7.784" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#f)" transform="matrix(.86 0 0 .86 337.27 11.7)"/> + <path d="M492.672 122.322s-9.085 12.815-8.798 13.77" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M446.213 61.426c-.206.717-1.364.995-2.588.62s-2.048-1.26-1.842-1.976c.206-.717 1.365-.995 2.588-.62s2.05 1.26 1.843 1.976zM449.886 61.173c.206.717 1.364.995 2.588.62s2.047-1.26 1.842-1.976c-.206-.717-1.365-.995-2.588-.62s-2.048 1.26-1.842 1.976z" fill-rule="evenodd"/> + <path stroke-linejoin="round" d="M556.13 326.572s-3.367.63-3.262.947-9.79.63-10 .315c-.212-.316-1.475 1.684-1.475 1.684l1.58-.948s2.42 2.527 3.158 2.316c.737-.21-.315.947-.105 1.158.21.21.948-.42.948-.42l16.36-.275-7.2-4.778z" fill-rule="evenodd" stroke="#000" stroke-width=".86pt" fill="#ff7000"/> + <path stroke-linejoin="round" d="M562.23 331.663l-13.363.387s-3.37 3.053-3.58 3.79 2.21.947 2.21.947l.738 2.527 1.685-.632s11.36 1.69 21.79-.632c5.265-1.842 6.186-4.053 2.5-5.395-3.683-1.342-11.876-.94-11.98-.992z" fill-rule="evenodd" stroke="#000" stroke-width="1.075" fill="#ff7000"/> + <path d="M208.37 403.93l27.97-1.246-5.208-4.416 75.647-3.058-2.606-6.002-84.707 3.398 10.192 4.756-22.876.68.68 2.377-6.002-.227s6.68 2.605 6.908 3.737z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#g)" transform="matrix(.86 0 0 .86 337.27 11.7)"/> + <path d="M239.73 249.42c-2.222-1.11-11.998-2.444-22.884 4.666l.444 25.106s15.997-8.665 23.773-6.666c-.444-7.776-.444-17.774-1.333-23.106z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="url(#h)" transform="matrix(.86 0 0 .86 337.27 11.7)"/> + <path d="M410.434 291.76l-56.723 56.31M435.714 292.172l-46.037 60.63M433.66 276.348l-61.453 74.398M370.358 349.714l5.96-6.987M445.372 313.75l-23.84 32.886M420.503 350.953l.617 12.53M456.26 325.256l-25.278 31.65M451.745 354.444l10.276-16.852M455.65 334.303l-12.332 13.975M451.95 321.154l-8.425 10.276M441.055 306.147s-25.69 37.61-25.278 40.692M438.38 301.22c-.616.41-22.196 28.977-22.196 28.977M414.955 339.23l-3.905 4.728M406.117 351.16l-5.96 7.808" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M407.627 205.2s-1.74 5.47 0 8.204 12.68 24.86 12.68 24.86 7.458-9.197 10.193-9.446c2.735-.248 1.49 23.867 1.49 23.867s-4.473 4.227-7.208 3.978c-2.735-.248 6.712 9.447 6.464 17.652s-12.43 48.976-16.906 49.722c-4.475.746 1.99-7.458 1.74-9.696-.25-2.236-1.492-.745-2.486-3.23-.995-2.487 1.492-6.216.994-8.702s-2.734-1.99-2.983-3.73 1.492-2.237 1.243-4.225c-.25-1.99-2.983-1.493-2.735-3.233.25-1.74.498-.994.25-4.226-.25-3.232-.747 2.237-3.482 2.486-2.733.25-4.97 6.464-4.97 6.464s-5.47 7.707-10.94 4.226c3.232 6.96.746 9.945-.497 10.193s.994 5.47-1.99 5.72 2.238 11.683-1.242 12.677c3.73 1.74.747 3.98.747 3.98s-8.618.715-6.713 11.932c-25.36-8.935-37.79-24.346-37.54-40.007.248-15.662 5.22-29.833 17.402-35.054 3.48-12.928 9.447-26.85 9.447-26.85s-.994-5.718-.248-9.447c.746-3.73 4.226-7.458 4.226-7.458s-.496-8.95-.247-13.425c.248-4.475 1.99-6.465 2.237-8.95.25-2.486-.746-15.166 1.74-17.403 2.487-2.238 7.21-1.99 9.696-3.48 2.486-1.492 5.718-4.227 8.95-3.98s5.967 2.488 5.967 2.488 12.182 0 12.927 4.724c.746 4.722-2.486 6.462-2.486 6.462s1.74 6.713-5.718 12.928z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#8a9396"/> + <path d="M396.852 188.097c.39.722-.5 1.96-1.986 2.764s-3.01.875-3.4.153c-.39-.72.498-1.958 1.986-2.764s3.01-.874 3.4-.153z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86059pt" fill="#cecfcf"/> + <path d="M394.787 189.354c0 .455-.414.824-.925.824-.51 0-.924-.37-.924-.824 0-.454.414-.823.924-.823s.925.37.925.824z" fill-rule="evenodd"/> + <path d="M412.925 197.46s3.02 13.48-.59 22.793M413.854 191.56s5.89 7.792 5.13 17.483M414.424 189.85c.19 0 4.94 4.18 4.75 7.03M415.564 188.138s3.23 2.28 3.99 4.56" stroke="#2b2b2b" stroke-width=".5375" fill="none"/> + <path d="M414.044 186.805s-11.592 18.813-10.072 30.595" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M414.804 186.237s-15.393 9.122-18.243 38.957" stroke="#2b2b2b" stroke-width=".5375" fill="none"/> + <path d="M413.094 191.75l-6.082 4.56" stroke="#000" stroke-width=".86pt" fill="none"/> + <path d="M390.86 226.906s8.552-35.537 23.754-40.667" stroke="#2b2b2b" stroke-width=".5375" fill="none"/> + <path d="M420.505 238.878s8.172-10.262 10.072-9.882c1.9.38 1.33 23.754 1.33 23.754s-6.08 4.56-7.412 4.37c-1.33-.19 6.842 11.023 6.652 15.204-.19 4.18-.38 4.18-.38 4.18s0-2.47-1.9-6.46c-1.9-3.99-.76-8.552-13.113-18.624-3.04-6.27 6.08 3.8 7.98 2.28 1.902-1.52-3.42-14.632-3.23-14.822z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/> + <path d="M405.978 181.086s-3.435.936-3.904 2.342c-.468 1.405-2.498 2.81-3.59 2.342-1.094-.468-3.125-2.186-3.125-2.186" stroke="#2b2b2b" stroke-width=".86pt" fill="none"/> + <path stroke-linejoin="round" d="M386.46 193.108s-5.155 5.154-2.656 5.778c2.498.625 5.153-4.06 5.153-4.06s0 7.964 2.186 6.715 8.59-5.777 8.59-5.777 2.185-.156 2.653 0c.47.156 5.934 4.84 9.526 3.123-2.03 5.31-4.373 5.934-4.373 5.934s-3.748 4.84-8.59 3.748c-4.84-1.093-6.09-3.123-6.09-3.123s-4.06.312-5.308-1.562c-1.25-1.874-1.718-2.967-1.718-2.967s-2.342 2.343-2.967 1.25c-.625-1.094 0-7.496 3.59-9.057z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1.075" fill="#2b2b2b"/> + <path d="M415.66 185.927s-9.526-2.81-12.805 1.874c-3.28 4.686-2.498 7.34-.78 7.81" stroke="#2b2b2b" stroke-width=".86pt" fill="none"/> + <path d="M417.13 185.66c0 1.124-.804 2.034-1.796 2.034s-1.796-.91-1.796-2.033.804-2.033 1.796-2.033 1.796.91 1.796 2.034z" fill-rule="evenodd"/> + <path d="M389.407 209.964s3.884 5.976 8.515 7.62-3.212 3.062-7.843-.075c-3.362-4.558-2.466-7.844-2.466-7.844s.896-.897 1.793.298zM422.647 245.224s-10.906-15.162-14.043-15.984c-3.138-.822 2.39-1.494 5.75 1.718 3.362 3.212-.895-5.23-.895-5.23l9.186 19.496z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/> + <path stroke-linejoin="round" d="M388.362 332.84c4.183-1.12 22.408 10.46 26.516 13.372 4.108 2.913 12.698 1.045 12.698 1.045s-3.96 2.39-6.424 2.988 7.32.598 7.32.598-23.305 6.423-46.983-6.05c-2.167-9.71 5.078-11.877 6.87-11.952z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1.075" fill="#2b2b2b"/> + <path d="M415.028 248.957s-3.063-.598-4.63-2.39c-1.57-1.793-3.81-6.2-6.126-8.068s-13.894-8.217-18.077-7.77c-4.183.45-5.452-.447-5.975-.97-.523-.523-2.24.224-1.942 2.39.298 2.167-3.212 6.947-1.942 9.188 1.27 2.24 7.245 11.353 8.44 11.652 1.195.3.448 5.303.448 5.303s5.304 5.378 6.648 5.677c1.345.3 2.69 1.27 2.54 2.54-.15 1.27-5.826 8.216-5.826 8.216s-6.125 3.212-6.2 5.005c-.075 1.793 1.494 5.528 6.35 6.723 4.854 1.195 17.926.224 18.598-.896.672-1.12 1.718-7.843 1.27-8.515-.448-.673-3.66-2.69-5.303-2.39-1.643.298-3.137 1.643-2.987 1.94.15.3-2.316 1.57-2.316.375s4.855-6.573 5.304-6.125c.45.448 7.32 1.12 8.59 4.556s1.27 5.9 4.856 5.528c3.585-.374 8.59-3.66 9.037-10.532.45-6.872-4.033-11.503-5.154-12.175-1.12-.673-4.856-2.914-5.155-3.96-.298-1.045-1.045-4.48-.448-5.303z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/> + <path d="M350.416 279.29s11.577-2.99 14.566-2.914c2.988.075 14.266 5.303 17.553 8.515 3.287 3.213 10.01 10.832 14.416 10.16 4.408-.673 5.678-1.57 5.678-1.57l-1.718 3.287s-3.585.97-5.378.523c-1.792-.448-5.303-1.568-8.814-5.004-3.51-3.436-14.34-12.698-23.53-12.026-9.186.672-14.49 9.71-14.49 9.71s.075-4.407.45-5.378c.372-.97-1.944 2.09-1.944 2.09l3.212-7.394z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/> + <path d="M393.067 288.25c.074.075 2.913.822 7.693.822s7.32-2.092 7.32-2.092l-.298-1.867.747-2.614s3.66 3.733 3.584 4.48c-.075.747-1.494 1.046-1.494 1.046l-.523-1.793-1.27 1.57s-6.946 5.526-10.756 4.705c-3.808-.822-7.32-3.287-6.348-3.884s1.494-.374 1.345-.374zM376.186 298.037s-4.183-.075-6.05.822c-1.868.895-2.54 2.015-3.81 1.866-1.27-.15-2.24-1.793-1.867-2.465.522-1.045 2.987-2.39 7.692-2.016s4.034 1.793 4.034 1.793zM390.827 309.39c0-.225-.3-6.126-2.615-8.516s-5.154-2.39-6.424-2.092c-1.27.3 4.706 2.913 5.304 4.63.597 1.72 2.54 6.5 2.017 7.695-.524 1.195-1.495-3.36-5.155-4.63s-8.74-.6-7.694 1.045 5.155.15 7.246 3.66 3.66 7.245 3.66 7.245l.673-2.54 1.866-.522.224-4.856.897-1.12z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width=".86pt" fill="#2b2b2b"/> + <path stroke-linejoin="round" d="M387.84 328.507l-3.81-7.62s-1.196-4.854-4.408-6.2c-3.212-1.343-7.47-1.12-7.544.524-.074 1.644 6.872 3.736 7.32 4.632.45.897.224 2.39-.373 2.465-.598.075-3.66-1.12-5.23-.747-1.567.374-2.464 2.39-4.78 1.793-2.315-.598-4.257-7.993-3.36-8.74.896-.746-1.718 1.345-2.24-.597-.524-1.942.746-7.992-.15-8.74-.897-.746-5.23-3.36-5.304-3.883-.074-.523.225-29.73 24.65-5.528-10.457-12.4-14.566-11.054-16.507-11.13-1.42 0-10.906.822-13.296 12.923-2.39 12.1-5.23 4.557-5.23 4.557s-.522 5.228 2.018 6.722c2.54 1.494-1.195 5.826-1.195 5.826s-4.556-11.13-3.884-15.985c-.897 3.885-.822 13.52 4.93 24.052 6.722 7.096 13.072 13.67 29.953 21.064 8.888-13.595 8.44-15.237 8.44-15.387z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1.075" fill="#2b2b2b"/> + <path stroke-linejoin="round" d="M371.854 328.584s4.93.598 6.274 3.137c1.345 2.54 1.942 6.425 1.942 6.425.822-1.643 1.196-3.062 2.84-4.257s2.837-1.345 2.763-2.24c-.075-.898-5.23-6.35-7.843-6.65-2.615-.298-7.17 2.84-7.17 2.84s-.823 1.194 1.194.746z" fill-rule="evenodd" stroke="#2b2b2b" stroke-width="1.075" fill="#8a9396"/> + <path d="M383.114 341.433s12.776 5.824 33.82 6.2" stroke="#8a9396" stroke-linecap="round" stroke-width="1.075" fill="none"/> + <path d="M425.764 282.127s-1.1 10.72-9.345 31.88" stroke="#2b2b2b" stroke-linecap="round" stroke-width="1.075" fill="none"/> + <path d="M424.12 288.723s-2.472 7.696-9.343 13.467" stroke="#2b2b2b" stroke-width=".86pt" fill="none"/> +</svg> diff --git a/s/flag/gt.svg b/s/flag/gt.svg new file mode 100755 index 0000000..c5def7c --- /dev/null +++ b/s/flag/gt.svg @@ -0,0 +1,57 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#06f" d="M0 0h640v479.987H0z"/> + <path fill="#fff" d="M213.336 0h213.336v479.997H213.336z"/> + </g> + <path d="M401.82 305.02c-1.76-1.83-11.128-4.69-17.788-5.264-5.755-.454-9.467-4.238-12.877-4.612-9.856-9.91-22.74-13.697-31.167-32.99-1.602-5.79-2.74-12.84-2.912-19.585 3.18-22.53 5.238-21.923 9.985-36.82" transform="matrix(-2.05 0 0 2.05 1136.23 -264.44)" stroke="#000" stroke-width=".5" fill="none"/> + <path d="M348.737 354.446c.352 3.407 10.76 15.973 28.738 13.764-1.607-3.468-5.512-5.957-11.114-11.177-2.563-2.642-17.752-4.198-17.623-2.587zM370.137 350.874c-2.09.183-3.95 1.427-.378 4.565 6.026 5.064 27.643 9.723 30.9 3.293-9.568-1.292-15.947-3.32-16.93-3.282-4.445-1.454-10.174-4.898-13.593-4.576z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M359.355 349.327c4.36-2.998 7.738-2.75 10.558-3.343 7.224-.5 12.164.492 15.187 1.742 4.475 1.927 10.993 6.75 11.82 10.253-6.644-.126-11.047-5.14-19.6-7.04-4.365-.377-12.43-.938-17.965-1.613zM347.814 348.017c12.6-7.754 24.546-21.97 25.77-36.825-15.734 12.313-26.404 30.093-25.77 36.825z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M354.927 347.872c10.655-4.622 25.09-14.975 26.842-36.507-14.62 9.2-19.296 22.807-26.843 36.507zM377.413 337.494c-.822-6.078 13.773-37.834 22.288-46.008.93 12.225-10.957 46.557-22.287 46.008zM376.962 338.713c2.216 9.418 26.306 11.863 34.082.822-9.683-1.616-21.654-2.556-34.082-.822zM387.552 332.247c9.853 6.207 33.87 1.86 47.867-9.237-20.907-6.3-46.79 5.712-47.868 9.237zM406.54 318.67c1.565-6.845 21.83-20.36 34.903-19.612-8.304 11.27-11.15 9.34-15.476 14.34-2.956 3.707-13.27 6.43-19.426 5.27zM413.21 303.12c-7.176-2.72-5.575-23.422-.776-31.866 4.858 11.4 6.157 29.168.775 31.865zM423.103 295.472c-9.548-5.31-6.106-31.282-1.018-38.565 3.99 7.756 6.08 34.792 1.018 38.565zM426.76 295.24c5.53-8.702 24.784-9.078 33.236-5.713-9.187 8.99-23.333 9.442-33.235 5.714zM432.45 289.65c-7.955-12.44-3.015-19.03 1.84-34.43 2.35 13.077.456 26.876-1.84 34.43zM442.534 262.066c1.37-11.53 11.814-16.975 23.688-20.94-2.465 8.49-7.588 17.677-23.688 20.94z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M439.696 268.356c-12.43-2.13-13.01-13.985-12.748-25.582 3.545 6.388 12.046 14.614 12.748 25.582zM436.538 248.26c2.942-7.205-2.225-26.69-14.916-33.867.202 11.93 8.324 26.756 14.916 33.867zM443.58 244.06c1.82-4.296 2.998-6.48 5.744-11.954 4.762-9.998 1.686-6.65 8.12-18.747 3.476 13.503-3.48 29.62-13.863 30.7zM444.422 207.893c-8.602 4.718-17.326 1.658-29.267-7.907 9.853-.89 18.693 3.846 29.267 7.907zM442.05 203.094c5.146-17.086 8.17-19.996 12.394-38.542-10.56 8.55-15.99 27.07-12.393 38.542zM440.113 201.958c-11.587-8.412-14.31-17.963-27.646-21.447.282 4.777 19.455 24.717 27.646 21.448z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M437.12 190.255c-7.397-9.205-11.48-16.72-22.437-23.373 1.752 11.23 14.02 27.547 22.437 23.373zM423.094 169.723c2.35-12.846-13.558-21.37-19.075-27.955-.624 11.348 9.307 24.703 19.074 27.955z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M422.996 154.94c3.69-11.574-6.68-19.416-11.843-25.318.825 11.292 2.535 22.944 11.843 25.318zM438.017 177.924c4.567-7.46 1.968-24.567-.986-31.774-3.687 3.95-5.45 30.425.987 31.774z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M430.946 162.756c5.176-9.146 2.273-18.916-.763-26.11-3.35 10.68-5.776 20.956.763 26.11zM441.496 235.212c7.677-.984 13.11-16.994 7.825-31.312-4.918 12.742-4.908 18.806-7.824 31.312z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M439.532 206.864c9.554.488 15.575-7.77 20.638-22.207-7.866 5.052-11.738 18.4-20.638 22.207zM445.986 239.134c-8.737 2.09-18.59-20.794-11.827-33.69 7.415 14.78 9.09 20.978 11.826 33.69zM436.68 272.69c1.2-8.738 19.948-10.96 29.362-9.04-7.53 6.05-22.852 9.794-29.362 9.04z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M432.237 286.56c5.324-4.65 13.747.365 27.255-25.983-18.172 10.366-25.154 22.437-27.255 25.982z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M399.56 306.24c-1.412-2.005-8.867-4.168-15.527-4.742-5.755.242-11.032-1.107-15.833-3.568-9.857-9.91-20.828-16.48-29.254-35.773-1.602-5.79-2.568-11.102-2.74-17.846 3.18-22.53 3.5-24.703 12.247-39.6" transform="matrix(2.05 0 0 2.05 -493.42 -266.93)" stroke="#000" stroke-width=".5" fill="none"/> + <path d="M282.22 354.723c-.352 3.407-12.274 13.957-28.738 13.764 1.608-3.468 17.8-7.182 22.206-13.446 1.304-1.885 6.662-1.928 6.533-.317zM270.13 349.89c2.07-.347 3.195.672-.378 3.81-6.027 5.064-16.3 7.454-31.405 10.1 5.032-5.072 17.208-9.37 18.192-9.332 4.443-1.455 9.668-3.89 13.59-4.577z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M278.9 349.353c-1.587-3.503-3.2-5.272-6.02-5.864-7.224-.5-12.92.743-15.187 1.74-2.458 1.424-10.237 6.5-11.063 10.002 5.887-1.638 9.786-6.147 18.34-7.29 4.11-1.387 9.908-1.192 13.93 1.41zM294.986 345.523c-12.6-7.754-20.513-17.686-21.738-32.542 15.735 12.315 22.372 25.81 21.738 32.543z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M287.12 347.652c-11.916-5.126-16.268-14.723-24.573-30.46 14.87 7.438 21.06 15.247 24.573 30.46zM260.35 342.302c2.584-10.615-1.928-26.238-9.686-33.908-.678 11.972 1.632 31.936 9.685 33.908z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M256.25 339.494c-2.216 9.42-26.81 9.595-34.082.822 7.414 1.662 23.67 1.982 34.082-.822zM249.71 332.02c-7.585 5.702-38.156-3.687-38.54-8.986 4.016-.502 37.46 5.46 38.54 8.986z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M247.497 330.045c4.432-8.752-7.756-36.452-12.63-36.23 2.88 20.718 8.088 30.136 12.63 36.23zM239.523 322.728c-2.824-6.592-24.1-17.84-34.902-19.612 8.81 9.252 14.477 7.953 17.494 13.836 2.2 3.96 11.758 4.667 17.41 5.776z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M235.526 317.747c2.216-8.31 1.107-11.634-4.323-17.617-.553 8.752.556 12.187 4.323 17.617zM227.553 308.466c5.98-3.92 2.326-23.977-2.993-29.582-1.107 14.457-2.548 27.23 2.993 29.582zM216.914 293.478c10.304-3.546 2.325-22.712-.998-30.245-3.99 7.754 2.993 11.853.998 30.245zM215.03 294.75c-8.553-8.2-23.775-8.83-32.227-5.464 10.194 3.445 25.854 5.66 32.226 5.464zM206.055 276.466c-2.237-8.532-21.116-8.495-30.232-5.464 8.2 5.108 23.86 6.992 30.232 5.464z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M212.003 289.86c-5.324-4.65-13.747.365-27.255-25.983 18.172 10.366 25.154 22.437 27.255 25.982z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M209.842 290.178c7.956-12.437 3.015-19.03-1.84-34.428-2.35 13.077-.456 26.875 1.84 34.428zM197.73 261.84c-2.38-11.277-13.075-16.974-23.94-18.418 2.97 5.716 11.118 7.846 23.94 18.42z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M199.59 267.575c12.558-1.142 14.072-12.916 14.725-24.497-4.037 6.09-13.16 13.618-14.726 24.497zM199.473 252.76c7.326.736 16.47-15.19 13.205-27.99-5.975 14.18-6.508 19.156-13.205 27.99zM196.356 239.218c7.726-.464 14.228-16.07 9.92-30.713-3.573 13.54-1.943 19.477-9.92 30.713zM195 246.21c-1.86-4.517-5.395-5.967-7.05-11.863-3-10.546-8.707-12.21-7.834-20.452C193.392 229.35 196.898 238.59 195 246.21zM195.662 234.644c-3.332-29.88 2.588-17.166-10.355-45.336 19.28 17.268 13.95 44.17 10.355 45.336z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M196.546 222.004c-.643-9.545 7.516-15.698 21.87-20.995-4.923 7.946-18.21 12.033-21.87 20.994zM199.976 200.102c-5.145-17.086-8.17-19.997-12.394-38.542 10.56 8.548 15.99 27.07 12.394 38.542zM204.7 199.458c11.588-8.412 14.312-17.964 27.647-21.448-.282 4.776-19.455 24.716-27.646 21.448z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M203.914 191.546c7.398-9.205 11.48-16.72 22.438-23.372-1.753 11.23-14.02 27.547-22.438 23.372zM220.784 162.666c.377-13.054 17.71-18.08 24.477-23.372-1.752 11.23-14.246 22.224-24.476 23.372z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M219.377 153.695c-2.306-11.927 8.913-18.496 14.734-23.752-2.145 11.117-5.21 22.487-14.733 23.752zM204.03 172.906c-4.567-7.458-1.968-24.567.986-31.774 3.688 3.95 5.45 30.425-.986 31.774zM211.998 162.354c-3.81-9.794.467-19.046 4.505-25.73 1.782 11.05 2.707 21.57-4.505 25.73z" fill-rule="evenodd" fill="#0c5c1d"/> + <path d="M273.407 324.1c34.727-33.967 64.923-63.407 113.24-93.754-78.21 60.92-75.795 65.674-108.71 96.247-1.36-1.133-3.17-1.36-4.53-2.492z" fill-rule="evenodd" fill="#6f8593"/> + <path d="M211.605 332.115l12.938 14.217 39.213-59.53 16.503-17.533-3.996-5.814-25.342 24.773-2.915 5.806-36.402 38.08zM425.645 333.02l-16.562 14.67-36.948-59.982-21.486-23.42 5.806-4.002 28.513 28.85 2.914 5.806 37.76 38.08z" fill-rule="evenodd" fill="#6a0d06"/> + <path d="M372.104 296.718c.34-2.152 3.167-6.34-3.173-12.003.153-3.02 3.246-6.15 5.665-7.698 2.037 0 7.924 4.11 10.53 8.717 1.474 3.21 2.228 8.19.34 12.003-1.398 2.113-3.02 4.567-4.756 5.55-.83.6-2.682.413-4.19-.23-2.378-1.206-4.19-4.678-4.416-6.34z" fill-rule="evenodd" fill="#bbcdcd"/> + <path d="M292.86 190.758l-28.915-29.18-1.732.068-.6 1.927-.93 2.68-3.425 3.22-45.163-42.354 42.472 46.325 2.005.022 6.196-6.448 2.61.605 21.295 24.94 6.186-1.807zM330.596 364.68c52.913-85.93 99.007-145.15 14.57-221.08-3.16-3.18-14.066-13.247-20.898-15.416-.95-6.15 3.71-15.864-8.2-16.668-5.066.27-7.567 2.08-7.464 6.65.01 3.556 1.888 5.11.92 8.29-.357 1.59-4.303 5.213-4.06 9.835 1.533 9.848 5.335 12.258 6.49 13.66 2.065 2.054 3.3 3.5 9.37 6.006.67.807 2.463 2.314 3.383 3.326 11.15 2.386 21.312 1.17 28.515 4.76 3.14.967 8.176 6.296 9.814 8.965 20.344 22.305 29.148 58.1-1.96 95.89 6.232.51 21.146-25.02 24.553-46.703-4.767 32.338-15.315 43.632-20.542 53.296 10.45-6.96 18.86-31.473 20.818-36.51-8.286 44.62-51.19 99.71-78.184 111.277 24.434-5.665 40.826-30.014 49.52-38.737-8.466 17.46-25.88 42.166-26.646 53.17z" fill-rule="evenodd"/> + <path d="M366.96 326.366c-33.822-34.193-87.798-85.827-114.6-91.49 41.75 26.95 78.513 63.183 110.07 93.982 1.358-1.133 3.17-1.36 4.53-2.492z" fill-rule="evenodd" fill="#6f8593"/> + <path d="M345.78 193.034l31.808-31.453 1.732.07.6 1.927.93 2.68 3.424 3.22 45.163-42.354-42.472 46.326-2.004.02-6.196-6.447-2.61.607-27.077 30-3.296-4.596z" fill-rule="evenodd"/> + <path d="M261.64 181.42c1.663-9.058 4.455-15.626 13.816-17.21 24.534-1.058 47.258-1.21 72.924-.68 7.322 5.812-.3 17.74-7.927 18.344 11.703 20.23 27.708 35.704 29.897 59.558.754 12.532-3.66 20.655-8.093 25.167-33.727.82-50.068 5.018-78.26 7.203-7.877.947-13.798-8.213-13.723-15.838.046-7.88 3.286-14.044 12.043-15.135 2.718-.295 6.502-.114 9.9-.04-6.57-19.624-31.933-42.874-30.576-61.37z" fill-rule="evenodd" fill="#e3cf6e"/> + <path d="M305.927 133.148c-2.91 9.347 4.403 17.374 5.557 18.776 2.066 2.053 3.415 3.728 9.482 6.233.672.807 9.355 5.757 10.597 6.93 9.235 2.42 14.14-1.728 24.655.852-2.705-6.683-30.798-34.087-50.29-32.792z" fill-rule="evenodd" fill="#336446"/> + <path d="M306.162 137.394c-2.828 4.622 4.643 15.69 5.797 17.092 2.065 2.054 3.414 3.73 9.482 6.233.672.807 3.68 2.328 4.12 2.86l7.953 1.454c-2.706-6.682-18.073-29.8-27.353-27.64z" fill-rule="evenodd" fill="#402e08"/> + <path d="M309.16 121.594l-1.89 1.376 2.752 1.375-.86-2.75z" fill-rule="evenodd"/> + <path d="M305.445 140.632c1.533 9.847 5.2 12.526 6.436 13.852 1.985 2.13 3.496 3.49 9.564 6.233 2.435 2.01 3.36 2.57 5.243 3.58l6.424.956c-2.705-6.682-18.726-21.905-27.665-24.62z" fill-rule="evenodd" fill="#8c361d"/> + <path d="M263.895 295.918c-.34-2.153-3.166-6.34 3.174-12.003-.153-3.02-3.246-6.152-5.665-7.7-2.038 0-7.925 4.113-10.53 8.718-1.474 3.21-2.228 8.19-.34 12.003 1.398 2.114 3.02 4.567 4.755 5.55.83.6 2.682.413 4.19-.23 2.378-1.206 4.19-4.678 4.415-6.338z" fill-rule="evenodd" fill="#bbcdcd"/> + <path d="M268.426 327.278c-2.87 3.323-14.115 9.814-16.307 12.005-1.813 2.415 2.49 5.737 5.208 6.114 4.83-3.624 9.663-8.606 14.04-11.548 6.105-5.64 5.702-6.105 15.63-3.174-1.436-5.284-11.476-9.434-17.213-10.642-9.665 1.056-14.12 5.057-16.08 10.642 6.415-4.83 10.795-7.17 14.72-3.398z" fill-rule="evenodd" fill="#d4be72"/> + <path d="M373.765 296.577c.18-1.033.76-1.59.777-3.62 2.117 3.046 3.128 4.596 5.88 8.464-.992 1.325-2.422.7-3.77.058-1.258-.806-3.06-3.4-2.887-4.9zM262.522 295.897c-.18-1.033-.76-1.59-.777-3.62-2.117 3.046-3.128 4.596-5.88 8.464.99 1.325 2.422.7 3.77.058 1.258-.806 3.06-3.4 2.887-4.9z" fill-rule="evenodd" fill="#fff"/> + <path d="M369.91 329.543c2.87 3.322 14.116 9.814 16.307 12.005 1.812 2.414-2.49 5.737-5.208 6.114-4.833-3.624-9.664-8.607-14.04-11.548-5.004-6.01-7.175-5.737-15.63-3.173 1.435-5.283 11.475-9.434 17.212-10.64 9.665 1.055 14.12 5.056 16.08 10.64-6.415-4.83-10.796-7.17-14.72-3.397z" fill-rule="evenodd" fill="#d4be72"/> + <path d="M292.06 242.87c2.402 3.445 4.403 11.05 4.725 15.934.426 9.447-9.157 14.25-12.414 13.852-6.19-.75-11.263-5.418-11.77-12.65.987-8.434 4.537-13.107 10.41-13.453 3.845.668 8.168 5.26 8.168 10.81-.106 4.59-1.414 9.18-4.245 9.287-6.885-.533-6.485-4.51-7.607-6.645-.293-1.574-.54-5.836.242-6.885 1.027-1.275 5.764-2.962 8.085.32 2.51 2.56-3.708-1.36-6.164.397-1.256 1.79-.427 4.698-.08 5.846.427 1.148.374 4.938 5.123 4.725 1.737-.265 2.35-3.82 2.483-7.287.268-2.373-3.07-7.15-6.406-8.165-2.322-.373-8.006 4.376-7.767 11.05.456 7.58 6.673 10.195 10.01 9.687 3.388-.906 10.462-3.575 10.17-11.128-.75-8.328-2.3-11.772-4.968-15.775 1.04 0 .963 0 2.005.08zM341.706 184.024l-1.443-2.322h-31.067c-8.808.802-22.222 2.136-26.838 4.136-11.823 5.82-15.043-4.456-15.685-7.018-.687-2.35.78-6.592 3.077-8.086.908-1.736 5.983-3.636 9.052-2.488 3.47 1.467 4.98 5.848 4.425 8.812-1.04 4.404-9.376 7.124-6.412 2.642.373-1.97 1.874-7.447-.768-11.37l-2.42.48c3.363 7 .278 10.47.118 12.472-.158 3.364 2.716 3.07 4.942 2.984 1.52-.08 4.087-2.004 5.128-3.046 1.253-1.092 1.446-3.21 1.6-5.68.393-6.52-5.578-11.158-9.608-10.572-12.25 3.044-12.545 13.264-9.77 18.575 1.548 2.668 3.338 4.298 6.326 5.846 2.51.747 6.303.318 9.288-.803 5.91-2.12 15.487-4.003 27.42-4.296l32.636-.266z" fill-rule="evenodd"/> + <g stroke-width="1pt" fill="#8c361d"> + <path d="M330.924 235.013l1.283 1.87-.193.02c-.41-.42-.75-.715-1.015-.886-.27-.176-.565-.308-.884-.393-.176-.047-.434-.052-.772-.016l-.54.058 3.656 5.33c.242.352.412.57.512.655.103.085.237.155.4.21.166.052.352.066.56.044l.24-.026.13.19-3.794.404-.13-.19.24-.025c.21-.023.355-.076.435-.16.06-.06.078-.148.052-.27-.017-.084-.145-.3-.382-.647l-3.655-5.33-.524.056c-.488.052-.774.188-.862.408-.12.31-.046.722.22 1.24l-.202.022-1.283-1.87 6.507-.693zM312.08 237.454l1.93 2.813.144-.015c.46-.05.7-.223.716-.52.02-.297-.13-.717-.44-1.26l.203-.02 2.48 3.616-.2.022c-.314-.39-.627-.703-.938-.94-.308-.236-.582-.388-.822-.453-.242-.07-.536-.086-.882-.05l1.337 1.95c.26.38.437.61.527.69.094.082.206.145.336.19.13.044.297.055.504.033l.433-.046c.677-.072 1.116-.278 1.316-.62.205-.344.186-.83-.054-1.46l.196-.02 1.18 2.23-6.26.666-.13-.19.24-.024c.21-.022.356-.076.434-.16.06-.06.076-.147.047-.268-.017-.086-.144-.302-.382-.65l-3.118-4.543c-.213-.313-.355-.504-.42-.573-.118-.116-.247-.2-.388-.255-.202-.08-.42-.11-.654-.083l-.24.025-.13-.19 6.063-.645 1.4 2.043-.2.02c-.448-.487-.84-.83-1.178-1.027-.334-.197-.707-.33-1.118-.393-.242-.04-.637-.03-1.185.028l-.75.08zM305.885 244.892l.13.19-3.788.402-.13-.19.24-.024c.21-.023.356-.076.435-.16.06-.06.075-.147.046-.268-.016-.087-.144-.302-.38-.648l-3.12-4.546c-.24-.353-.41-.57-.51-.656-.1-.083-.234-.152-.4-.203-.164-.057-.347-.074-.55-.053l-.24.026-.13-.188 3.788-.403.13.188-.24.025c-.212.022-.356.076-.436.16-.06.06-.076.148-.05.27.016.085.143.302.38.647l3.118 4.546c.242.354.414.572.513.655.104.084.24.154.402.21.165.05.35.066.553.044l.24-.025zM299.953 243.124l1.39 2.455-6.43.684-.13-.188.24-.027c.21-.022.355-.076.435-.162.06-.057.075-.146.045-.266-.017-.086-.143-.302-.38-.65l-3.12-4.544c-.24-.353-.413-.572-.512-.656s-.232-.152-.395-.203c-.165-.058-.35-.074-.552-.052l-.24.025-.13-.188 3.863-.41.13.187-.317.033c-.21.023-.355.076-.435.16-.06.06-.077.148-.05.27.015.084.143.3.382.648l3.018 4.4c.243.356.418.58.53.673.107.09.24.152.398.187.11.02.336.014.678-.022l.604-.064c.385-.04.66-.14.828-.296.17-.156.25-.384.244-.682-.003-.3-.107-.728-.312-1.29l.22-.024zM344.1 241.024l-.128-.188.24-.026c.21-.022.35-.07.417-.143.07-.077.094-.17.072-.286-.017-.074-.147-.29-.392-.646l-3.117-4.545c-.242-.355-.414-.573-.513-.657s-.232-.153-.397-.203c-.166-.057-.35-.074-.553-.052l-.24.025-.128-.188 3.242-.345c.866-.092 1.64-.054 2.32.113.834.208 1.606.57 2.32 1.093.716.52 1.316 1.133 1.8 1.837.332.485.558.943.676 1.372.115.424.135.785.06 1.08-.08.294-.233.54-.463.74-.23.194-.56.363-.99.504-.19.062-.517.12-.984.17l-3.242.344zm-1.708-6.81l3.698 5.39c.196.285.33.46.403.52.072.062.154.106.245.133.132.04.287.05.47.03.594-.062.915-.303.964-.724.068-.57-.275-1.403-1.03-2.503-.61-.888-1.24-1.58-1.896-2.08-.515-.39-1.006-.64-1.472-.75-.33-.078-.79-.083-1.382-.017zM339.26 239.432l-2.56.272.156.706c.054.234.13.424.23.57.133.194.313.328.54.402.134.045.4.06.794.047l.13.188-2.41.256-.13-.188c.235-.066.38-.19.433-.374.05-.188.018-.558-.097-1.11l-1.19-5.79.1-.01 6.5 5.387c.617.51 1.053.825 1.31.947.192.092.406.136.64.13l.128.188-3.504.374-.13-.19.143-.016c.283-.03.454-.09.517-.175.04-.063.026-.146-.044-.248-.04-.06-.095-.123-.16-.185-.03-.03-.17-.152-.422-.365l-.975-.82zm-.442-.357l-2.712-2.266.522 2.498 2.19-.233zM321.605 240.044l1.328 1.936c.256.373.44.608.555.702.116.09.254.156.414.202.16.044.406.05.738.013l.13.19-3.71.394-.128-.188c.335-.036.542-.088.62-.158.08-.074.108-.162.09-.262-.016-.1-.152-.337-.408-.71l-3.075-4.485c-.258-.374-.443-.605-.558-.694-.114-.095-.252-.164-.412-.21s-.407-.05-.74-.014l-.127-.188 3.366-.36c.874-.092 1.555-.103 2.04-.03.485.072.964.25 1.435.535.468.283.846.632 1.132 1.05.35.51.445.95.29 1.325-.102.237-.338.432-.706.584l3.346 2.153c.435.277.727.448.874.513.22.09.426.13.626.12l.13.188-2.28.243-4.495-2.9-.475.05zm-2.325-3.39l2.077 3.028.305-.032c.494-.053.835-.135 1.023-.246.185-.114.27-.292.256-.53-.013-.243-.144-.546-.394-.91-.36-.526-.758-.9-1.19-1.125-.43-.225-.93-.307-1.504-.246l-.572.06zM308.615 240.876c.793.08 1.402.213 1.83.4.61.267 1.084.647 1.422 1.14.356.518.432.972.226 1.358-.255.47-.896.757-1.922.867l-3.68.393-.128-.188c.335-.036.54-.09.62-.16.077-.074.107-.16.09-.26s-.153-.338-.41-.712l-3.075-4.484c-.256-.375-.442-.606-.556-.695-.114-.095-.25-.164-.41-.208-.162-.045-.408-.05-.74-.015l-.128-.188 3.472-.37c.83-.088 1.466-.08 1.91.026.44.102.858.284 1.25.544.39.258.694.544.91.86.228.333.307.644.233.933-.075.284-.38.537-.912.76zm-2.04.07c.506-.055.84-.15 1.005-.283.167-.135.25-.306.242-.518-.008-.21-.116-.47-.325-.774-.21-.306-.446-.548-.706-.728-.26-.183-.54-.314-.847-.39-.304-.078-.716-.086-1.233-.028l1.865 2.72zm.274.397l1.52 2.216.17.255c.124.183.27.317.43.4.162.083.34.112.532.092.284-.03.505-.117.662-.26.16-.15.224-.344.196-.585-.03-.245-.143-.508-.336-.79-.22-.323-.497-.603-.83-.842-.333-.24-.67-.398-1.016-.47-.343-.073-.788-.08-1.33-.017z"/> + </g> + <g stroke-width="1pt" fill="#8c361d"> + <path d="M327.9 235.856l1.82 2.812.146-.015c.462-.05.707-.222.736-.52.03-.296-.102-.716-.392-1.26l.204-.02 2.343 3.617-.204.02c-.298-.388-.6-.7-.9-.937-.3-.238-.567-.39-.805-.455-.24-.07-.533-.085-.88-.048l1.26 1.947c.247.38.415.61.5.692.092.08.202.144.33.188.128.044.296.055.503.034l.436-.047c.68-.072 1.127-.278 1.34-.62.218-.343.22-.83 0-1.46l.2-.02 1.094 2.23-6.287.666-.12-.187.24-.026c.21-.022.357-.076.44-.16.062-.06.08-.147.057-.268-.014-.087-.134-.303-.358-.65l-2.943-4.544c-.203-.312-.336-.504-.4-.573-.113-.116-.238-.2-.378-.255-.196-.08-.413-.108-.65-.083l-.24.025-.123-.188 6.088-.645 1.323 2.043-.204.02c-.426-.488-.806-.83-1.136-1.027-.327-.198-.694-.33-1.104-.395-.24-.04-.635-.03-1.185.028l-.75.08zM310.15 237.317l3.408-.36.308 1.37-2.864.304.172.718c1.262-.087 2.4.105 3.417.574.835.387 1.468.912 1.896 1.574.275.425.417.855.428 1.29.008.43-.147.78-.466 1.05-.32.267-.756.43-1.306.488-.594.063-1.12.006-1.572-.17-.32-.127-.54-.285-.664-.475-.095-.147-.12-.283-.08-.407.047-.124.146-.195.3-.212.14-.014.3 0 .477.038s.515.156 1.01.35c.312.12.563.198.756.236.137.03.275.036.414.02.293-.03.476-.158.548-.383.075-.225.02-.48-.163-.766-.39-.6-1.02-1.05-1.89-1.357-.87-.307-1.786-.41-2.743-.307-.1.01-.242.027-.433.05l-.953-3.623zM306.473 237.553l3.66 5.65c.274.425.47.695.586.81.114.11.256.197.43.258s.4.08.674.05l.166-.018.122.19-3.83.405-.122-.188.193-.022c.312-.032.51-.09.6-.172.088-.082.117-.185.087-.308-.03-.125-.187-.404-.47-.84l-2.32-3.58c-.206-.32-.35-.517-.433-.592-.085-.078-.19-.14-.314-.184-.124-.05-.242-.067-.356-.055-.182.02-.37.097-.56.233l-.216-.173 1.927-1.445.176-.02zM321.337 243.512l-.122-.188.24-.026c.213-.022.354-.07.424-.143.072-.077.1-.172.085-.286-.015-.076-.138-.292-.37-.65l-2.942-4.543c-.23-.354-.39-.573-.488-.657s-.226-.152-.39-.203c-.163-.057-.346-.073-.548-.05l-.242.024-.122-.187 3.256-.345c.868-.093 1.64-.054 2.314.113.826.207 1.584.572 2.278 1.094.696.52 1.274 1.133 1.728 1.837.315.486.523.944.625 1.373.1.424.105.784.018 1.08-.09.293-.253.54-.49.74-.237.194-.573.363-1.01.504-.192.063-.52.12-.99.17l-3.256.345zm-1.447-6.81l3.49 5.39c.186.285.313.458.384.52.07.062.15.105.24.133.13.04.285.05.47.03.596-.062.926-.303.99-.725.09-.568-.22-1.403-.932-2.503-.576-.887-1.18-1.58-1.818-2.08-.5-.388-.98-.638-1.443-.75-.324-.077-.785-.083-1.38-.016z"/> + </g> + <g stroke-width="1pt" fill="#8c361d"> + <path d="M349.082 233.477l1.96 2.812.144-.016c.46-.05.695-.222.71-.52.015-.296-.137-.716-.454-1.26l.203-.02 2.52 3.617-.202.023c-.317-.39-.634-.703-.947-.94-.31-.236-.586-.388-.827-.453-.244-.07-.538-.086-.883-.05l1.357 1.948c.264.38.443.61.535.693.093.082.206.145.336.19.13.043.298.055.504.033l.433-.047c.676-.07 1.112-.278 1.31-.62.2-.343.177-.83-.07-1.46l.197-.02 1.204 2.23-6.253.667-.132-.19.24-.025c.21-.02.354-.076.433-.16.06-.058.075-.147.044-.267-.018-.085-.147-.3-.388-.648l-3.167-4.545c-.218-.312-.362-.504-.43-.573-.118-.115-.247-.2-.39-.254-.2-.08-.42-.11-.653-.084l-.24.026-.13-.188 6.056-.646 1.422 2.042-.2.022c-.453-.488-.848-.83-1.19-1.028-.335-.198-.71-.33-1.122-.395-.242-.04-.636-.03-1.184.027l-.748.08zM328.71 240.11l-1.212-4.765 2.946-.314.13.19-.233.024c-.213.023-.36.077-.437.16-.056.06-.07.147-.047.265.018.085.147.3.386.64l3.174 4.557c.246.353.42.572.52.656.1.085.235.154.404.21.165.05.35.065.552.043l.235-.024.13.188-3.777.403-.13-.19.234-.023c.214-.024.36-.077.438-.162.055-.058.07-.146.043-.267-.018-.085-.148-.302-.388-.647l-3.568-5.122 1.616 6.6-.13.014-7.177-5.956 3.39 4.866c.237.34.39.547.464.623.164.165.36.294.59.386.23.09.51.116.84.08l.132.19-2.475.263-.13-.19.074-.007c.16-.014.295-.054.398-.12.1-.07.156-.15.166-.247s-.023-.226-.094-.39c-.02-.038-.136-.21-.352-.52l-3.046-4.373c-.243-.35-.415-.565-.513-.646-.1-.084-.234-.152-.4-.203-.168-.055-.354-.07-.556-.05l-.23.025-.13-.188 2.956-.315 5.206 4.338zM316.292 236.968l1.96 2.813.144-.014c.46-.05.695-.223.71-.52.015-.297-.137-.717-.452-1.26l.2-.02 2.522 3.616-.203.022c-.317-.39-.632-.703-.946-.94-.31-.236-.587-.387-.828-.453-.243-.068-.537-.084-.882-.047l1.356 1.947c.265.38.444.61.535.692.094.08.206.144.337.19.13.043.297.054.505.032l.432-.046c.675-.072 1.112-.278 1.31-.62.2-.344.177-.83-.07-1.46l.196-.02 1.205 2.23-6.254.666-.13-.188.24-.026c.21-.022.353-.076.43-.16.06-.06.076-.147.045-.268-.018-.086-.148-.302-.39-.65l-3.166-4.543c-.218-.314-.36-.505-.428-.575-.12-.115-.248-.2-.39-.254-.2-.08-.42-.108-.655-.082l-.24.025-.13-.188 6.056-.646 1.424 2.042-.203.02c-.452-.487-.847-.83-1.187-1.027-.337-.198-.71-.33-1.123-.394-.242-.04-.637-.03-1.185.03l-.748.078zM317.466 243.636l.13.19-3.78.402-.133-.19.24-.024c.21-.023.354-.076.432-.16.06-.06.075-.147.043-.27-.017-.085-.147-.3-.388-.646l-3.167-4.546c-.246-.353-.42-.572-.52-.656-.1-.084-.234-.152-.4-.203-.166-.056-.35-.074-.552-.052l-.24.026-.13-.187 3.783-.404.13.187-.24.026c-.21.02-.353.075-.43.16-.06.058-.076.147-.05.268.018.086.148.303.39.648l3.166 4.546c.245.353.42.57.52.655.103.084.238.154.403.21.166.05.35.066.552.044l.24-.024zM308.394 237.388l1.303 1.87-.192.02c-.414-.42-.757-.716-1.026-.887-.27-.174-.567-.305-.888-.392-.177-.046-.435-.052-.773-.016l-.54.058 3.714 5.33c.246.353.42.572.52.655.105.085.24.154.404.21.165.05.352.066.558.044l.24-.026.13.188-3.787.404-.132-.19.24-.024c.21-.022.353-.077.432-.16.06-.06.077-.148.05-.27-.02-.085-.15-.3-.39-.647l-3.713-5.33-.524.056c-.487.053-.772.19-.857.41-.116.307-.04.72.235 1.24l-.203.02-1.302-1.87 6.5-.692zM290.78 239.69l1.96 2.812.145-.015c.46-.05.696-.222.71-.52.015-.296-.136-.716-.452-1.26l.2-.02 2.522 3.616-.202.022c-.318-.39-.633-.702-.946-.94-.31-.236-.587-.387-.827-.453-.244-.07-.537-.085-.883-.048l1.357 1.947c.265.38.444.612.534.693.095.082.207.145.34.19.128.043.297.054.503.032l.433-.046c.676-.073 1.114-.28 1.31-.62.2-.344.177-.83-.07-1.46l.197-.022 1.204 2.23-6.254.667-.13-.188.24-.026c.21-.02.353-.075.43-.16.06-.058.075-.146.045-.267-.018-.086-.147-.302-.39-.648l-3.166-4.545c-.22-.312-.362-.504-.43-.573-.117-.116-.247-.2-.39-.255-.2-.08-.418-.108-.652-.083l-.24.024-.132-.188 6.056-.646 1.424 2.044-.203.02c-.452-.488-.847-.83-1.187-1.027-.337-.198-.71-.33-1.123-.395-.24-.04-.637-.03-1.184.028l-.75.08zM286.472 239.55l1.662 2.296-.218.023c-.505-.567-1.084-1.004-1.732-1.31-.648-.31-1.207-.44-1.678-.39-.362.038-.585.163-.67.373-.08.205-.038.428.13.67.107.153.238.284.397.395.214.148.49.29.826.42.244.096.77.253 1.572.474 1.124.307 1.958.622 2.5.943.536.322.963.71 1.28 1.166.403.58.512 1.1.332 1.57-.182.464-.635.735-1.36.812-.228.025-.458.026-.693.003-.232-.023-.544-.078-.935-.168-.22-.05-.382-.068-.494-.057-.09.01-.165.054-.22.133-.056.08-.067.192-.034.34l-.198.02-1.818-2.61.198-.02c.667.716 1.36 1.245 2.072 1.584.717.337 1.332.477 1.848.422.398-.044.643-.18.734-.413.094-.232.044-.487-.148-.762-.114-.163-.27-.315-.468-.46-.196-.142-.433-.272-.713-.388-.28-.12-.735-.265-1.357-.435-.875-.24-1.53-.452-1.97-.638-.44-.187-.832-.407-1.175-.658-.34-.252-.62-.54-.847-.863-.383-.55-.498-1.04-.344-1.473.152-.433.55-.684 1.195-.752.235-.025.48-.023.74.01.196.022.45.076.768.162.318.084.524.12.62.11.092-.01.146-.045.162-.105.016-.06-.026-.196-.124-.408l.162-.017zM300.407 242.306l1.334 1.915c.262.376.45.61.564.703.117.09.254.157.417.202.165.044.41.05.738.014l.13.188-3.675.392-.132-.19c.337-.035.543-.087.62-.157.077-.075.106-.162.087-.262-.016-.1-.156-.337-.415-.71l-3.125-4.484c-.26-.374-.448-.605-.564-.695-.116-.093-.254-.162-.415-.207s-.407-.05-.74-.015l-.13-.187 3.154-.336c1.04-.11 1.907-.013 2.605.29.698.307 1.232.724 1.6 1.254.313.45.435.848.366 1.198-.068.35-.32.61-.75.78-.29.12-.845.222-1.666.31zm-2.357-3.383l2.08 2.986c.122-.008.213-.013.274-.02.434-.046.683-.205.747-.473.064-.273-.086-.67-.446-1.184-.357-.514-.736-.877-1.136-1.09-.4-.212-.834-.293-1.3-.244l-.218.023zM337.763 237.738c.792.08 1.405.214 1.833.402.613.266 1.092.646 1.436 1.138.36.52.442.972.24 1.36-.25.468-.887.756-1.91.865l-3.677.392-.133-.188c.335-.036.54-.09.62-.158.076-.076.105-.163.085-.263-.016-.1-.154-.337-.415-.71l-3.124-4.486c-.26-.372-.45-.603-.565-.692-.115-.095-.252-.164-.414-.21-.162-.043-.41-.05-.74-.014l-.13-.188 3.468-.37c.828-.087 1.466-.08 1.91.026.442.103.86.285 1.255.545.395.258.7.544.92.86.233.332.315.644.244.933-.073.284-.374.537-.904.758zm-2.038.07c.505-.054.84-.15 1-.282.167-.135.245-.308.236-.518-.01-.21-.12-.47-.33-.775-.215-.306-.454-.548-.716-.73-.262-.182-.546-.313-.85-.39-.307-.076-.718-.085-1.235-.026l1.895 2.72zm.277.397l1.545 2.217.17.255c.13.183.275.318.436.402.164.08.34.11.534.09.284-.03.504-.117.66-.262.156-.147.22-.343.19-.583-.034-.245-.148-.51-.345-.79-.225-.323-.505-.603-.84-.842-.335-.242-.676-.398-1.02-.47-.345-.074-.79-.08-1.33-.018zM343.45 237.686l1.35 1.936c.26.374.447.607.562.7.116.09.255.158.416.203.16.045.406.05.738.014l.132.188-3.704.395-.132-.19c.335-.034.54-.088.618-.158.078-.074.107-.16.088-.26-.018-.1-.155-.338-.415-.713l-3.125-4.483c-.26-.375-.45-.606-.564-.696-.115-.094-.255-.164-.415-.207-.16-.045-.41-.05-.74-.015l-.13-.188 3.36-.36c.878-.092 1.558-.103 2.044-.03s.966.25 1.44.535c.47.282.852.632 1.143 1.05.355.508.456.95.305 1.324-.1.237-.333.43-.7.583l3.37 2.155c.437.277.73.45.878.512.22.09.428.13.627.12l.132.188-2.28.244-4.525-2.9-.475.05zm-2.362-3.39l2.11 3.028.305-.032c.494-.053.833-.135 1.02-.247.184-.114.267-.29.25-.53-.016-.242-.15-.545-.404-.908-.37-.527-.77-.902-1.204-1.126-.43-.223-.933-.305-1.507-.244l-.572.06z"/> + </g> + <g stroke-width="1pt" fill="#8c361d"> + <path d="M337.078 234.465l2.662 5.65c.2.425.35.694.444.81.095.11.224.197.386.258.163.062.385.078.665.05l.17-.02.09.19-3.903.406-.09-.19.197-.02c.317-.033.526-.09.63-.172.102-.082.15-.186.14-.31-.007-.123-.115-.402-.32-.837l-1.688-3.582c-.15-.32-.26-.515-.33-.59-.07-.08-.164-.14-.28-.184-.116-.05-.23-.067-.348-.055-.185.018-.387.095-.6.232l-.186-.174 2.18-1.444.18-.02zM335.79 241.99l-4.36.455-.052-.113c.637-1.623.978-2.707 1.02-3.25.046-.542-.047-1.058-.277-1.547-.167-.357-.425-.64-.772-.85-.35-.213-.694-.302-1.037-.267-.56.06-.872.366-.935.922l-.234-.046c-.11-.672-.037-1.185.216-1.54.254-.354.643-.558 1.167-.613.376-.038.756.007 1.143.138.385.13.734.33 1.043.597.306.263.52.52.636.767.213.453.294.925.244 1.418-.072.668-.462 1.628-1.17 2.88l1.6-.166c.394-.04.64-.083.743-.126.106-.043.18-.104.223-.183.042-.083.07-.247.083-.495l.196-.02.525 2.04zM320.29 236.215l2.663 5.65c.2.425.35.694.444.81.094.11.223.197.387.258.162.062.383.078.664.05l.17-.02.09.19-3.903.406-.09-.19.197-.02c.317-.033.527-.09.63-.172.103-.082.15-.186.142-.31-.01-.123-.116-.402-.32-.836l-1.688-3.583c-.15-.32-.26-.517-.33-.592-.07-.078-.166-.14-.282-.184-.116-.05-.23-.067-.347-.055-.186.018-.387.095-.602.232l-.183-.174 2.18-1.444.18-.02zM309.68 237.886l1.325 2.812.148-.016c.47-.05.746-.22.826-.518.082-.297.024-.718-.17-1.26l.21-.022 1.703 3.618-.208.022c-.23-.39-.474-.703-.735-.94-.256-.236-.498-.39-.723-.453-.23-.07-.52-.087-.872-.05l.917 1.947c.18.38.305.61.378.693.077.08.175.143.295.19.12.042.287.054.498.032l.443-.047c.69-.072 1.175-.278 1.45-.62.278-.343.365-.83.258-1.46l.203-.02.7 2.23-6.404.667-.09-.19.247-.025c.215-.022.37-.076.468-.16.073-.058.108-.147.104-.268.002-.087-.08-.302-.242-.65l-2.142-4.545c-.147-.31-.246-.503-.298-.572-.092-.115-.203-.2-.332-.255-.183-.08-.395-.108-.636-.084l-.246.027-.088-.187 6.203-.646.963 2.042-.208.02c-.34-.487-.66-.83-.955-1.027-.292-.198-.637-.33-1.034-.395-.233-.04-.63-.03-1.19.028l-.766.08zM301.767 245.542l-.09-.19.247-.024c.215-.022.364-.07.448-.143.086-.077.132-.172.135-.287 0-.074-.085-.29-.254-.646l-2.14-4.545c-.167-.354-.29-.572-.373-.657-.08-.083-.2-.152-.354-.203-.153-.056-.333-.073-.54-.052l-.246.026-.09-.187 3.32-.346c.884-.09 1.65-.054 2.294.114.79.208 1.483.572 2.084 1.094.605.52 1.073 1.133 1.405 1.837.23.486.356.943.382 1.372.025.424-.033.786-.172 1.082-.14.292-.35.538-.62.738-.272.195-.637.364-1.1.505-.202.063-.543.12-1.02.17l-3.316.345zm-.246-6.81l2.54 5.39c.135.285.233.46.292.52.06.062.132.106.217.132.122.04.275.052.462.032.608-.064.98-.304 1.12-.726.19-.568.027-1.403-.493-2.503-.418-.887-.9-1.58-1.45-2.078-.432-.39-.87-.642-1.31-.752-.313-.08-.77-.083-1.38-.017zM327.532 238.76c.69.303 1.206.6 1.552.886.35.285.616.626.804 1.023.262.557.26 1.053-.01 1.487-.268.43-.788.685-1.56.765-.733.077-1.378-.032-1.938-.327-.558-.295-.952-.684-1.18-1.17-.176-.37-.213-.707-.115-1.01.1-.302.367-.596.797-.884-.783-.356-1.32-.658-1.613-.906-.29-.248-.517-.547-.682-.896-.218-.463-.2-.89.055-1.283.255-.398.75-.635 1.483-.71.707-.074 1.323.025 1.85.298.527.27.893.622 1.098 1.057.155.326.187.625.097.898-.086.27-.3.527-.638.773zm-.54-.216c.057-.185.067-.384.035-.602-.035-.218-.11-.452-.23-.703-.208-.443-.468-.77-.783-.983-.238-.164-.492-.232-.76-.204-.245.025-.414.13-.507.314-.093.18-.084.394.03.638.118.248.334.496.65.745.32.245.84.51 1.566.794zm-.585 1.19c-.067.106-.108.2-.117.283-.017.127 0 .308.048.54.05.234.132.475.25.723.15.32.32.584.51.792.187.205.383.346.59.425.208.077.4.108.57.09.265-.028.446-.14.544-.34.095-.203.07-.462-.08-.778-.31-.66-1.082-1.238-2.315-1.737z"/> + </g> +</svg> diff --git a/s/flag/gu.svg b/s/flag/gu.svg new file mode 100755 index 0000000..37b62a6 --- /dev/null +++ b/s/flag/gu.svg @@ -0,0 +1,39 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <path fill-rule="evenodd" fill="#be0027" d="M0 0h640v480H0z"/> + <path fill-rule="evenodd" fill="#3b5aa3" d="M25.6 27.343h589.54v428.37H25.6z"/> + <path d="M314.345 413.235c2.423 1.33 6.257 1.26 8.414.105 137.788-73.3 137.868-274.325.2-346.592-2.557-1.348-6.275-1.275-8.816.104-134.27 73.46-134.63 272.206.2 346.393z" fill-rule="evenodd" fill="#cbe0e5"/> + <path d="M314.345 416.86c2.142 1.748 6.462 1.58 8.414.106 101.54-76.02 102.134-123.41 97.634-123.407l-200.965.103c-3.073.003 1.77 48.107 94.914 123.198z" fill-rule="evenodd" fill="#add2d9"/> + <path d="M235.345 331.223c8.713-2.267 19.238-2.866 27.813 1.715 7.618 3.98 12.032 3.942 20.24 4.05 8.59.117 15.344 6.43 24.633 6.676 17.104.448 24.31 8.93 11.014 8.946-6.286.01-19.76-4.19-26.262-3.287-13.587 1.402-22.21 4.41-34.994 18.632l14.777 10.125c12.782-5.21 14.924-11.07 22.002-11.303 7.996-.257 10.713-5.21 19.96-5.222 10.505 1.91 24.734-1.304 33.07-3.17 14.783-3.44 7.75-13.77-1.21-17.516-7.246-3.085-20.81-.114-29.232-3.174-6.375-2.475-1.13-6.454 2.293-7.304 3.46-.638 7.17.494 11.474 1.186 7.68.664 17.33-.074 24.073-1.13 13.944-2.16 13.356-6.25 20.09-6.36 4.91-.235 8.647-1.703 11.99-4.106 3.932-2.632 8.02-8.026 12.785-7.823l12.755.54-17.966 40.405-50.756 51.662-26.286 9.97-57.78-37.613-29.136-44.69 4.654-1.21z" fill-rule="evenodd" fill="#fdf9a1"/> + <path d="M301.747 291.937l116.016-.54 2.04-10.28s-4.14-.617-7.48-.813c-4.164-.255-11.304 4.357-16.087 4.33-3.383-.025-7.26-6.08-10.647-5.954-5.914-.055-6.44 5.267-12.012 5.413-4.497-.154-6.413-3.588-12.236-3.247-6.107.345-5.652 3.706-13.367 3.515-10.19-.254-14.28-9.096-22.433-9.195-13.607-.162-14.05 12.985-23.795 16.77z" fill-rule="evenodd" fill="#179a3b"/> + <path d="M301.747 294.416l119.414-.608v-3.244l-122.13.608 2.717 3.244z" fill-rule="evenodd" fill="#fdf9a1"/> + <path d="M350.818 330.303c1.84 7.053 3.78 9.45 11.196 11.25 7.326 1.8 18.502-5.342 11.557-12.237-6.613-6.415-13.562-8.044-19.487-13.82-12.47-12.32-31.255-42.503-31.273-63.79-.015-18.278-1.778-55.796-1.79-91.33.01-2.303-6.944 6.455-6.933 8.795.32 31.35.27 55.043 1.544 86.655 1.975 23.108 13.003 38.668 22.685 52.712 4.338 6.73 10.608 13.987 12.502 21.767z" fill-rule="evenodd" fill="#a79270"/> + <text font-family="helvetica" font-size="25.614" stroke="#fff" y="269.487" x="465.114" stroke-width="1.638" fill="#bd0728" transform="matrix(1.33 0 0 1.33 -363.07 -108.06)"> + <tspan>G</tspan> + </text> + <text font-family="helvetica" font-size="25.614" stroke="#fff" y="269.607" x="488.065" stroke-width="1.638" fill="#bd0728" transform="matrix(1.33 0 0 1.33 -363.07 -108.06)"> + <tspan>U</tspan> + </text> + <text font-family="helvetica" font-size="25.614" stroke="#fff" y="269.59" x="516.053" stroke-width="1.638" fill="#bd0728" transform="matrix(1.33 0 0 1.33 -363.07 -108.06)"> + <tspan>A</tspan> + </text> + <text font-family="helvetica" font-size="25.614" stroke="#fff" y="269.542" x="539.532" stroke-width="1.638" fill="#bd0728" transform="matrix(1.33 0 0 1.33 -363.07 -108.06)"> + <tspan>M</tspan> + </text> + <path d="M259.623 160.893c-1.54 2.972 3.606-.868 4.772-1.282 6.67-2.372 9.283-10.798 20.773-5.725 9.045 3.907 21.187 1.636 14.84 5.593-7.842 4.694-23.462 9.896-23.77 33.177 1.306 2.277 1.4 1.918 2.49-.523 2.374-5.426 13.695-20.162 19.297-18.936 2.255.584 8.877-6.66 9.032-4.592.6 5.814-8.993 17.575-8.89 33.318.023 3.646 4.508 4.827 6.67 2.262 2.148-2.262 3.358-4.6 7.12-7.572 6.653-5.46 4.817-28.61 5.638-27.522 4.71 6.097 5.432 23.293 12.447 30.346 5.83 5.86 10.542 3.055 9.27-5.086-2.532-16.32-10.246-11.654-13.917-28.533-.746-3.288-.93-6.258 3.423-4.883 5.32 1.543 8.444 4.014 12.414 10.017 3.968 5.726 11.41 11.213 15.71 14.582 7.504 5.766 10.138.732 6.558-6.668-3.963-8.302-12.898-15.186-21.023-18.197-6.156-2.127-8.35-2.33-13.774-3.37-1.508-.32-3.065-3.41-.385-5.115 5.744-3.51 12.617-7.477 19.585-7.677 6.71-.17 12.024 5.208 16.73 6.554 9.382 2.46 9.334-3.496 5.198-7.913-3.396-3.73-10.582-9.984-17.29-9.154-13.538 1.66-12.684 1.28-20.987 6.79-3.047 1.795-6.43 3.776-5.167 1.6 3.038-5.466.207-4.527 4.9-10.088 3.65-4.075 6.33-7.008 9.948-8.025 3.437-.828 7.976-4.478 9.38-6.33 3.372-4.664.465-7.326-4.745-5.764-4.522 1.244-6.954 4.254-10.062 5.086-7.29 2.297-13.174 18.978-14.072 21.34-1.162 2.823-2.447 1.424-2.21-.966 1.053-11.778 2.048-31.498-2.11-39.616-6.262-11.97-5.682-6.388-8.086-.708-3.62 9.024-2.362 17.435-.083 26.28.996 4.414 4.694 9.437 5.357 12.902.477 2.72-1.58-.848-2.777-2.48-3.93-6.016-6.805-10.085-13.207-13.36-4.373-2.77-16.155-3.142-20.257-1.88-1.776.547 1.97 3.08 3.556 4.34 4.292 3.413 12.426 4.476 17.9 7.84 4.7 2.89 8.278 4.75 9.836 8.743.65 2.966 1.612 7.368-.342 7.26-5.128-.293-13.096-4.73-29.457-2.906-8.355 1.106-15.61 8.253-20.233 16.843z" fill-rule="evenodd" fill="#239e46"/> + <path fill-rule="evenodd" d="M295.28 310.558h4.747v7.912h-4.747z"/> + <path d="M271.712 257.85c18.825 26.066 49 41.263 49.603 53.1-19.064-.075-39.73.01-58.794-.064 13.508-16.24 21.74-27.205 9.192-53.037z" fill-rule="evenodd" fill="#fdf9ff"/> + <path d="M254.595 311.542c25.576 5.702 56.11 8.845 75.612-.798.16 5.7-6.34 13.907-11.67 13.907H269.46c5.7-.817 8.95-2.555 18.226-3.037l-26.055.32c-2.878.107-7.995-7.622-7.036-10.392z" fill-rule="evenodd" fill="#a68861"/> + <path d="M312.597 425.057c2.6 1.425 6.71 1.35 9.023.114 147.763-78.65 147.843-294.328.216-371.88-2.744-1.447-6.73-1.368-9.455.11-143.985 78.82-144.37 292.056.217 371.657zm.734-17.755c2.272 1.257 5.858 1.192 7.878.098 123.686-72.793 125.2-265.096.188-334.03-2.393-1.757-5.873-1.207-8.252.1-118.46 70.053-125.066 254.428.187 333.83z" fill-rule="evenodd" fill="#be0027"/> + <text font-size="25.614" y="269.487" x="465.114" font-family="helvetica" fill="#bd0728" transform="matrix(1.33 0 0 1.33 -363.07 -108.06)"> + <tspan>G</tspan> + </text> + <text font-size="25.614" y="269.607" x="488.065" font-family="helvetica" fill="#bd0728" transform="matrix(1.33 0 0 1.33 -363.07 -108.06)"> + <tspan>U</tspan> + </text> + <text font-size="25.614" y="269.59" x="516.053" font-family="helvetica" fill="#bd0728" transform="matrix(1.33 0 0 1.33 -363.07 -108.06)"> + <tspan>A</tspan> + </text> + <text font-size="25.614" y="269.542" x="539.532" font-family="helvetica" fill="#bd0728" transform="matrix(1.33 0 0 1.33 -363.07 -108.06)"> + <tspan>M</tspan> + </text> +</svg> diff --git a/s/flag/gw.svg b/s/flag/gw.svg new file mode 100755 index 0000000..367ff0d --- /dev/null +++ b/s/flag/gw.svg @@ -0,0 +1,13 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 77.588h503.67v377.75H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(1.27 0 0 1.27 0 -98.59)"> + <path fill="#fff41e" d="M159.45-60.328h375.7v327.84h-375.7z"/> + <path fill="#1f7848" d="M207.32 258.67H512v253.07H207.32z"/> + <path fill="#e80006" d="M0 0h207.32v512H0z"/> + <path d="M160.61 325.58l-55.86-39.888-55.587 40.28 20.674-65.457-55.485-40.42 68.645-.563 21.29-65.258 21.748 65.108 68.645.086-55.2 40.8 21.13 65.312z"/> + </g> +</svg> diff --git a/s/flag/gy.svg b/s/flag/gy.svg new file mode 100755 index 0000000..1c6d189 --- /dev/null +++ b/s/flag/gy.svg @@ -0,0 +1,9 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd"> + <path fill="#399408" d="M2.426 0h637.557v480H2.426z"/> + <path d="M.167 0C-.67.073 619.765 241.48 619.765 241.48L-.005 479.77.166 0z" fill="#fff"/> + <path d="M.28 20.186c3.462 0 559.053 217.89 555.893 220.03L1.867 463.266.287 20.186z" fill="#ffde08"/> + <path d="M1.863.783c1.848 0 290.94 240.92 290.94 240.92L1.863 476.983V.783z"/> + <path d="M.28 33.902c1.658-14.986 260.9 208.4 260.9 208.4L.268 451.702V33.912z" fill="#de2110"/> + </g> +</svg> diff --git a/s/flag/hk.svg b/s/flag/hk.svg new file mode 100755 index 0000000..339b5f8 --- /dev/null +++ b/s/flag/hk.svg @@ -0,0 +1,36 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-89.048 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" transform="matrix(.94 0 0 .94 83.48 0)"> + <path fill-rule="evenodd" fill="#ba0000" d="M618 512h-731.43V0H618z"/> + <path d="M241.874 247.803s-51.62-22.226-44.213-79.817c7.172-27.723 19.837-46.602 42.78-56.878 10.753-3.346 21.748-4.78 32.98-5.736-2.95 2.788-5.417 5.577-6.692 9.082-2.47 6.293-.638 12.347 2.628 18.4 4.142 7.01 6.61 14.26 7.408 23.66 1.513 13.223-4.142 25.97-14.578 33.697-6.612 5.1-14.418 6.852-20.792 12.667-4.938 4.86-7.965 9.72-9.08 18.162-.16 16.09 4.223 18.322 9.56 26.766z" fill-rule="evenodd" fill="#fff"/> + <path d="M232.076 164.476v-.238" fill-rule="evenodd" stroke="#000" stroke-width="2.1516261599999997" fill="#ba0000"/> + <path d="M235.337 241.823c-20.078-17.766-18.323-62.45-3.027-77.347" stroke="#ba0000" stroke-width="2.1516261599999997" fill="none"/> + <path fill-rule="evenodd" fill="#ba0000" d="M244.634 154.48l3.3 5.518-6.12-2.493-4.574 4.91.8-6.445-6.126-2.484 6.614-1.49.787-6.446 3.29 5.525 6.61-1.5"/> + <path d="M246.26 243.992s6.125-55.866 63.36-65.66c28.607-1.267 50.368 5.31 66.916 24.234 6.35 9.302 10.942 19.393 15.147 29.852-3.53-2.002-6.918-3.545-10.643-3.736-6.74-.518-11.992 3.008-16.824 7.904-5.488 6.015-11.696 10.498-20.45 14.015-12.2 5.323-26.044 3.65-36.49-4.063-6.81-4.828-10.774-11.777-18.2-16.168-6.095-3.298-11.63-4.768-20.028-3.36-15.432 4.562-16.28 9.406-22.79 16.983z" fill-rule="evenodd" fill="#fff"/> + <path d="M323.06 210.208l.227-.07" fill-rule="evenodd" stroke="#000" stroke-width="2.1516261599999997" fill="#ba0000"/> + <path d="M250.062 235.99c11.104-24.402 54.34-35.818 73.066-25.56" stroke="#ba0000" stroke-width="2.1516261599999997" fill="none"/> + <path fill-rule="evenodd" fill="#ba0000" d="M336.298 219.285l-4.31 4.77.59-6.58-6.035-2.934 6.396-1.123.58-6.584 3.362 5.887 6.393-1.137-4.318 4.764 3.372 5.88"/> + <g> + <path d="M250.118 248.027s54.92-11.935 82.382 39.225c10.287 26.723 10.962 49.447-1.727 71.148-6.803 8.975-14.914 16.535-23.495 23.844.777-3.983 1.164-7.687.162-11.28-1.65-6.555-6.66-10.415-12.838-13.44-7.446-3.296-13.67-7.758-19.784-14.94-8.92-9.88-11.732-23.538-7.736-35.892 2.415-7.993 7.747-13.957 9.55-22.394 1.192-6.826.828-12.54-3.174-20.057-9.227-13.183-14.09-12.45-23.342-16.215z" fill-rule="evenodd" fill="#fff"/> + <path d="M306.543 310.12l.14.193" fill-rule="evenodd" stroke="#000" stroke-width="2.1516261599999997" fill="#ba0000"/> + <path d="M258.913 249.09c26.665 2.78 51.22 40.15 47.44 61.165" stroke="#ba0000" stroke-width="2.1516261599999997" fill="none"/> + <path fill-rule="evenodd" fill="#ba0000" d="M302.14 325.555l-5.893-2.572 6.43-1.53.864-6.654 3.098 5.706 6.428-1.54-4.515 5.058 3.11 5.7-5.888-2.58-4.507 5.064"/> + </g> + <g> + <path d="M248.88 253.69s26.88 49.358-14.51 90.083c-22.758 17.38-44.378 24.407-68.77 18.323-10.524-4.01-20.057-9.67-29.482-15.853 4.04-.373 7.704-1.042 10.87-3.012 5.83-3.423 8.127-9.317 9.297-16.095 1.07-8.072 3.605-15.298 8.782-23.184 6.975-11.335 19.295-17.87 32.275-17.503 8.35.074 15.57 3.515 24.175 2.877 6.885-.773 12.267-2.727 18.358-8.68 10.062-12.557 7.992-17.02 9.008-26.956z" fill-rule="evenodd" fill="#fff"/> + <path d="M205.134 325.283l-.147.188" fill-rule="evenodd" stroke="#000" stroke-width="2.1516261599999997" fill="#ba0000"/> + <path d="M250.33 262.43c4.823 26.373-24.15 60.436-45.38 62.708" stroke="#ba0000" stroke-width="2.1516261599999997" fill="none"/> + <path fill-rule="evenodd" fill="#ba0000" d="M189.083 325.392l.813-6.378 3.275 5.74 6.63-1.04-4.61 4.577 3.284 5.737-6.12-2.912-4.6 4.584.824-6.377-6.127-2.902"/> + </g> + <g> + <path d="M242.792 252.62s-37.622 41.75-89.786 16.245c-23.953-15.692-37.766-33.748-40.13-58.774.283-11.258 2.454-22.13 5.155-33.074 1.695 3.686 3.543 6.92 6.454 9.252 5.166 4.36 11.49 4.568 18.27 3.42 7.97-1.673 15.627-1.683 24.785.58 13.008 2.813 23.264 12.26 27.232 24.625 2.705 7.9 1.858 15.854 5.32 23.757 3.016 6.237 6.647 10.664 14.284 14.43 15.188 5.32 18.71 1.885 28.42-.46z" fill-rule="evenodd" fill="#fff"/> + <path d="M160.732 235.146l-.226-.076" fill-rule="evenodd" stroke="#000" stroke-width="2.1516261599999997" fill="#ba0000"/> + <path d="M235.03 256.89c-23.27 13.312-65.026-2.696-74.223-21.965" stroke="#ba0000" stroke-width="2.1516261599999997" fill="none"/> + <path fill-rule="evenodd" fill="#ba0000" d="M155.296 220.043l6.286-1.352-4.327 4.997 3.183 5.907-5.847-2.826-4.32 5.002.714-6.74-5.852-2.816 6.288-1.34.702-6.744"/> + </g> + </g> +</svg> diff --git a/s/flag/hm.svg b/s/flag/hm.svg new file mode 100755 index 0000000..343fe41 --- /dev/null +++ b/s/flag/hm.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g stroke-width="1pt"> + <path fill="#006" d="M0 0h640v480H0z"/> + <path d="M0 0v30.59l372.58 243.023h46.898v-30.59L46.898 0H0zm419.478 0v30.59L46.898 273.612H0v-30.59L372.58 0h46.898z" fill="#fff"/> + <path d="M174.782 0v273.612h69.913V0h-69.913zM0 91.204v91.204h419.478V91.204H0z" fill="#fff"/> + <path d="M0 109.445v54.722h419.478v-54.722H0zM188.765 0v273.612h41.948V0h-41.948zM0 273.612l139.826-91.204h31.265L31.266 273.612H0zM0 0l139.826 91.204H108.56L0 20.394V0zm248.387 91.204L388.213 0h31.265L279.652 91.204h-31.265zm171.09 182.408l-139.825-91.204h31.265l108.56 70.81v20.394z" fill="#c00"/> + <path fill-rule="evenodd" fill="#fff" d="M125.512 416.48l-27.478-2.388 23.717-14.077-15.26-22.972 25.79 9.766 8.448-26.258 8.447 26.257 25.79-9.767-15.26 22.972 23.716 14.077-27.477 2.39 3.786 27.32-19.002-19.993-19.002 19.993"/> + <g fill-rule="evenodd" fill="#fff"> + <path d="M492.164 445.697l-19.346-1.684 16.698-9.913-10.748-16.173 18.165 6.877 5.943-18.49 5.943 18.49 18.164-6.877-10.748 16.173 16.698 9.913-19.346 1.684 2.67 19.23-13.382-14.072-13.382 14.073M492.164 157.92l-19.346-1.683 16.698-9.912-10.748-16.175 18.165 6.878 5.943-18.487 5.943 18.488 18.164-6.878-10.748 16.175 16.698 9.912-19.346 1.684 2.67 19.232-13.382-14.073-13.382 14.072M384.248 274.83l-19.346-1.684 16.698-9.913-10.748-16.173 18.165 6.877 5.943-18.49 5.943 18.49 18.165-6.877-10.748 16.173 16.698 9.913-19.346 1.684 2.67 19.23-13.382-14.072-13.382 14.073M588.058 246.052l-19.317-1.683 16.728-9.915-10.77-16.173 18.18 6.878 5.9-18.49 5.97 18.49 18.13-6.878-10.72 16.173 16.692 9.914-19.353 1.682 2.662 19.23-13.383-14.07-13.38 14.07M563.15 305.694l-9.503 8.022 2.97 12.08-10.575-6.555-10.575 6.555 2.97-12.08-9.503-8.02 12.41-.915 4.698-11.518 4.698 11.518"/> + </g> + </g> +</svg> diff --git a/s/flag/hn.svg b/s/flag/hn.svg new file mode 100755 index 0000000..6fe3b77 --- /dev/null +++ b/s/flag/hn.svg @@ -0,0 +1,11 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-85.333 0h682.67v512h-682.67z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" fill-rule="evenodd" stroke-width="1pt"> + <path fill="#fff" d="M-226.62 139.08h993.54v216.28h-993.54z"/> + <path fill="#087bce" d="M765.11 512h-989.67V339.13h989.67zM767.53 168.1h-994.15V0h994.15zM259.307 260.72l-19.63-13.516 24.444-.096 7.788-22.082 7.28 22.01 24.444-.137-19.944 13.7 7.318 22-19.607-13.542-19.92 13.73M402.25 297.52l-19.628-13.516 24.443-.096 7.787-22.082 7.28 22.01 24.444-.137-19.944 13.7 7.318 22-19.607-13.542-19.92 13.73M402.25 221.09l-19.628-13.516 24.443-.096 7.787-22.082 7.28 22.01 24.444-.137-19.944 13.7 7.318 22-19.607-13.542-19.92 13.73M86.638 297.52l-19.63-13.516 24.444-.096 7.787-22.082 7.28 22.01 24.443-.137-19.944 13.7 7.317 22-19.607-13.542-19.92 13.73M86.638 221.09l-19.63-13.516 24.444-.096 7.787-22.082 7.28 22.01 24.443-.137-19.944 13.7 7.317 22-19.607-13.542-19.92 13.73"/> + </g> +</svg> diff --git a/s/flag/hr.svg b/s/flag/hr.svg new file mode 100755 index 0000000..6754f4a --- /dev/null +++ b/s/flag/hr.svg @@ -0,0 +1,81 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g clip-path="url(#a)"> + <path fill-rule="evenodd" fill="#fff" d="M-148.86 135.66h936.34v170.15h-936.34z"/> + <path fill-rule="evenodd" fill="#003e9f" d="M-148.01 289.76h938.16V480h-938.16z"/> + <path fill-rule="evenodd" fill="#d61517" d="M-150.15 0h939.68v159.51h-939.68z"/> + <g transform="matrix(1.24 0 0 1.24 -78.77 -50.05)"> + <path d="M242.64 155.17c24.536-8.728 51.74-13.437 78.33-13.504 26.588-.067 53.704 4.105 80.498 13.706l19.944-40.235-14.018-24.42s-25.01 10.274-25.216 10.274c-.205 0-17.635-19.18-17.635-19.18l-22.39 13.522-21.01-16.073-19.78 15.824-23.08-13.34-16.83 20.008-25.24-10.792-13.51 24.195 19.932 40.015z" fill-rule="evenodd" stroke="#e5141d" stroke-linecap="round" stroke-width="1.066" fill="#fff"/> + <path d="M370.5 144.01l11.42-40.37 24.457-9.926 12.885 21.634-18.5 37.84c-10.634-4.25-16.33-6.07-30.263-9.178z" fill-rule="evenodd" stroke="#0084fd" stroke-width=".355" fill="#00a7bd"/> + <path d="M273.69 144.11l-10.675-39.69 16.06-19.712 22.855 13.194 3.857 41.72c-11.167.83-19.238 1.89-32.098 4.488z" fill="none"/> + <path d="M306.1 139.64l-3.857-41.81 19.437-15.45 20.307 15.41-3.59 41.887c-11.188-.592-19.18-.574-32.297-.038z" fill-rule="evenodd" stroke="#0084fd" stroke-width=".355" fill="#00a7bd"/> + <path d="M243.61 153.16l-18.117-38.322L237.6 93.683l25.1 10.924 10.605 39.535c-11.46 2.37-17.528 4.306-29.695 9.017z" stroke-opacity=".996" fill-rule="evenodd" stroke="#0084fd" stroke-width=".355" fill="#00a7bd"/> + <path d="M237.97 131.93c5.705 1.155 9.77 1.196 14.885-.206 6.11-2.503 8.27-5.872 10.26-8.58.925 5.72-.042 10.904-7.022 14.562-6.266 2.887-14.717 1.072-18.123-5.775z" fill-rule="evenodd" stroke="#fff" stroke-width=".355" fill="#fff"/> + <g stroke-width="1pt" transform="matrix(.27 0 0 .26 215.86 72.49)"> + <path d="M410.94 120.56l-4.063 1.016.156 7.5-5 1.094-3.497 6.614 2.16 2.044c.11.22-1.704 4.892-1.626 4.892s1.323 1.762 1.323 1.762l1.328 4.063 3.36.468.86 4.766 5.312.858 4.922 3.516.312 2.188 5.625.156 3.83 1.25 13.36-1.563 1.796-2.812.156-3.828 7.188-.235.657-6.105h3.81l-.475-6.875 3.177.286-.82-3.295-1.976-2.682-.39-4.218-5.625-5.625-1.25-7.344s-3.595-1.64-3.595-1.718-.234-4.922-.234-4.922l4.063-5.703-.39-2.265-3.75-.08-2.813 2.345s-3.75.39-3.75.47v1.718s.938 3.203.938 3.28-4.297 0-4.297 0l-.156-5.077-6.093-3.047s-5.702 3.907-5.702 3.985-.313 4.532-.313 4.532l-2.734.78-2.812-4.218-4.922-1.876-2.656-.156-.078 3.28 5.156 6.798-.468 3.984z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" stroke="#544b20" fill="#faf703"/> + <path d="M449.23 148.04l-1.105-4.088M452.33 141.3l-1.878-2.762" stroke="#544b20" fill="none"/> + <path d="M400.84 138.21l5.856-.332 1.105 5.303 1.99 1.77.33 9.722 1.88.773.552-3.867 4.53-.33.883 7.843-1.104.996.443 1.215 5.413-.11s1.216-2.1 1.326-2.1c.11 0 3.094-.33 3.094-.22 0 .11 1.215 2.32 1.215 2.32l.885-2.983s2.873-1.215 2.873-1.104c0 .11 2.32 3.756 2.32 3.756l3.977-.553-2.43-2.32-.995-5.083 5.524-2.983 2.21 3.758s2.1.11 1.99 0c-.112-.11-2.432-4.31-2.432-4.31v-8.838l4.2-5.745 5.854-.663v-2.43l-5.855-5.415-1.546-7.513-3.315-1.657-.885.994-3.646.333 3.645 5.414v3.535l1.658.884-.332 9.723s-4.087.55-4.087.662c0 .11-.33 5.413-.33 5.413l-2.542 2.542s-1.436 5.082-1.546 5.082c-.11 0-2.43 3.092-2.43 3.092l-4.53.11s-2.652-2.54-2.652-2.65c0-.11-.442-3.757-.442-3.757s-1.768-.553-1.88-.553c-.11 0-.993-4.088-.993-4.088l-3.094-1.767-.22-2.43-2.984-1.327s-.332-2.21-.443-2.32c-.11-.11-1.436-.994-1.546-.994-.11 0-.11-6.077-.11-6.077l2.652-.443-1.485-1.94-.504-1.706v-1.767l2.21-2.21s-3.978-.552-3.978-.442c0 .112-3.866 1.77-3.866 1.66.11 0-.112 7.18-.112 7.18l-4.53 1.437-3.646 5.855 1.878 1.658z" fill-rule="evenodd" stroke="#544b21" fill="#544b20"/> + <path d="M423.71 148.04l2.983-1.768-.11-3.425-2.873-.663-1.106-1.105 3.205.552 3.976-.332 1.326-.663c-.552 1.437-.994 1.326-1.105 1.326-.11 0-2.21 1.105-2.21 1.105l.11 3.315s6.85.883 6.74.883c-.11 0 0 1.326-.22 1.326s-7.07-1.547-7.07-1.547l-4.31 2.652.663-1.657zM440.95 127.49l-3.977 3.093-2.54 4.53-1.327.22-3.867-5.192-4.42.112s-2.43 6.076-2.43 6.187c0 .11-1.77-.222-1.77-.222l-4.64-5.082s-1.436-2.542-1.215-2.542 11.6.11 11.6.11l-.11-5.523s-1.767-.552-2.65-1.104c.662-.22 6.297-.22 6.297-.22l-2.43 1.656v4.75l10.053.11 3.425-.882z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/> + <rect fill-rule="evenodd" fill-opacity=".996" ry="1.326" height="2.652" width="2.652" y="130.14" x="419.51" fill="#796a3a"/> + <rect fill-rule="evenodd" ry="1.326" height="2.652" width="2.652" y="129.59" x="432.11" fill="#7a6b3a"/> + <path d="M413.55 121.3c4.198-1.694 7.18-3.056 12.374-3.535 4.898-.516 8.692.184 13.037.994" stroke="#544b20" fill="none"/> + <path d="M415.87 112.35h-3.425l-4.862-5.193 2.763.332 3.204 1.435 2.32 3.425zM436.53 110.36l7.734-5.965-2.54-.332-2.874 2.65-3.425.554 1.105 3.093zM431.97 111.46l-12.123.45.11-1.325 4.42-.442.552-1.767s1.325-.11 1.325 0 .994 1.657.994 1.657l4.308.773.412.654zM431.34 106.83l-4.198.11-.332-2.32 4.53 2.21zM424.26 104.73l-.332 2.32-4.087.662 4.42-2.982zM401.06 147.04l2.1-5.303-1.88-3.646-1.877 5.415 1.657 3.535zM405.26 149.92l2.54-6.298-4.86 5.082 2.32 1.216z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/> + </g> + <g stroke-width="1pt" transform="matrix(.27 0 0 .26 197.81 73.07)"> + <path d="M410.94 120.56l-4.063 1.016.156 7.5-5 1.094-3.497 6.614 2.16 2.044c.11.22-1.704 4.892-1.626 4.892s1.323 1.762 1.323 1.762l1.328 4.063 3.36.468.86 4.766 5.312.858 4.922 3.516.312 2.188 5.625.156 3.83 1.25 13.36-1.563 1.796-2.812.156-3.828 7.188-.235.657-6.105h3.81l-.475-6.875 3.177.286-.82-3.295-1.976-2.682-.39-4.218-5.625-5.625-1.25-7.344s-3.595-1.64-3.595-1.718-.234-4.922-.234-4.922l4.063-5.703-.39-2.265-3.75-.08-2.813 2.345s-3.75.39-3.75.47v1.718s.938 3.203.938 3.28-4.297 0-4.297 0l-.156-5.077-6.093-3.047s-5.702 3.907-5.702 3.985-.313 4.532-.313 4.532l-2.734.78-2.812-4.218-4.922-1.876-2.656-.156-.078 3.28 5.156 6.798-.468 3.984z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" stroke="#544b20" fill="#faf703"/> + <path d="M449.23 148.04l-1.105-4.088M452.33 141.3l-1.878-2.762" stroke="#544b20" fill="none"/> + <path d="M400.84 138.21l5.856-.332 1.105 5.303 1.99 1.77.33 9.722 1.88.773.552-3.867 4.53-.33.883 7.843-1.104.996.443 1.215 5.413-.11s1.216-2.1 1.326-2.1c.11 0 3.094-.33 3.094-.22 0 .11 1.215 2.32 1.215 2.32l.885-2.983s2.873-1.215 2.873-1.104c0 .11 2.32 3.756 2.32 3.756l3.977-.553-2.43-2.32-.995-5.083 5.524-2.983 2.21 3.758s2.1.11 1.99 0c-.112-.11-2.432-4.31-2.432-4.31v-8.838l4.2-5.745 5.854-.663v-2.43l-5.855-5.415-1.546-7.513-3.315-1.657-.885.994-3.646.333 3.645 5.414v3.535l1.658.884-.332 9.723s-4.087.55-4.087.662c0 .11-.33 5.413-.33 5.413l-2.542 2.542s-1.436 5.082-1.546 5.082c-.11 0-2.43 3.092-2.43 3.092l-4.53.11s-2.652-2.54-2.652-2.65c0-.11-.442-3.757-.442-3.757s-1.768-.553-1.88-.553c-.11 0-.993-4.088-.993-4.088l-3.094-1.767-.22-2.43-2.984-1.327s-.332-2.21-.443-2.32c-.11-.11-1.436-.994-1.546-.994-.11 0-.11-6.077-.11-6.077l2.652-.443-1.485-1.94-.504-1.706v-1.767l2.21-2.21s-3.978-.552-3.978-.442c0 .112-3.866 1.77-3.866 1.66.11 0-.112 7.18-.112 7.18l-4.53 1.437-3.646 5.855 1.878 1.658z" fill-rule="evenodd" stroke="#544b21" fill="#544b20"/> + <path d="M423.71 148.04l2.983-1.768-.11-3.425-2.873-.663-1.106-1.105 3.205.552 3.976-.332 1.326-.663c-.552 1.437-.994 1.326-1.105 1.326-.11 0-2.21 1.105-2.21 1.105l.11 3.315s6.85.883 6.74.883c-.11 0 0 1.326-.22 1.326s-7.07-1.547-7.07-1.547l-4.31 2.652.663-1.657zM440.95 127.49l-3.977 3.093-2.54 4.53-1.327.22-3.867-5.192-4.42.112s-2.43 6.076-2.43 6.187c0 .11-1.77-.222-1.77-.222l-4.64-5.082s-1.436-2.542-1.215-2.542 11.6.11 11.6.11l-.11-5.523s-1.767-.552-2.65-1.104c.662-.22 6.297-.22 6.297-.22l-2.43 1.656v4.75l10.053.11 3.425-.882z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/> + <rect fill-rule="evenodd" fill-opacity=".996" ry="1.326" height="2.652" width="2.652" y="130.14" x="419.51" fill="#796a3a"/> + <rect fill-rule="evenodd" ry="1.326" height="2.652" width="2.652" y="129.59" x="432.11" fill="#7a6b3a"/> + <path d="M413.55 121.3c4.198-1.694 7.18-3.056 12.374-3.535 4.898-.516 8.692.184 13.037.994" stroke="#544b20" fill="none"/> + <path d="M415.87 112.35h-3.425l-4.862-5.193 2.763.332 3.204 1.435 2.32 3.425zM436.53 110.36l7.734-5.965-2.54-.332-2.874 2.65-3.425.554 1.105 3.093zM431.97 111.46l-12.123.45.11-1.325 4.42-.442.552-1.767s1.325-.11 1.325 0 .994 1.657.994 1.657l4.308.773.412.654zM431.34 106.83l-4.198.11-.332-2.32 4.53 2.21zM424.26 104.73l-.332 2.32-4.087.662 4.42-2.982zM401.06 147.04l2.1-5.303-1.88-3.646-1.877 5.415 1.657 3.535zM405.26 149.92l2.54-6.298-4.86 5.082 2.32 1.216z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/> + </g> + <path d="M338.69 139.62l3.613-41.935 22.207-12.777 17.166 18.605-11.44 40.4c-11.09-2.263-17.416-3.234-31.546-4.293z" stroke-opacity=".996" fill-rule="evenodd" stroke="#001071" stroke-width=".355" fill="#001070"/> + <g stroke-width="1pt" transform="matrix(.27 0 0 .26 207.16 88.74)"> + <path d="M410.94 120.56l-4.063 1.016.156 7.5-5 1.094-3.497 6.614 2.16 2.044c.11.22-1.704 4.892-1.626 4.892s1.323 1.762 1.323 1.762l1.328 4.063 3.36.468.86 4.766 5.312.858 4.922 3.516.312 2.188 5.625.156 3.83 1.25 13.36-1.563 1.796-2.812.156-3.828 7.188-.235.657-6.105h3.81l-.475-6.875 3.177.286-.82-3.295-1.976-2.682-.39-4.218-5.625-5.625-1.25-7.344s-3.595-1.64-3.595-1.718-.234-4.922-.234-4.922l4.063-5.703-.39-2.265-3.75-.08-2.813 2.345s-3.75.39-3.75.47v1.718s.938 3.203.938 3.28-4.297 0-4.297 0l-.156-5.077-6.093-3.047s-5.702 3.907-5.702 3.985-.313 4.532-.313 4.532l-2.734.78-2.812-4.218-4.922-1.876-2.656-.156-.078 3.28 5.156 6.798-.468 3.984z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" stroke="#544b20" fill="#faf703"/> + <path d="M449.23 148.04l-1.105-4.088M452.33 141.3l-1.878-2.762" stroke="#544b20" fill="none"/> + <path d="M400.84 138.21l5.856-.332 1.105 5.303 1.99 1.77.33 9.722 1.88.773.552-3.867 4.53-.33.883 7.843-1.104.996.443 1.215 5.413-.11s1.216-2.1 1.326-2.1c.11 0 3.094-.33 3.094-.22 0 .11 1.215 2.32 1.215 2.32l.885-2.983s2.873-1.215 2.873-1.104c0 .11 2.32 3.756 2.32 3.756l3.977-.553-2.43-2.32-.995-5.083 5.524-2.983 2.21 3.758s2.1.11 1.99 0c-.112-.11-2.432-4.31-2.432-4.31v-8.838l4.2-5.745 5.854-.663v-2.43l-5.855-5.415-1.546-7.513-3.315-1.657-.885.994-3.646.333 3.645 5.414v3.535l1.658.884-.332 9.723s-4.087.55-4.087.662c0 .11-.33 5.413-.33 5.413l-2.542 2.542s-1.436 5.082-1.546 5.082c-.11 0-2.43 3.092-2.43 3.092l-4.53.11s-2.652-2.54-2.652-2.65c0-.11-.442-3.757-.442-3.757s-1.768-.553-1.88-.553c-.11 0-.993-4.088-.993-4.088l-3.094-1.767-.22-2.43-2.984-1.327s-.332-2.21-.443-2.32c-.11-.11-1.436-.994-1.546-.994-.11 0-.11-6.077-.11-6.077l2.652-.443-1.485-1.94-.504-1.706v-1.767l2.21-2.21s-3.978-.552-3.978-.442c0 .112-3.866 1.77-3.866 1.66.11 0-.112 7.18-.112 7.18l-4.53 1.437-3.646 5.855 1.878 1.658z" fill-rule="evenodd" stroke="#544b21" fill="#544b20"/> + <path d="M423.71 148.04l2.983-1.768-.11-3.425-2.873-.663-1.106-1.105 3.205.552 3.976-.332 1.326-.663c-.552 1.437-.994 1.326-1.105 1.326-.11 0-2.21 1.105-2.21 1.105l.11 3.315s6.85.883 6.74.883c-.11 0 0 1.326-.22 1.326s-7.07-1.547-7.07-1.547l-4.31 2.652.663-1.657zM440.95 127.49l-3.977 3.093-2.54 4.53-1.327.22-3.867-5.192-4.42.112s-2.43 6.076-2.43 6.187c0 .11-1.77-.222-1.77-.222l-4.64-5.082s-1.436-2.542-1.215-2.542 11.6.11 11.6.11l-.11-5.523s-1.767-.552-2.65-1.104c.662-.22 6.297-.22 6.297-.22l-2.43 1.656v4.75l10.053.11 3.425-.882z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/> + <rect fill-rule="evenodd" fill-opacity=".996" ry="1.326" height="2.652" width="2.652" y="130.14" x="419.51" fill="#796a3a"/> + <rect fill-rule="evenodd" ry="1.326" height="2.652" width="2.652" y="129.59" x="432.11" fill="#7a6b3a"/> + <path d="M413.55 121.3c4.198-1.694 7.18-3.056 12.374-3.535 4.898-.516 8.692.184 13.037.994" stroke="#544b20" fill="none"/> + <path d="M415.87 112.35h-3.425l-4.862-5.193 2.763.332 3.204 1.435 2.32 3.425zM436.53 110.36l7.734-5.965-2.54-.332-2.874 2.65-3.425.554 1.105 3.093zM431.97 111.46l-12.123.45.11-1.325 4.42-.442.552-1.767s1.325-.11 1.325 0 .994 1.657.994 1.657l4.308.773.412.654zM431.34 106.83l-4.198.11-.332-2.32 4.53 2.21zM424.26 104.73l-.332 2.32-4.087.662 4.42-2.982zM401.06 147.04l2.1-5.303-1.88-3.646-1.877 5.415 1.657 3.535zM405.26 149.92l2.54-6.298-4.86 5.082 2.32 1.216z" fill-rule="evenodd" stroke="#544b20" fill="#544b20"/> + </g> + <path d="M344.2 132.11l-1.113 1.302.086 1.092 2.31-.042c.743-.175.93-.434 1.07-.735.23-.37.073-.574.13-1.07l-2.483-.547zM349.76 135.38l-.942.882v1.008l2.055-.042c.742-.175.842-.308.985-.61.228-.37.157-.363.214-.86l-2.312-.378zM358.79 132.57l-1.07 1.092.043.84 2.183.084c.742-.175.627-.14.856-.525.228-.37.157-.447.214-.944l-2.226-.546zM365.17 134.54l-1.24 1.05v1.05l2.31.21c.742-.175.8-.392.985-.65.228-.372.114-.407.17-.904l-2.225-.756z" stroke-opacity=".997" fill-rule="evenodd" stroke="#a0210c" stroke-width=".355" fill="#a0210c"/> + <path d="M349.63 107.08l4.366 2.898c.82-.68 2.53-.27 3.198-.08 1.2.314 2.047 1.025 3.095 1.214 1.918.482 4.216.815 5.956.626 1.74-.19 3.203-1.1 4.488-1.76v-.42h-.856c-1.39.5-3.337.527-4.828.33s-1.893-.863-4.12-1.506l-.17-.42c2.702.128 3.25.058 4.382-.435 1.106-.293 1.604-.935 2.228-1.378l-.017-.498-.814-.042c-1.05.698-1.717.824-3.322.677-1.46-.147-2.777-.98-3.757-.997-1.04.008-.99-.488-1.995-.537-1.6-.14-3.326.073-4.838.437-1.813.546-2.084 1.008-2.997 1.89z" fill-rule="evenodd" stroke="#000" stroke-width=".355" fill="#a0210c"/> + <path d="M350.48 106.43c.418.095.887.215 1.228.41.343.195.254.19.62.46-.058-.348-.04-.323-.277-.596-.236-.274-.624-.522-.937-.746l-.633.472zM354.13 109.56c.008-.377-.186-.704-.33-1.03-.143-.328-.26-.606-.53-.933.336.095.522.24.81.584.286.345.27.688.33 1.18l-.28.2zM354.96 104.97c.1.26.3.44.47.997.144.507.214 1.215.214 1.215-.055-.377.042-.804-.013-1.18-.054-.378-.26-.705-.316-1.082l-.354.05zM358.51 105.19l.177 2.088.203-1.964-.38-.124zM357.65 109.51c.085-.34.068-.68.025-1.02-.042-.34-.16-.628-.28-1.018.34.29.475.655.66 1.044 0 .39-.1.73-.405.994zM361.32 108.6c.013 0 .108.708-.054 1.218-.16.51-.275.547-.58.82.406-.298.76-.397.887-.72.127-.498-.202-1.243-.253-1.318zM361.96 107.92c-.253.04-.304-1.01-.456-1.516.11-.058.22-.042.33.2.118.14.084.877.126 1.316zM364.46 107.5l.1-.87.28-.025v.746c0 .026-.354.175-.38.15zM364.26 109.84c.16.265.448.58.48.87.035.29-.058.43-.277.87l.405.025c.22-.352.287-.605.254-.882-.034-.278-.17-.556-.456-.783l-.406-.1zM367.28 110.06l.1 1.218.33-.174-.075-1.044h-.355z" fill-rule="evenodd" stroke="#000" stroke-width=".355"/> + <path d="M349.36 107.29c-.988.286-1.346.832-1.83 1.304l-2.783-1.41c-.452.374-.626.91-.41 1.457.22.55 1.092 1.406 1.713 1.83-.155.756-.385 1.327-.656 1.99-.303.746-.953 1.688-.972 1.99-.037.347-.15 1.09.368 1.287.518.198 2.185-.137 2.74-.1-.09.297-.306.818-.232 1.04.073.224.223.3.675.312-.13.275-.41.625-.276.79.35.265.75.22 1.086.198-.53.616-1.858 1.8-2.288 2.33-.455.616-.494 1.28.388 1.216-.328.364-.644.715-.594 1.03.075.375.264.628.895.41-.373.844-.128 1.6.004 2.482-.32.667-.184 1.284-.263 2.05-.65.367-.73.846-1.152 1.585-.38.8-1.09 1.02-1.482 2.736l2.548.635c.094-.352.427-.58.52-.934.094-.353.087-.793.042-1.183.505-.732 1.528-2.243 1.856-3.05.556-.296.96-.482 1.378-.482.418 0 .683.248 1.126.484-.196.68-.745 1.42-.777 2.37v2.628c-.11.652-.853.66-1.166 2.625l2.288.593c.388-.66 1.004-.752 1.165-1.016l.165-2.728c.29-1.288 2.097-2.353 2.123-3.752.65-.01.894.057 1.15-.075.346-.12.465-.316.734-.56.104.42.435.458.716.458.28 0 .84-.396 1.07-.557.16.23.247.446.585.525.34.08 1.296-.063 1.685-.157l-1.88 3.077c-.07.296.023.48-.123.827-.136.31-.412.46-.536.747l2.133.508.34-.898c.452-.19.815-.294 1.053-.583.237-.29.235-.84.37-1.153.73-.53 1.874-1.676 2.678-2.626.546.092 1.32.543 1.612 1.218.04.723.095 2.053-.23 2.975l-1.382 2.16-.157.355 2.175.775 1.382-1.06.054-1.51c.694-1.225 1.687-1.894 2.633-2.667 0-.043.102-1.622.064-1.684-.233-.18-.39-.072-.474-.398-.082-.327-.026-1.223.018-1.574.137-.17.425-.364.41-.51-.377-.412-.26-1.48-.146-2.315-.028-.95 1.27-2.073 1.468-2.626l.08-.997c-.132-.245-.327-.39-.334-.6-.006-.207.253-.55.41-.77l.276-.47-.044-2.457c-.077-.266-.305-.68-.52-.722-.217-.04-.534.202-.775.47l-1.25.92c-.6.184-1.123.257-2.176-.006l-1.608.032c-.845.236-1.285.274-2.078-.072l-.952.015c-.297.16-.707.42-1.03.483-.32.062-.756.075-1.078-.024-2.456.164-1.846.342-2.548.495-.564-.107-.383-.387-2.575-.408l-.87-.254c-1.095-.727-1.94-1.886-2.67-3.22 2.284-.653 3.242-1.332 3.934-2.89l-3.228.12-4.566-3.033z" fill-rule="evenodd" stroke="#544b20" stroke-width=".355" fill="#dc9103"/> + <path d="M348.22 111.27l.914.387c.112.133.328.286.47.295.144.01.266-.137.388-.24l.842-.442c-.5-.072-.65-.38-1.18-.38-.53 0-.904.277-1.434.38zM352.23 111.5c.297.175.836.526 1.28.526.487-.04.48-.382 1.175-.608l1.022-.826c-.616.007-1.948.127-2.68.35-.616.163-.76.407-.797.558zM349.9 122.06c0 .075-.127.13-.19.04-.08-1.07-.315-1.822-.645-2.656.373.635.683 1.66.835 2.616zM352.51 126.45c-.416.042-.58-.02-.995.023-.045-1.078-.05-2.31-.043-3.08.16.02.622.504.896 1.267.072.562.175 1.197.142 1.79zM355.27 122.17c.187.05.448.052.51-.072.08-.23-.157-.48-.246-.76-.308-.605-.48-1.26-.608-1.544-.136-.085-.282-.078-.25.064.177.537.48 2.105.594 2.312zM358.21 121.85c.02.13-.422-.06-.497-.207-.006-.288-.602-2.39-.503-2.472.125-.06.513.704.638 1.056.03.208.29.972.362 1.624zM357.79 126.18c-.01.147.336.026.473-.085.397-.62.888-1.27 1.032-1.518.087-.265.52-1.953.387-1.94-.048-.05-.425.837-.912 1.712-.507.89-.985 1.745-.98 1.83zM360.75 125.27c-.144.07.29-1.46.324-1.73.08-.43.19-1.197.364-2.193.212 1.39-.038 2.884-.688 3.923zM362.52 120.59c-.095.083-1.363-2.014-1.247-2.025.033-.093 1.063 1.313 1.21 1.56.062.117.123.296.037.465zM365.49 122.15c-.095-.07-.057-.74-.245-1.476-.187-.736-.506-1.444-.443-1.645.06-.107.265-.058.43.083.078.4.262 1.935.477 2.933-.004.097-.112.162-.22.104zM367.56 120.29c-.1-.108.276.72.55 1.704.275.984.415 2.722.482 2.598.188-.125.156-.28.45-.345.294-.063 1.387.04 1.323-.034-.676-.603-1.3-1.102-1.765-1.756-.466-.653-.774-1.513-1.04-2.167zM370.12 129.26c-.212.153-.613.275-.73.21-.645-1.34-1.006-2.216-1.903-3.65-.23-.34-.807-.287-.774-.42.02-.156.323-.094.518-.318.196-.224.222-.508.343-.61-.264.618.43 1.566.817 2.32.258.07.463.068.585.22.028.073-.28.124-.24.382l.654 1.318c.212.16.54.248.86.295.082.074-.066.18-.13.253z" fill-rule="evenodd" stroke="#000" stroke-width=".355"/> + <path d="M370.48 144l11.513-40.577 24.437-9.844 12.96 21.912-18.55 37.67c-10.493-3.966-16.493-6.085-30.36-9.16z" fill="none"/> + <path d="M371.46 117.54c.404.022.77.058.89-.148.247-.51.39-.93.224-1.26-.634.05-1.113.343-1.372.902.008.194.055.337.258.506z" fill-rule="evenodd" stroke="#000" stroke-width=".355"/> + <path d="M378.12 117.16c6.27 1.324 12.07 2.83 17.874 4.703 5.803 1.872 11.326 4.11 16.943 6.53l-9.403 18.996c-5.248-1.998-10.43-3.608-15.613-5.282-5.18-1.675-10.232-3.155-15.48-4.765l5.68-20.183z" fill-rule="evenodd" stroke="#fdfcfc" stroke-width=".355" fill="#fdfcfc"/> + <path d="M376.87 121.65s8.755 1.953 17.238 4.682c8.484 2.728 16.76 6.23 16.728 6.23-.066 0-5.332 10.85-5.332 10.85-5.113-2.034-10.488-3.94-15.798-5.65-5.31-1.712-10.62-3.358-16.062-4.618l3.225-11.495z" fill-rule="evenodd" stroke="#e6151e" stroke-width=".355" fill="#e6151e"/> + <path d="M377.6 126.95c.86-.48 1.444-.61 1.908-1.404h3.1l.04 1.13c.762.365 1.206.768 1.968 1.132.762.364 1.842.69 2.603 1.053l6.677.586c.895.143 2.187.52 2.962.975.774.456 1.27 1.028 1.688 1.756 1.37.48 2.743.766 4.154.974 1.41.208 3.18.3 4.55.35.677.236.677.586.36.937 0 0-.757 1.024-2.82 1.034-2.06.01-4.396-1.15-5.41-.994.04.624 1.114 1.91 2.346 2.418l-.04 2.963-.556.507-.597-.39c.478-.7.318-1.52.12-2.222-.458-.663-.517-.936-1.37-.975-1.015-.195-1.75-.468-3.042-1.365l-.478.078c-.278.494-.556.832-1.192 1.13l-1.312-.077s-3.02-.663-3.02-.702c0-.038-.04-.467.04-.506.08-.04 1.033-.04 1.113-.04.636.196 1.988.196 1.988.196l-.04-1.13 2.028-.118c-.41-1.404-.543-2.3-2.425-2.613l-5.883.155.08.82c-1.47-.196-4.134-.23-5.494.22-.795.078-1.94.48-2.456.48l-.596-.155c-.398-.117-.398-.234-.24-.585 2.545-.195 2.943-.39 3.698-.74.04-.234-.278-.742-.398-.78-1.59-.08-2.862.038-3.3-.04-.674-.195-1.59-.545-1.59-.584 0-.04-.118-.623-.078-.623.04 0 1.033.273 1.073.273 1.072.195 2.94.117 3.378-.117l.04-.858c-.04-.39-.32-.74-.398-.78-.08-.04-1.75-.234-2.345-.234-.968-.168-.822-.65-.835-1.13z" stroke-opacity=".996" fill-rule="evenodd" stroke="#010001" stroke-width=".355"/> + <path d="M390.44 133.89c.9.286 1.564.377 2.902.468l2.027-.117c-.412-1.403-.544-2.3-2.426-2.612l-5.883.156.08.82c1.79.662 2.664 1.026 3.3 1.286z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" stroke="#010001" stroke-width=".355" fill="#fdfdfd"/> + <path d="M273.6 143.99l-10.632-39.62 16.223-19.653 22.75 12.986 3.855 41.985c-11.608.86-19.128 1.977-32.196 4.303z" fill-rule="evenodd" fill-opacity=".996" stroke="#011171" stroke-width=".355" fill="#011171"/> + <path d="M236.92 112.42l3.7 3.26-1.05 5.238 5.13-1.774 3.784 3.26.84-4.827 4.205-1.362-3.196-3.465 1.05-4.785s-5.045 1.485-5.045 1.444-3.365-3.22-3.407-3.178c-.042.042-1.093 4.538-1.093 4.538l-4.92 1.65z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" stroke="#fdc605" stroke-width=".355" fill="#fbfd10"/> + <path d="M237.01 112.46l16.483 3.713-4.247 1.444-3.827-3.094s3.11 7.755 3.07 7.714-3.617-3.012-3.743-3.135l.63-4.58s-5.718 6.353-5.718 6.312c0-.04 1.092-5.198 1.092-5.198l-3.742-3.176zM241.8 110.77l3.658 3.506-2.523-8.126-1.135 4.62zM246.3 109.45c.042.04-.883 4.744-.84 4.744.42-.495 5.928-6.23 5.886-6.23-.042 0-4.962 1.527-5.046 1.486z" fill-rule="evenodd" fill="#ffc500"/> + <path d="M396.21 104.41l.782 4.817-4.18 3.42 5.125 1.792.847 4.868 3.752-3.23 4.14 1.54-.258-4.665 3.888-3.067s-4.873-1.964-4.846-1.996c.026-.032-.548-4.578-.607-4.572-.06.006-3.762 2.85-3.762 2.85l-4.88-1.758z" stroke-opacity=".996" fill-rule="evenodd" fill-opacity=".996" stroke="#fdc605" stroke-width=".355" fill="#fbfd10"/> + <path d="M396.25 104.49l10.42 13.068-4.225-1.503-.986-4.767s-2.562 7.947-2.568 7.89c-.006-.06-.876-4.575-.895-4.748l3.43-3.168s-8.52 1.402-8.495 1.37c.027-.032 4.186-3.362 4.186-3.362l-.868-4.78z" fill-rule="evenodd" fill="#ffc500"/> + <path d="M401.06 106.14l.59 4.984 3.258-7.87-3.848 2.886zM405.4 107.9c.006.058-3.73 3.14-3.7 3.165.646-.125 8.605-1.176 8.573-1.2-.033-.027-4.834-1.88-4.873-1.965z" fill-rule="evenodd" fill="#fdc605"/> + <path d="M263.05 104.52c5.774-2.76 12.255-4.913 19.09-5.852 6.57-.94 13.144-1.02 19.89-1.006 0 0 .884 10.33.884 10.418-5.303.043-9.255-.056-18.608 1.154-9.302 1.29-13.133 2.396-18.79 4.563l-2.465-9.277z" fill-rule="evenodd" stroke="#e6141d" stroke-width=".355" fill="#e6141d"/> + <path d="M267.99 122.81c-.088 0 2.92 10.93 2.92 10.93 5.554-1.403 11.196-2.458 16.837-3.252 5.642-.795 11.64-1.248 17.106-1.61l-.96-10.66c-5.76-.346-12.323-.346-18.26.434-5.935.78-11.7 2.163-17.635 4.157z" fill-rule="evenodd" fill-opacity=".996" stroke="#e6141d" stroke-width=".355" fill="#e6141d"/> + <path d="M241.49 156.56h161.16V259.9c-4.096 40.244-42.778 70.327-78.125 70.097-38.155 1.665-80.35-29.566-83.39-70.442l.35-102.99z" fill-rule="evenodd" stroke="#e5141d" stroke-width="1.066" fill="#fff"/> + <path d="M244.84 160.17h154.45v99.03c-3.926 38.567-40.995 67.395-74.868 67.176-36.565 1.595-77-28.334-79.916-67.506l.336-98.7z" fill-rule="evenodd" stroke="#e5141d" stroke-width="1.022" fill="#d61517"/> + <rect fill-rule="evenodd" ry="0" height="32.302" width="29.763" y="160.67" x="337.68" fill="#fff"/> + <rect fill-rule="evenodd" ry="0" height="32.302" width="29.763" y="160.67" x="276.27" fill="#fff"/> + <rect fill-rule="evenodd" ry="0" height="31.526" width="30.162" y="194.04" x="245.22" fill="#fff"/> + <rect fill-rule="evenodd" ry="0" height="31.526" width="29.467" y="194.04" x="307.22" fill="#fff"/> + <rect fill-rule="evenodd" ry="0" height="31.526" width="30.364" y="194.04" x="368.33" fill="#fff"/> + <rect fill-rule="evenodd" ry="0" height="32.011" width="29.763" y="226.54" x="337.68" fill="#fff"/> + <rect fill-rule="evenodd" ry="0" height="32.011" width="29.763" y="226.54" x="276.27" fill="#fff"/> + <rect fill-rule="evenodd" ry="0" height="32.011" width="29.467" y="259.52" x="307.22" fill="#fff"/> + <path d="M368.52 259.8l.008 31.447 18.122.024c8.268-12.077 11.1-23.842 11.876-31.463-.134 0-29.888-.015-30.006-.007zM337.86 292.78l.005 31.56c12.89-2.68 23.39-8.788 29.4-13.27l.002-18.303-29.407.013zM276.5 292.72l-.043 17.832c10.125 7.385 21.688 11.707 29.39 13.37l.005-31.19-29.352-.013zM245.28 259.76c.96 12.356 6.225 23.816 11.88 31.567l18.046-.03.003-31.55-29.93.013z" fill-rule="evenodd" stroke="#fff" stroke-width=".355" fill="#fff"/> + </g> + </g> +</svg> diff --git a/s/flag/ht.svg b/s/flag/ht.svg new file mode 100755 index 0000000..4efc3f3 --- /dev/null +++ b/s/flag/ht.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#132c77" d="M0 0h639.994v240.802H0z"/> + <path fill="#c00011" d="M0 240.802h639.994v239.215H0z"/> + </g> +</svg> diff --git a/s/flag/hu.svg b/s/flag/hu.svg new file mode 100755 index 0000000..566d886 --- /dev/null +++ b/s/flag/hu.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd"> + <path fill="#fff" d="M640.006 479.994H0V0h640.006z"/> + <path fill="#388d00" d="M640.006 479.994H0V319.996h640.006z"/> + <path fill="#d43516" d="M640.006 160.127H0V.13h640.006z"/> + </g> +</svg> diff --git a/s/flag/id.svg b/s/flag/id.svg new file mode 100755 index 0000000..0e6a5ea --- /dev/null +++ b/s/flag/id.svg @@ -0,0 +1,6 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#e70011" d="M0 0h639.958v248.947H0z"/> + <path fill="#fff" d="M0 240h639.958v240H0z"/> + </g> +</svg> diff --git a/s/flag/ie.svg b/s/flag/ie.svg new file mode 100755 index 0000000..d5c8527 --- /dev/null +++ b/s/flag/ie.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <g fill-rule="evenodd" stroke-width="1pt"> + <path fill="#fff" d="M0 0h639.995v480.004H0z"/> + <path fill="#009A49" d="M0 0h213.334v480.004H0z"/> + <path fill="#FF7900" d="M426.668 0h213.334v480.004H426.668z"/> + </g> +</svg> diff --git a/s/flag/il.svg b/s/flag/il.svg new file mode 100755 index 0000000..bd75736 --- /dev/null +++ b/s/flag/il.svg @@ -0,0 +1,14 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-87.62 0h682.67v512H-87.62z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" clip-path="url(#a)" transform="matrix(.94 0 0 .94 82.14 0)"> + <path fill="#fff" d="M619.43 512H-112V0h731.43z"/> + <path fill="#00c" d="M619.43 115.23H-112V48.003h731.43zM619.43 465.68H-112v-67.227h731.43zM136.43 190.78l110.12 191.54 112.49-190.75-222.61-.79z"/> + <path d="M225.75 317.81l20.95 35.506 21.4-35.36-42.35-.145z" fill="#fff"/> + <path d="M136.02 320.58l110.13-191.54 112.48 190.75-222.61.79z" fill="#00c"/> + <path d="M225.75 191.61l20.95-35.506 21.4 35.36-42.35.145zM181.97 271.11l-21.64 35.982 40.9-.127-19.26-35.855zM160.7 204.61l41.225.29-19.834 36.26-21.39-36.55zM311.94 271.52l20.83 35.576-41.71-.533 20.88-35.043zM332.39 204.61l-41.225.29L311 241.16l21.39-36.55zM218.12 204.57l-28.394 51.515 28.8 50.297 52.73 1.217 32.044-51.515-29.61-51.92-55.572.405z" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/im.svg b/s/flag/im.svg new file mode 100755 index 0000000..1511f0d --- /dev/null +++ b/s/flag/im.svg @@ -0,0 +1,36 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M-77.62 0h682.67v512H-77.62z"/> + </clipPath> + </defs> + <g clip-path="url(#a)" transform="matrix(.94 0 0 .94 72.77 0)"> + <path fill-rule="evenodd" fill="#ba0000" d="M629.43 512H-102V0h731.43z"/> + <path d="M281.02 376.01c.2-.605.603-6.844.402-6.844s-9.46-10.867-9.258-10.867c.202 0 11.874 2.616 11.874 2.213 0-.402 4.63-11.47 4.63-11.672 0-.2 5.634 13.485 5.634 13.485l11.47 5.032-8.05 6.64s1.813 12.88 1.813 13.083c0 .2-8.05-7.65-8.05-7.65l-8.857 1.008s-1.206-4.025-1.608-4.427z" fill-rule="evenodd" fill-opacity=".988" stroke="#000" stroke-width="2.204" fill="#ffef00"/> + <path d="M218.66 206.89c-7.647 3.938-36.996 37.486-41.02 42.718-3.373 7.596-9.97 17.205-16.763 23.39-7.252 5.488-11.282 12.983-10.284 20.08-.08 8.83 4.87 14.842 8.814 21.056 2.335 2.838 5.475 4.673 8.815 4.896 6.85.905 7.458 3.014 10.887 4.32 13.505 18.39 33.653 31.95 48.163 42.69 9.25 4.876 15.68 9.75 17.885 12.412 4.248 8.112 3.466 16.022 2.884 19.908-3.59 13.55-7.182 27.097-10.773 40.646-1.813 11.07 7.807 8.58 8.324 6.366 4.34-5.635 10.82-1.678 20.077-34.28 4.245-5.713 8.49-11.426 12.733-17.14 0 0 4.898-1.958 4.898-2.447 7.448-8.942 1.778-14.06-2.45-15.67-3.1-1.142-6.2-2.286-9.302-3.43 0 0-10.773-10.772-11.263-10.772-5.12-14.893-30.248-46.687-36.085-51.114-4.04-4.21-5.963-6.005-9.798-8.347-5.897-2.82-7.8-3.738-11.41-5.18-3.008-1.206-.867-4.507 1.045-6.016 19.903-10.834 35.68-22.875 54.778-35.118l2.938-1.96-6.856-39.175-31.83-11.264c-1.67 1.143-2.937 2.287-4.407 3.43z" fill-rule="evenodd" stroke="#000" stroke-width="2.636" fill="#fff"/> + <path d="M245.29 413.15c.1-.402 19.923-4.025 19.923-4.025s-2.314 7.346-2.415 7.346l-19.72 5.937 2.212-9.257z" fill-rule="evenodd" fill="#ffec00"/> + <path d="M193.64 338.51c3.824-10.163 14.438-18.21 21.568-20.43" stroke="#000" stroke-width="2.204" fill="none"/> + <path d="M244.58 413.32c1.28-.36 6.96-2.018 8.616-2.276 1.765-.414 3.523-.876 5.22-1.424 1.96-.4 3.186-.768 5.22-1.14 1.595-.607 3.17-1.024 4.874-1.422m-27.52 18.518c.167-.22 1.517-1.415 2.487-1.992 1.143-.36 5.05-2.018 6.527-2.276 1.577-.413 3.146-.876 4.662-1.424 1.75-.4 2.845-.768 4.663-1.14 1.422-.607 2.83-1.023 4.35-1.422" stroke="#000" stroke-width="2.437" fill="none"/> + <path d="M249.04 341.38h-.284c.89 0 .344-.074-.855 1.423-.425 1.15-4.08 3.7-6.83 3.7-1.327.142-3.367.284-4.696.284-.38 0-.9-.284-1.28-.284M248.76 400.02h1.422c1.476 0 2.957.263 4.27.284 1.423 0 2.846.404 4.27.404 1.436.203 3.167.137 4.653.348 1.666.057 3.004.386 4.738.386 1.398.053 2.152.286 3.7.286l-3.7-.286c1.398.053 2.152.286 3.7.286M239.08 434.74c.152-.222 1.39-1.415 2.276-1.992 1.047-.36 4.624-2.018 5.978-2.276 1.443-.414 2.88-.876 4.268-1.424 1.604-.4 2.606-.768 4.27-1.14 1.304-.607 2.592-1.024 3.984-1.422M265.73 385.27c-.805 2.337.238 2.924.67 3.933.75.977 2.666 2.466 5.693 3.415 1.167.314 2.064.622 3.415 1.14.894.082 1.334.305 1.992.568M153.13 299.55h.284c-.892 0-.357.058 1.14-1.14.923-1.032 1.695-1.5 2.56-2.56M171.55 319.82c.19 0 16.557-8.25 18.305-10.01 1.238-.9 2.176-1.846 3.68-2.866.967-.504 1.66-1.15 2.564-1.707.75-1.09 1.733-1.748 2.275-2.745 1.005-.87.574-1.815 1.39-2.864.384-1.075 1.105-2.885 1.34-3.87M221.95 308c.09.59-.26 2.402-.236 3.782-.057 1.6-2.115 6.543-4.603 8.02" stroke="#000" stroke-width="2.204" fill="none"/> + <path d="M192.55 307.82c.096 0 2.587.81 6.75 2.09 5.013 1.803 15.438 8.372 16.472 9.277 1.057.83 2.946 1.573 3.67 2.56 1.133.98 1.962 2.108 2.847 3.13 1.04 1.27 1.925 2.342 2.56 3.417 3.165 2.567 11.68 20.343 11.953 21.346.478.94 1.07 2.246 1.424 3.13.63.728 1.06 1.756 1.707 2.847.595 1.415 1.262 2.06 1.994 3.13.942.656 2.212 1.9 3.415 2.562 1.283 1.096 2.486 1.543 3.415 2.277 1.343.57 16.342 10.052 17.038 10.527 1.37 1.1 5.555 5.437 2.617 8.59-1.246 1.067-2.37 2.48-3.433 3.082-1.085 1.086-2.594 1.572-3.84 2.134-6.758 1.997-10.2 1.282-11.53 1.282h-1.423M159.42 274.29c1.92.752 1.146.197 2.875.984 1.162.51 1.927.522 3.07.94 1.21.387 4.597.997 6.223 2.63 1.194 1.078 2.105 1.99 3.416 2.776 1.55 1.07 2.67 1.545 4.592 2.347 1.622.607 3.435 1.28 5.075 1.338 1.705.1 2.114.014 3.75.014h3.984-3.985 3.984" stroke="#000" stroke-width="2.204" fill="none"/> + <path d="M158.96 293.28c4.268-.284 11.383.997 11.525.997l9.393-.142c4.934-.476 6.024-2.373 6.83-3.702 1.85-2.845 3.132-3.84 4.555-5.976 2.276-1.707 5.41 2.277 5.55 2.277 7.97 7.543 1.565 16.792 1.138 17.076-3.983 3.653-4.837 3.89-7.256 1.565-2.42-2.846-3.13-4.126-5.123-5.123-3.84-1.85-11.81-.426-11.954-.426-.142 0-4.126 1.565-4.126 1.565-1.946.712-3.18 2.42-6.546 2.988-3.415.238-4.554-.094-6.262-2.845-2.276-3.557-1.14-7.827 2.278-8.253z" fill-rule="evenodd" stroke="#000" stroke-width="2.204" fill="#ffe606"/> + <path d="M381.8 120.66c-.625.122-6.26 2.828-6.162 3.004.098.176-4.837 13.57-4.936 13.395-.1-.177-3.54-11.634-3.89-11.436-.35.197-12.267 1.587-12.443 1.686-.176.098 8.99-11.52 8.99-11.52l-1.235-12.466 9.734 3.763s10.34-7.892 10.515-7.99c.175-.1-2.722 10.765-2.722 10.765l5.218 7.226s-2.916 3.024-3.07 3.57z" fill-rule="evenodd" fill-opacity=".988" stroke="#000" stroke-width="2.204" fill="#ffef00"/> + <path d="M264.93 257.9c7.18 4.736 50.806 13.878 57.34 14.822 8.274-.783 19.883.257 28.605 3.148 8.337 3.632 16.845 3.472 22.542-.876 7.737-4.258 10.552-11.52 14.035-18.003 1.33-3.425 1.39-7.062-.052-10.082-2.57-6.415-1.028-7.98-1.57-11.607 9.41-20.784 11.356-44.992 13.608-62.905-.284-10.45.814-18.447 2.054-21.672 4.988-7.68 12.267-10.874 15.94-12.27 13.57-3.512 27.14-7.02 40.71-10.53 10.537-3.846 3.652-11.01 1.47-10.377-7.04-1.022-6.766-8.61-39.72-.7l-21.18-2.7s-4.11-3.31-4.536-3.07c-11.444-2.108-13.126 5.343-12.458 9.816l1.57 9.79s-4.11 14.67-3.87 15.097c-10.473 11.76-26.062 49.528-27.06 56.785-.473 6.82-3.048 5.588-2.357 12.217.026 5.18-.576 1.946 1.153 12.618.422 3.213-3.505 2.965-5.758 2.037-19.198-12.04-37.426-19.89-57.458-30.538-1.05-.534-2.098-1.07-3.147-1.602l-30.788 25.175 5.78 33.266c1.815.895 3.433 1.44 5.15 2.16z" fill-rule="evenodd" stroke="#000" stroke-width="2.636" fill="#fff"/> + <path d="M431.67 133.6c-.4.11-13.273-15.394-13.273-15.394s7.538-1.583 7.587-1.495l14.84 14.282-9.154 2.607z" fill-rule="evenodd" fill="#ffec00"/> + <path d="M391.93 215.21c-10.733 1.648-22.95-3.66-28.38-8.787" stroke="#000" stroke-width="2.204" fill="none"/> + <path d="M432.18 134.14c-.94-.94-5.17-5.08-6.207-6.395-1.225-1.336-2.49-2.64-3.8-3.853-1.308-1.51-2.23-2.4-3.55-3.992-1.31-1.09-2.447-2.26-3.63-3.55m29.63 14.91c-.275-.034-1.978-.626-2.956-1.19-.874-.82-4.234-3.41-5.183-4.573-1.133-1.172-2.305-2.313-3.525-3.366-1.208-1.33-2.065-2.102-3.28-3.506-1.227-.942-2.28-1.964-3.372-3.095" stroke="#000" stroke-width="2.437" fill="none"/> + <path d="M367.28 165.51l.14.248c-.437-.777-.234-.263 1.66.047 1.21-.192 5.223 1.743 6.57 4.14.776 1.09 1.9 2.797 2.55 3.956.186.33.194.925.38 1.257M418.53 137.02l-.14-.248c.187.332-.37-.66-.557-.99-.723-1.288-1.22-2.708-1.845-3.863-.697-1.24-1.043-2.68-1.74-3.92-.527-1.352-1.433-2.828-1.977-4.227-.767-1.48-1.135-2.807-1.985-4.32-.64-1.244-.806-2.015-1.565-3.366l1.565 3.367c-.64-1.245-.806-2.016-1.565-3.367M453.54 128.44c-.268-.024-1.914-.517-2.852-1.008-.827-.736-4.025-3.04-4.914-4.095-1.067-1.055-2.175-2.08-3.332-3.023-1.135-1.202-1.947-1.894-3.086-3.164-1.17-.838-2.163-1.757-3.193-2.775M397.35 129.45c2.432-.444 2.432-1.64 3.1-2.51.484-1.134.843-3.534.187-6.637-.298-1.172-.47-2.105-.68-3.536-.367-.82-.388-1.312-.482-2.015M377.82 269.62l-.14-.248c.438.778.226.283-1.55-.434-1.354-.3-2.14-.743-3.487-.978M386.46 243.62c-.093-.166-15.305-10.39-17.697-11.05-1.39-.638-2.674-.99-4.3-1.804-.914-.594-1.817-.88-2.746-1.397-1.318-.122-2.372-.656-3.507-.64-1.252-.45-1.864.39-3.178.194-1.125.19-3.056.45-4.03.727M351.46 205.48c.47-.366 2.222-.95 3.413-1.648 1.422-.735 6.74-1.363 9.245.082" stroke="#000" stroke-width="2.204" fill="none"/> + <path d="M365.71 231.2c-.047-.084-.562-2.652-1.486-6.91-.886-5.252-.268-17.558.013-18.904.207-1.328-.072-3.34.433-4.454.298-1.466.876-2.743 1.334-4.015.596-1.528 1.097-2.826 1.723-3.906.686-4.017 12.008-20.15 12.75-20.88.583-.877 1.433-2.034 2.03-2.775.325-.907 1.01-1.784 1.645-2.884.94-1.21 1.177-2.108 1.752-3.27.11-1.143.57-2.86.558-4.233.328-1.656.127-2.924.312-4.094-.16-1.45.753-19.172.826-20.01.288-1.735 2.017-7.507 6.206-6.492 1.54.565 3.32.852 4.368 1.484 1.48.413 2.642 1.49 3.743 2.3 5.052 4.913 6.115 8.264 6.766 9.423l.698 1.24M352.64 275.94l-.14-.248c.377.67.17.336-.31-1.132-.125-1.263-.515-2.97-.712-4.17-.255-1.247-.84-2.667-.68-3.536-.447-1.266-.166-2.31-.046-3.566.354-1.568.514-2.703.558-4.232.172-1.875.034-3.205.14-4.977-.494-1.46-.594-2.682-1.348-4.14-.67-1.394-1.182-2.684-1.984-4.11l-1.953-3.473 1.953 3.474-1.953-3.473" stroke="#000" stroke-width="2.204" fill="none"/> + <path d="M369.5 267.6c-2.34-3.58-4.71-10.41-4.78-10.535l-4.727-8.118c-2.833-4.068-5.02-4.088-6.574-4.14-3.387-.218-4.884-.846-7.442-1.04-2.604-1.148-.666-5.83-.736-5.955 2.67-10.642 13.87-9.593 14.328-9.36 5.137 1.682 5.762 2.31 4.92 5.558-1.294 3.505-2.06 4.75-1.954 6.976.27 4.256 5.417 10.505 5.488 10.63.07.124 3.386 2.83 3.386 2.83 1.574 1.347 3.668 1.585 5.812 4.242 1.882 2.86 2.15 4.016.59 6.852-1.986 3.728-6.265 4.83-8.312 2.06z" fill-rule="evenodd" stroke="#000" stroke-width="2.204" fill="#ffe606"/> + <path d="M105.242 168.67c.444.457 5.795 3.69 5.888 3.51s14.004-3.387 13.91-3.208-7.793 9.333-7.435 9.518c.356.186 8.047 9.394 8.226 9.487.18.092-14.563-1.212-14.563-1.212l-9.75 7.86-2.185-10.203s-12.266-4.328-12.445-4.42c-.178-.093 10.497-3.62 10.497-3.62l3.188-8.324s4.128.784 4.67.612z" fill-rule="evenodd" fill-opacity=".988" stroke="#000" stroke-width="1.65306pt" fill="#ffef00"/> + <path d="M284.058 191.255c.03-8.6-16.22-50.106-19.01-56.09-5.187-6.492-10.676-16.774-13.035-25.654-1.527-8.963-6.322-15.994-13.08-18.378-7.8-4.14-15.418-2.517-22.75-1.88-3.595.764-6.67 2.706-8.407 5.566-3.96 5.663-6.11 5.23-8.85 7.672-22.544 3.513-43.862 15.146-60.082 23.074-8.588 5.962-15.878 9.425-19.256 10.154-9.156.033-15.816-4.306-18.997-6.613l-31.108-28.29c-8.99-6.71-11.212 2.975-9.486 4.454 3 6.45-3.496 10.375 21.172 33.613l9.344 19.197s-.518 5.25-.084 5.475c4.504 10.73 11.66 8.056 15.036 5.046l7.33-6.676s14.525-4.597 14.75-5.03c15.576 2.318 55.712-5.328 62.33-8.47 5.965-3.34 6.345-.51 11.512-4.72 4.32-2.858 1.944-.582 9.925-7.874 2.458-2.113 4.4 1.308 4.86 3.7.443 22.657 3.86 42.207 5.925 64.798.13 1.17.257 2.34.385 3.51 12.64 3.99 25.285 7.978 37.926 11.967 8.22-7.686 16.444-15.373 24.664-23.06-.244-2.007-.675-3.66-1.012-5.49z" fill-rule="evenodd" stroke="#000" stroke-width="2.6366307" fill="#fff"/> + <path d="M88.737 119.85c.31.275-5.608 19.537-5.608 19.537s-5.455-5.44-5.408-5.53l3.82-20.237 7.195 6.23z" fill-rule="evenodd" fill="#ffec00"/> + <path d="M178.78 108.395c7.258 8.077 9.51 21.205 8.194 28.556" stroke="#000" stroke-width="1.65306pt" fill="none"/> + <path d="M88.917 119.143c-.27 1.302-1.416 7.108-1.95 8.696-.446 1.756-.845 3.53-1.142 5.288-.547 1.923-.785 3.18-1.394 5.158-.194 1.694-.55 3.284-.982 4.98m-3.754-32.955c.12.25.557 1.998.622 3.125-.206 1.18-.535 5.41-.987 6.84-.36 1.59-.673 3.197-.886 4.794-.45 1.737-.628 2.88-1.138 4.663-.116 1.543-.394 2.984-.74 4.517" stroke="#000" stroke-width="2.43661044" fill="none"/> + <path d="M150.694 156.247l.13-.252c-.41.79-.09.34-.868-1.415-.825-.908-1.403-5.325-.136-7.766.486-1.244 1.3-3.12 1.912-4.3.174-.335.667-.668.842-1.005M98.8 128.987l-.13.252-.525 1.01c-.68 1.31-1.596 2.502-2.22 3.657-.655 1.263-1.67 2.34-2.325 3.604-.842 1.182-1.58 2.75-2.454 3.97-.817 1.453-1.726 2.488-2.525 4.027-.69 1.217-1.244 1.78-1.958 3.153l1.96-3.153c-.692 1.217-1.246 1.78-1.96 3.153M72.44 104.386c.127.237.616 1.885.72 2.938-.163 1.095-.34 5.034-.735 6.354-.298 1.47-.55 2.96-.703 4.444-.384 1.607-.52 2.666-.957 4.314-.06 1.438-.285 2.773-.573 4.192M104.064 150.85c-1.703-1.793-2.705-1.137-3.8-1.22-1.21.217-3.416 1.23-5.653 3.48-.815.89-1.502 1.546-2.584 2.506-.485.756-.886 1.043-1.422 1.506M232.022 90.405l-.13.252c.41-.792.112-.343.485 1.536.49 1.296.55 2.197 1.092 3.453M205.55 97.41c-.088.17-.31 18.495.45 20.858.226 1.513.635 2.78.846 4.587.002 1.09.257 2.002.335 3.06.62 1.17.752 2.345 1.387 3.286.31 1.294 1.347 1.346 1.903 2.553.776.837 2.05 2.31 2.815 2.973M192.814 147.588c-.563-.192-2.01-1.34-3.247-1.953-1.395-.787-4.833-4.89-4.997-7.78" stroke="#000" stroke-width="1.65306pt" fill="none"/> + <path d="M206.527 121.572c-.044.085-1.91 1.923-4.967 5.028-3.91 3.618-14.542 9.843-15.822 10.344-1.224.555-2.754 1.89-3.963 2.077-1.39.555-2.775.772-4.09 1.085-1.605.34-2.965.63-4.212.7-3.737 1.625-23.436.992-24.452.77-1.053-.007-2.486-.085-3.434-.178-.936.225-2.046.13-3.313.204-1.53-.123-2.41.17-3.697.327-1.015.535-2.704 1.09-3.847 1.85-1.566.634-2.516 1.497-3.596 1.983-1.125.928-16.452 9.872-17.193 10.27-1.608.71-7.384 2.425-8.83-1.636-.372-1.597-1.107-3.244-1.152-4.467-.465-1.463-.2-3.026-.125-4.39 1.342-6.92 3.563-9.643 4.175-10.823l.656-1.263M251.102 108.004l-.13.253c.353-.683.188-.325-.778.88-.987.796-2.203 2.057-3.1 2.88-.902.896-1.77 2.162-2.583 2.505-.814 1.068-1.843 1.405-2.958 1.992-1.506.563-2.543 1.05-3.846 1.85-1.664.885-2.7 1.73-4.24 2.61-.95 1.213-1.918 1.967-2.725 3.395-.8 1.324-1.597 2.46-2.35 3.91l-1.837 3.537 1.837-3.537-1.837 3.537M238.305 204.938l.263-.506c-.485.935-.315.69.14-.888.005-1.892.454-4.18.473-5.85.285-1.766.574-3.675.592-5.464-.107-2.094-.104-3.97-.417-5.99-.024-1.857-.24-3.784-.296-5.605-.035-1.803-.17-3.35-.56-5.1-.037-1.31-.118-3.11-.437-4.716.17-1.267-.19-2.432-.458-3.445-.49-1.95-.68-3.09-1.195-5.11-.31-1.084-.615-2.468-1.082-4.09-.17-1.537-.992-3.533-1.326-4.858-.457-.974-.918-2.294-1.095-3.453-.478-1.07-1.16-2.375-1.345-3.585-.504-.924-1.04-2.36-1.598-3.718-.48-1.116-.834-2.49-1.345-3.584-.517-1.38-1.147-2.56-1.468-3.97-.493-.476-.605-1-.87-1.412" stroke="#000" stroke-width="1.65306pt" fill="none"/> + <path d="M234.893 98.47c-1.714 3.92-6.13 9.644-6.195 9.77l-4.202 8.402c-1.85 4.598-.67 6.44.137 7.767 1.673 2.952 1.967 4.548 3.205 6.795.467 2.807-4.512 3.75-4.578 3.877-10.366 3.596-15.623-6.35-15.68-6.86-1.406-5.218-1.222-6.085 1.956-7.16 3.64-.837 5.104-.878 6.907-2.187 3.412-2.557 5.82-10.286 5.887-10.413.065-.126.512-4.383.512-4.383.266-2.056-.683-3.938.365-7.188 1.363-3.14 2.182-3.998 5.41-4.246 4.207-.38 7.472 2.596 6.276 5.825z" fill-rule="evenodd" stroke="#000" stroke-width="1.65306pt" fill="#ffe606"/> + <path d="M221.29 199.65c-1.566-1.422 29.458 11.24 33.726 11.385 5.836-2.134 29.886-22.484 29.886-22.484.237 1.993 1.09 7.163 3.414 8.255-9.296 7.543-17.74 14.8-27.037 22.34.663 11.955-1.52 24.62 4.552 37.998 0 0-7.256.14-7.256 0-6.404-6.404-8.682-37.284-8.682-37.284-10.198-4.555-20.398-8.966-30.596-13.52 1.47-.95 2.656-3.89 1.992-6.69z" fill-rule="evenodd" fill-opacity=".987" stroke="#000" stroke-width="2.204" fill="#ffef00"/> + <path d="M250.81 231.3c.496-.36-5.596 2.83-7.16 3.63-28.186 15.036-42.69 36.906-43.594 37.732-.487.932-1.384 2.174-2.204 3.392-.66 1.02-1.61 2.076-2.234 3.108-.864 1.196-2.68 3.558-3.67 4.606-.124.676.47-.23.276.22M270.07 213.43c-.547-.277 5.077 3.682 6.505 4.707 26.26 18.187 52.344 21.082 53.492 21.507 1.05.007 2.566.236 4.023.41 1.21.12 2.583.48 3.787.563 1.458.22 4.39.754 5.775 1.157.656-.2-.42-.312.067-.346" stroke="#000" stroke-width="2.204" fill="none"/> + </g> +</svg> diff --git a/s/flag/in.svg b/s/flag/in.svg new file mode 100755 index 0000000..987c5dd --- /dev/null +++ b/s/flag/in.svg @@ -0,0 +1,36 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1"> + <defs> + <clipPath id="a"> + <path fill-opacity=".67" d="M0 0h640v480H0z"/> + </clipPath> + </defs> + <g fill-rule="evenodd" stroke-width="1pt" clip-path="url(#a)"> + <path fill="#fff" d="M-40 0h720v480H-40z"/> + <path fill="#329203" d="M-40 320h720v160H-40z"/> + <path fill="#e77300" d="M-40 0h720v160H-40z"/> + <ellipse rx="305" ry="305" transform="matrix(.4 0 0 .4 173.67 91.82)" cy="367.47" cx="362.9" fill="#08399c"/> + <path d="M426.58 212.4c.673 2.456.815 3.768 1.304 6.118-4.822 1.492-7.332 4.705-6.75 7.922.48 2.897 2.624 7.018 8.66 6.14.155 2.397.226 3.773.232 6.32-18.228.044-37.44-1.007-55.368-2.597-13.226-1.145-16.373 2.527-23.25 3.11-7.98.653-14.263.178-30.744.827 16.155-3.33 22.503-5.348 29.982-6.556 7.2-1.117 9.972 1.49 23.37-3.72 16.92-6.727 34.984-12.746 52.564-17.564z" fill="#fff"/> + <path d="M293.62 134.15c2.46-.657 3.773-.79 6.126-1.264 1.46 4.83 4.658 7.362 7.878 6.8 2.9-.46 7.036-2.578 6.198-8.62 2.396-.14 3.773-.2 6.32-.19-.074 18.228-1.25 37.433-2.956 55.35-1.23 13.218 2.42 16.39 2.96 23.27.6 7.983.084 14.264.626 30.75-3.225-16.177-5.2-22.538-6.36-30.025-1.07-7.205 1.553-9.96-3.57-23.392-6.616-16.965-12.518-35.067-17.222-52.678z" fill="#fff"/> + <path d="M321.63 130.75c2.547-.006 3.85.2 6.246.344.177 5.044 2.62 8.308 5.877 8.59 2.922.294 7.46-.695 8.195-6.75 2.353.478 3.7.77 6.16 1.43-4.732 17.604-10.78 35.87-17.008 52.756-4.57 12.464-1.85 16.464-3.09 23.253-1.46 7.87-3.563 13.812-7.254 29.888 1.018-16.463.734-23.117 1.526-30.652.808-7.24 4.05-9.233 2.53-23.528-2.06-18.092-3.136-37.102-3.182-55.33z" fill="#fff"/> + <path d="M349.87 134.7c2.462.652 3.667 1.188 5.945 1.946-1.132 4.92.386 8.703 3.46 9.816 2.746 1.04 7.387 1.256 9.66-4.403 2.15 1.067 3.375 1.697 5.58 2.972-9.118 15.784-19.678 31.868-30.058 46.57-7.633 10.862-6.04 15.428-8.99 21.667-3.443 7.226-7.01 12.422-14.73 26.998 5.236-15.642 6.68-22.144 9.393-29.218 2.65-6.786 6.297-7.874 8.522-22.076 2.684-18.01 6.554-36.653 11.218-54.274z" fill="#fff"/> + <path d="M376.13 145.81c2.21 1.266 3.236 2.095 5.24 3.415-2.363 4.46-1.875 8.508.807 10.376 2.385 1.715 6.812 3.123 10.47-1.757 1.8 1.588 2.822 2.513 4.623 4.314-12.886 12.893-27.242 25.703-41.068 37.226-10.18 8.52-9.82 13.343-14.282 18.608-5.193 6.093-9.98 10.19-21.203 22.28 9.1-13.76 12.173-19.667 16.62-25.8 4.314-5.872 8.118-5.982 13.936-19.126 7.245-16.706 15.8-33.716 24.857-49.534z" fill="#fff"/> + <path d="M398.51 163.2c1.81 1.79 2.59 2.856 4.188 4.646-3.43 3.704-3.997 7.74-1.885 10.236 1.865 2.27 5.782 4.767 10.57.99 1.332 1.997 2.082 3.153 3.36 5.356-15.764 9.152-32.93 17.846-49.25 25.432-12.027 5.62-12.917 10.374-18.58 14.317-6.584 4.555-12.265 7.285-26.214 16.087 12.325-10.96 16.814-15.88 22.688-20.667 5.676-4.566 9.38-3.696 18.38-14.906 11.29-14.284 23.926-28.527 36.742-41.49z" fill="#fff"/> + <path d="M416.01 186.35c1.277 2.204 1.748 3.436 2.82 5.584-4.283 2.67-5.89 6.418-4.51 9.38 1.204 2.68 4.327 6.118 9.94 3.733.76 2.276 1.18 3.59 1.834 6.05-17.615 4.687-36.462 8.565-54.203 11.596-13.08 2.262-15.188 6.614-21.69 8.93-7.55 2.664-13.747 3.806-29.52 8.632 14.775-7.336 20.4-10.904 27.324-13.978 6.676-2.914 10.022-1.1 21.65-9.55 14.65-10.816 30.583-21.238 46.356-30.377zM214.69 267.32c-.658-2.46-.792-3.773-1.266-6.126 4.83-1.463 7.36-4.66 6.798-7.88-.463-2.9-2.58-7.035-8.62-6.195-.142-2.397-.205-3.774-.195-6.32 18.228.067 37.434 1.237 55.35 2.937 13.22 1.226 16.39-2.426 23.27-2.966 7.983-.603 14.264-.09 30.75-.637-16.176 3.23-22.536 5.21-30.023 6.37-7.205 1.074-9.962-1.55-23.392 3.578-16.962 6.623-35.063 12.53-52.672 17.24z" fill="#fff"/> + <path d="M430.16 240.36c.024 2.547-.174 3.85-.3 6.248-5.045.212-8.292 2.677-8.55 5.936-.275 2.923.745 7.456 6.804 8.15-.462 2.354-.745 3.703-1.39 6.167-17.634-4.61-35.94-10.534-52.868-16.648-12.495-4.484-16.476-1.738-23.273-2.93-7.88-1.406-13.836-3.47-29.936-7.052 16.47.906 23.122.577 30.662 1.318 7.244.758 9.26 3.986 23.544 2.37 18.078-2.182 37.08-3.388 55.307-3.558z" fill="#fff"/> + <path d="M426.4 268.65c-.636 2.466-1.164 3.675-1.907 5.958-4.926-1.1-8.7.442-9.793 3.523-1.02 2.754-1.208 7.396 4.465 9.632-1.054 2.156-1.676 3.386-2.936 5.6-15.844-9.015-31.996-19.47-46.767-29.755-10.91-7.563-15.466-5.94-21.724-8.85-7.25-3.396-12.47-6.93-27.096-14.552 15.676 5.133 22.187 6.535 29.28 9.202 6.802 2.605 7.914 6.245 22.13 8.378 18.027 2.566 36.695 6.315 54.346 10.865z" fill="#fff"/> + <path d="M415.43 295.03c-1.252 2.218-2.076 3.248-3.384 5.26-4.474-2.336-8.518-1.823-10.37.87-1.7 2.395-3.082 6.83 1.82 10.46-1.577 1.808-2.496 2.835-4.286 4.648-12.97-12.808-25.866-27.088-37.472-40.844-8.58-10.13-13.402-9.74-18.693-14.17-6.123-5.157-10.25-9.92-22.405-21.07 13.813 9.016 19.74 12.056 25.9 16.467 5.897 4.278 6.03 8.08 19.208 13.82 16.75 7.145 33.81 15.598 49.682 24.56z" fill="#fff"/> + <path d="M398 317.69c-1.784 1.818-2.846 2.6-4.63 4.205-3.717-3.416-7.756-3.968-10.244-1.847-2.26 1.874-4.745 5.8-.95 10.574-1.992 1.34-3.145 2.094-5.343 3.38-9.21-15.73-17.968-32.86-25.615-49.154-5.666-12.006-10.422-12.878-14.386-18.528-4.58-6.567-7.33-12.237-16.184-26.153 11.007 12.285 15.944 16.756 20.752 22.612 4.587 5.657 3.73 9.365 14.974 18.322 14.327 11.24 28.617 23.82 41.627 36.59z" fill="#fff"/> + <path d="M375.1 335.17c-2.196 1.29-3.426 1.767-5.568 2.85-2.696-4.266-6.45-5.853-9.405-4.454-2.672 1.218-6.094 4.36-3.677 9.96-2.272.773-3.582 1.2-6.04 1.868-4.787-17.588-8.772-36.412-11.902-54.136-2.337-13.068-6.7-15.152-9.053-21.64-2.707-7.534-3.884-13.725-8.8-29.47 7.42 14.732 11.02 20.335 14.133 27.243 2.952 6.66 1.157 10.016 9.674 21.597 10.898 14.588 21.41 30.462 30.638 46.183z" fill="#fff"/> + <path d="M348.59 346.03c-2.456.675-3.767.818-6.117 1.31-1.496-4.822-4.71-7.33-7.927-6.745-2.897.483-7.017 2.63-6.135 8.664-2.394.157-3.77.23-6.317.237-.06-18.228.978-37.44 2.554-55.37 1.134-13.227-2.54-16.37-3.128-23.248-.66-7.98-.19-14.264-.852-30.745 3.343 16.153 5.365 22.498 6.58 29.977 1.122 7.198-1.482 9.973 3.738 23.366 6.74 16.916 12.772 34.975 17.604 52.55z" fill="#fff"/> + <path d="M320.04 349.63c-2.547.012-3.85-.192-6.247-.33-.188-5.045-2.638-8.303-5.895-8.578-2.923-.288-7.46.71-8.18 6.766-2.355-.472-3.702-.76-6.163-1.417 4.694-17.612 10.703-35.89 16.897-52.79 4.543-12.474 1.815-16.467 3.04-23.26 1.442-7.874 3.534-13.818 7.19-29.902-.982 16.466-.683 23.12-1.46 30.656-.792 7.242-4.03 9.242-2.48 23.533 2.097 18.088 3.214 37.095 3.298 55.323z" fill="#fff"/> + <path d="M291.8 345.74c-2.464-.646-3.67-1.18-5.95-1.933 1.122-4.92-.404-8.702-3.48-9.808-2.75-1.034-7.39-1.24-9.65 4.423-2.152-1.064-3.38-1.69-5.588-2.96 9.084-15.805 19.608-31.912 29.956-46.638 7.61-10.878 6.007-15.44 8.943-21.685 3.43-7.234 6.985-12.438 14.67-27.032-5.2 15.653-6.63 22.158-9.327 29.24-2.635 6.79-6.28 7.887-8.473 22.093-2.645 18.017-6.474 36.668-11.1 54.3z" fill="#fff"/> + <path d="M265.43 334.64c-2.212-1.263-3.24-2.09-5.245-3.409 2.358-4.46 1.865-8.51-.82-10.374-2.387-1.71-6.815-3.113-10.468 1.772-1.802-1.586-2.824-2.51-4.628-4.308 12.868-12.91 27.21-25.738 41.02-37.278 10.17-8.533 9.803-13.356 14.258-18.626 5.185-6.1 9.97-10.203 21.175-22.305-9.08 13.77-12.148 19.683-16.588 25.823-4.306 5.876-8.11 5.99-13.91 19.143-7.225 16.715-15.757 33.736-24.795 49.566z" fill="#fff"/> + <path d="M242.8 317.05c-1.808-1.794-2.585-2.86-4.18-4.653 3.436-3.698 4.01-7.734 1.902-10.232-1.86-2.272-5.774-4.776-10.568-1.007-1.33-2-2.076-3.157-3.352-5.362 15.78-9.125 32.96-17.79 49.292-25.35 12.036-5.6 12.934-10.352 18.605-14.286 6.59-4.544 12.275-7.265 26.24-16.043-12.346 10.94-16.842 15.853-22.724 20.63-5.683 4.557-9.386 3.68-18.404 14.875-11.316 14.266-23.974 28.488-36.812 41.43z" fill="#fff"/> + <path d="M225.41 293.99c-1.276-2.204-1.747-3.437-2.818-5.585 4.284-2.67 5.894-6.416 4.513-9.378-1.202-2.68-4.324-6.12-9.937-3.737-.76-2.277-1.18-3.59-1.833-6.05 17.617-4.682 36.465-8.552 54.207-11.576 13.082-2.258 15.192-6.61 21.694-8.923 7.55-2.66 13.75-3.8 29.522-8.62-14.776 7.33-20.402 10.896-27.328 13.968-6.677 2.912-10.022 1.097-21.654 9.544-14.653 10.81-30.59 21.226-46.367 30.358z" fill="#fff"/> + <path d="M267.34 144.64c2.21-1.266 3.444-1.73 5.597-2.793 2.65 4.296 6.39 5.922 9.36 4.554 2.683-1.19 6.138-4.296 3.78-9.92 2.28-.75 3.594-1.162 6.06-1.805 4.6 17.638 8.388 36.502 11.334 54.258 2.2 13.092 6.542 15.22 8.827 21.733 2.628 7.562 3.74 13.765 8.49 29.56-7.265-14.81-10.806-20.45-13.847-27.39-2.882-6.69-1.052-10.026-9.447-21.695-10.745-14.7-21.09-30.684-30.153-46.5z" fill="#fff"/> + <path d="M211.28 238.77c.006-2.547.218-3.85.373-6.244 5.045-.154 8.32-2.582 8.617-5.838.308-2.92-.66-7.464-6.71-8.226.488-2.35.786-3.696 1.46-6.152 17.58 4.813 35.818 10.946 52.674 17.255 12.443 4.627 16.455 1.927 23.238 3.197 7.864 1.496 13.795 3.63 29.853 7.394-16.46-1.094-23.114-.84-30.645-1.67-7.236-.84-9.214-4.09-23.516-2.64-18.102 1.976-37.116 2.964-55.344 2.924z" fill="#fff"/> + <path d="M215.3 210.76c.658-2.46 1.198-3.664 1.96-5.94 4.917 1.145 8.706-.363 9.826-3.433 1.047-2.744 1.276-7.384-4.377-9.672 1.073-2.147 1.706-3.37 2.986-5.573 15.76 9.16 31.816 19.762 46.492 30.18 10.84 7.663 15.41 6.082 21.642 9.048 7.22 3.463 12.404 7.044 26.96 14.8-15.627-5.276-22.125-6.738-29.192-9.468-6.778-2.668-7.857-6.318-22.053-8.58-18.003-2.73-36.635-6.65-54.244-11.36z" fill="#fff"/> + <path d="M226.53 184.44c1.274-2.206 2.107-3.228 3.434-5.23 4.45 2.38 8.5 1.907 10.38-.768 1.72-2.38 3.145-6.8-1.722-10.476 1.594-1.795 2.523-2.813 4.33-4.608 12.847 12.932 25.606 27.334 37.08 41.2 8.484 10.21 13.308 9.868 18.557 14.348 6.073 5.215 10.153 10.018 22.202 21.282-13.726-9.147-19.623-12.243-25.74-16.712-5.857-4.334-5.953-8.138-19.077-14.003-16.68-7.304-33.66-15.92-49.446-25.033z" fill="#fff"/> + <path d="M244.6 161.55c1.81-1.79 2.884-2.558 4.693-4.136 3.665 3.47 7.696 4.083 10.214 2 2.29-1.84 4.83-5.73 1.107-10.56 2.01-1.31 3.176-2.046 5.393-3.3 8.975 15.865 17.48 33.126 24.883 49.53 5.486 12.09 10.23 13.032 14.11 18.74 4.48 6.633 7.147 12.343 15.793 26.39-10.823-12.448-15.693-16.992-20.414-22.918-4.504-5.726-3.592-9.42-14.7-18.543-14.16-11.45-28.262-24.243-41.08-37.202z" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/io.svg b/s/flag/io.svg new file mode 100755 index 0000000..8a0868f --- /dev/null +++ b/s/flag/io.svg @@ -0,0 +1,187 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4088"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath8040" clipPathUnits="userSpaceOnUse"> + <rect id="rect8042" fill-opacity="0.67" height="512" width="682.67" y=".000015803" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath8040)" transform="matrix(.93750 0 0 .93750 0 -.000014815)"> + <rect id="rect576" fill-rule="evenodd" height="512" width="1024" y=".000015222" x=".000038757" fill="#fff"/> + <path id="path570" d="m1024 445.24c-11.474 6.9027-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0 27.428-24.2 57.905-24.2 45.715 0 60.955 33.96 121.9 33.96 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235z" fill-rule="evenodd" fill="#000063"/> + <path id="path571" d="m1024 360.32c-11.474 6.9026-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0.01 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235z" fill-rule="evenodd" fill="#000063"/> + <path id="path572" d="m1024 275.41c-11.474 6.9027-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235z" fill-rule="evenodd" fill="#000063"/> + <path id="path573" d="m1024 190.5c-11.474 6.9027-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235z" fill-rule="evenodd" fill="#000063"/> + <path id="path574" d="m1024 105.59c-11.474 6.9027-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.491-0.002-39.634 24.2-57.92 24.2v43.727c18.286 0 27.428-24.203 57.905-24.203 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235z" fill-rule="evenodd" fill="#000063"/> + <path id="path575" d="m1024 20.675c-11.474 6.9027-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.491-0.0001-39.634 24.203-57.92 24.203v43.727c18.286 0 27.428-24.203 57.905-24.203 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235z" fill-rule="evenodd" fill="#000063"/> + <rect id="rect683" fill-rule="evenodd" height="157.91" width="261.31" y=".063091" x="0" stroke-width="1pt" fill="#000063"/> + <g id="g584" stroke-width="1pt" transform="matrix(4.3552 0 0 5.2635 0 .063135)"> + <path id="path146" d="m0 0v3.3541l53.292 26.646h6.708v-3.354l-53.292-26.646h-6.708zm60 0v3.354l-53.292 26.646h-6.708v-3.354l53.292-26.646h6.708z" fill="#fff"/> + <path id="path136" d="m25 0v30h10v-30h-10zm-25 10v10h60v-10h-60z" fill="#fff"/> + <path id="path141" d="m0 12v6h60v-6h-60zm27-12v30h6v-30h-6z" fill="#c00"/> + <path id="path150" d="m0 30 20-10h4.472l-20 10h-4.472zm0-30 20 10h-4.472l-15.528-7.7639v-2.2361zm35.528 10 20-10h4.472l-20 10h-4.472zm24.472 20-20-10h4.472l15.528 7.764v2.236z" fill="#c00"/> + </g> + <g id="g1127" transform="matrix(1.0321 0 0 1.0321 -382 -15.937)"> + <path id="path861" d="m814.96-301.18-17.72 708.66c0 37.298 80.097 37.298 88.583 0l-17.717-708.66h-53.149z" fill-rule="evenodd" transform="matrix(0.2 0 0 .475 575.17 274.56)" stroke="#fff" stroke-width="6.9349" fill="#a24300"/> + <g id="g862" transform="matrix(.72520 0 0 .6231 202.06 41.434)"> + <g id="g852" transform="matrix(-.31451 .10485 -.13829 -.30324 1046.5 373.32)"> + <path id="path853" d="m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="translate(177.17 -224.05)" stroke="#fff" stroke-width="8.25" fill="#006d00"/> + <path id="path854" d="m496.06 549.21v496.07" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path855" d="m425.2 868.11 70.86 106.3 70.87-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path856" d="m425.2 797.24 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path857" d="m425.2 726.38 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path858" d="m425.2 673.23 70.866 88.583 70.866-88.583" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path859" d="m425.2 620.08 70.866 88.582 70.866-88.582" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path860" d="m442.91 566.93 53.15 106.3 53.15-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + </g> + <g id="g738" transform="matrix(.23652 -.28186 .29496 .22762 354.57 204.65)"> + <path id="path739" d="m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="translate(177.17 -224.05)" stroke="#fff" stroke-width="8.25" fill="#006d00"/> + <path id="path740" d="m496.06 549.21v496.07" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path741" d="m425.2 868.11 70.86 106.3 70.87-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path742" d="m425.2 797.24 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path743" d="m425.2 726.38 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path744" d="m425.2 673.23 70.866 88.583 70.866-88.583" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path745" d="m425.2 620.08 70.866 88.582 70.866-88.582" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path746" d="m442.91 566.93 53.15 106.3 53.15-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + </g> + <g id="g747" transform="matrix(.15164 .33524 -.33290 .16731 907.54 -153.47)"> + <path id="path748" d="m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="translate(177.17 -224.05)" stroke="#fff" stroke-width="8.25" fill="#006d00"/> + <path id="path749" d="m496.06 549.21v496.07" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path750" d="m425.2 868.11 70.86 106.3 70.87-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path751" d="m425.2 797.24 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path752" d="m425.2 726.38 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path753" d="m425.2 673.23 70.866 88.583 70.866-88.583" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path754" d="m425.2 620.08 70.866 88.582 70.866-88.582" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path755" d="m442.91 566.93 53.15 106.3 53.15-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + </g> + <g id="g756" transform="matrix(-.20952 .30246 -.31470 -.19945 1141.4 167.58)"> + <path id="path757" d="m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="translate(177.17 -224.05)" stroke="#fff" stroke-width="8.25" fill="#006d00"/> + <path id="path758" d="m496.06 549.21v496.07" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path759" d="m425.2 868.11 70.86 106.3 70.87-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path760" d="m425.2 797.24 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path761" d="m425.2 726.38 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path762" d="m425.2 673.23 70.866 88.583 70.866-88.583" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path763" d="m425.2 620.08 70.866 88.582 70.866-88.582" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path764" d="m442.91 566.93 53.15 106.3 53.15-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + </g> + <g id="g765" transform="matrix(-.20772 -.25838 .23618 -.23515 689.99 567.28)"> + <path id="path766" d="m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15 17.717-70.866z" fill-rule="evenodd" transform="translate(177.17 -224.05)" stroke="#fff" stroke-width="8.25" fill="#006d00"/> + <path id="path767" d="m496.06 549.21v496.07" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path768" d="m425.2 868.11 70.86 106.3 70.87-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path769" d="m425.2 797.24 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path770" d="m425.2 726.38 70.866 106.3 70.866-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path771" d="m425.2 673.23 70.866 88.583 70.866-88.583" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path772" d="m425.2 620.08 70.866 88.582 70.866-88.582" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path773" d="m442.91 566.93 53.15 106.3 53.15-106.3" transform="translate(177.17 -224.05)" stroke="#000" stroke-width="1pt" fill="none"/> + </g> + <g id="g791" transform="matrix(-.36218 -.099472 -.20981 .31773 1222.4 -24.229)"> + <path id="path775" d="m460.63 549.21 28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15 0.001-70.866z" fill-rule="evenodd" transform="translate(283.46 -124.02)" stroke="#fff" stroke-width="8.25" fill="#006d00"/> + <path id="path776" d="m467.21 584.65 28.855 124.02v336.62" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path777" d="m436.23 885.83 59.833 88.582 60.682-88.582" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path778" d="m434.53 814.96 61.53 88.582 60.682-88.582" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path779" d="m435.38 744.1 60.682 88.582 59.833-88.582" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path780" d="m432.84 690.94 63.228 70.866 53.149-70.866" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path781" d="m425.2 637.8 70.866 70.865 45.406-70.865" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path782" d="m436.12 593.24 53.15 86.886 35.327-95.478" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + </g> + <g id="g800" transform="matrix(.36088 .10411 .013211 .38052 452.76 -239.27)"> + <path id="path801" d="m460.63 549.21 28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15 0.001-70.866z" fill-rule="evenodd" transform="translate(283.46 -124.02)" stroke="#fff" stroke-width="8.25" fill="#006d00"/> + <path id="path802" d="m467.21 584.65 28.855 124.02v336.62" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path803" d="m436.23 885.83 59.833 88.582 60.682-88.582" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path804" d="m434.53 814.96 61.53 88.582 60.682-88.582" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path805" d="m435.38 744.1 60.682 88.582 59.833-88.582" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path806" d="m432.84 690.94 63.228 70.866 53.149-70.866" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path807" d="m425.2 637.8 70.866 70.865 45.406-70.865" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path808" d="m436.12 593.24 53.15 86.886 35.327-95.478" transform="translate(283.46 -124.02)" stroke="#000" stroke-width="1pt" fill="none"/> + </g> + <g id="g843" transform="matrix(.046132 -.36474 .32602 .064796 379.58 479.54)"> + <path id="path810" d="m354.33 531.5 88.583 88.583 17.716-53.149v88.582l35.433-35.433-17.716 88.583 35.432-35.434-17.716 88.584 35.433-35.433-17.716 106.3 35.433-35.433-35.433 106.3 35.433-35.433-17.717 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-53.15-82.294 35.434 11.429-35.433-106.3 35.433 35.433-53.15-106.3 35.433 35.433-53.15-88.584 53.15 35.434-70.866-88.583 53.149 35.433-70.866-70.866 70.866 35.433-53.149-88.583z" fill-rule="evenodd" transform="translate(442.91 -42.966)" stroke="#fff" stroke-width="8.25" fill="#006d00"/> + <path id="path811" d="m378.96 560.02 63.952 95.497 17.716 53.15 8.859 45.205 8.858 78.811 9.315 70.866 8.401 141.74" transform="translate(442.91 -42.966)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path812" d="m425.2 903.54 63.665 70.866 50.749-88.583" transform="translate(442.91 -42.966)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path813" d="m417.08 814.96 70.579 88.583 50.75-88.583" transform="translate(442.91 -42.966)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path814" d="m407.48 752.44 70.867 80.235 45.948-88.583" transform="translate(442.91 -42.966)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path815" d="m372.05 637.8 88.583 70.866 25.831-70.866" transform="translate(442.91 -42.966)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path816" d="m360.62 602.36 82.296 53.149 10.515-53.149" transform="translate(442.91 -42.966)" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path817" d="m389.76 690.94 81.095 70.866 33.946-70.866" transform="translate(442.91 -42.966)" stroke="#000" stroke-width="1pt" fill="none"/> + </g> + </g> + </g> + <g id="g1060" fill-rule="evenodd" transform="matrix(.13659 0 0 .12573 266.36 208.19)"> + <path id="path1054" d="m541.46 1173.3-1.7-229.13-61.1-106.94c-15.277-52.618-7.754-78.079 16.973-79.776 24.728-1.698 49.224 13.579 84.868 15.276 35.645 1.697 28.856-59.408 81.474-57.71 52.618 1.697 144.28 32.25 222.36 37.342 78.078 5.092 118.81-27.158 208.77-30.553 89.97-3.395 113.73 42.435 118.82 42.435s30.55-18.672 56.01-22.066c25.46-3.395 33.95 10.184 33.95 10.184s-1.7 57.71-13.58 91.657c-11.88 33.948-54.32 89.961-56.01 89.961-1.7 0-15.28 249.52-15.28 251.21 0 1.7-675.55-6.79-675.55-11.88z" stroke="#000" stroke-width="1pt" fill="#c00"/> + <g id="g1016" transform="matrix(-1 0 0 1 1771.7 354.33)" stroke="#000" stroke-width="1pt"> + <path id="path1017" d="m531.5 584.65s-67.982-52.097-69.813-177.17c-1.053-71.929 34.38-124.02 122.96-124.02 124.02 0 301.18 53.149 301.18 53.149v17.717s-141.73-53.15-301.18-53.15c-70.866 0-106.3 52.087-106.3 105.24 0 88.583 70.867 178.23 70.867 178.23v141.73h-17.717v-141.73z" fill="#fff100"/> + <path id="path1018" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(16.019 -1.6974)" fill="#fff"/> + <path id="path1019" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-1.6974 -42.223)" fill="#fff"/> + <path id="path1020" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-10.927 -83.491)" fill="#fff"/> + <path id="path1021" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-17.717 -127.62)" fill="#fff"/> + <path id="path1022" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-16.019 -175.47)" fill="#fff"/> + <path id="path1023" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(41.48 33.947)" fill="#fff"/> + <path id="path1024" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-.95440 -220.66)" fill="#fff"/> + <path id="path1025" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(31.295 -256.3)" fill="#fff"/> + <path id="path1026" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(75.427 -280.06)" fill="#fff"/> + <path id="path1027" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(119.56 -283.46)" fill="#fff"/> + <path id="path1028" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(167.08 -281.76)" fill="#fff"/> + <path id="path1029" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(214.61 -274.97)" fill="#fff"/> + <path id="path1030" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(262.14 -268.18)" fill="#fff"/> + <path id="path1031" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(313.06 -259.7)" fill="#fff"/> + <path id="path1032" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(357.19 -247.81)" fill="#fff"/> + </g> + <path id="path981" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(16.019 352.63)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path982" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-1.6978 312.11)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path983" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-10.928 270.84)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path984" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-17.717 226.71)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path985" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-16.02 178.86)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path987" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-.95486 133.67)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path988" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(31.295 98.029)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path989" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(75.426 74.266)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path990" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(119.56 70.871)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path991" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(167.08 72.568)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path992" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(214.61 79.358)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path993" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(262.14 86.147)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path994" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(313.06 94.634)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path995" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(357.19 106.52)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path986" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(41.479 388.28)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path979" d="m531.5 584.65s-67.982-52.097-69.813-177.17c-1.053-71.929 34.38-124.02 122.96-124.02 124.02 0 301.18 53.149 301.18 53.149v17.717s-141.73-53.15-301.18-53.15c-70.866 0-106.3 52.087-106.3 105.24 0 88.583 70.867 178.23 70.867 178.23v141.73h-17.717v-141.73z" transform="translate(-.00045776 354.33)" stroke="#000" stroke-width="1pt" fill="#fff100"/> + <path id="path960" d="m1240.2 531.5s15.35-35.433 70.86-35.433c37.79 0 70.87 35.433 70.87 70.866v70.866h35.43v-70.866c0-35.47 35.44-70.866 70.87-70.866 53.15 0 70.87 35.433 70.87 35.433s0-106.3-70.87-106.3c-53.15 0-70.87 35.433-70.87 35.433s17.72-53.15 17.72-106.3-35.43-88.583-35.43-88.583c0 6.79-35.44 35.433-35.44 88.583 0 53.149 17.72 106.3 17.72 106.3s-17.72-35.433-70.87-35.433c-70.86 0-70.86 106.3-70.86 106.3z" transform="matrix(.33333 0 0 .38095 242.13 802.31)" stroke="#000" stroke-width="2.9915" fill="#fff100"/> + <path id="path959" d="m1240.2 531.5s15.35-35.433 70.86-35.433c37.79 0 70.87 35.433 70.87 70.866v70.866h35.43v-70.866c0-35.47 35.44-70.866 70.87-70.866 53.15 0 70.87 35.433 70.87 35.433s0-106.3-70.87-106.3c-53.15 0-70.87 35.433-70.87 35.433s17.72-53.15 17.72-106.3-35.43-88.583-35.43-88.583c0 6.79-35.44 35.433-35.44 88.583 0 53.149 17.72 106.3 17.72 106.3s-17.72-35.433-70.87-35.433c-70.86 0-70.86 106.3-70.86 106.3z" transform="matrix(.33333 0 0 .38095 596.46 802.31)" stroke="#000" stroke-width="2.9915" fill="#fff100"/> + <path id="path945" d="m531.5 832.68v-159.45s35.433 53.15 88.583 53.15c43.489 0 88.582-70.866 88.582-70.866s41.515 53.149 88.583 53.149c42.021 0 88.516-68.572 88.516-68.572s43.207 68.572 88.649 68.572c45.441 0 88.581-53.149 88.581-53.149s46.29 70.866 106.3 70.866c53.15 0 70.87-53.15 70.87-53.15v159.45h-708.66z" transform="translate(-.00045776 354.33)" stroke="#000" stroke-width="1pt" fill="#fff100"/> + <path id="path952" d="m708.66 832.68v-124.02s106.3 35.433 106.3 124.02h-106.3z" transform="translate(-177.17 354.33)" stroke="#000" stroke-width="1pt" fill="#fff100"/> + <path id="path953" d="m708.66 832.68v-124.02s106.3 35.433 106.3 124.02h-106.3z" transform="matrix(-1 0 0 1 1948.8 354.33)" stroke="#000" stroke-width="1pt" fill="#fff100"/> + <path id="path949" d="m602.36 832.68c0-88.583 106.37-144.6 106.37-144.6s106.23 56.016 106.23 144.6h-212.6z" transform="translate(-.00045776 354.33)" stroke="#000" stroke-width="1pt" fill="#fff100"/> + <path id="path950" d="m602.36 832.68c0-88.583 106.37-144.6 106.37-144.6s106.23 56.016 106.23 144.6h-212.6z" transform="translate(354.33 354.33)" stroke="#000" stroke-width="1pt" fill="#fff100"/> + <path id="path951" d="m584.65 847.53c0-88.583 124.08-159.45 124.08-159.45s123.95 70.866 123.95 159.45h-248.03z" transform="translate(177.16 339.48)" stroke="#000" stroke-width="1pt" fill="#fff100"/> + <path id="path939" d="m1275.6 655.51c-35.43-17.716-166.02-35.433-376.28-35.433s-350.1 17.717-385.53 35.433c-35.434 17.717-35.434 53.149-0.001 70.866 35.433 17.716 175.28 35.433 385.54 35.433s340.84-17.716 376.28-35.433c35.43-17.716 35.43-53.149 0-70.866z" transform="matrix(.98876 0 0 1 -3.3852 531.5)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path941" d="m1294.7 703.35c0 58.461-317.39 58.461-381.59 58.461-69.363 0-381.59 15.842-381.59-58.461 0-58.461 314.81-58.46 381.59-58.461 66.778 0.001 381.59 11.883 381.59 58.461z" transform="matrix(.92857 0 0 .60610 37.964 831.57)" stroke-width="1pt" fill="#808080"/> + <path id="path954" d="m566.93 776.28c0 11.58-7.932 20.967-17.717 20.967-9.7846 0-17.717-9.3873-17.717-20.967s7.932-20.967 17.717-20.967c9.7846 0 17.717 9.3873 17.717 20.967z" transform="translate(-.00045776 354.33)" fill="#c00"/> + <path id="path955" d="m566.93 776.28c0 11.58-7.932 20.967-17.717 20.967-9.7846 0-17.717-9.3873-17.717-20.967s7.932-20.967 17.717-20.967c9.7846 0 17.717 9.3873 17.717 20.967z" transform="translate(673.23 354.33)" fill="#c00"/> + <path id="path956" d="m566.93 776.28c0 11.58-7.932 20.967-17.717 20.967-9.7846 0-17.717-9.3873-17.717-20.967s7.932-20.967 17.717-20.967c9.7846 0 17.717 9.3873 17.717 20.967z" transform="matrix(2 0 0 1 -212.6 343.12)"/> + <path id="path957" d="m566.93 776.28c0 11.58-7.932 20.967-17.717 20.967-9.7846 0-17.717-9.3873-17.717-20.967s7.932-20.967 17.717-20.967c9.7846 0 17.717 9.3873 17.717 20.967z" transform="matrix(1.5 0 0 1 240.83 343.12)" fill="#006300"/> + <path id="path958" d="m566.93 776.28c0 11.58-7.932 20.967-17.717 20.967-9.7846 0-17.717-9.3873-17.717-20.967s7.932-20.967 17.717-20.967c9.7846 0 17.717 9.3873 17.717 20.967z" transform="matrix(1.5 0 0 1 -124.02 343.12)" fill="#006300"/> + <path id="path973" d="m1257.9 496.06s35.44-53.15 70.87-53.15h35.43v35.433c0 53.15-53.15 70.867-53.15 70.867h141.74s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-141.74s53.15 17.717 53.15 70.867v35.433h-35.43c-35.43 0-70.87-53.15-70.87-53.15v141.73z" transform="matrix(.57141 0 0 .57143 96.199 713.72)" stroke="#000" stroke-width="2.1875" fill="#fff100"/> + <path id="path974" d="m1381.9 549.21 70.87 0.001s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-70.87v248.03z" transform="matrix(.28571 0 0 0.5 136.68 788.39)" stroke="#000" stroke-width="3.3072" fill="#fff100"/> + <path id="path975" d="m1381.9 549.21 70.87 0.001s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-70.87v248.03z" transform="matrix(-.28571 0 0 0.5 1635 788.39)" stroke="#000" stroke-width="3.3072" fill="#fff100"/> + <path id="path976" d="m903.54 602.36c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(-.00045776 354.33)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path977" d="m1257.9 496.06s35.44-53.15 70.87-53.15h35.43v35.433c0 53.15-53.15 70.867-53.15 70.867h141.74s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-141.74s53.15 17.717 53.15 70.867v35.433h-35.43c-35.43 0-70.87-53.15-70.87-53.15v141.73z" transform="matrix(.57141 0 0 .57143 96.202 341.68)" stroke="#000" stroke-width="2.1875" fill="#fff100"/> + <path id="path978" d="m903.54 602.36c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(1.6969 -14.745)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <rect id="rect996" height="53.15" width="70.866" stroke="#000" y="655.51" x="850.39" stroke-width="1pt" fill="#fff100"/> + <rect id="rect1033" height="202.53" width="70.866" stroke="#000" y="683.3" x="850.39" stroke-width="1pt" fill="#fff100"/> + <path id="path1050" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(425.2 301.18)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path1051" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(425.2 255.35)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path1052" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(425.2 212.6)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path1053" d="m478.35 549.21c0 9.7846-7.932 17.717-17.717 17.717-9.7846 0-17.717-7.932-17.717-17.717 0-9.7846 7.932-17.717 17.717-17.717 9.7846 0 17.717 7.932 17.717 17.717z" transform="translate(425.2 168.47)" stroke="#000" stroke-width="1pt" fill="#fff"/> + <path id="path1055" d="m614.51 1201.8c0 7.9544-16.121 14.403-36.006 14.403-19.886 0-36.006-6.4482-36.006-14.403 0-7.9543 16.121-14.403 36.006-14.403 19.886 0 36.006 6.4483 36.006 14.403z" transform="translate(308.95 -14.402)"/> + <path id="path1056" d="m614.51 1201.8c0 7.9544-16.121 14.403-36.006 14.403-19.886 0-36.006-6.4482-36.006-14.403 0-7.9543 16.121-14.403 36.006-14.403 19.886 0 36.006 6.4483 36.006 14.403z" transform="matrix(.98773 .24606 -.25044 .68556 943.77 247.45)"/> + <path id="path1057" d="m614.51 1201.8c0 7.9544-16.121 14.403-36.006 14.403-19.886 0-36.006-6.4482-36.006-14.403 0-7.9543 16.121-14.403 36.006-14.403 19.886 0 36.006 6.4483 36.006 14.403z" transform="matrix(1.019 .077339 -.099095 .88195 606.29 91.217)"/> + <path id="path1058" d="m614.51 1201.8c0 7.9544-16.121 14.403-36.006 14.403-19.886 0-36.006-6.4482-36.006-14.403 0-7.9543 16.121-14.403 36.006-14.403 19.886 0 36.006 6.4483 36.006 14.403z" transform="matrix(-.98773 .24606 .25044 .68556 819.99 247.45)"/> + <path id="path1059" d="m614.51 1201.8c0 7.9544-16.121 14.403-36.006 14.403-19.886 0-36.006-6.4482-36.006-14.403 0-7.9543 16.121-14.403 36.006-14.403 19.886 0 36.006 6.4483 36.006 14.403z" transform="matrix(-1.019 .077339 .099095 .88195 1164.3 87.822)"/> + </g> + </g> +</svg> diff --git a/s/flag/iq.svg b/s/flag/iq.svg new file mode 100755 index 0000000..74c9fbe --- /dev/null +++ b/s/flag/iq.svg @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4104"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath6904" clipPathUnits="userSpaceOnUse"> + <rect id="rect6906" fill-opacity="0.67" height="384" width="512" y="64" x="-8.5301e-7"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath6904)" fill-rule="evenodd" transform="matrix(1.25 0 0 1.25 .0000010663 -80)"> + <rect id="rect171" height="512" width="512" y="-2.9648e-9" x="-8.5301e-7" stroke-width="1pt" fill="#fff"/> + <rect id="rect140" height="170.67" width="512" y="341.33" x="-8.5301e-7"/> + <rect id="rect403" height="170.67" width="512" y="-2.9648e-9" x="-8.5301e-7" fill="#f30000"/> + <polygon id="polygon141" d="m 566.56441,405.84249 -35.32801,-25.5508 -35.14661,25.89555 13.38329,-41.49457 -35.48903,-25.42425 43.59935,-0.0942 13.21318,-41.6086 13.56258,41.43631 43.65523,-0.29128 -35.21721,25.70331 z" points="566.56 405.84 531.24 380.29 496.09 406.19 509.47 364.69 473.98 339.27 517.58 339.17 530.8 297.57 544.36 339 588.01 338.71 552.8 364.41" transform="matrix(.59780 0 0 .59780 148.9 41.417)" stroke-width="1pt" fill="#005623"/> + <path id="path155" d="m193.24 233.17c0.217 24.34 0 39.988 0 44.986-2.6082 3.0422-5.2158 6.302-7.1718 8.9096-0.8692-0.65161-1.0868-0.65161-1.0868-1.956 0-1.3038-0.217-33.25 0-44.986 3.912-1.956 6.5202-7.3894 8.2586-6.9542zm-8.9102-0.43461c1.956-3.2598 4.129-6.5202 5.6504-8.041 1.5214 0.86921 1.3038 3.2598 1.5214 3.9114-1.5214 2.1736-5.2158 5.6504-6.3026 6.7372-0.4346-0.6516 0-0.4346-0.86921-2.6076zm10.866-27.818c-13.257 8.6932-28.253 19.125-33.686 23.689-5.4334 4.5642-7.3888 7.3894-7.3888 15.213 0 7.824 0.217 16.734-0.4346 20.863-0.65221 4.129-2.6082 8.4756-7.3894 4.5636-4.7812-3.9114-8.258-7.8234-10.432-9.5618-2.173-1.739-6.085-4.1296-11.301 0.4346-5.2158 4.5636-29.556 30.208-34.12 33.033-4.5636 2.8252-5.4328 3.4774-8.6926 5.2158 6.7366 0.4346 14.343 0.86921 20.428-0.4346 8.041-5.868 17.386-19.125 20.429-22.385 3.0428-3.2598 6.085-10.214 12.822-2.6076 6.7372 7.6064 6.5196 7.8234 9.7794 10.214 3.2604 2.3906 7.3894 1.956 10.215-2.8252 2.8252-4.7812 3.0422-6.9542 4.129-14.778 1.0868-7.8234 1.7384-17.603 3.4774-21.95 1.7384-4.3466 5.2158-8.6932 11.083-12.171 5.868-3.4768 6.9548-3.6944 8.2586-4.346 2.6076-4.9988 8.9102-16.734 11.518-19.56 1.0868-1.3038 1.3044-1.956 1.3044-2.6082zm-58.895 79.107c-3.2598-2.173-4.3466-3.912-6.085-3.6944s-5.4328 5.2158-7.6064 6.5196c2.8252 2.3906 5.4334 4.5642 7.6064 4.1296 2.1736-0.43519 3.6944-5.2158 6.085-6.9548z" fill="#005623"/> + <path id="path161" d="m411.65 222.96c-4.5636 1.0868-6.9542 7.1718-10.866 11.301-0.43461 12.171-0.43461 49.985-0.43461 54.983 3.912-4.5636 6.3026-7.1718 9.1278-8.9102 0.6516-20.211 3.0422-48.463 2.173-57.374zm-21.516-0.217c-5.4328 3.4768-6.7366 6.9542-11.301 10.866-0.21699 14.561 0.43461 35.206-0.6516 38.032-1.0868 2.8252-3.4774 8.6932-9.3448 8.041-5.868-0.65161-7.6064-1.7384-7.6064-7.8234s1.3038-44.986 1.3038-51.289c-4.5642 2.1736-8.4756 8.9108-11.735 11.736 0 15.212 0.65161 34.554 0.21701 38.684-0.4346 4.129-2.173 10.866-9.5624 10.649-7.3888-0.217-11.301-3.912-11.301-8.258 0-4.3466-0.21701-32.816 0.21759-37.815-6.5196 4.5636-21.733 13.691-24.775 25.427-3.0422 11.735 1.739 15.213 6.085 13.039 4.3466-2.173 6.3026-4.129 8.6932-5.8674 0.65221 7.3888 0.86921 15.43 8.258 20.211 7.3894 4.7812 16.734 3.0428 20.212 0.4346 3.4768-2.6076 4.7812-4.3466 5.6504-5.6504 6.5196 4.9982 16.082 7.6064 22.385 2.173 6.302-5.4328 9.7795-10.866 10.431-16.951 0.6522-6.085 3.695-37.38 2.8252-45.638zm-68.24 29.556c-6.5196 3.0428-9.3448 7.6064-7.6064 10.432 1.7384 2.8252 5.2158-0.4346 7.6064-1.5214-0.43461-4.346 0-6.7366 0-8.9102zm41.944-46.073c-1.5214 4.9982-2.6076 4.129-4.5636 4.3466-1.956 0.21701-3.2598-1.739-4.7812-3.4774-1.5214 0.21701-1.7384 0.65221-2.8252 1.0868 3.4768 4.9982 6.085 7.1712 10.214 6.085 4.129-1.0868 4.3466-4.7812 4.3466-6.7372-0.6522-0.43461-0.86921-0.6522-2.3906-1.3038zm-3.6944-6.3026c-1.956 0.65219-2.3906 1.0868-3.0428 2.8252 1.0868 2.3906 2.6082 3.6944 4.1296 3.0428 1.5208-0.6522 1.7384-3.2598 0.86921-3.912-0.86921-0.6522-0.4346-1.0868-1.956-1.956z" fill="#005623"/> + <polygon id="polygon163" d="m 566.56441,405.84249 -35.32801,-25.5508 -35.14661,25.89555 13.38329,-41.49457 -35.48903,-25.42425 43.59935,-0.0942 13.21318,-41.6086 13.56258,41.43631 43.65523,-0.29128 -35.21721,25.70331 z" points="566.56 405.84 531.24 380.29 496.09 406.19 509.47 364.69 473.98 339.27 517.58 339.17 530.8 297.57 544.36 339 588.01 338.71 552.8 364.41" transform="matrix(.59780 0 0 .59780 -276.18 41.417)" stroke-width="1pt" fill="#005623"/> + <polygon id="polygon164" d="m 566.56441,405.84249 -35.32801,-25.5508 -35.14661,25.89555 13.38329,-41.49457 -35.48903,-25.42425 43.59935,-0.0942 13.21318,-41.6086 13.56258,41.43631 43.65523,-0.29128 -35.21721,25.70331 z" points="566.56 405.84 531.24 380.29 496.09 406.19 509.47 364.69 473.98 339.27 517.58 339.17 530.8 297.57 544.36 339 588.01 338.71 552.8 364.41" transform="matrix(.59780 0 0 .59780 -64.075 41.417)" stroke-width="1pt" fill="#005623"/> + </g> +</svg> diff --git a/s/flag/ir.svg b/s/flag/ir.svg new file mode 100755 index 0000000..c2b5d19 --- /dev/null +++ b/s/flag/ir.svg @@ -0,0 +1,522 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg734" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4587"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs736"> + <clipPath id="clipPath6805" clipPathUnits="userSpaceOnUse"> + <rect id="rect6807" fill-opacity="0.67" height="512" width="682.67" y=".0000078594" x="-85.311"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath6805)" fill-rule="evenodd" transform="matrix(.93750 0 0 .93750 79.98 -.0000073682)"> + <rect id="rect1052" height="512" width="896" y=".000014203" x="-191.96" stroke-width="1pt" fill="#fff"/> + <rect id="rect1927" height="168.16" width="896" y="343.84" x="-191.96" stroke-width="1pt" fill="#da0000"/> + <g id="g772" transform="matrix(1.5197 0 0 1.5197 -70.36 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect750" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect751" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect753" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect755" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect756" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect757" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect758" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect759" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect760" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect763" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect764" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect765" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect766" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect767" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect768" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect769" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect770" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect771" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g791" transform="matrix(1.5197 0 0 1.5197 -150.96 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect792" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect793" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect794" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect795" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect796" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect797" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect798" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect799" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect800" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect801" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect802" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect803" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect804" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect805" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect806" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect807" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect808" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect809" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g812" transform="matrix(1.5197 0 0 1.5197 9.5646 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect813" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect814" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect815" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect816" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect817" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect818" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect819" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect820" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect821" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect822" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect823" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect824" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect825" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect826" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect827" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect828" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect829" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect830" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g840" transform="matrix(1.5197 0 0 1.5197 573.95 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect841" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect842" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect843" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect844" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect845" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect846" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect847" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect848" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect849" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect850" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect851" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect852" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect853" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect854" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect855" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect856" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect857" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect858" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g859" transform="matrix(1.5197 0 0 1.5197 90.01 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect860" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect861" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect862" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect863" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect864" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect865" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect866" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect867" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect868" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect869" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect870" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect871" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect872" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect873" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect874" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect875" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect876" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect877" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g878" transform="matrix(1.5197 0 0 1.5197 170.75 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect879" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect880" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect881" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect882" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect883" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect884" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect885" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect886" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect887" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect888" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect889" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect890" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect891" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect892" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect893" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect894" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect895" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect896" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <rect id="rect1926" height="168.16" width="896" y=".0000069776" x="-191.96" stroke-width="1pt" fill="#239f40"/> + <g id="g897" transform="matrix(1.5197 0 0 1.5197 251.96 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect898" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect899" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect900" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect901" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect902" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect903" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect904" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect905" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect906" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect907" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect908" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect909" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect910" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect911" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect912" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect913" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect914" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect915" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g916" transform="matrix(1.5197 0 0 1.5197 332.69 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect917" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect918" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect919" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect920" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect921" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect922" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect923" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect924" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect925" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect926" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect927" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect928" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect929" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect930" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect931" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect932" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect933" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect934" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g935" transform="matrix(1.5197 0 0 1.5197 413.43 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect936" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect937" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect938" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect939" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect940" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect941" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect942" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect943" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect944" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect945" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect946" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect947" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect948" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect949" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect950" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect951" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect952" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect953" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g954" transform="matrix(1.5197 0 0 1.5197 494.64 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect955" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect956" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect957" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect958" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect959" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect960" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect961" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect962" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect963" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect964" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect965" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect966" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect967" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect968" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect969" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect970" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect971" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect972" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g992" transform="matrix(1.5197 0 0 1.5197 -232.52 36.806)" stroke-width="1pt" fill="#fff"> + <rect id="rect993" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect994" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect995" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect996" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect997" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect998" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect999" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1000" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1001" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1002" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1003" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1004" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1005" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1006" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1007" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1008" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1009" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1010" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1225" transform="matrix(1.5197 0 0 1.5197 -70.36 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1226" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1227" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1228" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1229" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1230" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1231" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1232" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1233" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1234" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1235" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1236" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1237" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1238" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1239" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1240" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1241" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1242" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1243" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1244" transform="matrix(1.5197 0 0 1.5197 -150.96 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1245" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1246" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1247" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1248" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1249" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1250" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1251" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1252" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1253" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1254" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1255" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1256" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1257" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1258" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1259" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1260" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1261" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1262" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1263" transform="matrix(1.5197 0 0 1.5197 9.5646 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1264" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1265" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1266" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1267" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1268" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1269" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1270" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1271" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1272" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1273" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1274" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1275" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1276" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1277" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1278" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1279" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1280" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1281" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1282" transform="matrix(1.5197 0 0 1.5197 573.95 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1283" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1284" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1285" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1286" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1287" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1288" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1289" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1290" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1291" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1292" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1293" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1294" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1295" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1296" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1297" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1298" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1299" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1300" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1301" transform="matrix(1.5197 0 0 1.5197 90.01 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1302" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1303" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1304" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1305" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1306" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1307" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1308" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1309" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1310" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1311" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1312" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1313" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1314" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1315" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1316" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1317" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1318" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1319" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1320" transform="matrix(1.5197 0 0 1.5197 170.75 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1321" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1322" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1323" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1324" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1325" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1326" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1327" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1328" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1329" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1330" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1331" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1332" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1333" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1334" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1335" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1336" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1337" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1338" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1339" transform="matrix(1.5197 0 0 1.5197 251.96 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1340" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1341" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1342" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1343" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1344" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1345" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1346" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1347" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1348" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1349" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1350" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1351" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1352" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1353" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1354" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1355" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1356" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1357" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1358" transform="matrix(1.5197 0 0 1.5197 332.69 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1359" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1360" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1361" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1362" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1363" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1364" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1365" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1366" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1367" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1368" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1369" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1370" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1371" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1372" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1373" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1374" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1375" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1376" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1377" transform="matrix(1.5197 0 0 1.5197 413.43 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1378" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1379" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1380" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1381" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1382" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1383" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1384" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1385" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1386" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1387" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1388" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1389" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1390" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1391" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1392" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1393" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1394" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1395" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1396" transform="matrix(1.5197 0 0 1.5197 494.64 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1397" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1398" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1399" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1400" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1401" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1402" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1403" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1404" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1405" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1406" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1407" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1408" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1409" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1410" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1411" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1412" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1413" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1414" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1415" transform="matrix(1.5197 0 0 1.5197 -232.52 -170.71)" stroke-width="1pt" fill="#fff"> + <rect id="rect1416" height="2.2217" width="32.289" y="206.72" x="32.067"/> + <rect id="rect1417" height="2.1576" width="2.2217" y="217.83" x="36.881"/> + <rect id="rect1418" transform="rotate(90)" height="6.453" width="2.2217" y="-64.44" x="217.76"/> + <rect id="rect1419" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1420" transform="rotate(90)" height="12.229" width="2.2217" y="-80.765" x="217.76"/> + <rect id="rect1421" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1422" transform="translate(11.035 -.000015259)" height="13.266" width="2.2217" y="206.72" x="67.911"/> + <rect id="rect1423" height="13.266" width="2.2217" y="206.72" x="73.391"/> + <rect id="rect1424" transform="matrix(0 1 -1 0 .0092220 -.000015259)" height="11.785" width="2.2217" y="-43.903" x="212"/> + <rect id="rect1425" transform="rotate(90)" height="11.785" width="2.2217" y="-69.772" x="212"/> + <rect id="rect1426" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1427" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1428" height="7.4157" width="2.2217" y="212.57" x="57.987"/> + <rect id="rect1429" transform="translate(-.17213 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="32.299"/> + <rect id="rect1430" height="7.4157" width="2.2217" y="212.57" x="51.082"/> + <rect id="rect1431" transform="translate(0 -.000015259)" height="7.4157" width="2.2217" y="212.57" x="41.691"/> + <rect id="rect1432" transform="rotate(90)" height="9.9621" width="2.2217" y="-52.641" x="217.76"/> + <rect id="rect1433" transform="rotate(90)" height="6.3161" width="2.2217" y="-53.304" x="212"/> + </g> + <g id="g1668" transform="matrix(1.0321 0 0 1.0321 -191.96 176.9)" stroke-width="1pt" fill="#d90000"> + <rect id="rect1224" height="10.178" width="5.8601" y="157.55" x="119.3"/> + <rect id="rect1645" height="10.178" width="5.8601" y="157.55" x="274.84"/> + <rect id="rect1646" height="10.178" width="5.8601" y="157.55" x="-.042406"/> + <rect id="rect1647" transform="translate(39.591 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1648" transform="translate(117.97 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1649" transform="translate(156.75 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1650" transform="translate(196.34 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1651" height="10.178" width="5.8601" y="157.55" x="313.62"/> + <rect id="rect1652" height="10.178" width="5.8601" y="157.55" x="510.36"/> + <rect id="rect1653" transform="translate(313.9 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1654" transform="translate(352.69 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1655" transform="translate(391.87 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1656" transform="translate(431.06 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1657" height="10.178" width="5.8601" y="157.55" x="783.46"/> + <rect id="rect1658" transform="translate(509.03 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1659" transform="translate(548.62 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1660" transform="translate(588.62 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1661" transform="translate(626.19 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1662" transform="translate(666.18 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1663" transform="translate(705.37 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1664" height="10.178" width="5.8601" y="157.55" x="860.63"/> + <rect id="rect1665" transform="translate(783.75 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1667" height="10.178" width="5.8601" y="157.55" x="39.308"/> + </g> + <g id="g1692" transform="matrix(1.0321 0 0 1.0321 -191.96 .0000025820)" stroke-width="1pt" fill="#239e3f"> + <rect id="rect1693" height="10.178" width="5.8601" y="157.55" x="119.3"/> + <rect id="rect1694" height="10.178" width="5.8601" y="157.55" x="274.84"/> + <rect id="rect1695" height="10.178" width="5.8601" y="157.55" x="-.042406"/> + <rect id="rect1696" transform="translate(39.591 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1697" transform="translate(117.97 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1698" transform="translate(156.75 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1699" transform="translate(196.34 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1700" height="10.178" width="5.8601" y="157.55" x="313.62"/> + <rect id="rect1701" height="10.178" width="5.8601" y="157.55" x="510.36"/> + <rect id="rect1702" transform="translate(313.9 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1703" transform="translate(352.69 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1704" transform="translate(391.87 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1705" transform="translate(431.06 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1706" height="10.178" width="5.8601" y="157.55" x="783.46"/> + <rect id="rect1707" transform="translate(509.03 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1708" transform="translate(548.62 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1709" transform="translate(588.62 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1710" transform="translate(626.19 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1711" transform="translate(666.18 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1712" transform="translate(705.37 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1713" height="10.178" width="5.8601" y="157.55" x="860.63"/> + <rect id="rect1714" transform="translate(783.75 -.000015259)" height="10.178" width="5.8601" y="157.55" x="39.308"/> + <rect id="rect1715" height="10.178" width="5.8601" y="157.55" x="39.308"/> + </g> + <g id="g1043" fill="#da0000" transform="matrix(1.0321 0 0 1.0321 -179.65 -532.01)"> + <path id="path1928" d="m445.16 706.81c8.19 10.039 33.438 65.548-15.241 101.91-22.884 17.223-8.714 18.093-8.037 20.988 36.785-19.539 48.799-46.013 48.52-69.727-0.28-23.715-12.853-44.669-25.242-53.167z"/> + <path id="path1929" d="m450.03 704.23c18.166 9.301 57.701 56.079 15.149 108.85 26.439-5.868 60.053-83.729-15.149-108.85z"/> + <path id="path1930" d="m394.24 704.23c-18.166 9.301-57.701 56.079-15.149 108.85-26.439-5.868-60.053-83.729 15.149-108.85z"/> + <path id="path1931" d="m399.04 706.81c-8.19 10.039-33.438 65.548 15.241 101.91 22.884 17.223 8.714 18.093 8.037 20.988-36.785-19.539-48.799-46.013-48.52-69.727 0.28-23.715 12.853-44.669 25.242-53.167z"/> + <path id="path1932" d="m468.8 824.65c-14.398 0.228-32.549-1.984-46.01-8.979 2.217 4.311 4.059 7.026 6.276 11.337 12.838 1.184 30.554 2.649 39.734-2.358z"/> + <path id="path1933" d="m376.78 824.65c14.398 0.228 32.549-1.984 46.01-8.979-2.217 4.311-4.059 7.026-6.276 11.337-12.838 1.184-30.554 2.649-39.734-2.358z"/> + <path id="path1934" d="m403.19 690.25c2.917 7.753 10.57 8.88 18.762 4.315 5.97 3.582 15.202 3.809 18.386-3.94 2.421 19.169-17.736 14.634-18.487 10.882-7.504 7.254-21.475 3.064-18.661-11.257z"/> + <path id="path1042" d="m422.49 836.72 7.57-8.652 1.082-116.44-9.012-7.931-9.012 7.57 1.802 117.16 7.57 8.291z"/> + </g> + </g> +</svg> diff --git a/s/flag/is.svg b/s/flag/is.svg new file mode 100755 index 0000000..ceef401 --- /dev/null +++ b/s/flag/is.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="islenskifaninn" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4595"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath3901" clipPathUnits="userSpaceOnUse"> + <rect id="rect3903" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" stroke-width="0pt" clip-path="url(#clipPath3901)"> + <rect id="blarfeldur" height="480" width="666.67" y="0" x="0" fill="#003897"/> + <path id="hviturkross" fill-cmyk="(0 0 0 0)" d="m0 186.67h186.67v-186.67h106.67v186.67h373.33v106.67h-373.33v186.67h-106.67v-186.67h-186.67v-106.67z" fill="#fff"/> + <path id="raudurkross" d="m0 213.33h213.33v-213.33h53.333v213.33h400v53.333h-400v213.33h-53.333v-213.33h-213.33v-53.333z" fill="#d72828"/> + </g> +</svg> diff --git a/s/flag/it.svg b/s/flag/it.svg new file mode 100755 index 0000000..79c2d9b --- /dev/null +++ b/s/flag/it.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4604"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="scale(.60207 .67733)"> + <rect id="rect171" height="708.66" width="1063" y="0" x="0" fill="#fff"/> + <rect id="rect403" height="708.66" width="354.33" y="0" x="0" fill="#005700"/> + <rect id="rect135" height="708.66" width="354.33" y="0" x="708.66" fill="#fc0000"/> + </g> +</svg> diff --git a/s/flag/je.svg b/s/flag/je.svg new file mode 100755 index 0000000..0383e6b --- /dev/null +++ b/s/flag/je.svg @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0,0 30,18" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata83"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs81"> + <clipPath id="clipPath3612" clipPathUnits="userSpaceOnUse"> + <rect id="rect3614" fill-opacity="0.67" height="30" width="40" y="-6" x="-5.2539"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3612)" transform="matrix(0.75 0 0 0.75 3.9404 2.25)"> + <rect id="rect4" height="30" width="50" y="-6" x="-10.254" fill="#fff"/> + <path id="path6" d="m-10.254-6v1.9271l21.771 13.073-21.771 13.073v1.9271h3.2813l21.719-13.073 21.719 13.073h3.2812v-1.9271l-21.771-13.073 21.771-13.073v-1.9271h-3.2812l-21.719 13.073-21.719-13.073h-3.2813z" fill-rule="evenodd" fill="#df112d"/> + <g id="Jersey badge" transform="matrix(.20361 0 0 .20361 -9.6489 -6.0385)"> + <path id="shield" d="m132.66 22.233c3.156 12.778 1.425 28.56-12.829 37.316-14.255-8.7563-15.986-24.538-12.829-37.316 3.36-3.0546 18.632-4.9382 25.658 0z" stroke="#000" stroke-width=".125" fill="#e8112d"/> + <path id="crown" d="m119.81 19.667c5.226 0 10.093 1.3832 12.962 3.1764 0.563-4.4059 2.561-8.8117 4.918-12.142-2.459-0.0513-3.561 1.2551-3.586 2.6127-0.615-1.7418-3.023-1.6394-3.766-0.6916 2.69 1.8187 0.615 5.0462-1.818 4.3803-1.143-0.3127-1.747-1.1097-1.961-2.2668 0.263-0.0176 0.524-0.1139 0.744-0.2925 0.567-0.46 0.654-1.2927 0.194-1.8598s-1.292-0.654-1.86-0.194c-0.567 0.46-0.654 1.2927-0.193 1.8598 0.15 0.1863 0.343 0.3185 0.551 0.3988-0.769 1.2552-2.148 1.632-3.136 1.3554-1.281-0.3586-1.819-1.5113-1.819-2.5359 0-2.664 2.561-3.0738 3.33-2.6127-0.051-1.7931-2.869-3.2276-3.74-1.7419 0.973-1.7418 0.922-4.2009-0.82-5.8403-1.741 1.6394-1.793 4.0985-0.819 5.8403-0.871-1.4857-3.689-0.05118-3.74 1.7419 0.768-0.4611 3.33-0.0513 3.33 2.6127 0 1.0246-0.538 2.1773-1.819 2.5359-0.988 0.2766-2.367-0.1002-3.137-1.3554 0.209-0.0803 0.401-0.2125 0.552-0.3988 0.46-0.5671 0.373-1.3998-0.194-1.8598s-1.4-0.3731-1.86 0.194-0.373 1.3998 0.194 1.8598c0.221 0.1786 0.482 0.2749 0.745 0.2925-0.214 1.1571-0.819 1.9541-1.961 2.2668-2.433 0.6659-4.508-2.5616-1.819-4.3803-0.742-0.9478-3.15-1.0502-3.765 0.6916-0.026-1.3576-1.127-2.664-3.586-2.6127 2.356 3.33 4.354 7.7358 4.918 12.142 2.869-1.7932 7.736-3.1764 12.961-3.1764z" stroke="#000" stroke-width=".125" fill="#f9dd16"/> + <g id="leopard"> + <g id="g12" stroke-width=".125" stroke="#000" fill="#f9dd16"> + <path id="body" d="m130.65 32.2c-0.315 0.0751-0.315 0.481-0.48 0.481 0.819-0.0226 1.217-0.248 1.465-0.6614-0.18 0.1653-0.023 0.481-0.083 0.5561 0.601-0.2104 0.887-0.7214 0.677-1.0671 0.135 0.1953 0.526 0.3006 0.646 0.3156-0.421-0.3307-0.12-1.0822-0.797-1.4729 0.226-0.0151 0.662 0.2404 0.782 0.5411-0.105-0.6764-0.211-1.1123-0.767-1.488 0.06 0.0676 0.376 0.1277 0.511 0-0.36-0.2255-0.466-0.6012-0.435-0.8417 0.042-0.3365-0.181-0.4059-0.602-0.3006-0.379 0.0947-1.247 0.1503-1.758 0.1503-1.052 0-1.969 0-2.841-0.6012 1.308 0.541 2.976-0.6012 2.976-1.5481 0-1.0522-1.293-1.9089-3.908-1.3377-2.615 0.5711-5.801 0.3306-5.801-0.5411 0-0.8718 2.284-0.992 3.457-0.8116 1.172 0.1803 2.013 0.3006 4.208-0.481-0.541 0.2104-2.285 0.2705-3.667-0.1202-1.383-0.3908-4.78-0.3908-4.81 1.4429-0.03 1.8336 3.617 1.6666 6.764 1.2024 1.833-0.2706 2.795-0.0902 2.795 0.511 0 0.5711-1.683 0.8116-2.976 0.6613-1.292-0.1502-2.615-0.1202-4.148 0.3307-1.28 0.3764-2.164 0-3.577 0.2405-0.685 0.1164-2.345 0-3.164-1.3528-0.504 0.3608-2.022 1.116-2.277 1.8525-0.361 0.6763-0.12 1.349 0.36 2.0103 0.606 0.8323-0.3 0.7064-0.946 0.7365-0.886 0.0412-2.072-0.0941-2.691-0.7966-0.548-0.6225-1.278-1.1214-1.861-0.66-0.3 0.2375-0.012 0.5501 0.225 0.4626 0.235-0.0865 0.513 0.0875 0.764 0.1974-0.401-0.1724-0.842-0.0386-1.014 0.1151-0.237 0.2125 0.051 0.6184 0.338 0.475 0.225-0.1125 0.687-0.1875 0.987 0.0875-0.325-0.0625-0.663-0.0493-0.825 0.125s-0.037 0.4281 0.313 0.4125c0.562-0.025 0.706 0.3688 1.269 0.2879-0.346 0.0451-0.542 0.2254-0.632 0.3607 0.526-0.2405 1.107 0.4078 1.789 0.2555-0.266 0.1095-0.695 0.371-0.691 0.5712 0.405-0.466 3.126 0.3607 3.186-0.6613 0.075 0.2104 0.06 0.526-0.15 0.7966 0.348-0.2105 1.473-0.2856 1.818-1.0973 0.03 0.2405-0.015 0.5562-0.225 0.6313 0.361 0.118 0.836-0.1508 1.322-0.8717 0.193-0.286 0.239-0.4761 0.206-0.6911 0.482 0.0182 0.831-0.1028 1.207-0.4212 0.391-0.3306 0.812 0.2706 1.473-0.1503 0.662-0.4208 1.233-0.0601 1.593-0.2705 0.361-0.2104 0.857 0.0751 1.248-0.1653 0.391-0.2405 0.997 0.1177 1.644-0.3933 1.018 0.3729 2.206 1.0639 5.12 0.5285 1.67-0.3069 2.194 0.2555 2.194 1.0221 0 0.526-0.308 0.5718-0.541 0.5862-0.929 0.0571-1.328-0.3478-1.695-0.218-0.246 0.0876-0.396 0.4876-0.04 0.6251-0.294 0.15-0.256 0.4313-0.106 0.5344s0.537 0.0094 0.8-0.1125c-0.338 0.1531-0.688 0.4281-0.488 0.7156 0.121 0.1745 0.427 0.3224 0.713-0.0499 0.287-0.3751 0.812-0.6876 1.146-0.638z"/> + <path id="left ear" d="m112.14 24.264c-0.842-0.3456-1.126-0.3551-0.932 0.3307 0.083 0.2931 0.285 0.7064 0.488 0.8943 0.008-0.2855 0.113-1.0746 0.444-1.225z"/> + <path id="right ear" d="m114.77 24.264c0.842-0.3456 1.126-0.3551 0.932 0.3307-0.083 0.2931-0.286 0.7064-0.489 0.8943-0.007-0.2855-0.112-1.0746-0.443-1.225z"/> + <path id="head" d="m113.46 23.802c1.593 0 1.792 0.7477 1.784 1.6795-0.007 1.007-0.548 0.6613-0.856 1.9539-0.12 0.5054-0.523 0.5336-0.928 0.5336-0.406 0-0.808-0.0282-0.929-0.5336-0.307-1.2926-0.849-0.9469-0.856-1.9539-0.008-0.9318 0.191-1.6795 1.785-1.6795z"/> + <path id="arm" d="m109.36 27.495c-0.406-0.2405-0.668-0.0741-0.833-0.0289 0.526 0.1352 0.547 0.8105 1.75 1.1261-0.271-0.0751-0.421 0.0752-0.677-0.0601 0.496 0.3908 1.052 0.8433 2.225 0.8567 0.654 0.0075 0.202 0.3457-0.226 0.1503 0.444 0.4584 1.323 0.0827 1.879 0.9169 0.105-0.6463-1.037-1.6684-0.511-2.4048-1.622-0.0691-1.755-0.9681-2.69-1.6834-0.761-0.5816-0.829-1.1728-1.165-2.2797-0.153-0.5012-0.74-0.8137-1.065-0.695-0.284 0.1038-0.388 0.3501-0.144 0.5344 0.244 0.1844 0.556 0.2094 0.623 0.6766-0.317-0.3797-0.792-0.5172-1.02-0.2797-0.139 0.1446-0.083 0.482 0.216 0.5126 0.487 0.05 0.137 0.525 0.691 0.9897-0.491-0.5522-0.916-0.6022-1.179-0.3022-0.157 0.1797 0 0.5 0.338 0.4657 0.489-0.0498 1.056 1.1907 1.788 1.5048z"/> + <path id="leg" d="m122.43 32.139c-0.256 0.0451-0.18 0.466-0.526 0.4961 0.827 0 1.247-0.1955 1.638-0.5111-0.18 0.1052-0.255 0.3758-0.27 0.526 0.436-0.3757 1.473-0.4057 2.014-0.3005s0.631-0.1503 0.826-0.496c0.196-0.3457-0.075-0.5411-0.345-0.8116-0.271-0.2706-0.331-0.6463-0.271-1.2776-1.443-1.9238-4.028-0.992-4.058-0.1503 0.932 1.0821 1.052 0.9619 1.834 1.1122 0.781 0.1503 1.26 0.1499 0.736 0.5862-0.18 0.1503-0.932 0.0797-1.518 0.1052-1.311 0.057-1.911-0.9056-2.298-0.4056-0.319 0.4112 0.01 0.5928 0.66 0.5709-0.45 0.0032-1.047-0.0211-0.945 0.398 0.172 0.7062 0.847-0.1313 1.11 0.1593-0.225-0.0531-0.575 0.0844-0.588 0.2969-0.012 0.2126 0.5 0.4875 1.063 0.0406 0.308-0.245 0.701-0.3367 0.938-0.3387z"/> + </g> + <g id="g20" stroke-width=".125" stroke="#000" fill="none"> + <path id="path22" d="m123.55 29.206c-0.469-0.1716-0.899-0.2765-1.449-0.1629"/> + <path id="path24" d="m116.48 28.983c-0.386 0.8294-0.152 1.2388-0.095 1.6236"/> + <path id="path26" d="m112.37 25.052c0.265 0.1325 0.414-0.242 0.803 0.1556-0.107-0.116-0.24 0.3083-0.538 0.0267"/> + <path id="path28" d="m114.53 25.052c-0.265 0.1325-0.414-0.242-0.803 0.1556 0.107-0.116 0.24 0.3083 0.538 0.0267"/> + <path id="path30" d="m113.73 25.207c-0.091 0.0751-0.1-0.0599-0.031 0.2948 0.128 0.6513 0.279 0.956-0.248 0.956-0.538 0-0.375-0.3047-0.248-0.956 0.07-0.3547 0.061-0.2197-0.03-0.2948"/> + </g> + <path id="path32" d="m113.46 27.706c0.428 0 0.676-0.0075 0.609-0.6087-0.028-0.2413 0.293-0.3374 0.18-0.729 0.12 0.4809-0.789 0.435-0.789 0.217 0 0.218-0.909 0.2639-0.789-0.217-0.113 0.3916 0.207 0.4877 0.18 0.729-0.067 0.6012 0.181 0.6087 0.609 0.6087z" stroke="#000" stroke-width=".0625" fill="#ff0016"/> + <g id="g34" stroke-width=".0625" stroke="#000"> + <path id="path36" d="m113.07 26.489-1.028-0.2868"/> + <path id="path38" d="m113.07 26.543-1.148-0.0096"/> + <path id="path40" d="m113.08 26.602-0.979 0.2623"/> + <path id="path42" d="m113.84 26.489 1.028-0.2868"/> + <path id="path44" d="m113.84 26.543 1.148-0.0096"/> + <path id="path46" d="m113.83 26.602 0.979 0.2623"/> + </g> + <g id="claws and tongue" stroke-width=".013" stroke="#000" fill="#0051ba"> + <path id="path49" d="m108.13 23.414c-0.299-0.3723-1.048-0.0579-1.063 0.404 0.253-0.2994 0.666 0.1319 0.891 0.0412 0.156-0.0628 0.293-0.2937 0.172-0.4452z"/> + <path id="path51" d="m107.75 24.295c-0.299-0.3723-1.047-0.0579-1.062 0.404 0.252-0.2994 0.665 0.1319 0.891 0.0412 0.156-0.0627 0.293-0.2937 0.171-0.4452z"/> + <path id="path53" d="m107.55 25.479c-0.339-0.3363-1.047 0.0603-1.01 0.5209 0.218-0.3259 0.676 0.0563 0.89-0.0593 0.148-0.0799 0.258-0.3247 0.12-0.4616z"/> + <path id="path55" d="m107.91 29.148c-0.376-0.295-1.033 0.1803-0.944 0.6337 0.179-0.3487 0.678-0.0219 0.877-0.1612 0.138-0.0965 0.22-0.3523 0.067-0.4725z"/> + <path id="path57" d="m107.89 29.951c-0.448-0.1652-0.928 0.4894-0.703 0.8933 0.062-0.3868 0.638-0.2294 0.785-0.4234 0.102-0.1342 0.1-0.4026-0.082-0.4699z"/> + <path id="path59" d="m108.46 30.551c-0.448-0.1653-0.928 0.4893-0.704 0.8933 0.063-0.3869 0.639-0.2295 0.786-0.4235 0.102-0.1342 0.1-0.4026-0.082-0.4698z"/> + <path id="path61" d="m120.2 31.714c-0.448-0.1652-0.928 0.4894-0.703 0.8933 0.063-0.3868 0.638-0.2294 0.785-0.4234 0.102-0.1342 0.1-0.4026-0.082-0.4699z"/> + <path id="path63" d="m120.81 32.258c-0.464-0.1132-0.866 0.5918-0.597 0.9675 0.018-0.3915 0.608-0.3006 0.732-0.5101 0.086-0.1449 0.054-0.4114-0.135-0.4574z"/> + <path id="path65" d="m120.38 30.942c-0.414-0.239-0.998 0.3245-0.845 0.7607 0.128-0.3705 0.668-0.1175 0.846-0.2836 0.123-0.115 0.167-0.3798-0.001-0.4771z"/> + <path id="path67" d="m128.73 31.883c-0.464-0.1131-0.866 0.5918-0.597 0.9676 0.019-0.3915 0.609-0.3006 0.732-0.5101 0.086-0.1449 0.054-0.4114-0.135-0.4575z"/> + <path id="path69" d="m128.75 31.146c-0.421-0.2246-0.985 0.3587-0.818 0.7894 0.115-0.3747 0.664-0.1404 0.836-0.3126 0.119-0.1192 0.154-0.3853-0.018-0.4768z"/> + <path id="path71" d="m129.07 32.542c-0.468-0.0928-0.839 0.6291-0.554 0.9927 0.002-0.3919 0.595-0.327 0.709-0.5416 0.08-0.1486 0.036-0.4134-0.155-0.4511z"/> + <path id="path73" d="m113.49 27.345c0.294 0 0.413 0.0858 0.413 0.6169 0 1.1252-0.013 1.609-0.375 1.609-0.363 0-0.338-0.4597-0.338-1.2858 0-0.431 0-0.6465-0.087-0.6106 0-0.2812 0.125-0.3295 0.387-0.3295z"/> + </g> + </g> + <use id="use75" xlink:href="#leopard" transform="matrix(.9 0 0 .9 11.6 13.7)" height="18" width="30" y="0" x="0"/> + <use id="use77" xlink:href="#leopard" transform="matrix(.67 0 0 .75 39.2 27.5)" height="18" width="30" y="0" x="0"/> + </g> + </g> +</svg> diff --git a/s/flag/jm.svg b/s/flag/jm.svg new file mode 100755 index 0000000..634677c --- /dev/null +++ b/s/flag/jm.svg @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>New Zealand, Australia, United Kingdom, United States, +Bosnia and Herzegovina, Azerbaijan, Armenia, Bahamas, Belgium, Benin, +Bulgaria, Estonia, Finland, Gabon, Gambia, Germany, Greece, Greenland, +Guinea, Honduras, Israel, Jamaica, Jordan, and Romania Flags</dc:title> + <dc:rights><Agent> + <dc:title>Daniel McRae</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> +</rdf:RDF> +--> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4617"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <g id="g3260" fill-rule="evenodd" transform="scale(1.25 .9375)"> + <path id="path551" d="m0 0 256 256-256 256z"/> + <path id="path552" d="m512 0-256 256 256 256z"/> + <path id="path556" d="m0 0 256 256 256-256z" fill="#090"/> + <path id="path557" d="m0 512 256-256 256 256z" fill="#090"/> + <path id="path558" d="m512 0h-47.7l-464.3 464.3v47.7h47.703l464.3-464.3z" fill="#fc0"/> + <path id="path566" d="m0 0v47.703l464.3 464.3h47.703v-47.703l-464.3-464.3z" fill="#fc0"/> + </g> + </g> +</svg> diff --git a/s/flag/jo.svg b/s/flag/jo.svg new file mode 100755 index 0000000..9a52086 --- /dev/null +++ b/s/flag/jo.svg @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>New Zealand, Australia, United Kingdom, United States, +Bosnia and Herzegovina, Azerbaijan, Armenia, Bahamas, Belgium, Benin, +Bulgaria, Estonia, Finland, Gabon, Gambia, Germany, Greece, Greenland, +Guinea, Honduras, Israel, Jamaica, Jordan, and Romania Flags</dc:title> + <dc:rights><Agent> + <dc:title>Daniel McRae</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> +</rdf:RDF> +--> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4629"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath3191" clipPathUnits="userSpaceOnUse"> + <rect id="rect3193" fill-opacity="0.67" height="512" width="682.67" y=".000016181" x="-117.82"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3191)" transform="matrix(.93750 0 0 .93750 110.46 -.000015169)"> + <g id="g558" fill-rule="evenodd" stroke-width="1pt" transform="matrix(24.381 0 0 24.381 -117.82 .00001745)"> + <rect id="rect551" height="7" width="42" y="0" x="0"/> + <rect id="rect552" height="7" width="42" y="7" x="0" fill="#fff"/> + <rect id="rect553" height="7" width="42" y="14" x="0" fill="#090"/> + <path id="path554" d="m0 21 21-10.5-21-10.5v21z" fill="#f00"/> + <polygon id="polygon557" points="5.8385 11.852 6.0708 10.834 5.027 10.834 5.9674 10.381 5.3166 9.5648 6.2571 10.018 6.4894 9 6.4894 9 6.7216 10.018 7.6621 9.5648 7.0113 10.381 7.9518 10.834 6.9079 10.834 7.1402 11.852 6.4894 11.035" fill="#fff"/> + </g> + </g> +</svg> diff --git a/s/flag/jp.svg b/s/flag/jp.svg new file mode 100755 index 0000000..cf9e736 --- /dev/null +++ b/s/flag/jp.svg @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4637"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath3121" clipPathUnits="userSpaceOnUse"> + <rect id="rect3123" fill-opacity="0.67" height="480" width="640" y="32" x="-88.001"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath3121)" transform="translate(88.001 -32)" stroke-width="1pt"> + <rect id="rect149" height="480" width="720" y="32" x="-128" fill="#fff"/> + <ellipse id="path194" d="m 718.01048,344.04666 c 0,107.65611 -87.27252,194.92862 -194.92863,194.92862 -107.65611,0 -194.92864,-87.27251 -194.92864,-194.92862 0,-107.6561 87.27253,-194.92862 194.92864,-194.92862 107.65611,0 194.92863,87.27252 194.92863,194.92862 z" rx="194.93" ry="194.93" transform="matrix(.76554 0 0 .76554 -168.44 8.6176)" cy="344.05" cx="523.08" fill="#d30000"/> + </g> +</svg> diff --git a/s/flag/ke.svg b/s/flag/ke.svg new file mode 100755 index 0000000..dff11d9 --- /dev/null +++ b/s/flag/ke.svg @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4657"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath5873" clipPathUnits="userSpaceOnUse"> + <rect id="rect5875" fill-opacity="0.67" height="514.11" width="685.48" y="-2.1096" x="-84.325"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath5873)" fill-rule="evenodd" transform="matrix(.93365 0 0 .93365 78.73 1.9696)"> + <rect id="rect551" height="509.73" width="750.87" y="1.1357" x="-116.04" fill="#fff"/> + <rect id="rect552" height="147.04" width="750.87" y="364.96" x="-116.04" stroke-width="1pt" fill="#008900"/> + <rect id="rect553" height="147.04" width="750.87" y="185.42" x="-118" stroke-width="1pt" fill="#c23743"/> + <rect id="rect554" height="160.08" width="750.87" y="-2.1096" x="-116.04" stroke-width="1pt"/> + <path id="path565" d="m158.63 436.28c37.957-70.646 165.2-304.64 163.95-305.32-20.81-12.213 16.82-30.975 44.455-74.966-19.688 47.28-17.599 91.404-37.812 78.702-33.616 63.449-137.53 257.39-163.36 305.3-2.7356-1.4698-3.5398-2.069-7.2283-3.7123z" stroke="#000" stroke-width="1.0805" fill="#fff"/> + <path id="path568" d="m349.01 439.05c-37.96-70.64-165.21-304.64-163.95-305.32 20.81-12.213-16.82-30.975-44.455-74.966 19.688 47.28 17.599 91.404 37.812 78.702 33.616 63.449 137.53 257.39 163.36 305.3 2.7356-1.4698 3.5398-2.069 7.2283-3.7123z" stroke="#000" stroke-width="1.0805" fill="#fff"/> + <path id="path555" d="m252.53 85.435c119.59 84.303 117.63 288.19 0 358.77-109.79-74.5-125.47-276.43 0-358.77z" stroke="#000" stroke-width="1.1357" fill="#c23743"/> + <path id="path557" d="m359.93 494.67c0 4.1115-2.1737 7.4446-4.8552 7.4446-2.6814 0-4.8552-3.3331-4.8552-7.4446s2.1737-7.4446 4.8552-7.4446c2.6814 0 4.8552 3.3331 4.8552 7.4446z" transform="matrix(3.0285 0 0 3.0285 -821.82 -1237.2)" fill="#fffffb"/> + <path id="path558" d="m251.78 93.278c33.627 32.534 33.075 111.22 0 138.46-30.87-28.751-35.28-106.68 0-138.46z" stroke="#000" stroke-width=".37410" fill="#fff"/> + <path id="path559" d="m251.78 297.17c33.627 32.534 33.075 111.22 0 138.46-30.87-28.751-35.28-106.68 0-138.46z" stroke="#000" stroke-width=".37410" fill="#fff"/> + <rect id="rect560" height="141.16" width="13.723" y="93.279" x="244.69" stroke-width="1pt" fill="#c23743"/> + <rect id="rect561" height="141.16" width="13.723" y="295.21" x="246.65" stroke-width="1pt" fill="#c23743"/> + <path id="path562" d="m179.28 181.5c20.401 37.985 20.067 129.85 0 161.66-18.729-33.568-21.405-124.55 0-161.66z" stroke="#000" stroke-width=".31486"/> + <path id="path563" d="m328.28 183.46c20.401 37.985 20.067 129.85 0 161.66-18.729-33.568-21.405-124.55 0-161.66z" stroke="#000" stroke-width=".31486"/> + </g> +</svg> diff --git a/s/flag/kg.svg b/s/flag/kg.svg new file mode 100755 index 0000000..ef995f0 --- /dev/null +++ b/s/flag/kg.svg @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- + +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>SVG graphic of Kyrgyzstan's Flag</dc:title> + <dc:rights><Agent> + <dc:title>Andrew Duhan</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> + +</rdf:RDF> + +--> +<svg id="svg719" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4668"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs721"> + <clipPath id="clipPath5745" clipPathUnits="userSpaceOnUse"> + <rect id="rect5747" fill-opacity="0.67" height="512" width="682.67" y="0.0000125" x="-84.949"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath5745)" fill-rule="evenodd" transform="matrix(.9375 0 0 .9375 79.64 -.000011719)"> + <rect id="rect724" height="512" width="768.77" y="0.0000125" x="-128" stroke-width="1pt" fill="#be0027"/> + <path id="path733" d="m105.45 261.14c13.658-16.61 41.95-0.39853 65.045-12.359-27.358 1.5043-42.27-13.129-63.884-11.078 22.395-13.757 41.461 4.4994 66.502-2.8389-33.165-2.7897-31.727-17.615-61.884-19.721 26.788-11.425 40.036 11.75 66.276 6.4798-30.927-7.1391-35.045-25.356-58.039-29.212 33.608-5.0726 31.417 14.794 64.364 17.22-33.441-14.345-24.676-26.797-52.645-37.723 31.297-0.73925 29.222 20.951 60.93 26.64-27.144-17.22-23.791-32.935-46.149-45.232 26.524 0.47971 29.114 27.629 56.184 36.041-24.148-19.16-17.797-35.314-38.664-52.424 26.383 6.1883 22.542 29.611 50.019 44.552-20.363-22.615-12.55-38.805-30.314-57.318 25.374 8.1717 15.735 30.432 42.065 51.595-15.094-24.855-5.775-40.707-20.629-61.677 23.559 12.166 12.151 34.872 34.023 57.558-10.295-25.508 0.0148-41.352-10.507-63.941 20.152 15.057 8.1662 39.323 24.422 62.472-5.9263-31.919 7.8414-37.17 3.5572-65.124 15.306 18.79-1.802 37.581 9.9485 65.26-1.4305-31.476 15.294-38.795 12.394-64.067 15.169 22.645-8.5069 42.353 1.3948 66.605 2.5609-29.864 22.185-37.597 22.49-60.836 11.933 21.332-14.111 36.672-9.8833 64.955 8.5696-31.196 29.476-35.051 31.943-56.025 7.235 24.678-21.265 36.15-19.598 63.501 8.4884-27.736 34.62-30.989 39.962-51.476 3.2965 26.107-22.401 30.742-29.635 59.585 13.512-23.54 37.143-25.471 47.783-44.089-0.83519 25.815-29.844 29.2-38.748 53.372 16.725-20.51 37.691-16.95 54.415-35.135-1.7651 23.299-31.293 21.982-47.009 46.104 18.136-16.732 45.435-11.718 59.33-26.125-0.67405 20.608-36.908 19.059-53.996 37.479 21.075-11.545 47.757-4.7639 63.225-15.487-2.8266 18.068-41.076 13.845-59.356 27.946 25.211-6.9853 44.677 3.8094 65.102-3.9951-9.9399 17.587-44.634 6.4552-63.054 17.888 21.879-3.7048 45.126 9.55 65.091 5.2977-6.5622 15.201-44.58-0.91883-65.091 8.5376 24.51-0.21526 40.403 15.434 63.134 14.399-12.363 13.763-45.788-5.1624-65.262-1.9299 23.759 4.9152 41.911 24.602 59.926 25.55-14.784 11.352-42.423-14.497-64.864-11.215 23.105 6.1846 42.516 32.472 55.774 33.048-14.284 9.7615-42.517-22.464-61.861-21.319 23.496 10.62 34.272 37.515 49.698 41.296-19.099 6.128-37.868-29.217-58.391-30.442 23.772 14.993 25.115 37.918 43.418 48.124-19.257 4.7073-32.964-35.167-53.259-38.532 19.489 14.327 22.428 44.931 35.351 54.608-19.607 1.0357-26.692-40.714-46.787-46.678 17.216 14.379 13.094 45.579 26.479 58.863-20.425-4.1895-17.792-40.538-39.117-52.778 15.32 19.32 7.5266 46.846 17.512 62.337-19.871-8.0382-11.24-40.568-30.211-58.991 10.349 20.583-0.77369 44.587 7.3876 64.487-18.153-8.8538-5.9435-47.384-19.856-62.666 6.3949 23.786-5.3998 43.47-0.64577 64.794-18.559-21.526 2.8168-43.189-13.281-65.125 4.2731 25.177-13.336 42.697-10.567 63.771-14.716-17.19 7.9054-44.774-3.5277-66.478 2.4613 24.754-20.276 46.439-18.715 62.029-11.978-19.967 13.298-43.582 6.5302-66.285-1.4256 23.572-24.371 36.382-28.692 57.856-7.7123-23.689 19.564-40.812 17.209-64.091-7.8107 22.145-29.982 31.024-37.793 52.485-6.3949-23.623 25.914-36.167 26.768-61.021-9.9866 23.309-36.522 28.427-45.279 46.265-3.2694-23.5 33.807-34.007 35.187-56.275-11.936 21.382-40.969 22.249-50.991 39.254-1.5191-23.416 37.582-26.316 43.721-50.825-11.883 18.278-43.735 15.907-56.987 30.767 2.0898-21.722 44.388-23.066 51.129-42.6-15.723 15.168-44.963 8.882-61.426 20.913 9.1637-21.335 48.838-16.812 57.808-32.267-17.564 9.1637-48.68 0.28045-63.997 9.4442 13.921-20.206 44.803-8.1354 62.28-22.05-28.428 4.1427-45.506-7.1698-65.182-1.9336z" fill="#ff0"/> + <path id="path731" d="m380.22 199.25c0 38.559-31.258 69.816-69.816 69.816-38.559 0-69.816-31.258-69.816-69.816 0-38.559 31.258-69.816 69.816-69.816 38.559 0 69.816 31.258 69.816 69.816z" transform="matrix(1.4212 0 0 1.4212 -184.43 -27.063)" fill="#ff0"/> + <path id="path727" d="m380.22 199.25c0 38.559-31.258 69.816-69.816 69.816-38.559 0-69.816-31.258-69.816-69.816 0-38.559 31.258-69.816 69.816-69.816 38.559 0 69.816 31.258 69.816 69.816z" transform="matrix(1.2356 0 0 1.2356 -126.63 10.114)" fill="#be0027"/> + <path id="path726" d="m380.22 199.25c0 38.559-31.258 69.816-69.816 69.816-38.559 0-69.816-31.258-69.816-69.816 0-38.559 31.258-69.816 69.816-69.816 38.559 0 69.816 31.258 69.816 69.816z" transform="matrix(1.061 0 0 1.061 -72.257 45.083)" fill="#ff0"/> + <path id="path729" d="m194.04 207.95c20.501-0.45142 46.033 1.4182 62.859 14.893 17.859-11.154 39.005-16.311 60.54-14.313 3.6753 6.7049 7.3494 13.41 11.025 20.115-15.989-1.6126-31.591 0.64576-50.095 8.1243 23.597 18.696 35.395 42.809 34.622 72.144-2.7073 3.3518-6.9632 7.0911-9.6705 10.443 3.9324-28.496-11.089-60.279-32.881-76.978 17.73 25.596 28.304 48.676 25.339 80.46-3.1587 1.8696-6.8992 4.513-10.058 6.3826 4.6409-28.045-1.9324-60.926-22.629-80.074 11.926 17.537 23.854 48.999 16.439 81.041-3.2239 0.96681-8.1871 3.6753-11.411 4.6421 8.3175-26.239 3.0935-59.056-10.832-78.719-13.796 19.794-18.31 50.029-10.445 77.946-3.8684-0.96681-6.7689-2.128-10.637-3.0948-5.6729-30.043 2.1931-63.957 15.861-81.62-13.926 8.0592-27.079 42.614-23.405 77.946-3.3518-1.5474-5.9312-2.7085-9.283-4.2559-4.513-26.369 7.4134-60.666 24.564-80.461-19.471 12.25-35.266 42.295-32.494 74.659-2.9656-2.6433-5.7381-3.9324-8.7037-6.5757-3.417-28.239 12.894-56.67 32.106-73.691-16.182-7.2215-30.043-8.6397-50.094-8.3175 3.1587-6.5118 6.1256-14.183 9.2843-20.695z" fill="#be0027"/> + </g> +</svg> diff --git a/s/flag/kh.svg b/s/flag/kh.svg new file mode 100755 index 0000000..ea70d31 --- /dev/null +++ b/s/flag/kh.svg @@ -0,0 +1,156 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4794"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath5675" clipPathUnits="userSpaceOnUse"> + <rect id="rect5677" fill-opacity="0.67" height="512" width="682.67" y="-.0000039058" x="-85.333"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath5675)" transform="matrix(.9375 0 0 .9375 80 .0000036617)"> + <rect id="rect815" height="512" width="768" y="-.0000039058" x="-128" stroke-width="1pt" fill="#1b0073"/> + <rect id="rect837" height="256" width="768" y="128" x="-128" stroke-width="1pt" fill="#e60006"/> + <g id="g1595" stroke="#e60000" fill="#fff" transform="matrix(1.0321 0 0 1.0321 -128 .00022675)"> + <rect id="rect1035" transform="translate(0 354.33)" height="50.992" width="315.35" y="-113.98" x="214.37" stroke-width="1.1702"/> + <path id="path632" d="m220 280-5 15h320l-5-15h-310z" transform="matrix(1.0187 0 0 .79988 -9.9654 67.378)" stroke-width="1.25"/> + <path id="path982" d="m245 280-5 15h60l-5-15h-50z" transform="matrix(1.2359 0 0 .79988 160.47 67.379)" stroke-width="1.1225"/> + <path id="path983" d="m245 280-5 15h60l-5-15h-50z" transform="matrix(.62245 0 0 .79988 328.64 67.379)" stroke-width="1.5196"/> + <path id="path984" d="m245 280-5 15h60l-5-15h-50z" transform="matrix(.40229 0 0 .79988 388.1 67.379)" stroke-width="2.0241"/> + <path id="path636" d="m245 280-5 15h60l-5-15h-50z" transform="matrix(1.2992 0 0 .79988 21.26 67.378)" stroke-width="1.0977"/> + <rect id="rect976" height="11.998" width="318.9" y="239.58" x="212.6" stroke-width=".94885pt"/> + <g id="g1527"> + <rect id="rect1001" transform="translate(0 354.33)" height="50.792" width="62.5" y="-113.87" x="462.79" stroke-width=".89340pt"/> + <rect id="rect637" transform="translate(0 354.33)" height="26.986" width="6.25" y="-90.068" x="507.5" stroke-width=".80466"/> + <rect id="rect639" transform="translate(0 354.33)" height="26.986" width="6.2501" y="-90.068" x="480" stroke-width=".80467"/> + </g> + <g id="g1517"> + <path id="path637" d="m245 280-5 15h60l-5-15h-50z" transform="matrix(.65261 0 0 .79988 195.63 67.378)" stroke-width="1.5543"/> + <path id="path638" d="m245 280-5 15h60l-5-15h-50z" transform="matrix(.40931 0 0 .79988 261.53 67.378)" stroke-width="1.9557"/> + <rect id="rect1003" transform="translate(0 354.33)" height="50.992" width="65.854" y="-113.98" x="338.8" stroke-width=".91886pt"/> + <rect id="rect683" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.072" x="391.27" stroke-width="1.0398"/> + <rect id="rect686" transform="translate(0 354.33)" height="26.986" width="6.2543" y="-90.075" x="347.78" stroke-width="1.0402"/> + <rect id="rect687" transform="translate(0 354.33)" height="63.32" width="31.89" y="-126.32" x="356.1" stroke-width=".71252pt"/> + <rect id="rect684" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.074" x="380.02" stroke-width="1.0398"/> + <rect id="rect685" transform="translate(0 354.33)" height="26.986" width="6.2543" y="-90.073" x="359.03" stroke-width="1.0402"/> + <path id="path759" d="m358.18 217.13 13.471 22.98 14.264-22.98h-27.735z" transform="matrix(1 0 0 .84654 0 54.377)" stroke-width="1pt"/> + </g> + <rect id="rect1033" transform="translate(0 354.33)" height="62.99" width="17.717" y="-113.98" x="487.59" stroke-width="1.1785"/> + <rect id="rect1034" transform="translate(0 354.33)" height="62.99" width="11.799" y="-113.98" x="490.54" stroke-width="1.1779"/> + <g id="g1508"> + <path id="path635" d="m245 280-5 15h60l-5-15h-50z" transform="matrix(1.236 0 0 .79988 -84.448 67.379)" stroke-width="1.1225"/> + <path id="path634" d="m245 280-5 15h60l-5-15h-50z" transform="matrix(.58110 0 0 .79988 90.856 67.379)" stroke-width="1.6368"/> + <path id="path633" d="m245 280-5 15h60l-5-15h-50z" transform="matrix(.37077 0 0 .79988 147.56 67.379)" stroke-width="2.0493"/> + <rect id="rect1000" transform="translate(0 354.33)" height="50.992" width="62.008" y="-113.98" x="217.91" stroke-width=".89162pt"/> + <rect id="rect635" transform="translate(0 354.33)" height="26.986" width="6.2499" y="-90.066" x="230" stroke-width=".80467"/> + <rect id="rect638" transform="translate(0 354.33)" height="26.986" width="6.25" y="-90.065" x="258.75" stroke-width=".80467"/> + <rect id="rect986" transform="translate(0 354.33)" height="62.99" width="17.717" y="-113.98" x="239.17" stroke-width="1.1785"/> + <rect id="rect987" transform="translate(0 354.33)" height="62.99" width="11.799" y="-113.98" x="242.11" stroke-width="1.1779"/> + </g> + <rect id="rect726" height="11.998" width="325.98" y="228.35" x="209.06" stroke-width=".95933pt"/> + <g id="g598" transform="matrix(1 0 0 .84654 0 54.377)"> + <g id="g557" transform="matrix(1.0466 0 0 1.0413 -36.796 -6.024)"> + <rect id="rect551" height="17.5" width="406.25" y="328.56" x="187.5" stroke-width="1pt"/> + <rect id="rect556" height="17.5" width="327.5" y="284.81" x="226.25" stroke-width=".89786pt"/> + <rect id="rect555" height="17.5" width="337.5" y="288.56" x="221.25" stroke-width=".91146pt"/> + <rect id="rect552" height="17.5" width="406.25" y="328.56" x="187.5" stroke-width="1pt"/> + <rect id="rect554" height="17.5" width="356.25" y="298.56" x="212.5" stroke-width=".93644pt"/> + <rect id="rect553" height="17.5" width="381.25" y="311.06" x="200" stroke-width=".96874pt"/> + </g> + <g id="g615" transform="matrix(.94488 0 0 1.0205 -32.48 1.1828)"> + <rect id="rect613" height="62.5" width="18.75" y="283.56" x="287.5" stroke-width="1.0297pt"/> + <rect id="rect614" height="62.5" width="12.5" y="283.56" x="290.62" stroke-width=".84077pt"/> + </g> + <g id="g621" transform="matrix(.94488 0 0 1.0205 215.55 1.1831)"> + <rect id="rect622" height="62.5" width="18.75" y="283.56" x="287.5" stroke-width="1.0297pt"/> + <rect id="rect623" height="62.5" width="12.5" y="283.56" x="290.62" stroke-width=".84077pt"/> + </g> + <rect id="rect993" height="0" width="60.029" y="344.61" x="290.25" stroke-width="1.1959"/> + <rect id="rect995" height="0" width="60.029" y="344.61" x="290.25" stroke-width="1.1959"/> + <rect id="rect996" height="0" width="60.029" y="266.91" x="112.96" stroke-width="1.1959"/> + <rect id="rect997" height="0" width="60.029" y="233.97" x="32.825" stroke-width="1.1959"/> + </g> + <rect id="rect626" height="113.98" width="14.239" y="240.35" x="365.5" stroke-width="1.2011"/> + <g id="g1531"> + <path id="path801" d="m217.92 220.3 0.184-36.915s3.362 7.236 29.512 8.821c24.749-0.937 28.848-5.362 29.969-9.284l-1.025 37.515-58.64-0.137z" transform="matrix(.94365 0 0 .84654 261.19 54.377)" stroke-width="1pt"/> + <g id="g892" transform="translate(246.55 2.2413)"> + <path id="path893" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.41468 0 0 .29996 99.014 139.48)" stroke-width="3.5278"/> + <path id="path894" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.53908 0 0 .41994 53.919 130.35)" stroke-width="2.615"/> + </g> + <g id="g727" transform="matrix(1.0205 0 0 1.1198 221.61 77.956)"> + <path id="path728" d="m0 280.52c0.79243 0 30.112 52.301 0 53.093-30.112 0.793 0-51.508 0-53.093z" transform="matrix(.38660 0 0 .35309 268.92 -29.035)" stroke-width="3.3833"/> + <path id="path729" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.3125 0 0 .14062 155.67 64.124)" stroke-width="5.9629"/> + <path id="path730" d="m330.92 208.56l-0.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-0.878 16.666h-63.157z" transform="matrix(.16047 0 0 .14062 210.78 66.467)" stroke-width="8.3211"/> + <path id="path731" d="m330.92 208.56l-0.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-0.878 16.666h-63.157z" transform="matrix(.32094 0 0 .1875 152.61 63.722)" stroke-width="5.0956"/> + <path id="path732" d="m330.92 208.56l-0.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-0.878 16.666h-63.157z" transform="matrix(.32094 0 0 .1875 152.61 68.41)" stroke-width="5.0956"/> + <path id="path733" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.3125 0 0 .375 155.67 43.367)" stroke-width="3.6515"/> + <path id="path734" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.3125 0 0 .375 155.67 52.742)" stroke-width="3.6515"/> + <path id="path735" d="m330.92 208.56l-0.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-0.878 16.666h-63.157z" transform="matrix(.32094 0 0 .46875 152.61 47.251)" stroke-width="3.2227"/> + <path id="path736" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.3125 0 0 .28125 155.67 86.357)" stroke-width="4.2164"/> + </g> + </g> + <g id="g1546"> + <g id="g889" transform="translate(-1.1207 -.000015259)"> + <path id="path874" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.41468 0 0 .29996 99.014 139.48)" stroke-width="3.5278"/> + <path id="path879" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.53908 0 0 .41994 53.919 130.35)" stroke-width="2.615"/> + </g> + <path id="path800" d="m217.92 220.3 0.184-36.915s3.362 7.236 29.512 8.821c24.749-0.937 28.848-5.362 29.969-9.284l-1.025 37.515-58.64-0.137z" transform="matrix(.94365 0 0 .84654 15.641 54.377)" stroke-width="1pt"/> + <g id="g603" transform="matrix(1.0205 0 0 1.1198 -26.424 77.956)"> + <path id="path583" d="m0 280.52c0.79243 0 30.112 52.301 0 53.093-30.112 0.793 0-51.508 0-53.093z" transform="matrix(.38660 0 0 .35309 268.92 -29.035)" stroke-width="3.3833"/> + <path id="path582" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.3125 0 0 .14062 155.67 64.124)" stroke-width="5.9629"/> + <path id="path581" d="m330.92 208.56l-0.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-0.878 16.666h-63.157z" transform="matrix(.16047 0 0 .14062 210.78 66.467)" stroke-width="8.3211"/> + <path id="path580" d="m330.92 208.56l-0.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-0.878 16.666h-63.157z" transform="matrix(.32094 0 0 .1875 152.61 63.722)" stroke-width="5.0956"/> + <path id="path579" d="m330.92 208.56l-0.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-0.878 16.666h-63.157z" transform="matrix(.32094 0 0 .1875 152.61 68.41)" stroke-width="5.0956"/> + <path id="path576" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.3125 0 0 .375 155.67 43.367)" stroke-width="3.6515"/> + <path id="path575" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.3125 0 0 .375 155.67 52.742)" stroke-width="3.6515"/> + <path id="path578" d="m330.92 208.56l-0.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-0.878 16.666h-63.157z" transform="matrix(.32094 0 0 .46875 152.61 47.251)" stroke-width="3.2227"/> + <path id="path574" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.3125 0 0 .28125 155.67 86.357)" stroke-width="4.2164"/> + </g> + </g> + <g id="g1561"> + <rect id="rect901" ry="6.4488" height="12.898" width="85.039" y="226.28" x="329.53" stroke-width="1.2256"/> + <path id="path900" d="m353.24-212.6 1.093-56.693s-3.28 13.906-13.123 13.906h-150.92c-9.843 0-13.124-13.906-13.124-13.906l1.093 56.693h174.98z" transform="matrix(0.5 0 0 0.75 239.17 393.31)" stroke-width="1.5789"/> + <g id="g860" transform="translate(-.000043591 -7.7902)"> + <path id="path807" d="m510.49 70.219 0.41-25.609s23.557-2.9984 20.288-9.3319c-3.27-6.3334-31.604 7.9858-31.604 7.9858h-113.34s-28.335-14.319-31.604-7.9858c-3.269 6.3335 20.288 9.3319 20.288 9.3319l0.408 25.609h135.15z" transform="matrix(0.4 0 0 .57434 194.88 182.02)" stroke-width="2.3995"/> + <path id="path806" d="m510.49 70.219 0.41-25.609s23.557-2.9984 20.288-9.3319c-3.27-6.3334-31.604 7.9858-31.604 7.9858h-113.34s-28.335-14.319-31.604-7.9858c-3.269 6.3335 20.288 9.3319 20.288 9.3319l0.408 25.609h135.15z" transform="matrix(0.48 0 0 .57434 159.45 194.02)" stroke-width="2.1904"/> + <path id="path814" d="m510.49 70.219 0.41-25.609s23.557-2.9985 20.288-9.3319c-3.27-6.333-27.29-18.36-61.81-31.08-24.29-5.9047 31.26-26.346-21.07-27.709-48.02 0.757-5.42 23.318-21.07 28.618-38.84 11.81-69.33 23.838-72.6 30.171-3.27 6.334 20.29 9.332 20.29 9.332l0.408 25.609h135.15z" transform="matrix(.12985 0 0 .26106 314.17 141.87)" stroke-width="6.2465"/> + <path id="path808" d="m510.49 70.219 0.41-25.609s23.557-2.9984 20.288-9.3319c-3.27-6.3334-31.604 7.9858-31.604 7.9858h-113.34s-28.335-14.319-31.604-7.9858c-3.269 6.3335 20.288 9.3319 20.288 9.3319l0.408 25.609h135.15z" transform="matrix(.28332 0 0 .46992 246.55 164.54)" stroke-width="3.152"/> + <path id="path809" d="m510.49 70.219 0.41-25.609s23.557-2.9984 20.288-9.3319c-3.27-6.3334-31.604 7.9858-31.604 7.9858h-113.34s-28.335-14.319-31.604-7.9858c-3.269 6.3335 20.288 9.3319 20.288 9.3319l0.408 25.609h135.15z" transform="matrix(.34 0 0 .46992 221.46 174.36)" stroke-width="2.8773"/> + <path id="path810" d="m510.49 70.219 0.41-25.609s23.557-2.9984 20.288-9.3319c-3.27-6.3334-31.604 7.9858-31.604 7.9858h-113.34s-28.335-14.319-31.604-7.9858c-3.269 6.3335 20.288 9.3319 20.288 9.3319l0.408 25.609h135.15z" transform="matrix(.18333 0 0 .31908 290.85 157.28)" stroke-width="4.7552"/> + <path id="path811" d="m510.49 70.219 0.41-25.609s23.557-2.9984 20.288-9.3319c-3.27-6.3334-31.604 7.9858-31.604 7.9858h-113.34s-28.335-14.319-31.604-7.9858c-3.269 6.3335 20.288 9.3319 20.288 9.3319l0.408 25.609h135.15z" transform="matrix(.22 0 0 .31908 274.61 163.95)" stroke-width="4.3408"/> + <path id="path812" d="m510.49 70.219 0.41-25.609s23.557-2.9984 20.288-9.3319c-3.27-6.3334-31.604 7.9858-31.604 7.9858h-113.34s-28.335-14.319-31.604-7.9858c-3.269 6.3335 20.288 9.3319 20.288 9.3319l0.408 25.609h135.15z" transform="matrix(.12985 0 0 .26106 314.53 147.57)" stroke-width="6.2465"/> + <path id="path813" d="m510.49 70.219 0.41-25.609s23.557-2.9984 20.288-9.3319c-3.27-6.3334-31.604 7.9858-31.604 7.9858h-113.34s-28.335-14.319-31.604-7.9858c-3.269 6.3335 20.288 9.3319 20.288 9.3319l0.408 25.609h135.15z" transform="matrix(.15583 0 0 .26106 303.03 153.03)" stroke-width="5.7021"/> + </g> + <g id="g789" transform="matrix(1 0 0 .84654 -.000038490 54.377)"> + <path id="path767" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.17717 0 0 .21260 307.82 85.004)" stroke-width="5.4435"/> + <path id="path766" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.24803 0 0 .21260 282.14 92.09)" stroke-width="5.4435"/> + <path id="path765" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.28346 0 0 .28346 269.29 89.705)" stroke-width="4.4097"/> + <path id="path764" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.35433 0 0 .35433 243.6 90.155)" stroke-width="3.5278"/> + <path id="path762" d="m358.18 217.13 13.471 22.98 14.264-22.98h-27.735z" transform="matrix(.92308 0 0 .79602 28.619 3.7524)" stroke-width="1.4582"/> + <path id="path763" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.42520 0 0 .39487 217.91 96.262)" stroke-width="3.0506"/> + <path id="path760" d="m358.18 217.13 13.471 22.98 14.264-22.98h-27.735z" transform="translate(-.00012022 -20.422)" stroke-width="1.25"/> + <path id="path761" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.46063 0 0 .49606 205.07 95.815)" stroke-width="2.615"/> + <path id="path746" d="m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z" transform="matrix(.46063 0 0 .49606 205.07 116.22)" stroke-width="2.615"/> + </g> + </g> + <g id="g1584" stroke-width="1.0398"> + <rect id="rect644" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.07" x="285.34"/> + <rect id="rect649" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.072" x="306.59"/> + <rect id="rect650" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.073" x="296.59"/> + <rect id="rect652" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.071" x="410.14"/> + <rect id="rect653" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.073" x="452.64"/> + <rect id="rect654" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.074" x="431.39"/> + <rect id="rect655" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.075" x="421.39"/> + <rect id="rect656" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.075" x="441.39"/> + <rect id="rect648" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.071" x="327.84"/> + <rect id="rect651" transform="translate(0 354.33)" height="26.986" width="6.2498" y="-90.073" x="316.59"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/ki.svg b/s/flag/ki.svg new file mode 100755 index 0000000..c14f8b7 --- /dev/null +++ b/s/flag/ki.svg @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg570" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4835"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs572"> + <clipPath id="clipPath4927" clipPathUnits="userSpaceOnUse"> + <rect id="rect4929" fill-opacity="0.67" height="512" width="682.67" y="-.000021776" x="-86.325"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath4927)" transform="matrix(.93750 0 0 .93750 80.93 .000020415)"> + <rect id="rect574" fill-rule="evenodd" height="306.49" width="835.79" y="-.000022833" x="-164.28" stroke-width="1pt" fill="#e73e2d"/> + <path id="path605" d="m204.3 282.11c-19.435-15.174-55.633-10.041-61.596-51.286 27.717 21.469 22.686-1.2269 64.082 19.229l-2.4857 32.057z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path564" d="m209.47 263.35c-13.852-20.398-49.882-26.602-42.922-67.69 19.807 28.928 21.971 5.7821 55.109 37.936l-12.187 29.754z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path565" d="m215.77 250.01c-5.0008-24.145-35.922-43.653-13.782-78.958 7.2419 34.303 18.091 13.743 36.418 56.124l-22.637 22.834z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path566" d="m230.32 237.61c2.6527-24.514-20.786-52.572 11.123-79.376-3.6383 34.87 12.998 18.633 17.431 64.594l-28.553 14.782z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path567" d="m243.26 227.67c12.457-21.279 2.56-56.474 42.646-67.864-17.596 30.324 4.2303 22.321-10.543 66.068l-32.103 1.7959z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path568" d="m262.07 230.29c18.559-16.234 20.327-52.751 61.957-50.849-26.3 23.183-3.0624 22.511-30.94 59.321l-31.017-8.4714z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path569" d="m278.57 239.87c22.506-10.072 34.914-44.463 74.152-30.426-31.946 14.444-9.5343 20.621-46.987 47.628l-27.165-17.202z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path570" d="m292.49 254.93c24.431-3.3298 46.018-32.837 79.718-8.3231-34.72 4.8675-14.953 17.104-58.494 32.476l-21.224-24.152z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path598" d="m379.46 259.6-112.06 2.4605 4.7051 30.193 107.36-32.654z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path597" d="m363 218.41-103.84 39.859 17.386 33.373 86.458-73.232z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path596" d="m280.58 280.67 53.722-97.54-82.407 76.705 28.684 20.835z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path595" d="m279.46 272.63 17.268-109.47-53.811 97.285 36.543 12.187z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path594" d="m273.01 263.74-18.035-110.25-19.989 110.73 38.025-0.48221z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path604" d="m263.68 254.29-52.292-92.072 20.095 111.92 32.197-19.845z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path603" d="m255.56 253.6-81.101-68.479 57.667 98.003 23.435-29.524z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path601" d="m145.95 218.89 87.069 71.891 13.387-37.606-100.46-34.285z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path600" d="m232.1 260.85-102.31-1.4379 101.88 34.01 0.42859-32.572z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#fec74a"/> + <path id="path575" d="m429.77 602.07c0 24.163-19.588 43.751-43.751 43.751s-43.751-19.588-43.751-43.751 19.588-43.751 43.751-43.751 43.751 19.588 43.751 43.751z" fill-rule="evenodd" transform="matrix(1.4028 0 0 1.4028 -287.76 -565.36)" stroke="#d8aa3f" stroke-width="1.187" fill="#fec74a"/> + <rect id="rect586" fill-rule="evenodd" height="208.6" width="839.9" y="303.4" x="-165.12" stroke-width="1pt" fill="#005989"/> + <path id="path573" d="m-165.6 454c15.618 7.2279 37.991 25.319 61.922 25.303 40.042-0.25976 41.108-27.425 81.669-26.133 40.667 1.035 33.311 29.634 88.224 29.491 45.369-0.11855 60.026-34.665 99.134-30.526 28.963-1.4906 40.817 32.714 85.334 33.148 46.172 0.98708 63.126-37.28 92.09-34.112 30.856 0 40.964 30.821 84.253 31.043 55.136 0.27841 64.829-32.078 99.323-30.008 24.55-0.51818 43.91 23.714 79.887 24.317 28.707 0.48887 52.74-21.214 68.975-28.974l0.80274-36.827c-17.015 6.3274-42.386 27.073-67.756 27.301-36.509 1.3361-59.094-23.946-84.464-23.718-30.397 0.27308-42.51 31.284-94.076 31.284-47.109 0-57.918-31.284-88.316-31.284-29.712 0.22778-38.815 34.026-90.253 33.4-41.96-0.50486-58.31-32.262-88.023-32.034-31.499 0-64.072 30.881-98.951 29.39-48.14-2.0341-58.541-29.39-90.041-29.39-23.542 0-48.948 25.635-77.309 26.062-28.206 0.43426-59.892-25.508-62.827-26.062l0.40177 38.33z" fill-rule="evenodd" fill="#fff"/> + <path id="path578" d="m-165.6 381.07c15.618 7.2279 37.991 25.319 61.922 25.303 40.042-0.25976 41.108-27.425 81.669-26.133 40.667 1.035 33.311 29.634 88.224 29.491 45.369-0.11855 60.026-34.665 99.134-30.526 28.963-1.4906 40.817 32.714 85.334 33.148 46.172 0.98708 63.126-37.28 92.09-34.112 30.856 0 40.964 30.821 84.253 31.043 55.136 0.27841 64.829-32.078 99.323-30.008 24.55-0.51818 43.91 23.714 79.887 24.317 28.707 0.48887 52.74-21.214 68.975-28.974l0.80274-36.827c-17.015 6.3274-42.386 27.073-67.756 27.301-36.509 1.3361-59.094-23.946-84.464-23.718-30.397 0.27308-42.51 31.284-94.076 31.284-47.109 0-57.918-31.284-88.316-31.284-29.712 0.22778-38.815 34.026-90.253 33.4-41.96-0.50486-58.31-32.262-88.023-32.034-31.499 0-64.072 30.881-98.951 29.39-48.14-2.0341-58.541-29.39-90.041-29.39-23.542 0-48.948 25.635-77.309 26.062-28.206 0.43426-59.892-25.508-62.827-26.062l0.40177 38.33z" fill-rule="evenodd" fill="#fff"/> + <path id="path579" d="m-165.6 308.92c15.603 7.2279 37.955 25.319 61.865 25.303 40.004-0.25976 41.07-27.425 81.593-26.133 40.629 1.035 33.28 29.634 88.141 29.491 45.327-0.11855 59.97-34.665 99.042-30.526 28.936-1.4906 40.779 32.714 85.254 33.148 46.129 0.98708 63.067-37.28 92.004-34.112 30.827 0 40.926 30.821 84.174 31.043 55.085 0.27841 64.769-32.078 99.23-30.008 24.528-0.51818 43.869 23.714 79.813 24.317 28.68 0.48887 52.691-21.214 68.911-28.974l0.80199-36.827c-17 6.3274-42.346 27.073-67.693 27.301-36.475 1.3361-59.038-23.946-84.385-23.718-30.369 0.27308-42.471 31.284-93.988 31.284-47.065 0-57.864-31.284-88.234-31.284-29.684 0.22778-38.779 34.026-90.169 33.4-41.921-0.50486-58.255-32.262-87.941-32.034-31.47 0-64.012 30.881-98.859 29.39-48.095-2.0341-58.486-29.39-89.957-29.39-23.52 0-48.903 25.635-77.237 26.062-28.15 0.44-59.81-25.5-62.74-26.06l0.40139 38.33z" fill-rule="evenodd" fill="#fff"/> + <path id="path587" d="m136.81 75.956c61.048-4.1801 49.921-9.3939 74.493-13.316 30.964 4.2574 34.505 23.004 51.758 34.505 0 0-6.4846 21.926-27.706 18.822-2.8533-8.7958 10.273-11.515-27.497-34.54-21.958-1.3068-61.25 3.8537-71.048-5.4722z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.3321pt" fill="#ffc84b"/> + <path id="path591" d="m326.07 109.89-43.979 1.8103v10.866c29.664 0.94845 35.011-3.0185 43.979-12.676z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.3321pt" fill="#ffc84b"/> + <path id="path590" stroke-linejoin="round" d="m174.84 108.07c7.6648-3.9204 11.477-2.3205 18.118-2.5789 4.5704 8.2776 8.8824 9.0542 18.885 10.089 15.263 21.472 36.735 21.73 39.839 21.73 29.923-0.77661 39.409-21.73 59.501-24.059h21.214c-3.5354-6.0357-6.2955-9.4858-13.97-9.8308-15.781-0.86186-36.217-0.43027-54.067 3.622l-25.094 6.2089c-7.3305-3.5354-25.266-22.334-36.735-21.989-6.7257 1.8103-6.7257 4.1388-10.089 6.7257-6.4673 2.7601-12.936 1.4373-17.601 10.081z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.6651" fill="#ffc84b"/> + <path id="path589" d="m330.54 451.11c0 1.7161-1.3912 3.1073-3.1072 3.1073-1.7161 0-3.1072-1.3912-3.1072-3.1073s1.3912-3.1073 3.1072-3.1073c1.7161 0 3.1072 1.3912 3.1072 3.1073z" fill-rule="evenodd" transform="matrix(1.0214 0 0 1.0214 -132.51 -361.85)" stroke="#d8aa3f" stroke-width="1.6303" fill="#ffc84b"/> + <path id="path588" d="m225.56 107.82c44.927-54.154 84.163-47.514 135.3-51.222 1.7251 6.2955 1.1216 15.695-23.282 24.059-33.372 4.9154-93.132 40.097-93.39 40.097-11.126-0.51685-18.886-12.158-18.627-12.935z" fill-rule="evenodd" stroke="#d8aa3f" stroke-width="1.3321pt" fill="#ffc84b"/> + <path id="path592" d="m317.87 72.536 33.134 1.436" stroke="#d9a43e" stroke-linecap="round" stroke-width="1.3321pt" fill="none"/> + <path id="path593" d="m314.26 77.942 24.152 1.9702" stroke="#d9a43e" stroke-linecap="round" stroke-width="1.3321pt" fill="none"/> + </g> +</svg> diff --git a/s/flag/km.svg b/s/flag/km.svg new file mode 100755 index 0000000..cf1a208 --- /dev/null +++ b/s/flag/km.svg @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- + +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>SVG graphic of Comoros' Flag</dc:title> + <dc:rights><Agent> + <dc:title>Andrew Duhan</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> + +</rdf:RDF> + +--> +<svg id="svg660" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4850"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs662"> + <clipPath id="clipPath4687" clipPathUnits="userSpaceOnUse"> + <rect id="rect4689" fill-opacity="0.67" height="512" width="682.67" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath4687)" fill-rule="evenodd" transform="scale(.9375)"> + <rect id="rect665" height="128" width="768.77" y="-.0000018630" x="0" stroke-width="1pt" fill="#ff0"/> + <rect id="rect668" height="128" width="768.77" y="128" x="0" stroke-width="1pt" fill="#fff"/> + <rect id="rect667" height="128" width="768.77" y="256" x="0" stroke-width="1pt" fill="#be0027"/> + <rect id="rect666" height="128" width="768.77" y="384" x="0" stroke-width="1pt" fill="#3b5aa3"/> + <path id="path664" d="m0 0.000019406v512l381.86-255.28-381.86-256.72z" fill="#239e46"/> + <path id="path673" d="m157.21 141.43c-85.097-4.31-123.87 63.47-123.78 115.87-0.194 61.97 58.529 113.08 112.81 109.99-29.27-13.84-65.008-52.66-65.337-110.25-0.3-52.18 29.497-97.55 76.307-115.61z" fill="#fff"/> + <polygon id="polygon674" d="m 126.77341,160.21338 -9.75793,-7.62986 -11.8172,3.71287 4.24106,-11.63809 -7.18286,-10.0915 12.37904,0.43712 7.37795,-9.94975 3.40961,11.90825 11.74269,3.94221 -10.27179,6.92258 z" points="126.77 160.21 117.02 152.58 105.2 156.3 109.44 144.66 102.26 134.57 114.64 135 122.01 125.05 125.42 136.96 137.17 140.9 126.89 147.83" transform="matrix(1.23 0 0 1.23 0 .000016587)" stroke-width="1pt" fill="#fff"/> + <polygon id="polygon675" d="m 126.77341,160.21338 -9.75793,-7.62986 -11.8172,3.71287 4.24106,-11.63809 -7.18286,-10.0915 12.37904,0.43712 7.37795,-9.94975 3.40961,11.90825 11.74269,3.94221 -10.27179,6.92258 z" points="126.77 160.21 117.02 152.58 105.2 156.3 109.44 144.66 102.26 134.57 114.64 135 122.01 125.05 125.42 136.96 137.17 140.9 126.89 147.83" transform="matrix(1.23 0 0 1.23 -.25522 52.063)" stroke-width="1pt" fill="#fff"/> + <polygon id="polygon676" d="m 126.77341,160.21338 -9.75793,-7.62986 -11.8172,3.71287 4.24106,-11.63809 -7.18286,-10.0915 12.37904,0.43712 7.37795,-9.94975 3.40961,11.90825 11.74269,3.94221 -10.27179,6.92258 z" points="126.77 160.21 117.02 152.58 105.2 156.3 109.44 144.66 102.26 134.57 114.64 135 122.01 125.05 125.42 136.96 137.17 140.9 126.89 147.83" transform="matrix(1.23 0 0 1.23 -.000011822 104.64)" stroke-width="1pt" fill="#fff"/> + <polygon id="polygon677" d="m 126.77341,160.21338 -9.75793,-7.62986 -11.8172,3.71287 4.24106,-11.63809 -7.18286,-10.0915 12.37904,0.43712 7.37795,-9.94975 3.40961,11.90825 11.74269,3.94221 -10.27179,6.92258 z" points="126.77 160.21 117.02 152.58 105.2 156.3 109.44 144.66 102.26 134.57 114.64 135 122.01 125.05 125.42 136.96 137.17 140.9 126.89 147.83" transform="matrix(1.23 0 0 1.23 -.25522 157.72)" stroke-width="1pt" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/kn.svg b/s/flag/kn.svg new file mode 100755 index 0000000..ad20eb8 --- /dev/null +++ b/s/flag/kn.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4863"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath4591" clipPathUnits="userSpaceOnUse"> + <rect id="rect4593" fill-opacity="0.67" height="512" width="682.67" y=".0000041560" x="-80.109"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath4591)" transform="matrix(.93750 0 0 .93750 75.102 -.0000038963)"> + <rect id="rect628" height="511.29" width="737.65" y=".23857" x="-107.85" fill="#ffe900"/> + <path id="path623" d="m-108.24 0.23864 0.86 368.58 573.98-368.82-574.84 0.23864z" fill="#35a100"/> + <path id="path624" d="m630.69 511.53-1.3468-383.25-578.98 383.54 580.33-0.2831z" fill="#c70000"/> + <path id="path625" d="m-107.87 396.61 0.49 115.39 125.25-0.16 611.76-410.14-0.69-100.32-123.76-1.1414-613.05 396.37z"/> + <polygon id="polygon136" transform="matrix(.53692 -.34745 .32106 .51439 1.465 167.69)" points="511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21" fill="#fff"/> + <polygon id="polygon638" transform="matrix(.53692 -.34745 .32106 .51439 -273.78 346.6)" points="511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/kp.svg b/s/flag/kp.svg new file mode 100755 index 0000000..895d2a5 --- /dev/null +++ b/s/flag/kp.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata11"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath4479" clipPathUnits="userSpaceOnUse"> + <rect id="rect4481" fill-opacity="0.67" height="511.9" width="682.53" y=".10048" x="5.0774"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath4479)" transform="matrix(.93768 0 0 .93768 -4.761 -.094216)"> + <rect id="rect149" transform="scale(-1)" height="510.95" width="851.86" stroke="#000" y="-511.52" x="-775.94" stroke-width=".76014pt" fill="#fff"/> + <rect id="rect148" transform="scale(-1,1)" height="92.457" width="851.86" y="419.07" x="-775.94" stroke-width="1pt" fill="#3e5698"/> + <rect id="rect605" transform="scale(-1)" height="283.21" width="851.86" y="-397.65" x="-775.94" stroke-width="1pt" fill="#c60000"/> + <rect id="rect606" transform="scale(-1,1)" height="92.457" width="851.86" y=".57557" x="-775.94" stroke-width="1pt" fill="#3e5698"/> + <path id="path607" d="m495.86 1148c0 90.46-73.332 163.79-163.79 163.79-90.46 0-163.79-73.332-163.79-163.79 0-90.46 73.332-163.79 163.79-163.79 90.46 0 163.79 73.332 163.79 163.79z" transform="matrix(.72421 0 0 .70142 -30.589 -549.16)" fill="#fff"/> + <polygon id="polygon136" transform="matrix(1.0032 -.0050477 -.010923 .98334 -320.22 -86.633)" points="498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15" fill="#c40000"/> + </g> +</svg> diff --git a/s/flag/kr.svg b/s/flag/kr.svg new file mode 100755 index 0000000..1a05ac9 --- /dev/null +++ b/s/flag/kr.svg @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3014"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath4409" clipPathUnits="userSpaceOnUse"> + <rect id="rect4411" fill-opacity="0.67" height="512" width="682.67" y="-.43991" x="-95.808"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath4409)" transform="matrix(.9375 0 0 .9375 89.82 .41242)"> + <rect id="rect149" transform="scale(-1)" height="512" width="730.17" y="-511.56" x="-610.61" fill="#fff"/> + <path id="path607" d="m495.86 1148c0 90.46-73.332 163.79-163.79 163.79-90.46 0-163.79-73.332-163.79-163.79 0-90.46 73.332-163.79 163.79-163.79 90.46 0 163.79 73.332 163.79 163.79z" transform="matrix(.68690 0 0 .68690 -88.735 -532.54)" fill="#fff"/> + <path id="path635" d="m733.7 381.73c0 125.78-101.96 227.74-227.74 227.74s-227.74-101.96-227.74-227.74 101.96-227.74 227.74-227.74 227.74 101.96 227.74 227.74z" transform="matrix(.63784 0 0 .64461 -74.972 16.483)" fill="#c70000"/> + <rect id="rect636" transform="rotate(-49.156)" height="26.201" width="127.92" y="45.309" x="-127.97" stroke-width="1pt"/> + <rect id="rect637" transform="rotate(-49.156)" height="26.201" width="127.92" y="81.527" x="-127.97" stroke-width="1pt"/> + <rect id="rect638" transform="rotate(-49.156)" height="26.201" width="127.92" y="45.309" x="-127.97" stroke-width="1pt"/> + <rect id="rect639" transform="rotate(-49.156)" height="26.201" width="127.92" y="45.309" x="-127.97" stroke-width="1pt"/> + <rect id="rect640" transform="rotate(-49.156)" height="26.201" width="127.92" y="118.52" x="-127.97" stroke-width="1pt"/> + <rect id="rect641" transform="rotate(-49.156)" height="26.201" width="127.92" y="45.309" x="-127.97" stroke-width="1pt"/> + <rect id="rect643" transform="rotate(-49.156)" height="26.201" width="127.92" y="45.309" x="-127.97" stroke-width="1pt"/> + <rect id="rect644" transform="matrix(.64886 .76090 -.76090 .64886 0 0)" height="26.201" width="127.92" y="-330.34" x="320.65" stroke-width="1pt"/> + <rect id="rect645" transform="matrix(.64886 .76090 -.76090 .64886 0 0)" height="26.201" width="127.92" y="-257.13" x="320.65" stroke-width="1pt"/> + <path id="path649" d="m417.55 133.19 78.602-67.814 14.641 16.953-83.996 75.519-9.2471-24.659z" fill="#fff"/> + <rect id="rect646" transform="matrix(-.64282 .76602 -.76881 -.63948 0 0)" height="25.644" width="125.1" y="-633.05" x="-42.832" stroke-width="1pt"/> + <rect id="rect642" transform="matrix(.64886 .76090 -.76090 .64886 0 0)" height="26.201" width="127.92" y="-294.12" x="320.65" stroke-width="1pt"/> + <rect id="rect647" transform="matrix(-.64282 .76602 -.76881 -.63948 0 0)" height="25.644" width="125.1" y="-668.49" x="-42.832" stroke-width="1pt"/> + <rect id="rect648" transform="matrix(-.64282 .76602 -.76881 -.63948 0 0)" height="25.644" width="125.1" y="-596.84" x="-42.832" stroke-width="1pt"/> + <path id="path653" d="m104.6 236.68c4.5919 36.974 11.297 78.175 68.199 82.455 21.328 1.2776 62.817-5.0735 77.061-63.19 18.688-55.829 74.975-71.88 113.28-41.613 21.718 14.166 27.727 36.666 29.283 53.557-1.7386 54.243-32.874 101.2-72.823 122.14-45.93 27.3-109.56 27.87-165.3-13.49-25.12-23.57-60.219-67.02-49.7-139.86z" fill="#3d5897"/> + <path id="path654" d="m435.91 370.59 78.734 67.661-14.591 16.997-87.156-71.851 23.013-12.807z" fill="#fff"/> + <rect id="rect658" transform="matrix(.64886 .76090 -.76090 .64886 0 0)" height="26.201" width="127.92" y="233.21" x="270.57" stroke-width="1pt"/> + <path id="path657" d="m-16.188 437.25 78.602-67.814 14.641 16.953-83.996 75.519-9.2471-24.659z" stroke-width="1pt" fill="#fff"/> + <rect id="rect655" transform="matrix(.64886 .76090 -.76090 .64886 0 0)" height="26.201" width="127.92" y="196.99" x="270.57" stroke-width="1pt"/> + <rect id="rect656" transform="matrix(.64886 .76090 -.76090 .64886 0 0)" height="26.201" width="127.92" y="270.2" x="270.57" stroke-width="1pt"/> + </g> +</svg> diff --git a/s/flag/kw.svg b/s/flag/kw.svg new file mode 100755 index 0000000..8af85a0 --- /dev/null +++ b/s/flag/kw.svg @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg556" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3023"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs558"> + <clipPath id="clipPath4229" clipPathUnits="userSpaceOnUse"> + <rect id="rect4231" fill-opacity="0.67" height="512" width="682.67" y=".000021845" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath4229)" transform="matrix(.93750 0 0 .93750 0 -.00002048)" stroke-width="1pt"> + <rect id="rect563" height="170.68" width="1024" y="170.64" x="0" fill="#fff"/> + <rect id="rect559" height="170.68" width="1024" y="341.32" x="0" fill="#f31830"/> + <rect id="rect564" height="170.68" width="1024" y=".00011734" x="0" fill="#00d941"/> + <path id="path565" d="m0 0.000022575v512l255.45-170.7 0.55-170.77-256-170.53z"/> + </g> +</svg> diff --git a/s/flag/ky.svg b/s/flag/ky.svg new file mode 100755 index 0000000..cb00d50 --- /dev/null +++ b/s/flag/ky.svg @@ -0,0 +1,123 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg1" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3868"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <rect id="rect124" height="480" width="640" y="7.1054e-15" x="0" stroke-width="1pt" fill="#006"/> + <g id="g3186" transform="matrix(.78125 0 0 .78125 0 -.0000098965)"> + <rect id="rect4050" fill-rule="evenodd" height="256" width="512" y=".000012668" x="0" fill="#006"/> + <g id="g584" stroke-width="1pt" transform="matrix(8.0321 0 0 10.338 0 .00002048)"> + <path id="path146" fill="#fff" d="m0 0v3.3541l53.292 26.646h6.708v-3.354l-53.292-26.646h-6.708zm60 0v3.354l-53.292 26.646h-6.708v-3.354l53.292-26.646h6.708z"/> + <path id="path136" fill="#fff" d="m25 0v30h10v-30h-10zm-25 10v10h60v-10h-60z"/> + <path id="path141" fill="#c00" d="m0 12v6h60v-6h-60zm27-12v30h6v-30h-6z"/> + <path id="path150" fill="#c00" d="m0 30 20-10h4.472l-20 10h-4.472zm0-30 20 10h-4.472l-15.528-7.7639v-2.2361zm35.528 10 20-10h4.472l-20 10h-4.472zm24.472 20-20-10h4.472l15.528 7.764v2.236z"/> + </g> + </g> + <g id="g4245" transform="matrix(1.024 0 0 1.024 -283.01 45.714)"> + <path id="path852" d="m714.2 130.3c-0.98607 0.59576-2.9579 2.3834-4.9301 1.7876-1.9718-0.59576-6.4087-8.3424-11.339-7.1506-4.9301 1.1915-7.888 2.9795-9.8598 2.9795-1.9721 0-7.3951 1.7876-7.3951 6.5544 0 4.7672 0.49318 8.3428 1.479 8.3428 0.98608 0 2.465-2.9795 2.465-2.9795s0.49289 5.9587 3.944 5.9587 10.846 0.59612 11.339 2.3838c0.49318 1.7876-3.4508 5.9587-2.4647 9.5343 0.98577 3.5753 5.4229 9.534 5.4229 9.534s-6.409 4.7672-6.409 7.7467 0.98607 5.959 0.98607 5.959l-28.594 1.1915s-1.9721 84.617-0.98607 91.173c0.98607 6.5519 3.4508 22.642 3.4508 22.642s-6.409-2.0837-11.832 3.2796c-5.4229 5.3633-24.403 14.597-24.896 18.768-0.49303 4.171-2.2185 7.7478-0.2465 10.727 1.972 2.9788 8.9107 11.074 6.902 10.727-6.6187-1.1415-9.0813-10.545-13.557-14.003-4.3978-3.3955-13.064-2.6816-14.05 0.89146-0.98598 3.5767-0.49301 9.5343 0 10.727 0.49301 1.1922 5.9159 20.261 7.3949 24.432s17.008 10.426 23.91 9.8315c13.064 0.29715 18.98-5.6604 19.473-5.0625 0.49319 0.59431 28.106 29.07 84.795 29.197 44.129 0.0978 77.4-28.603 77.4-28.005 0 0.59431 18.241 5.9576 24.65 4.171 6.409-1.7902 15.776-5.9612 17.748-10.132 1.9721-4.171 7.3951-25.624 7.888-29.197 0.49318-3.5767 0-7.7478-4.4369-8.94s-6.9019-0.89509-9.3669 0.29715-3.2047 4.4718-6.9019 10.429c-1.9718 1.7902-7.1484 6.5555-5.6694 5.3633s4.6833-10.129 5.1765-13.111c0.49289-2.9788 1.9718-8.3421-1.479-11.321-3.4511-2.9788-8.737-4.1964-14.79-8.6392-5.7482-3.9391-10.352-10.429-13.804-10.429-3.4511 0-7.3951-1.7866-6.9019-1.7866 0.49288 0 4.445-8.6574 3.4589-17.594-0.98577-8.94 0.48479-94.434-0.008-94.434-0.49289 0-24.65 1.788-24.65 0.59612s1.9718-9.5343 0-14.897c-1.9718-5.3629-10.353-8.9386-7.888-10.13 2.465-1.1919 13.311-4.1714 12.818-8.9386-0.49319-4.7672-7.3951-4.171-10.353-5.9587-2.9579-1.788-11.832-10.13-12.818-10.13-0.98607 0 25.635-16.089 23.664-16.089-1.9718 0-12.325-2.9792-15.776-1.1915 0-2.9795 14.297-11.918 11.832-13.11-2.465-1.1919-13.804-2.3838-10.846-2.9795 2.9579-0.59576 3.944-7.7467 3.4511-7.7467-0.49319 0-12.818 1.788-12.818 1.788s-2.9579-4.1714-3.944-4.1714c-0.98577 0-5.423 2.3834-5.423 2.3834l-2.4647-6.5548-5.4229 3.5756-2.465-2.9795s-4.4369 1.1919-4.4369 0c0.18649-0.04276-0.51087-2.9922-1.2079-2.9922-0.69735 0-5.5776 3.7923-5.7521 3.5814-0.17419-0.21054-5.5774-7.7949-5.5774-7.5843 0 0.21091-3.8348 14.326-4.009 14.326-0.17419 0-3.8346 0.42145-4.0088 0.632-0.17449 0.21091-19.522-11.166-19.347-10.955 0.17418 0.21091 5.0545 10.955 5.0545 10.955s-4.1832 2.3178-4.1832 2.5284c0 0.21054 0.69736 4.8454 0.69736 4.8454l-12.9-4.425s4.8806 9.9018 4.5319 9.9018c-0.34868 0-9.5864 0.42145-9.4122 0.42145 0.17419 0 4.3574 8.2163 4.3574 8.2163l-1.5686 4.8458s13.884 9.7978 12.898 10.394zm82.33 207.37c1.2325 1.7866 7.8877 10.129 6.9019 10.129-0.98607 0-17.501 11.024-24.157 13.111-6.6555 2.0837-28.347 5.9576-27.115 5.6604 1.2325-0.29716 19.479-10.288 26.874-15.053 7.3951-4.7654 17.495-13.252 17.495-13.847zm-103.04-0.30078c-0.98607 1.1922-5.6694 10.429-5.6694 10.429s13.557 9.5343 23.664 13.111c10.106 3.5731 27.361 4.7654 26.375 4.4682-0.98577-0.29715-21.692-9.5343-27.608-14.3-5.9158-4.769-16.515-13.709-16.762-13.709z" fill-rule="evenodd" stroke-width="1pt" fill="#fff"/> + <g id="g820" fill-rule="evenodd" transform="matrix(.29981 0 0 .36238 586 193.89)" stroke="#6d6666" fill="#fec500"> + <path id="path793" d="m394.65-212.97s28.777 17.265 35.354 21.376 27.954 22.199 29.598 21.377c1.645-0.822 13.155-9.866 13.155-9.866s-23.843-18.91-38.642-23.021-39.465-8.222-39.465-9.866z" stroke-width="1.403"/> + <path id="path795" d="m390.54-231.88c2.467 0 47.687 23.022 61.664 34.532s19.732 26.31 21.377 26.31c1.644 0 23.021-3.289 22.198-3.289-0.822 0-9.866-29.598-30.42-38.642-20.555-9.044-73.996-18.911-74.819-18.911z" stroke-width="1.403"/> + <path id="path803" d="m603.48-296.01c-0.822 0-9.044 24.666-11.511 32.065-2.466 7.4-6.577 23.021-6.577 23.021s-36.176 3.289-34.532-0.822c1.645-4.111 55.086-54.264 52.62-54.264z" transform="translate(0 4.6509)" stroke-width="1.403"/> + <path id="path796" d="m398.76-261.48s42.754 28.776 57.553 45.22c14.799 16.443 29.598 45.22 30.42 45.22 0.823 0 40.287-8.222 40.287-7.4s-46.042-46.042-68.241-60.019-59.197-21.377-60.019-23.021z" stroke-width="1.403"/> + <path id="path797" d="m443.16-273.81s21.377 32.887 25.487 44.398c4.111 11.51 16.444 41.109 16.444 41.109h33.709s-16.443-36.998-34.531-55.086-40.287-28.776-41.109-30.421z" transform="translate(0 4.6509)" stroke-width="1.403"/> + <path id="path798" d="m454.66-291.9c0.823 2.467 31.243 31.243 38.643 50.153 7.399 18.91 13.155 42.754 13.155 42.754l29.598-7.4s-26.31-48.509-42.753-61.664c-16.444-13.154-36.998-22.198-38.643-23.843z" transform="translate(0 4.6509)" stroke-width="1.403"/> + <path id="path799" d="m700.5-209.68s-61.663 6.578-83.862 12.333-34.532 27.132-34.532 27.132 28.777 10.688 30.421 9.044 18.91-18.91 37.82-25.488c18.91-6.577 51.797-22.199 50.153-23.021z" stroke-width="1.403"/> + <path id="path800" d="m698.03-249.97c-1.645 0.823-50.975 41.11-66.597 54.264-15.621 13.155-30.421 27.132-32.065 27.954-1.644 0.823-32.065-4.11-30.421-5.755 1.645-1.644 45.22-36.998 73.997-52.619 28.776-15.622 52.619-22.199 55.086-23.844z" stroke-width="1.403"/> + <path id="path801" d="m685.7-278.75c-4.933 5.755-53.442 45.22-66.597 59.197s-34.531 38.643-34.531 38.643-25.488-11.511-23.843-16.444c1.644-4.933 36.175-33.709 60.841-50.153 24.665-16.444 66.596-29.599 64.13-31.243z" stroke-width="1.403"/> + <path id="path802" d="m636.37-282.04c-0.822 0.823-29.598 31.243-35.354 39.465-5.755 8.222-23.021 44.398-23.021 44.398s-25.487-22.199-25.487-23.021 32.065-34.532 50.975-47.687 33.709-10.688 32.887-13.155z" stroke-width="1.403"/> + <path id="path818" d="m565.09-241.77c0 5.7794-4.6852 10.465-10.465 10.465-5.7795 0-10.465-4.6852-10.465-10.465 0-5.7795 4.6852-10.465 10.465-10.465 5.7795 0 10.465 4.6852 10.465 10.465z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path819" d="m586.02-227.81c0 5.1373-4.6852 9.3019-10.465 9.3019-5.7795 0-10.465-4.1646-10.465-9.3019s4.6852-9.3019 10.465-9.3019c5.7795 0 10.465 4.1646 10.465 9.3019z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path817" d="m539.51-238.28c0 5.1373-5.7263 9.3019-12.79 9.3019-7.0638 0-12.79-4.1646-12.79-9.3019s5.7263-9.3019 12.79-9.3019c7.0638 0 12.79 4.1646 12.79 9.3019z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path815" d="m573.23-219.09c0 9.9535-6.5072 18.022-14.534 18.022-8.027 0-14.534-8.0689-14.534-18.022 0-9.9535 6.5072-18.022 14.534-18.022 8.027 0 14.534 8.0689 14.534 18.022z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path805" d="m533.7-218.51c0 7.706-6.5072 13.953-14.534 13.953-8.027 0-14.534-6.2469-14.534-13.953 0-7.706 6.5072-13.953 14.534-13.953 8.027 0 14.534 6.2469 14.534 13.953z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path810" d="m513.93-207.46c0 6.7427-4.9455 12.209-11.046 12.209-6.1006 0-11.046-5.466-11.046-12.209 0-6.7427 4.9455-12.209 11.046-12.209 6.1006 0 11.046 5.466 11.046 12.209z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path813" d="m595.32-208.63c0 8.027-7.5483 14.534-16.86 14.534-9.3113 0-16.86-6.5072-16.86-14.534 0-8.027 7.5483-14.534 16.86-14.534 9.3114 0 16.86 6.5072 16.86 14.534z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path806" d="m554.63-229.56c0 4.8162-5.9866 8.7205-13.372 8.7205-7.3849 0-13.372-3.9043-13.372-8.7205s5.9866-8.7205 13.372-8.7205c7.3849 0 13.372 3.9043 13.372 8.7205z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path807" d="m556.95-210.37c0 7.0638-8.3292 12.79-18.604 12.79s-18.604-5.7263-18.604-12.79c0-7.0638 8.3292-12.79 18.604-12.79s18.604 5.7263 18.604 12.79z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path814" d="m604.62-187.7c0 8.6692-7.8086 15.697-17.441 15.697s-17.441-7.0278-17.441-15.697 7.8086-15.697 17.441-15.697c9.6325 0 17.441 7.0278 17.441 15.697z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path809" d="m509.28-191.77c0 5.7795-4.4249 10.465-9.8833 10.465s-9.8833-4.6852-9.8833-10.465c0-5.7794 4.4249-10.465 9.8833-10.465s9.8833 4.6852 9.8833 10.465z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path812" d="m579.04-193.51c0 7.3849-6.7675 13.372-15.116 13.372-8.3481 0-15.116-5.9866-15.116-13.372 0-7.3849 6.7675-13.372 15.116-13.372 8.3481 0 15.116 5.9866 15.116 13.372z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path808" d="m531.37-194.09c0 6.4216-5.9866 11.627-13.371 11.627-7.3849 0-13.371-5.2058-13.371-11.627 0-6.4216 5.9866-11.627 13.371-11.627 7.3849 0 13.371 5.2058 13.371 11.627z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path811" d="m554.63-190.61c0 7.0638-6.2469 12.79-13.953 12.79-7.706 0-13.953-5.7263-13.953-12.79 0-7.0638 6.2469-12.79 13.953-12.79 7.706 0 13.953 5.7263 13.953 12.79z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + <path id="path804" d="m494.16-267.35c3.488 0 27.906 8.139 27.906 8.139s-30.232 11.628-25.581 10.465 33.72-4.651 31.394-4.651c-2.325 0-25.58 22.092-18.604 20.929 6.977-1.162 20.93-15.115 22.092-15.115 1.163 0 15.116 22.092 16.279 20.929 1.162-1.163 0-22.092 1.162-22.092 1.163 0 29.069 13.953 26.743 12.79-2.325-1.163-18.603-17.441-17.441-17.441 1.163 0 38.371 3.488 36.045 2.325-2.325-1.162-24.417-11.627-24.417-11.627s16.278-15.115 12.79-15.115-30.231 15.115-27.906 13.952c2.326-1.162 29.069-31.393 29.069-31.393l-26.743 12.79s4.651-18.604 2.325-17.442c-2.325 1.163-20.929 24.418-22.092 24.418s-5.814-23.255-5.814-23.255 1.163 25.58-5.813 26.743c-6.977 1.163-31.394 5.814-31.394 4.651z" transform="translate(0 4.6509)" stroke-width="1.1224pt"/> + </g> + <g id="g775" fill-rule="evenodd" transform="matrix(.29981 0 0 .36238 618.89 139.61)"> + <path id="path772" d="m308.71 75.082c0.581 2.3255 19.185 44.184 47.672 43.021s40.114-8.139 38.952-8.72c-1.163-0.582-13.372-7.558-20.348-22.674-6.977-15.116-8.14-21.511-8.14-21.511l-58.136 9.8833z" fill="#00389b"/> + <path id="path773" d="m410.45 58.804s20.929 41.277 30.231 47.09c9.302 5.814 30.813 10.465 40.115 9.884 9.302-0.582 20.348 0 20.348 0s-9.302-4.07-16.86-26.743-9.883-30.231-9.883-30.231h-63.951z" fill="#00389b"/> + <path id="path774" d="m538.35 73.919s-4.069 30.231 0 37.789c4.07 7.558 24.418 21.511 24.418 21.511s24.417-2.907 24.998-21.511c0.582-18.604-8.139-36.045-8.139-36.045l-41.277-1.7441z" fill="#00389b"/> + <path id="path767" d="m288.94 21.015s1.163 4.6509 0 8.1391-11.046 12.79-11.046 20.348c0 7.5578 11.627 30.812 47.091 31.394 35.463 0.5813 80.229-19.185 79.647-19.767-0.58-0.581-84.88-56.974-86.04-56.393-1.16 0.5817-29.65 17.441-29.65 16.279z" stroke="#000" stroke-width="1.1224pt" fill="#005120"/> + <path id="path768" d="m523.23 61.129s7.557 20.348 10.464 22.674c2.907 2.3254 4.07 6.9764 4.651 6.9764s48.835 10.464 48.835 10.464 4.651-13.371-2.325-23.836c-6.977-10.465-33.138-37.789-33.138-37.789l-28.49 21.511z" stroke="#000" stroke-width="1.1224pt" fill="#005120"/> + <path id="path769" d="m556.37 36.13c1.162 0 12.79 9.8832 22.092 4.6509 9.301-5.2323 24.417-19.185 24.417-19.185s-12.79 4.0697-22.092 3.4883c-9.302-0.5815-23.836 11.627-24.417 11.046z" stroke="#000" stroke-width="1.1224pt" fill="#005120"/> + <path id="path766" d="m287.2 23.34s-3.488-9.8833-12.79-10.465c-9.302-0.5814-26.162 1.1626-31.975-3.4882-5.814-4.6509-7.558-15.697-10.465-15.116-2.907 0.58136-10.465 0-11.046 0s-3.488-9.3019 4.651-13.953c8.139-4.651 15.116-0.5814 19.766-4.0696 4.651-3.4883 11.628-5.8137 20.93-6.3951 9.302-0.5813 24.417 11.628 31.394 14.534 6.976 2.9068 22.092 6.3949 27.905 3.4881 5.814-2.9068 38.371-15.697 49.998-16.278 11.627-0.5813 36.045-1.1627 45.347-0.5813 9.302 0.5813 45.928 5.2323 56.974 10.465 11.046 5.2323 69.764 25.58 77.903 30.231 8.139 4.6509 26.162 11.627 26.162 11.627s-31.976 31.394-47.672 36.626c-15.697 5.2323-65.695 13.372-95.345 11.627-29.65-1.7441-52.904-4.651-75.578-16.278-22.68-11.626-47.1-22.672-48.26-28.486-1.16-5.813-0.58-13.371-0.58-13.371l-27.324 9.8833z" stroke="#000" stroke-width="1.1224pt" fill="#005120"/> + <path id="path770" d="m251.15-14.449c-1.163 0.5814-6.976 2.9069-5.814 4.0696 1.163 1.1627 3.489 4.6509 10.465 4.0695 6.977-0.58136 14.534-4.6509 14.534-4.6509s-8.72-4.0696-19.185-3.4882z" stroke="#000" stroke-width="1.1224pt" fill="#005120"/> + <path id="path771" d="m250.57-13.286v6.395s8.139 2.3254 8.139 0.58136c0-1.7441 0.581-5.8137-1.163-5.8137s-6.395-0.5813-6.976-1.1627z" stroke="#000" stroke-width="1.1224pt"/> + <path id="path757" d="m331.95-8.4527c2.056-3.6998 0-8.6327 11.922-14.388 11.921-5.7553 32.681-4.1109 32.681-4.1109s-5.96 4.5219-6.166 9.2495c-0.205 4.7275 0.411 6.783 0.411 6.783s-11.305-3.6998-19.938-1.4388c-8.633 2.2609-18.704 4.522-18.91 3.9053z" stroke="#000007" stroke-width="1.1224pt" fill="#001707"/> + <path id="path758" d="m385.4-28.596c-1.233 0.6167-10.277 10.688-9.25 13.772 1.028 3.0832 13.155 10.483 17.061 9.8662 3.905-0.61661 21.787-9.2494 22.815-13.566 1.028-4.3164 1.85-10.072 0.411-11.305-1.439-1.2333-30.832 1.6444-31.037 1.2332z" stroke="#000007" stroke-width="1.1224pt" fill="#001707"/> + <path id="path760" d="m424.66-30.24c-2.261 2.261-1.439 13.155-0.617 14.388 0.822 1.2333 15.005 15.416 18.088 16.238 3.083 0.82222 25.899-1.4388 27.749-3.9053s7.399-12.949 5.755-15.416c-1.645-2.4666-6.578-5.7553-21.788-9.044s-24.254-2.8776-29.187-2.261z" stroke="#000007" stroke-width="1.1224pt" fill="#001707"/> + <path id="path761" d="m482.82-16.469c3.7 1.8499 25.282 12.333 38.026 20.76 12.743 8.4274 17.882 18.088 21.582 18.91 3.7 0.8221 18.704-8.2218 19.321-10.688 0.617-2.4666-18.293-15.621-31.037-21.582-12.744-5.9608-47.892-6.783-47.892-7.3996z" stroke="#000007" stroke-width="1.1224pt" fill="#001707"/> + <path id="path762" d="m478.3-7.6305c-1.85 1.6444 23.021 45.014 27.748 46.453 4.728 1.4389 33.093-8.4273 32.682-11.716-0.41-3.288-7.81-9.866-25.28-19.526-17.47-9.6608-31.65-16.033-35.15-15.21z" stroke="#000007" stroke-width="1.1224pt" fill="#001707"/> + <path id="path763" d="m447.47 8.1964c-3.905 2.261-10.071 41.109-6.166 42.959 3.905 1.8499 52.003-4.7275 53.853-9.0439 1.849-4.3165-19.733-38.642-26.105-38.642-6.371 0-17.882 1.6444-21.582 4.7275z" stroke="#000007" stroke-width="1.1224pt" fill="#001707"/> + <path id="path764" d="m397.73-0.02536c-5.14 4.7276-4.11 40.903-1.85 43.164 2.261 2.261 30.831 9.6605 33.914 6.9885 3.084-2.6721 7.195-43.37 4.317-46.453-2.878-3.0832-10.894-10.483-17.06-11.099-6.167-0.6166-16.444 5.9607-19.321 7.3996z" stroke="#000007" stroke-width="1.1224pt" fill="#001707"/> + <path id="path765" d="m333.19-0.64197c-4.728 3.6998-4.933 13.36 0.205 15.005 5.139 1.6443 17.882 7.1941 29.804 12.333 11.922 5.1386 18.705 11.305 22.199 11.099 3.494-0.2056 6.783-36.381 3.083-38.437-3.7-2.0554-14.594-3.6998-24.871-3.2887-10.277 0.41107-25.282 1.4388-30.42 3.2887z" stroke="#000007" stroke-width="1.1224pt" fill="#001707"/> + </g> + <path id="path643" d="m655.26 306.14c2.5282-2.4618 6.4611-8.4792 11.798-8.752 5.3373-0.27412 10.956 4.6495 10.956 4.6495s5.6181 22.976 5.3373 22.976c-0.28085 0-9.27 6.5644-9.551 6.5644-0.28085 0-3.9327-9.0261-7.3036-8.2064-3.3709 0.82104-3.09 13.129-3.6519 12.309-0.56184-0.82105-14.888-17.779-14.326-18.326 0.56184-0.54691 7.0228-10.393 6.7418-11.214z" fill-rule="evenodd" fill-opacity=".99608" stroke-width="1pt" fill="#d40f0f"/> + <path id="path642" d="m803.59 303.13c1.6851-0.27279 9.2702-6.0174 14.607-5.7433 5.3382 0.2728 8.4283 2.7346 11.237 5.1964 2.8085 2.4618 6.1801 8.752 6.1801 8.752s-6.7418 18.599-7.3035 18.599-3.3716 1.6421-3.9333 0.27413-2.2468-5.7446-5.6184-6.2916c-3.3702-0.54692-4.2135 6.0174-4.2135 6.0174l-10.955-26.804z" fill-rule="evenodd" fill-opacity=".99608" stroke-width="1pt" fill="#d40f0f"/> + <path id="path640" d="m807.24 308.88c0 1.6421 10.394 27.353 27.249 32.275 16.854 4.9236 22.192-4.6495 24.157-7.931 1.9666-3.2828 8.99-3.0087 8.99-3.0087s-1.6851 24.07-4.495 27.078c-2.8085 3.0087-5.0567 9.5731-20.787 9.8458-15.73 0.27413-30.057-14.769-34.832-19.146-4.7765-4.3767-10.957-15.863-13.485-21.061-2.527-5.1964 13.484-17.504 13.203-18.052z" fill-rule="evenodd" fill-opacity=".99608" stroke-width="1pt" fill="#fddc59"/> + <path id="path641" d="m624.08 360.02c0.28099 0 7.5846 7.9323 18.259 7.1113 10.675-0.81971 28.934-7.1113 37.361-18.052 8.4273-10.94 12.641-22.702 12.641-22.702s-12.36-21.881-12.641-21.881c-0.28085 0-1.4045 7.1113-3.6518 11.761-2.2474 4.6495-8.4273 17.778-18.821 21.882-10.394 4.1026-10.394 5.7433-14.607 5.1964-4.2137-0.54691-15.169-7.1113-15.169-7.3854 0-0.27279-5.3373 12.856-5.3373 12.856s-1.1237 8.4792 1.9664 11.214z" fill-rule="evenodd" fill-opacity=".99608" stroke-width="1pt" fill="#fddc59"/> + <path id="path637" d="m655.07 305.38c-0.79458 0-20.658 10.831-19.863 15.473 0.79445 4.6415 34.165 70.399 105.67 71.172 71.507 0.77446 115.21-59.569 112.03-69.626-3.1775-10.056-25.424-21.661-25.424-21.661s5.561 4.6415 4.767 10.831c-0.79541 6.1891-25.426 59.569-87.399 58.023-61.974-1.5476-91.372-48.738-91.372-54.154 0-5.4146 3.1782-8.5098 1.5892-10.057z" fill-rule="evenodd" fill-opacity=".99608" stroke-width="1pt" fill="#fddc59"/> + <path id="path639" d="m848.81 353.19c1.6865-1.368 12.08-29.814 17.979-28.993 5.8999 0.82104 3.9333 9.2989 3.3716 11.488-0.5617 2.1877-6.4616 21.881-6.4616 21.881s0.28154-4.6495-3.6518-5.7433c-3.9319-1.0938-10.394 1.9149-11.237 1.368z" fill-rule="evenodd" fill-opacity=".99608" stroke-width="1pt" fill="#d40f0f"/> + <path id="path638" d="m624.08 360.31c0-1.5463-4.7672-6.9622 0.79445-8.5098 5.5618-1.5463 12.713 1.5476 12.713 1.5476s-3.9728-11.605-8.7399-20.888c-4.7672-9.283-6.3564-7.7354-10.329-6.1891-3.9726 1.5476-3.8762 5.6422-1.4925 11.831 2.3836 6.1891 7.0544 23.756 7.0544 22.208z" fill-rule="evenodd" fill-opacity=".99608" stroke-width="1pt" fill="#d40f0f"/> + <g id="g1773"> + <polygon id="polygon744" fill="#fdc400" fill-rule="evenodd" transform="matrix(.38319 0 0 .38944 593.86 42.315)" d="m 249.94155,680.31494 17.99644,-59.98052 -49.9885,-37.71849 62.60607,-1.41936 20.42512,-59.19755 20.69623,59.10331 62.61192,1.13239 -49.8151,37.94722 18.27118,59.8974 -51.48366,-35.65064 z" stroke-width="1pt" points="249.94 680.32 267.94 620.33 217.95 582.62 280.56 581.2 300.98 522 321.68 581.1 384.29 582.24 334.47 620.18 352.74 680.08 301.26 644.43"/> + <path id="path740" d="m673.23 325.98-0.001 256.89c0.59 125.55-148.82 235.49-248.03 256.89-99.22-21.4-248.62-131.34-248.03-256.88v-256.89h496.06z" fill-rule="evenodd" transform="matrix(.29981 0 0 .34989 617.15 71.606)" stroke-width="1pt" fill="#fff"/> + <path id="path556" d="m177.16 325.98 0.421 160.73s2.386-3.288 35.012-1.284c32.627 2.004 35.433 35.433 70.867 35.433 35.433 0 35.433-35.433 70.866-35.433s35.433 35.433 70.866 35.433 35.433-35.433 70.866-35.433 35.433 35.433 72.87 37.459c33.429-2.026 33.429-37.459 69.062-39.463l35.233 2.004v-159.45h-496.06z" fill-rule="evenodd" fill-opacity=".99608" transform="matrix(.29981 0 0 .34989 617.15 71.606)" stroke="#000" stroke-width="1.1224pt" fill="#d40f0f"/> + <path id="path557" d="m177.16 432.28v53.15h35.433c32.627 2.004 35.432 35.433 70.866 35.433 35.433 0 35.433-35.433 70.866-35.433s35.433 35.433 70.866 35.433 35.434-35.433 70.867-35.433 33.429 33.407 70.866 35.433c33.429-2.026 35.233-33.429 70.866-35.433h35.433v-53.15h-35.433c-35.433 0-35.433 35.433-70.866 35.434-35.433-0.001-35.433-35.434-70.866-35.434s-35.433 35.433-70.867 35.433c-35.433 0-35.433-35.433-70.866-35.433s-35.433 35.433-70.866 35.433-35.433-35.433-70.866-35.433h-35.433z" fill-rule="evenodd" fill-opacity=".99608" transform="matrix(.29981 0 0 .34989 617.15 108.8)" stroke-width="1pt" fill="#0062bb"/> + <path id="path558" d="m187.85 432.28 24.745 53.15c32.627 2.004 35.432 35.433 70.866 35.433 35.433 0 35.433-35.433 70.866-35.433s35.433 35.433 70.866 35.433 35.434-35.433 70.867-35.433 33.429 33.407 70.866 35.433c33.429-2.026 34.411-33.429 70.044-35.433l25.567-53.972-24.745 0.822c-35.433 0-35.433 35.433-70.866 35.434-35.433-0.001-35.433-35.434-70.866-35.434s-35.433 35.433-70.867 35.433c-35.433 0-35.433-35.433-70.866-35.433s-35.433 35.433-70.866 35.433-35.433-35.433-70.866-35.433h-24.745z" fill-rule="evenodd" fill-opacity=".99608" transform="matrix(.29981 0 0 .34989 617.15 145.99)" stroke-width="1pt" fill="#0062bb"/> + <path id="path559" d="m425.2 520.87c35.434 0 116.62-53.15 115.79-53.15 0.823 0-9.494-35.433-44.927-35.433s-35.433 35.433-70.867 35.433c-35.433 0-35.433-35.433-70.866-35.433s-44.477 35.433-44.556 35.433c-1.645 0 79.989 53.15 115.42 53.15z" fill-rule="evenodd" fill-opacity=".99608" transform="matrix(.29981 0 0 .34989 617.15 183.18)" stroke-width="1pt" fill="#0062bb"/> + <g id="g611" transform="matrix(1.4653 0 0 1.2748 556.79 30.774)"> + <path id="path577" d="m90.849 117.57c0.8221 0 8.2215 1.233 13.565 0.822 5.344-0.411 7.4-2.467 7.4-2.878v-1.233h6.988s1.233 5.755 0.411 6.166-2.878 2.056-3.289 2.056 0-2.878-0.822-2.056-1.233 2.056-1.233 2.056-0.822-1.234-1.233-1.234-1.233 1.234-1.233 1.234 0-1.234-0.412-1.234c-0.411 0-2.466 2.056-2.466 2.056l-2.055-1.645s-1.234 2.056-1.645 2.056-2.877-1.644-2.877-1.644l-4.1111 2.466s0-3.7-0.8222-3.289c-0.8221 0.411-5.344 0.411-5.344 0.411s-1.2332 2.467-1.6443 2.467-2.0554-2.055-1.6443-2.055 1.2332-1.234 0.8221-1.645c-0.411-0.411-2.4664 0-2.4664-0.411s-0.8222-2.878-0.4111-2.878 2.0554 0.412 2.0554 0.412v-2.467h2.0554l0.4111 2.467z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)" stroke="#000" stroke-width=".70149" fill="#fdc400"/> + <path id="path578" d="m98.248 94.136c-0.4111 0-3.2886 3.2887-2.8776 6.9879 0.4111 3.7 7.3996 9.044 7.3996 9.044s3.7-1.644 4.933 0 1.233 6.577 0.822 6.577-5.344 1.234-5.344 0.411c0-0.822 0-1.644-0.411-1.644s-4.9331 0.411-4.9331 0.411l0.4111-1.644-4.1108-0.822 1.6443-1.645s-6.5773-2.877-6.1662-2.877 2.8776-1.644 2.8776-1.644l-4.933-3.289h2.8776s-4.1108-3.289-3.6997-3.289c0.411 0 2.4664 0.411 2.4664 0.411l-1.2332-3.2882h1.2332l-1.2332-2.4665 2.0554-0.8221 1.2332 2.0553-0.411-4.9329 2.8775 0.4111v4.1108s1.2332-2.4665 1.2332-2.8776c0-0.411 3.6998 1.6443 3.2887 0.8222z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)" stroke="#000" stroke-width=".70149" fill="#fdc400"/> + <path id="path580" d="m161.97 119.62c-0.514 0.514-2.056 1.644-2.056 1.644s3.495-0.308 3.392-0.308-1.233-1.028-1.336-1.336z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path581" d="m164.95 121.57c-0.205 0.308-0.822 3.494-0.411 3.288 0.411-0.205 2.055-2.569 2.055-2.569l-1.644-0.719z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path582" d="m169.67 121.98c0.513 0.514 2.877 2.877 2.569 2.363-0.308-0.513-0.617-2.672-0.822-2.774-0.206-0.103-1.542 0.616-1.747 0.411z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path583" d="m128.26 118.59c-0.308 0.103-2.877 2.056-2.877 2.056s4.316-0.823 4.11-0.823c-0.205 0-1.336-0.924-1.233-1.233z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path584" d="m130.93 121.06c-0.411 0.411-1.747 3.288-1.233 3.186 0.514-0.103 2.775-1.953 2.775-1.953l-1.542-1.233z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path585" d="m129.28 117.05c-0.308-0.103-2.467-1.131-2.364-1.131s2.878-0.719 2.878-0.719l-0.514 1.85z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path586" d="m88.588 115.72-3.0831-2.467 3.9053 1.233-0.8222 1.234z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path587" d="m85.916 117.36c-0.4111 0-4.3164 2.466-4.2136 2.466s5.4468 0.103 5.344 0c-0.1027-0.102-0.9249-2.26-1.1304-2.466z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path588" d="m88.382 120.96c-0.4111 0.206-3.4942 2.569-3.2887 2.569 0.2056 0 4.6247 0.103 4.6247 0s-1.2333-2.466-1.336-2.569z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path589" d="m87.971 95.366s-1.1305-2.8776-1.0277-2.8776c0.1027 0 2.8775 2.261 2.8775 2.261l-1.8498 0.6166z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path590" d="m91.054 91.769c0-0.1027 0.3083-1.8498 0.3083-1.8498s2.7748 2.1581 2.672 2.1581c-0.1027 0-2.7748 0-2.9803-0.3083z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path591" d="m95.371 93.105c0-0.1028 0.3083-2.672 0.3083-2.672s2.5693 3.4942 2.3638 3.597c-0.2056 0.1028-2.4665-0.5138-2.6721-0.925z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)"/> + <path id="path599" d="m137.26 110.86c0 0.206 4.316 3.7 4.419 4.522 0.102 0.822-7.811 1.028-7.811 1.028s-2.261-1.747-2.98-1.645c-0.72 0.103-1.028 1.85-1.028 1.85l1.85 1.028-3.494 0.205 1.028 1.953 2.672-0.206-0.617 1.85s1.644 1.234 1.953 1.028c0.308-0.205 1.336-2.055 2.158-2.364 0.822-0.308 2.569-0.308 2.569-0.308s-1.336 2.261-0.719 2.261c0.616 0 3.391-2.364 3.391-2.364s0.617 2.158 0.719 2.158c0.103 0 2.056-2.466 2.056-2.466s0 1.953 0.308 1.953 3.186-2.467 3.186-2.467 2.261 2.878 2.569 2.672c0.309-0.205 0.617-3.083 0.925-3.083s2.261-0.308 2.261-0.411-1.233-1.131-1.439-2.569c-0.205-1.439 0.206-4.83 0.103-4.83s-13.874 0.513-14.079 0.205z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.82217 37.82)" stroke="#000" stroke-width=".70149" fill="#fdc400"/> + <path id="path598" d="m115.37 104.6h40.286c4.111 0 7.81-1.644 7.81-4.111 0-2.4659-6.577-2.877-9.043-2.0548-2.467 0.8221-13.155 5.7548-17.677 5.3438s-8.632-3.289-9.043-6.166c-0.412-2.8776 2.055-5.3441 6.577-5.3441s10.277 1.6444 11.51 1.2333 4.111-3.6997 5.344-4.1108c1.233-0.411 4.933-0.8221 4.933-0.8221l-1.644 1.2332 5.344-1.2332s-4.111 4.5218-8.222 5.7551c-4.111 1.2332-12.743 0.8221-16.032 0.8221s-4.933-0.411-4.522 2.0554c0.411 2.4665 2.878 4.1111 4.933 3.6991 2.056-0.411 8.222-2.4658 8.222-2.4658l-1.645-1.2333 7.4-0.411s-0.411-1.2333 0-1.2333 4.111 0.4111 4.111 0.4111-2.467-1.2333-2.056-1.2333 2.056 0 5.344 0.4111c3.289 0.4111 10.277 1.6443 9.866 4.9325-0.411 3.289-2.877 6.166-5.755 6.166s-5.344-0.822-5.344 0.412c0 1.233 3.289 2.055 5.344 2.055s4.522-1.644 4.933-1.644 1.233 2.466 1.644 2.466 2.878-0.822 2.878-0.822l-1.644 4.522 2.877 0.822s-1.644 1.644-1.233 1.644 2.877 0 2.877 0.411-3.288 2.878-3.288 3.289 2.466 1.644 2.466 1.644-1.644 2.467-2.055 2.056-2.056-2.467-2.056-2.467-0.411 1.645-1.233 1.645-2.466-0.411-2.466-0.411 1.233-2.467 0.822-2.467-2.467 1.644-2.467 1.233l-1.232-1.236s3.288-1.336 3.288-3.289c0-1.952-1.336-3.905-7.296-4.213-5.961-0.309-6.064 1.438-10.483 1.233-4.419-0.206-4.419-1.953-7.708-1.953-3.288 0-13.463 4.111-18.19 4.008-4.727-0.102-10.688-0.411-10.483-0.616 0.206-0.206 3.906-9.661 4.008-9.966z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.82217 37.82)" stroke="#000" stroke-width=".70149" fill="#fdc400"/> + <path id="path592" d="m106.88 102.46c-0.411 0.206-4.008 0.72-4.214 4.522-0.205 3.803 0.309 3.803 0.72 3.597 0.411-0.205 1.233-3.494 1.233-3.494s-1.233 4.522 0.103 5.55c1.336 1.027 2.775 1.438 2.775 1.438l0.513-3.597s-1.027 3.495 1.439 4.728c2.467 1.233 3.392 0.308 3.186-0.617-0.205-0.925-0.925-3.288-0.925-3.288s1.953 2.158 2.056 2.363c0.102 0.206 1.027 1.85 3.494 1.131 2.466-0.72 0.719-2.364 0.719-2.364l-2.98-2.46s3.083 3.185 4.419 2.055-1.028-3.597-0.925-3.494 1.953 3.494 2.672 1.336-1.13-2.775-1.747-4.83c-0.617-2.056-1.131-2.261-0.514-3.495 0.617-1.233 0.72-3.5965 0.72-3.5965s2.569 0.6165 2.363-1.5416c-0.205-2.1582-2.775-2.672-3.288-2.7748-0.514-0.1027-0.412-2.2609-0.617-2.1582-0.206 0.1028-1.85 1.336-1.85 1.336s-1.439-3.3915-1.747-3.1859-1.953 1.9527-3.186 2.0555c-1.233 0.1027-1.953 1.8499-1.953 1.8499s-4.316-2.0555-4.213 1.3359c0.103 3.3915 2.569 2.5693 2.569 2.6721s-0.411 4.7276-0.822 4.9326z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-.13899 37.594)" stroke="#000" stroke-width=".70149" fill="#fdc400"/> + <path id="path600" d="m109.25 96.386c0.514-0.1027 1.336-0.7193 2.158-0.5138s2.055 1.1305 1.336 1.4388c-0.72 0.3083-1.233 0.411-1.953 0.1027-0.719-0.3083-1.233-0.8221-1.541-1.0277z" fill-rule="evenodd" fill-opacity=".99608" transform="matrix(.99010 -.14036 .14036 .99010 -12.577 54.751)"/> + <path id="path601" d="m109.25 96.386c0.514-0.1027 1.336-0.7193 2.158-0.5138s2.055 1.1305 1.336 1.4388c-0.72 0.3083-1.233 0.411-1.953 0.1027-0.719-0.3083-1.233-0.8221-1.541-1.0277z" fill-rule="evenodd" fill-opacity=".99608" transform="matrix(-.99010 -.14036 -.14036 .99010 239.2 54.648)"/> + <path id="path602" d="m110.99 103.17c0.103 0.514 0.411 4.831 0.616 4.522 0.206-0.308 1.748-4.419 1.645-4.419s-2.158 0.103-2.261-0.103z" fill-rule="evenodd" fill-opacity=".99608" transform="translate(-5.9605e-7 37.643)" stroke="#000" stroke-width=".42089" fill="#000039"/> + <path id="path603" d="m109.96 103.17c0.049-1.215 0.822-1.13 2.467-0.925 1.644 0.206 2.466 1.028 2.363 1.234-0.102 0.205-1.438 0.719-2.569 0.616-1.336-0.411-2.298 0.089-2.261-0.925z" transform="translate(-5.9605e-7 37.789)" stroke="#000" stroke-width=".84179" fill="none"/> + <path id="path607" d="m112.43 100.08-0.206 1.953" transform="translate(-5.9605e-7 37.789)" stroke="#000" stroke-width="1.1224pt" fill="none"/> + <path id="path608" d="m119.32 94.844s1.336 0.6167 1.131 1.2333c-0.206 0.6166-1.131 0.925-1.131 0.925" transform="translate(-5.9605e-7 37.789)" stroke="#000" stroke-width="1.1224pt" fill="none"/> + <path id="path609" d="m108.12 94.33c-0.308 0.1028-0.719 0.3084-0.925 1.1305-0.205 0.8222 0.925 1.336 0.925 1.336" transform="translate(-5.9605e-7 37.789)" stroke="#000" stroke-width="1.1224pt" fill="none"/> + <path id="path610" d="m111.19 136.13s-1.454 1.454 1.017 1.454 0.727-1.308 0.727-1.308" transform="translate(.14534 .29065)" stroke="#000" stroke-width="1.1224pt" fill="none"/> + </g> + <polygon id="polygon749" fill="#fdc400" fill-rule="evenodd" transform="matrix(.34772 0 0 .34286 640.98 116.4)" d="m 249.94155,680.31494 17.99644,-59.98052 -49.9885,-37.71849 62.60607,-1.41936 20.42512,-59.19755 20.69623,59.10331 62.61192,1.13239 -49.8151,37.94722 18.27118,59.8974 -51.48366,-35.65064 z" stroke-width="1pt" points="249.94 680.32 267.94 620.33 217.95 582.62 280.56 581.2 300.98 522 321.68 581.1 384.29 582.24 334.47 620.18 352.74 680.08 301.26 644.43"/> + <polygon id="polygon750" fill="#003017" fill-rule="evenodd" fill-opacity=".99608" transform="matrix(.28976 0 0 .27236 658.43 158.85)" d="m 249.94155,680.31494 17.99644,-59.98052 -49.9885,-37.71849 62.60607,-1.41936 20.42512,-59.19755 20.69623,59.10331 62.61192,1.13239 -49.8151,37.94722 18.27118,59.8974 -51.48366,-35.65064 z" stroke-width="1pt" points="249.94 680.32 267.94 620.33 217.95 582.62 280.56 581.2 300.98 522 321.68 581.1 384.29 582.24 334.47 620.18 352.74 680.08 301.26 644.43"/> + <polygon id="polygon751" fill="#fdc400" fill-rule="evenodd" transform="matrix(.34397 0 0 .32423 606.09 87.419)" d="m 249.94155,680.31494 17.99644,-59.98052 -49.9885,-37.71849 62.60607,-1.41936 20.42512,-59.19755 20.69623,59.10331 62.61192,1.13239 -49.8151,37.94722 18.27118,59.8974 -51.48366,-35.65064 z" stroke-width="1pt" points="249.94 680.32 267.94 620.33 217.95 582.62 280.56 581.2 300.98 522 321.68 581.1 384.29 582.24 334.47 620.18 352.74 680.08 301.26 644.43"/> + <polygon id="polygon752" fill="#003017" fill-rule="evenodd" fill-opacity=".99608" transform="matrix(.28664 0 0 .25756 623.36 127.56)" d="m 249.94155,680.31494 17.99644,-59.98052 -49.9885,-37.71849 62.60607,-1.41936 20.42512,-59.19755 20.69623,59.10331 62.61192,1.13239 -49.8151,37.94722 18.27118,59.8974 -51.48366,-35.65064 z" stroke-width="1pt" points="249.94 680.32 267.94 620.33 217.95 582.62 280.56 581.2 300.98 522 321.68 581.1 384.29 582.24 334.47 620.18 352.74 680.08 301.26 644.43"/> + <polygon id="polygon753" fill="#fdc400" fill-rule="evenodd" transform="matrix(.34840 0 0 .32423 677.16 87.419)" d="m 249.94155,680.31494 17.99644,-59.98052 -49.9885,-37.71849 62.60607,-1.41936 20.42512,-59.19755 20.69623,59.10331 62.61192,1.13239 -49.8151,37.94722 18.27118,59.8974 -51.48366,-35.65064 z" stroke-width="1pt" points="249.94 680.32 267.94 620.33 217.95 582.62 280.56 581.2 300.98 522 321.68 581.1 384.29 582.24 334.47 620.18 352.74 680.08 301.26 644.43"/> + <polygon id="polygon754" fill="#003017" fill-rule="evenodd" fill-opacity=".99608" transform="matrix(.29033 0 0 .25756 694.65 127.56)" d="m 249.94155,680.31494 17.99644,-59.98052 -49.9885,-37.71849 62.60607,-1.41936 20.42512,-59.19755 20.69623,59.10331 62.61192,1.13239 -49.8151,37.94722 18.27118,59.8974 -51.48366,-35.65064 z" stroke-width="1pt" points="249.94 680.32 267.94 620.33 217.95 582.62 280.56 581.2 300.98 522 321.68 581.1 384.29 582.24 334.47 620.18 352.74 680.08 301.26 644.43"/> + </g> + <path id="path3870" d="m640.9 319.18c7.8383 33.733 40.92 58.77 85.477 64.69 57.231 7.6042 111.83-21.392 121.87-64.724" fill="none"/> + <path id="text3872" d="m644.94 331.5 10.359-5.2672 0.97477 1.917-4.0628 2.0658 1.3442 2.6435 4.0628-2.0658 0.97477 1.917-10.359 5.2672-0.97477-1.917 4.695-2.3873-1.3442-2.6435-4.695 2.3873-0.97476-1.917m4.3364 8.1568 9.6712-6.4431 3.3094 4.9675-1.6077 1.071-2.117-3.1777-2.2357 1.4894 1.9706 2.9579-1.5323 1.0208-1.9706-2.9579-2.6627 1.7739 2.1672 3.253-1.6328 1.0878-3.3596-5.0428m6.739 9.3562 8.5313-7.8906 1.4603 1.5788-3.346 3.0948 2.0136 2.1772 3.346-3.0948 1.4603 1.5788-8.5313 7.8906-1.4603-1.5788 3.8668-3.5764-2.0136-2.1772-3.8668 3.5764-1.4603-1.5788m11.141 4.6726 1.3843 1.214 2.5163-4.277-3.9006 3.063m-5.4123 1.4564 9.6308-7.0107 2.1843 1.9155-5.6764 10.479-1.7531-1.5374 1.4943-2.5738-1.8722-1.6419-2.3453 1.8275-1.6623-1.4578m8.4034 7.0262 5.739-7.8253-2.0081-1.4727 1.1335-1.5456 5.7625 4.2262-1.1335 1.5456-2.0081-1.4727-5.739 7.8253-1.7464-1.2808m4.713 3.3909 6.0539-9.9194 1.8357 1.1204-2.3744 3.8905 2.5314 1.5449 2.3744-3.8905 1.8357 1.1204-6.0539 9.9194-1.8357-1.1204 2.7439-4.496-2.5314-1.5449-2.7439 4.496-1.8357-1.1204m11.38 6.481 4.8847-10.544 5.5119 2.5534-0.79932 1.7254-3.5468-1.643-1.1546 2.4923 3.3482 1.551-0.78028 1.6844-3.3482-1.551-2.1505 4.6423-1.9651-0.91033m10.779-1.6014c-0.67836 1.7873-1.0024 2.953-0.97222 3.4972 0.0367 0.54126 0.33725 0.91899 0.90165 1.1332 0.55499 0.21065 1.0193 0.1286 1.3929-0.24616 0.3801-0.37767 0.91291-1.4695 1.5984-3.2756s1.0122-2.9788 0.98025-3.5183c-0.032-0.53947-0.32786-0.91542-0.88754-1.1279-0.5597-0.21243-1.0305-0.12746-1.4124 0.25491-0.3819 0.38239-0.91559 1.4766-1.6011 3.2827m-2.0671-0.78457c0.43736-1.1523 0.84045-2.0513 1.2093-2.6969 0.37059-0.65031 0.73717-1.1058 1.0997-1.3663 0.50255-0.37424 1.0127-0.58417 1.5304-0.62981 0.51773-0.0456 1.134 0.0672 1.849 0.33857 0.7149 0.27136 1.2509 0.59586 1.608 0.97352 0.35707 0.37768 0.60179 0.87413 0.73419 1.4894 0.0948 0.44493 0.0636 1.0304-0.0936 1.7563-0.15247 0.72775-0.44648 1.6654-0.88205 2.813-0.4338 1.1429-0.836 2.0395-1.2066 2.6898-0.36882 0.64562-0.73394 1.1043-1.0954 1.3761-0.50728 0.37246-1.0198 0.5815-1.5375 0.62713-0.51775 0.0456-1.1341-0.0672-1.849-0.33857-0.7149-0.27135-1.2509-0.59585-1.608-0.97352-0.35708-0.37767-0.59946-0.87323-0.72714-1.4867-0.0984-0.43552-0.0713-1.0172 0.0811-1.7449 0.15424-0.73244 0.45004-1.6748 0.88741-2.8271m9.9954-2.4684 2.0756 0.61806-2.2353 7.507c-0.25555 0.85823-0.32561 1.4725-0.21016 1.8428 0.12169 0.36693 0.45013 0.63007 0.98532 0.78943 0.53036 0.15792 0.94273 0.11275 1.2371-0.13553 0.2992-0.24684 0.57874-0.80661 0.8386-1.6793l2.2267-7.4781 2.0467 0.60944-2.2892 7.6879c-0.22254 0.74733-0.42888 1.2816-0.61903 1.603-0.1839 0.31792-0.41346 0.57763-0.68866 0.77913-0.41523 0.30153-0.89816 0.47791-1.4488 0.52916-0.54922 0.0464-1.1613-0.0309-1.8363-0.23186-1.2729-0.37902-2.0902-0.9216-2.4521-1.6277-0.35562-0.70952-0.32885-1.7513 0.0803-3.1255l2.2892-7.6879m5.5582 13.703 2.5377-11.34 2.1724 0.48613 1.1782 8.5917 1.7159-7.9441 1.9956 0.44657-2.5377 11.34-2.1576-0.48283-1.197-8.6114-1.7192 7.9588-1.9883-0.44493m11.36 0.57799 0.94681 0.14828c0.48209 0.0755 0.82551 0.0936 1.0302 0.0544 0.20472-0.0392 0.37748-0.13438 0.51826-0.28546 0.2455-0.26707 0.45097-0.65244 0.61642-1.1561 0.16622-0.50863 0.33884-1.3345 0.51787-2.4776 0.17435-1.1133 0.25152-1.9312 0.23152-2.4537-0.02-0.52251-0.12907-0.93167-0.32715-1.2275-0.10402-0.14867-0.25154-0.26343-0.44256-0.34428-0.18527-0.085-0.48666-0.16022-0.90414-0.22561l-0.91698-0.14361-1.2703 8.1112m-2.3599 1.3642 1.798-11.481 3.4368 0.53824c0.70078 0.10976 1.2481 0.25658 1.6419 0.44046 0.3988 0.18468 0.71138 0.43222 0.93775 0.74262 0.34107 0.4557 0.54653 0.99708 0.61638 1.6241 0.0756 0.62288 0.0145 1.5655-0.18319 2.8279-0.25532 1.6302-0.49305 2.7743-0.71322 3.4323-0.2194 0.65307-0.50274 1.1943-0.85004 1.6236-0.33736 0.43091-0.75691 0.70382-1.2586 0.81874-0.496 0.11073-1.323 0.0754-2.481-0.10594l-2.9448-0.46119m8.9886 1.33 1.1172-11.567 5.9413 0.57381-0.18571 1.9228-3.8006-0.36707-0.25826 2.674 3.5377 0.34168-0.17701 1.8327-3.5377-0.34168-0.30758 3.1847 3.8907 0.37577-0.18861 1.9529-6.0314-0.58252m9.8168-0.93633 0.95773 0.0345c0.48765 0.0176 0.83079-0.005 1.0294-0.0687 0.19859-0.0633 0.35879-0.17836 0.48058-0.34513 0.21196-0.29441 0.37008-0.7015 0.47438-1.2213 0.10447-0.5248 0.17753-1.3654 0.21917-2.5217 0.0406-1.1261 0.0198-1.9474-0.0623-2.4638-0.0821-0.51641-0.23908-0.90968-0.47098-1.1798-0.12098-0.13523-0.28112-0.23161-0.4804-0.28914-0.19408-0.0623-0.50227-0.10113-0.92457-0.11635l-0.92757-0.0334-0.29545 8.2048m-2.1807 1.6355 0.4182-11.613 3.4765 0.12519c0.70887 0.0255 1.2698 0.10614 1.6827 0.24181 0.41796 0.13588 0.75779 0.34444 1.0195 0.62569 0.39291 0.41184 0.66137 0.9249 0.80538 1.5392 0.1492 0.60945 0.20081 1.5527 0.15484 2.8296-0.0594 1.649-0.15921 2.8133-0.29945 3.4928-0.14008 0.67454-0.35697 1.2456-0.65067 1.7133-0.28366 0.46802-0.66773 0.78894-1.1522 0.96279-0.47928 0.16899-1.3046 0.2324-2.476 0.19022l-2.9788-0.10727m12.945 0.15187-0.46134-11.612 2.164-0.086 0.46133 11.612-2.164 0.086m5.7797-0.30591-0.7941-9.6717-2.4818 0.20377-0.15684-1.9103 7.1221-0.58477 0.15684 1.9103-2.4818 0.20377 0.7941 9.6717-2.1584 0.17722m7.624-12.46 2.1337-0.3709 1.3414 7.7171c0.15335 0.88223 0.36415 1.4634 0.63242 1.7436 0.27235 0.27435 0.68361 0.3637 1.2338 0.26807 0.5452-0.0948 0.89431-0.31885 1.0474-0.67224 0.15798-0.35425 0.159-0.97993 0.003-1.877l-1.3362-7.6873 2.104-0.36573 1.3737 7.9029c0.13353 0.76824 0.1867 1.3385 0.15953 1.7109-0.0231 0.36655-0.11299 0.70131-0.26967 1.0043-0.23752 0.45488-0.59139 0.82787-1.0616 1.119-0.47109 0.28613-1.0536 0.4895-1.7475 0.61012-1.3085 0.22744-2.282 0.10561-2.9204-0.36551-0.63437-0.47694-1.0743-1.4217-1.3199-2.8343l-1.3737-7.9029m11.562 2.9468 0.8798-0.21428c0.65496-0.15952 1.0835-0.3985 1.2855-0.71696 0.20084-0.32333 0.22567-0.79538 0.0745-1.4161-0.15239-0.62563-0.37994-1.0284-0.68266-1.2084-0.29903-0.18604-0.78824-0.19634-1.4676-0.0309l-0.90913 0.22142 0.81964 3.3653m-0.48448 6.8439-2.75-11.291 3.6512-0.88927c1.1144-0.27142 1.9767-0.21737 2.5869 0.16212 0.6102 0.37953 1.0534 1.1363 1.3296 2.2702 0.27142 1.1144 0.2123 2.009-0.17735 2.6838-0.38598 0.66874-1.1142 1.1335-2.1846 1.3942l-1.5323 0.37321 1.1661 4.7876-2.0895 0.50892m8.2989-8.1816c0.57794 1.8222 1.0477 2.9372 1.4093 3.345 0.36483 0.4015 0.83496 0.511 1.4104 0.32849 0.56584-0.17947 0.87886-0.53207 0.93905-1.0578 0.0635-0.53206-0.19682-1.7188-0.78085-3.5602s-1.0561-2.9636-1.4161-3.3666c-0.36004-0.403-0.82538-0.51402-1.396-0.33304-0.57064 0.181-0.88693 0.53992-0.94887 1.0768-0.062 0.53686 0.1991 1.726 0.78313 3.5674m-2.1075 0.66844c-0.37262-1.1748-0.61481-2.1298-0.72658-2.8649-0.11328-0.73988-0.10871-1.3245 0.0137-1.7539 0.16159-0.6054 0.43115-1.0867 0.80867-1.444 0.37752-0.35722 0.93072-0.65142 1.6596-0.88261 0.72888-0.23117 1.3505-0.30959 1.8649-0.23526 0.5144 0.0744 1.0145 0.31157 1.5003 0.71164 0.35056 0.28993 0.68961 0.76821 1.0172 1.4348 0.33234 0.66514 0.68406 1.5827 1.0552 2.7528 0.36957 1.1653 0.61101 2.1178 0.72429 2.8577 0.11176 0.7351 0.11035 1.3214-0.004 1.7588-0.16639 0.60693-0.43834 1.089-0.81586 1.4462-0.37752 0.35723-0.93072 0.65143-1.6596 0.88261-0.72889 0.23118-1.3505 0.3096-1.8649 0.23525-0.5144-0.0743-1.0121-0.31231-1.4931-0.71392-0.34752-0.28032-0.68745-0.75305-1.0198-1.4182-0.33386-0.66992-0.68711-1.5923-1.0597-2.7672m10.622 2.6563-4.3239-10.787 2.0662-0.82827 5.8326 6.4177-3.0799-7.5211 1.8982-0.76089 4.3239 10.787-2.0522 0.82266-5.8592-6.4233 3.0856 7.5351-1.8911 0.75808m13.459-5.95-4.5338-8.58-2.2017 1.1634-0.89547-1.6946 6.3182-3.3386 0.89547 1.6947-2.2017 1.1634 4.5338 8.58-1.9148 1.0118m5.1156-2.7449-6.2055-9.8254 1.8183-1.1484 2.4338 3.8536 2.5074-1.5836-2.4338-3.8536 1.8183-1.1484 6.2055 9.8254-1.8183 1.1484-2.8126-4.4533-2.5074 1.5836 2.8126 4.4533-1.8183 1.1484m7.7517-5.0247-7.0036-9.2733 4.7631-3.5973 1.1642 1.5415-3.047 2.3012 1.619 2.1437 2.8362-2.142 1.1097 1.4693-2.8362 2.142 1.9283 2.5532 3.1192-2.3558 1.1824 1.5656-4.8354 3.6519m5.978-9.9715 1.5448-1.5179 0.5236 0.53286c0.50068 0.50953 0.90549 0.79589 1.2144 0.85907 0.309 0.0561 0.61959-0.0693 0.93177-0.37603 0.32653-0.32086 0.49303-0.64668 0.49948-0.97746 0.01-0.3343-0.1436-0.66292-0.46093-0.98587-0.24329-0.24759-0.51053-0.40112-0.80171-0.46059-0.29471-0.0631-0.77693-0.0406-1.4467 0.0674l-1.3413 0.2177c-1.1472 0.19628-1.9657 0.2318-2.4555 0.10655-0.48623-0.12876-0.95853-0.42639-1.4169-0.89287-0.68402-0.69611-1.0136-1.4443-0.98885-2.2445 0.0248-0.80018 0.39962-1.5564 1.1244-2.2686 0.7679-0.75453 1.5626-1.1229 2.3842-1.105s1.6185 0.41973 2.3907 1.2056c0.0776 0.0789 0.13572 0.14172 0.17444 0.18829 0.0423 0.0431 0.0775 0.0825 0.10568 0.11832l-1.464 1.4386-0.21685-0.22068c-0.44073-0.44852-0.82986-0.69739-1.1674-0.7466-0.33751-0.0492-0.67492 0.0919-1.0122 0.42335-0.24759 0.2433-0.37087 0.50902-0.36984 0.79717 0.001 0.28105 0.12858 0.55075 0.38244 0.80909 0.34202 0.34807 1.0386 0.42177 2.0898 0.22108 0.0107-0.003 0.0196-0.005 0.0267-0.005l1.4163-0.25973c1.0013-0.19399 1.7859-0.21735 2.3538-0.0701 0.56436 0.1437 1.118 0.49183 1.661 1.0444 0.74044 0.75354 1.0964 1.5464 1.0677 2.3786-0.0286 0.83217-0.44305 1.6414-1.2432 2.4277-0.83248 0.81802-1.6648 1.2127-2.497 1.1841-0.82859-0.0322-1.6766-0.4896-2.544-1.3723-0.0917-0.0933-0.23611-0.25464-0.43332-0.48404l-0.0317-0.0323m8.9927-3.2638-8.9072-7.4638 3.8337-4.575 1.4807 1.2407-2.4524 2.9266 2.0591 1.7254 2.2827-2.7242 1.4113 1.1826-2.2828 2.7242 2.4524 2.055 2.5105-2.996 1.5038 1.2601-3.8918 4.6444m2.2617-10.404 1.0287-1.5271-4.5615-1.9537 3.5328 3.4808m2.1308 5.184-8.1751-8.6643 1.6231-2.4095 11.114 4.3021-1.3027 1.9339-2.7424-1.1559-1.3913 2.0653 2.11 2.0947-1.2353 1.8337m1.3794-9.4497 0.98922-1.9266 0.66458 0.34123c0.63548 0.3263 1.1098 0.47087 1.4229 0.43372 0.31096-0.0439 0.56639-0.26055 0.76631-0.6499 0.2091-0.40724 0.26472-0.76888 0.16686-1.0849-0.0956-0.3205-0.34474-0.58416-0.74751-0.79097-0.30879-0.15855-0.61075-0.22028-0.90586-0.18519-0.29959 0.0328-0.7503 0.20571-1.3521 0.51875l-1.2048 0.62833c-1.0273 0.54699-1.7932 0.83803-2.2975 0.87313-0.50205 0.0306-1.044-0.10342-1.6258-0.40214-0.86819-0.44578-1.4163-1.0524-1.6443-1.8198-0.22801-0.7674-0.10995-1.6031 0.35421-2.5071 0.49174-0.95769 1.1304-1.5572 1.9159-1.7986 0.78556-0.24132 1.6684-0.11038 2.6484 0.39284 0.0985 0.0506 0.17339 0.0919 0.22479 0.1239 0.0537 0.0276 0.0995 0.0539 0.13752 0.0791l-0.93751 1.8259-0.27523-0.14132c-0.5594-0.28722-1.007-0.40113-1.3429-0.34174-0.33587 0.0594-0.6118 0.29945-0.82781 0.72011-0.15854 0.3088-0.19203 0.59981-0.10046 0.87302 0.0894 0.26646 0.2952 0.4824 0.61741 0.64784 0.43411 0.2229 1.1186 0.0739 2.0534-0.44713 0.009-0.007 0.017-0.0111 0.0238-0.0132l1.2629-0.69183c0.88956-0.49895 1.627-0.7678 2.2124-0.80654 0.58092-0.041 1.216 0.1154 1.9052 0.46926 0.9398 0.48255 1.5269 1.1233 1.7614 1.9223 0.23444 0.79898 0.0955 1.6975-0.41696 2.6954-0.5331 1.0383-1.1991 1.6746-1.9981 1.909-0.79669 0.22997-1.7455 0.0623-2.8464-0.50295-0.11635-0.0597-0.30419-0.1675-0.56352-0.32327l-0.0403-0.0207" transform="matrix(1.0376 0 0 1.1529 -28.43 -57.787)"/> + </g> + </g> +</svg> diff --git a/s/flag/kz.svg b/s/flag/kz.svg new file mode 100755 index 0000000..93283f6 --- /dev/null +++ b/s/flag/kz.svg @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg732" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3081"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd"> + <rect id="rect851" height="480" width="640" y="0" x="0" stroke-width="1pt" fill="#6fdcff"/> + <g id="g766" transform="matrix(13.723 0 0 10.439 -5258.8 -2576.6)" fill="#ffe400"> + <path id="path760" d="m387.6 291.56c0.237 0.305 0.159 0.818 0.818 0.752 1.006 0 1.035-0.809 1.035-1.374 0-0.564-1.499-1.353-1.568-2.183-0.07-0.831 0.346-1.063 0.694-1.063 0.346 0 0.589 0.266 0.589 0.498s-0.173 0.299-0.416 0.299 0.104-0.166-0.104-0.299-0.347 0.199-0.347 0.399c0 0.199 0.52 0.265 0.867 0.116 0.07 0.448 0.104 0.482-0.382 1.245 0.348-0.299 0.381-0.365 0.764-0.199-0.382-0.432-0.096-1.312-0.083-1.536s-0.073-0.49-0.229-0.623c-0.278-0.332-0.885-0.347-1.249-0.133-0.53 0.311-0.556 1.228-0.417 1.528l1.469 1.98c0.104 0.233 0.14 0.88-0.484 0.913-0.659 0.066-0.885-1.115-1.002-1.508-0.157 0.429-0.332 1.613-0.991 1.547-0.625-0.033-0.745-0.68-0.641-0.913l1.509-2.019c0.138-0.3 0.112-1.217-0.418-1.528-0.364-0.214-0.97-0.199-1.248 0.133-0.156 0.133-0.243 0.399-0.23 0.623s0.299 1.104-0.083 1.536c0.383-0.166 0.417-0.1 0.764 0.199-0.486-0.763-0.451-0.797-0.382-1.245 0.347 0.149 0.868 0.083 0.868-0.116 0-0.2-0.14-0.532-0.348-0.399-0.207 0.133 0.139 0.299-0.103 0.299-0.244 0-0.417-0.067-0.417-0.299s0.243-0.498 0.59-0.498 0.763 0.232 0.693 1.063c-0.069 0.83-1.607 1.736-1.607 2.3 0 0.565 0.107 1.257 1.113 1.257 0.659 0.066 0.737-0.447 0.976-0.752z"/> + <path id="path761" d="m387.52 294.92c0.237 0.305 0.432 1.209 1.091 1.143 1.006 0 1.387-0.731 1.387-1.296 0-0.564-2.046-5.181-2.115-6.011-0.07-0.831 0.346-1.063 0.694-1.063 0.346 0 0.589 0.266 0.589 0.498s-0.173 0.299-0.416 0.299 0.104-0.166-0.104-0.299-0.347 0.199-0.347 0.399c0 0.199 0.52 0.265 0.867 0.116 0.07 0.448 0.104 0.482-0.382 1.245 0.348-0.299 0.381-0.365 0.764-0.199-0.382-0.432-0.096-1.312-0.083-1.536s-0.073-0.49-0.229-0.623c-0.278-0.332-0.885-0.347-1.249-0.133-0.53 0.311-0.556 1.228-0.417 1.528l1.977 5.613c0.104 0.233-0.173 0.997-0.797 1.03-0.659 0.066-0.885-0.842-1.002-1.235l0.898 0.086s0.035-0.182 0-0.3c-0.464-0.04-0.898-0.151-0.898-0.151l-0.034-0.598h0.443l-0.035-0.265s-0.374 0.033-0.408 0c-0.035-0.033-0.07-0.599-0.07-0.599s-0.069-0.033-0.144-0.033c-0.076 0-0.145 0.033-0.145 0.033s-0.035 0.566-0.069 0.599c-0.035 0.033-0.409 0-0.409 0l-0.034 0.265h0.443l-0.035 0.598s-0.434 0.111-0.898 0.151c-0.034 0.118 0 0.3 0 0.3l0.898-0.086c-0.117 0.393-0.343 1.301-1.001 1.235-0.625-0.033-0.902-0.797-0.798-1.03l1.978-5.613c0.138-0.3 0.112-1.217-0.418-1.528-0.364-0.214-0.97-0.199-1.248 0.133-0.156 0.133-0.243 0.399-0.23 0.623s0.299 1.104-0.083 1.536c0.383-0.166 0.417-0.1 0.764 0.199-0.486-0.763-0.451-0.797-0.382-1.245 0.347 0.149 0.868 0.083 0.868-0.116 0-0.2-0.14-0.532-0.348-0.399-0.207 0.133 0.139 0.299-0.103 0.299-0.244 0-0.417-0.067-0.417-0.299s0.243-0.498 0.59-0.498 0.763 0.232 0.693 1.063c-0.069 0.83-2.115 5.447-2.115 6.011 0 0.565 0.381 1.296 1.387 1.296 0.659 0.066 0.893-0.838 1.132-1.143z" transform="matrix(1 0 0 -1 .0000095367 574.63)"/> + <path id="path762" d="m387.52 294.92c0.237 0.305 0.432 1.209 1.091 1.143 1.006 0 1.387-0.731 1.387-1.296 0-0.564-2.046-5.181-2.115-6.011-0.07-0.831 0.346-1.063 0.694-1.063 0.346 0 0.589 0.266 0.589 0.498s-0.173 0.299-0.416 0.299 0.104-0.166-0.104-0.299-0.347 0.199-0.347 0.399c0 0.199 0.52 0.265 0.867 0.116 0.07 0.448 0.104 0.482-0.382 1.245 0.348-0.299 0.381-0.365 0.764-0.199-0.382-0.432-0.096-1.312-0.083-1.536s-0.073-0.49-0.229-0.623c-0.278-0.332-0.885-0.347-1.249-0.133-0.53 0.311-0.556 1.228-0.417 1.528l1.977 5.613c0.104 0.233-0.173 0.997-0.797 1.03-0.659 0.066-0.885-0.842-1.002-1.235l0.898 0.086s0.035-0.182 0-0.3c-0.464-0.04-0.898-0.151-0.898-0.151l-0.034-0.598h0.443l-0.035-0.265s-0.374 0.033-0.408 0c-0.035-0.033-0.07-0.599-0.07-0.599s-0.069-0.033-0.144-0.033c-0.076 0-0.145 0.033-0.145 0.033s-0.035 0.566-0.069 0.599c-0.035 0.033-0.409 0-0.409 0l-0.034 0.265h0.443l-0.035 0.598s-0.434 0.111-0.898 0.151c-0.034 0.118 0 0.3 0 0.3l0.898-0.086c-0.117 0.393-0.343 1.301-1.001 1.235-0.625-0.033-0.902-0.797-0.798-1.03l1.978-5.613c0.138-0.3 0.112-1.217-0.418-1.528-0.364-0.214-0.97-0.199-1.248 0.133-0.156 0.133-0.243 0.399-0.23 0.623s0.299 1.104-0.083 1.536c0.383-0.166 0.417-0.1 0.764 0.199-0.486-0.763-0.451-0.797-0.382-1.245 0.347 0.149 0.868 0.083 0.868-0.116 0-0.2-0.14-0.532-0.348-0.399-0.207 0.133 0.139 0.299-0.103 0.299-0.244 0-0.417-0.067-0.417-0.299s0.243-0.498 0.59-0.498 0.763 0.232 0.693 1.063c-0.069 0.83-2.115 5.447-2.115 6.011 0 0.565 0.381 1.296 1.387 1.296 0.659 0.066 0.893-0.838 1.132-1.143z" transform="translate(0 -17.498)"/> + <path id="path763" d="m387.52 294.92c0.237 0.305 0.432 1.209 1.091 1.143 1.006 0 1.387-0.731 1.387-1.296 0-0.564-2.046-5.181-2.115-6.011-0.07-0.831 0.346-1.063 0.694-1.063 0.346 0 0.589 0.266 0.589 0.498s-0.173 0.299-0.416 0.299 0.104-0.166-0.104-0.299-0.347 0.199-0.347 0.399c0 0.199 0.52 0.265 0.867 0.116 0.07 0.448 0.104 0.482-0.382 1.245 0.348-0.299 0.381-0.365 0.764-0.199-0.382-0.432-0.096-1.312-0.083-1.536s-0.073-0.49-0.229-0.623c-0.278-0.332-0.885-0.347-1.249-0.133-0.53 0.311-0.556 1.228-0.417 1.528l1.977 5.613c0.104 0.233-0.173 0.997-0.797 1.03-0.659 0.066-0.885-0.842-1.002-1.235l0.898 0.086s0.035-0.182 0-0.3c-0.464-0.04-0.898-0.151-0.898-0.151l-0.034-0.598h0.443l-0.035-0.265s-0.374 0.033-0.408 0c-0.035-0.033-0.07-0.599-0.07-0.599s-0.069-0.033-0.144-0.033c-0.076 0-0.145 0.033-0.145 0.033s-0.035 0.566-0.069 0.599c-0.035 0.033-0.409 0-0.409 0l-0.034 0.265h0.443l-0.035 0.598s-0.434 0.111-0.898 0.151c-0.034 0.118 0 0.3 0 0.3l0.898-0.086c-0.117 0.393-0.343 1.301-1.001 1.235-0.625-0.033-0.902-0.797-0.798-1.03l1.978-5.613c0.138-0.3 0.112-1.217-0.418-1.528-0.364-0.214-0.97-0.199-1.248 0.133-0.156 0.133-0.243 0.399-0.23 0.623s0.299 1.104-0.083 1.536c0.383-0.166 0.417-0.1 0.764 0.199-0.486-0.763-0.451-0.797-0.382-1.245 0.347 0.149 0.868 0.083 0.868-0.116 0-0.2-0.14-0.532-0.348-0.399-0.207 0.133 0.139 0.299-0.103 0.299-0.244 0-0.417-0.067-0.417-0.299s0.243-0.498 0.59-0.498 0.763 0.232 0.693 1.063c-0.069 0.83-2.115 5.447-2.115 6.011 0 0.565 0.381 1.296 1.387 1.296 0.659 0.066 0.893-0.838 1.132-1.143z" transform="matrix(1 0 0 -1 .0000095367 557.13)"/> + <path id="path764" d="m387.52 294.92c0.237 0.305 0.432 1.209 1.091 1.143 1.006 0 1.387-0.731 1.387-1.296 0-0.564-2.046-5.181-2.115-6.011-0.07-0.831 0.346-1.063 0.694-1.063 0.346 0 0.589 0.266 0.589 0.498s-0.173 0.299-0.416 0.299 0.104-0.166-0.104-0.299-0.347 0.199-0.347 0.399c0 0.199 0.52 0.265 0.867 0.116 0.07 0.448 0.104 0.482-0.382 1.245 0.348-0.299 0.381-0.365 0.764-0.199-0.382-0.432-0.096-1.312-0.083-1.536s-0.073-0.49-0.229-0.623c-0.278-0.332-0.885-0.347-1.249-0.133-0.53 0.311-0.556 1.228-0.417 1.528l1.977 5.613c0.104 0.233-0.173 0.997-0.797 1.03-0.659 0.066-0.885-0.842-1.002-1.235l0.898 0.086s0.035-0.182 0-0.3c-0.464-0.04-0.898-0.151-0.898-0.151l-0.034-0.598h0.443l-0.035-0.265s-0.374 0.033-0.408 0c-0.035-0.033-0.07-0.599-0.07-0.599s-0.069-0.033-0.144-0.033c-0.076 0-0.145 0.033-0.145 0.033s-0.035 0.566-0.069 0.599c-0.035 0.033-0.409 0-0.409 0l-0.034 0.265h0.443l-0.035 0.598s-0.434 0.111-0.898 0.151c-0.034 0.118 0 0.3 0 0.3l0.898-0.086c-0.117 0.393-0.343 1.301-1.001 1.235-0.625-0.033-0.902-0.797-0.798-1.03l1.978-5.613c0.138-0.3 0.112-1.217-0.418-1.528-0.364-0.214-0.97-0.199-1.248 0.133-0.156 0.133-0.243 0.399-0.23 0.623s0.299 1.104-0.083 1.536c0.383-0.166 0.417-0.1 0.764 0.199-0.486-0.763-0.451-0.797-0.382-1.245 0.347 0.149 0.868 0.083 0.868-0.116 0-0.2-0.14-0.532-0.348-0.399-0.207 0.133 0.139 0.299-0.103 0.299-0.244 0-0.417-0.067-0.417-0.299s0.243-0.498 0.59-0.498 0.763 0.232 0.693 1.063c-0.069 0.83-2.115 5.447-2.115 6.011 0 0.565 0.381 1.296 1.387 1.296 0.659 0.066 0.893-0.838 1.132-1.143z" transform="translate(0 -34.998)"/> + <path id="path765" d="m387.6 291.56c0.237 0.305 0.159 0.818 0.818 0.752 1.006 0 1.035-0.809 1.035-1.374 0-0.564-1.499-1.353-1.568-2.183-0.07-0.831 0.346-1.063 0.694-1.063 0.346 0 0.589 0.266 0.589 0.498s-0.173 0.299-0.416 0.299 0.104-0.166-0.104-0.299-0.347 0.199-0.347 0.399c0 0.199 0.52 0.265 0.867 0.116 0.07 0.448 0.104 0.482-0.382 1.245 0.348-0.299 0.381-0.365 0.764-0.199-0.382-0.432-0.096-1.312-0.083-1.536s-0.073-0.49-0.229-0.623c-0.278-0.332-0.885-0.347-1.249-0.133-0.53 0.311-0.556 1.228-0.417 1.528l1.469 1.98c0.104 0.233 0.14 0.88-0.484 0.913-0.659 0.066-0.885-1.115-1.002-1.508-0.157 0.429-0.332 1.613-0.991 1.547-0.625-0.033-0.745-0.68-0.641-0.913l1.509-2.019c0.138-0.3 0.112-1.217-0.418-1.528-0.364-0.214-0.97-0.199-1.248 0.133-0.156 0.133-0.243 0.399-0.23 0.623s0.299 1.104-0.083 1.536c0.383-0.166 0.417-0.1 0.764 0.199-0.486-0.763-0.451-0.797-0.382-1.245 0.347 0.149 0.868 0.083 0.868-0.116 0-0.2-0.14-0.532-0.348-0.399-0.207 0.133 0.139 0.299-0.103 0.299-0.244 0-0.417-0.067-0.417-0.299s0.243-0.498 0.59-0.498 0.763 0.232 0.693 1.063c-0.069 0.83-1.607 1.736-1.607 2.3 0 0.565 0.107 1.257 1.113 1.257 0.659 0.066 0.737-0.447 0.976-0.752z" transform="matrix(1 0 0 -1 -.000028610 539.63)"/> + </g> + <g id="g9043" fill="#ffe400" transform="matrix(1.0673 0 0 1.0673 -194.73 8.2851)"> + <rect id="rect773" rx="85.12" ry="80.648" height="161.3" width="170.24" y="104.45" x="425.9" stroke-width="1pt"/> + <path id="path778" d="m506.94 56.355c-0.70816-0.0066-4.5339 26.842-6.0133 32.876-1.325 13.43 18.07 12.94 14.897-0.53156l-8.88-32.344z" stroke-width=".25"/> + <path id="path779" d="m513.77 316.21c0.70597 0.0532 6.4902-26.479 8.4083-32.401 2.3061-13.31-17.078-14.098-14.9-0.44983l6.4913 32.85z" stroke-width=".25"/> + <path id="path780" d="m378.17 184.61c-0.0596 0.66861 27.915 6.2768 34.156 8.1226 14.037 2.249 14.962-16.113 0.54655-14.115l-34.703 5.992z" stroke-width=".25"/> + <path id="path781" d="m649.89 187.8c0.0299-0.67033-28.166-5.2743-34.483-6.8957-14.123-1.7455-14.234 16.638 0.0789 14.125l34.404-7.2295z" stroke-width=".25"/> + <path id="path782" d="m406.79 99.641c-0.482 0.49161 17.893 21.249 21.605 26.348 9.5875 9.9707 22.265-3.9453 9.6155-10.793l-31.22-15.559z" stroke-width=".25"/> + <path id="path783" d="m617.95 270.64c0.43514-0.52939-19.772-19.698-23.937-24.472-10.465-9.1446-21.819 5.7614-8.5904 11.543l32.528 12.929z" stroke-width=".25"/> + <path id="path784" d="m448.97 70.619c-0.64369 0.27981 7.9658 26.114 9.3401 32.171 4.8391 12.685 22.167 4.4144 13.239-6.4931l-22.58-25.678z" stroke-width=".25"/> + <path id="path785" d="m571.98 302.96c0.66263-0.23678-6.0325-26.575-6.9597-32.708-3.8977-12.973-21.79-5.8622-13.682 5.6064l20.642 27.101z" stroke-width=".25"/> + <path id="path786" d="m602.16 88.602c-0.51107-0.4645-22.711 16.61-28.152 20.045-10.676 8.9228 3.8066 21.156 11.236 9.2822l16.916-29.327z" stroke-width=".25"/> + <path id="path787" d="m419.24 282.33c0.4758 0.49701 23.874-15.076 29.553-18.145 11.304-8.1989-2.2469-21.355-10.528-9.999l-19.025 28.144z" stroke-width=".25"/> + <path id="path788" d="m384.15 138.16c-0.29083 0.6118 24.124 14.715 29.362 18.422 12.449 6.5435 19.765-10.482 5.4692-13.139l-34.831-5.2826z" stroke-width=".25"/> + <path id="path789" d="m638.07 236.6c0.33497-0.59119-22.987-16.266-27.941-20.309-11.939-7.3468-20.486 9.1564-6.419 12.748l34.36 7.5615z" stroke-width=".25"/> + <path id="path790" d="m557.37 63.719c-0.65664-0.25132-14.571 23.416-18.275 28.521-6.4123 12.042 11.831 18.301 14.072 4.6621l4.2038-33.183z" stroke-width=".25"/> + <path id="path791" d="m463.52 307.97c0.63664 0.29392 16.252-22.401 20.322-27.25 7.2794-11.591-10.461-19.035-13.696-5.5767l-6.6257 32.826z" stroke-width=".25"/> + <path id="path792" d="m386.04 238.68c0.25665 0.62539 27.986-5.9856 34.449-6.9264 13.652-3.8247 5.9653-20.703-6.0561-12.906l-28.392 19.832z" stroke-width=".25"/> + <path id="path793" d="m638.13 136.11c-0.21019-0.64076-28.357 4.1299-34.873 4.6432-13.899 2.9172-7.4683 20.261 5.0956 13.273l29.777-17.916z" stroke-width=".25"/> + <path id="path794" d="m534.62 58.119c-0.69228-0.14145-10.14 25.429-12.87 31.058-4.149 12.903 14.954 16.119 14.705 2.3183l-1.8352-33.376z" stroke-width=".25"/> + <path id="path795" d="m486.15 313.97c0.68024 0.18666 11.979-24.7 15.115-30.136 5.0846-12.599-13.736-17.064-14.5-3.2802l-0.61542 33.416z" stroke-width=".25"/> + <path id="path796" d="m476.38 60.639c-0.69178 0.14362 1.9179 27.122 1.9005 33.317 1.8791 13.37 20.667 8.7826 14.394-3.6751l-16.29-29.642z" stroke-width=".25"/> + <path id="path797" d="m544.39 312.46c0.70064-0.0978 0.0746-27.183 0.54592-33.362-0.89466-13.462-19.974-10.121-14.628 2.7193l14.082 30.642z" stroke-width=".25"/> + <path id="path798" d="m428.16 83.092c-0.58051 0.38433 12.765 24.345 15.26 30.07 7.1545 11.661 22.642 0.58881 11.8-8.6308l-27.06-21.44z" stroke-width=".25"/> + <path id="path799" d="m593.02 290.86c0.60728-0.34521-10.95-25.126-13.019-31.002-6.2826-12.104-22.545-2.0771-12.404 7.8336l25.423 23.168z" stroke-width=".25"/> + <path id="path800" d="m393 116.64c-0.3965 0.55598 21.128 18.39 25.624 22.888 11.091 8.4556 21.36-7.1417 7.7498-12.065l-33.374-10.823z" stroke-width=".25"/> + <path id="path801" d="m627.19 256.26c0.43629-0.52854-19.729-19.736-23.885-24.519-10.445-9.1649-21.832 5.7191-8.6154 11.526l32.5 12.992z" stroke-width=".25"/> + <path id="path802" d="m377.57 158.53c-0.18146 0.64859 26.336 10.784 32.143 13.63 13.409 4.5292 17.693-13.4 3.1307-13.809l-35.274 0.17858z" stroke-width=".25"/> + <path id="path803" d="m645.04 216.35c0.22855-0.63509-25.482-12.49-31.067-15.712-13.045-5.4005-18.632 12.204-4.1352 13.57l35.202 2.1426z" stroke-width=".25"/> + <path id="path804" d="m376.7 209.96c0.0982 0.66451 28.689 0.26212 35.207 0.75221 14.214-0.75282 10.823-18.853-2.7669-13.879l-32.44 13.126z" stroke-width=".25"/> + <path id="path805" d="m646.91 164.97c-0.0493-0.66936-28.601-2.149-35.067-3.0668-14.235-0.18418-12.178 18.095 1.7431 14.027l33.324-10.96z" stroke-width=".25"/> + <path id="path806" d="m401.18 263.43c0.39482 0.55705 25.926-11.641 32.015-13.899 12.438-6.5616 1.0407-21.438-8.8892-11.338l-23.126 25.237z" stroke-width=".25"/> + <path id="path807" d="m623.48 111.1c-0.35304-0.58167-26.717 9.9073-32.956 11.759-12.889 5.7274-2.6094 21.318 8.0368 11.896l24.92-23.654z" stroke-width=".25"/> + <path id="path808" d="m442.83 298.77c0.59659 0.36157 18.872-20.474 23.505-24.846 8.6426-10.718-8.0724-20.052-12.925-7.0369l-10.58 31.883z" stroke-width=".25"/> + <path id="path809" d="m582.54 75.063c-0.56865-0.39994-20.327 19.183-25.269 23.239-9.4073 10.124 6.5833 20.535 12.378 7.8703l12.891-31.11z" stroke-width=".25"/> + <g id="g852" transform="matrix(2.1824 0 0 2.0629 -405.01 -272.56)"> + <path id="path844" d="m349.53 159.5c0.625 2.5 0.781 16.562 14.844 30 14.062 13.437 37.969 16.406 37.969 16.406s0.156 1.875-1.563 2.031c-1.719 0.157-9.844-1.562-13.906-2.812-4.063-1.25-7.656-3.438-8.125-3.281-0.469 0.156-1.25 1.562-2.5 1.406s-7.031-6.25-9.531-7.813c-2.5-1.562-10.938-10.781-13.75-15.312-2.813-4.531-3.438-7.5-4.375-7.5-0.938 0-4.219 2.187-4.219 2.187s-2.969-4.531-5.625-11.719c-2.656-7.187-2.344-11.406-1.719-11.718 0.625-0.313 0.625 5.312 2.656 10.468 2.032 5.157 4.844 6.719 4.844 6.719s-1.875-2.656-3.281-9.375-1.875-13.125-0.938-15.156c0.938-2.031 1.875-2.656 2.032-2.5 0.156 0.156-1.719 3.125-0.469 10.781s4.844 14.219 5.625 13.906c0.781-0.312-0.469-1.875-1.094-6.406s0.625-7.344 1.719-7.656c0.469-0.469 1.25 5 1.406 7.344z" transform="translate(10.607 88.389)"/> + <path id="path845" d="m339.06 174.81c-2.656-2.5-6.875-11.25-7.812-10.781-0.938 0.469 6.875 12.969 7.031 14.063 0.156 1.093 1.875 4.531 0.625 4.062s-10.625-10.312-9.531-8.437 8.125 10.468 7.656 10.937-5.781-4.688-5.937-4.062c-0.157 0.625 5.312 5.781 5.156 6.406s-3.438-3.281-3.438-2.5 3.438 4.687 3.438 5.312-2.969-2.812-2.031-0.937c0.937 1.875 3.593 3.594 3.437 4.219s-2.187-0.782-2.187-0.469c0 0.312 3.906 1.719 4.843 2.812 0.938 1.094 7.344 8.438 12.188 12.188s18.594 10.156 19.531 10.156c0.938 0 2.344-2.031 2.031-2.812-0.312-0.782-13.75-5.313-17.5-8.75-3.75-3.438-12.968-11.563-13.75-12.032-0.781-0.468-2.812-0.312-2.812-0.781s2.656 0.313 2.5 0c-0.156-0.312-3.75-1.875-3.594-2.187 0.156-0.313 2.5 0.625 2.5 0.312 0-0.312-4.219-2.656-4.062-3.125 0.156-0.469 3.125 1.406 3.125 1.094 0-0.313-4.063-3.125-3.907-3.594 0.157-0.469 3.125 2.188 2.969 1.563s-2.344-3.907-2.344-4.375c0-0.469 3.594 3.437 3.907 2.656 0.312-0.781-1.25-7.188-1.094-7.344s2.645 1.422 3.114 0.484c0.468-0.937-1.837-2.241-4.052-4.078z" transform="translate(11.232 85.889)"/> + <path id="path846" d="m385.18 222.67c-2.478 0.327-3.595-0.519-2.188-2.55 1.948-0.146 7.132-1.817 8.964-2.584s3.788-1.866 5.416-3.339c1.622-1.609 2.49 1.031 1.678 2.397-0.674 0.962-3.715 2.694-5.95 3.61-3.244 1.087-6.033 2.593-7.92 2.466z" transform="matrix(.76398 0 0 .75875 102.13 140.95)"/> + <path id="path847" d="m398.28 216.38c-1.25-1.407-0.156-2.344 1.719-3.438 2.812-1.562 2.032-3.593 5.625-5.312 1.563-0.938 23.906-10 31.25-14.844s27.813-20.313 33.281-30.938c5.469-10.625 2.813-11.406 3.594-11.875 0.781-0.468 1.563 1.563 1.406 3.907-0.156 2.343-1.875 9.375-1.406 10s8.281-5.469 11.406-12.969 5.625-15.313 7.188-15.313c1.562 0-2.656 12.813-5.313 17.813-2.656 5-5.781 7.5-5 8.594 0.782 1.093 8.594-5.469 11.25-10.313 2.657-4.844 5.157-9.219 5.625-8.281 0.469 0.937-2.5 11.25-6.718 16.094-4.219 4.843-9.219 8.281-8.438 9.062 0.781 0.782 6.406 1.563 12.344-2.5 5.937-4.062 6.562-10 7.344-9.687 0.781 0.312-0.782 8.437-6.407 13.437s-13.281 5.469-12.968 6.563c0.312 1.094 16.25-4.531 15.937-3.281-0.312 1.25-20.625 9.218-20.782 10 0.001 0.625 3.439 0.781 8.907-0.469 5.469-1.25 10.626-5.468 11.407-4.531 0.155 1.406-3.907 4.844-10.157 6.406-6.25 1.563-9.375 3.75-9.531 4.219-0.156 0.468 11.094-1.407 11.094-0.782s-14.688 3.438-14.844 4.22c-0.156 0.781 14.062-2.813 13.75-2.032-0.313 0.781-19.219 6.406-19.063 6.719 0.157 0.312 15.782-3.438 15.469-2.813-0.312 0.625-26.406 7.969-26.562 8.438-0.157 0.468 22.968-5.157 22.812-4.688s-12.031 3.437-12.031 3.75c0 0.312 9.531-1.562 9.375-1.094-0.156 0.469-24.063 6.563-24.532 7.5-0.468 0.938 12.344-2.5 12.188-0.781s-27.656 11.094-27.813 9.375c-0.156-1.719 16.719-6.094 16.563-6.562-0.156-0.469-9.687 1.093-9.844 0.156-0.156-0.938 6.25-2.969 5.782-3.438-0.469-0.468-5.313 1.406-4.844 0.313 0.469-1.094 9.531-5.313 9.375-5.625-0.156-0.313-3.281 1.093-2.969 0 0.313-1.094 19.687-6.719 19.375-7.344-0.313-0.625-8.906 1.406-9.687 1.562-0.313-0.624 12.031-5.156 11.718-5.937-0.312-0.781-6.562 2.656-6.874 1.719-0.313-0.938 10.781-5.313 10.156-5.938s-5.781 1.719-6.406 1.094 10.468-8.437 8.749-8.594c-1.718-0.156-3.75 2.345-4.062 0.782 0.313-2.032 8.75-5.313 6.875-6.875-2.969-0.938-13.125 0.625-17.344 3.125s-18.125 16.406-21.563 18.593c-3.437 2.188-15 7.032-17.187 7.969-3.438 1.25-4.063 3.125-7.5 4.844-6.251 1.719-6.25 3.594-9.219 4.687-1.093 0.313-12.343 5.781-12.5 5.313z" transform="translate(10.607 88.389)"/> + <path id="path848" d="m380 224.19c-1.875 0.938-3.593 3.438-2.501 4.375 0.626 1.25 2.501-2.656 4.063-2.5 1.563 0.156 3.75 0.157 7.969 0.47 4.219 0.312 6.406-0.938 8.75-0.782s7.657-1.25 10.157-1.25 2.968 0.312 3.281-0.782c0.312-1.093-7.813-0.312-11.407-0.468-3.593-0.156-8.125 0.781-10.781 0.781-2.5-0.156-6.875-0.938-9.531 0.156z" transform="translate(13.107 87.607)"/> + <rect id="rect849" rx="1.7188" ry="1.4844" height="2.9688" width="3.4375" y="309.14" x="401.7" stroke-width="1pt"/> + <path id="path850" d="m432.17 225.28c1.566-0.313 5.749 1.25 8.639 2.031 5.313 2.188 15.134 1.094 15.134 2.188s-0.611 2.5-2.955 2.656-7.983-0.937-7.827-0.937 4.532 2.187 3.282 2.812-5.001-1.25-5.626-0.781 3.438 1.406 2.813 1.719c-0.625 0.312-3.447-0.469-4.385-0.312-0.937 0.155 0.791 1.249-0.303 1.718-1.093 0.469-2.932-0.624-3.713-0.313-0.781 0.314 1.682 2.032 0.588 2.188-1.093 0.156-3.727-0.781-5.134-0.937-1.406-0.156 1.384 1.562 0.447 1.718-0.938 0.156-3.488-1.249-4.113-1.249s0.05 1.874-0.887 1.874c-0.938 0-2.041-1.562-2.51-1.562s0.01 1.875-0.928 1.875c-0.937 0-1.273-2.031-2.054-1.875-0.924 0.157 0.023 2.656-1.227 2.5-1.25-0.157-1.416-2.656-2.353-2.5-0.938 0.156 0.166 2.5-0.772 2.5-0.937 0-1.089-2.344-2.027-2.5-0.937-0.156-0.473 2.187-1.098 2.187s-1.089-2.187-1.402-2.187c-0.312 0-0.004 2.187-1.098 2.031s-1.089-2.5-1.402-2.344c-0.312 0.157-0.317 1.719-1.098 1.719s-0.777-1.562-1.089-1.406c-0.313 0.156-1.411 2.187-2.192 1.875-0.781-0.313 0.188-1.875-0.124-1.875-0.313 0-1.282 1.093-1.907 0.937s0.032-1.406-0.125-1.406c-0.156 0-1.594 0.781-2.219 0.781s-2.344 1.094-2.813 0.156c-0.468-0.937 1.223-0.937 1.535-1.875 0.313-0.937-0.91-3.593 0.34-4.531 1.25-0.937 5.157 1.25 10.938-0.312 10.624-3.125 18.824-6.718 19.665-6.563z" transform="matrix(1.0971 0 0 1 -29.114 82.451)"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/la.svg b/s/flag/la.svg new file mode 100755 index 0000000..7cd8dd7 --- /dev/null +++ b/s/flag/la.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3092"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath5023" clipPathUnits="userSpaceOnUse"> + <rect id="rect5025" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath5023)"> + <rect id="rect171" height="480" width="720" y="0" x="-40" stroke-width="1pt" fill="#e90012"/> + <rect id="rect403" height="241.48" width="720" y="119.26" x="-40" fill="#003dd2"/> + <path id="path138" d="m678.37 357.48a141.78 141.78 0 1 1 -283.56 0 141.78 141.78 0 1 1 283.56 0z" transform="matrix(.72943 0 0 .72943 -71.404 -20.759)" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/lb.svg b/s/flag/lb.svg new file mode 100755 index 0000000..e913196 --- /dev/null +++ b/s/flag/lb.svg @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg583" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3122"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs585"> + <clipPath id="clipPath4971" clipPathUnits="userSpaceOnUse"> + <rect id="rect4973" fill-opacity="0.67" height="512" width="682.67" y="-.0000046835" x="-85.333"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath4971)" transform="matrix(.93750 0 0 .93750 80 .0000043908)"> + <g id="g709" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.0321 0 0 1.0321 -128 -.0000039058)"> + <rect id="rect704" height="124.02" width="744.09" y="372.05" x="0" fill="#f00"/> + <rect id="rect707" height="124.02" width="744.09" y="0" x="0" fill="#f00"/> + <rect id="rect708" height="248.03" width="744.09" y="124.02" x="0" fill="#fff"/> + </g> + <path id="selection_to_path" d="m252.1 129.95c-7.8101 15.593-13.018 15.593-26.034 25.99-5.206 5.1978-13.016 7.7967-2.603 12.996-10.413 5.1968-15.62 7.7967-20.827 18.192l2.603 2.5989s9.895-4.85 10.414-2.5989c1.7309 2.0777-13.024 10.051-14.929 11.263-1.9043 1.2117-11.106 6.9307-11.106 6.9307-13.016 10.396-20.827 7.7957-28.637 23.39l26.034-2.5979c5.2071 18.192-13.017 20.791-26.034 28.588l-20.827 12.996c5.2081 18.192 20.827 7.7967 33.844 2.5979l2.604 2.5999v5.1978l-26.034 12.996s-30.733 17.584-31.24 18.192c-0.20952 0.9413 0 5.1978 0 5.1978 10.413 2.5989 26.034 5.1988 36.448 0 13.016-5.1978 15.619-10.396 31.24-10.396-18.224 12.994-31.24 18.193-52.068 20.791v10.397c15.62 0 26.033 0 39.051-2.5989l33.844-10.396c7.8101 0 15.62 7.7967 13.017 15.593-7.8101 28.588-39.052 23.391-49.466 46.781l41.656-15.593c10.413-5.1978 20.826-10.396 33.843-7.7967 15.62 5.1968 15.62 15.594 36.448 20.791l-5.206-12.994c5.206 2.5989 10.413 2.5989 15.619 5.1978 13.018 5.1988 15.621 10.396 31.24 7.7967-13.016-15.594-15.619-12.994-26.033-23.39-10.413-15.594-15.62-38.984 0-41.584l18.224 5.1988c18.223 2.5979 18.223-2.5989 44.257 7.7967 15.621 5.1978 20.828 12.994 39.052 7.7967-7.8101-18.192-36.448-31.188-54.671-36.386 20.826-12.996 15.619 5.1978 44.257-2.5999v-5.1968c-20.826-15.594-28.637-28.589-57.275-28.589 0 0 44.259-5.1988 44.259-5.1988v-5.1978s-43.649-11.451-44.664-11.858c0.30447-1.3191 1.3717-3.3658 4.2699-4.497 8.289 5.366 33.357 4.7406 34.781 4.6394-0.73281-6.3951-12.611-11.675-23.024-16.872 0 0-44.589-27.483-44.811-29.916 0.88453-6.9658 18.314 1.1064 37.001 6.5241-5.2071-10.396-15.621-15.593-26.034-18.192l15.62-2.5989c-10.413-23.391-36.448-20.792-52.067-31.188-10.415-7.7967-10.415-12.996-26.034-20.792z" fill="#007900"/> + <path id="path593" stroke-linejoin="round" d="m223.96 303.07c1.9321-6.1938 4.4763-11.674-7.1165-16.954-11.594-5.2783 5.7944 21.114 7.1165 16.954z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path594" stroke-linejoin="round" d="m237.69 290.68c-2.3367 0.30448-3.5608 8.835 1.1168 11.169 5.1885 0.81022 0.91756-11.066-1.1168-11.169z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path595" stroke-linejoin="round" d="m251.22 289.77c-2.442 0.71217-2.5432 12.691 6.0008 10.56 8.5419-2.1303-0.10424-11.573-6.0008-10.56z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path597" stroke-linejoin="round" d="m266.98 259.01c1.83-2.9447-0.10115-15.025-7.4251-9.9497-7.3209 5.077 5.0853 10.762 7.4251 9.9497z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path598" stroke-linejoin="round" d="m251.01 248.96c2.2387-0.81229 2.442-8.223-3.9644-6.2939-6.4044 1.929 2.2387 7.8173 3.9644 6.2939z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path599" stroke-linejoin="round" d="m236.58 251.9s-4.4753-6.1928-7.9329-4.8737c-4.3731 4.1626 8.2374 4.9748 7.9329 4.8737z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path600" stroke-linejoin="round" d="m186.99 271.69c1.9053 0.1734 16.027-2.3285 20.908-7.8101 4.8809-5.4827-25.127 2.346-25.127 2.4472 0 0.10114 2.8353 4.8438 4.2193 5.3629z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path601" stroke-linejoin="round" d="m328.1 236.73c0.72765-1.2953-7.517-7.1722-12.416-4.8562-1.2613 4.3391 12.375 5.7479 12.416 4.8562z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path602" stroke-linejoin="round" d="m300.34 222.76c1.5265-2.2335-3.5578-11.37-13.727-6.2939-10.17 5.076 10.676 9.8475 13.727 6.2939z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path603" stroke-linejoin="round" d="m268.2 217.38s2.5411-8.223 8.6441-6.5994c6.9163 5.2804-8.3396 6.9049-8.6441 6.5994z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path604" stroke-linejoin="round" d="m262.2 211.19c-0.91653-2.3347-7.3229-0.91343-14.644 3.8581-7.324 4.7715 16.88 1.4223 14.644-3.8581z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path605" stroke-linejoin="round" d="m280.91 189.06s6.523-2.9199 8.4407 0c2.7465 4.3659-8.5419 0.10218-8.4407 0z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path606" stroke-linejoin="round" d="m275.44 186.2c-1.3222-2.6402-8.5398-2.89-8.3551 0.92478-1.2096 2.989 9.38 2.4327 8.3551-0.92478z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path607" stroke-linejoin="round" d="m258.24 186.21c-0.71113-1.5234-10.98 0.0289-14.032 6.1928 4.8985 2.3822 16.271-2.3347 14.032-6.1928z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path608" stroke-linejoin="round" d="m236.27 192.51s-13.51 8.2591-14.339 14.315c0.40975 5.2288 16.778-9.4419 16.778-9.4419s1.4243-5.7871-2.4389-4.8727z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path609" stroke-linejoin="round" d="m221.32 185c0.37776-1.6803 6.6748-5.5724 7.2197-5.2793 0.50987 1.6937-5.1431 6.2784-7.2197 5.2793z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path610" stroke-linejoin="round" d="m225.59 216.57c0.30448-2.4368-16.068-2.2346-9.864 5.2783 5.1658 6.3011 10.984-4.1615 9.864-5.2783z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path611" stroke-linejoin="round" d="m210.69 227.35c-0.85357-1.6473-2.0818-6.0379-4.3236-6.4425-1.8269-0.10218-11.672 1.928-12.425 3.5949-0.40666 1.3201 4.0748 9.4347 5.6014 9.638 1.7288 0.71011 10.842-5.9781 11.147-6.7904z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path612" stroke-linejoin="round" d="m299.02 282.46c0.50781-1.7247 17.239-7.5067 23.015-1.9765 6.812 9.3408-23.421 4.9222-23.015 1.9765z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + <path id="path613" stroke-linejoin="round" d="m345 293.39c3.6661-6.2041-11.257-13.559-17.592-6.4704 2.1654 8.5171 14.628 11.6 17.592 6.4704z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="3.219" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/lc.svg b/s/flag/lc.svg new file mode 100755 index 0000000..d7334e7 --- /dev/null +++ b/s/flag/lc.svg @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg604" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3135"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd"> + <rect id="rect607" height="480" width="640" y="0" x="0" fill="#65cfff"/> + <path id="path615" d="m318.9 41.991 162.66 395.3-322.6 0.91 159.94-396.21z" fill="#fff"/> + <path id="path617" d="m319.09 96.516 140.67 339.99-278.99 0.78 138.32-340.77z"/> + <path id="path616" d="m318.9 240.1 162.66 197.64-322.6 0.46 159.94-198.1z" fill="#ffce00"/> + </g> +</svg> diff --git a/s/flag/li.svg b/s/flag/li.svg new file mode 100755 index 0000000..90eac35 --- /dev/null +++ b/s/flag/li.svg @@ -0,0 +1,195 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg1641" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3289"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs1643"> + <clipPath id="clipPath4748" clipPathUnits="userSpaceOnUse"> + <rect id="rect4750" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath4748)"> + <g id="g4244"> + <g id="g4230"> + <g id="g4217"> + <g id="g4205"> + <g id="g4194"> + <g id="g4184"> + <g id="g4175"> + <g id="g4167"> + <g id="g4160"> + <g id="g4154"> + <g id="g4149"> + <g id="g1277" fill-rule="evenodd" stroke-width="1pt" transform="matrix(.96831 0 0 .96831 0 -.34305)"> + <rect id="rect1644" height="248.03" width="744.09" y="248.03" x="0" fill="#e4104d"/> + <rect id="rect1645" height="247.68" width="744.09" y=".35428" x="0" fill="#8a85ff"/> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + </g> + <g id="g2039" fill-rule="evenodd" transform="matrix(1.6953 0 0 1.6953 -124.21 288.5)"> + <g id="g1683" transform="matrix(.33390 0 0 .35510 103.07 -209.73)"> + <path id="path1677" d="m175.25 443.36 145.49-0.447s53.728-52.248 25.283-86.48c-28.444-34.232-139.96-1.082-140.41-1.082-0.451 0-0.903-18.376-28.444-18.737-27.541 0.361-27.992 18.737-28.443 18.737-0.452 0-111.97-33.15-140.41 1.082-28.444 34.232 25.284 86.48 25.284 86.48l141.66 0.447z" transform="matrix(1 0 0 1.1618 -.000041749 -125.32)" fill="#f3ef7d"/> + <path id="path1682" d="m175.25 443.36 145.49-0.447s53.728-52.248 25.283-86.48c-28.444-34.232-139.96-1.082-140.41-1.082-0.451 0-0.903-18.376-28.444-18.737-27.541 0.361-27.992 18.737-28.443 18.737-0.452 0-111.97-33.15-140.41 1.082-28.444 34.232 25.284 86.48 25.284 86.48l141.66 0.447z" transform="matrix(0.96 0 0 1.1286 7.0866 -110.61)"/> + </g> + <g id="g2020" stroke-width="1pt" fill="#f3ef7d" transform="matrix(-1 0 0 1 455.54 -20.882)"> + <rect id="rect2021" height="6.6302" width=".55263" y="-79.738" x="239.71"/> + <rect id="rect2022" height="13.634" width=".55263" y="-83.336" x="241.72"/> + <rect id="rect2023" height="17.935" width=".64857" y="-85.201" x="243.64"/> + <rect id="rect2024" height="21.451" width=".70277" y="-86.512" x="246.1"/> + <rect id="rect2025" height="24.041" width=".70277" y="-87.28" x="248.89"/> + <rect id="rect2026" height="26.196" width=".69654" y="-88.211" x="251.74"/> + <rect id="rect2027" height="27.301" width=".70278" y="-88.414" x="254.16"/> + <rect id="rect2028" height="28.069" width=".70278" y="-88.414" x="256.59"/> + <rect id="rect2029" height="29.277" width=".64856" y="-88.354" x="259.63"/> + <rect id="rect2030" height="29.293" width=".79872" y="-88.072" x="262.48"/> + <rect id="rect2031" height="28.861" width=".79872" y="-87.353" x="265.6"/> + <rect id="rect2032" height="27.946" width=".75074" y="-86.233" x="268.65"/> + <rect id="rect2033" height="26.46" width=".70277" y="-84.952" x="271.84"/> + <rect id="rect2034" height="24.686" width=".70277" y="-84.089" x="274.48"/> + <rect id="rect2035" height="22.263" width=".60058" y="-82.42" x="277.29"/> + <rect id="rect2036" height="19.025" width=".50465" y="-80.26" x="279.75"/> + <rect id="rect2037" height="15.475" width=".60059" y="-78.149" x="281.96"/> + <rect id="rect2038" height="9.8789" width=".54017" y="-74.915" x="284.12"/> + </g> + <g id="g2001" stroke-width="1pt" fill="#f3ef7d" transform="translate(-131.37 -21.545)"> + <rect id="rect1388" height="6.6302" width=".55263" y="-79.738" x="239.71"/> + <rect id="rect1464" height="13.634" width=".55263" y="-83.336" x="241.72"/> + <rect id="rect1452" height="17.935" width=".64857" y="-85.201" x="243.64"/> + <rect id="rect1390" height="21.451" width=".70277" y="-86.512" x="246.1"/> + <rect id="rect1466" height="24.041" width=".70277" y="-87.28" x="248.89"/> + <rect id="rect1454" height="26.196" width=".69654" y="-88.211" x="251.74"/> + <rect id="rect1392" height="27.301" width=".70278" y="-88.414" x="254.16"/> + <rect id="rect1468" height="28.069" width=".70278" y="-88.414" x="256.59"/> + <rect id="rect1456" height="29.277" width=".64856" y="-88.354" x="259.63"/> + <rect id="rect1394" height="29.293" width=".79872" y="-88.072" x="262.48"/> + <rect id="rect1470" height="28.861" width=".79872" y="-87.353" x="265.6"/> + <rect id="rect1458" height="27.946" width=".75074" y="-86.233" x="268.65"/> + <rect id="rect1396" height="26.46" width=".70277" y="-84.952" x="271.84"/> + <rect id="rect1472" height="24.686" width=".70277" y="-84.089" x="274.48"/> + <rect id="rect1460" height="22.263" width=".60058" y="-82.42" x="277.29"/> + <rect id="rect1398" height="19.025" width=".50465" y="-80.26" x="279.75"/> + <rect id="rect1474" height="15.475" width=".60059" y="-78.149" x="281.96"/> + <rect id="rect1462" height="9.8789" width=".54017" y="-74.915" x="284.12"/> + </g> + <path id="path1651" d="m205.64 168.03-0.833-12.489c0-2.498-18.317-16.652-18.316-52.452 0-35.8 15.818-49.954 24.144-49.954s26.642 11.656 27.475 49.121c0.832 37.466-18.317 51.62-18.317 51.62l-1.665 14.986s13.321 0.832 14.154 0.832c0.832 0 18.316-14.986 63.275-13.321s47.456 19.982 48.289 25.81c0.832 5.828-6.661 23.311-51.619 23.311-44.959 0-58.28-20.813-59.113-20.813-0.832 0-14.153-0.833-14.153-0.833v10.823s17.483 13.321 16.651 57.447c-0.833 44.126-18.317 46.624-23.312 46.624-6.66 0-20.814-2.497-21.647-45.791 1.666-44.126 13.322-56.615 13.322-57.447v-10.823h-12.489s-13.321 10.823-59.112 11.656c-45.791 0.832-48.289-12.489-49.122-19.982-0.8326-7.493 8.3257-20.814 48.288-21.647 39.963-0.832 59.112 13.321 59.112 13.321l14.987 0.001z" transform="matrix(.076916 0 0 0.0803 145.58 -144.87)" stroke-width="1pt" fill="#f3ef7d"/> + <g id="g1715" transform="matrix(.33390 0 0 .35510 86.116 -150.31)" stroke-width="1pt" fill="#f3ef7d"> + <rect id="rect1696" rx="5.828" ry="5.828" height="11.656" width="11.656" y="105.59" x="188.99"/> + <rect id="rect1697" rx="5.828" ry="5.828" height="11.656" width="11.656" y="103.23" x="177.22"/> + <rect id="rect1698" rx="5.828" ry="5.828" height="11.656" width="11.656" y="99.703" x="164.86"/> + <rect id="rect1699" rx="5.828" ry="5.828" height="11.656" width="11.656" y="96.759" x="152.49"/> + <rect id="rect1700" rx="5.828" ry="5.828" height="11.656" width="11.656" y="94.404" x="139.54"/> + <rect id="rect1701" rx="5.828" ry="5.828" height="11.656" width="11.656" y="92.638" x="126.59"/> + <rect id="rect1702" rx="5.828" ry="5.828" height="11.656" width="11.656" y="91.461" x="114.23"/> + <rect id="rect1703" rx="5.828" ry="5.828" height="11.656" width="11.656" y="90.872" x="101.27"/> + <rect id="rect1704" rx="5.828" ry="5.828" height="11.656" width="11.656" y="92.638" x="88.911"/> + <rect id="rect1705" rx="5.828" ry="5.828" height="11.656" width="11.656" y="94.404" x="75.96"/> + <rect id="rect1706" rx="5.828" ry="5.828" height="11.656" width="11.656" y="98.525" x="64.185"/> + <rect id="rect1707" rx="5.828" ry="5.828" height="11.656" width="11.656" y="106.18" x="53"/> + <rect id="rect1708" rx="5.828" ry="5.828" height="11.656" width="11.656" y="116.78" x="45.346"/> + <rect id="rect1709" rx="5.828" ry="5.828" height="11.656" width="11.656" y="127.96" x="40.637"/> + <rect id="rect1710" rx="5.828" ry="5.828" height="11.656" width="11.656" y="140.32" x="38.871"/> + <rect id="rect1711" rx="5.828" ry="5.828" height="11.656" width="11.656" y="153.28" x="39.459"/> + <rect id="rect1712" rx="5.828" ry="5.828" height="11.656" width="11.656" y="165.64" x="42.403"/> + <rect id="rect1713" rx="5.828" ry="5.828" height="11.656" width="11.656" y="178" x="47.113"/> + <rect id="rect1714" rx="5.828" ry="5.828" height="11.656" width="11.656" y="188.6" x="52.411"/> + </g> + <g id="g1735" transform="matrix(-.33390 0 0 .35510 238.43 -150.31)" stroke-width="1pt" fill="#f3ef7d"> + <rect id="rect1736" rx="5.828" ry="5.828" height="11.656" width="11.656" y="105.59" x="188.99"/> + <rect id="rect1737" rx="5.828" ry="5.828" height="11.656" width="11.656" y="103.23" x="177.22"/> + <rect id="rect1738" rx="5.828" ry="5.828" height="11.656" width="11.656" y="99.703" x="164.86"/> + <rect id="rect1739" rx="5.828" ry="5.828" height="11.656" width="11.656" y="96.759" x="152.49"/> + <rect id="rect1740" rx="5.828" ry="5.828" height="11.656" width="11.656" y="94.404" x="139.54"/> + <rect id="rect1741" rx="5.828" ry="5.828" height="11.656" width="11.656" y="92.638" x="126.59"/> + <rect id="rect1742" rx="5.828" ry="5.828" height="11.656" width="11.656" y="91.461" x="114.23"/> + <rect id="rect1743" rx="5.828" ry="5.828" height="11.656" width="11.656" y="90.872" x="101.27"/> + <rect id="rect1744" rx="5.828" ry="5.828" height="11.656" width="11.656" y="92.638" x="88.911"/> + <rect id="rect1745" rx="5.828" ry="5.828" height="11.656" width="11.656" y="94.404" x="75.96"/> + <rect id="rect1746" rx="5.828" ry="5.828" height="11.656" width="11.656" y="98.525" x="64.185"/> + <rect id="rect1747" rx="5.828" ry="5.828" height="11.656" width="11.656" y="106.18" x="53"/> + <rect id="rect1748" rx="5.828" ry="5.828" height="11.656" width="11.656" y="116.78" x="45.346"/> + <rect id="rect1749" rx="5.828" ry="5.828" height="11.656" width="11.656" y="127.96" x="40.637"/> + <rect id="rect1750" rx="5.828" ry="5.828" height="11.656" width="11.656" y="140.32" x="38.871"/> + <rect id="rect1751" rx="5.828" ry="5.828" height="11.656" width="11.656" y="153.28" x="39.459"/> + <rect id="rect1752" rx="5.828" ry="5.828" height="11.656" width="11.656" y="165.64" x="42.403"/> + <rect id="rect1753" rx="5.828" ry="5.828" height="11.656" width="11.656" y="178" x="47.113"/> + <rect id="rect1754" rx="5.828" ry="5.828" height="11.656" width="11.656" y="188.6" x="52.411"/> + </g> + <g id="g1945" stroke-width="1pt"> + <path id="path1694" d="m318.9 338.4-24.17 56.927s-39.963-13.321-114.89-13.321c-74.931 0-109.07 11.655-109.07 11.655l-35.153-55.94c31.27-4.635 40.802 16.61 40.802 16.61s2.1286-24.81 26.689-29.213c20.747-2.866 39.079 18.591 39.079 18.591s4.321-24.147 34.979-24.81c30.659 0.663 34.98 24.81 34.98 24.81s18.332-21.456 39.079-18.59c24.56 4.402 26.688 29.213 26.688 29.213s9.532-21.246 40.986-15.935z" transform="matrix(.45941 0 0 .57623 80.534 -274.38)" fill="#f3ef7d"/> + <rect id="rect1695" transform="translate(13.258 -218.32)" rx="51.429" ry="8.1303" height="16.261" width="102.86" y="162.27" x="100.1"/> + <g id="g1808" transform="matrix(.33390 0 0 .35510 86.116 -150.31)"> + <rect id="rect1800" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="175.06" x="228.46"/> + <rect id="rect1801" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="177.41" x="237.82"/> + <rect id="rect1802" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="175.06" x="219.87"/> + <rect id="rect1803" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="182.12" x="203.48"/> + <rect id="rect1804" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="177.41" x="211.28"/> + <rect id="rect1805" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="189.19" x="197.23"/> + <rect id="rect1806" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="182.71" x="245.63"/> + <rect id="rect1807" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="189.19" x="252.65"/> + </g> + <g id="g1818" transform="matrix(.32984 .055208 -.051912 .35078 129.39 -157.7)"> + <rect id="rect1819" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="175.06" x="228.46"/> + <rect id="rect1820" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="177.41" x="237.82"/> + <rect id="rect1821" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="175.06" x="219.87"/> + <rect id="rect1822" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="182.12" x="203.48"/> + <rect id="rect1823" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="177.41" x="211.28"/> + <rect id="rect1824" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="189.19" x="197.23"/> + <rect id="rect1825" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="182.71" x="245.63"/> + <rect id="rect1826" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="189.19" x="252.65"/> + </g> + <g id="g1827" transform="matrix(.32842 -.064062 .060237 .34928 42.896 -131.04)"> + <rect id="rect1828" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="175.06" x="228.46"/> + <rect id="rect1829" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="177.41" x="237.82"/> + <rect id="rect1830" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="175.06" x="219.87"/> + <rect id="rect1831" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="182.12" x="203.48"/> + <rect id="rect1832" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="177.41" x="211.28"/> + <rect id="rect1833" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="189.19" x="197.23"/> + <rect id="rect1834" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="182.71" x="245.63"/> + <rect id="rect1835" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="189.19" x="252.65"/> + </g> + <rect id="rect1837" transform="matrix(.97649 -.21555 .19155 .98148 13.258 -218.32)" rx="1.1497" ry="1.6475" height="3.2949" width="2.2994" y="155.25" x="57.043"/> + <rect id="rect1838" transform="matrix(.97649 -.21555 .19155 .98148 13.258 -218.32)" rx="1.1497" ry="1.6475" height="3.2949" width="2.2994" y="156.09" x="60.179"/> + <rect id="rect1843" transform="matrix(.97649 -.21555 .19155 .98148 13.258 -218.32)" rx="1.1497" ry="1.6475" height="3.2949" width="2.2994" y="157.96" x="62.792"/> + <rect id="rect1844" transform="matrix(.97649 -.21555 .19155 .98148 13.258 -218.32)" rx="1.1497" ry="1.6475" height="3.2949" width="2.2994" y="160.26" x="65.144"/> + <g id="g1853" transform="matrix(.27699 .19830 -.18646 .29458 148.87 -220.32)"> + <rect id="rect1839" transform="rotate(-11.726)" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="285.4" x="359.08"/> + <rect id="rect1840" transform="rotate(-11.726)" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="292.46" x="342.69"/> + <rect id="rect1841" transform="rotate(-11.726)" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="287.75" x="350.49"/> + <rect id="rect1842" transform="rotate(-11.726)" rx="3.4339" ry="4.6505" height="9.3011" width="6.8678" y="299.53" x="336.44"/> + </g> + <path id="path1858" d="m299.66 8.6089c32.967 24.137 33.556 69.468 33.556 69.468s-5.299-47.686 30.025-67.113c-18.25 5.2986-17.662 4.1211-27.67 3.5325l-2.355-15.307s-1.766 7.6533-5.298 14.718c-7.654 2.3548-9.42 2.3548-28.258-5.2984z" transform="matrix(.24424 0 0 0.265 80.941 -78.676)"/> + <path id="path1859" d="m299.66 8.6089c32.967 24.137 33.556 69.468 33.556 69.468s-5.299-47.686 30.025-67.113c-18.25 5.2986-17.662 4.1211-27.67 3.5325l-2.355-15.307s-1.766 7.6533-5.298 14.718c-7.654 2.3548-9.42 2.3548-28.258-5.2984z" transform="matrix(.23738 -.061133 .058645 .25756 50.678 -55.618)"/> + <path id="path1860" d="m299.66 8.6089c32.967 24.137 33.556 69.468 33.556 69.468s-5.299-47.686 30.025-67.113c-18.25 5.2986-17.662 4.1211-27.67 3.5325l-2.355-15.307s-1.766 7.6533-5.298 14.718c-7.654 2.3548-9.42 2.3548-28.258-5.2984z" transform="matrix(.23657 .064582 -.061953 .25668 117.33 -97.042)"/> + <path id="path1861" d="m299.66 8.6089c32.967 24.137 33.556 69.468 33.556 69.468s-5.299-47.686 30.025-67.113c-18.25 5.2986-17.662 4.1211-27.67 3.5325l-2.355-15.307s-1.766 7.6533-5.298 14.718c-7.654 2.3548-9.42 2.3548-28.258-5.2984z" transform="matrix(.15393 -.060695 .077565 .22478 58.125 -49.509)"/> + <path id="path1862" d="m299.66 8.6089c32.967 24.137 33.556 69.468 33.556 69.468s-5.299-47.686 30.025-67.113c-18.25 5.2986-17.662 4.1211-27.67 3.5325l-2.355-15.307s-1.766 7.6533-5.298 14.718c-7.654 2.3548-9.42 2.3548-28.258-5.2984z" transform="matrix(.13481 .099650 -.12911 .19615 172.37 -101.78)"/> + </g> + <g id="g1989" stroke-width="1pt"> + <rect id="rect1652" transform="translate(13.258 -218.32)" rx="3.362" ry="3.5099" height="7.0197" width="6.724" y="97.304" x="145.26" fill="#f3ef7d"/> + <rect id="rect1653" transform="translate(13.258 -218.32)" height="7.0197" width=".70441" y="97.304" x="148.4"/> + <rect id="rect1794" transform="translate(13.258 -218.32)" rx="1.5528" ry="1.7559" height="3.5119" width="3.1056" y="119.51" x="147.36" fill="#f3ef7d"/> + <rect id="rect1795" transform="translate(13.258 -218.32)" rx="1.4545" ry="1.6514" height="3.3028" width="2.909" y="115.96" x="147.36" fill="#f3ef7d"/> + <rect id="rect1796" transform="translate(13.258 -218.32)" rx="1.4545" ry="1.5469" height="3.0938" width="2.909" y="112.61" x="147.36" fill="#f3ef7d"/> + <rect id="rect1797" transform="translate(13.258 -218.32)" rx="1.258" ry="1.2333" height="2.4666" width="2.5159" y="109.9" x="147.56" fill="#f3ef7d"/> + <rect id="rect1798" transform="translate(13.258 -218.32)" rx="1.2579" ry="1.4424" height="2.8847" width="2.5159" y="106.76" x="147.56" fill="#f3ef7d"/> + <rect id="rect1799" transform="translate(13.258 -218.32)" rx="1.0614" ry="1.0243" height="2.0485" width="2.1228" y="104.46" x="147.76" fill="#f3ef7d"/> + <rect id="rect1654" transform="matrix(.0055558 .99998 -.99998 .0060553 13.258 -218.32)" height="6.724" width=".73540" y="-151.55" x="101.34"/> + <rect id="rect1756" transform="translate(13.258 -218.32)" rx="1.9459" ry="2.0695" height="4.139" width="3.8919" y="123.07" x="146.97" fill="#f3ef7d"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/lk.svg b/s/flag/lk.svg new file mode 100755 index 0000000..d8b680e --- /dev/null +++ b/s/flag/lk.svg @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg551" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3321"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <rect id="rect628" fill-rule="evenodd" height="480" width="640" y="0" x="0" stroke-width="1pt" fill="#fc0"/> + <rect id="rect626" fill-rule="evenodd" height="403.22" width="202.1" y="42.685" x="241.63" stroke-width="1pt" fill="#f60"/> + <rect id="rect625" fill-rule="evenodd" height="403.28" width="199.14" y="42.685" x="42.663" stroke-width="1pt" fill="#060"/> + <g id="g8183" transform="matrix(.64405 0 0 .64405 -21.731 144.1)"> + <rect id="rect627" fill-rule="evenodd" height="426.71" width="571.23" y="42.671" x="410.1" stroke-width="1pt" fill="#991b33"/> + <g id="g602" fill="#fc0" transform="matrix(2.3701 0 0 2.3701 0 -.000076422)"> + <path id="path579" stroke-linejoin="round" d="m267.94 101.34 3.555 0.091s-4.01 3.372-3.099 7.929c4.193-6.197 5.742-5.013 5.742-5.013-1.276 1.367-3.737 3.281-1.823 7.474 1.641-4.284 5.013-7.565 5.013-7.565s-0.912 4.739 1.093 9.114c1.458-4.375 3.919-8.111 3.919-8.111s-0.364 4.739 1.732 6.47c1.64-1.458 2.734-5.195 2.734-5.195s3.099 5.469 5.013 6.289c1.549-3.737 1.549-6.653 1.549-6.653s6.38 4.557 11.483 1.914c-4.557-1.64-6.106-5.468-6.106-5.468s8.294 3.645 11.848 2.005c-3.464-2.644-11.574-6.5623-11.574-6.5623s6.015 2.1873 7.746 1.6405c-0.82-1.1848-3.463-2.6431-3.463-2.6431" fill-rule="evenodd" stroke="#991b33" stroke-linecap="round" stroke-width="1pt"/> + <path id="selection_to_path#1" d="m317.72 56.88c10.99-1 27.97 7.98 36.97 13.97 0-2 0-3.99 1.99-4.99 2-1 5 1 4 3.99-3 6.98-14.99-1-18.98-2.99l2 3.99c-6-1-7-2-10.99-6.99-1 3.99-1 4.99-6 4.99 1.88-2.96 2.51-3.95 0-6.98l-1 5.98-4.99-6.98v6.98c-1-0.99-5-3.99-7-3.99-2.99-1-4.99 4.99-5.99 7.99 3-3 3.99-4.99 8.99-3-2.71 2.56-1.92 5.63 1 7.98 0 0 0.52-4.15 0.84-5.1 1.59 1.19 4.96 5.66 9.15 6.1 3 0 6-1 8.99-1.99 9.99-1 31.97 0.99 26.98 15.96-1 3-2 4.99-4 6.99 13.99 4.99 2 22.95-1 31.93-2 7.98-0.61 14.34 9.24 13.31-1.99 3.99-5.24 4.65-9.24 4.65 0 0 0.5 2.4 3.07 3.53-4.27 3.83 1.48 9.57-1.07 12.44-4.3 2.06-9.99-1-9.99-1l-0.28 2.83s-7.55-0.52-7.71-0.84c0 0 2.15-4.02 1.99-4.1-2 2.99-3.91 4.74-7.99 4.1 0 0 0.32-1.88 2.55-4.26-3.03 3.02-3.36 4.34-6.54 4.26 0-4.99 2.99-10.97 8.99-8.98 1 0 4.15 2.48 5.63 0.88 1.2-1.72 0.49-7.54 0.49-9.54 0.63-8.82-1.13-8.3-6.12-13.29-4-2.99-6.922-7.574-11.912-8.574-5-1-13.068 4.584-17.068 6.574-9.99 5.99-18.98 9.98-29.97 11.98 0 0 0.217-0.51 0.217-1.508 0-0.673 10.787-9.069 12.674-23.81-2.953 14.549-13.441 22.235-13.836 24.938-0.394 2.704-2.536 7.317-2.796 7.619 1.297-0.778 5.458-2.817 10.731-3.249-1.137 6.249-6.99 4.99-7.99 7.98 0 3 4 6.99 0 8.98h-15.98s2.459-3.404 2.576-4.342c-2.151 1.305-3.516 4.73-8.227 4.379 0.172-1.288 2.428-3.305 2.049-4.097-2.695 2.5-3.96 4.607-7.398 4.06 1-2.99 1-6.98 5-6.98 3-1 6 1 7.99-2 4-4.99-0.729-15.906-1.719-21.896 0-4.99 0.015-5.936-1.271-12.024l1 17.96c-4-3-8-4.99-11-8.98-6.99-8.98-4.99-18.96 4-24.95 4-2.99 6.16-4.55 11.16-6.54-1-3 1.42-5.21-2.12-6.14-1.06 1.85-2.1 3.87-4.12 3.7l1.08-4.99s-3.6 0.22-2.89 6.66c-4.14-1.99-2.11-6.66-2.11-6.66h-2s-0.01 5.94-3.27 7.14c0.88-2.79 1.27-7.14 1.27-7.14s-5.35 6.38-8.46 4.31c1.83-2.07 3.25-2.41 3-4.91-0.24-2.49-1.53-5.7025-1.764-6.2103 1.132 0.5469 8.669 2.7968 13.396 0.4531-0.313 1.5625-0.172 3.3672-0.172 3.3672 4.99-1 5.99-1 10.99 0.99-1-6.98-5-7.98-8.99-12.97v3.99c-4-0.99-5-1.99-7-5.98l-2.99 1.99c-5.27-3.11-9.16-10.49-1.68-10.06 4.46 0.56 0.68 4.08 0.68 4.08s11.44-3.6 15.98-4c0 0-1.32-2.79-5.54-3.27 3.5-2.63 7.02-3.48 9.54 2.06 2.51 0.14 4.85-2.88 3.36-6.8 3.71-0.06 5.54 2.29 7.23 4.76 1.38 0.25 2.77-1.2 2.44-6.16 3.5 2.99 5.22 3.91 5.45 6.43 2.98 0.66 5-0.01 9.49-2.01-0.99 4-0.99 4.99-4.99 6.99 2.82 3.485 3.117 7.6907 2.526 9.2196-0.979-0.2837-1.223-0.348-1.918-0.5378 0.217 1.5417 0.53 5.7832 0.392 8.2782h-2s3 8.98 3 8.98l-2 3c6.99-3 13.99-2 20.98-3.99 7.99-1 15.99-4 24.98-4 5.99 0 5.99 3 13.99 3v-4.99c0-3.99-3-7.98-8-8.98-2.99 0-7.99 1.99-10.99 2.99-3.99 1-9.99 1-13.99 1-12.98-2-10.91-3.26-15.44-5.69-2.71 0.72-4.23 3.02-5.58 7.08-2.51-3.68-1.95-8.38 1.04-10.37-2.99-10.98 5-15.97 14.99-17.96z"/> + <path id="selection_to_path" stroke-linejoin="round" d="m320.72 146.69c-2-3-9-7.99-7-12.98 3-4.99 19.99-12.97 22.98-1.99 1 2.99-2.082 10.927-3.082 13.927 1.513-0.389 3.195-2.713 8.119-1.871-0.917 3.92-6.907 6.943-6.907 6.943 0.608 2.652-4.12 14.921-4.12 14.921h-12.99l2-3.99-3 3.99h-5l4-4.99s-4.731 5.542-8.763 5.321c1-7.98 5.763-9.311 12.763-6.311 1-3.99 2.99-8.98 1-12.97z" stroke="#991b33"/> + <path id="path577" d="m267.22 71.542c-1.347 0.8286-0.247 6.3104 1.822 5.3772 2.579-1.1629-0.799-6.0068-1.822-5.3772z" fill-rule="evenodd" stroke="#991b33" stroke-width="1pt"/> + <path id="path578" stroke-linejoin="round" d="m268.49 69.811c2.461 1.7316 6.38 6.3797 11.21 6.1063-3.646-3.0076-2.916-5.1949-2.916-5.1949 1.914 2.2784 8.293 4.3746 10.389 3.4631-2.46-1.8227-2.916-2.005-3.463-3.7365 2.917 0.3646 6.562 1.0026 9.478-0.2734" fill-rule="evenodd" stroke="#991b33" stroke-linecap="round" stroke-width="1pt"/> + <path id="path580" stroke-linejoin="round" d="m273.23 100.25 0.273-4.1924s2.734 6.3794 4.739 6.4704c-1.276-4.6472-0.729-8.3843-0.729-8.3843" fill-rule="evenodd" stroke="#991b33" stroke-linecap="round" stroke-width="1pt"/> + <path id="path581" stroke-linejoin="round" d="m279.61 95.147s5.468 10.025 8.111 8.3847c-4.01-3.5549-3.554-8.2025-3.554-8.2025s1.823 6.1975 7.2 8.1115c0.364-3.4635-2.096-9.114-2.096-9.114s4.465 7.838 6.744 8.02c1.458-1.822 0.911-3.7365 0.911-3.7365" fill-rule="evenodd" stroke="#991b33" stroke-linecap="round" stroke-width="1pt"/> + <path id="path582" stroke-linejoin="round" d="m275.33 88.221 4.01 5.1037 0.638-6.8353s3.919 3.0986 4.648 3.0075-1.094-7.291-1.094-7.291 5.286 8.0202 5.651 7.8378c0.364-0.1823 0.546-7.929 0.546-7.929s4.011 11.028 5.378 10.937c1.367-0.0911 1.002-1.5493 1.002-1.5493" fill-rule="evenodd" stroke="#991b33" stroke-linecap="round" stroke-width="1pt"/> + <path id="path583" stroke-linejoin="round" d="m272.32 79.289s6.197 5.6505 6.835 5.286c0.638-0.3646-2.551-6.562-2.551-6.562s3.554 3.3721 4.921 3.6455 0.456-4.3746 0.456-4.3746 4.192 3.5544 4.921 3.3721 0.365-3.3721 0.365-3.3721 2.734 2.7342 2.916 2.7342-0.547-7.8379-0.547-7.8379 6.107 6.4708 6.562 6.3797" fill-rule="evenodd" stroke="#991b33" stroke-linecap="round" stroke-width="1pt"/> + <path id="path584" stroke-linejoin="round" d="m247.53 81.294c0.273 0.4557 1.288 8.515 13.774 5.234 1.185-0.638 0.664 2.2523 0.612 3.0986 0.547-0.0911 6.498-2.2133 10.599 0.7943-0.482-3.3335-1.381-5.5725-4.935-7.4864-1.731-0.3645-2.995 0.5207-2.995 0.5207s-15.05 0.1173-17.055-2.1612z" fill-rule="evenodd" stroke="#991b33" stroke-linecap="round" stroke-width="1pt"/> + <path id="selection_to_path#2" stroke-linejoin="round" d="m240.72 132.61c-0.207 0.933-0.86 1.202-2.725 3.897 0.829 1.14 4.643 2.922 5.679 1.99 0.933-0.519 1-2.99 1-2.99 2 2.99 5.518 7.705 9.518 8.705 2.99 1 5.99-1 5.99-3.99s-4.518-7.819-6.508-9.809c-5-5.99-4.559-17.303-14.011-15.729-0.049 0.086-0.427 1.373-1.333 1.603 0.759 1.453 1.185 2.681-0.632 3.138 1.413 1.388 1.635 2.396-0.181 3.093 1.099 1.474 2.386 2.015-0.144 3.276 2.647 2.58 3.217 6.376 3.347 6.816" stroke="#991b33" stroke-linecap="round"/> + <path id="path585" d="m238.26 48.041c-3.005 4.3527-3.317 52.233-2.384 61.871-3.005 1.969-8.601 1.14-10.156 0.518 0.726-3.42 3.316-58.969 12.54-62.389z" fill-rule="evenodd" stroke="#991b33" stroke-width="1pt"/> + <path id="path586" d="m229.76 146.18s-13.266 1.865-7.67-6.01c4.768-2.073 4.664 2.798 2.902 4.456 2.177 0.242 3.628-1.175 3.938-3.317-2.694-3.627 1.14-6.011 0.933-6.011-9.223 2.073-10.467-4.249-7.047-5.285 4.319 0.241 2.937 1.623 4.664 2.902 3.109-2.867 4.975-3.143 6.84-0.207 1.865-2.902 4.56-2.591 4.663-2.28 3.006 5.077-3.627 5.388-6.321 4.766 2.28 2.488 1.347 4.871 0.621 6.634 0.069 1.727 1.383 2.003 3.524 2.694-4.559-12.575 16.064 3.35-4.664 1.762 0.035 0.552 0.07 1.105 0.104 1.658 1.693 0.311 2.867 0.725 3.419 2.487-0.724 0.967-1.864 1.105-3.626 0.415 0 0 1.036 2.902-0.829 3.731-1.555-0.933-1.762-3.213-1.762-3.213-0.864 1.071-2.142 0.379-3.213-0.518 0.968-2.384 3.697-1.245 3.524-4.664z" fill-rule="evenodd"/> + <path id="path587" d="m218.36 107.84c0.794-3.594 9.154-3.145 5.182 0.725 2.659 4.249 10.812 3.628 13.887 1.244-2.592-4.941 4.457-3.87 4.146-0.104-0.864 6.666-24.113 5.769-23.215-1.865z" fill-rule="evenodd"/> + <path id="path592" d="m384.27 171.44c2.49 4.66 6.911 15.702 9.36 18.34 2.295 2.052 8.01 1.81 9.77-0.51 0 0 3.66 3.77 5.14 4.91 0.88-0.3 1.42-1.14 1.42-1.14-1.49-1.62-3.52-2.53-4.52-5.53 1.49-1.99 2.31-5.86 1.31-8.86-4.37-7.32-18.91-4.43-22.48-7.21z" stroke="#991b33"/> + <path id="path593" d="m202.8 44.287c-2.49-4.66-6.911-15.702-9.36-18.34-2.295-2.052-8.01-1.81-9.77 0.51 0 0-3.66-3.77-5.14-4.91-0.88 0.3-1.42 1.14-1.42 1.14 1.49 1.62 3.52 2.53 4.52 5.53-1.49 1.99-2.31 5.86-1.31 8.86 4.37 7.32 18.91 4.43 22.48 7.21z" stroke="#991b33"/> + <path id="path594" d="m201.32 170.73c-4.66 2.49-15.702 6.911-18.34 9.36-2.052 2.295-1.81 8.01 0.51 9.77 0 0-3.77 3.66-4.91 5.14 0.3 0.88 1.14 1.42 1.14 1.42 1.62-1.49 2.53-3.52 5.53-4.52 1.99 1.49 5.86 2.31 8.86 1.31 7.32-4.37 4.43-18.91 7.21-22.48z" stroke="#991b33"/> + <path id="path595" d="m384.65 44.286c2.49-4.66 6.911-15.702 9.36-18.34 2.295-2.052 8.01-1.81 9.77 0.51 0 0 3.66-3.77 5.14-4.91 0.88 0.3 1.42 1.14 1.42 1.14-1.49 1.62-3.52 2.53-4.52 5.53 1.49 1.99 2.31 5.86 1.31 8.86-4.37 7.32-18.91 4.43-22.48 7.21z" stroke="#991b33"/> + <path id="path596" stroke-linejoin="round" d="m222.1 116.03c-0.196 1.518 3.427 2.179 7.141 2.197 3.714 0.019 7.521-0.605 7.692-1.658 0.049-1.885-3.243-0.282-6.988-0.313-3.745-0.03-6.866-1.499-7.845-0.226z" fill-rule="evenodd" stroke="#fc0" stroke-width="1pt"/> + <path id="path597" stroke-linejoin="round" d="m222.4 120.24c0.048 1.42 3.647 1.762 6.829 1.86 3.183 0.098 6.389-0.538 6.976-1.566-0.564-1.616-4.1-0.269-6.977-0.196-2.876 0.074-6.07-1.42-6.828-0.098z" fill-rule="evenodd" stroke="#fc0" stroke-width="1pt"/> + <path id="path598" stroke-linejoin="round" d="m223.43 124.01c-0.245 1.077 2.925 1.848 5.844 1.866s7.056-1.108 7.08-2.258c-0.171-0.905-4.259 0.318-7.006 0.41-2.748 0.092-5.918-0.997-5.918-0.018z" fill-rule="evenodd" stroke="#fc0" stroke-width="1pt"/> + <path id="path599" stroke-linejoin="round" d="m223.08 127.88c0.245 1.052 3.844 1.408 7.007 1.169 3.164-0.238 6.382-1.218 6.651-2.344-0.146-0.71-3.781 0.551-6.792 0.704s-6.915-0.362-6.866 0.471z" fill-rule="evenodd" stroke="#fc0" stroke-width="1pt"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/lr.svg b/s/flag/lr.svg new file mode 100755 index 0000000..4df8286 --- /dev/null +++ b/s/flag/lr.svg @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg665" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3336"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs667"> + <clipPath id="clipPath3540" clipPathUnits="userSpaceOnUse"> + <rect id="rect3542" fill-opacity="0.67" height="512" width="682.67" y="-.0000021241" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3540)" fill-rule="evenodd" transform="matrix(.93750 0 0 .93750 0 .0000019913)"> + <rect id="rect560" height="511.92" width="767.87" y=".083530" x=".000014447" stroke-width="1pt" fill="#fff"/> + <rect id="rect668" height="232.75" width="232.74" y="-9.5483e-7" x="-3.5028e-14" stroke-width="1pt" fill="#006"/> + <rect id="rect669" height="47.127" width="767.89" y="464.87" x=".000014447" stroke-width="1pt" fill="#c00"/> + <rect id="rect670" height="46.574" width="767.89" y="465.43" x=".000014447" stroke-width="1pt" fill="#c00"/> + <rect id="rect672" height="46.21" width="767.89" y="372.52" x="0" stroke-width="1pt" fill="#c00"/> + <rect id="rect673" height="46.7" width="765.96" y="279.26" x="0" stroke-width="1pt" fill="#c00"/> + <rect id="rect675" height="46.494" width="535.17" y=".055372" x="232.67" stroke-width="1pt" fill="#c00"/> + <rect id="rect676" height="46.796" width="535.17" y="186.06" x="232.67" stroke-width="1pt" fill="#c00"/> + <rect id="rect677" height="46.494" width="535.17" y="93.361" x="232.67" stroke-width="1pt" fill="#c00"/> + <path id="path205" d="m166.35 177.47-50.71-30.98-50.465 31.29 18.769-50.85-50.373-31.394 62.321-0.438 19.328-50.691l19.744 50.574 62.321 0.0667-50.115 31.693 19.184 50.732z" stroke-width=".11287" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/ls.svg b/s/flag/ls.svg new file mode 100755 index 0000000..021e000 --- /dev/null +++ b/s/flag/ls.svg @@ -0,0 +1,173 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + version="1.0" + width="640" + height="480" + viewBox="0 0 320 240" + id="svg2" + inkscape:version="0.48.4 r9939" + sodipodi:docname="ls.svg"> + <metadata + id="metadata32"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs30"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath3033"> + <rect + style="fill:#000000;stroke:none" + id="rect3035" + width="400" + height="300" + x="25" + y="-60.000008" /> + </clipPath> + </defs> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1215" + inkscape:window-height="776" + id="namedview28" + showgrid="false" + inkscape:zoom="0.72" + inkscape:cx="205.55556" + inkscape:cy="300" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" /> + <g + id="flag" + transform="matrix(0.8,0,0,0.8,-20,48)" + clip-path="url(#clipPath3033)" + inkscape:label="#g3009"> + <rect + style="fill:#ffffff" + y="-60" + x="0" + id="rect4" + height="300" + width="450" /> + <rect + style="fill:#009543" + x="0" + id="rect6" + y="150" + height="90" + width="450" /> + <rect + style="fill:#00209f" + y="-60" + x="0" + id="rect8" + height="90" + width="450" /> + <g + id="g10" + transform="matrix(1.136951,0,0,1.136951,-30.56399,-88.2596)"> + <path + inkscape:connector-curvature="0" + id="path1873" + style="fill:#000000;stroke:#000000;stroke-width:0.87954509px;stroke-linecap:butt;stroke-linejoin:miter" + d="m 224.57279,108.91288 c -1.50388,0.0324 -2.97116,1.69822 -2.97116,1.69822 l 0.12957,17.79578 -5.61839,5.88594 4.54822,0 -0.0384,10.20503 -26.90654,36.23074 -3.97746,-1.37476 -6.952,14.83008 c 0,0 17.19492,10.76695 42.15236,10.47257 27.39225,-0.32574 42.27445,-10.96924 42.27445,-10.96924 l -7.18387,-14.63937 -3.51783,1.52979 -27.25092,-36.04277 -0.0384,-10.50962 4.54822,0 -6.19007,-5.81274 0.0366,-17.73099 c 0,0 -1.54047,-1.60105 -3.04434,-1.56866 z" /> + <path + inkscape:connector-curvature="0" + id="path2760" + style="fill:none;stroke:#000000;stroke-width:4.39772797;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none" + d="m 233.9532,151.51811 -18.6046,0 c 0,0 -6.7528,-14.22794 -5.6582,-24.17473 1.11455,-10.12817 6.90291,-14.91939 14.59866,-15.00419 9.09883,-0.10138 13.86768,4.45847 15.30833,14.59867 1.42758,10.04818 -5.64419,24.58025 -5.64419,24.58025 z" /> + <path + inkscape:connector-curvature="0" + id="path3649" + style="fill:#ffffff;stroke:none" + d="m 192.05034,185.43391 c -0.30414,0.40552 -2.53449,4.86622 -2.53449,4.86622 l 3.85243,-0.81104 -1.31794,-4.05518 z" /> + <path + inkscape:connector-curvature="0" + id="path3651" + style="fill:#ffffff;stroke:none" + d="m 194.28069,191.21255 -4.05518,1.31793 4.86622,1.92622 -0.81104,-3.24415 z" /> + <path + inkscape:connector-curvature="0" + id="path3653" + style="fill:#ffffff;stroke:none" + d="m 196.10552,185.53529 2.0276,5.9814 4.9676,-1.41932 -1.31794,-2.83863 -5.67726,-1.72345 z" /> + <path + inkscape:connector-curvature="0" + id="path3655" + style="fill:#ffffff;stroke:none" + d="m 199.24829,193.64566 0.70966,2.43311 6.58968,1.62207 -2.63587,-5.57588 -4.66347,1.5207 z" /> + <path + inkscape:connector-curvature="0" + id="path3657" + style="fill:#ffffff;stroke:none" + d="m 206.54763,188.57668 2.33173,5.57588 4.9676,-1.92622 -1.62207,-2.43311 -5.67726,-1.21655 z" /> + <path + inkscape:connector-curvature="0" + id="path3659" + style="fill:#ffffff;stroke:none" + d="m 209.79178,196.18015 0.81103,2.12897 7.70486,1.11518 -3.24415,-5.06898 -5.27174,1.82483 z" /> + <path + inkscape:connector-curvature="0" + id="path3661" + style="fill:#ffffff;stroke:none" + d="m 217.19249,190.19875 2.83863,4.9676 7.19795,-2.63587 -0.81103,-1.92621 -9.22555,-0.40552 z" /> + <path + inkscape:connector-curvature="0" + id="path3663" + style="fill:#ffffff;stroke:none" + d="m 221.34906,196.99119 1.52069,2.63587 8.92141,-0.30414 -3.34553,-4.9676 -7.09657,2.63587 z" /> + <path + inkscape:connector-curvature="0" + id="path3665" + style="fill:#ffffff;stroke:none" + d="m 230.77736,190.40151 2.43311,4.15657 5.67726,-2.73725 -1.52069,-2.23036 -6.58968,0.81104 z" /> + <path + inkscape:connector-curvature="0" + id="path3667" + style="fill:#ffffff;stroke:none" + d="m 240.10429,193.54428 -5.67726,2.83863 1.52069,2.43311 7.60347,-1.21655 -3.4469,-4.05519 z" /> + <path + inkscape:connector-curvature="0" + id="path3669" + style="fill:#ffffff;stroke:none" + d="m 241.92912,189.18496 2.94001,3.64966 4.76484,-3.75105 -1.62207,-1.72345 -6.08278,1.82484 z" /> + <path + inkscape:connector-curvature="0" + id="path3671" + style="fill:#ffffff;stroke:none" + d="m 250.64777,191.11117 -4.56208,3.44691 1.21655,2.12897 6.28554,-1.62208 -2.94001,-3.9538 z" /> + <path + inkscape:connector-curvature="0" + id="path3673" + style="fill:#ffffff;stroke:none" + d="m 256.93331,183.91321 1.11517,1.62208 -3.14276,4.66346 -3.24415,-4.15656 5.27174,-2.12898 z" /> + <path + inkscape:connector-curvature="0" + id="path3675" + style="fill:#ffffff;stroke:none" + d="m 259.06228,187.9684 1.92621,3.85243 -3.85242,1.31793 -0.30414,-1.82483 2.23035,-3.34553 z" /> + </g> + </g> +</svg> diff --git a/s/flag/lt.svg b/s/flag/lt.svg new file mode 100755 index 0000000..dabb210 --- /dev/null +++ b/s/flag/lt.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3357"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" transform="matrix(.64143 0 0 .96773 0 .000014494)" stroke-width="1pt"> + <rect id="rect171" transform="matrix(.93865 0 0 .69686 0 -.000015259)" rx="0" ry="0" width="1063" y="0" x="0" height="708.66" fill="#007308"/> + <rect id="rect256" transform="matrix(.93865 0 0 .69686 0 -.000015259)" rx="0" ry="0" width="1063" y="475.56" x="0" height="236.22" fill="#bf0000"/> + <rect id="rect255" height="164.61" width="997.77" y="-.000015" x="0" fill="#ffb300"/> + </g> +</svg> diff --git a/s/flag/lu.svg b/s/flag/lu.svg new file mode 100755 index 0000000..1f1f662 --- /dev/null +++ b/s/flag/lu.svg @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- +On October 30, 2003, Brett Roper dedicated to the public domain the +work "SVG graphic of Luxembourg Flag." Before making the dedication, +Brett Roper represented that Brett Roper owned all copyrights in the +work. By making the dedication, Brett Roper made an overt act +of relinquishment in perpetuity of all present and future rights under +copyright law, whether vested or contingent, in "SVG graphic of +Luxembourg Flag." + +Brett Roper understands that such relinquishment of all rights +includes the relinquishment of all rights to enforce (by lawsuit or +otherwise) those copyrights in the Work. + +Brett Roper recognizes that, once placed in the public domain, +"SVG graphic of Luxembourg Flag" may be freely reproduced, +distributed, transmitted, used, modified, built upon, or otherwise exploited by anyone for any +purpose, commercial or non-commercial, and in any way, including by +methods that have not yet been invented or conceived. +--> +<svg id="canada" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" fill="#28ff09"> + <metadata id="metadata3365"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" fill-opacity="1" transform="matrix(.86011 0 0 .96762 0 .000014672)"> + <rect id="rect569" height="166.06" width="744.09" y="-.000015260" x="0" fill="#f00"/> + <rect id="rect570" height="166.25" width="744.09" y="166.06" x="0" fill="#fff"/> + <rect id="rect571" height="163.75" width="744.09" y="332.31" x="0" fill="#0098ff"/> + </g> +</svg> diff --git a/s/flag/lv.svg b/s/flag/lv.svg new file mode 100755 index 0000000..e6a1058 --- /dev/null +++ b/s/flag/lv.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>SVG graphic of Latvia flag</dc:title> + <dc:rights><Agent> + <dc:title>Lauris Buksis</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> +</rdf:RDF> +--> +<svg id="svg554" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3373"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" transform="matrix(.60207 0 0 .90311 0 .000013347)"> + <rect id="rect6" height="531.5" width="1063" y="-.000015" x="0" fill="#fff"/> + <rect id="rect561" height="212.6" width="1063" y="-.000015260" x="0" stroke-width="1pt" fill="#ab231d"/> + <rect id="rect562" height="212.6" width="1063" y="318.9" x="0" stroke-width="1pt" fill="#ab231d"/> + </g> +</svg> diff --git a/s/flag/ly.svg b/s/flag/ly.svg new file mode 100755 index 0000000..4a7d630 --- /dev/null +++ b/s/flag/ly.svg @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata16"> + <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/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs14"> + <clipPath id="clipPath3005" clipPathUnits="userSpaceOnUse"> + <rect id="rect3007" height="500" width="666.67" y="-20" x="166.67"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3005)" transform="matrix(.96 0 0 .96 -160 19.2)"> + <rect id="rect4" height="500" width="1e3" y="-20" x="0" fill="#239e46"/> + <rect id="rect6" height="375" width="1e3" y="-20" x="0"/> + <rect id="rect8" height="125" width="1e3" y="-20" x="0" fill="#e70013"/> + <path id="path10" d="m544.2 185.8a54.3 54.3 0 1 0 0 88.4 62.5 62.5 0 1 1 0 -88.4m-13.8 44.2 84.1-27.3-52 71.5v-88.4l52 71.5z" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/ma.svg b/s/flag/ma.svg new file mode 100755 index 0000000..59f9277 --- /dev/null +++ b/s/flag/ma.svg @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3387"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath11737" clipPathUnits="userSpaceOnUse"> + <rect id="rect11739" fill-opacity="0.67" height="480" width="640" y="-48" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath11737)" transform="translate(0 48)" stroke-width="1pt"> + <rect id="rect171" height="640" width="640" y="-128" x="0" fill="#eb0013"/> + <path id="path401" d="m371.01 263.71-166.75 116.61 42.967-131.57 22.318 16.163-16.012 48.063 108.75-78.369 8.7298 29.105zm17.105-76.157 58.208 195.62-109.3-81.567 22.482-15.934 38.898 29.187-40.653-128.4 30.368 1.093zm-68.999-38.843 204.88 0.24096-111.65 80.529-8.933-26.067 41.515-27.793-135.44 1.9117 9.6297-28.821zm-57.93 52.3 64.88-195.91 44.65 134.69-27.56 0.35-16.44-51.593-41.16 130.61-24.37-18.15zm33.248 70.407-165.29-121.32 139.53-1.0785-8.139 26.324-51.786-0.20904 110.45 78.669-24.761 17.615z" fill="#0b5035"/> + </g> +</svg> diff --git a/s/flag/mc.svg b/s/flag/mc.svg new file mode 100755 index 0000000..c72ef98 --- /dev/null +++ b/s/flag/mc.svg @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3394"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" transform="matrix(1.25 0 0 .93750 0 -.000020797)" stroke-width="1pt"> + <rect id="rect551" width="512" y=".000022460" x="0" height="256" fill="#f31830"/> + <rect id="rect552" height="256" width="512" y="256" x="0" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/md.svg b/s/flag/md.svg new file mode 100755 index 0000000..a064434 --- /dev/null +++ b/s/flag/md.svg @@ -0,0 +1,101 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3477"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <g id="g11439" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.25,0,0,0.9375,0,-5.625e-6)"> + <rect id="rect551" height="512" width="170.67" y="0.000006" x="0" fill="#00319c"/> + <rect id="rect552" height="512" width="170.67" y="0.000006" x="170.67" fill="#ffde00"/> + <rect id="rect553" height="512" width="170.67" y="0.000006" x="341.33" fill="#de2110"/> + </g> + <g id="g11201" transform="matrix(1.2303 0 0 1.2303 4.0689 -75.14)"> + <path id="path905" d="m289.61 321.48s18.628 26.877 19.724 28.458c1.096 1.5813 2.1917 3.1622 0.53732 4.2092-1.6549 1.0473-1.1175 5.2565-0.0218 6.8373 2.1917 3.1622 4.9418 3.696 6.5966 2.6487 1.6544-1.047 13.236-8.3766 14.89-9.4236 1.6548-1.0473 2.2135-3.6752 0.0218-6.8373-1.2578-1.5938-4.9418-3.696-6.5966-2.6487-1.6544 1.047-2.7501-0.53386-3.8461-2.1152-1.0957-1.5809-17.533-25.296-19.724-28.458" fill-rule="evenodd" stroke="#000" stroke-width="0.445pt" fill="#ff1900"/> + <path id="path907" d="m177.17 696.26c0 24.461-9.5184 44.291-21.26 44.291-11.741 0-21.26-19.83-21.26-44.291s9.5184-44.291 21.26-44.291c11.741 0 21.26 19.83 21.26 44.291z" fill-rule="evenodd" transform="matrix(.42858 -.34452 .36055 .40954 -29.658 77.264)" stroke="#000" stroke-width="2.5401" fill="#a77b3b"/> + <path id="path898" d="m209.61 309.91l-17.413 29.803c-0.9676 1.656-1.9349 3.3116-3.6675 2.3873-1.7331-0.92459-5.4006 1.4627-6.3679 3.1183-1.9349 3.3116-1.1696 5.8915 0.56342 6.8161 1.7326 0.92433 13.862 7.3952 15.594 8.3195 1.7331 0.92459 4.433 0.19334 6.3679-3.1183 0.90497-1.7992 1.1697-5.8915-0.56341-6.8161-1.7326-0.92433-0.76527-2.5799 0.20233-4.236 0.96732-1.6556 15.478-26.492 17.413-29.803" fill-rule="evenodd" stroke="#000" stroke-width="0.445pt" fill="#ff1900"/> + <path id="path895" d="m265.87 289.13h-15.876c-0.52478 0.50199-5.0395 28.935-9.9222 39.822-5.9535 13.274-23.783 24.987-23.783 24.987s10.682 3.2352 13.861 5.3534c0.79026-0.2221 17.83-3.7923 19.814-24.652 1.9849 20.86-11.876 30.341-11.876 30.341s19.845 5.6889 19.845 18.963c0-13.274 19.845-18.963 19.845-18.963s-9.9536-9.4812-11.938-30.341c3.9686 20.86 19.085 24.43 19.876 24.652 3.1784-2.1182 13.861-5.3534 13.861-5.3534s-17.83-11.713-23.783-24.987c-4.8827-10.887-9.3974-39.32-9.9222-39.822z" fill-rule="evenodd" stroke="#000" stroke-width="1.3906" fill="#a77b3b"/> + <path id="path728" d="m198.37 194.3 29.768 9.4812c9.9222 0 19.845-9.471 19.845-18.953 0.32988-21.093-7.9384-28.454-9.9228-28.454l3.9692-3.7928-5.9535-5.6889s1.9905-9.8376 21.829-9.4716c19.838 0.36659 19.845 9.4817 19.845 18.963 0 9.4817-9.9222 9.4817-9.9222 28.445 0 9.4817 9.9222 18.963 19.845 18.963l29.768-9.4812v94.815h-119.07v-94.825z" fill-rule="evenodd" stroke="#000" stroke-width="1.3906" fill="#a77b3b"/> + <g id="g853" stroke="#000" fill="none" transform="matrix(.56007 0 0 .53518 9.8408 -55.998)"> + <path id="path732" d="m302.16 292.24 14.645 14.964 14.644-14.964 14.645 14.964 29.29-14.964 14.261 15.809 15.028-15.809 21.605 15.809 22.329-15.809 14.645 14.964 14.645-14.964" transform="matrix(.24195 0 0 .71037 345 267.2)" stroke-width=".49015"/> + <path id="path827" d="m432.28 435.83-7.086 38.976" transform="translate(-.00015259 .00012207)" stroke-width=".20320"/> + <path id="path828" d="m435.83 435.83v38.976" transform="translate(-.00022888 .00012207)" stroke-width=".20320"/> + <path id="path829" d="m442.91 435.83v38.976" stroke-width=".20320"/> + <path id="path830" d="m450 435.83 3.543 38.976" transform="translate(0 .00012207)" stroke-width=".20320"/> + <path id="path831" d="m457.09 435.83 3.543 38.976" stroke-width=".20320"/> + </g> + <g id="g712" transform="matrix(.56007 0 0 .53518 9.8408 -55.998)" stroke="#000" stroke-width="2.5401"> + <path id="path691" d="m318.9 361.42c35.433 17.717 35.433 53.149 35.433 70.866-1.251 16.117 0 354.33 0 354.33s-2.306-20.022-17.717-35.433l-17.716-17.716-17.717-17.717c-12.951-11.774-17.716-35.433-17.716-53.15v-248.03s0-17.717 35.433-53.15z" fill-rule="evenodd" transform="matrix(-1 0 0 1 620.08 .00027466)" fill="#a77b3b"/> + <path id="path692" d="m283.46 574.02c0.417 0 17.716-17.717 17.716-17.717l17.717 17.717s17.716-17.717 17.716-17.717l17.717 17.717" transform="matrix(-1 0 0 1 620.08 -141.73)" fill="none"/> + <path id="path693" d="m283.46 574.02c0.417 0 17.716-17.717 17.716-17.717l17.717 17.717s17.716-17.717 17.716-17.717l17.717 17.717" transform="matrix(-1 0 0 -1 620.08 1024)" fill="none"/> + <path id="path694" d="m283.46 574.02c0.417 0 17.716-17.717 17.716-17.717l17.717 17.717s17.716-17.717 17.716-17.717l17.717 17.717" transform="matrix(-1 0 0 1 620.08 -70.866)" fill="none"/> + <path id="path695" d="m301.39 556.99-0.208 158.76" transform="matrix(-1 0 0 1.8971 620.08 -642.07)" fill="none"/> + <path id="path696" d="m301.39 539.27-0.208 176.48" transform="matrix(-1 0 0 1.7027 602.57 -485.94)" fill="none"/> + <path id="path697" d="m301.39 539.27-0.208 176.48" transform="matrix(-1 0 0 1.9074 584.85 -614.03)" fill="none"/> + </g> + <g id="g720" transform="matrix(.56007 0 0 .53518 9.8408 -55.998)" stroke="#000" stroke-width="2.5401"> + <path id="path675" d="m318.9 361.42c35.433 17.717 35.433 53.149 35.433 70.866-1.251 16.117 0 354.33 0 354.33s-2.306-20.022-17.717-35.433l-17.716-17.716-17.717-17.717c-12.951-11.774-17.716-35.433-17.716-53.15v-248.03s0-17.717 35.433-53.15z" fill-rule="evenodd" transform="translate(265.75 .00027466)" fill="#a77b3b"/> + <path id="path676" d="m283.46 574.02c0.417 0 17.716-17.717 17.716-17.717l17.717 17.717s17.716-17.717 17.716-17.717l17.717 17.717" transform="translate(265.75 -141.73)" fill="none"/> + <path id="path677" d="m283.46 574.02c0.417 0 17.716-17.717 17.716-17.717l17.717 17.717s17.716-17.717 17.716-17.717l17.717 17.717" transform="matrix(1 0 0 -1 265.75 1024)" fill="none"/> + <path id="path678" d="m283.46 574.02c0.417 0 17.716-17.717 17.716-17.717l17.717 17.717s17.716-17.717 17.716-17.717l17.717 17.717" transform="translate(265.75 -70.866)" fill="none"/> + <path id="path679" d="m301.39 556.99-0.208 158.76" transform="matrix(1 0 0 1.8971 265.75 -642.07)" fill="none"/> + <path id="path680" d="m301.39 539.27-0.208 176.48" transform="matrix(1 0 0 1.7027 283.26 -485.94)" fill="none"/> + <path id="path681" d="m301.39 539.27-0.208 176.48" transform="matrix(1 0 0 1.9074 300.97 -614.03)" fill="none"/> + </g> + <path id="path903" d="m177.17 696.26c0 24.461-9.5184 44.291-21.26 44.291-11.741 0-21.26-19.83-21.26-44.291s9.5184-44.291 21.26-44.291c11.741 0 21.26 19.83 21.26 44.291z" fill-rule="evenodd" transform="matrix(.51699 .20583 -.21541 .49401 290.24 -73.211)" stroke="#000" stroke-width="2.5401" fill="#a77b3b"/> + <g id="g860" transform="matrix(.56007 0 0 .53518 9.8408 -55.998)"> + <rect id="rect741" fill-rule="evenodd" transform="translate(.00015259 -.00018311)" height="106.3" width="212.6" y="485.43" x="336.61" stroke-width="1pt" fill="#f00"/> + <path id="path742" d="m336.61 591.73h212.6v53.15c0 35.433-53.15 35.433-106.3 70.866-53.15-35.433-106.3-35.433-106.3-70.866v-53.15z" fill-rule="evenodd" transform="translate(.00086148 .00070190)" stroke-width="2.5" fill="#564dff"/> + <path id="path740" d="m336.61 485.43h212.6v159.45c0 35.433-53.15 35.433-106.3 70.866-53.149-35.433-106.3-35.433-106.3-70.866v-159.45z" transform="translate(.0015814 .00032043)" stroke="#ff0" stroke-width="2.0321" fill="none"/> + <path id="path744" d="m385.59 129.9s-50.618 55.447-50.618 108.6c0 53.149 53.149 70.866 53.149 70.866s-17.717 0-17.717 70.866c0 35.433 53.15 17.717 53.15 35.433 0 17.717-0.751 60.578 0 88.583 0 17.716-35.433 0-35.433 17.716 0 8.859 26.575 53.15 53.15 53.15 26.574 0 53.149-44.291 53.149-53.15 0-17.716-35.433 0-35.433-17.716v-88.583c0-17.716 53.15 0 53.15-35.433 0-70.866-17.717-70.866-17.717-70.866s53.15-17.717 53.15-70.866-50.619-108.6-50.619-108.6c0-0.001 28.473 73.163 28.473 108.6 0 17.717-13.287 53.149-48.72 53.149 0 0-8.961-17.716-17.717 0 0 0-10.189-17.716-17.716 0-2.598 6.115-7.207-17.716-17.717 0-4.465 4.697-7.984-17.716-17.717 0-17.716 0-53.148-17.716-53.149-53.149 0-35.433 32.902-108.6 32.902-108.6z" fill-rule="evenodd" transform="matrix(0.7 0 0 .46956 134.02 431.52)" stroke="#000" stroke-width="2.4476" fill="#ff0"/> + <path id="path746" d="m382.68 248.03c-3.543 3.543 4.581 61.274 7.087 63.779 3.543 3.543 24.803 3.543 28.346 0 2.525-2.525 0-56.693-3.543-60.236-3.543-3.544-29.384-6.049-31.89-3.543z" fill-rule="evenodd" transform="matrix(0.7 0 0 .46956 136.69 524.92)" stroke="#000" stroke-width="2.4476" fill="#ff0"/> + <path id="path747" d="m382.68 248.03c-3.543 3.543 4.581 61.274 7.087 63.779 3.543 3.543 24.803 3.543 28.346 0 2.525-2.525 0-56.693-3.543-60.236-3.543-3.544-29.384-6.049-31.89-3.543z" fill-rule="evenodd" transform="matrix(-0.7 0 0 .46956 749.14 524.92)" stroke="#000" stroke-width="2.4476" fill="#ff0"/> + <path id="path748" d="m414.57 228.54c0 8.8061-7.1388 15.945-15.945 15.945-8.8061 0-15.945-7.1388-15.945-15.945 0-8.8061 7.1388-15.945 15.945-15.945 8.8061 0 15.945 7.1388 15.945 15.945z" fill-rule="evenodd" transform="matrix(.80459 0 0 .58536 96.528 497.79)" stroke="#000" stroke-width="2.4476" fill="#ff0"/> + <path id="path749" d="m414.57 228.54c0 8.8061-7.1388 15.945-15.945 15.945-8.8061 0-15.945-7.1388-15.945-15.945 0-8.8061 7.1388-15.945 15.945-15.945 8.8061 0 15.945 7.1388 15.945 15.945z" fill-rule="evenodd" transform="matrix(.80460 0 0 .58537 147.84 497.79)" stroke="#000" stroke-width="2.4476" fill="#ff0"/> + <path id="path750" d="m414.57 228.54c0 8.8061-7.1388 15.945-15.945 15.945-8.8061 0-15.945-7.1388-15.945-15.945 0-8.8061 7.1388-15.945 15.945-15.945 8.8061 0 15.945 7.1388 15.945 15.945z" fill-rule="evenodd" transform="matrix(.38889 0 0 .26087 304.02 626.15)" stroke-width="1pt"/> + <path id="path751" d="m414.57 228.54c0 8.8061-7.1388 15.945-15.945 15.945-8.8061 0-15.945-7.1388-15.945-15.945 0-8.8061 7.1388-15.945 15.945-15.945 8.8061 0 15.945 7.1388 15.945 15.945z" fill-rule="evenodd" transform="matrix(.38889 0 0 .26087 271.77 626.15)" stroke-width="1pt"/> + <polygon id="polygon785" d="m 439.37008,549.92126 -7.78323,-10.26471 -12.76183,1.75467 1.75467,-12.76183 -10.26472,-7.78324 10.26472,-7.78324 -1.75467,-12.76183 12.76183,1.75467 7.78324,-10.26471 7.78323,10.26471 12.76184,-1.75467 -1.75467,12.76183 10.26471,7.78324 -10.26471,7.78324 1.75466,12.76183 -12.76183,-1.75467 z" fill-rule="evenodd" transform="matrix(.97561 0 0 .97561 14.26 16.248)" stroke="#000" points="439.37 549.92 431.59 539.66 418.82 541.41 420.58 528.65 410.32 520.87 420.58 513.08 418.82 500.32 431.59 502.08 439.37 491.81 447.15 502.08 459.92 500.32 458.16 513.08 468.42 520.87 458.16 528.65 459.92 541.41 447.15 539.66" stroke-width=".81282pt" fill="#ff0"/> + <path id="path786" d="m496.06 591.73l21.26 10.63 21.26-10.63-21.26-10.63-21.26 10.63z" fill-rule="evenodd" transform="translate(.00015259 -.00018311)" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + <path id="path788" d="m496.06 591.73l21.26 10.63 21.26-10.63-21.26-10.63-21.26 10.63z" fill-rule="evenodd" transform="translate(-152.36 .00016785)" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + <path id="path790" d="m535.04 659.06c-3.543-7.086-14.173-10.63-21.259-10.63-7.087 0-14.174 0-21.26 10.63 0-14.173 10.502-21.26 21.26-21.26 10.756 0 21.259 10.503 21.259 21.26z" fill-rule="evenodd" transform="matrix(.86717 -.49801 .49801 .86717 -263.15 350.11)" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + <path id="path792" d="m386.22 651.97c0 3.9138-3.1728 7.0866-7.0866 7.0866s-7.0866-3.1728-7.0866-7.0866 3.1728-7.0866 7.0866-7.0866 7.0866 3.1728 7.0866 7.0866z" fill-rule="evenodd" transform="translate(-3.5432 -17.717)" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + <path id="path793" d="m386.22 651.97c0 3.9138-3.1728 7.0866-7.0866 7.0866s-7.0866-3.1728-7.0866-7.0866 3.1728-7.0866 7.0866-7.0866 7.0866 3.1728 7.0866 7.0866z" fill-rule="evenodd" transform="translate(-10.63 7.0864)" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + <path id="path795" d="m386.22 651.97c0 3.9138-3.1728 7.0866-7.0866 7.0866s-7.0866-3.1728-7.0866-7.0866 3.1728-7.0866 7.0866-7.0866 7.0866 3.1728 7.0866 7.0866z" fill-rule="evenodd" transform="translate(-14.173 -7.0869)" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + <path id="path796" d="m386.22 651.97c0 3.9138-3.1728 7.0866-7.0866 7.0866s-7.0866-3.1728-7.0866-7.0866 3.1728-7.0866 7.0866-7.0866 7.0866 3.1728 7.0866 7.0866z" fill-rule="evenodd" transform="translate(3.5435 7.0864)" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + <path id="path797" d="m386.22 651.97c0 3.9138-3.1728 7.0866-7.0866 7.0866s-7.0866-3.1728-7.0866-7.0866 3.1728-7.0866 7.0866-7.0866 7.0866 3.1728 7.0866 7.0866z" fill-rule="evenodd" transform="translate(7.0868 -7.0869)" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + <path id="path791" d="m386.22 651.97c0 3.9138-3.1728 7.0866-7.0866 7.0866s-7.0866-3.1728-7.0866-7.0866 3.1728-7.0866 7.0866-7.0866 7.0866 3.1728 7.0866 7.0866z" fill-rule="evenodd" transform="translate(-3.5431 -3.5435)" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + </g> + <g id="g881" fill-rule="evenodd" transform="matrix(.56007 0 0 .53518 9.8408 -55.998)"> + <path id="path822" d="m389.76 386.22c-15.647 0-17.716 1.772-24.803 3.544 0-4.89 17.424-10.63 33.071-10.63 0 3.543-4.134 7.087-8.268 7.086z" transform="matrix(1.1429 0 0 1.6667 -36.784 -242.13)" stroke-width="1pt" fill="#da4500"/> + <path id="path823" d="m428.74 386.22c0 3.9138-3.1728 7.0866-7.0866 7.0866s-7.0866-3.1728-7.0866-7.0866 3.1728-7.0866 7.0866-7.0866 7.0866 3.1728 7.0866 7.0866z" transform="translate(7.0866 -3.5433)" fill="#cac9c7"/> + <path id="path825" d="m361.42 357.87v10.63h17.717v53.15h10.63v-53.15h17.716v-10.63h-17.716v-14.173h-10.63v14.173h-17.717z" stroke="#000" stroke-width=".81282pt" fill="#ff0"/> + <path id="path821" d="m396.85 387.11c-15.647 0-24.803 0.885-31.89 2.657 0-4.89 9.156-10.63 24.803-10.63 3.543 0 7.087 5.315 7.087 7.973z" transform="matrix(1.3333 0 0 2.2222 -111.03 -470.46)" stroke-width="1pt" fill="#da4500"/> + </g> + <g id="g920" fill-rule="evenodd" transform="matrix(.56007 0 0 .53518 9.8408 -55.998)"> + <path id="path908" d="m67.323 612.99c-14.173-14.17-16.634-21.36 3.543-10.1l283.75 247.5-3.366 6.968-283.93-244.37z" transform="matrix(.56340 .45036 -.20424 .35982 321.13 327.02)" stroke="#000" stroke-width=".71122" fill="#008500"/> + <path id="path912" d="m106.3 825.59c61.099-21.171 49.646-102.47 42.618-103.04-7.028-0.572-33.42 18.668-36.963 36.385-7.086-28.346-23.102-54.578-32.342-51.546-13.861 3.032 2.4664 47.491-4.6203 54.578-7.0866 3.543-39.117-21.736-46.203-18.193-7.0866 3.544 18.481 100.06 77.511 81.813z" transform="matrix(.13171 -.18019 .3274 .23930 23.692 542.15)" fill="#008f00"/> + <path id="path913" d="m106.3 825.59c61.099-21.171 49.646-102.47 42.618-103.04-7.028-0.572-33.42 18.668-36.963 36.385-7.086-28.346-23.102-54.578-32.342-51.546-13.861 3.032 2.4664 47.491-4.6203 54.578-7.0866 3.543-39.117-21.736-46.203-18.193-7.0866 3.544 18.481 100.06 77.511 81.813z" transform="matrix(.13171 -.18019 .3274 .23930 -4.4099 495.32)" fill="#008f00"/> + <path id="path914" d="m106.3 825.59c61.099-21.171 49.646-102.47 42.618-103.04-7.028-0.572-33.42 18.668-36.963 36.385-7.086-28.346-23.102-54.578-32.342-51.546-13.861 3.032 2.4664 47.491-4.6203 54.578-7.0866 3.543-39.117-21.736-46.203-18.193-7.0866 3.544 18.481 100.06 77.511 81.813z" transform="matrix(.13171 -.18019 .3274 .23930 -25.914 452.8)" fill="#008f00"/> + <path id="path915" d="m106.3 825.59c61.099-21.171 49.646-102.47 42.618-103.04-7.028-0.572-33.42 18.668-36.963 36.385-7.086-28.346-23.102-54.578-32.342-51.546-13.861 3.032 2.4664 47.491-4.6203 54.578-7.0866 3.543-39.117-21.736-46.203-18.193-7.0866 3.544 18.481 100.06 77.511 81.813z" transform="matrix(.13171 -.18019 .3274 .23930 -47.174 406.73)" fill="#008f00"/> + <path id="path916" d="m106.3 825.59c61.099-21.171 49.646-102.47 42.618-103.04-7.028-0.572-33.42 18.668-36.963 36.385-7.086-28.346-23.102-54.578-32.342-51.546-13.861 3.032 2.4664 47.491-4.6203 54.578-7.0866 3.543-39.117-21.736-46.203-18.193-7.0866 3.544 18.481 100.06 77.511 81.813z" transform="matrix(.22320 -.00073722 .0013390 .40553 219.6 248.33)" fill="#008f00"/> + <path id="path917" d="m106.3 825.59c61.099-21.171 49.646-102.47 42.618-103.04-7.028-0.572-33.42 18.668-36.963 36.385-7.086-28.346-23.102-54.578-32.342-51.546-13.861 3.032 2.4664 47.491-4.6203 54.578-7.0866 3.543-39.117-21.736-46.203-18.193-7.0866 3.544 18.481 100.06 77.511 81.813z" transform="matrix(.21063 .073823 -.13413 .38271 352.49 299.69)" fill="#008f00"/> + <path id="path918" d="m106.3 825.59c61.099-21.171 49.646-102.47 42.618-103.04-7.028-0.572-33.42 18.668-36.963 36.385-7.086-28.346-23.102-54.578-32.342-51.546-13.861 3.032 2.4664 47.491-4.6203 54.578-7.0866 3.543-39.117-21.736-46.203-18.193-7.0866 3.544 18.481 100.06 77.511 81.813z" transform="matrix(.22236 .019264 -.035001 .40402 292.95 329.27)" fill="#008f00"/> + <path id="path919" d="m106.3 825.59c61.099-21.171 49.646-102.47 42.618-103.04-7.028-0.572-33.42 18.668-36.963 36.385-7.086-28.346-23.102-54.578-32.342-51.546-13.861 3.032 2.4664 47.491-4.6203 54.578-7.0866 3.543-39.117-21.736-46.203-18.193-7.0866 3.544 18.481 100.06 77.511 81.813z" transform="matrix(.21927 .041660 -.075693 .39841 352.36 385.54)" fill="#008f00"/> + </g> + <path id="path899" d="m209.06 775.98c0 7.8277-10.312 14.173-23.031 14.173-12.72 0-23.031-6.3456-23.031-14.173 0-7.8277 10.312-14.173 23.031-14.173 12.72 0 23.031 6.3456 23.031 14.173z" fill-rule="evenodd" transform="matrix(.48902 .26089 -.27302 .46728 313.35 -58.253)" stroke="#000" stroke-width=".81282pt" fill="#ff1900"/> + <g id="g935" stroke="#000" fill-rule="evenodd" fill="#ff0" transform="matrix(.40549 .12769 -.14842 .38307 363.63 58.046)"> + <path id="path934" d="m155.91 414.57v-7.087h7.086v-7.086h7.087v7.086h7.086v7.087h-7.086v17.716h-7.087v-17.716h-7.086z" transform="translate(0 -.000030518)" stroke-width=".50801"/> + <rect id="rect930" height="205.51" width="7.0866" y="474.8" x="162.99" stroke-width=".51245"/> + <rect id="rect931" height="56.693" width="14.173" y="676.77" x="159.45" stroke-width=".50801"/> + <path id="path932" d="m155.91 439.37h21.259c14.174 0-3.543 38.976-3.543 38.976h-14.173s-17.717-38.976-3.543-38.976z" stroke-width=".50801"/> + <path id="path933" d="m173.62 434.06c0 2.9354-3.1728 5.315-7.0866 5.315s-7.0866-2.3796-7.0866-5.315 3.1728-5.315 7.0866-5.315 7.0866 2.3796 7.0866 5.315z" stroke-width=".50801"/> + </g> + <path id="path906" d="m209.06 775.98c0 7.8277-10.312 14.173-23.031 14.173-12.72 0-23.031-6.3456-23.031-14.173 0-7.8277 10.312-14.173 23.031-14.173 12.72 0 23.031 6.3456 23.031 14.173z" fill-rule="evenodd" transform="matrix(.46695 -.29551 .30926 .44619 -5.143 64.498)" stroke="#000" stroke-width=".81282pt" fill="#ff1900"/> + </g> + </g> +</svg> diff --git a/s/flag/me.svg b/s/flag/me.svg new file mode 100755 index 0000000..473f640 --- /dev/null +++ b/s/flag/me.svg @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Generator: Adobe Illustrator 13.0.0, SVG Export Plug-In --> +<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 640 320" xml:space="preserve" height="480" width="640" version="1.1" y="0px" x="0px" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 640 320"><metadata id="metadata518"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata> +<g id="flag"><g id="g10862" transform="matrix(1.0667 0 0 .8 0 16)"><rect id="rect6" height="600" width="600" y="-120" x="0" fill="#d3ae3b"/><rect id="rect8" height="524.03" width="541.41" y="-82.015" x="30" fill="#c40308"/></g><g id="g10082" transform="translate(21.394 -21.173)"><path id="path10" fill="#b96b29" d="m430.57 175.12c3.5138-0.99187 15.731-4.5619 24.339-11.546 8.6081-6.9862 10.288-12.583 10.984-15.606 0.69-3.0225 0.98812-5.4-1.2375-3.6656-2.2256 1.7306-8.9044 6.9844-13.455 9.5119-4.5544 2.5256-8.76 3.7162-11.233 4.4119-2.4731 0.69-4.4531 1.1362-2.0756 0.195 2.3719-0.93938 10.142-3.6675 16.129-9.66 5.985-5.9944 10.714-14.978 10.815-20.494 0.0994-5.5144-0.29438-5.1225-2.0681-3.7425-1.7737 1.3781-8.0775 9.1612-11.621 12.114-3.5456 2.9569-9.2588 6.8962-12.114 8.5688-2.8575 1.6762-6.8944 3.5475-1.2806-0.29437 5.6138-3.8381 16.249-12.902 20.586-24.622 4.3331-11.721 3.5438-18.613 3.4462-19.796-0.0975-1.1812-1.0838-3.5456-2.0681-1.3762-0.98437 2.1638-8.0794 16.348-13.789 22.453-5.715 6.1069-4.335 4.9256-5.6156 5.91-1.2788 0.98438-3.4481 2.7581-0.68625-0.69187 2.7581-3.4444 8.4694-11.424 11.426-19.301 2.9512-7.8806 3.7406-15.761 3.8381-20.291 0.0994-4.53-1.8694-10.832-2.7581-12.701-0.885-1.875-1.7719-3.2512-2.07-1.0875-0.2925 2.1675-4.8244 16.153-7.2881 22.948-2.4619 6.7969-7.3838 14.481-8.3719 15.958-0.9825 1.4775-3.5438 4.53-0.7875-0.59063 2.7581-5.1225 8.0756-20.192 8.7675-34.472 0.68812-14.282-1.2806-22.161-3.2512-26.1-1.9688-3.9412-3.675-5.3381-3.675-5.3381s0.3375 9.75-2.5725 23.756c-2.9119 14.008-7.1606 21.403-7.1606 21.403s-1.7888 2.0175-0.5625-1.3444c0.83063-2.2612 2.5388-7.2375 3.3206-15.671 0.82312-8.8481 0.92062-18.915-1.6631-27.486-2.8125-9.3338-7.695-14.106-7.695-14.106-1.3612 13.391-1.0912 30.645-5.9981 44.631-0.91875-0.82125-2.1338-2.34-2.6175 0.75188-0.89625 4.5956-2.6869 13.224-8.7262 24.206-6.045 10.982-8.5031 12.439-8.5031 12.439s-1.1194-2.6906-1.905-4.1456c-0.78187-1.4569-1.23-2.2425-2.2388-0.225-1.0031 2.0175-4.3612 9.75-11.749 18.266-7.3838 8.5162-11.524 12.662-11.299 19.048 0.225 6.3881 3.5794 9.6394 8.055 12.551 4.4775 2.9156 5.2631 4.4812 4.5881 7.9556-0.67125 3.4762-4.7006 4.7062-8.1656 4.8188-3.4725 0.1125-7.8356-0.225-9.4012 0.67125-1.5675 0.89812-1.6781 3.1369-3.2456 4.7044-1.5638 1.5712-2.235 2.4638-3.6919 2.6925-0.51187 0.0788-0.92812 0.12563-1.2506 0.16125-0.3225-16.847 6.2062-24.358 6.2062-24.358l-18.246-21.437c-0.94312 0.46313-1.8844 0.89625-2.8294 1.305-0.1275-0.2475-0.30375-0.5175-0.53438-0.81-2.4281-3.1012-3.2231-5.73-3.2231-9.705 0.9075 0.09 2.7281 0.74625 4.3819 0.41438 1.6538-0.33 0.4125-1.9894-0.0825-3.5644-0.49687-1.5788-0.99375-7.05-0.66375-9.1238 0.33188-2.0738 0.495-2.9044 0.495-2.9044s2.6494 2.9044 4.3012 2.9044c1.6575 0 1.4888-1.6575 1.7381-3.4838 0.37312-2.7506 1.6669-6.2231 3.8025-8.1281 0 0 2.8931 1.9931 6.2044 1.9931 3.3056 0 7.77-0.91312 11.325-4.3125 3.5569-3.3994 3.4744-4.23 3.4744-4.23s6.6131 2.3212 11.659 2.5725c5.0438 0.2475 10.419-0.58312 12.982-5.8894 2.5631-5.3081-0.74625-10.2-1.3219-11.031-0.58125-0.83062-2.2331-1.4944-2.2331 0s0.0844 5.4731-2.9775 7.4644c-3.06 1.9894-5.4562 1.905-8.3512 0.99375-2.8931-0.91125-6.945-2.0738-11.576-1.41-4.1531 0.59438-4.7156 0.9225-4.7869 0.98438 0.21563-0.22125 3.9862-4.0875 7.68-5.2144 3.8044-1.1606 6.0394 0.41438 7.2788 1.9069s2.3138 3.9 3.3075 0.41438c0.99188-3.4819 0.41438-7.4625-1.2394-10.035-1.6556-2.5706-5.2088-4.23-8.9306-3.8138-3.7219 0.41438-5.0419 0.99375-5.0419 0.99375s-1.905-5.3888-6.6994-6.3844c-5.85-1.215-12.304 0.98438-17.364 3.8138 0 0-3.9694 0.915-8.0194-0.2475-2.6531-0.76125-5.3062-2.3756-6.8231-3.3956 0.47-1.543 1.38-4.406 1.38-4.406s1.1588-0.3525 2.37-0.80812c1.2112-0.45375 0.96-0.85875 1.1119-1.8675 0.15-1.0088-2.2762-2.7656-2.2762-2.7656s-0.35062-3.0319 3.6375-5.1112c3.9862-2.0794 3.5531-1.7325 3.5531-1.7325s2.3381 0.43312 3.2925-0.26062c0.9525-0.69375 0.9525-1.1269 0.9525-1.1269s1.7662-0.57938 2.415-1.6444c0.64687-1.0631 0.76687-2.6006 0.2925-3.8419-0.46875-1.2431-1.0631-1.4794-0.41063-2.0719 0.64688-0.59062 1.2375-2.01 1.2956-3.015 0.06-1.0088 0.06-1.2412 0.06-1.2412s1.3556-0.47625 1.2938-2.5444c-0.06-2.0719-1.1794-2.9006-1.83-3.0788-0.64688-0.17625-1.0575-0.17625-1.0575-0.17625s-0.11813-1.2431-1.1794-2.8969c-1.065-1.6575-1.77-2.3662-1.77-2.3662s0.765-0.58688 0.3525-1.9481-1.3575-2.1881-2.3006-2.4881c-0.94313-0.29438-1.9444 0-1.9444 0s-3.1256-1.8919-4.5994-2.6606c-1.4756-0.76875-1.83-0.945-1.83-0.945s-0.0581-1.3012-0.58875-2.0119c-0.53063-0.71062-1.77-1.0069-2.4188-1.0069-0.64875 0-1.3556 0.35625-1.3556 0.35625s-5.31-1.3631-7.4906-1.7175c-2.1825-0.35438-2.3025-0.5325-2.3025-0.5325s-4.7156-2.2481-6.5419-2.6025c-1.83-0.35438-2.3588-0.53062-2.3588-0.53062s1.9088-2.31 2.025-4.9706c0.12-2.6625-1.6481-5.1731-3.5344-6.2962-1.065-0.63188-1.6369-0.73688-1.9838-0.95438l-0.0394-1.8319 3.5438 0.35625 0.2925-5.7038-3.45 0.43688 0.52875-3.4331-7.23-0.0825 0.52875 3.4312-3.4781-0.23812 0.29437 5.6212 3.6581-0.4725-0.35438 2.1262s-1.3388 0.22688-2.4731 1.0631c-1.8862 1.125-3.4819 3.315-3.3638 5.9775 0.11625 2.6606 1.7081 5.0288 1.7081 5.0288s-0.47062 0.11812-2.2988 0.47062c-1.8281 0.35438-6.5475 2.6025-6.5475 2.6025s-0.11812 0.17625-2.3006 0.5325c-2.1806 0.35438-7.4888 1.7175-7.4888 1.7175s-0.70688-0.35625-1.3575-0.35625c-0.64875 0-1.8862 0.29625-2.4169 1.0069-0.53062 0.70875-0.58874 2.0119-0.58874 2.0119s-0.35438 0.17812-1.83 0.945c-1.4756 0.76875-4.5994 2.6606-4.5994 2.6606s-1.005-0.29438-1.9481 0c-0.94313 0.29812-1.8862 1.1269-2.2988 2.4881-0.4125 1.3612 0.3525 1.9481 0.3525 1.9481s-0.70875 0.70875-1.77 2.3662c-1.0594 1.6538-1.1775 2.8969-1.1775 2.8969s-0.41438 0-1.0612 0.17625c-0.64875 0.17812-1.77 1.0069-1.8281 3.0788-0.06 2.0681 1.2975 2.5444 1.2975 2.5444s0 0.23438 0.0581 1.2412c0.06 1.0069 0.65062 2.4244 1.2975 3.015 0.64875 0.5925 0.06 0.82875-0.4125 2.0719-0.47063 1.2412-0.35438 2.7788 0.29437 3.8419 0.64875 1.065 2.4131 1.6444 2.4131 1.6444s0 0.43312 0.9525 1.1269c0.9525 0.69375 3.2925 0.26062 3.2925 0.26062s-0.43125-0.34688 3.5531 1.7325 3.6375 5.1112 3.6375 5.1112-2.4262 1.7588-2.2744 2.7656c0.15187 1.0088-0.10125 1.4138 1.11 1.8675 1.2112 0.45562 2.3719 0.80812 2.3719 0.80812s0.90563 2.8612 1.3669 4.4138c-1.5169 1.02-4.1681 2.6344-6.8194 3.3956-4.0519 1.1625-8.0231 0.2475-8.0231 0.2475-5.0569-2.8294-11.511-5.0288-17.362-3.8138-4.7962 0.99562-6.6994 6.3844-6.6994 6.3844s-1.3219-0.57938-5.0419-0.99375c-3.72-0.41625-7.2769 1.2431-8.9325 3.8138-1.6538 2.5725-2.2312 6.5531-1.2394 10.035 0.99188 3.4856 2.0681 1.0781 3.3075-0.41438 1.2412-1.4925 3.4744-3.0675 7.2769-1.9069 3.6938 1.1269 7.4644 4.9931 7.68 5.2144-0.0731-0.06188-0.63188-0.39-4.7869-0.98438-4.6294-0.66375-8.6812 0.49875-11.574 1.41-2.8931 0.91125-5.2912 0.99562-8.3512-0.99375-3.06-1.9931-2.9775-5.9719-2.9775-7.4644s-1.6538-0.83062-2.2312 0c-0.5775 0.83062-3.8869 5.7244-1.3238 11.031 2.5631 5.3062 7.9369 6.1369 12.981 5.8894 5.0438-0.25125 11.659-2.5725 11.659-2.5725s-0.0806 0.83062 3.4744 4.23 8.0194 4.3125 11.329 4.3125c3.3094 0 6.2006-1.9931 6.2006-1.9931 2.1356 1.9069 3.4331 5.3794 3.8044 8.1281 0.2475 1.8262 0.0844 3.4838 1.7381 3.4838 1.6519 0 4.2994-2.9044 4.2994-2.9044s0.165 0.83063 0.495 2.9044-0.165 7.545-0.66188 9.1238c-0.495 1.575-1.7362 3.2344-0.0806 3.5644 1.6538 0.33188 3.4725-0.32437 4.3819-0.41437 0 3.975-0.79687 6.6038-3.225 9.705-0.21375 0.27375-0.3825 0.52687-0.51 0.76312-0.90375-0.39562-1.8075-0.81375-2.7112-1.2581l-18.246 21.437s6.5588 7.5469 6.2044 24.486v-0.11813c-0.33187-0.0319-0.77437-0.0844-1.3275-0.16875-1.4569-0.22687-2.1262-1.1212-3.6938-2.6925-1.5656-1.5675-1.6781-3.8062-3.2438-4.7044-1.5656-0.89813-5.9306-0.56063-9.3994-0.67125-3.4706-0.11438-7.4962-1.3444-8.1694-4.8188-0.66937-3.4762 0.11438-5.04 4.5881-7.9556 4.4756-2.9138 7.8319-6.1631 8.0569-12.551 0.22313-6.3862-3.915-10.534-11.301-19.048-7.3856-8.5162-10.742-16.249-11.749-18.266-1.0069-2.0175-1.455-1.2319-2.2388 0.225-0.78375 1.455-1.9012 4.1456-1.9012 4.1456s-2.4619-1.4569-8.5031-12.439c-6.0431-10.982-7.8338-19.609-8.7281-24.206-0.48563-3.0919-1.7025-1.5712-2.6175-0.75188-4.9125-13.986-4.6406-31.241-6-44.631 0 0-4.8825 4.7719-7.695 14.106-2.5819 8.5688-2.4844 18.638-1.6612 27.486 0.78187 8.4338 2.4881 13.412 3.3169 15.671 1.23 3.3619-0.55875 1.3444-0.55875 1.3444s-4.2525-7.395-7.1606-21.403c-2.91-14.006-2.5744-23.756-2.5744-23.756s-1.7044 1.3969-3.675 5.3381c-1.9688 3.9394-3.9375 11.818-3.2494 26.1 0.69 14.282 6.0094 29.349 8.7675 34.472 2.7581 5.1206 0.19687 2.0681-0.78938 0.59063-0.98437-1.4775-5.9081-9.1594-8.3719-15.958-2.4619-6.795-6.9919-20.781-7.2881-22.948-0.29625-2.1656-1.1812-0.7875-2.07 1.0875-0.88687 1.8712-2.8556 8.1731-2.7581 12.701 0.0994 4.53 0.88687 12.411 3.8419 20.291 2.955 7.8788 8.6662 15.857 11.424 19.301 2.7581 3.45 0.59062 1.6762-0.69 0.69187-1.2806-0.98437 0.0994 0.195-5.6138-5.91-5.7131-6.105-12.804-20.289-13.789-22.453-0.98625-2.1694-1.9706 0.195-2.07 1.3762-0.0975 1.1831-0.88688 8.0756 3.4481 19.796 4.3331 11.721 14.97 20.784 20.586 24.622 5.6138 3.8419 1.575 1.9706-1.2806 0.29437-2.8556-1.6725-8.5688-5.6119-12.114-8.5688-3.5456-2.9531-9.8494-10.736-11.621-12.114-1.7738-1.38-2.1656-1.7738-2.0681 3.7425 0.0975 5.5162 4.8281 14.498 10.815 20.494 5.985 5.9925 13.751 8.7206 16.129 9.66 2.3756 0.94125 0.39563 0.495-2.0794-0.195-2.47-0.71-6.68-1.9-11.23-4.43s-11.23-7.78-13.46-9.51c-2.2275-1.7344-1.9294 0.64312-1.2375 3.6656 0.69375 3.0225 2.3756 8.6212 10.982 15.606 8.6081 6.9862 20.828 10.554 24.339 11.546 3.5138 0.98812 1.0388 0.98812 1.0388 0.98812s-1.3856-0.195-8.5088-1.785c-7.1231-1.5844-17.91-7.23-20.829-9.0638-2.9194-1.8356-3.3619-2.5275-2.9681 1.3369 0.3975 3.8625 4.5038 12.139 11.083 16.003 6.5794 3.8644 18.454 5.8481 21.521 5.9944 3.0675 0.15 2.2762 0.59437 0.89063 0.69187-1.3856 0.0994-4.8 0.0994-10.389-0.54187-4.5825-0.52875-11.389-2.7544-13.697-3.5419-0.25875-0.98625-0.49688-1.9425-0.60563-2.5312-0.27187-1.4719-1.0331-1.2544-1.5244-0.92437-0.49125 0.3225-0.76313 0.59625-2.3925 1.4156-1.635 0.82125-1.6894-0.16125-1.7438-0.6525-0.0544-0.495-0.38063-2.6231-0.435-3.7106-0.0544-1.095-0.65438-1.1494-1.4138-0.82125-0.76313 0.33-4.41 1.8562-5.7694 2.46-1.3612 0.59812-0.10875 1.6894 0.59813 2.9981 0.70687 1.3144 1.7962 3.2231 1.7962 3.2231s-3.4294 0.92812-4.5188 1.2019c-1.0875 0.27375-0.76125 1.0388-0.48938 1.8038 0.27375 0.76125 1.9594 4.5844 2.3944 5.6756s1.4156 0.43687 1.4156 0.43687l3.4275-2.0194 1.1962 4.5825c-0.0581 0.0731-1.5844 0.36375-3.3188 1.5806-1.7325 1.215-1.2994 2.7806 0.78 3.39 2.0775 0.6075 4.5056 1.6519 7.1906 6.5175 2.685 4.8694 3.3788 13.642 5.025 27.463 1.6462 13.813 10.483 20.854 11.696 21.724 1.2131 0.87 0.51937 1.5638 0.51937 1.5638s-1.2131 1.7419-0.69187 4.4344c0.51937 2.6906 2.8575 4.2581 4.0706 4.6912 1.2112 0.43125 0.86625 1.65 0.86625 1.65s-0.6075 2.9531 0 8.3438c0.60563 5.3869 5.025 11.469 6.2381 12.514 1.2112 1.0406 1.2994 1.5637 1.1269 1.9987-0.1725 0.43313-0.95437 0.0881-2.4262 1.215-1.4738 1.1306-3.12 2.6944-4.1569 4.605-1.0406 1.9144-0.69375 3.0431-0.34875 5.6512 0.34687 2.6081 4.1588 4.9538 4.1588 4.9538s-0.69375 0.17438-0.86438 2.085c-0.1725 1.9125 1.2112 4.0838 2.9456 5.4731 1.7325 1.3912 5.025 2.0869 5.025 2.0869s0.26062 1.65 0.43312 2.7788c0.1725 1.1325 2.34 2.2575 3.7256 3.0413 1.3856 0.78187 4.0706 0.34875 5.1975-0.17438 1.125-0.51937 1.905 0.0881 2.5969 1.215 0.69563 1.1325 0.435 5.475 0.435 7.215 0 1.7381-1.0406 3.5625-0.435 4.4325 0.6075 0.86813 2.2538 0.25875 3.9-0.69562 1.6462-0.95813 2.0794-0.26063 3.5531 0.69562 1.4738 0.95438 3.8119 1.8262 4.4194 1.7381 0.60563-0.0881 0.34688-1.6519 0.34688-2.955s0.23437-4.2525 0.84-4.6875c0.28687-0.20625 2.8369-0.39563 4.7906-1.2225 0.90938-0.3825 2.0794-0.78 2.1656-1.65 0.0863-0.86813-1.2131-0.86813-4.0706-2.3456-2.8594-1.4756-3.3788-2.3494-5.1975-3.5644-1.8206-1.215-0.9525-1.65-0.9525-2.1712 0-0.5175 0.86438-1.1288 1.2112-1.8244 0.34688-0.69562 0.1725-2.2575 0.1725-2.2575s1.4738-1.4775 2.1656-2.2612c0.69375-0.78 1.56-2.0006 2.5125-2.7806s2.4244-4.5169 3.3788-5.7356c0.9525-1.215 3.12-2.52 4.4175-4.1719 1.2994-1.6519 4.7662-4.3444 6.7594-5.6494 1.9931-1.3031 7.3631-3.825 7.3631-3.825s-0.0862 3.2156 1.2994 4.7794c1.3856 1.5675 3.2044-1.2131 9.3562-5.5612 6.1519-4.3444 10.83-5.9081 10.83-5.9081s1.2994 1.9969 2.9438 4.0838c1.6462 2.0869 3.12-0.0881 10.658-10.513 5.9456-8.2275 13.778-15.748 16.819-18.559 0.56063 0.24937 1.1156 0.49875 1.6688 0.75375-0.1425 0.40125-0.3 0.855-0.4575 1.3519-0.69187 2.16-1.8131 3.5438-3.2812 6.5625-1.4681 3.0206-3.7106 3.7106-6.3019 7.7719-2.5894 4.0575-2.9344 6.8175-3.195 10.963-0.25875 4.1438 2.0719 5.0081 2.0719 5.0081s-3.7988 3.7106-4.9219 6.4744c-1.1212 2.7619-1.7269 8.3756-1.7269 8.3756s-0.60562 0.25687-1.9856 3.1069c-1.3819 2.8519-3.8869 3.2794-7.5112 6.9075-3.6281 3.6262-7.6838 5.1806-9.5831 6.2981-1.8994 1.1269-1.3819 2.2462-0.8625 3.7144 0.51563 1.4662 3.1069 2.9344 6.1294 4.0575 3.0225 1.1212 4.0575 0.69 6.1312 0.60375 2.0719-0.0844 0.43125 1.5544-0.43125 2.415-0.8625 0.86625-1.9856 3.885-1.8131 7.2525 0.1725 3.3694 2.6775 2.5894 5.7862 2.0719 3.1069-0.51563 6.7331-2.0719 6.7331-2.0719l-0.345 0.9525c-0.345 0.94875-0.5175 1.6369-0.5175 4.3181 0 2.6756 0.43125 3.9694 1.2094 4.6575 0.77813 0.69187 2.3325-0.77438 3.4538-1.1194 1.1231-0.35062 3.0225-1.4681 5.7844-2.0719 2.7619-0.60563 3.7969-1.8131 3.7969-1.8131s-0.69 0.86063-0.8625 2.7619c-0.17437 1.9012-0.0863 4.7475 0.34688 6.39 0.42937 1.6369 1.6388 3.6244 3.5381 5.3512 1.8994 1.7288 2.3306 0.95062 3.7106-1.2075 1.3819-2.16 4.23-4.9238 4.23-4.9238s0.1725 0.69187 2.0719 6.8212c1.8994 6.1312 8.115 11.224 8.115 11.224s6.2156-5.0944 8.115-11.224c1.8994-6.1294 2.07-6.8212 2.07-6.8212s2.8519 2.7638 4.2319 4.9238c1.3819 2.1562 1.815 2.9344 3.7125 1.2075 1.8994-1.7269 3.1069-3.7125 3.54-5.3512 0.43125-1.6425 0.5175-4.4906 0.34875-6.39-0.17625-1.9012-0.86625-2.7619-0.86625-2.7619s1.0369 1.2075 3.7988 1.8131c2.7619 0.60375 4.6612 1.7231 5.7825 2.0719 1.1231 0.345 2.6794 1.8112 3.4556 1.1194 0.77625-0.68813 1.2094-1.9838 1.2094-4.6575 0-2.6812-0.1725-3.3694-0.5175-4.3181l-0.34688-0.9525s3.6281 1.5562 6.735 2.0719c3.1069 0.51562 5.61 1.2956 5.7862-2.0719 0.17063-3.3675-0.9525-6.3862-1.815-7.2525-0.86437-0.86062-2.5031-2.4994-0.43125-2.415 2.07 0.0862 3.1069 0.51563 6.1294-0.60375 3.0206-1.1231 5.6119-2.5912 6.1312-4.0575 0.5175-1.4681 1.0369-2.5894-0.8625-3.7144-1.8994-1.1194-5.9588-2.6738-9.5831-6.2981-3.6244-3.6281-6.1312-4.0556-7.5131-6.9075-1.3781-2.8519-1.9819-3.1069-1.9819-3.1069s-0.6075-5.6138-1.7288-8.3756c-1.1231-2.7656-4.9219-6.4744-4.9219-6.4744s2.3325-0.86438 2.0719-5.0081c-0.25875-4.1456-0.60187-6.9056-3.1931-10.963-2.5912-4.0594-4.8375-4.7494-6.3056-7.7719-1.4662-3.0188-2.5894-4.4025-3.2794-6.5625-0.13688-0.435-0.28688-0.87-0.44063-1.305 0.74063-0.33 1.485-0.65812 2.2275-0.97687 3.0206 2.7844 10.886 10.331 16.851 18.583 7.5394 10.431 9.0131 12.604 10.659 10.515 1.6444-2.0831 2.9438-4.0819 2.9438-4.0819s4.6781 1.5619 10.83 5.9062c6.15 4.3462 7.9706 7.1269 9.3544 5.5631 0.73312-0.82312 0.89625-2.19 0.98437-3.2381 0 0 3.5344 1.0331 7.5825 2.4506 2.4281 0.85125 5.1244 1.9238 7.1269 2.7694 5.3288 2.2556 5.9062 3.4162 10.146 6.765 4.2394 3.3488 10.275 3.0262 15.992 1.2862 5.7131-1.7362 20.938-6.7594 27.038-9.4012 6.1012-2.6456 10.47-4.9612 11.113-6.1875 0.64125-1.2225 1.3462-4.6388 1.3462-5.8594 0-1.2244-1.3462-3.0262-1.7981-3.3506-0.44625-0.32438-0.25313-1.29-0.1275-2.0606 0.1275-0.77438-0.255-3.0919-1.2169-4.125-0.96375-1.0312-0.83437-1.4138-0.70687-4.3819 0.27187-6.2831-4.2131-14.205-10.568-16.727 0 0-0.17063-0.73125-0.68625-1.1625-0.51-0.42937-1.3688-0.81562-1.3688-0.81562s0.12562-3.6131 0.0844-4.3894c-0.0413-0.77437 0.3-0.68437 0.73313-0.4725 0.4275 0.21375 1.1119 1.0762 2.1412 1.335 1.0294 0.25688 1.6725-0.47625 1.8881-1.635 0.21188-1.1606 1.0706-3.4838 1.4569-4.6462 0.38812-1.1588-0.0881-1.3331-0.55875-1.4606-0.47063-0.13125-2.0138-0.3-2.745-0.47625-0.7275-0.17063-0.7275-0.21375-0.55688-0.6 0.17438-0.38438 0.42938-0.98625 1.3706-2.4525 0.945-1.4625 0.0881-1.5056-0.81563-1.8038-0.9-0.30188-4.9706-1.5488-6.0862-1.7231-1.1175-0.1725-1.3744 0.77438-1.3744 1.2469 0 0.47625 0.0431 2.5388 0.0863 3.3131 0.0431 0.77438-0.68438 0.55875-1.1138 0.345-0.43125-0.21375-1.4156-0.81937-2.1862-1.4212-0.7725-0.6-1.3294-0.0413-1.6312 0.81938-0.3 0.85875-1.2412 4.3894-1.5412 5.4206-0.3 1.0331-0.21563 1.8488 0.21375 2.0194 0.42937 0.17437 2.4431 0 3.645 0 1.1981 0 0.51187 0.69 0.51187 0.69s-1.2862 2.1075-1.7156 2.9231c-0.4275 0.81938-1.1569 0.94875-2.1431 0.94875-0.98625 0-2.64-0.0131-2.64-0.0131s-6.5888 0.2475-11.439 3.855c-4.8488 3.6056-6.2156 6.5888-6.9619 8.3269-0.74625 1.7438-1.6144 1.3669-2.3644 1.9912-0.74438 0.6225-2.8575 2.8612-2.8575 4.23 0 1.3669 0.49687 2.1112-1.6144 3.4781-2.1169 1.3688-3.8569 7.3369-0.99562 10.446 2.8594 3.105 3.9788 6.2119 4.8506 7.7062 0.86625 1.4925 0 2.1131-0.74812 2.1131-0.74438 0-2.3025-1.2675-3.6038-2.2388-1.3012-0.96938-7.8694-6.0994-10.691-8.2031-2.8256-2.1075-0.74625-1.8656-0.74625-1.8656s0.71812 0.0656 2.3662-0.62813c1.6444-0.69562 1.9069-1.5619 0.25687-2.085-1.6444-0.51937-4.8506-2.3456-5.715-3.2156-0.86812-0.86813-1.2994-1.8244 0.34688-2.6944 1.6444-0.86812 5.2838-3.2156 2.4262-3.9975-2.8612-0.78562-6.24-1.3894-9.0131-2.1731-2.7731-0.78188-3.0338-1.5638-3.0338-1.5638l1.8225-2.6081s1.4719-2.0831-0.26062-2.3456c-1.7325-0.26249-5.8912-0.78187-9.7031-2.4356-7.6144-3.2981-12.384-8.8912-14.152-15.718l0.12563-0.165c1.4231 2.8144 4.7344 8.0738 9.7275 8.2369 6.825 0.225 7.6069-1.9069 6.0412-4.1475-1.5656-2.2406-3.3562-4.2581-3.8025-4.9294-0.45-0.67313-0.5625-1.5712 1.2281 0.1125 1.7906 1.6838 5.1994 7.395 15.495 6.7238 10.292-0.67125 10.241-2.6906 10.241-3.2494 0-1.9762-2.0962-2.2894-3.3319-3.5288-0.645-0.64687-1.0369-1.5862 1.0406-0.79312 2.0775 0.79312 7.17 1.7325 14.1 0.24562 2.7338-0.58312 9.9825-3.7481 10.684-7.4288 0 0-4.6012-0.25125-7.815-1.6369-3.2175-1.3894-5.1469-2.5256-1.7325-1.8319 3.4144 0.69187 10.044 2.0775 15.881 0.0994 3.4106-1.1588 7.8188-3.9188 7.8169-8.9681 0 0-6.3319-1.3369-8.6569-2.1806-2.325-0.84187-3.0675-1.485-3.0675-1.485s9.0488 2.8706 17.265-1.29c8.2125-4.1606 8.5575-9.8569 8.5575-11.196 0-1.3388-0.19687-1.7362-0.19687-1.7362s-7.47 1.8356-13.059 1.785c-5.5912-0.0488-7.3238-0.54563-7.3238-0.54563s15.636-0.44625 23.499-5.2519c7.8656-4.8056 8.3138-14.271 8.3138-14.271s-8.9081 3.1706-14.496 3.8175c-5.5894 0.64125-9.0056 0.64125-10.389 0.54188-1.3856-0.0975-2.175-0.54188 0.89062-0.69188 3.0712-0.14625 14.94-2.1319 21.521-5.9944 6.5812-3.8662 10.686-12.142 11.083-16.003 0.39562-3.8644-0.0488-3.1706-2.97-1.3369-2.9194 1.8338-13.702 7.4794-20.826 9.0638-7.1231 1.59-8.5088 1.785-8.5088 1.785s-2.4862-0.002 1.0294-0.99zm-281.43 17.979c-0.76125 0.43688-3.1556 1.8-3.1556 1.8s-1.2525-2.565-1.5788-3.3281c-0.32625-0.765-0.16313-1.0931 0.27-1.0931 0.43687 0 1.7438-0.38062 2.7769-0.48937 0.14813-0.0169 0.28313-0.0394 0.40313-0.0675 0.345 0.98437 0.79875 2.0512 1.395 3.1219-0.0375 0.015-0.0731 0.0356-0.11063 0.0563zm95.955 56.177c-1.9069 3.5662-7.1044 7.3031-10.916 8.9531-3.8119 1.65-7.9706 2.1731-9.7031 2.4319-1.7325 0.26062-0.26063 2.3475-0.26063 2.3475l1.8188 2.61s-0.25875 0.78-3.0319 1.5638c-2.7731 0.78-6.15 1.3875-9.0094 2.1712-2.8594 0.78 0.78 3.1275 2.4244 3.9994 1.6462 0.86624 1.2131 1.8244 0.34687 2.6925-0.86625 0.87-4.0706 2.6944-5.7169 3.2156-1.6462 0.52125-1.3875 1.3931 0.25875 2.0869 1.6462 0.69187 6.1519 1.5619 6.1519 1.5619s-0.0863 0.17437-2.8575 2.2612c-2.7731 2.085-7.6256 3.4762-10.83 3.6488-3.2062 0.1725-8.2744 0.3825-14.702 0.0863-6.4256-0.2925-7.1644-0.44063-7.1644-0.44063s-0.22125-2.145-0.66563-5.3212c-0.4425-3.1744-2.3625-7.6819-3.84-9.7481-1.4794-2.07-4.5788-6.2062-4.5788-6.2062s0.0731-0.88688 0.29438-1.92c0.22125-1.0331 0.0731-2.1431-0.67688-4.095-0.75187-1.9538-4.5056-4.8056-4.5056-4.8056s-0.15187-2.1019-0.15187-4.0556c0-1.9519-1.35-9.6112-2.5538-13.215-1.2-3.6038-7.0575-13.065-9.7612-17.571-2.7038-4.5038-4.3088-11.182-5.1262-16.367-0.8175-5.1862-0.48938-6.8775-0.2175-8.2425 0.12-0.59813 0.375-1.1419 0.615-1.6256 1.11 1.4344 2.5312 2.7919 4.3462 3.9038 7.8656 4.8056 23.499 5.2519 23.499 5.2519s-1.7325 0.49687-7.3219 0.54562c-5.5894 0.0487-13.059-1.785-13.059-1.785s-0.19874 0.3975-0.19874 1.7362c0 1.3388 0.34875 7.035 8.5594 11.196 8.2106 4.1625 17.265 1.29 17.265 1.29s-0.7425 0.64312-3.0675 1.485c-2.325 0.84375-8.6569 2.1806-8.6569 2.1806 0 5.0494 4.4081 7.8094 7.815 8.9681 5.8388 1.98 12.467 0.5925 15.883-0.0994 3.4125-0.69375 1.485 0.44063-1.7325 1.8319-3.2138 1.3856-7.815 1.6369-7.815 1.6369 0.705 3.6806 7.9538 6.8456 10.686 7.4288 6.9262 1.4869 12.021 0.5475 14.1-0.24562 2.0794-0.79313 1.6819 0.14625 1.0388 0.79312-1.2356 1.2394-3.3319 1.5525-3.3319 3.5288 0 0.56063-0.0525 2.5781 10.241 3.2494 10.294 0.67125 13.702-5.04 15.493-6.7238 1.7906-1.6819 1.6781-0.78563 1.23-0.1125-0.44625 0.66937-2.2369 2.6888-3.8025 4.9294-1.5675 2.2406-0.78376 4.3725 6.0412 4.1475 5.0269-0.165 8.3531-5.4975 9.7575-8.295l0.0937 0.12938c0.0919 0.12562 0.18562 0.24937 0.27562 0.3675-0.645 1.6575-1.7569 4.365-2.9794 6.645zm83.027-222.68c-0.93-1.7719-1.4231-2.6062-1.4231-2.6062s3.8775 1.8188 6.1856 4.4269c2.3062 2.6119 2.2556 3.9881 2.6006 5.2706 0.34501 1.2806 0 3.6412-0.34312 5.8575-0.345 2.2144-0.345 3.5456 0.0994 4.3331 0.44062 0.7875 0.83437 1.1812 0.83437 1.1812s-1.7212 0.4425-3.3394 1.0838c-1.62 0.64125-3.7294 1.23-4.9069 0.24562-1.1794-0.98438-1.4719-1.6744-0.735-2.3138 0.735-0.64125 3.4819-1.4288 3.8269-6.1538 0.34312-4.7269-1.8656-9.5512-2.7994-11.325zm-21.144 12.857c0.885-2.2444 1.2488-4.3875 0.57188-8.985-0.56812-3.8644-1.3181-7.1738-1.5094-11.338 0 0 2.865 0.62812 6.9806 4.3894 4.1119 3.7612 5.0531 7.6275 5.0531 9.51 0 1.8788-0.99187 4.1794-1.1475 6.0094-0.15563 1.8281 0.51937 3.4481 0.51937 3.4481s-1.5112 0.62438-2.8631 1.5638c-1.3538 0.94125-2.2912 1.5169-4.3744 1.4119-2.085-0.105-3.3356-1.0444-4.5338-1.6725-1.1981-0.62812-1.9762-0.73125-1.9762-0.73125s2.3925-1.3575 3.2794-3.6056zm-20.059-15.934c4.1156-3.7594 6.9788-4.3894 6.9788-4.3894-0.18938 4.1644-0.93938 7.4738-1.5113 11.338-0.675 4.5975-0.31125 6.7406 0.57376 8.985 0.88687 2.2481 3.2812 3.6056 3.2812 3.6056s-0.78001 0.105-1.98 0.73125c-1.1962 0.62625-2.4469 1.5675-4.5319 1.6725-2.0831 0.10312-3.0206-0.47062-4.3744-1.4119-1.3556-0.93938-2.865-1.5638-2.865-1.5638s0.67688-1.62 0.51938-3.4481c-0.15563-1.8281-1.1438-4.1288-1.1438-6.0094 0.002-1.8825 0.93937-5.7488 5.0531-9.51zm-14.835 22.869c-1.1794 0.98438-3.2888 0.39562-4.9106-0.24562-1.62-0.64125-3.3375-1.0838-3.3375-1.0838s0.39187-0.39188 0.83437-1.1812c0.4425-0.78562 0.4425-2.1169 0.0975-4.3331-0.34312-2.2162-0.68812-4.5769-0.34312-5.8575 0.34312-1.2825 0.29437-2.6588 2.6006-5.2706 2.29-2.609 6.17-4.428 6.17-4.428s-0.49125 0.83438-1.4231 2.6062c-0.93374 1.7738-3.1425 6.5981-2.7975 11.327 0.34501 4.725 3.0938 5.5106 3.8288 6.1538 0.73688 0.6375 0.4425 1.3275-0.73499 2.3119zm54.821 39.516c-4.0538 2.2406-6.3675 1.7419-6.2025 3.3994 0.16688 1.6594 3.8006 2.9044 3.8006 2.9044s-3.72 3.9806-6.615 5.8069c-2.8912 1.8244-6.2869 2.985-6.2869 2.985s-1.155 0.16688-0.495 1.9912c0.66375 1.8244 1.8206 3.0675 2.7281 3.5662 0.90938 0.49688 1.4081 0.66375 1.4081 0.66375s-5.0438 5.3906-7.2769 7.1325-3.4744 2.3212-5.2912 3.0694c-1.8206 0.74625-0.9075 3.7312-0.49688 5.0606 0.41251 1.3238 1.9838 3.15 2.895 3.3994 0.90562 0.24937 1.2394 0.91125 0.0825 2.7375-0.86625 1.3612-3.7519 4.9819-5.1281 6.9787l-0.0844 0.0431c-1.3669-1.9838-4.2919-5.6512-5.1619-7.0219-1.1569-1.8262-0.82688-2.4881 0.0825-2.7375 0.90938-0.24938 2.4825-2.0738 2.895-3.3994 0.41063-1.3294 1.3219-4.3144-0.50062-5.0606-1.8169-0.74813-3.0581-1.3275-5.2894-3.0694-2.2331-1.7419-7.2769-7.1325-7.2769-7.1325s0.49687-0.16687 1.4062-0.66375c0.91125-0.49875 2.0681-1.7419 2.73-3.5662 0.66-1.8244-0.49688-1.9912-0.49688-1.9912s-3.39-1.1606-6.285-2.985c-2.8912-1.8262-6.615-5.8069-6.615-5.8069s3.6375-1.245 3.8044-2.9044c0.165-1.6594-2.1506-1.1606-6.2025-3.3994s-5.3756-5.0588-5.3756-5.0588 4.7138-1.5769 7.0294-6.3038c0.81937-1.6744 1.0162-3.2025 0.93-4.4812l0.17812 0.06c7.5262 2.4506 16.324 3.4312 24.188 3.4312 7.8506 0 16.644-0.98625 24.156-3.4312l0.17812-0.06c-0.0881 1.2788 0.10875 2.8069 0.92813 4.4812 2.3156 4.7269 7.0312 6.3038 7.0312 6.3038s-1.32 2.8219-5.37 5.0588z"/><path id="path12" fill="#c52126" d="m243.74 92.394c-1.59-0.93375-5.865-2.7619-10.418-3.1481-4.5488-0.38438-8.0662 0.3-11.842 1.32-2.7056 0.73125-4.8975 0.84375-7.065 0.2625-3.2569-0.86812-5.7825-3.8081-6.6412-7.41 0 0-3.0038 3.8512 0.0675 8.0306 1.4756 2.01 3.3975 3.2662 5.355 3.6619 6.3731 1.2844 12.624-2.6062 17.932-2.9456 5.0981-0.33188 9.1012 2.9006 9.1012 2.9006s1.2056 1.0012 2.9044 0.01313c1.7025-0.99375 2.1956-1.7512 0.60562-2.685z"/><path id="path14" fill="#c52126" d="m392.17 83.417c-0.85875 3.6019-3.3881 6.5419-6.6431 7.41-2.1675 0.58125-4.3538 0.46875-7.0669-0.2625-3.7762-1.02-7.2938-1.7044-11.841-1.32-4.5488 0.38812-8.8275 2.2144-10.418 3.1481-1.59 0.93562-1.0988 1.6912 0.6 2.6812 1.7006 0.98812 2.9062-0.01313 2.9062-0.01313s4.005-3.2325 9.1031-2.9006c5.3062 0.33938 11.556 4.23 17.934 2.9456 1.9556-0.39562 3.8738-1.6519 5.3512-3.6619 3.0731-4.1756 0.0731-8.0269 0.0731-8.0269z"/><path id="path16" fill="#d4af3a" d="m351.51 177.2c0-12.722 5.8538-20.768 5.8538-20.768l-15.924-18.244c-15.167 5.8631-29.062 6.2194-41.434-0.075-12.371 6.2944-26.267 5.9381-41.43 0.075l-15.93 18.244s5.8556 8.0456 5.8556 20.768c0 12.724-2.46 22.162-3.8981 28.318-1.4362 6.1556-2.6662 17.646 0.61688 25.856 3.2812 8.205 6.7706 15.388 20.929 21.339 14.158 5.9512 21.546 9.0262 26.469 13.132 4.9256 4.1006 7.3875 7.3838 7.3875 7.3838s2.4619-3.285 7.3875-7.3838c4.9219-4.1044 12.309-7.1812 26.469-13.132 14.156-5.9512 17.646-13.134 20.929-21.339 3.2812-8.2106 2.0512-19.701 0.615-25.856-1.44-6.15-3.9-15.59-3.9-28.31z"/><path id="path18" fill="#d4af3a" d="m229.38 278.75s-5.1412 2.4562-6.7706 2.8931c-1.6294 0.44438-2.0062 0.44438-2.0062 0.44438s-3.5119 3.2044-6.0825 4.7119c-2.7 1.59-5.7994 2.7431-8.9025 3.0862-4.0144 0.43688-15.047 0.31125-20.001 0.12376-4.9538-0.1875-8.0231 1.005-10.157 3.3956-2.1319 2.3906-2.6325 5.8481 0.0637 8.49s5.7038 1.3219 6.7088-0.31312c1.0013-1.6369 0.50063-3.7125 0.0619-4.6538-0.43688-0.945 0.87937-1.26 2.2575-1.3219 1.38-0.0619 3.6994 0.12562 5.8312 0.44062 2.1319 0.31313 5.895 1.5713 7.5244 2.4525 1.6312 0.88125 0.69 1.0069-0.43874 0.8175-1.1288-0.18937-2.3812-0.62812-4.3894-1.38-2.0062-0.75375-3.6994-1.1325-4.9519-1.1981-1.2525-0.0619-0.81749 0.63-0.56437 1.0688 0.24938 0.44063 0.93937 1.5094 1.1269 2.0138 0.18938 0.50437-0.375 2.385-0.375 2.385l0.62625 1.1981s0.75188-1.1981 1.0031-1.8225c0.24937-0.63188-0.0637-1.8244 0.1875-2.3906 0.25125-0.56625 1.3162-0.56625 2.1319 0.37875 0.81563 0.94125 1.7569 2.0756 2.1938 4.4606 0.43875 2.3906-0.37687 4.0894-0.37687 4.0894s1.005 0.82125 1.1925 1.3819c0.18937 0.56813-0.25125 2.8331-0.25125 2.8331s0.69 0.43875 1.3181-0.88313c0.62625-1.3181 1.3781-3.645 1.5656-4.4644 0.1875-0.8175 0.75187-2.325 1.755-1.1944s1.6931 2.5162 1.8825 3.2081c0.18563 0.69 0.18563 1.2581 0.18563 1.2581s2.2575-2.2031 3.0094-3.4612c0.75188-1.2581 2.3194-3.1444 4.4531-4.9031 2.1319-1.7606 5.8294-5.2819 7.6481-6.4781 1.8169-1.1944 6.4575-3.7106 7.8994-4.59 1.4419-0.87937 1.6931-0.94125 1.9444-3.3975 0.25125-2.4544 1.4438-4.65 2.0062-6.3506 0.56625-1.6969 0.69-2.3288 0.69-2.3288z"/><path id="path20" fill="#d4af3a" d="m225.37 276.87s-0.62625-0.0619-1.5038-0.18938c-0.8775-0.12562-2.7581-0.75375-3.3225-1.0069-0.56438-0.24937-1.4419-0.31312-2.0062 0.31501-0.56438 0.63-5.1412 3.3319-5.1412 3.3319h7.5862c2.6325 0 4.3875-2.4506 4.3875-2.4506z"/><path id="path22" fill="#d4af3a" d="m246.74 275.56v-0.7575l-1.0106-2.1769s-1.1794 0.74063-2.3288 1.9294c-1.4794 1.5356-3.0712 3.6938-3.7819 4.605-1.2638 1.6181-3.03 3.1406-1.515 0.55499 1.515-2.5838 2.0194-3.6975 3.2306-5.4206 1.2131-1.7212 2.1225-2.4806 1.9725-2.5838-0.15187-0.10125-1.1138-0.25125-4.2956-0.65625-3.18-0.40875-5.1506-1.6219-6.615-2.4844-1.4644-0.86062-4.0912-2.2781-4.0912-2.2781s-5.4038 2.2781-7.425 2.7844c-2.0212 0.50625-3.2325 0.81-1.2638 1.7738 1.9706 0.96187 3.6356 1.2656 4.5956 1.8712 0.95812 0.61125 3.9394 1.5712 5.7581 1.5712 1.8169 0 4.8975 0.0488 3.6862 1.3162-1.2112 1.2694-2.5762 3.7012-3.8888 7.395-1.3125 3.7012-1.3631 6.9919-1.3631 8.6138s0.20062 3.24 0.20062 3.24 2.2219-2.4788 8.1825-6.2269c5.9588-3.75 8.1806-5.0156 9.2925-5.5238 1.11-0.50438 1.6688-0.50438 1.4644-1.9219-0.19875-1.4194-0.80438-4.9144-0.80438-5.625z"/><path id="path24" fill="#d4af3a" d="m269.5 257.46c-0.36-0.16125-0.73125-0.32813-1.1062-0.5025-0.0994 0.0263-0.19125 0.0544-0.27375 0.0975-0.69937 0.35062-4.335 2.7975-5.8031 5.1769-1.4681 2.3756-2.9363 2.5875-1.3294 0 1.6088-2.5913 2.7975-4.0575 4.0556-5.1769 0.48562-0.43125 0.92062-0.79125 1.2694-1.0669-2.925-1.41-6.1012-3.1181-9.1744-5.2575-0.39749 0.79313-1.1606 2.1994-2.025 3.1106-1.2581 1.3275-4.0556 2.4488-4.0556 2.4488s2.2369-2.3081 3.0075-4.0575c0.48937-1.1156 0.81-2.3175 0.97687-3.0394-2.1394-1.6669-4.1888-3.5662-6.0188-5.7469-0.37312 1.5131-1.5825 5.1956-5.1656 9.2062-4.6838 5.2462-14.055 7.9012-14.055 7.9012s-3.285 0.35062-0.62813 1.05c2.6569 0.69937 4.545 1.8881 9.72 0.97688 5.1731-0.90563 5.5219-1.1175 6.2212-1.3238 0.69938-0.21187 2.5875-0.0712 0 0.9075-2.5856 0.97688-8.6006 1.8844-10.907 1.6781-2.3081-0.20813-5.4544-0.69938-2.1675 1.05s4.6856 2.4469 6.7125 2.4469c2.0288 0 2.8669 0.63 4.8262 0.63 1.9575 0 2.5144-0.35062 3.915-0.63 1.3988-0.2775 2.3062 0.20813 2.3062 0.76875 0 0.55875-1.8862 2.0962-1.8169 5.9438 0.0694 3.8456 0.34875 6.3638 0.6975 7.4775 0.3525 1.1231 1.1906 2.9381 1.7494 3.99 0.55875 1.0481 0.77062 2.0944 1.3275-0.14062 0.55875-2.2388 1.8169-5.4544 2.3081-7.62 0.48938-2.1675 0.76875-2.2369 0.97875-3.3562 0.20813-1.1194 1.3988-1.9575 0.83813 0.0694-0.56063 2.0269-1.1888 4.6144-1.6069 6.4331-0.42187 1.8188-1.3988 5.1731 0.2775 2.5162 1.6781-2.655 7.9706-9.7181 9.0188-10.976 1.0481-1.2581 1.8881-2.4488 2.6569-3.495 0.76875-1.05 2.9362-2.4488 3.9862-3.9862 0.94875-1.3912 3.7275-4.1006 4.92-5.07-1.7794-0.75562-3.6562-1.5469-5.6362-2.4338z"/><path id="path26" fill="#d4af3a" d="m147.17 186.61c-0.0412-0.41813-0.8775-1.8862-1.0856-2.64-0.21-0.75187-0.96187-0.29438-0.96187-0.29438s-1.6313 0.9225-2.8425 1.2581c-1.2112 0.33563-1.38-0.12375-1.5056-0.75187-0.12375-0.63375-0.41813-2.6006-0.62625-3.9844-0.21-1.38-0.5025-1.2956-1.0031-1.0912-0.50062 0.21188-2.0062 0.75563-3.0506 1.2188-1.0444 0.45938-0.71063 0.96375-0.37687 1.5488 0.33375 0.58875 1.5469 3.06 2.0888 3.9412 0.54375 0.87938 0.0412 1.2581-0.58688 1.5525-0.62625 0.2925-1.545 0.41813-2.7994 0.83625-1.2544 0.41813-1.17 0.7125-1.0462 1.1325 0.12562 0.42188 0.96187 2.1394 1.4212 2.9325 0.45938 0.79688 0.87751 0.25313 0.87751 0.25313s1.3388-1.2131 2.4656-1.7606c1.1288-0.54187 1.2112-0.37687 1.5038 0.46313 0.2925 0.83812 1.59 5.2406 1.8394 6.0788 0.25125 0.83437 0.66937 0.75187 1.2544 0.50437 0.585-0.25125 1.3781-0.37875 2.0475-0.58875 0.66937-0.20812 0.92062-1.5506 0.92062-1.5506s-2.4656-4.4419-3.135-5.5762c-0.66937-1.1325 0-1.3838 0.5025-1.4662 0.50063-0.0825 1.9631-0.2925 3.2175-0.58688 1.2581-0.29625 0.92438-1.0088 0.88125-1.4288z"/><path id="path28" fill="#d4af3a" d="m175.02 307.3c-0.1875-1.0706 0-2.1412-0.81563-2.9569-0.81562-0.81937-1.8188-2.4525-2.1938-3.7725-0.375-1.3219 0.31313-1.95 0.1875-2.7056-0.12375-0.75375-1.1288-0.75375-2.13 0.0656-1.005 0.8175-2.3212 1.5712-2.3212 3.96 0 2.3869 0.87938 5.22 4.2019 6.2231 3.3225 1.0106 3.2606 0.255 3.0712-0.81375z"/><path id="path30" fill="#d4af3a" d="m178.41 306.17s-0.69-0.43875-1.0031 0.18937c-0.31313 0.62813-0.25125 0.945 0.62624 2.3269 0.8775 1.3819 1.4438 1.6988 2.445 2.325 1.0031 0.63 0.31313-0.62625 0.1875-1.005-0.12375-0.37875 0-0.87937-0.24937-1.1962-0.25125-0.315-0.37875-0.69187-0.37875-1.695 0.002-1.0088-1.6275-0.945-1.6275-0.945z"/><path id="path32" fill="#d4af3a" d="m182.48 317.49c0.62625-0.94687 1.1925-1.1962 2.6963-1.8862s4.2619-1.0688 5.2012-1.1325c0.94125-0.0637 3.0731-1.8862 2.7581-3.7762-0.31312-1.8862-1.6931-2.64-2.8838-2.8912-1.1906-0.25125-2.2575-0.25125-2.6325 0.31313-0.37687 0.56812-1.0669 1.3219-2.3831 1.7606-1.3162 0.43875-1.5056 0.88125-2.3194 1.1325-0.81562 0.25313-0.18937 0.75563-0.8775 1.3219-0.69 0.56437-1.6294 0-2.6962-0.315-1.065-0.315-1.1288-0.5025-2.3194-0.56813-1.1906-0.0619-4.3256-0.24937-4.3256-0.24937s-0.12562-0.0638-0.81375-0.0638c-0.69 0-0.75375 0.12562-1.065 0.88125-0.31312 0.75375 0.0619 2.6419 0.81563 3.585 0.75187 0.94125 3.1969 1.3819 4.8262 1.8862 1.6312 0.50063 2.4469 0.69187 3.8269 0.94125 1.3781 0.255 1.5656 0.002 2.1919-0.93938z"/><path id="path34" fill="#d4af3a" d="m197.72 319c1.3162-0.88125 0.5625-2.3906 0.25125-3.3319-0.31312-0.945-2.1319-1.1325-3.0731-1.1325-0.94125 0-1.4419 0-1.9444 0.43875s-1.1906 1.0688-2.5706 1.5112c-1.3762 0.43876-2.445 0.94126-4.3256 1.6969-1.8806 0.75188-2.4469 2.01-3.2606 2.5181-0.81563 0.50063-2.3812 0-2.3812 0s-1.1306-0.31687-1.5056 0c-0.37687 0.30938 0 0.93938 0.75188 1.7569 0.75375 0.82125 2.1938 0.75563 3.8231 1.26 1.6312 0.5025 1.9444 0.12375 2.5725-0.315 0.62625-0.43875 1.1288-1.3819 2.2575-2.0756 1.1288-0.69 3.5738-0.8175 4.7644-0.94125 1.1925-0.12937 3.3244-0.50625 4.6406-1.3856z"/><path id="path36" fill="#d4af3a" d="m197.72 313.28c0.5625 0.50625 1.1906 1.1981 1.6931 0.37688 0.5025-0.81563 1.3162-2.5144 0.75187-3.5194-0.56625-1.005-1.2525-1.8881-1.2525-1.8881s-0.94125 2.8931-1.38 3.6488c-0.44062 0.75375-0.37687 0.87937 0.1875 1.3819z"/><path id="path38" fill="#d4af3a" d="m192.64 304.6c0-1.6369-1.1288-3.6488-1.1288-3.6488s-0.37688 1.5094-1.065 2.8312c-0.69 1.3181-1.38 2.0119-1.38 2.0119s1.6312 0.43875 2.2575 0.43875c0.62625 0 1.3162 0 1.3162-1.6331z"/><path id="path40" fill="#d4af3a" d="m183.24 308.06c1.755-0.37688 2.6963-1.0688 3.4481-1.6969 0.75187-0.62812 1.1925-2.3287 0.69-3.2062-0.50062-0.885-1.755-1.8244-2.2556-1.8244h-0.94125s-0.5025 1.635-1.1906 2.4525c-0.69 0.81937-1.5038 1.3819-1.4419 2.4525 0.06 1.0688-0.0637 2.1994 1.6912 1.8225z"/><path id="path42" fill="#d4af3a" d="m186.81 300.07c0.0638-0.8175-0.25312-1.6969-0.81562-2.2631-0.56438-0.56625-0.94125-0.94126-0.94125-0.94126s-0.12562 1.2563-0.24938 1.9481c-0.12562 0.69187-0.18749 0.8175-0.18749 0.8175s0.5025 0.50625 0.94125 0.69375c0.43687 0.18562 1.1888 0.56437 1.2525-0.255z"/><path id="path44" fill="#d4af3a" d="m165.13 255.47s2.0738 0 1.185-7.41c-0.89062-7.4081-4.7438-14.421-7.8038-19.264-3.0638-4.8394-6.225-12.446-7.6087-16.498-1.3819-4.0519-2.31-9.5981-2.31-12.501 0-2.9062 1.2394-4.4006 1.2394-4.4006s0.53813-0.7875 0.0412-1.2862c-0.49688-0.49688-1.2806-0.0394-2.0681 0.74625-0.7875 0.78562-1.6125 2.2388-1.9444 3.2756-0.33187 1.0406-0.33187 1.4119-0.33187 1.4119s-1.5712-0.37125-4.095-0.16313c-2.5238 0.20438-3.7219 0.41438-3.8063 0.9525-0.0825 0.54 0.33188 0.95625 2.1506 1.7438 1.8206 0.7875 2.9794 1.1194 3.8888 2.1994 0.91125 1.0781 3.2381 6.4969 3.9488 9.1125 0.71063 2.6175 2.2312 9.7125 2.8481 15.281 0.61687 5.5688 2.4956 12.315 5.1225 17.949 0.86249 1.8469 5.5744 10.607 9.5438 8.85z"/><path id="path46" fill="#d4af3a" d="m169.72 268.52c-1.7156 0.95812-1.6519 7.9688-0.89062 11.602 0.76312 3.6356 4.3219 8.1619 5.4019 9.3731 1.0819 1.2112 1.335 1.2112 1.9088 0.8925 0.57376-0.31687 0.82501-0.31687 0.82501-0.31687s1.5262-0.51 2.6719-1.4025c1.1419-0.89438 0.6975-3.1256 0.50625-5.1019-0.19125-1.98-1.7156-5.9325-4.5112-10.519-2.7975-4.5919-4.1962-5.4844-5.9119-4.5281z"/><path id="path48" fill="#d4af3a" d="m171.62 262.84c0-2.2875-1.9838-4.0162-4.2638-4.0162-1.0781 0-2.0288 0.27188-2.6175 0.8025-2.3138 2.0869-0.91875 7.2956 2.4244 7.2956 1.2112 0 2.6269-0.2025 3.5025-1.0406 0.7725-0.735 0.95438-1.9688 0.95438-3.0412z"/><path id="path50" fill="#d4af3a" d="m204.77 328.73c-0.91312-0.16125-1.4512-0.53438-2.7975-1.4494-1.3444-0.91313-3.4969-2.7975-3.8738-3.7125-0.37875-0.915-0.37875-0.96938-1.6688-0.53625-1.2919 0.42937-3.1219 0.37499-4.5188 0.42937-1.3988 0.0544 0.15937 1.6125 1.1288 3.0694 0.96937 1.4512 0.645 6.3469 0.645 6.3469s0 0.43125-0.21563 1.1325c-0.21562 0.6975-0.0525 1.1831 0.3225 1.3444 0.37688 0.16125 0.59063-0.16125 1.56-1.2938 0.96938-1.1288 2.745-4.0856 2.745-4.0856s0.27 0.0506 1.7756 0.42938c1.5056 0.37875 3.9281 0.16125 5.1656-0.21563 1.2394-0.3825 0.64688-1.2956-0.26812-1.4588z"/><path id="path52" fill="#d4af3a" d="m199.02 332.5c-0.645-0.10874-0.91313-0.16312-1.2375 0.26438-0.32063 0.43312-0.59062 1.2431-0.75187 1.6706-0.16125 0.43125-0.10876 0.81 0.27 1.1325 0.37687 0.32438 0.915 0.69938 0.915 0.69938s0.53812 0.5925 1.0781 0.85875c0.53813 0.27187 0.64313-0.53437 0.64313-1.1288 0-0.59063 0.32249-1.6688 0.32249-2.3681 0-0.69937-0.59437-1.0219-1.2394-1.1288z"/><path id="path54" fill="#d4af3a" d="m182.56 96.054c0.16687 3.8531 4.4325 11.226 6.8588 15.163 2.4262 3.9394 3.0938 5.5256 2.6775 5.7788-0.42 0.25125-1.4231-1.7588-2.7619-3.5156-1.3388-1.7588-3.93-5.8631-6.105-8.9625s-5.3531-10.47-5.7712-11.141c-0.41812-0.66938-0.58687-1.0894-1.6725-0.25312-1.0875 0.83812-3.1781 8.9644-0.66749 14.494 2.5087 5.5275 6.2719 9.5456 7.86 11.473 1.59 1.9275 3.6806 4.9425 3.345 5.1956-0.33374 0.24938-0.91874-0.50437-2.8425-2.5144-1.9237-2.01-5.1038-5.445-7.1925-7.9575-1.6988-2.04-4.0031-6.1838-4.8112-7.665-0.30375-0.56062-0.69562-0.40875-0.98812-0.11625-0.68813 0.69188-1.7906 2.2988-1.3106 6.6919 0.66938 6.1162 3.8475 9.6338 6.69 12.733 2.8444 3.0994 5.6888 5.6944 5.2706 6.1144-0.41813 0.42-3.345-2.1788-5.3531-4.1044-2.0062-1.9256-6.9431-6.6994-8.0288-8.0419-1.0894-1.3388-2.6756-0.67125-2.5931 4.6069 0.0825 5.2781 5.9381 10.639 8.3625 13.571 2.4281 2.9306 5.4375 4.6875 5.1881 5.2744-0.25125 0.58688-2.6775-0.91875-4.2656-2.01-1.5881-1.0894-7.5281-4.9425-8.6981-5.7806-1.17-0.83625-1.7569 0.75376-0.25125 5.7806 1.5056 5.0231 5.8556 9.045 8.4469 10.886 2.5931 1.8431 6.7744 4.1025 6.5231 4.6931-0.24937 0.585-2.0062-0.16874-4.4325-1.3425-2.4244-1.1719-5.3512-2.2612-7.4438-2.8462-2.0925-0.58688-2.0906 0.91875-2.0906 0.91875s-0.42 4.2712 2.6756 7.7062 6.6075 4.7756 9.9525 5.3588c3.345 0.58687 3.8475 0.75562 3.7631 1.26-0.0825 0.5025-0.41812 0.58501-1.17 0.58501-0.75187 0-3.8475 0.33562-6.6919 0.33562s-4.3481 0.6675-4.3481 1.9256-0.0844 2.9325 4.1812 5.7788c4.2638 2.85 9.0319 3.2681 11.04 3.6881 2.0062 0.41812 2.0888 0.58688 1.6725 1.1738-0.41812 0.585-1.3369 0.5025-4.5169 0.83625-3.1781 0.33375-5.1019 1.5919-5.52 2.4281-0.41812 0.83813 0.25125 3.3525 2.8462 5.1094 2.5913 1.7606 5.9362 2.3475 10.956 2.0119 5.0194-0.3375 6.2738-0.42 6.4406 0.42 0.16876 0.83625-1.5037 1.0894-4.0144 1.5094-2.5088 0.41625-4.4344 0.41625-5.8556 1.59-1.4231 1.1738-0.33375 3.6019 2.0906 5.3606 2.4244 1.7588 8.4488 1.7588 10.958 1.5919 2.5088-0.16688 6.3562-1.0894 6.6075-0.42 0.25125 0.66937-1.8394 1.6781-4.4306 2.5969-2.595 0.92438-3.3488 1.5075-3.8475 2.5988-0.50437 1.0875-0.0844 2.0925 3.0094 3.2644 3.0938 1.1738 7.6106 1.1738 9.9525 0.0844 2.3438-1.0875 3.5962-1.5094 4.0162-1.0875 0.41625 0.42188 0 0.83813-0.5025 1.425-0.50063 0.58687-2.5088 2.1769-5.1019 2.8481-2.5931 0.67125-2.8444 0.67125-3.765 2.7638-0.91875 2.0944 1.4212 3.7725 6.105 3.9412 4.6856 0.165 10.958-1.6762 12.966-2.8519 2.0081-1.1738 2.76-1.4231 3.0938-1.0031 0.33375 0.41813 0.25125 0.66938-0.75187 1.4212-1.005 0.7575-4.1831 3.0169-5.7713 3.4369-1.5881 0.41812-1.7569 1.59-1.7569 2.6794 0 1.0875-0.41812 3.2662 3.7631 4.2731 4.1831 1.005 9.1162 0.25312 13.633-2.9325 1.455-1.0238 2.3006-1.8694 2.7769-2.6025-0.36563-4.2769-0.17251-7.2169 0.34125-9.9281-0.88688-0.0937-2.5688-0.34875-4.29-1.0406-2.5088-1.0031-3.5119-3.3487-4.0988-4.6069-0.58688-1.2562-1.4212-1.2562-2.4262-0.9225-1.005 0.33938-2.0081 0.75563-3.4294 0.67312-1.4212-0.0825-4.4325-0.83812-6.6075-3.4369-2.175-2.5969-1.7588-5.1075-1.8412-6.3675-0.0844-1.2562-2.0906-0.33375-3.0938-0.33375-1.005 0-3.9319-0.42-6.6056-2.2612-2.6775-1.8431-2.6775-4.3556-2.9288-5.3625-0.25125-1.0031-1.3388-1.6725-2.175-2.01-0.83438-0.33375-2.175-0.6675-4.0162-2.1769-1.8394-1.5075-2.5069-4.4381-2.5912-5.4431-0.0825-1.005-1.1719-1.0894-4.935-3.015s-3.4294-5.9475-3.2606-7.5375c0.16688-1.5938 1.9219-2.9306 1.9219-3.5212 0-0.58688-1.2544-0.75188-2.5088-1.5075-1.2544-0.75188-4.4325-2.01-4.515-6.6994-0.0844-4.6912 3.0112-5.1937 3.0112-5.1937s-0.58688-0.25313-1.8412-1.005c-1.2544-0.75563-4.6819-3.0994-4.6819-5.865 0-2.7638 1.2525-4.02 2.1731-4.6912 0.92062-0.66937 3.4294-1.3388 3.4294-1.3388s-1.59-1.0069-2.2594-3.1838c-0.66938-2.1788-0.92063-4.8562 0.6675-6.7838 1.59-1.9275 4.2656-1.9275 5.6888-1.9275 1.4231 0 2.6756 0.75374 3.1781 0.3375 0.5025-0.42 0.585-0.75376 0.0825-1.8431-0.50062-1.0875-0.585-3.7706-0.16687-4.6894 0.42-0.9225 0.5025-2.7638 4.1006-3.9375 3.5944-1.1719 7.3575 1.2562 8.5294 1.9275 1.1719 0.67125 0.66937-0.92438 0.66937-2.0944 0-1.1719-2.4244-4.1044-5.1862-8.2931-2.76-4.1888-4.0144-6.3675-7.11-12.733-3.0956-6.3656-5.1038-14.574-5.52-16.669-0.41812-2.0944-1.2544-1.0912-1.2544-1.0912s-0.83625 0.3375-2.76 5.1938c-1.92 4.86-2.2538 9.3-2.0869 13.149z"/><path id="path56" fill="#d4af3a" d="m245.66 181.72c-2.1562-0.10875-4.9556-1.2919-7.11-4.4212-2.1525-3.1294-5.3869-3.8869-10.989-3.78-5.6025 0.10875-8.1881-2.5875-9.5888-6.4706-1.4006-3.8869 0.21562-8.3119 5.925-11.117 5.7094-2.805 8.2969-5.9344 8.5106-10.787 0.21563-4.8562-5.7075-10.899-11.634-17.696-5.9269-6.7969-10.558-16.402-10.558-16.402s-1.7231 2.2669-1.7231 4.5319 0.86062 4.6388 0 5.2856c-0.8625 0.64874-1.185-0.96938-4.6312-2.4806-3.4481-1.5112-6.2494-1.725-8.4038 0.75562s0 6.7969 1.9388 8.8481c1.9406 2.0494 3.555 3.5625 3.0169 4.3181-0.53812 0.75563-3.4481-1.1869-4.4175-1.8356-0.96937-0.64875-3.2325-3.1275-6.5719-2.805s-4.5262 1.2938-4.8488 4.1006c-0.3225 2.805 3.0169 5.2838 5.1712 6.3656 2.1544 1.0762 3.0169 2.0494 2.4769 2.4788-0.53812 0.43312-1.0781 0-2.0475-0.32063-0.9675-0.32437-3.6619-0.64687-5.385 0-1.725 0.64688-4.5262 3.0188-1.9406 5.9344 2.5856 2.9138 7.9725 3.9919 9.0506 4.2056 1.0762 0.21563 1.6162-0.10875 1.7231 0.75375 0.10687 0.86625-2.2631 0.86625-5.1712 0.975s-3.7706 2.9119-3.3394 5.07c0.43125 2.1581 5.2781 4.53 7.9706 4.9631 2.6962 0.43125 3.6638 0 3.8794 0.75375 0.2175 0.75375-0.3225 1.0781-1.8319 1.5112-1.5075 0.42937-4.4175 0.75562-4.9575 3.1294-0.53813 2.3738-0.645 3.4519 1.6181 5.505 2.2631 2.0494 5.9269 1.725 7.0031 1.5094 1.0781-0.21375 2.3719-1.4044 3.4481-0.3225 1.0762 1.0762-0.97125 1.9406-2.8031 3.2362-1.8319 1.2975-1.7231 3.7781 1.4006 5.505 3.1238 1.7288 6.2494 1.0762 7.5412 0.64687 1.2919-0.42937 3.0169-2.4806 3.8775-1.1869 0.8625 1.2938-2.6925 1.7269-4.2019 3.5606-1.5075 1.8319-0.96938 4.8525 2.0475 6.6862 3.0169 1.8356 7.9725 0.54 8.835-0.21375 0.86062-0.75375 1.9369-1.0762 2.5838-0.42937 0.645 0.64312-0.3225 2.37-0.96938 3.8812-0.645 1.5112-1.8319 5.9344 2.6944 7.6612 4.5262 1.725 8.6194-2.1581 9.3731-2.9156 0.75375-0.75375 1.5075-0.8625 2.1544-0.53812 0.645 0.32625 0.32437 0.97125-0.21563 1.7269-0.53812 0.75375-1.7231 3.99 1.5075 6.2588 2.2069 1.5469 4.6144 1.4325 5.9194 1.2075 0.67312-2.5275 1.5488-5.2275 2.4412-9.0094h-0.675c-0.43125 0-0.5175 0.64687-0.5175 0.90562s0.12937 0.47438-0.26063 0.47438c-0.38812 0-0.43125 0.21562-0.99187 0.60562-0.56063 0.38813-1.0781 0.86063-1.3819 0.64688-0.30187-0.21563 1.1662-0.99375 1.5544-1.4681 0.39-0.47625 1.1662-1.2094 1.2094-1.725 0.0431-0.51937 0.30188-0.82125 1.0781-1.4681 0.24187-0.20063 0.43125-0.44063 0.58125-0.67313 0.51937-2.5162 1.0275-5.4619 1.4906-9.0281 0.31313-2.4206 0.49125-4.7006 0.56063-6.8306l-1.4156-0.0731z"/><path id="path58" fill="#d4af3a" d="m153.58 114.47c4.8131 9.7369 11.61 15.219 11.61 15.219s-0.8925-2.4188-1.2881-4.0819c-0.39187-1.665-0.0863-3.5475-0.0863-3.5475s-1.7062-2.1881-4.8581-7.0462-4.815-12.036-4.815-12.036 2.9325 7.1775 5.2088 10.988c2.2781 3.8081 4.905 6.915 4.905 6.915s0.91688-3.3675 1.575-3.5437c0.65625-0.17438 1.1381 0.35062 1.7062 1.0931 0.57 0.74438 1.0538 0.675 1.0538 0.675s-0.77813-1.6069-1.9744-3.5344c-0.54375-0.87563-1.3369-1.8206-1.8975-2.7056-1.7944-2.835-5.6625-8.2219-7.6463-13.611-1.9838-5.3906-6.3244-18.906-7.08-22.879-0.75376-3.9694-1.5094-1.7962-2.265 1.1362-0.75375 2.9306-1.7925 7.0894-1.1325 13.328 0.65999 6.2381 2.1694 13.894 6.9844 23.631z"/><path id="path60" fill="#d4af3a" d="m159.81 140.75c1.7925 1.3237 4.4362 3.1181 4.4362 3.1181s-0.41813-0.97688-0.6825-2.1488c-0.26438-1.1719-0.37687-3.585-0.37687-3.585s-2.1113-1.8525-3.5813-3.135c-1.47-1.2844-3.3188-2.9456-6.975-7.4756-3.6562-4.5319-0.71625-1.8112 2.2613 1.4362 2.9775 3.2475 8.6719 7.965 8.6719 7.965s0-0.075 0.0375-1.0556c0.0394-0.98063 0.34125-1.6988 0.86813-2.3775 0.52874-0.68063 0.24937-0.77625-2.9606-3.2325-3.2081-2.4581-11.516-11.816-14.914-17.396-3.3994-5.5781-7.08-13.14-7.08-13.14s-1.7925 11.156 5.0044 23.445c6.795 12.287 13.498 16.258 15.291 17.582z"/><path id="path62" fill="#d4af3a" d="m195.47 211.12c3.7238-1.4438 2.7038-5.1169 2.7038-5.1769s-2.2838 0.72375-4.3838 1.5038c-2.1038 0.78562-7.2694 2.2875-9.3112 2.3456-2.04 0.06-2.04-0.23812-2.1019-0.54-0.06-0.29812 1.5619 0 4.5037-0.54 2.9438-0.54187 8.1094-3.2494 9.0094-3.8494 0.9-0.60375 0.78-0.72563-0.54-0.84563-1.3219-0.11812-2.4619-0.72187-2.9438-1.14-0.47812-0.42187-1.86 0.18188-5.2238 0.96563-3.3656 0.78-10.333 1.9838-15.679 1.9838-5.3456 0-10.329-0.90188-11.171-1.0838-0.84187-0.18-1.7419 0.30187 0.84188 4.635 2.5819 4.3294 11.653 6.6769 17.959 6.615 6.3056-0.0637 12.613-3.4312 16.337-4.8731z"/><path id="path64" fill="#d4af3a" d="m178.7 202.18c6.5062 0.0544 8.9325-1.8788 8.9325-1.8788s0-0.33188-0.88125-1.6556c-0.88313-1.3238-0.71625-3.5888-0.71625-3.5888s-1.545 0.27562-4.2469 0.66374c-2.7019 0.38626-5.8444 0.77251-9.3188 0.165-3.4744-0.60749-1.9838-0.99375 0.7725-0.66375 2.7581 0.33188 8.0494-0.66375 9.7594-1.2694 1.7081-0.6075 0.99187-1.1588-0.165-1.5488-1.1569-0.3825-4.2994-2.3738-4.2994-2.3738s-7.8844 0.99375-15.218 0.16875c-7.3331-0.8325-11.966-2.7075-13.455-2.9288-1.4888-0.22125-1.4344 0.38812-1.4344 0.38812s-0.38625 0.66 2.1488 4.6331c2.5369 3.9806 7.5 6.5756 11.691 7.7888 4.1906 1.2169 9.9244 2.0456 16.431 2.1z"/><path id="path66" fill="#d4af3a" d="m177.04 186.94s-0.27563-0.38625-0.66187-1.7138c-0.38625-1.3256 0.71625-2.3175 0.71625-2.3175s-1.4888-0.44063-6.3412-1.05c-4.8525-0.6075-5.1262-0.99375-8.1056-1.6575-2.9775-0.66188-4.9612-1.545-4.9069-1.8769 0.0544-0.33187 0.99187 0.16688 2.7562 0.82688 1.7625 0.66375 9.2081 1.4362 12.351 1.8788 3.1425 0.44062 4.9069 0.77437 5.4581 0.44062 0.55125-0.33187 2.4806-0.82875 2.4806-0.82875s-1.3238-0.3825-2.9775-0.66187c-1.6556-0.27563-3.1425-0.99375-4.0238-1.6012-0.88312-0.6075-1.1588-0.77625-5.1281-1.2131-3.9712-0.44062-7.1681-1.7138-14.282-4.3088-7.11-2.5969-12.461-5.6869-13.894-6.8456-1.4344-1.1588-1.3238-0.33-0.9375 1.1588 0.38625 1.4925 0.33 3.3675 3.915 7.5638 3.5831 4.1981 5.3475 6.0188 14.389 9.3356 9.0469 3.3112 19.192 2.8706 19.192 2.8706z"/><path id="path68" fill="#d4af3a" d="m150.3 164.91c7.995 5.6325 17.364 7.7006 19.352 7.95 0.44624-0.52125-0.48375-2.3925-0.0563-3.5344 0.5175-1.3669 1.38-1.38 3.3094-1.4906 1.9294-0.11437 0.66187-0.49875 0.22125-0.49875-0.44063 0-0.55125-0.0544-3.75-0.88312-3.1988-0.825-6.45-1.3256-10.86-2.9831-4.4119-1.6556-5.7338-2.8706-5.625-3.2025 0.11062-0.33 2.04 1.0519 6.1219 2.5969 4.08 1.545 8.8219 2.1525 11.413 2.7075 2.5912 0.5475 0.33-0.555-0.88313-1.2731-1.2131-0.72-2.9231-3.3694-2.9231-3.3694s-2.8669-0.49688-7.5525-1.9312c-4.6875-1.4362-8.6006-3.0394-12.516-5.2462-1.3444-0.76125-2.6456-1.7419-4.0481-2.7488-2.6831-1.9238-5.3794-3.8906-6.4275-4.65-1.6012-1.1588-1.1025-0.22125-0.9375 0.49687 0.165 0.71813 1.2675 4.0331 3.8025 7.6762 2.5369 3.645 3.3638 4.7494 11.359 10.384z"/><path id="path70" fill="#d4af3a" d="m148.98 149.06c7.8844 6.2419 14.664 8.1694 15.823 8.6681 1.1569 0.49875 1.0481-0.165 0.82687-0.82688-0.22125-0.66375-0.38812-2.8144-0.38812-2.8144s-2.8125-1.6031-5.955-3.4256c-3.1425-1.8244-6.615-4.3069-8.9306-5.9062-2.3156-1.6012-0.9375-1.4906-0.22125-0.88687 0.71625 0.6075 3.915 2.4862 7.1119 4.4738 3.1988 1.9894 8.0494 4.86 8.0494 4.86s0.11063-1.0481 0.7725-1.7119c0.66188-0.66376 2.3138-0.495 2.3138-0.495s-0.82687-0.82876-1.3238-1.6012c-0.495-0.77625-3.0881-1.6012-6.0094-2.985-2.9231-1.3781-8.1619-5.2425-12.021-8.5012-3.86-3.26-11.36-11.43-11.85-12.1-0.49687-0.66375-0.82687-0.55125-0.88312 0.27562-0.0544 0.82688-0.33 1.38 0.49687 5.1356 0.8325 3.7538 4.305 11.595 12.191 17.835z"/><path id="path72" fill="#d4af3a" d="m176.89 90.052c0.89438 1.8562 1.8731 3.2588 2.5781 4.4681 1.065 1.8262 1.665 3.0094 1.665 3.0094s0.21375-0.64312 0.045-1.74-0.3375-2.6175-0.0413-4.4306c0.15562-0.97125 0.36562-1.9388 0.31312-2.8012-0.0619-0.98062-0.39-1.8281-0.52312-2.3869-0.25313-1.0575-1.3894-5.655-1.9388-8.9025-0.5475-3.2494-1.1362-7.89-1.095-11.985 0.0412-4.0931 0.63187-2.0269 0.63187-0.04125s0.21 5.0231 0.84188 9.705c0.63187 4.6838 2.6119 11.814 2.6119 11.814s0.12563-1.0969 0.71625-2.6588c0.59063-1.5619 1.56-3.3319 2.3175-5.2744 0.7575-1.9406 0.49125-2.265 0.49125-2.265s-2.7675-13.249-3.495-19.511c-0.72937-6.2606-1.8938-22.718-1.8938-22.718-4.05 4.0744-7.0612 14.798-7.5975 24.939-0.40125 7.6406 0.8325 14.713 1.1906 17.58 0.70875 5.6775 1.695 10.11 3.1819 13.198z"/><path id="path74" fill="#d4af3a" d="m167.9 110.96c0.12562-3 0.81563-5.2706 2.7506-5.9362 0 0-1.7119-3.0019-3.2081-7.2806-1.0219-2.9306-1.8675-6.6881-2.2969-9.5719-1.0575-7.1006-1.905-14.415 0.21187-2.4375 2.115 11.976 4.6556 16.215 4.6556 16.215l3.0694 4.9819c-0.45375-2.1881-0.525-3.7256-0.40875-6.1162s0.42187-5.6287 1.1494-8.1919c0 0-3.705-7.4175-6.0319-16.324-2.3269-8.9062-3.6581-17.004-3.705-21.832-0.21188-4.665-0.31687-6.4669-0.31687-6.4669s-3.8081 2.8612-5.0775 17.381c-1.2712 14.522 2.5406 28.408 4.4438 33.709 1.905 5.2969 4.7644 11.871 4.7644 11.871z"/><path id="path76" fill="#d4af3a" d="m209.46 221.7s-0.6-0.42-2.4019-1.5638c-1.8019-1.14-1.26-4.5712-1.26-4.5712s-0.48 0.36-1.8038 1.2638c-1.3219 0.90187-2.8219 1.9219-4.6238 2.6456-1.8019 0.72375-2.7038 1.2038-3.8437 1.5638-1.1419 0.36188-0.84001-0.11812 0.11999-0.66187 0.96-0.54 1.2619-0.84188 3.6656-1.8038 2.4-0.96375 7.2056-5.175 7.2056-5.175s-1.1419-0.12-3.1238-0.18-4.5056-1.0819-4.5056-1.0819-1.98 1.8038-9.9694 5.2312c-7.9894 3.4312-14.777 4.3312-14.777 4.3312s0.84187 4.0931 4.6856 5.4769c3.1838 1.3838 7.5694 2.2256 16.159 0.18187 8.5875-2.0437 14.473-5.6569 14.473-5.6569z"/><path id="path78" fill="#d4af3a" d="m219.98 229.89c0.66187-3.3731-1.2619-5.7188-1.2619-5.7188s-0.42 0.24-1.62 1.3238c-1.2019 1.0838-2.9456 3.1294-6.3075 4.8112-3.3619 1.6819-4.5656 1.5638-1.3219-0.18187 3.2438-1.7456 7.9894-6.6769 7.9894-6.6769l-1.26-0.48187c-1.2638-0.48188-3.4256 0.35999-12.435 5.7731-9.0094 5.415-14.297 5.5969-14.297 5.5969s4.0238 4.8731 14.957 4.5113c10.933-0.35625 14.897-5.5913 15.557-8.9569z"/><path id="path80" fill="#d4af3a" d="m240.64 225.98s-1.2019 1.6819-2.8238 2.7656c-1.6219 1.0838-5.9456 1.7456-5.9456 1.7456s-0.18 0.48187-1.02 1.5638c-0.84188 1.0838-2.7038 3.6712-4.6256 5.055-1.92 1.3838-4.9256 2.2838-5.1056 1.9219-0.18-0.36187 1.7419-1.0819 3.6038-2.2256 1.8619-1.14 3.5438-3.2494 4.8056-4.6912 1.2619-1.4456-0.54-1.2038-0.54-1.2038s-2.2819 0.0581-4.3856-0.12c-2.1019-0.18375-1.6819 0-2.2819 1.0238s-1.4419 1.9238-3.0038 3.7294c-1.905 2.2012-3.7144 4.1962-5.5256 6.3731-1.2 1.4456-0.3 1.8656-0.3 1.8656s0.54187 0.90375 5.4056 1.4438c3.0038 0.33562 6.2569-0.0431 9.6806-2.0175 2.1206-1.23 4.3088-3.1781 6.54-5.6212 5.8219-6.3731 5.5219-11.608 5.5219-11.608z"/><path id="path82" fill="#d4af3a" d="m243.22 239.15c-1.2019 1.5656-1.8638 2.2275-1.8638 2.2275s0.84188-2.5875 1.5619-3.7913c0.38438-0.64125 0.80062-1.2506 1.11-1.6762-0.80438-1.8075-1.4644-3.75-1.9519-5.8444-0.53438 1.7306-2.1975 6.8081-4.2638 10.11-2.52 4.0275-4.7456 5.4731-3.3038 6.5531 1.4419 1.0838 4.2638 1.3256 7.4494-0.24 3.075-1.5094 3.9638-4.1456 4.4006-6.2738-0.54-0.83625-1.0462-1.7044-1.515-2.6138-0.3975 0.24563-0.975 0.705-1.6238 1.5488z"/><path id="path84" fill="#d4af3a" d="m426.05 151.76c2.5931-1.8412 6.9412-5.8631 8.4469-10.886 1.5056-5.0269 0.91875-6.6169-0.25125-5.7806-1.17 0.83812-7.11 4.6912-8.7 5.7806-1.59 1.0912-4.0162 2.595-4.2638 2.01-0.25125-0.58875 2.7581-2.3438 5.1881-5.2744 2.4225-2.9325 8.2781-8.2931 8.3625-13.571 0.0844-5.2781-1.5056-5.9456-2.5912-4.6069-1.0894 1.3406-6.0244 6.1162-8.0306 8.0419-2.0062 1.9256-4.935 4.5244-5.3512 4.1044-0.42187-0.42 2.4244-3.0131 5.2688-6.1144 2.8425-3.0994 6.0225-6.6169 6.6919-12.733 0.47812-4.3931-0.6225-6-1.3125-6.6919-0.29063-0.2925-0.68438-0.44437-0.98813 0.11625-0.80437 1.4812-3.1106 5.625-4.8112 7.665-2.0869 2.5106-5.2688 5.9475-7.1906 7.9575-1.92 2.0119-2.5088 2.7656-2.8444 2.5144-0.33375-0.25313 1.7569-3.2681 3.345-5.1956s5.3512-5.9456 7.8638-11.473c2.505-5.5294 0.41625-13.656-0.66937-14.494-1.0875-0.83625-1.2562-0.41625-1.6744 0.25312-0.42 0.67125-3.5962 8.0419-5.7712 11.141-2.1712 3.0994-4.77 7.2038-6.105 8.9625-1.3388 1.7588-2.3419 3.7688-2.7619 3.5156-0.41813-0.25313 0.25124-1.8394 2.6775-5.7788 2.4262-3.9375 6.6919-11.31 6.8569-15.163 0.17063-3.8512-0.165-8.2912-2.0888-13.151-1.9238-4.8562-2.76-5.1938-2.76-5.1938s-0.83625-1.0031-1.2562 1.0912c-0.41625 2.0944-2.4262 10.303-5.5181 16.669-3.0956 6.3656-4.3481 8.5444-7.11 12.733-2.7619 4.1869-5.1881 7.1212-5.1881 8.2931s-0.5025 2.7656 0.67125 2.0944c1.17-0.67125 4.9312-3.0994 8.5294-1.9275 3.5944 1.1738 3.6788 3.015 4.0988 3.9375 0.42187 0.92062 0.33562 3.6019-0.16688 4.6894-0.5025 1.0912-0.42 1.425 0.0825 1.8431 0.50625 0.41625 1.7588-0.3375 3.1781-0.3375 1.4231 0 4.1006 0 5.6869 1.9275 1.5919 1.9275 1.3406 4.6069 0.67125 6.7838-0.67125 2.1788-2.2594 3.1838-2.2594 3.1838s2.5087 0.66937 3.4275 1.3388c0.92062 0.67125 2.175 1.9275 2.175 4.6912 0 2.7656-3.4275 5.1094-4.6856 5.865-1.2525 0.75187-1.8375 1.005-1.8375 1.005s3.0956 0.5025 3.0112 5.1938c-0.0844 4.6894-3.2606 5.9475-4.5169 6.6994-1.2544 0.75375-2.5088 0.91875-2.5088 1.5075s1.755 1.9275 1.9238 3.5212c0.16687 1.59 0.5025 5.61-3.2625 7.5375-3.7631 1.9256-4.8506 2.01-4.935 3.015s-0.75188 3.9375-2.5931 5.4431c-1.8394 1.5094-3.1762 1.8431-4.0162 2.1769-0.83437 0.33938-1.9219 1.0069-2.1731 2.01-0.25125 1.0069-0.25125 3.5194-2.9269 5.3625-2.6775 1.8412-5.6062 2.2612-6.6094 2.2612-1.0031 0-3.0094-0.9225-3.0938 0.33375-0.0825 1.26 0.33563 3.7706-1.8356 6.3675-2.1788 2.5988-5.19 3.3544-6.6112 3.4369s-2.4225-0.33563-3.4256-0.67313c-1.0069-0.33375-1.8412-0.33375-2.43 0.92251-0.58312 1.2581-1.5881 3.6038-4.0969 4.6069-1.725 0.69187-3.4031 0.94687-4.29 1.0406 0.51375 2.7112 0.70312 5.6512 0.34125 9.9281 0.47812 0.73313 1.3238 1.5788 2.7769 2.6025 4.5169 3.1856 9.4519 3.9394 13.633 2.9325 4.1812-1.0069 3.7631-3.1856 3.7631-4.2731 0-1.0894-0.16687-2.2612-1.755-2.6794-1.5919-0.42-4.7681-2.6794-5.7694-3.4369-1.005-0.75-1.0894-1.0031-0.75188-1.4212 0.33188-0.42 1.0856-0.17063 3.09 1.0031 2.0081 1.1756 8.2819 3.015 12.966 2.8519 4.6819-0.16875 7.0256-1.845 6.1031-3.9412-0.91687-2.0906-1.1681-2.0906-3.7612-2.7638-2.5912-0.66938-4.6012-2.2612-5.1038-2.8481-0.50062-0.58688-0.91875-1.0031-0.50062-1.425 0.41812-0.42187 1.6725 0 4.0144 1.0875 2.3419 1.0894 6.8569 1.0894 9.9525-0.0844 3.0938-1.1719 3.5138-2.1769 3.0112-3.2644-0.5025-1.0912-1.2544-1.6744-3.8475-2.5988-2.5931-0.91875-4.6838-1.9256-4.4325-2.5969 0.25125-0.67125 4.0969 0.25313 6.6038 0.42 2.5125 0.16876 8.535 0.16876 10.961-1.5919 2.4244-1.7588 3.5119-4.1869 2.0888-5.3606-1.4212-1.1738-3.3431-1.1738-5.8556-1.59-2.5069-0.42001-4.1794-0.67126-4.0144-1.5094 0.16688-0.83813 1.4231-0.75563 6.4406-0.42 5.0194 0.33562 8.3644-0.25125 10.958-2.0119 2.595-1.7569 3.2625-4.2694 2.8444-5.1094-0.41812-0.83625-2.34-2.0944-5.5181-2.4281-3.18-0.33563-4.0988-0.25313-4.5169-0.83625-0.42187-0.58688-0.33562-0.75563 1.6725-1.1738 2.0081-0.42 6.7744-0.83812 11.042-3.6881 4.2675-2.8462 4.1812-4.5206 4.1812-5.7788 0-1.2581-1.5038-1.9256-4.3481-1.9256-2.8444 0-5.9381-0.33563-6.6919-0.33563-0.75188 0-1.0856-0.0825-1.1719-0.585-0.0825-0.50437 0.42-0.67125 3.765-1.26 3.3469-0.585 6.8588-1.9238 9.9562-5.3588 3.0938-3.435 2.6756-7.7062 2.6756-7.7062s0-1.5075-2.0925-0.91875c-2.0888 0.585-5.0156 1.6744-7.4438 2.8462-2.4244 1.1738-4.1794 1.9256-4.4306 1.3425-0.25312-0.58875 3.93-2.8481 6.5212-4.6912z"/><path id="path86" fill="#d4af3a" d="m415.21 140.29c-1.7231-0.64687-4.4175-0.32437-5.385 0-0.97125 0.32063-1.5112 0.75563-2.0494 0.32063-0.53626-0.42938 0.3225-1.4025 2.4788-2.4788 2.1525-1.0819 5.4938-3.5606 5.1712-6.3656-0.32438-2.8069-1.5094-3.7781-4.8488-4.1006-3.3375-0.3225-5.6025 2.1581-6.57 2.805-0.97125 0.64687-3.8775 2.5894-4.4175 1.8356-0.54-0.75375 1.0762-2.2669 3.015-4.3181s4.095-6.3675 1.9388-8.8481c-2.1544-2.4806-4.9556-2.265-8.4038-0.75563-3.4462 1.5131-3.7688 3.1294-4.6312 2.4806-0.8625-0.64688 0-3.0206 0-5.2856s-1.7231-4.5319-1.7231-4.5319-4.635 9.6056-10.56 16.402c-5.9269 6.7969-11.852 12.84-11.634 17.696 0.21375 4.8525 2.7975 7.9819 8.5106 10.787 5.7075 2.805 7.3238 7.2281 5.9231 11.117-1.4006 3.8831-3.9862 6.5794-9.585 6.4706-5.6044-0.10875-8.8369 0.65062-10.989 3.78-2.1544 3.1294-4.9594 4.3144-7.1119 4.4212l-1.4194 0.0731c0.0713 2.13 0.2475 4.41 0.55875 6.8306 0.465 3.5662 0.975 6.5138 1.4906 9.0281 0.15 0.23249 0.34125 0.4725 0.58313 0.67312 0.77812 0.64688 1.0388 0.94875 1.08 1.4681 0.0412 0.51563 0.82125 1.2488 1.2094 1.725 0.38625 0.47437 1.8544 1.2525 1.5506 1.4681-0.3 0.21375-0.8175-0.25875-1.3762-0.64687-0.5625-0.39-0.60375-0.60563-0.99563-0.60563-0.38625 0-0.25875-0.21562-0.25875-0.47437 0-0.26063-0.0863-0.90563-0.51375-0.90563h-0.67687c0.89062 3.7819 1.7662 6.4819 2.4412 9.0094 1.305 0.225 3.7106 0.34125 5.9194-1.2075 3.2306-2.2688 2.0475-5.505 1.5075-6.2588-0.53812-0.75563-0.8625-1.4006-0.2175-1.7269 0.65063-0.32437 1.4044-0.21562 2.1562 0.53813 0.75375 0.75562 4.8469 4.6406 9.375 2.9156 4.5244-1.7269 3.3394-6.15 2.6944-7.6612-0.64875-1.5131-1.6144-3.24-0.97313-3.8812 0.64875-0.64875 1.725-0.32625 2.5875 0.42938 0.8625 0.75562 5.82 2.0494 8.835 0.21375 3.0169-1.8356 3.555-4.8562 2.0456-6.6862-1.5075-1.8356-5.0606-2.2669-4.2-3.5606 0.86062-1.2938 2.5856 0.75563 3.8775 1.1869 1.2938 0.42937 4.4156 1.0819 7.5431-0.64688 3.1219-1.7269 3.2306-4.2056 1.3969-5.505-1.8319-1.2938-3.8756-2.1581-2.7994-3.2362 1.0762-1.0819 2.3738 0.10875 3.4481 0.3225 1.0762 0.21563 4.7419 0.54 7.0012-1.5094 2.2631-2.0531 2.1581-3.1312 1.6181-5.505s-3.4519-2.6981-4.9594-3.1294c-1.5075-0.43125-2.0456-0.75563-1.83-1.5112 0.21375-0.75375 1.1831-0.3225 3.8775-0.75375 2.6944-0.43312 7.5412-2.805 7.9725-4.9631 0.43125-2.1581-0.42938-4.9612-3.3412-5.07-2.9081-0.10875-5.2781-0.10875-5.1731-0.975 0.10874-0.8625 0.64874-0.53813 1.725-0.75375 1.0781-0.21375 6.465-1.2919 9.0506-4.2056 2.5875-2.9138-0.21375-5.2856-1.9388-5.9344z"/><path id="path88" fill="#d4af3a" d="m434.81 129.69s6.795-5.4825 11.606-15.219c4.815-9.7369 6.3244-17.392 6.9844-23.632 0.66375-6.2381-0.37687-10.397-1.1306-13.328-0.7575-2.9306-1.5112-5.1056-2.265-1.1362-0.75562 3.9731-5.0981 17.488-7.0781 22.879-1.9838 5.3906-5.8538 10.778-7.6444 13.611-0.5625 0.88501-1.3594 1.83-1.8994 2.7056-1.1962 1.9275-1.9744 3.5344-1.9744 3.5344s0.48563 0.0694 1.0519-0.675c0.57-0.74437 1.0538-1.2694 1.71-1.0931 0.65625 0.17625 1.575 3.5438 1.575 3.5438s2.6231-3.1069 4.9012-6.915c2.2762-3.81 5.2088-10.988 5.2088-10.988s-1.665 7.1775-4.8131 12.036c-3.1538 4.8581-4.86 7.0462-4.86 7.0462s0.30563 1.8825-0.0881 3.5475c-0.39375 1.665-1.2844 4.0838-1.2844 4.0838z"/><path id="path90" fill="#d4af3a" d="m460.48 99.722s-3.6788 7.5619-7.0781 13.14c-3.3956 5.58-11.702 14.938-14.912 17.396-3.2062 2.4581-3.4875 2.5519-2.9588 3.2325 0.525 0.67875 0.82688 1.3969 0.86813 2.3775 0.0375 0.98249 0.0375 1.0556 0.0375 1.0556s5.6906-4.7156 8.6719-7.965c2.9775-3.2475 5.9175-5.9662 2.2594-1.4362-3.6544 4.53-5.5031 6.1931-6.9731 7.4756s-3.5812 3.135-3.5812 3.135-0.1125 2.415-0.37687 3.585c-0.26438 1.17-0.6825 2.1487-0.6825 2.1487s2.6419-1.7944 4.4362-3.1181c1.7925-1.3238 8.4938-5.295 15.292-17.584 6.7931-12.287 4.9969-23.443 4.9969-23.443z"/><path id="path92" fill="#d4af3a" d="m427.48 59.274c-0.53625-10.142-3.5494-20.865-7.5975-24.939 0 0-1.1644 16.457-1.8956 22.718-0.7275 6.2606-3.4931 19.511-3.4931 19.511s-0.27 0.32625 0.48938 2.265c0.7575 1.9425 1.7269 3.7125 2.3194 5.2744 0.58688 1.5619 0.7125 2.6588 0.7125 2.6588s1.98-7.1306 2.6156-11.814c0.63-4.6838 0.84-7.7212 0.84-9.705s0.5925-4.05 0.63375 0.04125c0.0412 4.0931-0.54938 8.7338-1.0969 11.985-0.54562 3.2475-1.6856 7.845-1.935 8.9025-0.13687 0.55875-0.46312 1.4062-0.525 2.3869-0.0525 0.8625 0.1575 1.83 0.315 2.8012 0.29438 1.8131 0.12563 3.3338-0.0412 4.4306-0.16875 1.0969 0.0431 1.74 0.0431 1.74s0.59812-1.185 1.6669-3.0094c0.70313-1.2112 1.6838-2.6138 2.5781-4.4681 1.4888-3.0862 2.4694-7.5206 3.18-13.198 0.35625-2.8688 1.5938-9.9394 1.1906-17.58z"/><path id="path94" fill="#d4af3a" d="m436.86 99.092c1.905-5.3006 5.7188-19.185 4.4438-33.709-1.2675-14.518-5.0775-17.381-5.0775-17.381s-0.10688 1.8019-0.31875 6.4669c-0.0469 4.8262-1.3744 12.926-3.705 21.832-2.3269 8.9062-6.03 16.324-6.03 16.324 0.72375 2.5631 1.0312 5.8012 1.1475 8.1919 0.11625 2.3906 0.0431 3.93-0.41063 6.1162l3.0694-4.9819s2.5388-4.2412 4.6556-16.215c2.1206-11.976 1.2712-4.6631 0.21187 2.4375-0.42938 2.8838-1.2731 6.6412-2.2988 9.5719-1.4944 4.2787-3.2025 7.2806-3.2025 7.2806 1.9331 0.66562 2.6231 2.9362 2.7506 5.9362 0.004 0 2.8612-6.5738 4.7644-11.871z"/><path id="path96" fill="#d4af3a" d="m439.67 204.74c-0.84188 0.18188-5.8256 1.0838-11.173 1.0838-5.3456 0-12.311-1.2037-15.677-1.9838-3.3638-0.78375-4.7456-1.3856-5.2256-0.96562-0.48 0.42-1.62 1.0238-2.9438 1.14-1.3219 0.12-1.4419 0.24187-0.53812 0.84562 0.89812 0.59813 6.0656 3.3075 9.0112 3.8494 2.9419 0.54 4.5638 0.24187 4.5037 0.54-0.0619 0.30187-0.0619 0.6-2.1037 0.54-2.0419-0.0581-7.2094-1.56-9.3113-2.3456-2.1-0.78-4.3856-1.5638-4.3856-1.5038s-1.02 3.7331 2.7038 5.1769c3.7219 1.4438 10.031 4.8094 16.339 4.8712 6.3075 0.0619 15.377-2.2875 17.959-6.615 2.5838-4.3312 1.6819-4.8112 0.84188-4.6331z"/><path id="path98" fill="#d4af3a" d="m450.14 187.27c-1.4888 0.21937-6.12 2.0944-13.451 2.9287-7.3331 0.825-15.219-0.16875-15.219-0.16875s-3.1425 1.9912-4.2994 2.3738c-1.1588 0.38999-1.8769 0.94124-0.16687 1.5487 1.71 0.60563 7.0012 1.6012 9.7594 1.2694 2.7581-0.33188 4.245 0.0544 0.7725 0.66375-3.4762 0.6075-6.6169 0.22125-9.3206-0.165-2.7-0.38625-4.2469-0.66375-4.2469-0.66375s0.16687 2.265-0.71438 3.5888-0.88125 1.6556-0.88125 1.6556 2.4244 1.9331 8.9306 1.8788c6.5044-0.0544 12.24-0.88313 16.431-2.0981 4.1906-1.2131 9.1538-3.8081 11.689-7.7888 2.5369-3.9731 2.1488-4.6331 2.1488-4.6331s0.0562-0.61124-1.4306-0.38999z"/><path id="path100" fill="#d4af3a" d="m459.51 166.01c-1.4344 1.1588-6.7819 4.2506-13.894 6.8456-7.1156 2.595-10.311 3.8681-14.282 4.3088-3.9694 0.43688-4.2469 0.60563-5.1262 1.2131-0.885 0.6075-2.3719 1.3256-4.0238 1.6012-1.6519 0.2775-2.9775 0.66187-2.9775 0.66187s1.9275 0.49876 2.4806 0.82875c0.54937 0.33375 2.3138 0 5.4581-0.44062 3.1406-0.4425 10.586-1.215 12.351-1.8788 1.7625-0.66187 2.7-1.1588 2.7562-0.82688 0.0562 0.33188-1.9275 1.215-4.9069 1.8769-2.9756 0.66375-3.2512 1.05-8.1038 1.6575-4.8525 0.6075-6.3412 1.05-6.3412 1.05s1.1025 0.99188 0.71813 2.3175c-0.38625 1.3275-0.66375 1.7138-0.66375 1.7138s10.146 0.43875 19.185-2.8706c9.045-3.3169 10.809-5.1356 14.394-9.3356 3.5831-4.1962 3.5288-6.0712 3.9131-7.5638 0.38437-1.4888 0.49687-2.3175-0.9375-1.1588z"/><path id="path102" fill="#d4af3a" d="m463.92 146.36c-1.05 0.75937-3.7444 2.7262-6.4312 4.65-1.4044 1.0069-2.7 1.9875-4.0481 2.7488-3.9094 2.2069-7.8262 3.81-12.514 5.2462-4.6856 1.4362-7.5525 1.9312-7.5525 1.9312s-1.71 2.6494-2.9231 3.3694c-1.2131 0.71813-3.4744 1.8206-0.885 1.2731 2.5931-0.555 7.3331-1.1625 11.415-2.7075 4.08-1.545 6.0131-2.9269 6.12-2.5969 0.10875 0.33188-1.2131 1.5469-5.6231 3.2025-4.4138 1.6575-7.6612 2.1562-10.86 2.9831-3.2006 0.82687-3.3112 0.88312-3.7519 0.88312-0.43875 0-1.71 0.38438 0.22125 0.49875 1.9275 0.11063 2.7919 0.12375 3.3094 1.4906 0.42938 1.14-0.5025 3.0112-0.0562 3.5344 1.9912-0.24937 11.359-2.3175 19.354-7.95 7.995-5.6344 8.82-6.7387 11.357-10.382 2.5388-3.6412 3.6375-6.9581 3.8025-7.6762 0.16687-0.72 0.66375-1.6575-0.93375-0.49875z"/><path id="path104" fill="#d4af3a" d="m433.93 151.49c0.66188 0.66375 0.7725 1.7119 0.7725 1.7119s4.8506-2.8706 8.0475-4.86c3.1988-1.9875 6.3994-3.8662 7.1156-4.4738 0.71625-0.60375 2.0944-0.71625-0.22125 0.88688-2.3138 1.6012-5.7862 4.0838-8.9306 5.9062-3.1444 1.8225-5.9569 3.4256-5.9569 3.4256s-0.16687 2.1506-0.38437 2.8144c-0.22125 0.66375-0.33375 1.3256 0.825 0.82687 1.1588-0.49875 7.9388-2.4262 15.825-8.6681 7.8844-6.24 11.359-14.081 12.184-17.837 0.825-3.7556 0.55125-4.3088 0.49687-5.1356-0.0544-0.82687-0.38625-0.93937-0.88312-0.27562-0.49688 0.66375-7.9969 8.8369-11.854 12.094-3.8606 3.2569-9.0975 7.1212-12.019 8.5012-2.9231 1.3819-5.5125 2.2087-6.0112 2.985-0.495 0.7725-1.3219 1.6013-1.3219 1.6013s1.6538-0.16688 2.3156 0.49687z"/><path id="path106" fill="#d4af3a" d="m401.11 212.14s-2.5238 1.0219-4.5019 1.0819c-1.9856 0.0581-3.1256 0.18-3.1256 0.18s4.8056 4.2112 7.2075 5.175c2.4019 0.96188 2.7019 1.2638 3.6656 1.8038 0.96001 0.54375 1.2619 1.0238 0.12 0.66187-1.1438-0.35999-2.0456-0.83999-3.8456-1.5638-1.8038-0.72375-3.3038-1.7438-4.6256-2.6456-1.32-0.9-1.8-1.26-1.8-1.26s0.54 3.4294-1.2619 4.5712c-1.8019 1.1438-2.4038 1.5638-2.4038 1.5638s5.8894 3.6131 14.475 5.6588c8.5912 2.0438 12.977 1.2038 16.159-0.18187 3.8456-1.3838 4.6856-5.4769 4.6856-5.4769s-6.7838-0.89812-14.777-4.3312c-7.9894-3.4294-9.9694-5.2331-9.9694-5.2331z"/><path id="path108" fill="#d4af3a" d="m383.81 222.97l-1.2638 0.48187s4.7438 4.9312 7.9894 6.6769c3.2456 1.7456 2.0438 1.8637-1.32 0.18187-3.3656-1.6819-5.1038-3.7275-6.3075-4.8112-1.2019-1.0838-1.6219-1.3238-1.6219-1.3238s-1.9181 2.3456-1.2638 5.7188c0.66375 3.3656 4.6294 8.6006 15.561 8.9606 10.931 0.36 14.957-4.5112 14.957-4.5112s-5.2856-0.18375-14.295-5.5969c-9.015-5.4169-11.173-6.2588-12.435-5.7769z"/><path id="path110" fill="#d4af3a" d="m380.68 235.54c-1.56-1.8056-2.4-2.7056-3.0038-3.7294-0.60375-1.0238-0.18-1.2075-2.2819-1.0238-2.1038 0.18-4.3856 0.12-4.3856 0.12s-1.8019-0.24188-0.54 1.2038c1.2619 1.4419 2.9456 3.5512 4.8056 4.6912 1.86 1.1419 3.7838 1.8638 3.6019 2.2256-0.18 0.36-3.1819-0.53812-5.1038-1.9219-1.9238-1.3838-3.7875-3.9712-4.6256-5.055-0.84375-1.0819-1.0238-1.5638-1.0238-1.5638s-4.3275-0.66188-5.9456-1.7456c-1.62-1.0819-2.8256-2.7656-2.8256-2.7656s-0.3 5.235 5.5275 11.608c2.2275 2.4431 4.4156 4.3912 6.5381 5.6212 3.42 1.9744 6.6788 2.3531 9.6806 2.0175 4.8638-0.53812 5.4038-1.4438 5.4038-1.4438s0.9-0.42187-0.3-1.8656c-1.8075-2.1769-3.6131-4.1719-5.5219-6.3731z"/><path id="path112" fill="#d4af3a" d="m357.92 230.06c-0.48375 2.0944-1.1456 4.0369-1.9481 5.8444 0.3075 0.42562 0.72375 1.035 1.1081 1.6762 0.72187 1.2056 1.5619 3.7912 1.5619 3.7912s-0.66187-0.66375-1.8619-2.2275c-0.64687-0.84375-1.2262-1.3031-1.6219-1.5469-0.46875 0.9075-0.97688 1.7756-1.5169 2.6138 0.435 2.1281 1.3238 4.7644 4.4006 6.2738 3.1819 1.5656 6.0075 1.3238 7.4494 0.24 1.4438-1.08-0.78-2.5256-3.3038-6.5531-2.0681-3.3038-3.7312-8.3812-4.2675-10.112z"/><ellipse id="ellipse114" d="m 351.81701,105.752 c 0,0.60309 -0.53323,1.092 -1.191,1.092 -0.65777,0 -1.191,-0.48891 -1.191,-1.092 0,-0.6031 0.53323,-1.092 1.191,-1.092 0.65777,0 1.191,0.4889 1.191,1.092 z" rx="1.191" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="1.092" cy="105.75" cx="350.63" fill="#d4af3a"/><path id="path116" fill="#d4af3a" d="m330.25 77.156c1.1625 0.65625 2.37 1.3219 3.585 1.6725 4.3463 1.2469 8.8612 0.47438 12.278-1.0706 4.3725-2.3212 7.9725-3.87 10.631-4.1288 2.2481-0.21562 3.345 0.74812 5.3869 0.79688 0.66375 0.01687 1.23-0.14062 1.4719-0.62438 0.4275-0.85875 0.16875-3.0094-2.9156-4.7325-3.0862-1.7175-7.7156-1.6331-11.833-0.42562-4.1156 1.2019-6.5175 2.835-8.145 4.0388-1.6294 1.2038-3.5606 3.0562-4.0275 2.6681-0.47062-0.39188 0.94125-1.2919 1.7138-2.0662 0.76875-0.77438 1.1156-1.0331 1.1156-1.0331-4.5188 0.30938-9.3694-1.2112-13.292-4.0425 0 0.0038-1.2844 5.9362 4.0312 8.9475z"/><path id="path118" fill="#d4af3a" d="m376.04 74.406c-3.0038-1.3762-6.0038-1.2056-9.6881 0.1725-3.6881 1.3762-5.4919 2.4938-5.4919 2.4938s0.5175 3.18-1.71 4.6425c-2.2294 1.4644-4.4569 0.60375-5.0588-0.85875-0.60187-1.4625-0.77062-2.2369-0.77062-2.2369s-3.5156 1.9781-8.3194 2.8388c-2.7206 0.4875-7.7588 1.0294-10.972-0.25875 0 0-2.9175 2.8388-5.0588 4.5581-2.1431 1.7194-4.4588 3.18-4.4588 3.18s0.25688 0.69 1.2862 1.0331c1.0312 0.34312 1.3706 0.51562 0.68813 1.6331-0.68813 1.1175-5.6606 5.5912-7.8019 7.1362-2.145 1.5487-5.3156 2.7544-5.3156 2.7544s1.0256 1.8919 2.4844 2.4938c1.4569 0.60375 1.7156 1.5488 1.1156 2.5819-0.60188 1.0312-5.745 6.7088-7.89 8.685-2.1412 1.9762-3.7706 2.235-4.7156 2.4938-0.94125 0.25875-2.655 1.2056-0.76687 3.3544 1.8844 2.1506 6.3412 2.9269 10.8 1.635s8.745-6.5381 8.745-6.5381-0.945 7.5694-0.945 11.094c0 3.525 0.42937 7.5675 1.0312 9.6319 0.6 2.0644 1.1981 3.0938 1.1981 3.0938s3.0019-1.7175 5.0606-6.9638c2.0588-5.2462 2.5725-8.1712 2.5725-9.7181s0.0844-2.4094 1.4569-1.6331c1.3706 0.77438 2.4 1.3744 2.9156 1.4606 0.51187 0.0862 0.85687 0.0862 0.85687 0.0862s-0.85687-3.7838-0.85687-6.6225c0-2.8388 0.94312-9.0281 2.1431-10.148 1.2038-1.1175 1.4269 0.42188 1.5431 1.1194 0.24562 1.4569 1.4812 3.2344 3.2588 3.7838 0.58312-4.1775 1.4906-7.6069 4.9688-11.267 0.63187-0.66 1.0294-1.545 3.1744-0.68812 3.1631 1.2675 7.2262 2.07 10.404 0.8325 3.1819-1.2394 5.4788-4.5169 4.7681-4.8731-0.16875-0.08813-4.8825 2.3212-8.5706 1.1156-3.6862-1.2038-5.4038-2.4075-3.2569-4.6444 2.1431-2.235 3.0844-2.4919 7.3725-6.0206 4.2881-3.5231 7.7156-5.3306 11.49-4.7269 3.7725 0.6 4.4569 2.8369 4.8 3.2662 0.34312 0.43125 1.9744 1.7212 1.9744-1.3725-0.002-3.0994-1.4606-7.2262-4.4606-8.6006z"/><path id="path120" fill="#d4af3a" d="m335.77 135.38c-0.7425-1.0669-2.0944-4.0612-2.0944-4.0612s-0.12187 0.73688-0.89999 2.8706c-0.78 2.1319-2.9962 5.1712-2.9962 5.1712s1.7625-0.36938 3.7331-0.98438c1.9688-0.61499 3.3225-1.7625 3.3225-1.7625s-0.32813-0.16688-1.065-1.2338z"/><path id="path122" fill="#d4af3a" d="m320.51 123.77s-1.2338 3.12-3.9825 5.8294c-2.7506 2.7075-4.8019 2.3794-4.8019 2.3794s0.285-0.0825 2.3381-1.5188c2.0531-1.4381 4.1025-5.6212 4.1025-5.6212-2.2538 1.3556-7.44 2.64-10.176 2.0925 0 0-0.4125 0.94313-1.0669 2.6269-0.65813 1.6819-2.5856 4.8019-3.6112 6.1575-1.0294 1.3538-0.24938 1.5581-0.24938 1.5581s0.49313 0.57376 6.9769 2.3813c6.4856 1.8038 12.313 0.77999 12.313 0.77999s-0.2475-0.5775-1.3556-5.0062c-1.1081-4.4344-0.4875-11.659-0.4875-11.659z"/><ellipse id="ellipse124" d="m 290.532,105.752 c 0,0.60309 -0.53368,1.092 -1.192,1.092 -0.65833,0 -1.192,-0.48891 -1.192,-1.092 0,-0.6031 0.53367,-1.092 1.192,-1.092 0.65832,0 1.192,0.4889 1.192,1.092 z" rx="1.192" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="1.092" cy="105.75" cx="289.34" fill="#d4af3a"/><path id="path126" fill="#d4af3a" d="m237.8 74.426c2.04-0.04875 3.1369-1.0144 5.3888-0.79688 2.6569 0.25875 6.2569 1.8075 10.629 4.1288 3.4181 1.545 7.9312 2.3175 12.278 1.0706 1.2169-0.35062 2.4206-1.0162 3.585-1.6725 5.3156-3.0112 4.0294-8.9456 4.0294-8.9456-3.9225 2.8294-8.7712 4.35-13.288 4.0425 0 0 0.34313 0.25875 1.1138 1.0331 0.7725 0.77438 2.1844 1.6744 1.7156 2.0662-0.46687 0.38812-2.4-1.4644-4.0294-2.6681-1.6294-1.2056-4.0294-2.8388-8.145-4.0388-4.1156-1.2075-8.745-1.29-11.831 0.42562-3.0862 1.7231-3.3431 3.8738-2.9138 4.7325 0.23625 0.48188 0.80438 0.63938 1.4681 0.6225z"/><path id="path128" fill="#d4af3a" d="m295.58 117.74c-0.94313-0.25874-2.5706-0.51562-4.7138-2.4937-2.145-1.9763-7.2881-7.6538-7.89-8.685-0.6-1.0331-0.34313-1.9781 1.1156-2.5819 1.4569-0.6 2.4862-2.4938 2.4862-2.4938s-3.1706-1.2056-5.3138-2.7544c-2.145-1.545-7.1175-6.0188-7.8038-7.1362-0.68625-1.1175-0.34312-1.29 0.68625-1.6331 1.0312-0.345 1.2881-1.0331 1.2881-1.0331s-2.3156-1.4606-4.4569-3.18c-2.145-1.7194-5.0588-4.5581-5.0588-4.5581-3.2119 1.29-8.2519 0.74625-10.974 0.25875-4.8019-0.85875-8.3156-2.8388-8.3156-2.8388s-0.1725 0.77438-0.7725 2.2369c-0.6 1.4606-2.8294 2.3231-5.0588 0.85875-2.2294-1.4606-1.7156-4.6425-1.7156-4.6425s-1.8-1.1175-5.4862-2.4938c-3.6862-1.3762-6.6862-1.5488-9.6881-0.1725-3.0019 1.3744-4.4588 5.5031-4.4588 8.6006 0 3.0938 1.6312 1.8056 1.9725 1.3725 0.34313-0.42938 1.0294-2.6662 4.8019-3.2662 3.7725-0.60375 7.2019 1.2038 11.488 4.7269 4.2862 3.5288 5.2294 3.7856 7.3725 6.0206 2.1431 2.2369 0.42938 3.4388-3.2569 4.6444-3.6862 1.2056-8.4019-1.2038-8.5744-1.1156-0.70875 0.35438 1.59 3.6338 4.77 4.8731 3.18 1.2375 7.245 0.435 10.406-0.8325 2.1431-0.85875 2.5425 0.02813 3.1706 0.68812 3.4819 3.66 4.3875 7.0894 4.9725 11.267 1.7794-0.5475 3.0112-2.325 3.2588-3.7838 0.11812-0.69937 0.34312-2.2369 1.5431-1.1194 1.2 1.1194 2.1431 7.3088 2.1431 10.148 0 2.8388-0.85875 6.6225-0.85875 6.6225s0.34312 0 0.85875-0.0863c0.51562-0.0862 1.5431-0.68812 2.9156-1.4606 1.3706-0.77625 1.4569 0.0862 1.4569 1.6331s0.51375 4.4719 2.5725 9.7181 5.0588 6.9638 5.0588 6.9638 0.60187-1.0312 1.2019-3.0938c0.59813-2.0644 1.0294-6.105 1.0294-9.6319s-0.94313-11.094-0.94313-11.094 4.2881 5.2462 8.745 6.5381c4.4588 1.29 8.9175 0.51563 10.804-1.635 1.8806-2.1488 0.165-3.0938-0.77812-3.3544z"/><path id="path130" fill="#d4af3a" d="m266.26 131.32s-1.3538 2.9944-2.0925 4.0612c-0.73875 1.0669-1.0669 1.2338-1.0669 1.2338s1.3538 1.1475 3.3244 1.7625c1.9706 0.61688 3.735 0.98438 3.735 0.98438s-2.2181-3.0394-2.9962-5.1712c-0.78-2.1338-0.90375-2.8706-0.90375-2.8706z"/><path id="path132" fill="#d4af3a" d="m293.02 129.55c-0.65813-1.6819-1.0669-2.6269-1.0669-2.6269-2.7356 0.5475-7.9256-0.73688-10.179-2.0925 0 0 2.0531 4.1831 4.1044 5.6212 2.0531 1.4362 2.34 1.5188 2.34 1.5188s-2.0512 0.33-4.8019-2.3794c-2.7488-2.7094-3.9806-5.8294-3.9806-5.8294s0.615 7.2244-0.49313 11.655-1.3538 5.0062-1.3538 5.0062 5.8256 1.0256 12.311-0.78c6.4838-1.8075 6.975-2.3812 6.975-2.3812s0.77812-0.20438-0.24563-1.5581c-1.0256-1.3519-2.9531-4.4719-3.6094-6.1538z"/><path id="path134" fill="#d4af3a" d="m270.28 292.06c1.3669 0.45562 3.9206-0.54563 5.1975-2.0962 1.275-1.5506 1.7325-3.9244 2.6438-5.2894 0.91125-1.3688 1.5731-2.3831 1.5731-2.3831s-0.195 2.2538-1.4044 5.2744c-1.1531 2.88-1.3538 6.8194-1.08 8.5069 0.5475 3.3731 2.7356 3.9206 4.0125 3.4631 0.96938-0.34499 2.4375-1.8394 3.7856-4.0819 0.42562-0.71062 0.72375-1.6931 1.14-2.4825 0.86625-1.6406 1.6406-4.3294 2.0231-4.2544 0.84375 0.165 0.30375 2.0644-0.015 3.3413-0.63937 2.5519-1.9144 6.2925-2.0062 8.5725-0.0919 2.28 0.18376 6.3825 2.4619 6.5662 2.28 0.18187 3.465-1.8262 4.74-6.4763 1.2769-4.6481 1.5525-6.1106 2.0981-6.1106 0.5475 0 0.5475 3.1912 0.5475 4.56 0 0.47063 0.0188 1.7662 0.20438 3.0694 0.35437 2.4919 1.0819 5.4844 1.8019 6.1425 1.0931 1.0031 2.0062 0.81937 2.0062 0.81937s0.90938 0.18563 2.0062-0.81937c1.0931-1.0031 2.0044-7.845 2.0044-9.2119s0-4.56 0.54562-4.56c0.55125 0 0.82125 1.4606 2.0981 6.1106 1.2788 4.65 2.4619 6.6581 4.7419 6.4763 2.28-0.18375 2.5556-4.2862 2.4638-6.5662-0.0919-2.28-1.3669-6.0206-2.0081-8.5725-0.63938-2.5538 0.27375-2.3719 2.0081 0.91124 0.54 1.0256 1.1006 2.2819 1.65 3.1594 1.215 1.9331 2.3962 3.0919 3.2738 3.405 1.275 0.4575 3.465-0.09 4.0125-3.4631 0.5475-3.3769-2.0062-13.042-2.0062-13.042s0.18375 0.27375 1.095 1.6425c0.91125 1.3669 1.3669 3.7388 2.6456 5.2894 1.275 1.5506 3.8306 2.5519 5.1975 2.0962 1.3669-0.45563 1.5506-3.0112 0.54562-7.5712-1.0031-4.56-5.1075-7.1119-8.025-10.761-2.685-3.3525-4.7531-9.255-5.0644-10.179-3.6731 1.8188-6.8944 3.8831-9.8044 6.9225-6.0356 6.2962-7.3462 7.8694-7.3462 7.8694s-1.3125-1.5731-7.3462-7.8694c-2.9306-3.0581-6.1706-5.1262-9.8719-6.9544-0.34125 0.77813-2.85 6.4144-5.5612 9.8062-1.3481 1.6856-3.2062 2.9588-4.5262 4.5769-1.5338 1.8806-2.4675 4.1362-3.0075 6.5869-1.0012 4.5638-0.81938 7.1194 0.54937 7.5769z"/><path id="path136" fill="#d4af3a" d="m270.12 307.51c1.7662-1.5544 2.6756-2.4112 2.6756-2.4112s1.2844-1.0687 0.96375 0.96563c-0.32249 2.0325-1.0181 6.2081-0.58874 8.025 0.4275 1.8206 0.64125 3.3712 2.8894 2.0325 2.2481-1.3369 2.7825-2.1412 3.8531-3.2625 1.0688-1.125 2.1938-1.6031 1.9256 0.16125-0.27 1.7644-1.0706 4.44-0.69562 8.025 0.37499 3.5831 2.1412 4.1175 4.44 1.0688 2.3025-3.0488 3.6919-5.8294 4.3875-7.3294 0.69562-1.4981 2.0869-2.7806 2.0869 0 0 5.985 1.3725 14.691 7.9706 17.014 6.6019-2.3231 7.9744-11.029 7.9744-17.014 0-2.7806 1.3875-1.4981 2.0812 0 0.6975 1.5 2.0869 4.2806 4.3894 7.3294 2.3006 3.0488 4.0669 2.5144 4.44-1.0688 0.37312-3.585-0.42938-6.2606-0.69563-8.025s0.85688-1.2862 1.9275-0.16125c1.0688 1.1231 1.6012 1.9256 3.8512 3.2625 2.2481 1.3388 2.4619-0.21188 2.8894-2.0325 0.4275-1.8188-0.26813-5.9925-0.58688-8.025-0.3225-2.0344 0.96188-0.96563 0.96188-0.96563s0.90937 0.85688 2.6775 2.4112c1.7625 1.5506 4.1869 1.6444 4.1869 1.6444s1.1344-6.2831-1.4831-10.035-3.5794-4.9725-3.5794-4.9725-1.4812-0.0862-2.6156-0.52125c-1.1325-0.43687-2.235-1.2562-2.235-1.2562v2.565 0.91125s3.2081 3.0488 3.9581 3.9581c0.74625 0.90562 2.2462 2.46 0.0544 0.96187-2.1938-1.4981-4.0144-2.9962-4.0144-2.9962s-0.42937 3.1575-1.3388 3.96c-0.9075 0.80062-2.1938 0.90562-2.7262 0.69375l-0.53437-0.21563-0.16126 1.2338s1.9781 3.6919 2.2444 5.19c0.27 1.4981-0.16125 1.335-1.0688-0.59062-0.90937-1.9219-2.6738-4.3856-3.4762-5.7225-0.8025-1.3369-1.98-2.2481-1.8731-0.53438 0.10874 1.7119-0.58688 4.8131-1.1775 5.9362-0.58688 1.125-0.96188 1.4981-0.96188 1.4981s1.2281 4.3369 1.3894 5.1375c0.16312 0.8025 0.0525 1.7119-0.64126 0.69375-0.69562-1.0162-2.6775-5.295-2.6775-5.295s-2.6212-0.10687-3.3694-0.85687c-0.74812-0.75001-1.9256-3.6338-1.9256-3.6338s-1.0725 3.6825-1.9612 4.8656c-0.88688 1.1812-2.9531 2.3606-2.9531 2.3606s-0.14812 6.405-0.2925 7.5375c-0.15 1.1325-0.19687 1.6238-0.67687 1.6238-0.47813 0-0.52875-0.49313-0.67688-1.6238-0.14437-1.1325-0.2925-7.5375-0.2925-7.5375s-2.07-1.1794-2.9569-2.3606c-0.885-1.1831-1.9594-4.8656-1.9594-4.8656s-1.1756 2.8838-1.9256 3.6338c-0.74813 0.75-3.3694 0.85687-3.3694 0.85687s-1.98 4.2788-2.6756 5.295c-0.69563 1.0181-0.8025 0.10875-0.64125-0.69375s1.3912-5.1375 1.3912-5.1375-0.375-0.37313-0.96375-1.4981c-0.58875-1.1231-1.2844-4.2244-1.1756-5.9362 0.105-1.7138-1.0725-0.8025-1.875 0.53438s-2.5669 3.7988-3.4762 5.7225c-0.90937 1.9256-1.3369 2.0888-1.0688 0.59062 0.26813-1.4981 2.2462-5.19 2.2462-5.19l-0.15937-1.2338-0.53438 0.21563c-0.53625 0.21187-1.8188 0.10687-2.73-0.69375-0.90937-0.80437-1.3369-3.96-1.3369-3.96s-1.8188 1.4981-4.0125 2.9962c-2.1938 1.4981-0.69563-0.0544 0.0544-0.96187 0.74813-0.90938 3.9562-3.9581 3.9562-3.9581v-0.91125-2.565s-1.0988 0.81938-2.2331 1.2562c-1.1344 0.435-2.6175 0.52125-2.6175 0.52125s-0.96 1.2206-3.5775 4.9725-1.4831 10.035-1.4831 10.035 2.4188-0.0937 4.185-1.6444z"/><path id="path138" fill="#d4af3a" d="m263.03 328.89c1.5769-1.0012 2.9456-2.1112 6.5213-4.485 3.5756-2.3756 4.89-5.0119 4.89-5.0119h-1.2619c-0.68438 0-1.2619-0.95063-1.3144-1.8994-0.0544-0.95062 0-2.9006 0.26249-5.1694 0.2625-2.2669-0.36749-4.1138-0.36749-4.1138s-1.5244 1.4212-3.8381 2.6362c-2.3138 1.2131-3.2625 0.63187-3.2625 0.63187l-0.57937-2.3175s-0.99751 2.1113-2.4188 4.5863c-1.4213 2.4787-5.2594 5.2238-7.9931 7.2788-2.7356 2.0588-5.7338 4.2225-7.995 5.0138-2.2612 0.78937-0.945 1.8469-0.945 1.8469s2.2612 2.265 8.0981 3.3206 8.6269-1.3162 10.204-2.3175z"/><path id="path140" fill="#d4af3a" d="m283.44 326.62c-2.085-0.21937-3.3319-1.0069-3.735-3.2719-0.26437-1.4756 0.10687-7.1212 0.10687-7.1212s-0.68437 0.57937-1.4738 1.5319c-0.78937 0.94688-2.5781 1.1588-2.5781 1.1588s-0.2625 0.79125-1.0519 2.055c-0.78937 1.2694-1.7888 2.7994-3.7875 4.0631-1.9969 1.2675-4.3106 2.745-5.8369 4.0106-1.5262 1.2675-3.3131 2.745-5.3119 3.8512-1.9988 1.1081-3.7875 2.9025-4.4719 5.8538-0.6825 2.9531-0.15563 3.9038 2.1562 3.7462 2.3138-0.15938 2.5781 0.0525 6.3112-0.89813 3.735-0.94875 9.045-5.115 12.936-7.5938 3.8981-2.4806 6.7369-7.3856 6.7369-7.3856z"/><path id="path142" fill="#d4af3a" d="m293.8 330.05s-1.5788-2.0006-2.1562-4.2731c-0.57938-2.2669-1.6819-6.75-1.6819-6.75s-0.52687 1.425-1.7888 4.11c-1.2638 2.6925-3.4181 3.3262-3.4181 3.3262s-0.10688 1.1588-1.8938 3.4275c-1.7888 2.2669-4.4156 4.3762-7.1006 5.9625-2.6831 1.5788-6.1538 3.7462-8.0475 6.435-1.8919 2.6906-2.0512 5.4844-1.155 6.6975 0.89438 1.2112 2.1544-0.15938 3.9431-1.0556 1.7888-0.89625 6.8906-1.6875 13.937-5.4862 7.0462-3.7969 9.3619-12.394 9.3619-12.394z"/><path id="path144" fill="#d4af3a" d="m296.85 345.82c1.9462-2.9006 2.2631-9.9656 2.2631-9.9656s-0.6825-0.47437-1.6312-1.2694c-0.945-0.79125-2.7862-3.585-2.7862-3.585s-1.1569 2.4244-2.4187 4.6931c-1.2619 2.2706-1.8956 3.06-4.5244 5.4862-2.6288 2.4281-6.2062 4.8019-7.7325 7.3856-1.5244 2.5838-0.6825 7.7531 0.31688 9.4931 0.99937 1.7438 2.4187 1.1588 3.8906-0.2625 1.4738-1.4231 1.9462-1.7925 4.5225-4.0088 2.5762-2.2162 6.1556-5.0662 8.1-7.9669z"/><path id="path146" fill="#d4af3a" d="m354.37 326.04c-2.2631-0.79125-5.2631-2.955-7.9969-5.0138-2.7319-2.055-6.5719-4.8-7.9931-7.2788-1.4212-2.475-2.4169-4.5862-2.4169-4.5862l-0.58125 2.3175s-0.94688 0.58312-3.2588-0.63188c-2.3138-1.215-3.8381-2.6362-3.8381-2.6362s-0.63375 1.8469-0.3675 4.1138c0.26063 2.2688 0.315 4.2188 0.26063 5.1694-0.0525 0.94875-0.63 1.8994-1.3144 1.8994h-1.2619s1.3144 2.6363 4.89 5.0119c3.5756 2.3738 4.9444 3.4819 6.5212 4.485 1.5806 1.0012 4.3669 3.3731 10.204 2.3175 5.835-1.0556 8.0962-3.3206 8.0962-3.3206s1.3181-1.0575-0.94313-1.8469z"/><path id="path148" fill="#d4af3a" d="m340.27 332.9c-1.9969-1.1062-3.7875-2.5837-5.3119-3.8512-1.5244-1.2656-3.84-2.7431-5.835-4.0106-1.9969-1.2638-2.9981-2.7938-3.7875-4.0631-0.78937-1.2638-1.0538-2.055-1.0538-2.055s-1.7888-0.21187-2.5762-1.1588c-0.7875-0.95437-1.4719-1.5319-1.4719-1.5319s0.3675 5.6456 0.10501 7.1212c-0.40313 2.265-1.6481 3.0525-3.7312 3.2719 0 0 2.8388 4.9031 6.7294 7.3838 3.8906 2.4788 9.2025 6.645 12.936 7.5938 3.735 0.9525 3.9975 0.74063 6.3113 0.89813 2.3119 0.1575 2.8406-0.79313 2.1544-3.7462-0.6825-2.9494-2.4712-4.7438-4.4681-5.8519z"/><path id="path150" fill="#d4af3a" d="m324.28 335.85c-2.6831-1.5862-5.3119-3.6956-7.0988-5.9625-1.7869-2.2688-1.8938-3.4275-1.8938-3.4275s-2.1544-0.63563-3.42-3.3263c-1.26-2.6869-1.7888-4.11-1.7888-4.11s-1.1025 4.4831-1.68 6.75c-0.57937 2.2725-2.1544 4.2731-2.1544 4.2731s2.3119 8.5969 9.3581 12.396c7.0481 3.7969 12.15 4.59 13.939 5.4862 1.7888 0.89625 3.0488 2.2669 3.945 1.0556 0.8925-1.2131 0.735-4.0088-1.1588-6.6975-1.8938-2.6906-5.3644-4.8581-8.0475-6.4369z"/><path id="path152" fill="#d4af3a" d="m312.3 341.18c-2.6306-2.4262-3.2606-3.2156-4.5225-5.4862-1.2619-2.2688-2.4206-4.6931-2.4206-4.6931s-1.8394 2.7938-2.7862 3.585c-0.94687 0.795-1.6312 1.2694-1.6312 1.2694s0.31687 7.0669 2.2612 9.9656c1.9481 2.9025 5.5238 5.7506 8.1 7.9669 2.58 2.2162 3.0488 2.5856 4.5206 4.0088 1.4738 1.4212 2.895 2.0044 3.8925 0.2625 0.99937-1.74 1.8375-6.9094 0.315-9.4931-1.5262-2.5856-5.1-4.9575-7.7288-7.3856z"/><path id="path154" fill="#d4af3a" d="m302.3 349.35c-1.6912-1.9781-2.2556-2.9625-2.2556-2.9625s-0.56437 0.98438-2.2538 2.9625c-1.695 1.9744-5.6438 5.0775-5.6438 5.0775s0.3525 5.22 2.2575 8.0381c1.605 2.3812 3.1406 4.5562 5.64 6.2081 2.4994-1.6519 4.0369-3.8269 5.6419-6.2081 1.9069-2.8181 2.2575-8.0381 2.2575-8.0381s-3.9488-3.1031-5.6438-5.0775z"/><path id="path156" fill="#1d5e91" d="m443.66 285.2c-1.5731-0.37312-2.2406-0.97125-2.2406-0.97125s-0.67313-0.075-1.2019 0.89813c-0.51751 0.96937-2.5388 2.2406-2.5388 2.2406s-2.8406 0.75-3.2156 2.6962c-0.37313 1.9425 0.97313 2.6156 2.3175 2.3906 1.35-0.225 4.6388-0.89813 6.0544-2.6156 1.4212-1.7212 1.6462-2.6944 1.9444-3.3694 0.3-0.66938 0.45188-0.8925-1.1194-1.2694z"/><path id="path158" fill="#1d5e91" d="m448.07 269.72c-1.0219-4.3238-3.8137-9.6656-9.1969-12.341 0 0-2.0194 7.1062-2.6175 9.3506-0.6 2.2406-0.6 2.1675 1.1212 2.6175 1.7175 0.44625 7.2506 1.6425 8.3738 1.9425 1.1231 0.3 2.9888 1.2712 2.3194-1.5694z"/><path id="path160" fill="#1d5e91" d="m422.42 265.68c1.2694 0.225 1.1212-0.3 1.5694-2.0194 0.44812-1.7175 2.6906-10.243 2.6906-10.243s-5.6794-0.225-10.616 2.1656c-4.9369 2.3925-7.1044 6.8044-7.1044 6.8044s1.2731 0.52312 4.6388 1.2731c3.3619 0.74813 7.5488 1.7944 8.8219 2.0194z"/><path id="path162" fill="#1d5e91" d="m409.26 277.42c-2.0156-0.37313-2.7656-0.59812-2.7656-0.59812s1.2712 4.8581 3.3656 7.5525c2.0925 2.6925 4.4119 4.0406 8.7488 4.1138 4.3369 0.075 7.6256-2.3175 8.1506-4.1869 0.52312-1.8712 1.4212-3.2888 1.4212-3.2888s-7.8525-1.0519-11.068-1.7981c-3.2156-0.74626-5.8331-1.4213-7.8525-1.7944z"/><path id="path164" fill="#b96b29" d="m346.51 182.43c-1.9969-12.152 5.0081-22.854 5.0081-22.854l-13.633-15.939c-10.504 5.9006-25.121 5.1075-37.826-0.73687-12.701 5.8425-27.324 6.6375-37.824 0.73687l-13.633 15.939s7.005 10.702 5.0044 22.854c-2.0006 12.15-6.3056 31.38-5.2294 39.223 1.0762 7.845 6.615 16.92 12.306 21.688 5.6906 4.7681 14.151 8.7694 20.147 10.922 6 2.1525 11.846 6.3056 14.616 8.46 2.7675 2.1525 4.6125 4.0012 4.6125 4.0012s1.8469-1.8469 4.6162-4.0012c2.7694-2.1544 8.6138-6.3056 14.61-8.46 6-2.1525 14.462-6.1538 20.151-10.922 5.6925-4.7681 11.229-13.845 12.306-21.688 1.07-7.85-3.24-27.08-5.24-39.23z"/><path id="path166" fill="#b96b29" d="m318.68 113.71c-1.9931 2.2931-6.8794 4.4888-6.8794 4.4888l-0.1 0.39s1.9444-0.35062 3.8869-1.4456c1.9462-1.0969 4.7869-3.5888 5.3869-4.5844 0.59437-1.0012-0.10125-1.6969-0.10125-1.6969s-0.19875 0.54375-2.1919 2.8388z"/><path id="path168" fill="#b96b29" d="m327.11 118.34c0 1.3462-0.50438 10.421-0.50438 10.421-0.0281 0.41438-0.16875 3.1725-0.88125 3.5438 0.36 0.0637 1.065 0.18562 1.275-1.2431 0.24937-1.695 1.9519-13.269 1.9519-13.269l-0.9975-0.44813c0-0.002-0.84375-0.35062-0.84375 0.99563z"/><path id="path170" fill="#b96b29" d="m342.36 95.331c-0.8625 0.24375-2.9625 1.7888-4.0725 2.715-1.1119 0.92438-1.8525 0.92438-2.9025 1.4194-1.0481 0.49312-0.67875-1.7888-0.06-3.6394 0.615-1.8525 2.7131-4.0762 4.32-5.865 1.6031-1.7869-0.0638-1.2338-0.80438-0.495-0.74062 0.7425-2.4656 2.5931-4.5019 5.865-2.0362 3.27-3.1481 10.674-3.1481 10.674s1.2338-0.73875 2.4656-1.605c1.2356-0.8625 2.5912-1.6012 4.9388-3.3319 2.3456-1.7269 3.7031-3.0225 4.935-4.3819 1.2356-1.3556-0.30563-1.6031-1.17-1.3556z"/><path id="path172" fill="#b96b29" d="m281.26 113.71c-1.995-2.2931-2.1938-2.8425-2.1938-2.8425s-0.6975 0.6975-0.10125 1.6969c0.59812 0.99563 3.4406 3.4875 5.385 4.5844 1.9462 1.0969 3.8888 1.4456 3.8888 1.4456l-0.0994-0.39937c0 0.002-4.8862-2.1919-6.8794-4.485z"/><path id="path174" fill="#b96b29" d="m273.33 128.76s-0.49875-9.075-0.49875-10.421c0-1.3462-0.8475-0.9975-0.8475-0.9975l-0.99562 0.44812s1.7006 11.574 1.95 13.269c0.21187 1.4288 0.915 1.3069 1.275 1.2431-0.7125-0.36938-0.85313-3.1275-0.88313-3.5419z"/><path id="path176" fill="#b96b29" d="m261.1 89.466c-0.74063-0.73875-2.4056-1.2919-0.80062 0.495 1.6031 1.7888 3.7031 4.0125 4.3181 5.865 0.61875 1.8506 0.98812 4.1325-0.06 3.6394-1.05-0.495-1.7906-0.495-2.9006-1.4194-1.1119-0.92625-3.2081-2.4712-4.0725-2.715-0.86438-0.2475-2.4056 0-1.1719 1.3556 1.2338 1.3594 2.5931 2.6569 4.9369 4.3819 2.3456 1.7288 3.7031 2.4675 4.9369 3.3319 1.2338 0.86625 2.4675 1.605 2.4675 1.605s-1.1119-7.4044-3.1481-10.674c-2.0362-3.27-3.765-5.1225-4.5056-5.865z"/><path id="path178" fill="#b96b29" d="m299.87 300.08c0.21937 0.045 0.2625-0.51937 0.30563-1.5656 0.0412-1.0425 0.17625-3.5625 0.43312-5.04 0.26063-1.4794-0.39187-1.3912-0.78375-1.3031-0.39 0.0862-0.60563 1.215-0.60563 1.8694 0 0.65063 0.1725 4.3894 0.1725 5.1712 0 0.78188 0.26063 0.825 0.47813 0.86813z"/><path id="path180" fill="#b96b29" d="m326.29 286.67c1.0331 2.1131 1.26 1.845 0.81375 0.09-0.45375-1.7569-1.0819-3.33-2.0719-4.95-0.98812-1.62-3.51-3.915-3.51-3.915s0.675 1.485 1.62 2.7919c0.945 1.3031 2.1169 3.8681 3.1481 5.9831z"/><path id="path182" fill="#b96b29" d="m316.3 288.47c0.405 1.395 2.52 5.2631 2.745 5.1244 0.22313-0.13499-0.85687-3.4631-1.5769-5.7581-0.72-2.2931-1.845-4.0462-2.07-3.9581-0.22313 0.0919 0.17812 1.4419 0.17812 1.4419s0.31875 1.7512 0.72375 3.15z"/><path id="path184" fill="#b96b29" d="m308.43 294.81c0.44999 0.99187 0.99187 2.2069 1.2131 2.0269 0.22688-0.18187-0.53625-2.2069-0.67313-2.79-0.13312-0.58687-0.17812-1.8881-0.855-3.24-0.67312-1.3481-0.94499-0.71812-0.94499-0.18 0 0.54 0.81187 3.15 0.81187 3.15s0 0.045 0.44813 1.0331z"/><path id="path186" fill="#b96b29" d="m273.72 286.67c1.035-2.115 2.205-4.68 3.15-5.9812 0.94313-1.3069 1.6181-2.7919 1.6181-2.7919s-2.52 2.295-3.51 3.915c-0.98812 1.6181-1.6181 3.1931-2.07 4.95-0.44625 1.7531-0.22312 2.0212 0.81188-0.0919z"/><path id="path188" fill="#b96b29" d="m283.71 288.47c0.40501-1.3969 0.63188-2.325 0.63188-2.325s0.40688-1.35 0.18188-1.44c-0.22501-0.0919-1.2619 0.83812-1.9819 3.1312-0.72187 2.2969-1.8 5.6231-1.575 5.7581 0.22313 0.13688 2.3381-3.7294 2.7431-5.1244z"/><path id="path190" fill="#b96b29" d="m291.58 294.81c0.45-0.98812 0.45-1.0331 0.45-1.0331s0.81-2.61 0.81-3.15c0-0.53812-0.27-1.1681-0.94313 0.18-0.67687 1.3519-0.71999 2.6531-0.85687 3.24-0.13312 0.585-0.89813 2.61-0.675 2.79 0.225 0.18 0.765-1.0331 1.215-2.0269z"/><path id="path192" fill="#b96b29" d="m267.14 318.81-1.0538-0.63375s-0.63 0.84563-1.5244 1.7944c-0.89438 0.94687-1.8956 1.3181-2.5781 2.2162-0.6825 0.89625-1.7362 2.0044-3.3656 2.8481-1.6294 0.84375-2.2612 1.1081-1.9444 1.3725 0.315 0.26438 1.4194-0.36937 1.4194-0.36937s0.4725-0.0544 2.4188-1.2131c1.9462-1.1588 2.4188-1.7925 3.6806-2.9006 1.2619-1.1081 2.9475-3.1144 2.9475-3.1144z"/><path id="path194" fill="#b96b29" d="m275.66 328.89c0.73687-0.79125 1.5244-1.32 1.1044-1.7437-0.42187-0.42001-0.94688-0.3675-1.6312 0.21187-0.6825 0.58125-2.6288 2.4244-3.5231 3.2175-0.89437 0.79125-1.6294 1.2675-2.5238 1.9519-0.89437 0.68626-2.8406 1.74-3.7856 2.2669-0.94688 0.52875-0.0525 0.585-0.0525 0.585s0.73687-0.37312 1.5244-0.6375c0.7875-0.2625 3.0488-1.2656 3.0488-1.2656s0.89438-0.42187 2.1038-1.2656c1.2094-0.84188 2.9981-2.5312 3.735-3.3206z"/><path id="path196" fill="#b96b29" d="m285.49 335.69c0.63-1.2638-0.0525-0.89812-1.1044-0.4725-1.0519 0.42188-3.4181 3.0075-4.785 3.9544-1.3669 0.94687-2.5256 1.3181-3.6806 1.9012-1.1569 0.57937-1.1569 0.89438-1.1025 1.1588 0.0506 0.26437 0.52313 0.26437 0.9975 0.0525 0.47438-0.21 2.1038-1.1606 2.1038-1.1606s0.68438-0.20812 1.3162-0.26437c0.63188-0.0525 1.5244-0.7425 2.9456-1.9519 1.4156-1.2131 2.6775-1.9481 3.3094-3.2175z"/><path id="path198" fill="#b96b29" d="m290.07 344.71c-1.7362 1.0556-4.7325 3.4275-5.5219 5.0119-0.79125 1.5844-1.3162 2.6906-1.0538 2.9531 0.2625 0.26437 1.1044-0.26438 1.4738-0.89813 0.36749-0.63188 1.1569-1.5825 1.1569-1.5825s2.9962-2.9512 4.1006-3.6375c1.1044-0.68625 2.8931-2.6362 3.315-3.7969 0.42-1.1625 0.10501-1.7925 0.10501-1.7925s-1.8412 2.6869-3.5756 3.7425z"/><path id="path200" fill="#b96b29" d="m341.43 325.04c-1.6312-0.84187-2.685-1.9519-3.3694-2.8481-0.6825-0.89813-1.6819-1.2694-2.5762-2.2162-0.89437-0.94875-1.5244-1.7944-1.5244-1.7944l-1.0538 0.63375s1.6819 2.0044 2.9456 3.1125c1.2619 1.1081 1.7362 1.7419 3.6806 2.9006 1.9481 1.1588 2.4169 1.2131 2.4169 1.2131s1.1081 0.63375 1.4212 0.36938c0.31875-0.26438-0.31125-0.52688-1.9406-1.3706z"/><path id="path202" fill="#b96b29" d="m334.75 334.79c-0.94687-0.52687-2.8931-1.5806-3.7875-2.2669-0.8925-0.68438-1.6275-1.1606-2.5238-1.9519-0.89437-0.79312-2.8406-2.6362-3.5231-3.2175-0.68438-0.58125-1.2112-0.63187-1.6312-0.21187-0.42188 0.42375 0.36937 0.9525 1.1044 1.7438 0.73875 0.78937 2.5256 2.4769 3.7331 3.3206 1.2112 0.84375 2.1038 1.2656 2.1038 1.2656s2.2612 1.0031 3.0506 1.2656c0.78937 0.26438 1.5244 0.6375 1.5244 0.6375s0.89812-0.0562-0.0506-0.585z"/><path id="path204" fill="#b96b29" d="m324.13 341.07c-1.1588-0.58312-2.3138-0.95437-3.6825-1.9012-1.3669-0.94875-3.7312-3.5344-4.7869-3.9544-1.0519-0.42562-1.7325-0.79125-1.1044 0.4725 0.63375 1.2694 1.8956 2.0044 3.315 3.2194 1.4212 1.2112 2.3138 1.8994 2.9456 1.9519 0.62813 0.0544 1.3144 0.26438 1.3144 0.26438s1.6294 0.95063 2.1019 1.1606c0.47437 0.21 0.94874 0.21 0.9975-0.0525 0.0562-0.26624 0.0562-0.58125-1.1006-1.1606z"/><path id="path206" fill="#b96b29" d="m309.98 344.71c-1.7344-1.0556-3.5738-3.7444-3.5738-3.7444s-0.31688 0.63 0.10687 1.7925c0.42 1.1606 2.2088 3.1106 3.3131 3.7969 1.1062 0.68625 4.1025 3.6375 4.1025 3.6375s0.7875 0.95063 1.1569 1.5825c0.36563 0.63563 1.2075 1.1625 1.4719 0.89813 0.26437-0.26438-0.26625-1.3688-1.0556-2.9531-0.78562-1.5825-3.7838-3.9562-5.5219-5.01z"/><path id="path208" fill="#b96b29" d="m299.2 355.74c0.15563 1.2112 0.0525 4.2731 0.78938 4.2731 0.73687 0 0.63-3.0638 0.78937-4.2731 0.15563-1.2112 0.20813-4.1156 0.20813-4.1156h-2.0006c0-0.002 0.0544 2.9025 0.21375 4.1156z"/><path id="path210" fill="#1d5e91" d="m345.19 183.88c-1.9744-13.121 3.945-23.691 3.945-23.691l-12.306-13.702c-10.401 5.3419-23.042 3.9619-36.814-0.81375-13.77 4.7756-26.409 6.1538-36.812 0.81375l-12.308 13.702s5.9231 10.569 3.9488 23.691c-1.9744 13.121-4.9931 27.982-4.4138 36.694 0.0394 0.59812 0.10312 1.2075 0.18937 1.8225h11.209s0.64875-0.75563 1.8975-1.2881c1.245-0.53812 1.6012-0.89624 1.6012-0.89624s0.23813-2.2631 1.6031-2.7394c1.365-0.47812 1.9594-0.47812 2.4938-0.47812 0.53438 0 0.95063-0.11813 1.6031-0.77438 0.65438-0.65437 2.4319-2.2612 3.2044-4.5244 0.7725-2.2631 1.2488-3.1575 1.2488-4.6462 0-1.4869 0.53437-3.8681 0.53437-3.8681s-0.29812-0.71437-1.425-0.29625c-1.1287 0.41625-1.3069-0.71437-1.4231-1.8469-0.12-1.1325-0.06-3.4519 0.5925-4.5244s0.89063-1.4306 0.89063-1.4306l-0.47625-1.7831s-7.1231 1.4269-8.3681-4.11c-1.2469-5.5369-1.485-8.22-1.6631-8.8106-0.17813-0.59813-0.35625-0.89813-1.3069-0.83438-0.95062 0.0581-2.9681-0.59437-4.3931-3.4556-1.425-2.8575-1.5431-4.0481-1.1288-5.1788 0.41625-1.1325 1.1888-0.71438 1.425-0.35813 0.23625 0.35813 2.1375 3.0975 2.91 2.3212 0.77062-0.77437 0.35624-0.77437-0.7125-2.9175-1.0688-2.1431-0.7125-2.8556-0.59438-3.9319 0.11812-1.0706-0.35437-2.5012-0.35437-3.0956 0-0.5925 0.6525-1.0706 1.305-0.77437 0.65437 0.29812 1.2469 0.77437 1.5431 1.1325 0.29625 0.35625 0.41625 0.89625 1.0106 0.53812 0.59437-0.35812 0.23625-2.325 0.23625-2.9775 0-0.65625 0.7725-1.1325 1.7231-0.59625 0.94875 0.53625 1.4231 1.5469 1.4231 2.2612 0 0.71625 0.06 1.3706 0.41626 1.3706 0.35625 0 0.7725-1.0725 0.83062-1.7888 0.0581-0.71063 0.47438-1.785 1.1288-0.89063 0.65438 0.89063 0.89063 2.205 0.65438 3.5719-0.23813 1.3669 0.23625 0.65625-0.23813 3.0375-0.4725 2.3831-0.71062 3.4538-0.6525 5.2406 0.06 1.785 0.11812 2.7975 1.0088 5.0025 0.89062 2.2031 1.6012 4.7606 3.2644 4.8206 1.6631 0.0581 2.1375 0.0581 2.1375 0.0581s1.8394-3.5719 3.2662-4.4062c1.425-0.8325 3.4425-0.95437 4.8675-1.1325 1.425-0.18 2.0175-0.59625 2.0175-0.95437 0-0.35813-0.47438-0.47438-2.1956-0.71438-1.7194-0.23625-3.1444-0.65625-3.2025-1.965-0.06-1.3088 0.29438-2.4412-0.8325-2.4994-1.1269-0.06-3.9169-0.95813-4.9256-2.7994-1.0088-1.8469-0.7725-2.265-0.65251-3.2738 0.11813-1.0125 1.4231-3.0394 2.2556-1.1325s1.3669 2.1431 2.0775 2.5594c0.7125 0.42 1.6612 0.53812 1.1888-0.77438-0.47625-1.3088-0.7725-2.1412-0.65438-3.0919 0.11813-0.95625 0.77251-1.3688 1.545-1.5488 0.77062-0.18 3.0862-0.89625 4.2731-1.1325 1.185-0.23625 1.2469-0.35438 1.2469-0.35438s0.11813-0.83437 1.6612-1.3106c1.5431-0.47625 2.5519-0.53438 3.6806-0.53438 1.1269 0 1.9575 0.17813 3.4425-0.53812 1.485-0.7125 2.67-0.83063 3.6206-0.7725 0.94875 0.06 1.6631 0.41812 2.3756 0.8925 0.7125 0.47812 0.47437 1.1325 0.47437 1.7869 0 0.65625 0.11813 1.0125 1.1269 1.0125 1.0125 0 1.9031 0 2.8519 0.35625 0.9525 0.35813 2.2575 0.8925 1.425 1.905-0.82875 1.0144-0.88687 2.145-1.425 2.085-0.53062-0.06-0.4725 0.53625-0.7125 0.89438-0.23625 0.35437-0.41437 0.65437 0.18188 1.0125 0.58875 0.35625 0.65063 0.71437 1.4831 1.4869 0.82875 0.77438 2.0756 1.6088 0.82875 2.8594-1.2431 1.2488-3.4406 2.2631-3.4406 2.2631s-1.2488 0.5925 0.17625 1.4306c1.425 0.83062 2.0794 2.5594 2.6138 2.8556 0.5325 0.29813 1.0688 0.77438 1.425 0.9525 0.35437 0.18 0.29625 1.3688 0.29625 1.3688s-0.77063 0.53813-1.8394 0.95438c-1.0688 0.41812-2.1975 0.89437-3.2044 0.89437-1.0106 0-1.545 0-1.1288 0.9525 0.41437 0.95063 1.1288 1.9669 1.305 2.4994 0.17812 0.53625 0.41625 1.4906 0.41625 1.4906s1.6594 0.35438 3.1462 0.35438c1.4831 0 2.1375 0.06 5.4019-0.29625 3.2644-0.35438 4.2169-0.47625 7.3631-0.12 3.1481 0.35625 3.6188 0.24 4.4512 0.53625 0.83062 0.29812 1.6612 0.71812 1.6612 0.71812s4.4531-0.0619 6.8869-0.59625c2.4338-0.53625 3.03-2.0869 2.6756-2.9175-0.35625-0.83437-0.3-2.0831-4.5731-2.6812-4.2712-0.59812-5.9944-0.35812-9.3806-1.0144-3.3825-0.65438-8.6681-2.3812-9.615-6.6075-0.9525-4.2281 2.4919-6.0131 4.215-6.8456 1.7212-0.83625 5.46-2.145 7.1831-2.8575 1.7194-0.71625 4.8694-1.4288 8.1919-0.95437 3.3225 0.47812 5.2219 1.3688 6.5288 0.59625 1.305-0.77438 2.3756-0.18 2.1375 1.0106-0.23438 1.1906-1.5431 3.6338-5.2838 4.7644-3.7388 1.1325-8.2481 1.2506-10.684 0.59625-2.4356-0.65813-4.2731-1.6088-5.7581-1.0744-1.4831 0.53625-3.1462 2.3831-1.545 4.5844 1.6069 2.2069 9.7988 2.8594 11.992 3.0956 2.1975 0.24188 10.329-0.35625 12.645 3.6919 2.3138 4.0519 0.4725 8.5744-2.2556 9.5888-2.73 1.0106-5.0456 1.6688-7.1231 1.965l-2.0775 0.29625s0.94875 2.145 0.94875 3.0394c0 0.8925-0.11812 2.5594 0.8925 3.2119 1.0088 0.65812 2.4356 1.1325 4.1569 0.95437 1.7212-0.17625 3.7988 1.0125 3.9188 2.5612 0.11625 1.5469 0.5925 3.69 0.76875 6.7875 0.18 3.0956 0 5.6569 0 5.6569s-0.11813 1.1925-0.5325 2.3212c-0.41625 1.1325-2.5538 5.5181-2.5538 5.5181h11.953c0.0863-0.615 0.15-1.2225 0.19125-1.8225 0.56438-8.7112-2.4544-23.572-4.4269-36.694z"/><path id="path212" fill="#6d8c3e" d="m252.04 228.22c2.3438 6.6956 7.1738 13.476 14.528 17.904 10.219 6.1538 14.632 5.3419 24.27 11.612 9.6394 6.27 9.0581 7.3163 9.1744 7.3163 0.11625 0-0.465-1.0481 9.1762-7.3163 9.6375-6.2719 14.049-5.4581 24.268-11.612 7.3556-4.4288 12.184-11.209 14.526-17.904h-95.942z"/><path id="path214" fill="#d4af3a" d="m260.4 176.5c1.0969 1.1531 1.9069 1.5038 3.5812 1.3312 1.6762-0.17813 2.0794 1.0406 2.3681 2.3681 0.28875 1.3294 0.28875 4.4475 1.5019 7.335 1.2112 2.8875 5.2556 3.0619 5.2556 3.0619 0.1125-1.3931 0.59813-3.2662 1.2131-4.7944 0.10875-0.27375 0.63375-1.5619-0.81-1.5619s-1.3856-0.5775-2.2519-1.9631c-0.86437-1.3856-2.5406-5.0812-2.9438-7.4513-0.40312-2.3681 0.34688-5.8912 0.75001-7.1606 0.40499-1.2712 0.46312-2.1375 0-2.3681-0.46313-0.23249-1.3856 0-1.3856 0s0.34687 1.0969-0.06 1.2694c-0.40313 0.17625-0.75-0.5775-1.0369-1.3838-0.29062-0.81-0.63562-0.69375-1.2131-0.6375-0.5775 0.0581-0.5775 0.57937-0.1725 1.1569 0.40312 0.57563 0.1725 1.6144 0.1725 1.6144s-1.2712-0.9225-1.7906-1.155c-0.51937-0.22875-1.7325 0.2325-1.8488 0.92625-0.11437 0.69 0.46313 2.4806 1.56 3.405 1.0969 0.92625 1.0969 2.8312 0.75 3.6994-0.345 0.86438-1.9631 0.74813-2.31 0.34688-0.34687-0.405-1.0388-0.51937-1.5019 0-0.46313 0.5175-0.92625 0.80813 0.1725 1.9612z"/><path id="path216" fill="#d4af3a" d="m259.76 173.44s-0.63562-0.5175-0.86625-0.80625c-0.23062-0.2925-0.69375-0.92813-0.69375-0.92813s-0.11625 0.28875-0.11625 0.9825 0.75 1.4456 0.75 1.4456l0.92625-0.69375z"/><path id="path218" fill="#d4af3a" d="m262.19 165.41c0.52125-0.23062 0.92438-0.34875 0.52125-0.92437-0.405-0.5775-0.75187-1.2131-1.1569-1.3294-0.405-0.11437-0.75-0.0563-0.75-0.0563s0.46125 1.0406 0.57562 1.6762c0.11625 0.63375 0.28875 0.86438 0.81 0.63375z"/><path id="path220" fill="#d4af3a" d="m265.19 162.98c-0.0581 0.51938 0.0581 0.75188 0.51938 0.51938 0.46313-0.2325 0.63562-0.86625 0.40312-1.3294-0.23062-0.46125-0.75-0.80625-0.75-0.80625l-0.34687-0.23437s0.2325 1.3294 0.17437 1.8506z"/><path id="path222" fill="#d4af3a" d="m269.52 163.68c0.0562-0.5775-0.17438-1.2112-0.17438-1.2112s0 0.69187-0.28875 1.0988c-0.28875 0.40312-0.23062 0.28875 0.0581 0.63562 0.28875 0.34313 0.34687 0.0563 0.405-0.52312z"/><path id="path224" fill="#d4af3a" d="m276.31 193.03c0.84937 1.9688 3.0075-1.1156 4.9688-3.6094 1.9594-2.4919 1.8956-0.58688 1.6331 1.4438-0.26062 2.0344 0.52313 4.2 1.3088 5.5781 0.78375 1.3725 1.4381 0.58688 1.7625-0.3975 0.32813-0.97875 0.58875-3.0131 1.2431-3.9975 0.65437-0.98437 1.3069-0.13125 1.3725 0.72s1.11 2.7562 2.0906 3.8681c0.97875 1.1175 1.4381-0.39188 1.7644-1.7681 0.32625-1.3762 0.71812-3.4762 0.98062-4.3312 0.26063-0.85125 1.1756-0.12937 1.1756-0.12937s0.65625 0.65625 1.9631 1.9012c1.3031 1.2488 1.4362-0.72188 1.5675-1.7006 0.12938-0.98625-0.19687-3.15 0.195-3.48 0.39188-0.32625 1.5019 0.46125 3.2044 1.3162 1.6988 0.84938 1.635-0.78937 1.44-1.7081-0.19875-0.915-1.1756-3.015-2.55-4.1944-1.3725-1.1812-1.5675-2.5575-1.11-3.15 0.45562-0.58687 2.0906-0.0656 3.135-0.195 1.0481-0.13125 1.5712-0.26062 2.355-0.39 0.78375-0.13312 0.78375-0.92062 0.78375-0.92062s-0.58688-0.9825-1.6988-1.965c-1.1138-0.98625-1.7625-1.77-3.1369-2.1-1.3744-0.32813-3.2681 0-3.2681 0l-0.19688-0.39375c-0.195-0.39188-0.58687-0.39188-0.84937 0-0.2625 0.39375-0.915 0.91875-1.44 1.3762-0.52125 0.45937-0.84938 0.72187-1.1756 0.52312-0.32812-0.195 0.26063-0.65625 0.26063-0.65625s0.72-0.52125 1.3744-1.8356c0.6525-1.3125 0.84938-2.5594 0.32625-3.1481-0.52312-0.5925-1.9612 0-2.745 0-0.78562 0-1.2431 0.12938-1.3069-0.2625-0.0675-0.39375 0.78375-0.195 1.7644-0.33 0.9825-0.12937 1.5694-1.3106 1.8956-2.295 0.32625-0.98437 0.58875-0.85312 1.1775-0.2625 0.58687 0.59063 1.1138 0.45938 1.2412 0.0637 0.1275-0.39375 0.65437-1.3744 1.3069-2.3606 0.65438-0.9825 1.0462-2.3588 0.32625-3.2756-0.72-0.91875-2.4844-0.79125-3.2025-0.195-0.71812 0.58688-1.1756 1.1775-1.3706 2.6194-0.19688 1.4438-0.58875 0.65437-0.58875 0.195 0-0.45938-0.58875-1.1812-0.32813-1.77 0.2625-0.58688 0-1.2469 0-1.2469s-0.12937-1.2431-1.5038-1.5075c-1.3744-0.26437-2.9419 0.0656-4.3144 0.39375-1.3725 0.32813-1.1119 1.5112-1.1119 1.5112s-1.0462 0.0619-2.1581 0.195c-1.11 0.12938-2.4188 0.58688-3.465 0.84938-1.0444 0.26437-1.4381 0.39375-1.4381 0.91687 0 0.52688 0.19688 1.38 0.19688 1.38s0.84937 0 1.3069 0.26063c0.4575 0.26437 0.195 0.72187-0.32812 0.91875-0.52125 0.19875-0.71813 0.2625-0.71813 0.91687 0 0.65813 0.2625 0.78938 0.78375 0.78938s1.635 0 2.9419 0.58687c1.3088 0.58875 1.635 1.7681 1.5038 2.4244-0.13125 0.65812-1.9631 1.5094-2.8781 1.5094s-1.1756 0.19875-1.1756 0.7875c0 0.59063 1.1119 0.52688 1.1119 0.52688s1.11 0.0637 3.2681 0.32437c2.1581 0.26438 2.4844 0.72375 3.4669 1.575 0.97875 0.85313 0.26063 1.05-0.19687 1.3106-0.4575 0.26437-1.1775 0.85312-1.8956 1.1175-0.72 0.26062-1.1775 0.7875-1.8319 0.915-0.65438 0.13125-2.2894 0.0675-5.295 1.2488-3.0075 1.1794-4.0538 5.1169-4.0538 5.1169s0.39188-0.13312 1.7644-0.85687c1.3725-0.72 3.0731-1.5075 4.6425-2.49 1.5675-0.98062 1.5675 0.46125 0.78375 1.8356-0.78375 1.3762 0.72 1.1137 1.1775 0.72187 0.4575-0.39562 1.0462-0.7875 2.5481-1.575 1.5056-0.78563 0.98062 0.45937 0.98062 0.45937s-0.4575 0.91688-0.58687 3.0844c-0.13125 2.1638 2.1562 0.12937 3.2025-1.2469 1.0462-1.3762 1.5037 0 0.71812 1.575-0.78375 1.575-2.2875 2.8181-3.1369 2.8181-0.85126 0-1.5038-0.91688-1.5694-1.4419-0.0656-0.525 0.2625-2.1-0.26062-2.4919-0.525-0.39188-2.0288 0.0656-3.1388 0.72-1.1119 0.65625-1.3744 0.13312-1.635-0.4575-0.26249-0.59063 0.39188-0.7875 0.13125-1.1794-0.26249-0.39562-0.84937 0-1.3088 0.195-0.4575 0.195-1.5038 0.7875-3.5288 1.8356-2.0288 1.0481-1.8956 1.6369-1.8956 3.1462 0 1.5094 0.3975 1.7756 1.2469 3.7444z"/><path id="path226" fill="#d4af3a" d="m295.92 160.21c0.42563-0.27 1.1981-0.57938 1.1981-0.57938s0.96562-0.23062 1.8525-0.34875c0.88687-0.11625 0.73312-0.61875 0.53812-1.0406-0.19125-0.42938-0.53812-0.58125-1.6931-0.58125-1.1606 0-1.8956 0.58125-2.55 0.8475-0.65813 0.27187-1.4288 0.465-1.4288 0.465s0.15562 0.19312 0.57937 0.81187c0.42376 0.61875 1.08 0.6975 1.5038 0.42563z"/><path id="path228" fill="#d4af3a" d="m300.63 164.88c0.46312 0 0.96562-0.27187 0.96562-0.27187s0.84563-0.42563 1.6219-0.69375c0.77062-0.27188 1.08-0.38812 1.5412-1.3144 0.46313-0.92625-0.5025-0.92625-1.8506-1.2712-1.3519-0.3525-2.0081 0.1125-2.16 0.615-0.1575 0.5025-0.11813 1.08-0.65813 2.0475-0.54187 0.96562 0.075 0.88875 0.54 0.88875z"/><path id="path230" fill="#d4af3a" d="m300.21 166.08c-1.3106 0-2.7769 1.9688-3.3188 2.3156-0.54187 0.34688-0.2325 0.69375-0.2325 0.69375s0.38625 0.81188 0.53812 1.5825c0.15751 0.77438 0.19501 2.0869 0.19501 2.0869s0.19312 0.0788 0.96375 0.0788c0.77437 0 1.2356-0.38813 1.9706-0.92813s1.3125-0.735 2.355-0.92812c1.0444-0.19125 1.5431-0.38438 2.7-1.0012 1.1606-0.61688-0.61688-1.6988-1.8506-2.7019-1.2356-1.005-2.0044-1.1981-3.3206-1.1981z"/><path id="path232" fill="#d4af3a" d="m282.75 170.61c1.04-0.12 1.5-0.64 1.5-1.21 0-0.5775-0.525-1.2131-1.8488-1.0969-3.2531 0.28875-6.4069-0.8775-6.9881-4.1006 0 0-1.0969 2.0175 0.92438 4.2731 2.0212 2.2538 5.3719 2.2538 6.4106 2.1356z"/><path id="path234" fill="#d4af3a" d="m271.67 221.82c0.16501 0.28687 0.3675 0.465 0.57376 0.57187h4.9837c0.84938-0.23812 0.855-1.02 0.89626-1.56 0.0487-0.64313 0.54187-2.4694 1.2319-5.7825 0.69-3.3094 1.8731-5.6775 2.3644-7.0125 0.49125-1.335-0.49313-1.7775-0.83813-2.6194-0.345-0.83813-0.88688-2.3194-1.035-3.06-0.14812-0.7425-1.3294-0.64313-1.9706-0.59437-0.64125 0.0487-0.74063 1.0875-0.83813 2.0756-0.0975 0.98438-0.54187 3.9019-1.0331 6.4219-0.49313 2.52-3.3506 5.88-4.1381 6.6188-0.78937 0.74251-1.4288 1.0388-1.9706 1.0388-0.54188 0-1.7231 0-2.3156 0.34687-0.58875 0.34688-1.1794 1.2862-1.23 2.0231-0.0488 0.7425 1.1344 1.1381 1.1344 1.1381s0.93562-0.54375 1.2806-0.98813c0.345-0.44437 1.1325-0.54375 1.92-0.69 0.7875-0.14812 0.88688 0.14626 0.59063 0.54-0.29625 0.39188-0.19875 0.49313 0.39375 1.5319z"/><path id="path236" fill="#d4af3a" d="m264.03 221.58c-0.37687 0.13313-0.6525 0.50813-0.82312 0.81937h3.2569c-0.0394-0.26625-0.1275-0.58312-0.315-0.81937-0.39375-0.495-1.4288-0.2475-2.1188 0z"/><path id="path238" fill="#d4af3a" d="m268.46 221.48c-0.3975 0.21563-0.8775 0.56813-1.1213 0.91688h3.5062c0.12375-0.32625 0.16313-0.76313-0.26625-1.1138-0.78937-0.64313-1.5769-0.0994-2.1187 0.19687z"/><path id="path240" fill="#d4af3a" d="m298.88 220.03c-0.3825 0-0.72187 0.34125-1.2731 0.72188-0.54938 0.3825-0.71813 0.97687-0.8025 1.4456-0.015 0.0825-0.006 0.14813 0.0206 0.2025h1.4888c0.0581-0.0525 0.0994-0.11999 0.0994-0.2025 0-0.4275 0.16875-0.81 0.80625-1.3612 0.63187-0.555 0.0394-0.80625-0.33938-0.80625z"/><path id="path242" fill="#d4af3a" d="m301.8 221.64c0-0.465-0.17063-0.89062-0.50812-0.8475-0.3375 0.0431-0.88875 0.6375-1.3538 0.97687-0.25876 0.18938-0.45188 0.44063-0.59438 0.63h2.2012c0.1275-0.2475 0.255-0.53437 0.255-0.75937z"/><path id="path244" fill="#d4af3a" d="m315.34 205.47c1.0556-0.765 0.88875-0.97688 0.92812-1.7831 0.0412-0.80812 0.0412-1.0612-0.38062-1.3575-0.42375-0.3-1.9875-0.97687-3.4688-0.97687-1.4812 0-4.2769 0.33937-5.3344 1.0594-1.0594 0.72375-1.5675 3.3131-1.5675 4.6688 0 1.3556 0.21188 1.5712 0.5925 1.5712 0.38063 0 1.0162-0.97687 1.0162-0.97687s1.395 1.8262 2.2425 3.1012c0.84749 1.2731 0.46499 1.7812 0.0881 2.7562-0.3825 0.97687-1.7775 3.5662-2.8781 4.1194-1.1044 0.55313-1.95 0.0394-3.2606-0.16875-1.3106-0.21375-2.0325 0.16875-2.7938 0.93188-0.76125 0.76312-0.0394 1.3612 0.42375 1.3612 0.46687 0 1.1006-0.0431 1.6088 0.5925 0.3525 0.44062 0.11437 1.4475-0.0637 2.0288h6.4856c1.1063-0.49125 1.8694-2.01 2.1675-2.8388 0.34125-0.93188 1.7362-2.1619 2.415-2.7975 0.67501-0.63938 0.76126-1.0631 0.76126-2.4638 0-1.4006-0.38063-2.2069-0.8925-3.1819-0.50813-0.97687-0.88875-2.3794-0.72-3.1838 0.1725-0.80812 1.5712-1.7006 2.6306-2.4619z"/><path id="path246" fill="#d4af3a" d="m304.66 189.28c0.64875 1.0538 0.32625 1.2544-0.60563 1.455-0.92812 0.2025-1.9369 0.36375-3.3956 0.24375-1.4531-0.12187-1.4156 0.0806-1.4531 0.81-0.0394 0.7275-0.165 2.265-1.0125 3.3956-0.84937 1.1325-1.9012 0.68812-2.5481 0.24375-0.64688-0.44438-1.0106-0.32625-1.2525 0.48375-0.24188 0.81-0.68813 1.3762-1.3744 2.5875-0.68812 1.2131-1.1325 1.2544-1.6181 1.1325-0.48563-0.12188-0.93-0.84938-1.4156-0.89063-0.48562-0.0413-1.2544-1.0088-1.9819-2.1844-0.7275-1.17-1.0912 0.12-1.575 1.1344-0.4875 1.0088-0.96938 1.74-1.9012 1.6144-0.93-0.11813-1.98-1.8581-2.505-2.91-0.52688-1.0538-0.84938-2.0625-1.6575-2.0231-0.80813 0.0412-2.1431 1.74-3.0338 2.1825-0.89063 0.44625-1.1325 0.285-1.5356-0.27937-0.40312-0.56625-0.93 0.2025-1.455 1.5356-0.525 1.335 0.0412 2.4638 0.76875 2.8294 0.7275 0.36375 2.1825-0.68813 3.1538-1.335 0.96938-0.645 1.4138-0.48375 2.4262-0.48375 1.0106 0 0.93 1.6594 1.3744 4.0819 0.44437 2.4262 1.86 2.7506 1.86 2.7506s0.48562 0.405 1.5769-1.4531c1.0912-1.86 1.2112-3.6806 2.265-3.6806 1.05 0 1.1325 0.24187 2.1825 1.6969 1.0519 1.455 1.9406 2.5462 2.5462 1.455 0.60563-1.0931 1.1325-2.7094 1.8206-3.2738 0.68625-0.56812 1.3331-0.72937 0.60562 0.3225-0.72937 1.0519-1.0519 2.1825 0.44438 1.74 1.4962-0.4425 7.1962-2.7506 9.5006-3.1931 0 0 2.7075-0.44438 5.8219-0.60563 3.1125-0.165 3.8794-0.36562 5.0944-0.36562 1.2112 0 1.2525-0.12188 1.335-0.93 0.0788-0.81-0.56625-0.64687-2.8312-0.64687-2.2631 0-3.8419 0.28312-5.4187 0.52687-1.5769 0.24188-2.3025 0.20062-2.0231-0.2025 0.285-0.405 0.72937-0.68813 2.55-0.96938 1.8169-0.28312 5.5388-0.4875 7.4794-0.52687 1.9388-0.0394 1.3331 0.56625 1.17 1.86-0.16312 1.2919 0.16313 3.195 0.285 4.4081 0.11813 1.2113 0.15938 1.5769 1.2112 3.2738 1.0519 1.6969 4.6875 2.7506 5.7412 3.3169 1.0519 0.56625 0.89063 0 0.84938-1.0125-0.0413-1.0088 0.80812-0.96938 1.7381-0.44438 0.92813 0.52875 2.4656 0.97313 3.5569 1.2562 1.0912 0.27938 1.2525 0.48375 1.2525 1.05 0 0.56626 0.12187 1.8206 0.24562 2.9944 0.11813 1.1719 0.0788 1.5338-0.40687 2.2631-0.48563 0.72938-2.5462 2.8275-2.5462 2.8275s-0.93 0-2.9119 0.48938c-1.9819 0.48562-2.5894 1.4156-2.79 2.2238-0.20062 0.80812 0.36563 1.0519 0.44625 1.3744 0.0431 0.17813 0.0263 0.615 0.002 0.97125h0.4575c0.16687-0.28312 0.40312-0.65437 0.71062-1.0538 0.69-0.88875 2.43-1.0912 3.5588-0.56625 0.7425 0.34688 0.75188 1.1231 0.67313 1.6181h4.5281c0.61125-1.1794 2.0606-3.9994 2.4412-4.8544 0.48375-1.0894 0.76688-1.7775 0.80813-3.2738 0.0413-1.4962 0.20062-7.2769-0.0806-7.6012-0.28312-0.32437 0.0806-1.2937 0-2.9119-0.0825-1.6162 0-2.8312-2.9925-3.1125-2.9944-0.28312-3.9225-1.5338-4.9331-2.5481-1.0144-1.0087-0.76875-3.3544-1.575-6.1838-0.81-2.8294-2.79-3.2756-6.3075-3.9638-3.5194-0.68437-6.1069-0.76687-8.7338-0.52312s-5.9006 0.6075-7.7212 0.4425c-1.8169-0.16312-1.5338 0.36187-0.88875 1.4119z"/><path id="path248" fill="#d4af3a" d="m321.66 221.75c-0.3075 0.19875-0.51187 0.435-0.64875 0.64125h3.0562c0.015-0.2625-0.0281-0.55687-0.3-0.885-0.465-0.56062-1.3612-0.24187-2.1075 0.24375z"/><path id="path250" fill="#d4af3a" d="m327.13 221.55c-0.49688 0.25125-0.8175 0.57375-1.0144 0.8475h3.0994c0.0113-0.11813 0.008-0.24188-0.0169-0.35813-0.0919-0.48937-1.0256-1.0125-2.0681-0.48937z"/><path id="path252" fill="#d4af3a" d="m250.79 223.48c0.1725 0.96 0.3975 1.9331 0.67687 2.9119h97.097c0.27938-0.97688 0.50625-1.9519 0.675-2.9119h-98.449z"/><path id="path254" fill="#d4af3a" d="m316.21 177.1c3.0675 2.0419 12.806 2.1506 17.379 3.0675 4.5731 0.91312 4.2544 4.4119 2.8519 6.24-1.3988 1.8319-7.8319 2.0512-8.985 2.205 0.6225 0.43125 1.56 1.7756 1.56 1.7756s0.70125-0.0506 2.6362-0.21562c1.935-0.15937 5.3269-0.64313 7.6406-2.5819 2.3138-1.935 2.1506-5.055 0.10875-7.1531-2.0456-2.1-5.4356-2.3138-8.88-2.6906-3.4425-0.37688-6.1331-0.64688-10.007-1.2919-3.8719-0.645-5.7562-2.205-5.7562-4.4662 0-2.2594 2.1-3.4425 3.6056-3.8738 1.5056-0.42937 3.9262-1.0725 6.0788-0.27 2.1525 0.80812 4.6819 0.91312 8.9325 0.37875 4.2525-0.54 5.22-3.4988 5.22-3.4988s-0.54 0.27-2.6906 0.3225c-2.1525 0.0525-3.7144-0.91313-7.6388-0.97125-3.9319-0.0525-5.3306 1.35-7.1588 1.9931-1.83 0.64688-6.7238 1.1325-8.1769 4.305s0.21562 4.68 3.2794 6.7256z"/><ellipse id="ellipse256" d="m 316.01301,150.636 c 0,0.5313 -0.43742,0.962 -0.977,0.962 -0.53958,0 -0.977,-0.4307 -0.977,-0.962 0,-0.5313 0.43742,-0.962 0.977,-0.962 0.53958,0 0.977,0.4307 0.977,0.962 z" rx=".977" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="0.962" cy="150.64" cx="315.04" fill="#b96b29"/><path id="path258" fill="#b96b29" d="m330.04 165.53c-2.4244-0.21375-5.5988 0.42938-5.5988 0.42938s0.59062 0.48562 1.3988 0.43125c0.80625-0.0544 2.2612-0.10876 4.6275 0.32062 2.3681 0.43313 4.0894-0.69937 4.0894-0.69937s-2.0981-0.26625-4.5169-0.48188z"/><path id="path260" fill="#d4af3a" d="m407.91 274.36c1.9463 0.44813 17.948 3.5138 19.294 3.8138 1.3481 0.29625 2.4675 0.59625 2.8425 0.22125 0.37688-0.37125 0.59813-0.59625 2.0194-1.1231 1.4212-0.51938 1.3481-1.9425 1.3481-1.9425s0.37313-1.3481 0.51938-2.6925c0.15187-1.3444 0.9-1.7944 2.4694-0.14813 1.5712 1.6425 1.8694 4.035 2.1675 6.3562 0.3 2.3175 3.9656 2.9156 5.3831 3.1406 1.4231 0.225 2.0925-0.225 2.9175-1.5694 0.82312-1.3462 1.2731-4.0388 1.4962-5.76 0.22313-1.7175 0.0769-1.5694-1.7194-2.0175-1.7944-0.44625-10.095-2.3156-11.593-2.6944-1.4925-0.37313-1.1944-1.3444-0.97125-2.3906 0.22313-1.0462 3.5138-11.593 3.5138-11.593-2.3419-1.4475-5.6325-2.31-9.57-2.7656 0 0-2.3925 10.766-2.8444 12.414-0.44625 1.6425-1.4962 1.6425-3.2138 1.3425-1.7212-0.29625-14.136-3.21-14.136-3.21l-0.96937 2.3138c-0.97313 2.3175-1.4213 5.0869-1.4213 6.5062 0 1.4194 0.52501 1.35 2.4675 1.7981z"/><path id="path262" fill="#d4af3a" d="m450.38 284.09c-1.65-1.0781-2.8631-1.3631-3.7219 0.64499-0.86062 2.0081-0.93 4.95-3.0788 7.0275-2.1488 2.0794-5.1562 4.23-8.1638 4.0162-3.0056-0.21562-4.725-0.93374-4.0106-4.3744 0.71812-3.4406 5.3006-4.5169 6.3731-6.3094s0.7875-3.8719-0.78937-5.2331c-1.575-1.365-3.8662-1.65-4.5094-1.2188-0.64312 0.42937-2.5069 2.0081-3.435 4.5862-0.93187 2.5819-1.5038 4.6612-3.51 6.3112-2.0006 1.6481-7.1569 3.2981-11.166 2.3644-4.0088-0.93187-5.4394-2.1506-6.945-6.0938-1.5038-3.9431-3.2925-10.466-4.0819-11.184-0.78562-0.71625-1.7888-1.29-3.5062-0.0731-1.7194 1.2169-1.8619 3.0112-2.0756 4.4475-0.21563 1.4325 0 3.0862 1.7156 5.1638 1.7194 2.0775 3.51 4.1569 4.155 6.3056 0.645 2.1506 2.5762 5.4506-0.14437 5.5931-2.7188 0.1425-3.9356 0.21375-6.0131-1.7906-2.0756-2.0081-10.168-7.53-12.384-9.3244-2.22-1.7925-3.15-2.3644-3.15-2.3644-3.7444-0.0656-7.4944-1.605-11.239-4.1569 0 0 2.1488 5.5181 2.5762 7.5975 0.42937 2.0794 0.35812 3.225 0.35812 3.225s8.16 4.1588 11.383 5.7375c3.2212 1.5769 9.735 5.3062 12.883 7.2394 3.1538 1.9388 5.8012 4.95 11.385 3.8025 5.5856-1.1475 16.894-4.5881 20.544-5.6644 3.6525-1.0762 13.748-3.585 17.469-6.165 3.7219-2.58 4.0819-2.4375 4.7231-5.0194 0.65062-2.58 0.002-4.0162-1.6425-5.0906z"/><path id="path264" fill="#d4af3a" d="m428.83 245.48c0.62062-0.0825 0.87-0.16687 2.7731-0.41437 1.9069-0.25125 1.2 1.575 0.86812 2.28-0.33 0.70312-0.90937 2.1131-1.6931 3.4388-0.79125 1.3312 0.24562 1.5375 0.78375 1.7438 0.53812 0.21 1.3238 0.29062 2.8556 0.70687 1.5338 0.4125 1.2412-0.70687 1.2844-1.2862 0.0412-0.58312 0.12187-3.6094 0.29062-4.6856 0.165-1.0762 1.1569-0.7875 1.53-0.58125 0.37313 0.20625 1.3238 0.7425 2.1131 1.1569 0.78375 0.42 1.1569-0.0394 1.3238-0.495 0.16687-0.45562 0.53625-1.2844 0.87-2.4881 0.33187-1.2019-0.41438-0.95438-1.1625-0.95438-0.7425 0-1.8206 0-3.0619-0.0394-1.2412-0.0413-0.45562-1.245-0.45562-1.245s0.91125-1.4906 1.6144-2.6119c0.705-1.1194 0.4575-1.2844-0.24938-1.4944-0.70125-0.20813-2.8969-0.705-3.5175-0.87-0.62063-0.16313-0.90938-0.0825-0.90938 0.33375s-0.0844 2.5688-0.0844 3.3994c0 0.82688-0.0806 1.3256-1.1588 1.3669-1.0762 0.0394-1.74-0.585-2.6081-1.5356-0.87-0.95062-1.2412-0.57937-1.3256-0.20437-0.0825 0.37312-0.78749 3.1088-0.95249 3.855-0.16501 0.74625 0.25124 0.70687 0.87187 0.62437z"/><path id="path266" fill="#d4af3a" d="m366.66 275.83c-1.2112-1.2675 1.8675-1.3162 3.6881-1.3162 1.8188 0 4.7981-0.96375 5.7563-1.5694 0.96187-0.6075 2.6269-0.91312 4.5956-1.875 1.9725-0.96563 0.7575-1.2694-1.26-1.7719-2.0212-0.50813-7.425-2.7862-7.425-2.7862s-2.625 1.4194-4.0912 2.28c-1.4644 0.8625-3.435 2.0756-6.6169 2.4806s-4.1419 0.55875-4.2938 0.66c-0.15001 0.10125 0.75937 0.86063 1.9706 2.5838 1.2131 1.7231 1.7175 2.8369 3.2344 5.4206 1.515 2.5856-0.25312 1.065-1.5169-0.55687-0.71062-0.91125-2.3025-3.0694-3.7819-4.6012-1.1475-1.1962-2.3306-1.935-2.3306-1.935l-1.0088 2.1788v0.75938c0 0.71062-0.60563 4.2056-0.80813 5.6231-0.2025 1.4212 0.3525 1.4212 1.4625 1.9256 1.1119 0.50813 3.3319 1.7719 9.2962 5.52 5.9588 3.7481 8.1788 6.2306 8.1788 6.2306s0.20063-1.6219 0.20063-3.2419c0-1.6181-0.0506-4.9125-1.3631-8.6119-1.3106-3.6975-2.6738-6.1294-3.8869-7.3969z"/><path id="path268" fill="#d4af3a" d="m352.83 267.55c1.395 0.28125 1.9556 0.63188 3.9131 0.63188s2.7956-0.63188 4.8225-0.63188c2.0288 0 3.4275-0.69937 6.7125-2.445 3.285-1.7494 0.13875-1.26-2.1656-1.0519-2.31 0.20812-8.3212-0.6975-10.909-1.68-2.5856-0.97688-0.69562-1.1175 0-0.90938 0.70125 0.21188 1.0519 0.42375 6.2231 1.3312 5.175 0.90938 7.0631-0.27937 9.7181-0.97687 2.6606-0.70313-0.62625-1.0481-0.62625-1.0481s-9.3712-2.6588-14.057-7.9031c-3.5794-4.0106-4.7925-7.695-5.1656-9.2062-1.8338 2.1825-3.8756 4.0781-6.0169 5.7431 0.16687 0.72563 0.48562 1.9238 0.97687 3.0412 0.76875 1.7512 3.0056 4.0575 3.0056 4.0575s-2.7975-1.1212-4.0538-2.4488c-0.86438-0.91125-1.6294-2.3175-2.0231-3.1106-3.075 2.1412-6.2512 3.8475-9.1781 5.2556 0.35062 0.27938 0.78375 0.63938 1.2731 1.0706 1.2562 1.1194 2.445 2.5875 4.0538 5.1731 1.6069 2.5894 0.13875 2.3812-1.3294 0-1.4681-2.3756-5.1038-4.8225-5.8031-5.1731-0.0806-0.0394-0.17625-0.0713-0.27375-0.0975-0.37312 0.1725-0.7425 0.33937-1.1062 0.5025-1.9819 0.88687-3.855 1.68-5.64 2.4281 1.1981 0.96938 3.9731 3.6788 4.9219 5.07 1.0519 1.5375 3.2156 2.9362 3.99 3.9844 0.765 1.0481 1.605 2.235 2.6531 3.495 1.0519 1.2581 7.3425 8.3212 9.0206 10.976 1.68 2.6569 0.6975-0.69938 0.27937-2.5162-0.42-1.8188-1.0519-4.4062-1.6069-6.435-0.56063-2.0269 0.62812-1.1888 0.83812-0.0694s0.48938 1.1888 0.97875 3.3562c0.48938 2.1656 1.7456 5.3831 2.3062 7.62 0.55688 2.235 0.76875 1.1888 1.3275 0.14063 0.56063-1.05 1.3969-2.8688 1.7475-3.9881 0.35063-1.1175 0.63-3.6338 0.69938-7.4794 0.0694-3.8438-1.8169-5.3831-1.8169-5.9438 0-0.54938 0.90938-1.0406 2.31-0.76313z"/><path id="path270" fill="#d4af3a" d="m379.78 275.89c-0.56625 0.24938-2.4488 0.88313-3.3225 1.0069-0.88125 0.12563-1.5056 0.1875-1.5056 0.1875s1.7569 2.4544 4.3912 2.4544h7.5844s-4.5769-2.7038-5.1431-3.3319c-0.5625-0.63375-1.4419-0.57-2.0044-0.31688z"/><path id="path272" fill="#d4af3a" d="m434.84 272.64s-0.0769 2.1694-0.3 2.9156c-0.225 0.75-0.74625 1.8712 0.15 2.1694 0.89813 0.3 1.7194 0.67125 2.2388 0.52312 0.52688-0.14812 0.3-1.1962 0-2.0925-0.29625-0.89813-0.74437-2.0212-1.4194-2.7675-0.66937-0.74812-0.66937-0.74812-0.66937-0.74812z"/><path id="path274" fill="#d4af3a" d="m447.99 281.31c0.3 0.67125 0.89813 0.82125 1.3481 0.97312 0.44812 0.14813 1.0481 0.14813 1.0481-0.67312s0.14813-1.8694-0.52125-2.7675c-0.67313-0.89813-1.0312-1.5525-1.4212-0.225-0.39563 1.3275-0.75188 2.0194-0.45375 2.6925z"/><path id="path276" fill="#d4af3a" d="m402.15 272.56c0.37313 0.075 1.7944 0.52312 1.7944 0.52312s0-2.0944 0.29813-3.5156c0.29812-1.4175 0.89812-2.3906 0.375-2.3906-0.52313 0-0.82125 0.44812-1.2 1.0462-0.37125 0.59625-1.4212 0.74812-1.7925 2.4675-0.37313 1.7212 0.15187 1.7962 0.525 1.8694z"/><path id="path278" fill="#b96b29" d="m221.08 213.51c-1.5038 1.14-3.4744 1.6069-3.4744 1.6069s-0.93375-0.0488-0.93375 0.31313c0 0.36187 1.0894 0 2.2294-0.20626 1.14-0.20812 2.6962-1.35 3.2662-1.7644 0.57-0.41625 1.4006-0.93562 1.14-1.6631-0.25876-0.7275-0.72563 0.57188-2.2275 1.7138z"/><path id="path280" fill="#b96b29" d="m233.99 220.42c-0.31124 0.36-2.7994 2.2312-2.7994 2.2312s-0.77813 0.5175-1.6088 0.82875c-0.82875 0.31313-1.035 0.78188-1.035 0.78188s0.15562 0.20437 1.035-0.0506c0.88125-0.2625 3.4762-2.0794 4.3031-2.8069 0.82875-0.72938 1.1944-0.93375 0.88313-1.245-0.30938-0.31125-0.465-0.10313-0.77813 0.26062z"/><path id="path282" fill="#b96b29" d="m181.62 127.36c0.465 0.56625 1.0312 1.3406 1.29 1.0819 0.25875-0.25687-0.0525-0.51563-0.67125-1.2394-0.61875-0.72187-0.97875-1.0838-0.97875-1.0838s-0.87563-1.395-1.3931-1.9125c-0.51562-0.51562-1.29-0.77437-0.30937 0.4125 0.98062 1.1906 1.5994 2.1712 2.0625 2.7412z"/><path id="path284" fill="#b96b29" d="m177.65 136.09c0.56625 0.51937 1.0819 0.98062 1.7006 1.6519 0.61875 0.67124 1.0838 1.3931 1.4438 1.0331 0.36187-0.36188-0.92813-1.1344-1.4944-1.86-0.56812-0.72375-1.0312-1.1869-1.755-1.755-0.72375-0.56812-1.5994-1.0331-1.5994-1.0331s1.1362 1.4475 1.7044 1.9631z"/><path id="path286" fill="#b96b29" d="m179.14 150.16c0.98438 1.0369 2.4356 1.3481 2.6438 0.93562 0.20813-0.41625-0.10312-0.75-0.93-1.1625-0.82312-0.4125-2.1656-1.29-2.8369-1.755-0.66938-0.46687-1.3406-0.9825-1.8056-1.4456-0.46312-0.465-1.0125-0.88313-1.185-0.72563-0.1725 0.15938 1.3669 1.815 1.8319 2.0756 0.46687 0.25875 1.2975 1.0388 2.2819 2.0775z"/><path id="path288" fill="#b96b29" d="m181.99 161.43c0-0.41437 0.10125-0.62062-0.72751-0.675-0.82874-0.0506-1.9706-0.20437-1.9706-0.20437s-1.6069-0.62438-1.7119-0.31313c-0.10312 0.31313 1.3481 0.9375 1.9706 1.0406 0.6225 0.105 1.3988 0.31125 1.7606 0.51563 0.36563 0.20625 0.67875 0.0488 0.67875-0.36375z"/><path id="path290" fill="#b96b29" d="m183.23 173.68c-1.7606 0-3.2662-0.41813-3.3694-0.1575-0.10313 0.26062 0.82875 0.67687 1.7119 0.98625 0.88313 0.31312 2.5425 0.41625 3.6825 0.46687 1.14 0.0506 1.3481-0.20625 1.2956-0.77625-0.0525-0.57375-1.5562-0.51937-3.3206-0.51937z"/><path id="path292" fill="#b96b29" d="m197.02 187.08c-0.25875-0.25875-0.88125-0.0506-1.8675 0.15563-0.9825 0.21-2.5912 0.52125-3.525 0.47063-0.93375-0.0506-2.955-0.10501-2.955-0.10501s-1.14 0-1.14 0.25876c0 0.26062 1.5019 0.20812 3.6806 0.46687 2.1769 0.26063 3.6281-0.20625 4.665-0.36375 1.0388-0.15562 1.4025-0.62062 1.1419-0.88313z"/><path id="path294" fill="#b96b29" d="m202.73 196.64c-1.0894 0.41625-1.8656 0.5175-2.6962 0.5175-0.82875 0-2.7994 0.36375-2.7994 0.36375s-0.93375 0.105-0.77813 0.46875c0.15563 0.36187 0.46688 0 1.2938-0.105 0.83063-0.105 1.4531 0 2.9044-0.0506 1.4512-0.0525 2.2819-0.41812 3.1631-0.57187 0.88125-0.1575 1.8656-0.62438 1.4006-1.1962-0.46688-0.56813-1.3988 0.1575-2.4881 0.57375z"/><path id="path296" fill="#b96b29" d="m213.82 203.85c-0.6225 0.62438-3.0075 2.2331-3.0075 2.2331s-0.46687 0.36375-1.4006 0.83062c-0.93375 0.46688-0.88125 0.67688-0.72563 0.93563 0.15563 0.25875 0.72563-0.36375 1.2431-0.57188 0.5175-0.20812 2.2294-1.3538 3.1106-2.0756 0.88125-0.73125 2.0212-1.3012 1.8131-1.8188-0.20437-0.51938-0.41063-0.15375-1.0331 0.46687z"/><path id="path298" fill="#b96b29" d="m195.36 110.38s0.20625 0.47438 2.1206 2.8706c1.9162 2.3944 0.89063 0.135 0.41063-0.47625-0.48-0.61875-3.2831-4.5825-4.2412-5.6794-0.95625-1.095-1.0931-0.5475-0.615 0.135 0.48 0.68438 2.325 3.15 2.325 3.15z"/><path id="path300" fill="#b96b29" d="m191.32 122.69c0.27375-0.27376-0.34312-0.5475-1.4362-1.9144-1.095-1.3688-3.2831-4.1719-3.2831-4.1719s-0.61688-1.2994-0.82125-1.1644c-0.20438 0.13687 0.75187 2.1881 1.6406 3.0806 0.89063 0.88874 2.0512 2.5987 2.6681 3.3506 0.61687 0.75187 0.95812 1.0931 1.2319 0.81937z"/><path id="path302" fill="#b96b29" d="m196.63 145.75c0-0.66937-2.1656-0.56812-3.1444-0.77437-0.98063-0.20625-2.7338-0.56812-2.7338-0.56812s-2.0644-0.36188-2.115-0.10313c-0.0525 0.255 0.4125 0.51375 1.5469 0.72375 1.1344 0.20437 2.8369 0.72188 4.1269 0.92812 1.29 0.20625 2.3194 0.46688 2.3194-0.20624z"/><path id="path304" fill="#b96b29" d="m191.32 133.29c1.4362 1.1625 2.3925 1.71 3.1462 2.1206 0.75188 0.40875 1.3669 1.0275 1.7794 0.5475 0.41062-0.48188-0.34313-0.82125-1.5731-1.3688-1.2319-0.5475-1.8469-1.0256-1.8469-1.0256s-0.68438-0.34126-1.3012-0.68438c-0.61688-0.34125-1.6425-0.75187-0.20438 0.41063z"/><path id="path306" fill="#b96b29" d="m203.7 125.08c-0.89062-0.75187-1.6425-1.1662-1.6425-1.1662s-1.0931-1.0256-1.2994-0.68437c-0.20437 0.34499 1.23 1.3687 1.9144 1.9838 0.68437 0.61687 1.9162 2.3962 2.5312 2.0531 0.615-0.34125-0.61688-1.4344-1.5038-2.1862z"/><path id="path308" fill="#b96b29" d="m195.62 157.22s-1.1944 0.30938-1.9706 0.5175c-0.77625 0.20813-0.82875 0.57375 0.57187 0.57375s1.9706-0.36375 3.3694-0.62625c1.4006-0.25875 1.8694-0.41437 1.6594-0.88125-0.20625-0.46875-0.93375-0.31125-1.5038-0.15562-0.57 0.15562-2.1262 0.57187-2.1262 0.57187z"/><path id="path310" fill="#b96b29" d="m197.8 168.85c-0.10313 0.26251 0.98437 0 1.71-0.25874 0.72562-0.26063 2.2294-1.0369 3.1106-1.2975 0.88312-0.25876 0.88312-0.41625 0.88312-0.93563 0-0.5175-0.93562-0.105-2.0738 0.26063-1.14 0.36375-2.5931 1.5075-2.5931 1.5075s-0.93375 0.46501-1.0369 0.72375z"/><path id="path312" fill="#b96b29" d="m212.78 175.92c1.0388-0.62625 1.2469-1.0912 0.88125-1.4044-0.36187-0.30938-0.67312-0.25875-1.5019 0.41625-0.83063 0.675-2.4375 1.8169-2.4375 1.8169s-0.82875 0.31313-1.4512 0.62438c-0.6225 0.31125-1.4006 0.83062-1.1925 1.1419 0.20625 0.31125 1.5038 0 2.1769-0.57187 0.67501-0.57 2.49-1.4025 3.525-2.0231z"/><path id="path314" fill="#b96b29" d="m219.84 185.26c0.41438-0.36562 1.6575-0.77625 2.2294-1.1944 0.57-0.41625 0.93375-1.6612 0.46687-1.8169-0.46687-0.15562-0.72562 0.5175-1.71 1.2431-0.98625 0.72937-4.3556 2.9606-4.3556 2.9606s0.0506 0-0.88313 0.36375c-0.93375 0.36188-0.5175 0.62438 0.26063 0.51938 0.77813-0.10688 1.2956-0.10688 2.2294-0.82875 0.93188-0.7275 1.3462-0.88313 1.7625-1.2469z"/><path id="path316" fill="#b96b29" d="m230.31 194.14c0.88312-0.36187 2.1788-1.5056 2.8012-2.0738 0.62062-0.57375 1.3988-1.2994 0.93375-1.6631-0.46875-0.36188-0.98438 0.10499-1.7119 0.77625-0.72562 0.67687-2.6456 2.7019-2.6456 2.7019s-0.25875 0.0506-1.2956 0.88313c-1.0369 0.82875 0.0525 0.67312 0.41438 0.31125 0.36375-0.36188 0.62437-0.57188 1.5038-0.93563z"/><path id="path318" fill="#b96b29" d="m382.39 215.12s-1.9706-0.46687-3.4762-1.6069c-1.5019-1.1419-1.9688-2.4412-2.2275-1.7138-0.25875 0.72751 0.57188 1.2469 1.1419 1.6631 0.56812 0.41625 2.1244 1.5562 3.2644 1.7644 1.1419 0.20626 2.2275 0.57001 2.2275 0.20626 0-0.36376-0.93-0.31313-0.93-0.31313z"/><path id="path320" fill="#b96b29" d="m370.42 223.48c-0.83063-0.31125-1.6069-0.82875-1.6069-0.82875s-2.4862-1.8712-2.7994-2.2312c-0.30938-0.36187-0.46688-0.57187-0.78001-0.26062-0.30937 0.31125 0.0525 0.51563 0.88688 1.245 0.825 0.7275 3.42 2.5444 4.3012 2.8069 0.88125 0.25687 1.0369 0.0506 1.0369 0.0506s-0.21-0.46875-1.0388-0.78188z"/><path id="path322" fill="#b96b29" d="m418.37 127.36c0.465-0.57 1.0837-1.5506 2.0662-2.7394 0.97688-1.1869 0.20813-0.92812-0.30937-0.4125-0.51562 0.5175-1.3912 1.9125-1.3912 1.9125s-0.36375 0.36-0.97875 1.0838c-0.62062 0.72375-0.93 0.9825-0.67312 1.2394 0.25687 0.25687 0.825-0.5175 1.2862-1.0838z"/><path id="path324" fill="#b96b29" d="m419.2 138.78c0.35813 0.36 0.82313-0.36187 1.4456-1.0331 0.615-0.67125 1.1325-1.1325 1.6987-1.6519 0.56813-0.51562 1.7006-1.9631 1.7006-1.9631s-0.87562 0.465-1.5994 1.0331c-0.72188 0.56813-1.1869 1.0312-1.7531 1.755-0.5625 0.72376-1.8544 1.4962-1.4925 1.86z"/><path id="path326" fill="#b96b29" d="m424.98 146.01c-0.17625-0.1575-0.72563 0.26063-1.1888 0.72563-0.465 0.46312-1.1344 0.97875-1.8056 1.4456-0.67125 0.465-2.0119 1.3425-2.8369 1.755s-1.1362 0.74625-0.93187 1.1625c0.20812 0.4125 1.6612 0.10125 2.6456-0.93562 0.98437-1.0388 1.815-1.8188 2.2819-2.0756 0.46875-0.26251 2.0062-1.9181 1.8356-2.0775z"/><path id="path328" fill="#b96b29" d="m420.71 160.55s-1.14 0.15375-1.9706 0.20438c-0.82687 0.0544-0.72562 0.2625-0.72562 0.675s0.31125 0.57188 0.67313 0.36187c0.36374-0.20437 1.14-0.4125 1.7606-0.51562 0.6225-0.10313 2.0738-0.7275 1.9725-1.0406-0.10313-0.30937-1.71 0.315-1.71 0.315z"/><path id="path330" fill="#b96b29" d="m416.77 173.68c-1.7587 0-3.2625-0.0544-3.3169 0.51937-0.0506 0.57001 0.15562 0.82688 1.2956 0.77625 1.14-0.0506 2.8013-0.15374 3.6806-0.46687 0.87937-0.30938 1.8169-0.7275 1.7138-0.98625-0.10313-0.26062-1.6088 0.1575-3.3731 0.1575z"/><path id="path332" fill="#b96b29" d="m411.33 187.6s-2.025 0.0525-2.9569 0.105c-0.93374 0.0506-2.5388-0.26063-3.5288-0.47063-0.98062-0.20625-1.605-0.41437-1.8638-0.15562-0.26062 0.2625 0.10313 0.7275 1.14 0.88312 1.0369 0.15751 2.4881 0.62438 4.6669 0.36375 2.1769-0.25875 3.6806-0.20624 3.6806-0.46687 0-0.25875-1.1381-0.25875-1.1381-0.25875z"/><path id="path334" fill="#b96b29" d="m402.77 197.52s-1.9706-0.36374-2.7956-0.36374c-0.83062 0-1.6088-0.10313-2.6981-0.51751-1.0894-0.41437-2.0212-1.1419-2.4881-0.57187-0.46687 0.57 0.5175 1.0388 1.3988 1.1962 0.88312 0.15375 1.7119 0.5175 3.1631 0.57188 1.4512 0.0506 2.0756-0.0525 2.9062 0.0506 0.83063 0.10313 1.1381 0.46687 1.2938 0.105 0.15375-0.3675-0.78-0.47063-0.78-0.47063z"/><path id="path336" fill="#b96b29" d="m390.58 206.92c-0.93188-0.46687-1.4006-0.83062-1.4006-0.83062s-2.3831-1.6088-3.0075-2.2331c-0.62062-0.62062-0.82875-0.98437-1.0369-0.465-0.20625 0.51563 0.93375 1.0875 1.815 1.8188 0.88312 0.72375 2.5931 1.8675 3.1106 2.0756 0.5175 0.20625 1.0894 0.82875 1.2431 0.57187 0.1575-0.25875 0.20812-0.47062-0.72375-0.9375z"/><path id="path338" fill="#b96b29" d="m402.52 113.25c1.9144-2.3962 2.1188-2.8706 2.1188-2.8706s1.845-2.4656 2.3269-3.15c0.48-0.6825 0.34312-1.23-0.61688-0.135-0.95437 1.095-3.7612 5.0606-4.2394 5.6794-0.47812 0.61125-1.5075 2.8706 0.41062 0.47625z"/><path id="path340" fill="#b96b29" d="m414.22 115.43c-0.20438-0.135-0.81938 1.1644-0.81938 1.1644s-2.19 2.8031-3.2869 4.1719c-1.0912 1.3669-1.7062 1.6406-1.4344 1.9144 0.27375 0.27375 0.615-0.0694 1.23-0.82125 0.61312-0.75188 1.7794-2.4619 2.6681-3.3506 0.89063-0.88875 1.8469-2.94 1.6425-3.0788z"/><path id="path342" fill="#b96b29" d="m403.37 145.75c0 0.67125 1.0312 0.41438 2.3212 0.20625 1.2881-0.20625 2.9906-0.72375 4.125-0.92812 1.1344-0.20813 1.6012-0.46875 1.5469-0.72375-0.0488-0.26063-2.115 0.10312-2.115 0.10312s-1.755 0.36-2.7338 0.56813c-0.97875 0.20812-3.1444 0.105-3.1444 0.77437z"/><path id="path344" fill="#b96b29" d="m408.47 132.88c-0.61687 0.34312-1.2994 0.68438-1.2994 0.68438s-0.615 0.47812-1.8469 1.0256c-1.2281 0.5475-1.9838 0.88875-1.5731 1.3688 0.4125 0.47812 1.0275-0.13875 1.7794-0.5475 0.75-0.41063 1.71-0.95813 3.1462-2.1206 1.4325-1.1625 0.40875-0.75187-0.20625-0.41062z"/><path id="path346" fill="#b96b29" d="m394.79 127.27c0.615 0.34312 1.845-1.4362 2.5331-2.0531 0.68062-0.615 2.1188-1.6406 1.9144-1.9838-0.20625-0.34125-1.2994 0.68438-1.2994 0.68438s-0.75 0.41437-1.6406 1.1662c-0.89062 0.75187-2.1225 1.8431-1.5075 2.1862z"/><path id="path348" fill="#b96b29" d="m402.4 157.69c1.4006 0.2625 1.9725 0.62625 3.3731 0.62625 1.3969 0 1.3444-0.36375 0.56812-0.57375-0.77625-0.20999-1.9688-0.5175-1.9688-0.5175s-1.5562-0.41624-2.1262-0.57187c-0.57187-0.15563-1.2975-0.31312-1.5056 0.15563-0.20813 0.46687 0.26062 0.62249 1.6594 0.88124z"/><path id="path350" fill="#b96b29" d="m401.16 168.13s-1.4512-1.1419-2.5931-1.5075c-1.1419-0.36563-2.0738-0.77813-2.0738-0.26062 0 0.51937 0 0.67687 0.88312 0.93562 0.88125 0.2625 2.385 1.0388 3.1088 1.2975 0.72751 0.25875 1.8169 0.51937 1.7138 0.25875-0.105-0.25687-1.0388-0.72375-1.0388-0.72375z"/><path id="path352" fill="#b96b29" d="m391.72 177.37c-0.61876-0.31125-1.4494-0.62438-1.4494-0.62438s-1.6069-1.14-2.4356-1.8169c-0.83062-0.67312-1.14-0.72563-1.5037-0.41625-0.36375 0.31313-0.15563 0.77813 0.87937 1.4044 1.0406 0.62063 2.8519 1.4513 3.5288 2.0231 0.67125 0.57187 1.9706 0.88312 2.1769 0.57187 0.20625-0.31124-0.57188-0.83062-1.1962-1.1419z"/><path id="path354" fill="#b96b29" d="m384.41 186.82c-0.93187-0.36375-0.88125-0.36375-0.88125-0.36375s-3.3712-2.2312-4.3538-2.9606c-0.98437-0.72563-1.245-1.3988-1.71-1.2431-0.46875 0.15562-0.10687 1.4006 0.465 1.8169 0.56813 0.41813 1.8169 0.82688 2.2275 1.1944 0.41625 0.36375 0.83063 0.51937 1.7644 1.2488 0.93 0.72375 1.4512 0.72375 2.2294 0.82875 0.77813 0.10312 1.1925-0.15937 0.25875-0.52125z"/><path id="path356" fill="#b96b29" d="m371.61 194.77c-1.035-0.83062-1.2938-0.88312-1.2938-0.88312s-1.9181-2.025-2.6438-2.7019c-0.72938-0.67125-1.2431-1.1381-1.7119-0.77625-0.46687 0.36188 0.31125 1.0894 0.93188 1.6631 0.6225 0.57 1.9181 1.7119 2.7994 2.0738 0.88499 0.36375 1.14 0.57375 1.5037 0.93562 0.36375 0.36188 1.4512 0.5175 0.41438-0.31125z"/><path id="path358" fill="#d4af3a" d="m299.97 69.124c-7.0612 0.12-15.345-0.855-19.903-2.5519-1.62 0.35812-3.24 0.71438-4.86 1.0706 7.5131 2.8294 13.791 3.9262 24.763 4.0369 10.974-0.11062 17.25-1.2075 24.761-4.0369-1.62-0.35625-3.2419-0.7125-4.8619-1.0706-4.5562 1.6969-12.838 2.6719-19.899 2.5519z"/><path id="path360" fill="#d4af3a" d="m325.65 63.238c-0.56063-0.46688-3.7744-2.7581-4.6125-3.1762-0.83813-0.42188-0.18563-1.5412-0.045-2.0081 0.13875-0.46875 3.7725-1.4962 5.7769-2.01 2.0006-0.51375 1.6762-0.93562 1.6762-0.93562s-1.1662-1.3556-8.4338-2.1488c-7.2638-0.79312-20.025-0.6075-20.025-0.6075s-12.763-0.1875-20.031 0.6075c-7.2656 0.79312-8.43 2.1488-8.43 2.1488s-0.32625 0.42188 1.6781 0.93562c2.0025 0.51375 5.6344 1.5412 5.775 2.01 0.14063 0.46688 0.79313 1.5881-0.045 2.0081-0.83813 0.41812-4.0538 2.7094-4.6106 3.1762-0.55875 0.46875-0.60563 1.215 0.27937 1.2619 0.885 0.045 0.9 0.03187 3.3994-0.46875 7.4775-1.4869 14.516-1.9031 21.988-2.0062 7.4681 0.10312 14.505 0.51938 21.986 2.0062 2.4975 0.49875 2.5125 0.51375 3.3994 0.46875 0.8775-0.04687 0.83062-0.79312 0.27375-1.2619z"/><polygon id="polygon362" points="307.83 94.99 305.18 94.311 303.48 95.668 305.58 96.588" fill="#d4af3a" transform="matrix(1.875,0,0,1.875,-300,-120)"/><polygon id="polygon364" points="336.48 95.668 334.77 94.311 332.12 94.99 334.37 96.588" fill="#d4af3a" transform="matrix(1.875,0,0,1.875,-300,-120)"/><path id="path366" fill="#d4af3a" d="m317.38 66.324c-4.98-0.59-8.15-1.235-17.38-1.153-9.2288 0.08062-12.392 0.5625-17.381 1.1531 3.1406 1.26 8.22 1.8938 17.381 1.8938 9.165 0 14.242-0.63562 17.381-1.8938z"/><path id="path368" fill="#1d5e91" d="m307.02 210.72c-0.5925-0.93375-0.76312-0.84749-1.4438-0.25312-0.67687 0.5925-1.3594-1.4456-1.4438-2.7169-0.0844-1.2694 0.50813-5.1731 0.50813-5.1731s-3.3094 0.67875-5.0888 1.2712c-1.7794 0.59437-3.4762 0.765-4.9181 1.1062-1.4419 0.34125-2.205 0.675-2.9681 0.50813-0.76313-0.16876-2.3756-0.255-3.6469-0.255-1.2712 0-1.185 0.255-2.46 1.5262-1.2712 1.2694-1.6106 1.9481-2.6288 4.3256-1.0181 2.3719-1.3575 4.5769-1.695 7.4606-0.22312 1.8881-0.58875 3.1912-0.8175 3.87h15.202c0.18188-0.4875 0.41813-1.1006 0.62438-1.5544 0.3975-0.8775 1.2338-1.4344 1.8319-1.7138 0.59813-0.27937 1.1175-0.27937 1.3931-0.9525 0.2775-0.67875 1.0369-1.2375 1.8338-1.5956 0.79687-0.35813 2.19-0.15938 3.4669 0.19875 1.2731 0.35624 1.7119-0.5175 2.0681-0.99563 0.35812-0.47812 0.51937-1.155 1.1981-2.0288 0.67688-0.87937 0.16875-1.6762 0.16875-1.6762s-0.59062-0.42-1.185-1.3519z"/><path id="path370" fill="#1d5e91" d="m331.41 211.12c-0.19687-0.8775-0.11812-0.99375-0.6375-1.1175-0.5175-0.12-1.3931-0.2775-2.1488-0.59438-0.75562-0.31875-0.67687 1.7119-0.67687 1.7119s-1.7944 0.195-3.8231-0.0394c-2.0306-0.24-4.4194-2.07-5.2575-2.67-0.83437-0.59625-1.7531-1.95-1.7531-1.95s-0.6375 0.59625-1.275 0.95625-0.99563 1.6331-1.1138 2.9081c-0.12 1.275 1.4738 2.8256 1.5919 4.1006 0.12 1.2769-1.3931 3.825-2.1506 4.86-0.51563 0.71063-1.185 2.2238-1.5544 3.1069h7.34c0.15375-0.37688 0.405-0.85313 0.7875-1.2338 0.75375-0.7575 2.0325-0.91688 2.0325-0.91688s0-0.31875 0.2775-0.99375c0.27562-0.67687 1.035-1.4738 2.865-2.1919 1.8338-0.71625 4.0238-0.83625 4.0238-0.83625s0.87375-0.71625 1.5131-1.7119c0.63563-0.99937 0.15938-2.5125-0.0394-3.3881z"/><polygon id="polygon372" points="319.3 60.998 319.18 62.889 321.21 62.725 321.02 60.951 323.2 61.254 323.29 59.503 321 59.714 321.4 57.823 318.88 57.8 319.32 59.714 317.1 59.503 317.1 61.254" fill="#d4af3a" transform="matrix(1.875,0,0,1.875,-300,-120)"/><path id="path374" fill="#d4af3a" d="m306.77 3.3h-5.1112v-4.3594c-0.4875-0.099375-0.99-0.14812-1.5094-0.14812-0.4575 0-0.90188 0.039375-1.335 0.11812v4.3912h-5.2875c-0.18 0.5532-0.28 1.1438-0.28 1.7532 0 0.24938 0.0169 0.49688 0.0487 0.7425h13.689c0.0337-0.24562 0.0487-0.49312 0.0487-0.7425 0.004-0.61125-0.0919-1.2-0.27-1.755z"/><path id="path376" fill="#1d5e91" d="m300.15 11.31c3.0394 0 5.6194-1.7888 6.5344-4.2675h-13.07c0.91875 2.4806 3.4969 4.2675 6.5381 4.2675z"/><path id="path378" fill="#1d5e91" d="m302.97-0.66v2.9962h3.39c-0.70312-1.3238-1.9088-2.3906-3.39-2.9962z"/><path id="path380" fill="#1d5e91" d="m297.32-0.66c-1.4831 0.60562-2.6888 1.6725-3.3919 2.9962h3.3919v-2.9962z"/><path id="path382" fill="#b96b29" d="m304.06 54.96c-1.29-0.60938-4.1025-1.8112-4.1025-1.8112s-2.6738 1.3181-4.1269 2.0475c-1.4531 0.7275-1.2656 0.51562-1.7119 1.575-0.44625 1.0594 0.045 1.4344 0.67875 1.7156 0.63375 0.28312 5.2312 2.6362 5.2312 2.6362s4.5488-2.1169 5.6494-2.6362c1.1044-0.51562 0.89625-1.0331 0.58875-1.8356-0.30562-0.79688-0.91687-1.0781-2.2069-1.6912z"/><ellipse id="ellipse384" d="m 329.317,94.716003 c 0,1.142678 -0.96035,2.069 -2.145,2.069 -1.18465,0 -2.145,-0.926322 -2.145,-2.069 0,-1.142677 0.96035,-2.069 2.145,-2.069 1.18465,0 2.145,0.926323 2.145,2.069 z" rx="2.145" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="2.069" cy="94.716" cx="327.17" fill="#b96b29"/><ellipse id="ellipse386" d="m 314.92701,94.716003 c 0,1.142678 -0.9608,2.069 -2.146,2.069 -1.18521,0 -2.146,-0.926322 -2.146,-2.069 0,-1.142677 0.96079,-2.069 2.146,-2.069 1.1852,0 2.146,0.926323 2.146,2.069 z" rx="2.146" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="2.069" cy="94.716" cx="312.78" fill="#b96b29"/><polygon id="polygon388" points="319.98 92.889 317.64 94.027 320.04 95.249 322.41 94.027" fill="#d4af3a" transform="matrix(1.875,0,0,1.875,-300,-120)"/><ellipse id="ellipse390" d="m 328.465,94.278 c 0,0.683176 -0.5789,1.237 -1.293,1.237 -0.71411,0 -1.293,-0.553824 -1.293,-1.237 0,-0.683176 0.57889,-1.237 1.293,-1.237 0.7141,0 1.293,0.553824 1.293,1.237 z" rx="1.293" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="1.237" cy="94.278" cx="327.17" fill="#d4af3a"/><ellipse id="ellipse392" d="m 314.07601,94.278 c 0,0.683176 -0.5798,1.237 -1.295,1.237 -0.71521,0 -1.295,-0.553824 -1.295,-1.237 0,-0.683176 0.57979,-1.237 1.295,-1.237 0.7152,0 1.295,0.553824 1.295,1.237 z" rx="1.295" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="1.237" cy="94.278" cx="312.78" fill="#d4af3a"/><path id="path394" fill="#d4af3a" d="m278.07 44.265c1.035 0.38438 2.3812 0.21562 2.3812 0.21562s0.40687-1.785-0.5775-2.655c-0.98438-0.86625-1.875-1.4925-2.4525-2.0719-0.5775-0.58125-0.72-0.77438-0.72-0.77438s0 1.5431-0.075 2.5088c-0.0694 0.9675 0.41063 2.3888 1.4438 2.7769z"/><ellipse id="ellipse396" d="m 309.834,88.650002 c 0,0.206002 -0.1764,0.373 -0.394,0.373 -0.2176,0 -0.394,-0.166998 -0.394,-0.373 0,-0.206003 0.1764,-0.373 0.394,-0.373 0.2176,0 0.394,0.166997 0.394,0.373 z" rx="0.394" transform="matrix(1.875,0,0,1.875,-300,-120)" ry=".373" cy="88.65" cx="309.44" fill="#d4af3a"/><path id="path398" fill="#d4af3a" d="m274.7 45.469c-0.31312 0.435-0.98437 1.1325-0.98437 1.1325s0.8175 0.02437 1.4906 0.50625c0.67313 0.48375 1.5394 0.8925 2.3325 0.79688 0.79313-0.09938 1.1306-0.8475 0.96188-1.3762-0.16688-0.53062-0.55125-1.0819-1.8506-1.5675-1.2994-0.48-1.6369 0.07312-1.95 0.50812z"/><path id="path400" fill="#d4af3a" d="m277.52 50.168c-2.5275 0.22688-5.8669-2.5669-5.8669-2.5669-0.31125 2.2444-1.6988 3.4088-3.825 3.8344l0.195 0.09937s1.9762 1.0106 4.3106 1.365c1.0556 0.16125 1.995-0.02063 3.1294-0.2475 1.3688-0.2775 2.9081-0.6675 3.7406-1.1812 1.5244-0.94125 1.0688-3.3806 1.0688-3.3806s-0.22313 1.8488-2.7525 2.0775z"/><path id="path402" fill="#d4af3a" d="m267.67 47.632c-1.0369-0.39-2.5931-1.1381-3.2419-1.1719-0.64875-0.03187-1.59-0.195-1.4269 1.0088 0.16125 1.2038 1.3931 1.7888 2.5912 1.8206 1.2 0.03375 1.8169-0.42188 2.5294-0.78188 0.71437-0.35625 0.585-0.48562-0.45188-0.87562z"/><path id="path404" fill="#d4af3a" d="m259.76 43.339c-1.13-0.812-2.14-1.039-2.14-1.039s-0.74438 1.9519-0.32438 3.1556c0.42187 1.2038 1.2975 1.5262 2.3662 1.4925 1.0706-0.03 2.6588-0.585 2.205-1.3969-0.45188-0.81-0.97125-1.3988-2.1056-2.2125z"/><ellipse id="ellipse406" d="m 299.55999,90.041 c 0,0.185568 -0.20863,0.336 -0.466,0.336 -0.25736,0 -0.466,-0.150432 -0.466,-0.336 0,-0.185567 0.20864,-0.336 0.466,-0.336 0.25737,0 0.466,0.150433 0.466,0.336 z" rx="0.466" transform="matrix(1.875,0,0,1.875,-300,-120)" ry=".336" cy="90.041" cx="299.09" fill="#d4af3a"/><path id="path408" fill="#d4af3a" d="m263.21 39.122c-0.70126-3.3262-0.58313-6.945 2.5687-11.556 3.1538-4.6125 8.6381-6.48 8.6381-6.48s0.17437-0.35062 1.9256-2.2162c1.7512-1.8694 5.3119-4.2019 5.3119-4.2019s-4.1325 1.02-6.4819 1.7719c0 0.04125 0.002 0.08062 0.002 0.12375 0 1.5956-1.2675 2.8894-2.8312 2.8894-0.59625 0-1.1531-0.19125-1.6106-0.51375-1.275 0.2475-5.52 2.7844-6.6056 3.69 0.27 0.4425 0.4275 0.96375 0.4275 1.5225 0 1.5919-1.2694 2.8875-2.8331 2.8875-0.46875 0-0.90938-0.11438-1.2994-0.3225-0.1275 0.2025-0.2475 0.40688-0.36188 0.615-0.89062 1.6369-1.5469 3.2081-2.0306 4.6462 0.72562 0.50062 1.2112 1.4362 1.2112 2.505 0 1.5862-1.0744 2.8762-2.4019 2.8894-0.0919 0.93375-0.0844 1.5862-0.0487 1.8656 0.11625 0.93562 0.46688 1.5188 2.1 1.9856 1.635 0.46688 3.8531 3.3262 3.8531 3.3262 0.1575 0 1.3238-2.1 0.46687-5.4281z"/><path id="path410" fill="#d4af3a" d="m273.26 17.824c0.59625-0.48375 0.70125-1.2244 0.22687-1.6481-0.46875-0.42562-1.3331-0.375-1.9294 0.1125-0.59438 0.4875-0.69937 1.2281-0.22688 1.6519 0.47063 0.42375 1.335 0.375 1.9294-0.11625z"/><path id="path412" fill="#d4af3a" d="m262.69 24.969c0.66938-0.61125 0.7875-1.5356 0.255-2.07-0.53062-0.5325-1.5056-0.46875-2.1788 0.1425-0.67125 0.6075-0.78562 1.5338-0.255 2.0662 0.53063 0.53438 1.5056 0.47062 2.1788-0.13875z"/><ellipse id="ellipse414" d="m 297.61099,82.109001 c 0,0.472756 -0.38996,0.856 -0.871,0.856 -0.48104,0 -0.871,-0.383244 -0.871,-0.856 0,-0.472756 0.38996,-0.856 0.871,-0.856 0.48104,0 0.871,0.383244 0.871,0.856 z" rx="0.871" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="0.856" cy="82.109" cx="296.74" fill="#d4af3a"/><path id="path416" fill="#d4af3a" d="m291.64 11.282c-0.8475 0.18562-2.415 0.69562-4.7606 1.9238h0.0431c1.6312 0 2.8988 1.0425 2.8988 2.3925 0 1.3519-1.4831 2.82-3.1125 2.82s-2.7394-1.4156-2.7394-2.7675c0-0.31688 0.075-0.62438 0.20813-0.90375-0.69563 0.42938-1.4381 0.90375-2.2294 1.4381-5.1956 3.5025-6.42 5.1956-8.9869 9.9825-2.5688 4.7831-3.5025 10.037-2.3944 13.131 1.11 3.0919 5.1956 3.735 5.2538 3.735 0.0581 0-0.46687-0.46688-0.52687-1.0481-0.0581-0.58688 0.11812-0.8775 0.2925-2.0456 0.17437-1.1644 0.0581-2.565 0.0581-2.565s0.93375-0.11812 1.4588 0.525c0.52688 0.64125 1.2862 1.4006 1.8094 2.04 0.525 0.64125 1.9256 1.8694 1.9256 1.8694s0.81938-1.17 0.81938-2.5706c0-1.3988-0.93375-2.9156-1.11-5.3681s1.11-6.8306 3.5006-10.039c2.3944-3.21 6.8869-6.1275 8.2294-6.7706 1.3425-0.63938 1.575-1.635 1.635-2.2181 0.0581-0.58312 0.17437-0.99 0.29062-2.4506 0.12-1.4588-1.2225-1.4006-2.5631-1.11z"/><path id="path418" fill="#d4af3a" d="m286.47 16.824c0.91875 0 1.755-0.82688 1.755-1.5844 0-0.75938-0.71437-1.3444-1.635-1.3444-0.91875 0-1.665 0.61688-1.665 1.3725s0.62437 1.5562 1.545 1.5562z"/><path id="path420" fill="#d4af3a" d="m294.21 47.342c1.2525 0.51 2.6662 0.22312 3.3319-0.22125 0.66563-0.44625 0.89063-1.5806 0.10125-2.2294-0.78562-0.64688-1.9575-0.62438-2.685-0.22125-0.7275 0.405-2.3644 1.5581-2.3644 1.5581s0.36375 0.6075 1.6162 1.1138z"/><path id="path422" fill="#d4af3a" d="m298.21 48.748c-0.45187 0.6975-0.78562 1.1212-2.1769 1.1812-1.3912 0.06-2.9006-0.03-3.8081-0.93938-0.9075-0.9075-1.5412-2.1825-1.5412-2.1825l-1.5712-0.03s-0.51187 2.1844-1.2075 2.7862c-0.69562 0.6075-3.1144 0.69938-4.1719-0.09s-2.025-1.7588-2.205-1.6369c-0.18 0.12188 0 0.90938 1.0875 1.8488 1.0875 0.9375 1.8412 1.5169 3.5962 1.5169h9.9712s2.025 0.11812 2.6006-1.0931c0.57375-1.2112 0.6-1.9706 0.33187-2.2725-0.27-0.30188-0.45188 0.21188-0.90562 0.91125z"/><path id="path424" fill="#d4af3a" d="m283.06 47.059c1.4962 0.83062 2.3231 0.32438 2.8669-0.345 0.5475-0.6675 0.64688-0.97125 0.64688-0.97125s-1.4138-0.50812-2.1-0.91312c-0.68813-0.40312-1.1512-0.78938-1.8375-0.70875-0.68813 0.0825-0.7875 0.18375-0.7875 0.18375s-0.28312 1.9219 1.2112 2.7544z"/><path id="path426" fill="#d4af3a" d="m302.3 44.889c-0.78563 0.64875-0.5625 1.7831 0.10125 2.2294 0.6675 0.44438 2.0812 0.73125 3.3338 0.22125 1.2544-0.50438 1.6162-1.1138 1.6162-1.1138s-1.6369-1.1512-2.3644-1.5581c-0.7275-0.40312-1.8975-0.42562-2.6869 0.22125z"/><path id="path428" fill="#d4af3a" d="m316.2 49.476c-1.0556 0.7875-3.4762 0.6975-4.1719 0.09-0.69563-0.60375-1.2094-2.7862-1.2094-2.7862l-1.5712 0.03s-0.6375 1.275-1.5412 2.1825c-0.90937 0.90938-2.4188 0.99938-3.81 0.93938-1.3875-0.06-1.7212-0.48375-2.175-1.1812-0.45187-0.69938-0.63375-1.2112-0.90562-0.90938-0.27 0.30188-0.24 1.0612 0.33375 2.2725 0.57375 1.2112 2.5988 1.0931 2.5988 1.0931h9.9731c1.7531 0 2.5088-0.57938 3.5962-1.5169 1.0875-0.93938 1.2675-1.7269 1.0875-1.8488-0.18187-0.12562-1.1512 0.84375-2.205 1.635z"/><path id="path430" fill="#d4af3a" d="m315.46 44.829c-0.68438 0.405-2.0962 0.91312-2.0962 0.91312s0.0994 0.30375 0.64312 0.97125c0.54563 0.66938 1.3762 1.1756 2.8706 0.345 1.4944-0.8325 1.2113-2.7562 1.2113-2.7562s-0.10125-0.10125-0.7875-0.18375c-0.68813-0.07875-1.1512 0.3075-1.8412 0.71062z"/><path id="path432" fill="#d4af3a" d="m323.31 41.49c-0.0712-0.96562-0.0712-2.5088-0.0712-2.5088s-0.1425 0.19312-0.72 0.77438c-0.58125 0.57938-1.4681 1.2056-2.4562 2.0719-0.9825 0.86812-0.57563 2.655-0.57563 2.655s1.3462 0.16875 2.3794-0.21562c1.0331-0.39 1.515-1.8112 1.4438-2.7769z"/><path id="path434" fill="#d4af3a" d="m320.48 46.215c0-0.38438-0.33-0.6975-0.735-0.6975-0.41063 0-0.7425 0.31312-0.7425 0.6975 0 0.38812 0.33187 0.70312 0.7425 0.70312 0.405 0 0.735-0.315 0.735-0.70312z"/><path id="path436" fill="#d4af3a" d="m322.4 47.906c0.79312 0.09562 1.6594-0.31312 2.3306-0.79688 0.67313-0.48188 1.4906-0.50625 1.4906-0.50625s-0.67125-0.69938-0.98625-1.1325c-0.31125-0.435-0.64875-0.98812-1.9462-0.50812-1.2975 0.48562-1.6819 1.0369-1.8525 1.5675-0.16313 0.52875 0.16875 1.2769 0.96375 1.3762z"/><path id="path438" fill="#d4af3a" d="m328.28 47.601s-3.3375 2.7938-5.8669 2.5669c-2.5294-0.22875-2.7544-2.0812-2.7544-2.0812s-0.45562 2.4394 1.0669 3.3806c0.83063 0.51375 2.3738 0.90375 3.7406 1.1812 1.1344 0.22875 2.0756 0.40875 3.1312 0.2475 2.3344-0.35438 4.3125-1.365 4.3125-1.365l0.19312-0.09938c-2.12-0.423-3.51-1.587-3.82-3.831z"/><path id="path440" fill="#d4af3a" d="m335.51 46.461c-0.64875 0.03375-2.2069 0.78188-3.24 1.1719-1.0388 0.39-1.17 0.51938-0.45563 0.8775 0.7125 0.35812 1.3275 0.81375 2.5294 0.78188 1.1981-0.03375 2.4319-0.61875 2.5931-1.8206 0.16125-1.2056-0.78187-1.0406-1.4269-1.0106z"/><path id="path442" fill="#d4af3a" d="m340.17 43.339c-1.1344 0.81375-1.6538 1.4025-2.1094 2.2125-0.45187 0.81188 1.1344 1.3669 2.2069 1.3969 1.0688 0.03375 1.9425-0.29062 2.3662-1.4925 0.43-1.204-0.32-3.156-0.32-3.156s-1.005 0.22875-2.1375 1.0388z"/><ellipse id="ellipse444" d="m 341.33901,90.041 c 0,0.185568 -0.20908,0.336 -0.467,0.336 -0.25792,0 -0.467,-0.150432 -0.467,-0.336 0,-0.185567 0.20908,-0.336 0.467,-0.336 0.25792,0 0.467,0.150433 0.467,0.336 z" rx="0.467" transform="matrix(1.875,0,0,1.875,-300,-120)" ry=".336" cy="90.041" cx="340.87" fill="#d4af3a"/><path id="path446" fill="#d4af3a" d="m340.69 34.483c0-1.0706 0.49125-2.0044 1.2131-2.505-0.48187-1.4381-1.1362-3.0075-2.0269-4.6462-0.11438-0.20812-0.23625-0.41062-0.36188-0.615-0.39187 0.20812-0.83062 0.3225-1.3031 0.3225-1.5638 0-2.8294-1.2956-2.8294-2.8875 0-0.55875 0.15563-1.08 0.42563-1.5225-1.0875-0.90562-5.3325-3.4425-6.6075-3.69-0.4575 0.3225-1.0106 0.51375-1.6069 0.51375-1.5637 0-2.8312-1.2938-2.8312-2.8894 0-0.04312 0.002-0.0825 0.002-0.12375-2.3494-0.75188-6.4781-1.7719-6.4781-1.7719s3.555 2.3325 5.3081 4.2019c1.7512 1.8675 1.9256 2.2162 1.9256 2.2162s5.4862 1.8675 8.6381 6.48c3.1519 4.6106 3.2662 8.2294 2.5669 11.556-0.855 3.3262 0.31313 5.4281 0.46688 5.4281 0 0 2.2181-2.8594 3.8531-3.3262 1.6331-0.46875 1.9856-1.0519 2.1019-1.9856 0.0337-0.2775 0.0412-0.93188-0.0487-1.8656-1.3312-0.01313-2.4075-1.3031-2.4075-2.8894z"/><path id="path448" fill="#d4af3a" d="m326.68 17.824c0.59437 0.49125 1.4606 0.54 1.9312 0.11625 0.47062-0.42375 0.36937-1.1644-0.22688-1.6519s-1.4606-0.53812-1.9312-0.1125c-0.4725 0.42375-0.3675 1.1644 0.22688 1.6481z"/><path id="path450" fill="#d4af3a" d="m337.25 24.969c0.67125 0.60938 1.6481 0.67312 2.1769 0.14062 0.5325-0.5325 0.41625-1.4588-0.25875-2.0662-0.6675-0.61125-1.6462-0.675-2.175-0.1425-0.53063 0.5325-0.41438 1.4569 0.25687 2.0681z"/><ellipse id="ellipse452" d="m 344.09899,82.109001 c 0,0.473308 -0.39041,0.857 -0.872,0.857 -0.48159,0 -0.872,-0.383692 -0.872,-0.857 0,-0.473308 0.39041,-0.857 0.872,-0.857 0.48159,0 0.872,0.383692 0.872,0.857 z" rx="0.872" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="0.857" cy="82.109" cx="343.23" fill="#d4af3a"/><path id="path454" fill="#d4af3a" d="m306.02 14.842c0.0563 0.585 0.29251 1.5788 1.635 2.2181 1.3425 0.64312 5.8369 3.5606 8.2294 6.7706 2.3962 3.21 3.6769 7.5881 3.5044 10.039-0.17813 2.4525-1.1081 3.9694-1.1081 5.3681 0 1.4006 0.81563 2.5706 0.81563 2.5706s1.4006-1.2281 1.9256-1.8694c0.52125-0.63938 1.2825-1.3988 1.8075-2.04 0.525-0.64125 1.4588-0.525 1.4588-0.525s-0.11625 1.4006 0.0581 2.565c0.17625 1.1681 0.35251 1.4588 0.29251 2.0456-0.06 0.58125-0.58501 1.0481-0.52313 1.0481 0.0563 0 4.1438-0.64125 5.2519-3.735s0.17437-8.3475-2.3944-13.131c-2.5669-4.7888-3.7912-6.4819-8.9869-9.9825-0.79125-0.5325-1.53-1.0088-2.2294-1.4381 0.135 0.28125 0.20625 0.58688 0.20625 0.90375 0 1.3519-1.1081 2.7675-2.7375 2.7675s-3.1125-1.4681-3.1125-2.82 1.2712-2.3925 2.9006-2.3925h0.0431c-2.3456-1.23-3.9112-1.74-4.7606-1.9238-1.3425-0.29062-2.685-0.34875-2.5669 1.11 0.11813 1.4588 0.2325 1.8656 0.29063 2.4506z"/><path id="path456" fill="#d4af3a" d="m299.97 38.715s-0.37874 1.5881-0.88687 2.2612c-0.50813 0.675-0.8925 1.2769-0.74625 2.0981 0.14625 0.81938 1.0838 1.3669 1.6331 1.3669 0.5475 0 1.4869-0.5475 1.6312-1.3669 0.14813-0.82125-0.23624-1.4231-0.74437-2.0981-0.50625-0.67312-0.88688-2.2612-0.88688-2.2612z"/><circle id="circle458" d="m 320.44999,88.559998 c 0,0.24908 -0.20192,0.451 -0.451,0.451 -0.24908,0 -0.451,-0.20192 -0.451,-0.451 0,-0.249081 0.20192,-0.451 0.451,-0.451 0.24908,0 0.451,0.201919 0.451,0.451 z" cx="320" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="88.56" r="0.451" fill="#d4af3a"/><path id="path460" fill="#d4af3a" d="m296.98 41.7s1.4625-1.6238 2.0025-2.6531c0.54187-1.0275 0.98249-1.9481 0.98249-1.9481s0.43876 0.92062 0.98063 1.9481 2.0025 2.6531 2.0025 2.6531 2.0569-1.0838 3.2456-5.0325c1.1925-3.9506-0.27375-8.1169-0.81376-12.608-0.54-4.4906-0.975-12.227-0.975-12.227-1.5581 0.8925-3.03 1.2712-4.4437 1.2956-1.4138-0.02625-2.8875-0.405-4.4456-1.2956 0 0-0.43125 7.7362-0.97313 12.227-0.54187 4.4925-2.0025 8.6569-0.81187 12.608 1.1944 3.9488 3.2494 5.0325 3.2494 5.0325z"/><path id="path462" fill="#d4af3a" d="m311.71 15.24c0 0.7575 0.83437 1.5844 1.7569 1.5844 0.91875 0 1.545-0.79688 1.545-1.5544 0-0.7575-0.74625-1.3725-1.6669-1.3725-0.92063 0-1.635 0.585-1.635 1.3425z"/><ellipse id="ellipse464" d="m 308.88001,81.239998 c 0,0.971469 -0.79469,1.759 -1.775,1.759 -0.9803,0 -1.775,-0.787531 -1.775,-1.759 0,-0.971469 0.7947,-1.759 1.775,-1.759 0.98031,0 1.775,0.787531 1.775,1.759 z" rx="1.775" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="1.759" cy="81.24" cx="307.11" fill="#b96b29"/><path id="path466" fill="#b96b29" d="m281.6 20.895c-1.3312-0.89625-3.2869-0.53812-4.3706 0.79875-1.08 1.3406-0.87563 3.1556 0.45937 4.05 1.3312 0.89812 3.2906 0.53812 4.3725-0.79875 1.08-1.335 0.87375-3.15-0.46125-4.05z"/><ellipse id="ellipse468" d="m 308.06701,81.012001 c 0,0.542896 -0.46159,0.983 -1.031,0.983 -0.5694,0 -1.031,-0.440104 -1.031,-0.983 0,-0.542896 0.4616,-0.983 1.031,-0.983 0.56941,0 1.031,0.440104 1.031,0.983 z" rx="1.031" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="0.983" cy="81.012" cx="307.04" fill="#d4af3a"/><path id="path470" fill="#d4af3a" d="m280.22 21.259c-0.85687-0.23438-1.9162 0.1875-2.3625 0.94125-0.44625 0.75562 0.0263 1.56 1.1681 1.7925 2.1019 0.42938 3.1031-2.2106 1.1944-2.7338z"/><ellipse id="ellipse472" d="m 321.87099,81.505997 c 0,1.009576 -0.84797,1.828 -1.894,1.828 -1.04603,0 -1.894,-0.818424 -1.894,-1.828 0,-1.009577 0.84797,-1.828 1.894,-1.828 1.04603,0 1.894,0.818423 1.894,1.828 z" rx="1.894" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="1.828" cy="81.506" cx="319.98" fill="#b96b29"/><ellipse id="ellipse474" d="m 321.79899,77.220001 c 0,0.971469 -0.81574,1.759 -1.822,1.759 -1.00626,0 -1.822,-0.787531 -1.822,-1.759 0,-0.971469 0.81574,-1.759 1.822,-1.759 1.00626,0 1.822,0.787531 1.822,1.759 z" rx="1.822" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="1.759" cy="77.22" cx="319.98" fill="#b96b29"/><ellipse id="ellipse476" d="m 321.71499,73.121002 c 0,0.926182 -0.77813,1.677 -1.738,1.677 -0.95987,0 -1.738,-0.750818 -1.738,-1.677 0,-0.926181 0.77813,-1.677 1.738,-1.677 0.95987,0 1.738,0.750819 1.738,1.677 z" rx="1.738" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="1.677" cy="73.121" cx="319.98" fill="#b96b29"/><path id="path478" fill="#b96b29" d="m324.12 29.025c-1.8375 0-3.33 1.4756-3.33 3.2962 0 1.8225 1.4925 3.3 3.33 3.3 1.8338 0 3.3225-1.4775 3.3225-3.3 0.002-1.8188-1.4888-3.2962-3.3225-3.2962z"/><path id="path480" fill="#b96b29" d="m322.71 21.694c-1.0838-1.3369-3.0412-1.695-4.3706-0.79875-1.3369 0.9-1.5394 2.715-0.46126 4.0519 1.08 1.3369 3.0412 1.6969 4.3725 0.79875 1.3331-0.89625 1.5394-2.7112 0.45938-4.0519z"/><ellipse id="ellipse482" d="m 333.964,81.012001 c 0,0.542896 -0.46249,0.983 -1.033,0.983 -0.57051,0 -1.033,-0.440104 -1.033,-0.983 0,-0.542896 0.46249,-0.983 1.033,-0.983 0.57051,0 1.033,0.440104 1.033,0.983 z" rx="1.033" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="0.983" cy="81.012" cx="332.93" fill="#d4af3a"/><path id="path484" fill="#d4af3a" d="m319.72 21.259c-1.9106 0.52312-0.9075 3.1631 1.1981 2.7338 1.1381-0.2325 1.6125-1.0369 1.1662-1.7925-0.45-0.75375-1.5056-1.1756-2.3644-0.94125z"/><ellipse id="ellipse486" d="m 320.98099,81.178001 c 0,0.534612 -0.44951,0.968 -1.004,0.968 -0.55449,0 -1.004,-0.433388 -1.004,-0.968 0,-0.534611 0.44951,-0.968 1.004,-0.968 0.55449,0 1.004,0.433389 1.004,0.968 z" rx="1.004" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="0.968" cy="81.178" cx="319.98" fill="#d4af3a"/><ellipse id="ellipse488" d="m 320.94299,76.904999 c 0,0.514177 -0.43249,0.931 -0.966,0.931 -0.53351,0 -0.966,-0.416823 -0.966,-0.931 0,-0.514177 0.43249,-0.931 0.966,-0.931 0.53351,0 0.966,0.416823 0.966,0.931 z" rx="0.966" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="0.931" cy="76.905" cx="319.98" fill="#d4af3a"/><ellipse id="ellipse490" d="m 320.82399,72.82 c 0,0.451216 -0.37922,0.817 -0.847,0.817 -0.46779,0 -0.847,-0.365784 -0.847,-0.817 0,-0.451217 0.37921,-0.817 0.847,-0.817 0.46778,0 0.847,0.365783 0.847,0.817 z" rx=".847" transform="matrix(1.875,0,0,1.875,-300,-120)" ry="0.817" cy="72.82" cx="319.98" fill="#d4af3a"/><circle id="circle492" d="m 380.82401,207.453 c 0,0.85936 -0.69665,1.556 -1.556,1.556 -0.85936,0 -1.556,-0.69664 -1.556,-1.556 0,-0.85935 0.69664,-1.556 1.556,-1.556 0.85935,0 1.556,0.69665 1.556,1.556 z" cx="379.27" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="207.45" r="1.556" fill="#b96b29"/><circle id="circle494" d="m 385.24802,208.52901 c 0,0.88089 -0.71411,1.595 -1.595,1.595 -0.8809,0 -1.595,-0.71411 -1.595,-1.595 0,-0.8809 0.7141,-1.595 1.595,-1.595 0.88089,0 1.595,0.7141 1.595,1.595 z" cx="383.65" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="208.53" r="1.595" fill="#b96b29"/><circle id="circle496" d="m 398.01501,211.242 c 0,0.88145 -0.71456,1.596 -1.596,1.596 -0.88145,0 -1.596,-0.71455 -1.596,-1.596 0,-0.88144 0.71455,-1.596 1.596,-1.596 0.88144,0 1.596,0.71456 1.596,1.596 z" cx="396.42" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="211.24" r="1.596" fill="#b96b29"/><circle id="circle498" d="m 389.639,209.56599 c 0,0.88145 -0.71455,1.596 -1.596,1.596 -0.88145,0 -1.596,-0.71455 -1.596,-1.596 0,-0.88144 0.71455,-1.596 1.596,-1.596 0.88145,0 1.596,0.71456 1.596,1.596 z" cx="388.04" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="209.57" r="1.596" fill="#b96b29"/><circle id="circle500" d="m 390.79501,205.73801 c 0,0.88144 -0.71456,1.596 -1.596,1.596 -0.88145,0 -1.596,-0.71456 -1.596,-1.596 0,-0.88145 0.71455,-1.596 1.596,-1.596 0.88144,0 1.596,0.71455 1.596,1.596 z" cx="389.2" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="205.74" r="1.596" fill="#b96b29"/><circle id="circle502" d="m 391.911,201.909 c 0,0.88144 -0.71455,1.596 -1.596,1.596 -0.88144,0 -1.596,-0.71456 -1.596,-1.596 0,-0.88145 0.71456,-1.596 1.596,-1.596 0.88145,0 1.596,0.71455 1.596,1.596 z" cx="390.32" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="201.91" r="1.596" fill="#b96b29"/><circle id="circle504" d="m 380.16201,207.297 c 0,0.42912 -0.34787,0.777 -0.777,0.777 -0.42913,0 -0.777,-0.34788 -0.777,-0.777 0,-0.42913 0.34787,-0.777 0.777,-0.777 0.42913,0 0.777,0.34787 0.777,0.777 z" cx="379.39" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="207.3" r="0.777" fill="#d4af3a"/><circle id="circle506" d="m 384.57199,208.371 c 0,0.44073 -0.35728,0.798 -0.798,0.798 -0.44073,0 -0.798,-0.35727 -0.798,-0.798 0,-0.44072 0.35727,-0.798 0.798,-0.798 0.44072,0 0.798,0.35728 0.798,0.798 z" cx="383.77" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="208.37" r="0.798" fill="#d4af3a"/><circle id="circle508" d="m 397.33399,211.082 c 0,0.44017 -0.35683,0.797 -0.797,0.797 -0.44017,0 -0.797,-0.35683 -0.797,-0.797 0,-0.44017 0.35683,-0.797 0.797,-0.797 0.44017,0 0.797,0.35683 0.797,0.797 z" cx="396.54" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="211.08" r="0.797" fill="#d4af3a"/><circle id="circle510" d="m 388.95801,209.407 c 0,0.44017 -0.35683,0.797 -0.797,0.797 -0.44017,0 -0.797,-0.35683 -0.797,-0.797 0,-0.44017 0.35683,-0.797 0.797,-0.797 0.44017,0 0.797,0.35683 0.797,0.797 z" cx="388.16" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="209.41" r="0.797" fill="#d4af3a"/><circle id="circle512" d="m 390.11499,205.578 c 0,0.44017 -0.35683,0.797 -0.797,0.797 -0.44017,0 -0.797,-0.35683 -0.797,-0.797 0,-0.44017 0.35683,-0.797 0.797,-0.797 0.44017,0 0.797,0.35683 0.797,0.797 z" cx="389.32" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="205.58" r="0.797" fill="#d4af3a"/><circle id="circle514" d="m 391.234,201.75 c 0,0.44072 -0.35727,0.798 -0.798,0.798 -0.44072,0 -0.798,-0.35728 -0.798,-0.798 0,-0.44072 0.35728,-0.798 0.798,-0.798 0.44073,0 0.798,0.35728 0.798,0.798 z" cx="390.44" transform="matrix(1.875,0,0,1.875,-300,-120)" cy="201.75" r="0.798" fill="#d4af3a"/></g></g> +</svg> diff --git a/s/flag/mf.svg b/s/flag/mf.svg new file mode 100755 index 0000000..4c47dc8 --- /dev/null +++ b/s/flag/mf.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3176"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="g3627" fill-rule="evenodd" stroke-width="1pt" transform="scale(1.25 .9375)"> + <rect id="rect171" height="512" width="512" y="7.4219e-7" x="0" fill="#fff"/> + <rect id="rect403" height="512" width="170.67" y="7.4219e-7" x="0" fill="#00267f"/> + <rect id="rect135" height="512" width="170.67" y="7.4219e-7" x="341.33" fill="#f31830"/> + </g> +</svg> diff --git a/s/flag/mg.svg b/s/flag/mg.svg new file mode 100755 index 0000000..ca41fc2 --- /dev/null +++ b/s/flag/mg.svg @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>SVG graphic of Madagascan flag</dc:title> + <dc:rights><Agent> + <dc:title>Russell Cloran</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> + +</rdf:RDF> +--> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3486"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" stroke-width="1pt" fill-rule="evenodd"> + <rect id="rect551" height="240" width="426.67" y=".000014514" x="213.33" fill="#ff3319"/> + <rect id="rect552" height="240" width="426.67" y="240" x="213.33" fill="#00cc28"/> + <rect id="rect553" height="480" width="213.33" y="4.3291e-13" x="0" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/mh.svg b/s/flag/mh.svg new file mode 100755 index 0000000..1f37225 --- /dev/null +++ b/s/flag/mh.svg @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- + +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>SVG graphic of the Marshall Islands' Flag</dc:title> + <dc:rights><Agent> + <dc:title>Andrew Duhan</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> + +</rdf:RDF> + +--> +<svg id="svg650" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3495"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd"> + <g id="g9216" transform="scale(1.3333 1)"> + <rect id="rect659" height="480" width="479.91" y="0" x="0" stroke-width="1pt" fill="#3b5aa3"/> + <path id="path655" d="m0 467.08 479.94-467.08-0.02 86.915-479.92 393.08v-12.92z" fill="#e2ae57"/> + <path id="path654" d="m16.798 479.98 463.2-300.76-0.1-95.479-479.9 396.26 16.798-0.02z" fill="#fff"/> + </g> + <path id="path656" d="m175.32 15.163-6.3145 102.79-27.009-65.552 10.361 69.775l-41.83-56.378 27.42 64.338-54.935-42.616 42.765 53.546-62.102-27.52 54.392 41.19-67.651-8.95 63.931 25.34-100.35 9.18 100.59 6.7232-63.742 26.207 66.972-9.0623-54.195 40.018 62.891-27.595-42.896 53.99 54.573-41.318-27.036 62.889 43.684-54.69-11.824 68.173 27.478-63.7 6.2111 100.63 9.6904-100.38 23.692 64.088-9.0321-69.057 43.468 54.738-28.561-63.93 54.55 43.996-43.37-54.929 64.834 26.994-57.379-41.902 69.878 11.78-66.896-25.694 104.05-6.4608-104.05-9.6904 68.486-22.828-70.972 8.9141 58.638-40.996-66.091 26.586 45.644-55.334-55.582 43.408 26.746-66.412-43.146 56.474 9.2674-70.43-25.665 66.455-9.587-102.79z" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/mk.svg b/s/flag/mk.svg new file mode 100755 index 0000000..55ae5cb --- /dev/null +++ b/s/flag/mk.svg @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg704" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3511"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs706"> + <clipPath id="clipPath9181" clipPathUnits="userSpaceOnUse"> + <rect id="rect9183" fill-opacity="0.67" height="513.46" width="684.61" y="-1.4601" x="-85.687"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath9181)" fill-rule="evenodd" transform="matrix(.93483 0 0 .93483 80.104 1.3649)"> + <rect id="rect707" height="512" width="767.07" y="-.36417" x="-126.62" fill="#ed3d00"/> + <path id="path716" d="m-126.59 200.87 0.15608 109.9 385.87-54.964-386.03-54.936z" fill="#ffd100"/> + <path id="path713" d="m-128 512 159.3-0.3 228.68-257.41-387.98 257.71z" fill="#ffd100"/> + <path id="path725" d="m311.72 511.64-109.9-0.10269 54.964-253.87 54.936 253.97z" fill="#ffd100"/> + <path id="path732" d="m641.24-1.4601-159.3 0.3046-228.69 259.45 387.99-259.75z" fill="#ffd100"/> + <path id="path733" d="m201.52-0.000011636 109.9 0.10269-54.97 253.87-54.93-253.97z" fill="#ffd100"/> + <path id="path738" d="m640.5 511.64-159.3-0.31-228.69-257.41 387.99 257.72z" fill="#ffd100"/> + <path id="path740" d="m640.5 200.87-0.16 109.9-385.87-54.97 386.03-54.93z" fill="#ffd100"/> + <path id="path748" d="m-126.96 0.000012512 159.3 0.3022 228.69 257.41-387.99-257.71z" fill="#ffd100"/> + <path id="path741" d="m517.42 231.14c0 54.866-43.551 99.345-97.275 99.345-53.723 0-97.275-44.478-97.275-99.345 0-54.866 43.551-99.345 97.275-99.345 53.723 0 97.275 44.478 97.275 99.345z" transform="matrix(.92167 0 0 .88098 -130.46 52.184)" fill="#ed3d00"/> + <path id="path742" d="m517.42 231.14c0 54.866-43.551 99.345-97.275 99.345-53.723 0-97.275-44.478-97.275-99.345 0-54.866 43.551-99.345 97.275-99.345 53.723 0 97.275 44.478 97.275 99.345z" transform="matrix(.85052 0 0 .82760 -100.57 64.523)" fill="#ffd100"/> + </g> +</svg> diff --git a/s/flag/ml.svg b/s/flag/ml.svg new file mode 100755 index 0000000..0c70459 --- /dev/null +++ b/s/flag/ml.svg @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- +On October 30, 2003, Brett Roper dedicated to the public domain the +work "SVG graphic of Mali Flag." Before making the dedication, +Brett Roper +represented that Brett Roper owned all copyrights in the +work. By making the dedication, Brett Roper made an overt act +of relinquishment in perpetuity of all present and future rights under +copyright law, whether vested or contingent, in "SVG graphic of Mali +Flag." + +Brett Roper understands that such relinquishment of all rights +includes the relinquishment of all rights to enforce (by lawsuit or +otherwise) those copyrights in the Work. + +Brett Roper recognizes that, once placed in the public domain, +"SVG graphic of Mali Flag" may be freely reproduced, +distributed, transmitted, used, +modified, built upon, or otherwise exploited by anyone for any +purpose, commercial or non-commercial, and in any way, including by +methods that have not yet been invented or conceived. +--> +<svg id="canada" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" fill="#28ff09"> + <metadata id="metadata3519"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" fill-opacity="1" transform="translate(0 -32)"> + <rect id="rect563" height="480" width="214.25" y="32" x="425.75" fill="#f00"/> + <rect id="rect562" height="480" width="212.88" y="32" x="0" fill="#009a00"/> + <rect id="rect564" height="480" width="213.95" y="32" x="212.88" fill="#ff0"/> + </g> +</svg> diff --git a/s/flag/mm.svg b/s/flag/mm.svg new file mode 100755 index 0000000..64b8760 --- /dev/null +++ b/s/flag/mm.svg @@ -0,0 +1,146 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<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" + width="640" + height="480" + viewBox="0 0 6.4 4.8" + id="svg2" + version="1.1" + inkscape:version="0.48.4 r9939" + sodipodi:docname="mm.svg"> + <metadata + id="metadata28"> + <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> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1280" + inkscape:window-height="800" + id="namedview26" + showgrid="false" + inkscape:zoom="1.2041667" + inkscape:cx="320" + inkscape:cy="240" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="0" + inkscape:current-layer="svg2" /> + <defs + id="defs4"> + <polygon + id="pt" + points="0,-0.5 0.16245985,0 -0.16245985,0 " + transform="scale(8.844,8.844)" + style="fill:#ffffff" /> + <g + id="star"> + <use + xlink:href="#pt" + transform="matrix(-0.80901699,-0.58778525,0.58778525,-0.80901699,0,0)" + id="use8" + x="0" + y="0" + width="18" + height="12" /> + <use + xlink:href="#pt" + transform="matrix(0.30901699,-0.95105652,0.95105652,0.30901699,0,0)" + id="use10" + x="0" + y="0" + width="18" + height="12" /> + <use + xlink:href="#pt" + id="use12" + x="0" + y="0" + width="18" + height="12" /> + <use + xlink:href="#pt" + transform="matrix(0.30901699,0.95105652,-0.95105652,0.30901699,0,0)" + id="use14" + x="0" + y="0" + width="18" + height="12" /> + <use + xlink:href="#pt" + transform="matrix(-0.80901699,0.58778525,-0.58778525,-0.80901699,0,0)" + id="use16" + x="0" + y="0" + width="18" + height="12" /> + </g> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath3013"> + <rect + style="stroke:none" + id="rect3015" + width="16" + height="12" + x="1" + y="-7.1999998" /> + </clipPath> + </defs> + <g + id="flag" + transform="matrix(0.40000001,0,0,0.40000001,-0.4,2.88)" + clip-path="url(#clipPath3013)" + inkscape:label="#g3005"> + <rect + style="fill:#fecb00" + y="-7.1999998" + x="0" + id="rect18" + height="6" + width="18" /> + <rect + style="fill:#ea2839" + x="0" + id="rect20" + y="-1.2" + height="6" + width="18" /> + <rect + style="fill:#34b233" + x="0" + id="rect22" + y="-3.2" + height="4" + width="18" /> + <use + transform="translate(0,-7.2)" + height="12" + width="18" + id="use24" + y="6.4219999" + x="9" + xlink:href="#star" /> + </g> +</svg> diff --git a/s/flag/mn.svg b/s/flag/mn.svg new file mode 100755 index 0000000..d77048f --- /dev/null +++ b/s/flag/mn.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd"> + <path fill="#c4272f" d="M0 0h640v480H0z"/> + <path fill="#015197" d="M213.33 0h213.33v480H213.33z"/> + <path d="M102.54 244.2c9.912.286 11.437-3.152 11.437-6.59v-11.75c0-1.43 3.812-2.864 3.812-5.443 0-2.58-1.908-5.444-2.67-7.164-1.144 4.298-3.05 8.597-6.48 10.03-1.527-3.44-1.908-4.586-1.145-6.305.762-1.72 0-4.298-1.525-6.877-1.143 5.446-4.574 6.88-4.955 8.598-.382 1.72-1.525 6.59-3.813 4.012-2.287-2.58-3.812-5.732-4.956-9.17-2.288 6.876-1.144 8.31-.38 9.456.76 1.146 1.524 4.584 1.524 6.017s-1.525 7.164-.763 8.883c.763 1.72 1.144 6.877 9.913 6.304zm27.586 24.81a25 18.79 0 1 1-49.998 0 25 18.79 0 1 1 49.998 0z" fill-opacity=".867" fill="#f9cf02"/> + <path d="M140 276.43c-13.198 18.438-38.615 23.562-57.462 11.202-4.968-3.257-8.6-6.904-12.058-11.575 3.117 13.254 12.565 22.638 25.64 25.988 19.245 4.93 38.903-6.546 43.88-25.615zM66.874 421.71h74.38v15.473h-74.38zm3.64-109.36l33.17 20.127 33.55-20.127h-66.72zm0 21.79h67.1v15.474h-67.1zm0 112.95l33.17 15.76 33.55-15.76h-66.72zM20.315 312.58h32.377v149.61H20.316zm133.194 0h32.377v149.61H153.51zm-72.357 52.55c9.9-7.327 24.69-12.815 30.008-6.877 5.348 6.144 6.618 11.632 5.447 16.57-1.582 4.285-8.69 9.402-13.942 6.686-6.035-2.85-15.663 7.02-16.77 12.472-1.44 5.814-1.583 12.728.077 19.142-15.81-18.435-16.886-39.764-4.816-47.994zm26.885 9.11c-2.727 1.604-6.695-.026-8.856-3.638-2.16-3.61-.502-4.955 2.224-6.56 2.728-1.602 5.496-2.86 7.657.75 2.162 3.612 1.702 7.845-1.025 9.448zm15.275 32.746c-9.776 7.507-25.88 10.406-31.252 4.532-5.4-6.08-.927-13.755.18-18.728 1.523-4.324 8.56-8.11 13.828-5.468 6.047 2.762 15.76-8.072 14.61-15.015 1.367-5.856-.508-6.852-3.358-15.444 15.98 18.248 17.92 41.674 5.993 50.123zm-21.785-11.558c2.698-1.652 5.943-.807 8.14 2.783 2.2 3.59 2.05 6.41-.65 8.065-2.697 1.65-6.927 1.51-9.124-2.08s-1.064-7.114 1.634-8.766z" fill-opacity=".867" fill="#f9cf02"/> + </g> +</svg> diff --git a/s/flag/mo.svg b/s/flag/mo.svg new file mode 100755 index 0000000..7561ced --- /dev/null +++ b/s/flag/mo.svg @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg672" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3636"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs674"> + <clipPath id="clipPath8657" clipPathUnits="userSpaceOnUse"> + <rect id="rect8659" fill-opacity="0.67" height="480" width="640" y="32" x="-88"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath8657)" transform="translate(88 -32)"> + <rect id="rect681" height="480" width="720" y="32" x="-128" fill="#199d00"/> + <path id="path678" stroke-linejoin="round" d="m230.79 300.78c-11.285 7.8571-23.091 14.804-34.377 22.661-14.142 1.0005-27.856 1.1428-42.426 0.42866 0 0-30.427-5.1419-38.141-18.427-0.42866-1.286 9.8562-6.0002 9.8562-6.0002 15.571 11 32.856 20.714 65.14 19.286-39.855-3.5715-66.854-25.57-74.996-45.855 21.57-15.142 57.283-14.857 86.567 5.9992-9.1421-11.428-39.712-24.141-62.568-20.57-3.286-3.4292-6.1424-7.7148-9.4285-11.143 26.284-5.857 62.855 11 76.282 24.856-14.142-22.713-24.428-48.426-7.7139-79.711 3.2851 3.1428 6.9998 6.2856 10.285 9.4285-12.57 22.998-7.9993 49.855 2.1433 68.567-17.571-36.284-3.4292-72.139 19.712-89.567 26.999 16.285 34.713 59.569 18.857 90.425 8.9989-5.1429 16.285-43.713 3.8569-69.426 2.8574-3.4283 5.7138-6.8566 8.5712-10.285 18.714 25.284 7.4284 65.996-8.1425 81.424 11.856-10.286 42.568-30.427 78.425-25.713-2.8574 3.4283-7.4284 6.4279-10.286 9.8562-29.427-1.1428-53.282 11.428-63.853 22.284 25.856-17.141 61.568-25.714 87.852-6.4279-12.142 32.427-46.57 42.141-74.996 44.997 24.141 1.8568 46.57-5.2851 64.711-17.999 3.4283 1.8569 6.8566 3.7147 10.285 5.5716-7.7139 7.2852-18.856 14.57-34.712 16.713-15.285 2.0001-29.713 1.4292-44.997 1.7146-11.856-7.7139-24.05-15.376-35.906-23.089z" stroke-width="1pt" fill="#feffff"/> + <path id="path683" d="m230.79 308.36-29.394 22.121-78.787-0.30286c0.96762 3.1748 3.9798 7.232 5.7573 9.0908l78.182 0.30384 24.243-18.788 23.333 18.484h79.091c2.2729-2.4239 4.6968-5.7573 6.8178-8.636l-80.152 0.15192-29.09-22.425z" stroke-width="1pt" fill="#fff"/> + <path id="path687" stroke-linejoin="round" d="m185.64 384.34c22.627 11.168 70.708 10.252 92.425-0.27384l-92.425 0.27384z" stroke-width=".95194pt" fill="#fff"/> + <path id="path688" stroke-linejoin="round" d="m133.6 346.85c0.90956 0 194.31-0.15192 194.31-0.15192-3.3838 3.8386-7.3742 7.98-11.516 11.515l-172.84-0.75668c-3.2444-2.2497-7.56-7.499-9.9471-10.606z" stroke-width="1pt" fill="#fff"/> + <path id="path689" stroke-linejoin="round" d="m146.95 360.79 166.87 0.45575c-3.1312 2.4239-5.6557 5.3026-9.2417 7.1207l-148.33-0.12579c-3.4244-1.8404-6.9369-4.9668-9.2901-7.4507z" stroke-width="1pt" fill="#fff"/> + <path id="path690" stroke-linejoin="round" d="m162.15 373.21 136.36-0.33286c-3.6363 2.3349-7.7274 4.8216-12.272 7.0056h-111.82c-3.7882-1.315-8.1822-4.1453-12.272-6.6727z" stroke-width="1.0493pt" fill="#fff"/> + <polygon id="polygon564" transform="matrix(.67029 .26243 -.26243 .67029 199.1 40.067)" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" stroke-width="1pt" fill="#feb700"/> + <polygon id="polygon714" transform="matrix(.97279 0 0 .97279 41.481 44.793)" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" stroke-width="1pt" fill="#feb700"/> + <polygon id="polygon715" transform="matrix(.70551 -.14287 .14287 .70551 180.56 166.7)" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" stroke-width="1pt" fill="#feb700"/> + <polygon id="polygon716" transform="matrix(-.67029 .26243 .26243 .67029 262.73 39.932)" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" stroke-width="1pt" fill="#feb700"/> + <polygon id="polygon717" transform="matrix(-.70551 -.14287 -.14287 .70551 279.36 166.39)" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" stroke-width="1pt" fill="#feb700"/> + </g> +</svg> diff --git a/s/flag/mp.svg b/s/flag/mp.svg new file mode 100755 index 0000000..35cf263 --- /dev/null +++ b/s/flag/mp.svg @@ -0,0 +1,268 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg id="svg559" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:title/> + <dc:description/> + <dc:subject> + <rdf:Bag> + <rdf:li>micronesia</rdf:li> + <rdf:li/> + <rdf:li>oceania</rdf:li> + <rdf:li>flag</rdf:li> + <rdf:li>sign</rdf:li> + </rdf:Bag> + </dc:subject> + <dc:publisher> + <cc:Agent rdf:about="http://www.openclipart.org"> + <dc:title/> + </cc:Agent> + </dc:publisher> + <dc:creator> + <cc:Agent> + <dc:title/> + </cc:Agent> + </dc:creator> + <dc:rights> + <cc:Agent> + <dc:title/> + </cc:Agent> + </dc:rights> + <dc:date/> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <cc:license rdf:resource=""/> + <dc:language>en</dc:language> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs561"> + <clipPath id="clipPath4082" clipPathUnits="userSpaceOnUse"> + <rect id="rect4084" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath4082)"> + <rect id="rect828" fill-rule="evenodd" height="480" width="960" y="3.7061e-7" x="-160" fill="#0071bc"/> + <g id="g3950" transform="matrix(.87024 0 0 .87024 -111.69 24.153)"> + <path id="path588" d="m553.43 392.43s17.493-18.502 34.313-14.97c5.0462-19.511 24.053-21.025 24.053-21.025s-1.8502-21.53 22.539-26.239c0.67284-14.634 15.475-26.744 15.475-26.744s-3.0277-22.707 12.447-27.921c-9.4193-17.998 3.1958-31.118 3.0277-31.454-0.16816-0.33632-15.979-28.426-1.8503-36.5-14.97-12.615-10.092-26.912-10.092-26.912s-16.316-4.2052-10.429-23.717c-13.456-2.3547-16.147-24.053-16.147-24.053s-20.689 4.2049-23.212-13.793c-13.624 2.1868-15.138-11.269-15.306-11.269-0.16816 0-27.081 7.2326-32.463-13.12-10.428 5.3826-14.97-4.2051-14.97-4.2051s-14.97 7.4009-23.885-6.8962c-17.829 11.101-27.753-0.50469-27.753-0.50469s-23.38 15.475-31.117 3.5323c-13.793 13.961-26.071 7.9056-26.071 7.9056s-10.429 18.502-27.249 13.792c-3.8687 17.157-23.212 17.493-23.212 17.493s2.0184 15.138-21.193 19.175c-3.0276 17.829-15.138 20.857-15.138 20.857s1.1774 17.325-9.7557 22.875c3.8687 9.7559-6.2235 21.698-6.2235 21.698s10.765 13.456-3.8686 28.594c14.129 3.7003 3.8686 28.09 3.8686 28.09s19.511 8.7465 7.2327 24.894c13.961 4.5415 9.5875 15.643 9.7557 22.203 8.9147 4.0366 16.82 2.0183 12.952 20.016 27.417 3.0277 14.465 18.166 14.465 18.166s12.783 0.50467 7.7373 10.597c23.38-0.50449 26.744 17.493 26.744 17.493s21.698-5.719 24.558 2.6912c2.8594 8.4102-9.4193 65.094-9.4193 65.094s-18.334 0-31.958-14.633c-31.958-0.841-24.894-21.866-25.399-21.866-0.5046 0-10.597 3.8687-15.811-13.624-21.362 4.3733-20.689-13.624-20.857-13.792-0.16819-0.16817-9.5875-4.3733-6.0553-13.288-22.034 2.0181-20.352-19.511-20.352-19.511-4.8218-1.9624-6.616-6.4477-5.8871-10.933-2.8594-1.0094-22.371-1.3457-12.279-27.08-18.67-11.27-7.0645-24.221-7.0645-24.221s-25.735-13.288-5.8871-28.594c-14.802-21.866 1.1774-32.799 1.1774-32.799s-20.521-20.857 0.33642-35.659c-3.364-31.622 15.475-39.191 15.475-39.191s-9.9239-25.735 16.988-36.5c1.682-26.071 20.521-26.744 20.521-26.744s0.5046-20.689 30.108-18.67c5.7188-18.502 25.903-14.802 25.903-14.802s6.2235-22.371 33.64-11.606c13.961-27.249 34.65-13.288 34.65-13.288s13.12-8.5784 19.68-5.8872c8.3297-14.315 26.063-0.55493 37.529 2.2153 4.1555-1.616 18.987-12.812 30.425 1.317 15.138-9.924 28.09 7.9055 28.09 7.9055s20.857-10.596 30.613 13.624c44.237-4.037 37.845 24.894 37.845 24.894s34.818-7.9055 27.249 26.744c31.622 2.1866 28.426 23.044 28.426 23.044s20.016 15.138 11.269 28.762c17.829 0.84111 11.269 17.998 11.269 17.998s13.624 5.2143 2.3548 26.408c26.071 20.857 5.0462 41.546 4.878 41.378-0.16835-0.16816 13.961 16.82 1.1773 36.332 3.8687 30.949-11.774 38.855-11.774 38.855s4.0368 20.016-13.456 25.735c-0.33632 23.548-22.539 26.408-22.539 26.408s5.8872 10.229-16.147 20.994c-0.86903 15.757-23.885 17.02-23.885 17.02s-2.1865 28.931-31.454 21.193c-7.1033 23.212-41.378 16.316-42.05 15.979-0.67283-0.33651-6.5598-49.788-6.5598-49.956z" fill-rule="evenodd" stroke="#000" stroke-width="2.1344" fill="#fff"/> + <path id="path711" stroke-linejoin="round" d="m340.86 114.83c0.0856 0 7.4178 6.3592 6.0485 15.944-1.3691 9.5845-6.9043 22.908-5.7919 32.834 0.68009 3.9794 0.42257 11.11 0.42257 11.11s-6.647-9.4449-6.7326-19.543 7.1978-19.686 7.1978-27.131-1.3156-13.385-1.1444-13.214z" fill-rule="evenodd" stroke="#000" stroke-width="2.1344" fill="#217900"/> + <path id="path712" stroke-linejoin="round" d="m337.22 117.69s-9.6217 9.1851-10.861 18.112c-0.9149 4.6011-1.27 26.041-1.3782 35.556-0.21625 2.9195-1.4263 14.444-1.6831 18.637-0.25665 4.1931 7.0778-7.1578 7.497-16.4-0.22952-9.5666-0.23009-29.717 0.74307-32.745 0.86505-3.8928 0.67662-8.1937 2.0148-12.098 1.7705-5.4178 3.7528-10.976 3.6672-11.062z" fill-rule="evenodd" stroke="#000" stroke-width="2.1344" fill="#217900"/> + <g id="g771" fill-rule="evenodd" stroke="#ef8a10" fill="#ffd200" transform="matrix(1.9196 0 0 1.9196 249.65 5.1721)"> + <path id="path747" d="m155.88 42.98s6.4988-2.9978 8.3564-8.5807-5.6242-5.6367-6.6127-3.8621c-0.9884 1.7746 0.8431 6.1929 0.3714 7.361-0.4718 1.168-3.1156 3.9879-2.1151 5.0818z" stroke-width="1.1119"/> + <path id="path748" d="m98.281 45.017s4.2188-5.7813 3.125-11.563c-1.0938-5.7812-7.6563-2.1876-7.6563-0.15625 0 2.0313 3.75 5.0001 3.9063 6.2501 0.1562 1.25-0.7813 5 0.625 5.4688z" stroke-width="1.1119pt"/> + <path id="path749" d="m86.875 48.455s4.2188-5.7813 3.125-11.563c-1.0938-5.7812-7.6563-2.1876-7.6563-0.15625 0 2.0313 3.75 5.0001 3.9063 6.2501 0.1562 1.25-0.7813 5 0.625 5.4688z" stroke-width="1.1119pt"/> + <path id="path750" d="m74.219 52.361s4.2188-5.7813 3.125-11.563c-1.0938-5.7812-7.6563-2.1876-7.6563-0.15625 0 2.0313 3.75 5.0001 3.9063 6.2501 0.1562 1.25-0.7813 5 0.625 5.4688z" stroke-width="1.1119pt"/> + <path id="path751" d="m65.313 61.267s4.2188-5.7813 3.125-11.563c-1.0938-5.7812-7.6563-2.1876-7.6563-0.15625 0 2.0313 3.75 5.0001 3.9063 6.2501 0.1562 1.25-0.7813 5 0.625 5.4688z" stroke-width="1.1119pt"/> + <path id="path753" d="m55.938 69.861s4.2188-5.7813 3.125-11.563c-1.0938-5.7812-7.6563-2.1876-7.6563-0.15625 0 2.0313 3.75 5.0001 3.9063 6.2501 0.1562 1.25-0.7813 5 0.625 5.4688z" stroke-width="1.1119pt"/> + <path id="path755" d="m77.493 19.798s-5.6182 4.4338-6.1194 10.296c-0.50122 5.8624 6.786 4.166 7.3322 2.2095 0.54628-1.9565-2.2672-5.8244-2.0816-7.0703 0.18571-1.246 2.0972-4.6057 0.86872-5.4354z" stroke-width="1.1119"/> + <path id="path756" d="m96.243 14.016s-5.6182 4.4338-6.1194 10.296c-0.50122 5.8624 6.786 4.166 7.3322 2.2095 0.54628-1.9565-2.2672-5.8244-2.0816-7.0703 0.18571-1.246 2.0972-4.6057 0.86872-5.4354z" stroke-width="1.1119"/> + <path id="path757" d="m26.37 64.632s1.1868 7.0579 6.0863 10.316c4.8995 3.2579 6.9154-3.9474 5.4625-5.367s-6.1971-0.81214-7.2004-1.5739c-1.0032-0.76186-3.0303-4.0531-4.3484-3.3749z" stroke-width="1.1119"/> + <path id="path758" d="m17.006 88.597s0.05808 7.1567 4.382 11.147c4.324 3.9903 7.4517-2.8067 6.241-4.4378s-5.9913-1.7799-6.8618-2.6905c-0.87044-0.91064-2.3527-4.4806-3.7613-4.0188z" stroke-width="1.1119"/> + <path id="path759" d="m38.61 115.37s-2.5544-6.6857-7.9998-8.9142c-5.4455-2.2285-6.0019 5.2328-4.2977 6.3383 1.7042 1.1054 6.2356-0.4251 7.3694 0.1241 1.1337 0.5492 3.7696 3.3764 4.9282 2.4518z" stroke-width="1.1119"/> + <path id="path760" d="m34.122 103.8s4.3306-5.6981 3.3496-11.5c-0.98108-5.8014-7.6123-2.3362-7.6519-0.30525-0.0395 2.0309 3.652 5.0721 3.7839 6.3249 0.13184 1.2528-0.87842 4.9837 0.5184 5.4798z" stroke-width="1.1119"/> + <path id="path761" d="m169.16 48.761s6.4988-2.9978 8.3564-8.5807-5.6242-5.6367-6.6127-3.8621c-0.9884 1.7746 0.8431 6.1929 0.3714 7.361-0.4718 1.168-3.1156 3.9879-2.1151 5.0818z" stroke-width="1.1119"/> + <path id="path762" d="m188.81 58.563s3.8227-6.0505 2.3447-11.746c-1.478-5.6952-7.7854-1.6707-7.6496 0.35612 0.1359 2.0268 4.076 4.7381 4.3156 5.9748 0.2394 1.2368-0.4452 5.0411 0.9893 5.4147z" stroke-width="1.1119"/> + <path id="path763" d="m242.45 114.25s-2.5635-6.682-8.012-8.903c-5.4486-2.2211-5.9948 5.2409-4.2891 6.3441 1.7058 1.103 6.235-0.4336 7.3696 0.1139 1.1345 0.5477 3.7741 3.3714 4.9315 2.445z" stroke-width="1.1119"/> + <path id="path765" d="m216.22 118.4s0.1487-7.1553 4.5228-11.091c4.3742-3.9354 7.4155 2.9005 6.1843 4.5163-1.2313 1.6156-6.0131 1.7039-6.8953 2.6034-0.8819 0.8996-2.409 4.4505-3.8118 3.9709z" stroke-width="1.1119"/> + <path id="path766" d="m212 42.52s-6.6904-2.5414-11.977 0.04102c-5.287 2.5825-0.0872 7.9621 1.8721 7.4255 1.9591-0.53675 3.8315-4.9376 4.9959-5.4188 1.1644-0.48092 5.0288-0.56733 5.1093-2.0477z" stroke-width="1.1119"/> + <path id="path767" d="m196.69 29.707s-6.6904-2.5414-11.977 0.04102c-5.287 2.5825-0.0872 7.9621 1.8721 7.4255 1.9591-0.53675 3.8315-4.9376 4.9959-5.4188 1.1644-0.48092 5.0288-0.56733 5.1093-2.0477z" stroke-width="1.1119"/> + <path id="path768" d="m173.86 17.489s-5.672 4.3645-6.2451 10.22c-0.573 5.856 6.7342 4.249 7.3045 2.2992 0.5702-1.9496-2.1955-5.8515-1.9947-7.0953 0.201-1.2437 2.1536-4.5796 0.9353-5.4243z" stroke-width="1.1119"/> + <path id="path769" d="m158.99 13.912s-2.5866 6.6731-0.0399 11.977c2.5467 5.3043 7.9613 0.14106 7.4379-1.8218-0.5234-1.9627-4.9116-3.8648-5.3848-5.0325-0.4731-1.1676-0.5334-5.0325-2.0132-5.123z" stroke-width="1.1119"/> + <path id="path770" d="m116.82 39.627s4.6265-5.4604 3.9542-11.306c-0.6722-5.8455-7.4775-2.7366-7.6247-0.71046-0.1472 2.026 3.3778 5.2584 3.4432 6.5166 0.0653 1.2581-1.1415 4.9302 0.2273 5.4996z" stroke-width="1.1119"/> + </g> + <path id="path564" d="m522.23 103.74s21.288 1.3398 22.33 13.547-5.0615 19.651-5.0615 19.651 2.6796 26.35-18.162 34.091c-22.33 2.6797-57.314 0.59551-57.314 0.59551s-10.272 2.5309-14.44-18.757c-4.1683-21.288-5.3593-36.324-5.3593-36.324s2.0842-11.91 17.12-12.654c15.036-0.74428 60.738 0.14895 60.887-0.14879z" fill-rule="evenodd" stroke="#000" stroke-width="2.1344" fill="#8c8a8c"/> + <path id="path565" d="m539.35 136.79s-11.463 14.291-10.272 20.097" stroke="#000" stroke-linecap="round" stroke-width="2.1344" fill="none"/> + <path id="path566" d="m524.02 170.28c2.8286 2.3818 5.508 5.0614 6.1035 13.845 0.59547 8.7833 1.1909 17.567 1.1909 17.567l14.887 133.98 13.1 96.914 0.89321 15.036s-3.1261 11.016-11.909 11.909c-6.4012 13.398-41.088 17.269-44.512 17.12-3.1262-0.14878-14.143-4.7638-20.842-4.1683-6.6992 0.59528-18.311 5.0613-23.521 4.3171-5.2103-0.74425-16.971-4.7638-19.055-13.249-14.589-4.615-16.971-15.78-16.971-15.78l15.78-112.1 15.333-141.72s1.7864-18.906 9.3786-21.735c7.8901-0.7443 48.68 0.74429 60.143-1.9353z" fill-rule="evenodd" stroke="#000" stroke-width="2.1344" fill="#8c8a8c"/> + <path id="path567" d="m443.63 364.26-3.1262 99.147" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path568" d="m539.95 377.36 8.7833 81.729" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path571" d="m285.28 312.74-0.32653 1.1437" stroke="#000" stroke-width="1.1119" fill="none"/> + <path id="path579" d="m697.12 309.15 0.32653 1.1437" stroke="#000" stroke-width="1.1119" fill="none"/> + <path id="path583" stroke-linejoin="round" d="m274.24 178.89s6.5222 9.0307 7.6928 14.215c1.1707 5.1843 3.3447 15.386 6.1877 19.566 2.843 4.1808 19.065 27.427 19.901 37.126 0.16722 6.3548-6.6894 17.225-16.891 17.392-6.355-0.16701-22.744-4.3478-23.413-18.396-0.66895-14.048 5.017-14.382 5.686-22.911 0.66894-8.529 0.83618-46.826 0.83618-46.993z" stroke="#6b18b5" stroke-width="2.1344" fill="none"/> + <path id="path584" stroke-linejoin="round" d="m386.28 55.917s-6.7526 0.48154-11.951 3.2998c-4.028 2.4838-10.851 6.0573-15.619 12.668-12.127 9.4538-30.371 13.865-36.125 21.719-3.4442 5.343-3.2327 18.194 5.3973 23.636 5.5169 3.1588 21.693 8.1006 29.562-3.5553 7.8695-11.656 3.1848-14.896 7.044-22.531 6.3678-17.502 21.605-35.094 21.692-35.237z" stroke="#6b18b5" stroke-width="1.1119" fill="none"/> + <path id="path585" stroke-linejoin="round" d="m550.08 38.857s-5.0431-4.516-10.684-6.2902c-4.5862-1.166-12.224-0.65878-20.128-1.4344-15.227-2.1356-30.926-13.148-40.57-11.818-6.2344 1.2424-15.319 10.334-13.226 20.319 1.5684 6.1606 8.4583 18.62 22.306 16.166 13.848-2.4546 13.728-5.4753 21.898-8.0141 19.926-11.173 40.241-8.891 40.404-8.9282z" stroke="#6b18b5" stroke-width="1.1119" fill="none"/> + <path id="path586" stroke-linejoin="round" d="m712.52 196.74c1.1368-2.5984-0.95695-7.4825-2.4443-13.206-1.4438-4.5066-3.599-11.501-8.8713-17.718-6.2648-14.042-5.1911-33.299-11.433-40.771-4.3595-4.6266-16.885-7.5072-24.24-0.43687-4.3914 4.5969-13.073 19.112-3.6485 29.551 9.4247 10.438 13.532 6.5064 20.017 12.086 15.461 10.385 23.032 28.589 30.62 30.494z" stroke="#6b18b5" stroke-width="1.1119" fill="none"/> + <path id="path587" stroke-linejoin="round" d="m706.98 319.41c2.1112-2.9232 5.8916-8.557 5.442-13.249-0.3559-3.7162 1.7031-14.982 1.9281-19.897 1.3973-15.313 10.982-27.742 8.3758-41.046-1.542-6.167-10.575-14.964-20.447-12.391-6.0778 1.8642-19.61 9.3103-16.489 23.023 3.1212 13.713 7.5519 13.486 10.482 21.523 8.413 16.616 3.03 36.354 10.708 42.036z" stroke="#6b18b5" stroke-width="1.1119" fill="none"/> + <path id="path589" d="m594.29 416.76s-2.5958 4.9918 7.7874 9.3848" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path590" d="m615.06 404.98s11.581-2.7954 19.368 0" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path591" d="m649.6 375.82c0 0.19984-1.5973 5.1917 7.5878 12.38" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path592" d="m656.19 362.85s6.7888 4.9918 18.17 4.7922" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path593" d="m587.7 377.42s0.39929 13.178-6.3895 19.368" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path594" d="m610.46 357.05s11.182 2.7954 20.367-1.797" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path595" d="m682.15 337.69s2.3961 3.3945 14.776 2.7956" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path596" d="m633.83 329.9c0.39929 0.19964 14.576 4.7922 23.562 0.59912" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path597" d="m662.18 275.59s0.59893-0.79876 4.9918 14.576" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path598" d="m673.16 232.26s-0.59912 8.1865-7.1883 11.781" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path599" d="m715.29 198.71s-9.5844 7.7872-7.7872 10.982" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path600" d="m667.57 193.12s4.9918 8.3862-3.1947 14.177" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path601" d="m643.41 157.18s8.586-0.39953 12.38 6.9885" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path602" d="m627.24 132.82 6.5894-0.00015" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path603" d="m661.38 102.87c0 0.19961 1.797 1.7969-1.5973 5.1915" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path604" d="m600.08 103.67s4.5926 7.1883 3.7938 15.974" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path605" d="m626.64 79.308c1.9966-0.1996 8.7856-3.1948 8.7856-3.1948" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path606" d="m597.09 50.754c-0.19965 0-2.5958 8.9853 1.7972 12.18" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path607" d="m586.1 91.688c0 9.5844 7.5878 7.1881 2.3963 16.373" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path608" d="m567.53 83.7c-0.19965 0-11.98 9.1851-11.98 10.782" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path609" d="m536.78 78.709s4.9918 4.9917 3.7938 11.781" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path610" d="m522.21 74.715s-2.5957 7.5875-5.9901 9.5843" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path611" d="m495.65 72.718c-0.19965 0.3994-4.1933 8.9853-6.9887 10.583" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path612" d="m459.31 72.918c0.19964 0 3.9934 7.9871-0.99841 13.778" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path613" d="m450.92 31.585c0.19964 0.1996 0.79877 6.1897-2.995 11.381" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path614" d="m414.98 45.163c0 0.19976 1.5974 6.7892-8.9853 8.9854" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path615" d="m394.62 106.06c0.19968 0.39925 10.183 1.9967 10.183 1.9967" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path616" d="m369.66 129.23c0.19968-0.19978 12.18-3.7938 12.18-3.7938" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path617" d="m350.29 144.2c0.39936 0 8.3863 1.3978 10.383 0.39938" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path618" d="m344.7 151.59s2.5958 1.3978 0.39935 14.776" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path619" d="m305.76 116.45 4.7922 7.1883" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path620" d="m289.39 153.39c0-0.19976 4.7922 7.1881 11.182 8.5859" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path621" d="m327.13 190.93c0.19968 0 7.7873-1.5976 8.9854-2.3962" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path622" d="m323.73 218.08c0.19968 0-0.19967-4.9918 5.9902-8.3864" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path623" d="m315.54 230.46c0 0.19965 5.7906 7.388 9.784 8.3864" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path624" d="m312.15 244.24c0.59902-0.19984 6.7889-5.5912 13.977-5.1917" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path625" d="m310.15 262.81s0.19966 6.1901 18.57 4.5928" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path626" d="m311.95 284.57c0-0.19964 5.3912-12.38 16.373-16.972" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path627" d="m326.73 300.15s1.5974-5.1917 10.782-8.7856" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path628" d="m336.91 320.71s6.5893-5.3911 8.9854-6.1897" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path629" d="m345.1 336.69s3.9935 4.1931 13.977-2.9952" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path630" d="m296.97 340.08c1.1981-0.19965 15.774-3.594 20.766 3.9936" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path631" d="m302.77 352.06s15.375-1.9968 17.372-0.39929" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path632" d="m357.68 355.26s-1.9968 4.1933 16.972-2.7954" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path633" d="m381.24 362.85c-3.3945 5.7904 0.79869 10.383-3.5942 12.979" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path634" d="m323.53 370.83c0.59903-0.39909 6.9886-2.5956 5.9902-11.781" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path635" d="m329.32 384.61c0.79871-0.19964 11.381-4.7922 13.578-2.3961" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path636" d="m350.09 397.99s1.3977-9.3848 4.3928-10.383" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path637" d="m366.06 412.16s8.7857-0.19964 12.58-2.995" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path638" d="m383.03 380.42c0.19968 0.19964 8.1867 4.3927 25.159 0.19964" stroke="#000" stroke-width="2.1344" fill="none"/> + <path id="path639" d="m389.42 418.55s2.3961 12.18 2.1964 14.976" stroke="#000" stroke-width="2.1344" fill="none"/> + <g id="g915" fill-rule="evenodd" transform="matrix(1.9196 0 0 1.9196 249.65 3.7381)" stroke="#000" stroke-width="1.1119pt" fill="#de2010"> + <path id="path647" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.96309 -.12038 .12403 .99228 -6.4475 28.447)"/> + <path id="path648" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.96309 -.12038 .12403 .99228 -7.3076 17.88)"/> + <path id="path649" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.94879 -.20455 .21075 .97754 -16.448 27.945)"/> + <path id="path650" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.86530 -.43966 .45298 .89152 -29.753 81.132)"/> + <path id="path651" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.86530 -.43966 .45298 .89152 -33.93 71.671)"/> + <path id="path652" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.82496 -.51136 .52685 .84996 -39.274 83.797)"/> + <path id="path653" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.77166 -.58872 .60656 .79504 -42.963 99.176)"/> + <path id="path654" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.67817 -.69436 .71540 .69872 -42.035 126.69)"/> + <path id="path655" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.61142 -.75379 .77664 .62995 -42.664 140.85)"/> + <path id="path656" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.47780 -.84484 .87044 .49228 -32.121 172.16)"/> + <path id="path657" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.39893 -.88482 .91163 .41101 -29.187 185.56)"/> + <path id="path658" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.33871 -.90957 .93714 .34897 -28.529 194.55)"/> + <path id="path659" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.26830 -.93277 .96104 .27643 -25.473 205.3)"/> + <path id="path660" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.12145 -.96296 .99214 .12513 -6.5303 228.37)"/> + <path id="path663" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.038945 -.96981 .99920 .040124 .43684 239.44)"/> + <path id="path664" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(.038945 -.96981 .99920 .040124 -10.007 239.81)"/> + <path id="path665" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.21629 -.94618 .97486 -.22284 40.071 267.06)"/> + <path id="path667" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.29359 -.92512 .95316 -.30249 49.518 274.42)"/> + <path id="path669" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.40169 -.88356 .91034 -.41387 69.626 282.36)"/> + <path id="path670" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.47560 -.84607 .87171 -.49002 81.296 287.89)"/> + <path id="path672" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.56473 -.78938 .81330 -.58184 99.413 292.12)"/> + <path id="path673" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.62950 -.73876 .76115 -.64857 111.83 295)"/> + <path id="path674" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.68085 -.69172 .71269 -.70148 121.72 298.53)"/> + <path id="path675" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.73636 -.63231 .65147 -.75868 135.19 300.6)"/> + <path id="path676" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.79959 -.55018 .56685 -.82382 153.82 298.54)"/> + <path id="path677" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.88221 -.40465 .41691 -.90895 185.77 285.35)"/> + <path id="path678" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.91526 -0.323 .33279 -0.943 199.41 281.42)"/> + <path id="path680" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.96644 -.071865 .092361 -.79822 236.41 226.61)"/> + <path id="path679" d="m232.84 119.03c0.002-2.1088-0.79407-4.0584-2.0874-5.1136-1.2933-1.0551-2.8872-1.0551-4.1805 0s-2.0892 3.0048-2.0874 5.1136c-0.002 2.1088 0.79407 4.0584 2.0874 5.1136 1.2933 1.0551 2.8872 1.0551 4.1805 0s2.0892-3.0048 2.0874-5.1136z" transform="matrix(-.94631 -.21571 .22224 -.97499 217.21 271.39)"/> + </g> + <path id="path666" d="m679.93 195.92c2.4658-2.6398 4.76-3.3862 7.663-2.4235-1.0238-6.9639-3.2273-9.3266-5.9118-8.4881-2.6844 0.83854-3.8994 4.4185-1.7513 10.912z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path668" d="m683.7 216.93c2.6578-2.4464 5.0018-3.0177 7.8241-1.839-0.49604-7.0213-2.5155-9.5433-5.2554-8.9095-2.7399 0.63387-4.2211 4.1121-2.5687 10.748z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path671" d="m674.78 176.73c1.7146-3.1794 3.7441-4.484 6.7963-4.2902-2.7587-6.4756-5.49-8.2012-7.8736-6.7084-2.3834 1.4928-2.6493 5.2639 1.0773 10.999z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path681" d="m665.43 157.61c1.7146-3.1794 3.7441-4.484 6.7963-4.2902-2.7587-6.4756-5.49-8.2012-7.8736-6.7084-2.3834 1.4928-2.6493 5.2639 1.0773 10.999z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path682" d="m643 122.57c1.1814-3.4137 2.9749-5.0275 6.0185-5.3268-3.7637-5.948-6.7368-7.2122-8.8494-5.3557s-1.769 5.6213 2.8309 10.682z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path683" d="m628.34 107.3c1.0516-3.4559 2.7827-5.1363 5.8129-5.5504-3.9858-5.8015-7.0046-6.9524-9.0454-5.0174-2.041 1.935-1.5553 5.6842 3.2325 10.568z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path684" d="m597.51 81.29c-0.0639-3.6118 1.0656-5.7437 3.8209-7.0709-5.5789-4.2919-8.8054-4.4571-10.151-1.9877-1.3459 2.4695 0.27087 5.8868 6.33 9.0586z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path685" d="m613.55 93.316c0.56245-3.5683 2.044-5.4724 4.9874-6.3025-4.7513-5.1931-7.9005-5.9145-9.6533-3.7154-1.7532 2.1992-0.7525 5.8448 4.6659 10.018z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path686" d="m579.21 71.191c-0.43614-3.5859 0.46725-5.823 3.0709-7.4274-5.9918-3.6934-9.2183-3.5248-10.302-0.92968-1.0838 2.5952 0.8769 5.8275 7.2309 8.3571z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path687" d="m560.51 63.027c-0.94485-3.4866-0.37088-5.8299 1.9763-7.7904-6.4586-2.798-9.6278-2.1694-10.329 0.55407-0.70144 2.7236 1.7018 5.642 8.3524 7.2363z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path688" d="m540.36 56.784c-1.2366-3.3941-0.86307-5.7776 1.3096-7.9297-6.6723-2.2412-9.7768-1.3465-10.245 1.4265-0.4684 2.7732 2.1732 5.4777 8.935 6.5033z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path689" d="m520.57 52.952c-1.4789-3.2958-1.2787-5.7001 0.73273-8.0037-6.817-1.7528-9.8486-0.63596-10.115 2.1636-0.26664 2.7998 2.5637 5.3062 9.3819 5.8401z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path690" d="m499.61 51.346c-1.8127-3.1246-1.8628-5.5368-0.10116-8.0365-6.962-1.0365-9.8614 0.38865-9.8357 3.2007 0.0251 2.8124 3.1 5.0118 9.9368 4.8358z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path691" d="m458.57 54.437c-2.5124-2.5954-3.1425-4.9244-2.0356-7.775-7.0065 0.67255-9.4767 2.7547-8.7739 5.4776 0.7024 2.7234 4.2169 4.1165 10.81 2.2975z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path692" d="m478.77 51.778c-2.1381-2.9116-2.4472-5.3044-0.96463-7.979-7.033-0.28198-9.7624 1.4466-9.4345 4.2396 0.3273 2.7934 3.6208 4.6494 10.399 3.7394z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path693" d="m438.75 58.719c-2.8586-2.2084-3.816-4.4229-3.1293-7.4029-6.8377 1.6701-8.9839 4.0849-7.898 6.6789 1.0856 2.5945 4.7635 3.4694 11.027 0.72396z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path694" d="m400.8 76.168c-3.2265-1.6243-4.5877-3.6163-4.4804-6.6724-6.3952 2.9403-8.0428 5.7193-6.4832 8.0594 1.5593 2.3406 5.3365 2.4999 10.964-1.387z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path695" d="m419.1 66.82c-3.0053-2.0041-4.1146-4.1467-3.6368-7.1672-6.7049 2.1419-8.6778 4.7002-7.414 7.2123 1.2635 2.5127 4.9934 3.1295 11.051-0.04519z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path696" d="m366.76 99.867c-3.4941-0.91625-5.2406-2.5808-5.7725-5.5922-5.642 4.2086-6.6743 7.2699-4.6613 9.2336 2.0128 1.9643 5.7403 1.3328 10.434-3.6414z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path697" d="m383 86.576c-3.4117-1.187-5.0225-2.9831-5.317-6.0269-5.9541 3.754-7.2229 6.7251-5.3698 8.8403 1.8529 2.1158 5.6183 1.7781 10.687-2.8134z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path698" d="m352.33 114.08c-3.563-0.59482-5.4535-2.0937-6.257-5.0443-5.236 4.704-5.9858 7.8465-3.8026 9.619 2.1831 1.7732 5.8377 0.80551 10.06-4.5748z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path699" d="m339.4 130.86c-3.6023-0.26897-5.621-1.5901-6.689-4.4555-4.7874 5.1598-5.2488 8.3574-2.9138 9.9245 2.335 1.5677 5.8867 0.27228 9.6028-5.469z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path700" d="m328.58 148.02c-3.601 0.28584-5.7982-0.71054-7.2924-3.3786-3.9408 5.8321-3.9071 9.0626-1.3596 10.254 2.5475 1.1916 5.859-0.63239 8.652-6.875z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path701" d="m319.08 166.35c-3.5334 0.7507-5.8414 0.0479-7.6692-2.4038-3.1507 6.2942-2.6981 9.493-0.0176 10.343 2.6806 0.85098 5.7274-1.3873 7.6868-7.9396z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path702" d="m311.48 185.16c-3.3698 1.301-5.76 0.97275-7.9532-1.1584-2.1137 6.7138-1.16 9.8006 1.6214 10.216 2.7816 0.41553 5.4352-2.2772 6.3318-9.0572z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path703" d="m306.39 206.11c-3.2752 1.5238-5.682 1.356-8.0128-0.62331-1.6595 6.8403-0.50133 9.8562 2.3016 10.084 2.8031 0.22825 5.2706-2.6361 5.7112-9.4608z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path704" d="m304.32 223.56c-3.0834 1.633-5.4861 1.826-8.0061 0.59145-0.91718 5.5746 0.55108 7.778 3.3527 7.579 2.8019-0.19887 4.9424-2.772 4.6534-8.1704z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path705" d="m657.08 140.57c1.233-3.3953 3.0507-4.9817 6.0985-5.2347-3.6729-6.0045-6.6264-7.3137-8.767-5.4895-2.1404 1.8241-1.854 5.5938 2.6685 10.724z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path706" d="m686 238.23c2.6578-2.4464 5.0018-3.0177 7.8241-1.839-0.49603-7.0213-2.5155-9.5433-5.2554-8.9095-2.7399 0.63387-4.2211 4.1121-2.5687 10.748z" fill-rule="evenodd" fill="#ffe300"/> + <path id="path709" stroke-linejoin="round" d="m658.45 123.94c-0.0856 0-7.9585 7.873-6.5892 17.457 1.3691 9.5845 7.445 21.394 6.3325 31.321-1.1126 9.9267-2.9096 16.516-2.9096 16.516s9.2421-10.526 9.3278-20.624c0.0856-10.098-6.3327-23.362-6.3327-30.807s0.34247-14.034 0.17123-13.863z" fill-rule="evenodd" stroke="#000" stroke-width="2.1344" fill="#217900"/> + <path id="path710" stroke-linejoin="round" d="m673.08 156.11s-6.1615 4.5355-5.5624 14.976c0.59893 10.44 11.381 29.609 11.381 29.609s7.873 16.174 7.6162 20.367c-0.25665 4.1931 1.4549-4.0218 0.68474-13.264-0.77016-9.2421-12.665-29.609-12.665-29.609s-2.5673-4.1931-2.3105-11.125c0.25665-6.9317 0.94139-10.868 0.85578-10.954z" fill-rule="evenodd" stroke="#000" stroke-width="2.1344" fill="#217900"/> + <path id="path713" d="m487.93 26.748c0.00081-2.1606-2.4297-3.9125-5.4281-3.9125s-5.429 1.7518-5.4281 3.9125c-0.00081 2.1606 2.4297 3.9125 5.4281 3.9125s5.4289-1.7518 5.4281-3.9125z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path714" d="m490.25 35.848c0-2.0721-2.5017-3.7518-5.5878-3.7518-3.086 0-5.5878 1.6797-5.5878 3.7518s2.5017 3.7518 5.5878 3.7518c3.086 0 5.5878-1.6797 5.5878-3.7518z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path715" d="m497.19 25.072s-6.3861 4.7896-3.7518 6.7054c2.6341 1.9158 9.8983-4.1509 9.8983-4.1509l-6.1465-2.5545z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path716" d="m684.88 134.73c0.002-1.3615-0.63635-2.6205-1.6737-3.3019-1.0373-0.68136-2.3159-0.68136-3.3532 0-1.0373 0.68137-1.6755 1.9404-1.6737 3.3019-0.002 1.3615 0.63635 2.6205 1.6737 3.3019 1.0373 0.68136 2.3159 0.68136 3.3532 0 1.0373-0.68137 1.6755-1.9404 1.6737-3.3019z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path717" d="m682.44 125.6c0-2.2708-1.5681-4.1116-3.5025-4.1116s-3.5025 1.8408-3.5025 4.1116 1.5681 4.1116 3.5025 4.1116 3.5025-1.8408 3.5025-4.1116z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path718" d="m684.12 144.17c0-1.1775-0.61361-2.132-1.3706-2.132-0.75693 0-1.3706 0.95452-1.3706 2.132s0.61362 2.132 1.3706 2.132c0.75694 0 1.3706-0.95453 1.3706-2.132z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path719" d="m689.75 127.57c0-1.3457-0.61362-2.4366-1.3706-2.4366-0.75694 0-1.3706 1.0909-1.3706 2.4366s0.61361 2.4366 1.3706 2.4366c0.75693 0 1.3706-1.0909 1.3706-2.4366z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path720" d="m674.37 129.25c0-1.0933-0.61362-1.9797-1.3706-1.9797-0.75694 0-1.3706 0.88633-1.3706 1.9797 0 1.0933 0.61361 1.9797 1.3706 1.9797 0.75693 0 1.3706-0.88632 1.3706-1.9797z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path721" d="m676.81 142.35c0.00057-1.7667-1.295-3.1992-2.8934-3.1992s-2.8939 1.4325-2.8934 3.1992c-0.00057 1.7667 1.295 3.1992 2.8934 3.1992s2.8939-1.4325 2.8934-3.1992z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path722" d="m669.19 136.56c0-1.5139-1.0909-2.7411-2.4366-2.7411-1.3456 0-2.4365 1.2272-2.4365 2.7411s1.0909 2.7411 2.4365 2.7411c1.3457 0 2.4366-1.2272 2.4366-2.7411z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path723" d="m667.98 128.79c0.001-0.81683-0.40511-1.5721-1.0652-1.9808-0.66007-0.40873-1.4736-0.40873-2.1336 0-0.66005 0.40874-1.0662 1.164-1.0652 1.9808-0.001 0.81683 0.4051 1.5721 1.0652 1.9808 0.66007 0.40873 1.4736 0.40873 2.1336 0 0.66005-0.40873 1.0662-1.164 1.0652-1.9808z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path724" d="m702.69 168.28c-3.1455-4.1513-8.1812-5.9006-11.248-3.9071-3.0664 1.9936-3.0023 6.975 0.14324 11.126 3.1455 4.1514 8.1812 5.9006 11.248 3.907 3.0664-1.9935 3.0022-6.975-0.14326-11.126z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path725" d="m711.63 244.87c0.60954-5.094-1.875-9.58-5.5494-10.02-3.6744-0.43966-7.1472 3.3334-7.7567 8.4275-0.60954 5.094 1.875 9.58 5.5494 10.02 3.6744 0.43967 7.1472-3.3334 7.7567-8.4275z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path726" d="m713.52 289.45c1.0471-5.0224-1.0408-9.7061-4.6635-10.461-3.6227-0.75531-7.4083 2.7038-8.4555 7.7262-1.0471 5.0224 1.0408 9.7061 4.6634 10.461 3.6227 0.75532 7.4084-2.7038 8.4555-7.7262z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path727" d="m722.11 247.72c0-2.0185-1.3636-3.6548-3.0457-3.6548s-3.0457 1.6364-3.0457 3.6548c0 2.0185 1.3636 3.6549 3.0457 3.6549s3.0457-1.6364 3.0457-3.6549z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path728" d="m714.65 256.1-6.2436 7.0812s-5.8628 0.15223-5.5583 2.0558c0.30464 1.9035 8.0712 7.6143 7.9949 9.8985-0.0762 2.2844 5.1777-0.53289 5.1777-0.53289s4.1877-12.716 4.1877-12.792c0-0.0762-0.22843-8.8327-2.5126-8.6802-2.2844 0.15223-2.9033 2.8081-3.0457 2.9697z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path729" d="m303.97 253.3c0-1.6411-1.3304-2.9715-2.9716-2.9715-1.6411 0-2.9716 1.3304-2.9716 2.9715s1.3304 2.9715 2.9716 2.9715 2.9716-1.3304 2.9716-2.9715z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path730" d="m306.77 244.22c0-1.7324-1.3304-3.1367-2.9716-3.1367s-2.9716 1.4043-2.9716 3.1367c0 1.7323 1.3304 3.1367 2.9716 3.1367 1.6411 0 2.9716-1.4043 2.9716-3.1367z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path731" d="m282.37 201.04c-1.1145-2.4979-3.4354-3.8904-5.1839-3.1103-1.7485 0.78013-2.2625 3.4375-1.1481 5.9354 1.1145 2.4979 3.4354 3.8904 5.1839 3.1103 1.7485-0.78013 2.2625-3.4375 1.1481-5.9354z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path732" d="m289.74 227.94c-1.531-3.2375-4.7192-5.0423-7.1212-4.0312s-3.1081 4.4553-1.5771 7.6928 4.7192 5.0423 7.1212 4.0312 3.1081-4.4553 1.5771-7.6928z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path733" d="m297.63 247.67c0.49601-4.0437-1.1796-7.7583-3.7425-8.2968-2.563-0.53851-5.0427 2.303-5.5388 6.3467-0.49602 4.0437 1.1796 7.7583 3.7425 8.2968 2.563 0.5385 5.0427-2.303 5.5388-6.3468z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path734" d="m284.97 250.55c1.5852-3.753 0.9917-7.7846-1.3256-9.0048s-5.4808 0.83295-7.066 4.5859-0.9917 7.7846 1.3256 9.0048 5.4808-0.83295 7.066-4.5859z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path735" d="m279.2 242.07c0-1.9147-1.4782-3.4669-3.3017-3.4669s-3.3017 1.5522-3.3017 3.4669 1.4782 3.4669 3.3017 3.4669 3.3017-1.5522 3.3017-3.4669z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path736" d="m276.56 233.49c0-1.7324-1.3304-3.1367-2.9716-3.1367-1.6411 0-2.9716 1.4043-2.9716 3.1367 0 1.7323 1.3304 3.1367 2.9716 3.1367s2.9716-1.4043 2.9716-3.1367z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path737" d="m279.37 216.98c0-2.9176-1.2935-5.2829-2.889-5.2829-1.5956 0-2.889 2.3652-2.889 5.2829 0 2.9176 1.2934 5.2829 2.889 5.2829s2.889-2.3652 2.889-5.2829z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path738" d="m288.26 215.71c0.38495-2.8921-0.58515-5.4073-2.1668-5.6178-1.5816-0.21051-3.1758 1.9634-3.5608 4.8555-0.38494 2.8922 0.58515 5.4073 2.1668 5.6178 1.5816 0.21051 3.1758-1.9634 3.5608-4.8555z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path739" d="m351.6 89.333c1.1775-4.0958-0.0369-8.2123-2.7124-9.1943-2.6755-0.98204-5.799 1.5422-6.9764 5.638-1.1775 4.0958 0.0369 8.2123 2.7124 9.1943 2.6755 0.98204 5.799-1.5422 6.9764-5.638z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path740" d="m339.57 107.56c3.5285-3.0031 5.0359-7.1556 3.3668-9.275-1.6691-2.1193-5.8826-1.4029-9.4111 1.6002s-5.0359 7.1556-3.3668 9.275c1.6691 2.1193 5.8826 1.4029 9.4111-1.6002z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path741" d="m332.55 97.443c3.4894-2.5781 4.98-6.1429 3.3294-7.9623s-5.8172-1.2043-9.3066 1.3737c-3.4894 2.5781-4.98 6.1429-3.3294 7.9623s5.8172 1.2043 9.3066-1.3737z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path742" d="m359.61 79.649c2.3531-1.7988 3.3583-4.2862 2.2452-5.5556-1.1131-1.2695-3.9229-0.84032-6.276 0.95851s-3.3583 4.2862-2.2452 5.5556c1.1131 1.2695 3.9229 0.84032 6.276-0.95851z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path743" d="m345.5 96.89c1.6091-2.4867 1.7172-5.1673 0.24142-5.9873-1.4758-0.82004-3.9766 0.53102-5.5857 3.0177s-1.7172 5.1673-0.24142 5.9873c1.4758 0.82005 3.9766-0.53102 5.5857-3.0177z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path744" d="m365.86 86.235c2.5305-2.1326 3.5165-4.9576 2.2022-6.3097-1.3143-1.3522-4.4312-0.71947-6.9617 1.4131s-3.5165 4.9576-2.2022 6.3097c1.3143 1.3522 4.4312 0.71947 6.9617-1.4131z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path745" d="m329.07 111.09c2.3656-0.11805 4.1512-1.2964 3.9884-2.632-0.16282-1.3355-2.2125-2.3225-4.578-2.2044-2.3655 0.11805-4.1512 1.2964-3.9884 2.632 0.16282 1.3355 2.2125 2.3225 4.578 2.2045z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path746" d="m373.61 73.026c1.6091-2.4867 1.7172-5.1673 0.24142-5.9873-1.4758-0.82004-3.9766 0.53102-5.5857 3.0177s-1.7172 5.1673-0.24142 5.9873c1.4758 0.82004 3.9766-0.53102 5.5857-3.0177z" fill-rule="evenodd" fill="#6b18b5"/> + <path id="path764" d="m641.8 148.49s7.3382-11.615 4.501-22.547c-2.8372-10.933-14.945-3.2071-14.685 0.68363 0.26088 3.8906 7.8245 9.0954 8.2844 11.47 0.45956 2.3742-0.85463 9.6771 1.8991 10.394z" fill-rule="evenodd" stroke="#ef8a10" stroke-width="1.1119" fill="#ffd200"/> + <path id="path708" stroke-linejoin="round" d="m501.67 51.882s26.443 1.0271 26.614 18.142c-0.0856 2.6529-0.00019 5.8189-0.94139 13.435 5.2201-2.8238 8.7288-10.697 8.0441-15.746 0.0856-17.372-23.619-29.267-33.717-15.832z" fill-rule="evenodd" stroke="#000" stroke-width="2.6681" fill="#217900"/> + <path id="path707" stroke-linejoin="round" d="m484.9 51.112s21.308-4.45 21.479 12.665c0.17123 17.115-6.7604 19.853-6.7604 19.853s16.345-3.5087 16.43-20.88c0.0856-17.372-21.051-25.073-31.149-11.638z" fill-rule="evenodd" stroke="#000" stroke-width="2.6681" fill="#217900"/> + <g id="g802" transform="matrix(1.9196 0 0 1.9196 249.65 5.767)"> + <path id="path640" stroke-linejoin="round" d="m160.26 215.97s51.958-14.677 67.647-78.444c-9.1096 65.454-65.96 86.204-65.96 86.204l-1.6869-7.76z" fill-rule="evenodd" stroke="#000" stroke-width="1.1119pt" fill="#f7df73"/> + <path id="path793" d="m165.59 219.94c1.606 0 5.5788-4.3955 7.861-4.9026 2.2823-0.5071 2.5358-2.7895-0.0845-2.8739-2.6203-0.0845-4.9025 2.9584-4.9025 2.9584s-2.2823 1.9442-4.649 2.1978c-2.3668 0.2536-0.8453 3.2119 1.775 2.6203z" fill-rule="evenodd" fill="#8c1800"/> + <path id="path794" d="m195.51 197.62s-5.4097 3.1274-4.649 3.8882c0.7608 0.7608 5.5788-2.9584 5.6633-3.0429 0.0845-0.0846 2.0287-2.4513-1.0143-0.8453z" fill-rule="evenodd" stroke="#8c1800" stroke-width="1.1119pt" fill="#8c1800"/> + <path id="path795" d="m176.66 211.83s-1.6061-0.5917 2.5358-2.1977c4.1418-1.606 3.8882-3.4656 5.2407-4.2264 1.3524-0.7607 4.2263-2.7894 4.818-1.606s-3.043 3.5502-3.8882 3.8038c-0.8453 0.2536-4.9872 4.0573-6.1705 4.3954-1.1834 0.3381-2.0287 0.1691-2.5358-0.1691z" fill-rule="evenodd" fill="#8c1800"/> + <path id="path796" d="m203.54 189.68c-3.5501 3.9728-3.5501 3.8883-3.5501 3.8883" stroke="#8c1800" stroke-linecap="round" stroke-width="1.8068" fill="none"/> + <path id="path797" d="m208.87 183.17-3.3811 4.1419" stroke="#8c1800" stroke-linecap="round" stroke-width="1.6678" fill="none"/> + <path id="path798" d="m214.19 174.72-3.8038 6.086" stroke="#8c1800" stroke-linecap="round" stroke-width="1.5289" fill="none"/> + <path id="path799" d="m218.67 166.1-3.1275 6.255" stroke="#8c1800" stroke-linecap="round" stroke-width="1.3899" fill="none"/> + <path id="path800" d="m220.7 161.53-1.0143 2.1977" stroke="#8c1800" stroke-linecap="round" stroke-width="1.3899" fill="none"/> + <path id="path801" d="m222.98 155.53-0.8453 2.6203" stroke="#8c1800" stroke-linecap="round" stroke-width=".83392" fill="none"/> + </g> + <g id="g813" transform="matrix(-1.9021 0 0 1.9542 731.39 -4.3332)"> + <path id="path814" stroke-linejoin="round" d="m160.26 215.97s51.958-14.677 67.647-78.444c-9.1096 65.454-65.96 86.204-65.96 86.204l-1.6869-7.76z" fill-rule="evenodd" stroke="#000" stroke-width="1.1119pt" fill="#f7df73"/> + <path id="path815" d="m165.59 219.94c1.606 0 5.5788-4.3955 7.861-4.9026 2.2823-0.5071 2.5358-2.7895-0.0845-2.8739-2.6203-0.0845-4.9025 2.9584-4.9025 2.9584s-2.2823 1.9442-4.649 2.1978c-2.3668 0.2536-0.8453 3.2119 1.775 2.6203z" fill-rule="evenodd" fill="#8c1800"/> + <path id="path816" d="m195.51 197.62s-5.4097 3.1274-4.649 3.8882c0.7608 0.7608 5.5788-2.9584 5.6633-3.0429 0.0845-0.0846 2.0287-2.4513-1.0143-0.8453z" fill-rule="evenodd" stroke="#8c1800" stroke-width="1.1119pt" fill="#8c1800"/> + <path id="path817" d="m176.66 211.83s-1.6061-0.5917 2.5358-2.1977c4.1418-1.606 3.8882-3.4656 5.2407-4.2264 1.3524-0.7607 4.2263-2.7894 4.818-1.606s-3.043 3.5502-3.8882 3.8038c-0.8453 0.2536-4.9872 4.0573-6.1705 4.3954-1.1834 0.3381-2.0287 0.1691-2.5358-0.1691z" fill-rule="evenodd" fill="#8c1800"/> + <path id="path818" d="m203.54 189.68c-3.5501 3.9728-3.5501 3.8883-3.5501 3.8883" stroke="#8c1800" stroke-linecap="round" stroke-width="1.8068" fill="none"/> + <path id="path819" d="m208.87 183.17-3.3811 4.1419" stroke="#8c1800" stroke-linecap="round" stroke-width="1.6678" fill="none"/> + <path id="path820" d="m214.19 174.72-3.8038 6.086" stroke="#8c1800" stroke-linecap="round" stroke-width="1.5289" fill="none"/> + <path id="path821" d="m218.67 166.1-3.1275 6.255" stroke="#8c1800" stroke-linecap="round" stroke-width="1.3899" fill="none"/> + <path id="path822" d="m220.7 161.53-1.0143 2.1977" stroke="#8c1800" stroke-linecap="round" stroke-width="1.3899" fill="none"/> + <path id="path823" d="m222.98 155.53-0.8453 2.6203" stroke="#8c1800" stroke-linecap="round" stroke-width=".83392" fill="none"/> + </g> + <path id="path578" stroke-linejoin="round" d="m691.89 247.23c0.49008 7.6784 8.0051 15.029 5.0646 28.426-3.7575 15.193-16.99 51.298-14.703 57.669-3.9209-5.3913-3.2674-10.456-3.5942-17.971-0.32672-7.5148 10.946-35.451 11.926-44.926-0.00019-8.495 0.81662-20.094 1.3067-23.198z" fill-rule="evenodd" stroke="#000" stroke-width="2.6681" fill="#217900"/> + <path id="path577" stroke-linejoin="round" d="m691.89 247.39s12.253 15.52 11.599 27.773c-0.65344 12.253-7.515 26.629-5.2278 33-3.9209-5.3913-4.901-8.8221-5.2278-16.337-0.32672-7.5148 6.0446-15.847 4.7377-24.015-1.3071-8.1685-6.0448-20.421-5.8814-20.421z" fill-rule="evenodd" stroke="#000" stroke-width="2.6681" fill="#217900"/> + <path id="path570" stroke-linejoin="round" d="m290.51 250.82c-0.49008 7.6784-6.2081 14.539-3.2676 27.936 3.7575 15.193 17.154 34.471 15.03 56.526 3.9209-5.3915 5.0646-11.436 5.3913-18.951 0.32672-7.5148-14.867-32.837-15.847-42.312 0.00019-8.495-0.81662-20.094-1.3067-23.198z" fill-rule="evenodd" stroke="#000" stroke-width="2.6681" fill="#217900"/> + <path id="path569" stroke-linejoin="round" d="m290.51 250.99s-11.926 15.03-11.273 27.283c0.16336 8.1683 15.193 42.312 12.906 48.684 3.9209-5.3911 5.0644-4.7379 4.9009-12.906-4.411-20.911-12.253-34.308-10.946-42.476 1.3071-8.1685 4.5745-20.584 4.4112-20.584z" fill-rule="evenodd" stroke="#000" stroke-width="2.6681" fill="#217900"/> + <path id="path2860" stroke-linejoin="round" fill="#fff" stroke-dashoffset="1" transform="matrix(1.3389 0 0 1.3391 360.43 -54.894)" stroke="#000" stroke-linecap="square" stroke-width="1.6608" d="m99.959 125.78 22.172 68.231 71.743 0.003-58.04 42.172 22.167 68.233l-58.041-42.15-58.044 42.16 22.168-68.23-58.04-42.17h71.743z"/> + </g> + </g> +</svg> diff --git a/s/flag/mq.svg b/s/flag/mq.svg new file mode 100755 index 0000000..3b11e74 --- /dev/null +++ b/s/flag/mq.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3644"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" stroke-width="1pt" fill-rule="evenodd"> + <rect id="rect171" height="480" width="640" y="0" x="0" fill="#fff"/> + <rect id="rect403" height="480" width="213.33" y="0" x="0" fill="#00267f"/> + <rect id="rect135" height="480" width="213.33" y="0" x="426.67" fill="#f31830"/> + </g> +</svg> diff --git a/s/flag/mr.svg b/s/flag/mr.svg new file mode 100755 index 0000000..d1a6982 --- /dev/null +++ b/s/flag/mr.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3652"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath7229" clipPathUnits="userSpaceOnUse"> + <rect id="rect7231" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath7229)"> + <rect id="rect149" transform="scale(-1)" height="480" width="685.71" y="-480" x="-662.86" fill="#2d9c4b"/> + <path id="path673" d="m67.255 175.27c69.077 191.41 277.65 198.43 353.18 0-0.53734 265.16-348.61 277.45-353.18 0z" fill="#ffe900"/> + <polygon id="polygon638" transform="matrix(.57539 -.021671 .010838 .56753 -68.784 7.4629)" points="533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28" fill="#ffe900"/> + </g> +</svg> diff --git a/s/flag/ms.svg b/s/flag/ms.svg new file mode 100755 index 0000000..db84863 --- /dev/null +++ b/s/flag/ms.svg @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3716"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <rect id="rect877" height="480" width="640" y="7.1054e-15" x="0" stroke-width="1pt" fill="#006"/> + <g id="g678" transform="matrix(1.2096 0 0 1.2172 359.74 169.23)"> + <g id="g555" fill-rule="evenodd"> + <path id="path552" d="m40.148 18.913h177.16l-0.211 126.06c1.474 50.675-30.111 82.12-88.227 96.298-41.275-10.25-88.863-31.45-88.933-94.86l0.211-127.5z" fill="#fff"/> + <path id="path553" d="m44.069 22.713h169.3l-0.201 120.79c1.408 48.558-28.777 78.69-84.317 92.276-39.437-9.82-84.916-30.13-84.982-90.9l0.201-122.17z" stroke="#000" stroke-width="1pt" fill="#00a2bd"/> + <path id="path554" d="m212.06 157.82c-6.159 46.351-41.856 66.603-83.209 77.352-36.604-9.819-75.984-25.495-83.617-77.119l166.83-0.233z" fill="#a53d08"/> + </g> + <g id="g580" stroke="#000" fill-rule="evenodd"> + <path id="path578" stroke-linejoin="round" d="m155.77 197.17c0.094 0.094 0.658 9.295-4.319 14.929 4.413 1.409 7.418-0.282 8.826-2.066 1.409-1.784 1.879-4.037 1.879-4.037s1.22-0.751 1.408-2.441c0.094-2.348-0.939-2.348-1.784-2.817l0.187-5.258s-5.07-3.099-6.197 1.69z" stroke-width="1.25" fill="#ffc6b5"/> + <path id="path579" d="m155.49 210.32-1.503-1.221" stroke-linecap="round" stroke-width="1pt" fill="#ff9a08"/> + </g> + <path id="path671" d="m141.64 69.393s0.117 5.625-0.235 6.211c-0.351 0.5859-3.554 2.0703-3.554 2.0703l2.734 5.8203s7.695-1.0938 7.734-1.0938 3.321-8.7109 3.321-8.7109-1.719-2.8906-1.289-5.8984c-2.578-8.1641-8.594 1.6406-8.711 1.6015z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#ffc6b5"/> + <path id="path583" stroke-linejoin="round" d="m131.45 203.09s4.319 4.319 9.295 3.756c11.268-1.22 14.554-11.267 18.028-11.361s5.634 6.103 8.92 5.352c-2.817-5.164-5.821-16.619-5.352-24.694 0.47-8.075 0.47-42.065 0.47-42.065s-5.634-17.558-8.263-20.469c2.629-2.817 4.413-7.793 4.319-13.239-0.094-5.4459 0-11.455 0-11.455s1.314-1.5023 1.221-5.7275c-0.094-4.2252-7.136-10.328-8.075-10.047-0.939 0.2817-9.765 7.8871-10.516 9.6711-0.752 1.784-1.784-6.4787-0.094-7.2299 1.69-0.7511-3.944-1.2206-7.512 3.0047-3.568 4.2252-2.535 124.69-2.441 124.5z" fill-rule="evenodd" stroke="#000" stroke-width="1.25" fill="#005121"/> + <path id="path559" d="m89.102 45.097 33.044 0.118-0.236-15.224 12.038 0.118 0.118 15.106h32.926l0.118 11.802-33.044 0.118-0.264 139.18-11.742 0.074-0.15-139.37-32.815 0.1181 0.007-12.038z" fill-rule="evenodd"/> + <path id="path560" d="m122.03 81.959s-2.258-0.3984-3.984 0.1328 2.656-19.586 2.656-21.246c1.527-0.7304 9.162-2.1246 8.963-7.5024-0.531-3.2533-11.818 0.1991-11.619 4.3155-0.73 2.0582-8.099 23.038-6.639 29.943 2.589 2.0583 7.37 1.6598 10.623 1.1287v-6.7721z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#ffc6b5"/> + <path id="path561" d="m124.22 53.211s-0.664 3.718 2.722 4.2491" stroke="#000" stroke-linecap="round" stroke-width=".625" fill="none"/> + <path id="path563" d="m129.2 53.144c-0.133 0.0664-4.382 2.7221-4.382 2.7221" stroke="#000" stroke-width=".375" fill="none"/> + <path id="path564" d="m128.94 54.804-2.988 2.191" stroke="#000" stroke-width=".375" fill="none"/> + <path id="path565" d="m127.81 52.348-3.32 1.9918" stroke="#000" stroke-width=".375" fill="none"/> + <path id="path566" d="m95.49 163.56 30.14 31.267c10.422-11.455 3.193-54.272-10.515-62.158-1.643 5.07-4.437 11.149-7.407 13.109-6.534 4.453-22.546 9.659-17.194 12.993 1.2206-1.69 4.413-3.286 5.9153 0.47 1.784 5.915-6.6665 6.291-6.6665 6.291s-5.3519-0.658-6.2909-6.104c-0.9389-5.445 7.9717-10.417 8.7322-10.797 0.7511-0.282 12.394-3.38 14.366-13.709 2.441-10.141 4.976-8.638 5.446-8.826 15.21 1.502 25.163 28.732 25.727 47.886 0.563 19.154-7.793 31.83-9.296 32.675-1.502 0.845-36.243-41.219-36.243-41.219l3.2863-1.878z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#ff9a08"/> + <path id="path567" d="m117.46 134.45 0.187 56.43" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path568" d="m114.08 135.48c0 0.094 0.187 51.267 0.187 51.267" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path569" d="m110.42 142.9 0.187 40.75" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path570" d="m107.42 145.81 0.188 33.709" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path571" d="m104.22 147.32v28.45" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path572" d="m100.75 149.57v22.534" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path573" d="m97.744 151.35v17.276" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path574" d="m95.021 167.13 31.079 35.58" stroke="#ffdf00" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path575" d="m127.6 144.69s14.085 30.798 1.033 56.149" stroke="#ffdf00" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path576" d="m91.359 160.65s1.0329-2.723 2.3474-1.596" stroke="#ffdf00" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path577" d="m88.918 152.76s-5.6337 4.976-2.5351 8.169" stroke="#ffdf00" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path584" d="m141.03 82.999s0.47 4.3191-0.469 7.6054 3.568 12.394 1.877 14.272" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path585" d="m142.91 113.7 11.831-0.094" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path586" d="m138.59 118.49c0.094 0.187 1.408 6.197 1.032 10.328" stroke="#000" stroke-linecap="round" stroke-width="1pt" fill="none"/> + <path id="path587" d="m142.44 120.65c-0.375 1.221-5.258 15.117-5.07 15.68" stroke="#000" stroke-linecap="round" stroke-width="1pt" fill="none"/> + <path id="path588" d="m145.35 114.36c0.094 0.282-0.375 8.826-1.69 10.047" stroke="#000" stroke-linecap="round" stroke-width="1pt" fill="none"/> + <path id="path589" d="m151.36 113.7s7.7 17.84 7.606 24.882 2.629 21.314 0.845 27.605" stroke="#000" stroke-linecap="round" stroke-width="1pt" fill="none"/> + <path id="path590" d="m153.8 138.4s-0.564 13.239-6.103 18.403c-5.54 5.165 13.239 19.906 13.239 19.906" stroke="#000" stroke-linecap="round" stroke-width="1pt" fill="none"/> + <path id="path591" d="m153.61 175.86s2.066 18.215 5.54 19.53" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path593" d="m136.62 145.34c0.094 0.188-1.878 12.3-0.282 14.272 1.597 1.972 14.836 20.469 14.272 39.624" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path594" d="m146.85 193.51s-0.376 11.549-11.08 12.488" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path595" d="m143.66 185.91s3.193 12.018-7.699 19.624" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path596" d="m147.88 156.89s12.3 12.77 12.864 18.404" stroke="#000" stroke-linecap="round" stroke-width="1pt" fill="none"/> + <path id="path598" d="m151.45 113.98s2.16 9.107 1.315 10.704" stroke="#000" stroke-linecap="round" stroke-width="1pt" fill="none"/> + <path id="path663" d="m113.51 132.69s-1.317-2.305-1.152-4.857-0.412-6.502 7.82-9.713c5.021-5.103 10.618-8.149 13.663-9.712 4.445-2.881 7.327-2.223 9.96-3.211 1.729-1.975 1.646-6.3377 3.457-10.206 1.811-3.8687 5.021-11.853 8.478-10.618 3.458 1.2346 0.741 11.606-0.576 15.228-1.317 3.6218-2.469 7.4078-4.774 9.6308-2.305 2.222-12.758 6.255-14.816 6.996s-11.441 2.881-13.828 6.174c-2.388 3.292-2.223 8.149-8.232 10.289z" fill-rule="evenodd" stroke="#000" stroke-width="1pt" fill="#ffc6b5"/> + <path id="path664" d="m112.85 125.78c0.247-0.082 4.115-1.317 5.926 2.141" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path666" stroke-linejoin="round" d="m141.91 55.2s-1.74 2.8365-2.222 4.561c-0.374 1.2891-1.58-0.0866-2.218 2.708l1.035 0.1812c-0.412 0.8232-0.546 2.214-0.628 2.5433-0.083 0.3293-0.662 1.8332-0.576 2.9632 0.046 0.5833 1.152 3.1279 10.124-0.7408 8.972-3.8686-2.881-14.85-5.515-12.216z" fill-rule="evenodd" stroke="#000" stroke-width="1.25" fill="#ffc6b5"/> + <path id="path665" stroke-linejoin="round" d="m140.9 55.563c0.921-0.4939 7.457-1.07 6.368 11.688 1.257-0.1647 2.011-0.3294 2.764 0.9053 0.754 1.2348 0.671 2.7163 2.011 2.7163 1.341 0 1.509-0.2469 1.844-1.2346 0.334-0.9877 5.53 1.1523 6.869-3.4571-0.232-0.8973-3.183-2.3047-3.519-3.951 0.755-2.3048-0.335-9.7951-9.885-10.207-4.944-0.0823-5.948 1.9755-6.452 3.5394z" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.2611" fill="#c59200"/> + <path id="path667" d="m140.42 58.115c0.083 0.0823 2.964 0.9055 3.293 2.3048" stroke="#000" stroke-linecap="round" stroke-width="1pt" fill="none"/> + <path id="path670" d="m142.19 61.503c0 0.43147-0.33229 0.78125-0.74219 0.78125s-0.74219-0.34978-0.74219-0.78125 0.33229-0.78125 0.74219-0.78125 0.74219 0.34978 0.74219 0.78125z" fill-rule="evenodd"/> + <path id="path672" stroke-linejoin="round" d="m154.38 61.542s-1.055 5.0781 3.594 7.0703" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path673" stroke-linejoin="round" d="m150.94 62.167s1.722 0.0781 1.722 1.6797c0 1.6015-1.414 1.7968-1.296 3.0859 0.117 1.2891 2.425 1.7187 2.503 2.8125" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path674" stroke-linejoin="round" d="m143.4 52.792c0.078 0 8.243 0.9375 7.774 2.9687-0.469 2.0313-1.758 1.211-1.719 2.9688s3.281 0.7031 3.281 0.7031 0.196-1.4844 1.563-1.3672 0.742 1.6797 2.617 1.6405" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path675" d="m138.41 65.458 1.936-0.0637" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path676" d="m143.45 73.696s0.72 3.3593-2 3.0393" stroke="#000" stroke-linecap="round" stroke-width="1pt" fill="none"/> + </g> + <g id="g878" stroke-width="1pt" transform="matrix(6.4484 0 0 8.479 0 .062997)"> + <path id="path879" fill="#fff" d="m0 0v3.3541l53.292 26.646h6.708v-3.354l-53.292-26.646h-6.708zm60 0v3.354l-53.292 26.646h-6.708v-3.354l53.292-26.646h6.708z"/> + <path id="path880" fill="#fff" d="m25 0v30h10v-30h-10zm-25 10v10h60v-10h-60z"/> + <path id="path881" fill="#c00" d="m0 12v6h60v-6h-60zm27-12v30h6v-30h-6z"/> + <path id="path882" fill="#c00" d="m0 30 20-10h4.472l-20 10h-4.472zm0-30 20 10h-4.472l-15.528-7.7639v-2.2361zm35.528 10 20-10h4.472l-20 10h-4.472zm24.472 20-20-10h4.472l15.528 7.764v2.236z"/> + </g> + </g> +</svg> diff --git a/s/flag/mt.svg b/s/flag/mt.svg new file mode 100755 index 0000000..47da4c5 --- /dev/null +++ b/s/flag/mt.svg @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3784"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <g id="g6866" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.25 0 0 .93750 0 -.000012618)"> + <rect id="rect706" height="512" width="256" y=".000027592" x="256" fill="#ce0000"/> + <rect id="rect708" height="512" width="256" y=".000012110" x="0" fill="#fff"/> + </g> + <g id="g6673" transform="matrix(1.5986 0 0 1.5986 -12.38 -30.751)"> + <path id="path606" d="m209.06 63.779c0 7.8276-7.932 14.173-17.717 14.173-9.7846 0-17.717-6.3456-17.717-14.173 0-7.8276 7.932-14.173 17.717-14.173 9.7846 0 17.717 6.3456 17.717 14.173z" fill-rule="evenodd" transform="matrix(.11563 0 0 .10345 80.65 101.47)" fill="#f1eeee"/> + <path id="path552" d="m40.727 100.98v37.209h37.211c0 6.1998 6.2021 12.402 12.404 12.402v37.207h37.208v-37.207c6.2021 0 12.404-6.2019 12.404-12.402h37.211v-37.209h-37.211c0-6.1998-6.2021-12.402-12.404-12.402v-37.207h-37.208v37.207c-6.2021 0-12.404 6.2019-12.404 12.402h-37.211z" fill-rule="evenodd" stroke-width="1pt" fill="#c00"/> + <path id="path553" d="m41.969 102.22v34.727h37.211c0 6.1998 6.2 12.404 12.402 12.404v37.207h34.73v-37.207c6.2021 0 12.402-6.204 12.402-12.404h37.211v-34.727h-37.211c0-6.1998-6.2-12.404-12.402-12.404v-37.207h-34.73v37.207c-6.2021 0-12.402 6.204-12.402 12.404h-37.211z" fill-rule="evenodd" stroke-width="1pt" fill="#ffe600"/> + <path id="path554" d="m43.209 103.46v32.249h37.208c0 6.1998 6.2021 12.402 12.404 12.402v37.207h32.248v-37.207c6.2021 0 12.404-6.2019 12.404-12.402h37.208v-32.249h-37.208c0-6.1998-6.2021-12.402-12.404-12.402v-37.207h-32.248v37.207c-6.2021 0-12.404 6.2019-12.404 12.402h-37.208z" fill-rule="evenodd" stroke-width="1pt" fill="#707070"/> + <path id="path555" d="m44.45 104.7v29.766h37.208c0 6.1998 6.2021 12.404 12.404 12.404v37.207h29.767v-37.207c6.2021 0 12.404-6.204 12.404-12.404h37.208v-29.766h-37.208c0-6.1998-6.2021-12.402-12.404-12.402v-37.207h-29.767v37.207c-6.2021 0-12.404 6.2019-12.404 12.402h-37.208z" fill-rule="evenodd" stroke-width="1pt" fill="#a0a0a0"/> + <g id="g562" fill-rule="evenodd" transform="matrix(.24752 -.24751 .24752 .24751 -65.69 101.06)"> + <path id="path556" d="m333.07 295.87c0 8.8061-11.105 15.945-24.803 15.945s-24.803-7.1388-24.803-15.945c0-8.8061 11.105-15.945 24.803-15.945s24.803 7.1388 24.803 15.945z" transform="matrix(1.2857 0 0 1 -80.99 3.5432)" fill="#d0d0d0"/> + <path id="path557" d="m333.07 295.87c0 8.8061-11.105 15.945-24.803 15.945s-24.803-7.1388-24.803-15.945c0-8.8061 11.105-15.945 24.803-15.945s24.803 7.1388 24.803 15.945z" transform="matrix(.85715 0 0 1 51.124 3.5432)" fill="#808080"/> + <path id="path560" d="m281.34 223.23h4.96l4.961 14.174 4.96-14.174h4.961l-9.921 28.347-9.921-28.347z" transform="matrix(.71429 0 0 .74998 100.22 123.13)" fill="#d0d0d0"/> + <rect id="rect561" height="21.26" width="3.5433" y="290.55" x="322.44" stroke-width="1pt" fill="#d0d0d0"/> + </g> + <g id="g567" fill-rule="evenodd" transform="matrix(.24752 .24751 -.24752 .24751 127.47 -55.044)"> + <path id="path568" d="m333.07 295.87c0 8.8061-11.105 15.945-24.803 15.945s-24.803-7.1388-24.803-15.945c0-8.8061 11.105-15.945 24.803-15.945s24.803 7.1388 24.803 15.945z" transform="matrix(1.2857 0 0 1 -80.99 3.5432)" fill="#d0d0d0"/> + <path id="path569" d="m333.07 295.87c0 8.8061-11.105 15.945-24.803 15.945s-24.803-7.1388-24.803-15.945c0-8.8061 11.105-15.945 24.803-15.945s24.803 7.1388 24.803 15.945z" transform="matrix(.85715 0 0 1 51.124 3.5432)" fill="#808080"/> + <path id="path570" d="m281.34 223.23h4.96l4.961 14.174 4.96-14.174h4.961l-9.921 28.347-9.921-28.347z" transform="matrix(.71429 0 0 .74998 100.22 123.13)" fill="#d0d0d0"/> + <rect id="rect571" height="21.26" width="3.5433" y="290.55" x="322.44" stroke-width="1pt" fill="#d0d0d0"/> + </g> + <g id="g572" fill-rule="evenodd" transform="matrix(-.24752 .24751 -.24752 -.24751 283.58 138.11)"> + <path id="path573" d="m333.07 295.87c0 8.8061-11.105 15.945-24.803 15.945s-24.803-7.1388-24.803-15.945c0-8.8061 11.105-15.945 24.803-15.945s24.803 7.1388 24.803 15.945z" transform="matrix(1.2857 0 0 1 -80.99 3.5432)" fill="#d0d0d0"/> + <path id="path574" d="m333.07 295.87c0 8.8061-11.105 15.945-24.803 15.945s-24.803-7.1388-24.803-15.945c0-8.8061 11.105-15.945 24.803-15.945s24.803 7.1388 24.803 15.945z" transform="matrix(.85715 0 0 1 51.124 3.5432)" fill="#808080"/> + <path id="path575" d="m281.34 223.23h4.96l4.961 14.174 4.96-14.174h4.961l-9.921 28.347-9.921-28.347z" transform="matrix(.71429 0 0 .74998 100.22 123.13)" fill="#d0d0d0"/> + <rect id="rect576" height="21.26" width="3.5433" y="290.55" x="322.44" stroke-width="1pt" fill="#d0d0d0"/> + </g> + <g id="g577" fill-rule="evenodd" transform="matrix(-.24752 -.24751 .24752 -.24751 90.423 294.21)"> + <path id="path578" d="m333.07 295.87c0 8.8061-11.105 15.945-24.803 15.945s-24.803-7.1388-24.803-15.945c0-8.8061 11.105-15.945 24.803-15.945s24.803 7.1388 24.803 15.945z" transform="matrix(1.2857 0 0 1 -80.99 3.5432)" fill="#d0d0d0"/> + <path id="path579" d="m333.07 295.87c0 8.8061-11.105 15.945-24.803 15.945s-24.803-7.1388-24.803-15.945c0-8.8061 11.105-15.945 24.803-15.945s24.803 7.1388 24.803 15.945z" transform="matrix(.85715 0 0 1 51.124 3.5432)" fill="#808080"/> + <path id="path580" d="m281.34 223.23h4.96l4.961 14.174 4.96-14.174h4.961l-9.921 28.347-9.921-28.347z" transform="matrix(.71429 0 0 .74998 100.22 123.13)" fill="#d0d0d0"/> + <rect id="rect581" height="21.26" width="3.5433" y="290.55" x="322.44" stroke-width="1pt" fill="#d0d0d0"/> + </g> + <path id="path582" d="m269.29 414.57c0 41.095-34.107 74.409-76.181 74.409s-76.181-33.314-76.181-74.409 34.107-74.409 76.181-74.409 76.181 33.314 76.181 74.409z" transform="matrix(.34191 0 0 .35003 42.921 -25.527)" stroke="#707070" stroke-width="1pt" fill="none"/> + <path id="path583" d="m269.29 414.57c0 41.095-34.107 74.409-76.181 74.409s-76.181-33.314-76.181-74.409 34.107-74.409 76.181-74.409 76.181 33.314 76.181 74.409z" transform="matrix(.26050 0 0 .26669 58.641 9.0234)" stroke="#707070" stroke-width="1pt" fill="none"/> + <path id="path584" d="m170.08 474.8c0 1.9569-1.5864 3.5433-3.5433 3.5433s-3.5433-1.5864-3.5433-3.5433 1.5864-3.5433 3.5433-3.5433 3.5433 1.5864 3.5433 3.5433z" fill-rule="evenodd" transform="matrix(.35005 0 0 .35003 40.728 -25.527)" fill="#d0d0d0"/> + <path id="path585" d="m170.08 474.8c0 1.9569-1.5864 3.5433-3.5433 3.5433s-3.5433-1.5864-3.5433-3.5433 1.5864-3.5433 3.5433-3.5433 3.5433 1.5864 3.5433 3.5433z" fill-rule="evenodd" transform="matrix(.35005 0 0 .35003 60.574 -25.527)" fill="#d0d0d0"/> + <path id="path586" d="m108.12 140.67v1.2932h-1.6539c-1.6539 0-1.6539 1.2932 0 1.2932h1.6539v1.2931c0.006 1.3407 1.4434 1.5022 1.5486 0.10456l0.10501-1.3976h1.6539c1.6536 0 1.6536-1.2932 0-1.2932h-1.6539v-1.2932c0-1.2931-1.6536-1.2931-1.6536 0z" fill-rule="evenodd" fill="#d0d0d0"/> + <path id="path590" d="m102.77 122.35v0.73318s-0.38874 0.56103-2.868 0.73308c-2.4792 0.17204-2.868 0-2.868 0 0.06464 0.63945 0.54716 1.8514 0.40968 3.2992 0.09655 1.6854-0.47443 3.2114-0.47443 3.2114 0.06475 0.0877-0.23334 0.13232-0.75471 0.0877 0.40967-0.36664 0.36238-1.4272 0.40967-2.9326 0.04729-1.5056-1.5641-3.7715-1.2291-4.3988 0.33498-0.62724 7.3748-0.73318 7.3748-0.73318z" fill-rule="evenodd" stroke="#707070" stroke-width=".10937pt" fill="#d0d0d0"/> + <path id="path591" d="m112.61 119.69c2.4118-0.11142 6.4589-0.0872 6.4589-0.0872s0.95429 1.9141 0.91463 2.9715c-0.0397 1.0574-0.36782 1.9572-0.81831 1.5073-0.45049-0.44993 0.20871-0.3653 0.28884-1.5073 0.08-1.142-0.7702-2.3256-0.7702-2.3256s-1.73 0.75542-4.3322 0.60293c-2.602-0.15249-1.4501-1.1164-1.7417-1.1617z" fill-rule="evenodd" stroke="#707070" stroke-width=".10937pt" fill="#d0d0d0"/> + <path id="path588" d="m113.43 121.58c2.4118-0.11142 3.9951 0.25843 3.9951 0.25843s0.95429 1.9141 0.91463 2.9715c-0.0397 1.0574-0.36782 1.9572-0.81831 1.5073-0.45049-0.44993 0.20871-0.3653 0.28884-1.5073 0.08-1.142-0.77021-2.3256-0.77021-2.3256s-1.73 0.75542-4.3322 0.60293c-2.602-0.15249-1.8598-0.30778-2.1514-0.35309-0.29162-0.0453-0.36204 0.71984-4.2986 0.82681-3.9365 0.10687-5.9442-0.82681-5.9442-0.82681s-0.38874 0.56103-2.8679 0.73308c-2.4792 0.17204-2.868 0-2.868 0 0.06464 0.63945 0.54716 1.8514 0.40967 3.2992 0.09655 1.6854-0.47443 3.2114-0.47443 3.2114 0.06475 0.0877-0.23334 0.13232-0.75471 0.0877 0.40968-0.36664 0.36238-1.4272 0.40968-2.9326 0.04729-1.5056-1.5641-3.7715-1.2291-4.3988 0.33498-0.62724 2.1198-0.0409 2.4583-0.36664 0.33833-0.32578-1.5898-2.6208-1.2291-4.7654 0.36076-2.1447 2.4042-1.54 4.9166-1.4662 2.5123 0.0737 8.0784 0.72449 9.4233 0 1.345-0.72449 0.76292-3.4066 2.0486-5.132 0.81935-1.0997 2.0485-1.4662 3.2776-1.4662 0.81946 0 2.0486 2.9325 2.0486 3.6657l-0.40979 0.36654h-0.40968v0.36654c-0.9352 0.0938-1.0656-0.79991-1.6388-1.4663-0.24629 1.0329 0.81935 4.3989 0.81935 6.5983 0 1.8328-0.7657 2.6407-0.8138 2.5114z" fill-rule="evenodd" stroke="#707070" stroke-width=".10937pt" fill="#d0d0d0"/> + <path id="path592" d="m105.54 118.4c0.034 0.7306-3.1664 2.3686-3.4269 3.0171-0.26051 0.64856 0.81357 1.0081 0.48137 1.3781-0.33209 0.37016-0.6059 0.23287-0.67389 0.30146-0.068 0.0687-1.2034-2.5408-1.2034-2.5408s3.0018-1.3536 2.8881-1.938c-0.11378-0.58442-2.2167-0.93988-2.5992-2.4117-0.38262-1.4718-0.17044-4.315-0.48136-4.9096-0.31093-0.59453-3.9952-1.1618-3.9983-2.0608-0.0031-0.89905 3.7869-3.3665 4.1965-3.7331 0.40968-0.36657 0.81947 0.36657 0.40968 0.73314-0.40968 0.36657-3.3771 2.6334-3.3771 3 0 0.36657 2.4583 0.73314 3.2777 0.73314 0.81935 0 1.2291-0.36657 1.2291-0.73314 0.005-0.31713-0.81946-0.36656-0.81946-1.0997s0.40967-1.0997 1.2291-1.0997c0.40967 0 1.1974 0.46939 1.2291 1.0997s-0.72905 0.6837-0.81947 1.0997c-0.0903 0.41602 0.81947 0.73314 1.6388 0.73314 0.81947 0 3.6171 2.132 4.0268 2.4986 0.40979 0.36658 0.81947 0.36657 0.40979 0.73315-0.40967 0.36657-0.16974 0.80054-0.57953 0.43397-0.34885-0.35412-0.40968-0.73315-0.40968-0.73315-0.0354-0.33309-3.0376-1.8328-3.4474-1.4663-0.40967 0.36657 0 4.7655 0 5.132 0 0.73307 0.85346 0.73059 0.81947 1.8328z" fill-rule="evenodd" stroke="#707070" stroke-width=".10937pt" fill="#d0d0d0"/> + <rect id="rect604" fill-rule="evenodd" height="5.132" width="4.9165" y="109.9" x="100.32" stroke-width="1pt" fill="#a7a7a7"/> + <rect id="rect593" transform="matrix(.55442 .83223 -.88237 .47055 0 0)" fill-rule="evenodd" rx=".44451" ry=".19943" height=".39886" width="30.647" y="-25.672" x="138.6" stroke-width="1pt" fill="#808080"/> + <path id="path594" d="m180.71 42.52c0 3.9138-3.1728 7.0866-7.0866 7.0866s-7.0866-3.1728-7.0866-7.0866 3.1728-7.0866 7.0866-7.0866 7.0866 3.1728 7.0866 7.0866z" fill-rule="evenodd" transform="matrix(.11563 0 0 .10345 80.65 101.47)" stroke="#707070" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path596" d="m115.88 112.54c0 0.30373-1.9021 0.66027-4.0972 0.66027-2.195 0-4.0971-0.35654-4.0971-0.66027 0-0.30372 1.902 0.44018 4.0971 0.44018 2.195 0 4.0972-0.7439 4.0972-0.44018z" fill-rule="evenodd" stroke-width="1pt" fill="#808080"/> + <rect id="rect603" fill-rule="evenodd" height="1.4663" width="4.0971" y="115.03" x="100.73" stroke-width="1pt" fill="#a7a7a7"/> + <path id="path597" d="m279.92 58.465c0 6.8492-0.7932 12.402-1.7717 12.402-0.97847 0-1.7717-5.5524-1.7717-12.402 0-6.8492 0.7932-12.402 1.7717-12.402 0.97846 0 1.7717 5.5524 1.7717 12.402z" fill-rule="evenodd" transform="matrix(.069192 .091056 -.057997 .10863 98.071 79.578)" fill="#808080"/> + <path id="path598" d="m279.92 58.465c0 6.8492-0.7932 12.402-1.7717 12.402-0.97847 0-1.7717-5.5524-1.7717-12.402 0-6.8492 0.7932-12.402 1.7717-12.402 0.97846 0 1.7717 5.5524 1.7717 12.402z" fill-rule="evenodd" transform="matrix(.012985 .081708 -.066047 .057943 115.31 87.084)" fill="#808080"/> + <path id="path599" d="m279.92 58.465c0 6.8492-0.7932 12.402-1.7717 12.402-0.97847 0-1.7717-5.5524-1.7717-12.402 0-6.8492 0.7932-12.402 1.7717-12.402 0.97846 0 1.7717 5.5524 1.7717 12.402z" fill-rule="evenodd" transform="matrix(.063770 -.027207 .048703 .088588 93.866 114.85)" fill="#808080"/> + <path id="path600" d="m290.55 136.42c0 0.97846-10.312 1.7717-23.032 1.7717s-23.031-0.7932-23.031-1.7717c0-0.97846 10.312-1.7717 23.031-1.7717 12.72 0 23.032 0.7932 23.032 1.7717z" fill-rule="evenodd" transform="matrix(.12452 0 0 .10345 78.065 101.47)" fill="#808080"/> + <path id="path601" d="m209.06 132.87c0 0.97846-7.932 1.7717-17.717 1.7717-9.7846 0-17.717-0.7932-17.717-1.7717 0-0.97846 7.932-1.7717 17.717-1.7717 9.7846 0 17.717 0.7932 17.717 1.7717z" fill-rule="evenodd" transform="matrix(.11563 0 0 .10345 80.65 101.47)" fill="#808080"/> + <path id="path609" d="m95.813 127.96s0.67574 1.6428 3.5564 1.6656c2.8806 0.0227 3.872-0.49276 2.7066-1.3627-1.1654-0.86995-3.3329-0.59933-3.0528 0.1514 0.28011 0.75074-0.81288 1.0011-1.0701 0.47317-0.25712-0.52791-1.2887-2.091 0.56649-2.1955 1.8552-0.10453 5.7845-0.67368 6.7665 0.41642 0.98215 1.09-1.1095 2.0781 0.47206 2.309 1.5816 0.23093 1.8064-0.26411 4.5283-0.41347 2.722-0.1494 3.7606 0.50477 4.6931 0.41347 0.93249-0.0913 0.80064-1.694 0.0629-2.1008-0.73773-0.40692-2.1547-0.48131-2.5178-0.92742-0.36305-0.44611-1.351-0.083-1.2589-0.58674 0.0922-0.50377 1.4009 0.34668 1.4163 0.0894 0.00045-0.008 0.21607-0.17869 0.25962-0.22179-0.16466-0.0376-0.25864 0.0233-0.38225 0.0886 0.1342-0.1073 0.12588-0.15677 0.17087-0.24452-0.0234-0.0331-0.18606 0.12431-0.21358 0.0914-0.0275-0.0329 0.18938-0.25607 0.0912-0.17514-0.034 0.0233-0.29273 0.15136-0.2956 0.0632 0.004-0.0358 0.13525-0.12789 0.089-0.17786-0.0373-0.0416-0.23384 0.0484-0.25917 0.0587 0.11243-0.15045 0.10449-0.14863-0.004-0.26011-0.0944-0.11148-0.1633-0.10889-0.31753 0.017 0.0642-0.18091 0.0816-0.21919-0.0733-0.28775-0.12739-0.0692-0.13306-0.1344-0.29152 0.18923 0.0603-0.34636-0.10154-0.36146-0.0343-0.5257 0.04-0.15057 0.25123-0.21411 0.59931-0.18085 0.67627 0.006 1.0379 0.8163 1.2589 0.81385 0.22107-0.002 0.46844-0.85851 1.4163-0.51102 0.94783 0.34748 1.0649 0.41836 1.5422 0.62459 0.47728 0.20619-0.3353 0.52091-0.063 0.92742 0.27232 0.40647 2.1342 1.7643 1.6051 3.1797-0.52915 1.4154-1.892 1.6393-2.0142 2.2523-0.12225 0.61302 4.3144 0.3615 5.4447 0.56783 1.1302 0.20627 1.8428 1.0507 1.8883 1.1923 0.0455 0.14163-1.9828 0.13249-1.9828 0.13249s-1.0415-0.53818-3.5249-0.58669c-2.4833-0.0486-3.429-1.0507-4.3586-1.1763-0.92961-0.12557-2.9108 0.21051-4.0182 0.16109-1.1075-0.0494-2.2294-0.22474-2.9467-0.32217-0.71739-0.0974-4.2862 1.611-4.2738 2.0089-0.74393-0.0282-2.4956-0.12316-2.4234-0.0757 0.0722 0.0474 0.3139-0.77465 1.6794-0.91914 1.3655-0.14454 2.6949-0.79898 2.6508-1.2287-0.0441-0.42971 0.26363-1.9039 0.37764-2.5362 0.11401-0.63225 0.62524-0.93733 0.50359-1.2681-0.12165-0.33072-1.6817-0.6719-3.1787-0.66245-1.497 0.01-3.1579 0.0935-3.399 0.45426-0.24102 0.36073-0.05905 1.4078 0.25183 1.287 0.3108-0.1208-0.07515-0.80529 0.25176-0.94638 0.32691-0.14103 1.1647-0.26565 1.9512-0.28389 0.78664-0.0182 2.1542 0.66968 2.1402 0.88955-0.0141 0.21992 0.44008 0.95179-0.18886 1.2303-0.62887 0.27843-1.9152 0.40292-3.1472 0.34068-1.2321-0.0622-2.4787-0.48531-2.927-0.75706-0.44817-0.27175-0.72382-1.0978-0.72382-1.1546z" fill-rule="evenodd" stroke="#808080" stroke-width=".058629pt" fill="#d0d0d0"/> + <path id="path610" d="m205.51 434.06c0 0.97847-0.7932 1.7717-1.7716 1.7717-0.97846 0-1.7716-0.7932-1.7716-1.7717 0-0.97846 0.79319-1.7717 1.7716-1.7717 0.97845 0 1.7716 0.7932 1.7716 1.7717z" fill-rule="evenodd" transform="matrix(.18555 0 0 .18554 75.921 44.995)"/> + <path id="path615" d="m129.51 120.77 1.5954 0.34396 2.6647-1.8236-0.20645 0.95748-1.3882 0.92729c-0.25877 0.17025-0.51485 0.32588-0.76735 0.46705 0.15834 0.22106 0.33361 0.48489 0.52507 0.79279l0.85907 1.3908-0.19763 0.91663-1.6589-2.8412-1.5954-0.34395 0.16973-0.78717z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path618" d="m126.79 109.04 3.0862-1.4214-0.83851-1.8205 0.41307-0.19024 2.0172 4.3794-0.41307 0.19024-0.84178-1.8276-3.0862 1.4214-0.33689-0.7314z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path619" d="m122.01 103.23 2.8413-2.6017 0.55772 0.60903-0.073 4.3988 2.2307-2.0426 0.52137 0.56933-2.8413 2.6017-0.55772-0.60903 0.0746-4.4011-2.2327 2.0444-0.52089-0.56881z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path622" d="m109.59 98.214 0.46587-3.8241 0.79868 0.09729-0.41087 3.3727 2.9747 0.36234-0.055 0.45142-3.7734-0.45963z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path623" d="m103.48 98.762-0.68951-3.7902 0.7923-0.14412 0.60811 3.3428 2.9476-0.53617 0.0814 0.44741-3.7399 0.68029z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path626" d="m92.198 104.33-0.28257-0.35288 2.0102-1.613 0.89367 1.1161c-0.18431 0.40323-0.40858 0.77583-0.6728 1.1178-0.26618 0.34066-0.57203 0.64989-0.91758 0.92655-0.46607 0.37316-0.94114 0.65011-1.4238 0.83031-0.48241 0.17712-0.91596 0.22377-1.3023 0.14013-0.38552-0.0837-0.69699-0.27329-0.93358-0.56876-0.23435-0.29267-0.35652-0.64241-0.36735-1.0491-0.0089-0.40997 0.11865-0.82177 0.38266-1.2354 0.26429-0.41327 0.63293-0.80953 1.1062-1.1884 0.34333-0.27489 0.68126-0.48742 1.0146-0.63769 0.33471-0.15308 0.63131-0.23026 0.88951-0.23074 0.25848-0.00013 0.50965 0.0677 0.75378 0.20484l-0.48792 0.5521c-0.1941-0.0962-0.37871-0.14549-0.55494-0.14802-0.17568-0.003-0.38323 0.0483-0.62099 0.15364-0.23888 0.10393-0.47885 0.25182-0.7188 0.44394-0.28694 0.22974-0.51248 0.45685-0.67716 0.68063-0.16581 0.22238-0.27751 0.43074-0.33456 0.62465-0.05539 0.19257-0.07502 0.37088-0.06 0.53581 0.02805 0.28319 0.12926 0.53309 0.30334 0.75049 0.21473 0.26816 0.46601 0.43467 0.75551 0.49933 0.29143 0.0625 0.61165 0.0262 0.95983-0.10893 0.34873-0.13558 0.68011-0.32909 0.99304-0.57963 0.27201-0.21779 0.5116-0.46362 0.71792-0.73625 0.20576-0.27447 0.34539-0.50348 0.4192-0.68552l-0.44852-0.56013-1.3966 1.1182z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path631" d="m92.068 132.03-3.1412 2.2305-2.3763-3.3462 0.3708-0.2633 1.9102 2.6899 0.9727-0.6907-1.6531-2.3278 0.3708-0.2633 1.6531 2.3278 1.4269-1.0132 0.46613 0.65638z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path634" d="m87.441 127.02c0.44673-0.12608 0.74613-0.41429 0.89696-0.86551 0.14893-0.45316 0.14259-0.96589-0.01904-1.5385-0.16446-0.58265-0.42962-1.0251-0.79506-1.3275-0.36658-0.30487-0.78809-0.38992-1.2655-0.25517-0.30172 0.0852-0.54212 0.24062-0.7203 0.46613-0.18098 0.22383-0.28891 0.50846-0.32404 0.85458-0.03743 0.3446-0.0021 0.70921 0.10705 1.0957 0.15467 0.54796 0.40818 0.98722 0.75928 1.3163 0.34898 0.32687 0.8026 0.41152 1.3607 0.25401zm0.2181 0.80063c-0.61554 0.17373-1.1708 0.049-1.6652-0.37515-0.4964-0.42303-0.86106-1.0479-1.0938-1.8726-0.15257-0.5405-0.20861-1.051-0.16756-1.5313s0.17635-0.8745 0.40592-1.1839c0.22718-0.31116 0.5263-0.51942 0.89705-0.62406 0.37596-0.10611 0.74611-0.0809 1.1106 0.0744 0.36431 0.15629 0.68546 0.4322 0.96252 0.82766 0.27606 0.39698 0.48576 0.84923 0.62926 1.3576 0.15564 0.5514 0.21016 1.0682 0.16413 1.549-0.04612 0.48203-0.18332 0.87616-0.41204 1.1819-0.22864 0.30601-0.50576 0.50465-0.83078 0.59639z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path637" d="m87.981 120-3.8516-0.0869 0.06087-2.6969c0.01224-0.54242 0.05652-0.95357 0.13329-1.2338 0.07447-0.28114 0.20106-0.50359 0.38023-0.66792 0.1791-0.16464 0.3743-0.24517 0.58638-0.24038 0.27302 0.006 0.50038 0.15136 0.68151 0.43469 0.18112 0.28392 0.29066 0.71792 0.32816 1.3023 0.06934-0.21093 0.13712-0.37152 0.20279-0.4806 0.14163-0.23194 0.31755-0.45118 0.52715-0.65685l1.0722-1.0341-0.02285 1.0124-0.81945 0.78705c-0.23669 0.22979-0.41771 0.41912-0.54396 0.56856-0.12588 0.14944-0.21456 0.28423-0.26667 0.40464-0.05155 0.11805-0.08835 0.23911-0.11046 0.36318-0.01464 0.0912-0.02379 0.24026-0.02846 0.44698l-0.02108 0.9341 1.7101 0.0386-0.01817 0.80483zm-2.1336-0.85338 0.03906-1.7306c0.0083-0.36757-0.0086-0.65553-0.05138-0.86392-0.04425-0.20871-0.11782-0.36832-0.22071-0.47823-0.10432-0.11083-0.21876-0.16706-0.34295-0.16986-0.18208-0.004-0.33417 0.098-0.45645 0.3056-0.12214 0.20466-0.18825 0.53188-0.19843 0.98285l-0.04346 1.9254 1.2743 0.0288z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path640" d="m96.55 102.2 0.0263-4.5055 0.74448-0.44558 4.1151 2.0268-0.78692 0.47098-1.2081-0.63642-2.1828 1.3064 0.02591 1.344-0.734 0.4393zm0.69396-2.2588 1.7697-1.0592-1.0923-0.5897c-0.33323-0.17847-0.59329-0.33332-0.78095-0.46351 0.06048 0.2513 0.09265 0.51794 0.09627 0.79956l0.0073 1.3128z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path643" d="m115.85 98.734 4.1571-1.7378 0.70054 0.51037-0.25588 4.58-0.74123-0.54002 0.11329-1.3607-2.0561-1.4979-1.2268 0.54944-0.69091-0.50335zm2.3506-0.24454 1.6669 1.2144 0.11488-1.2364c0.0347-0.37595 0.0752-0.67602 0.12167-0.89964-0.20836 0.15341-0.44096 0.28747-0.69827 0.4013l-1.2052 0.52028z" stroke-width="1pt" fill="#d0d0d0"/> + <path id="path646" d="m128.5 112.83 3.7468-0.89652 0.62779 2.6235c0.12613 0.52708 0.18799 0.93596 0.1853 1.2273-0.00064 0.28996-0.0664 0.53731-0.19763 0.74271-0.13128 0.20481-0.29969 0.3318-0.506 0.38116-0.26559 0.0636-0.52235-0.0187-0.7698-0.24715-0.24723-0.22758-0.4638-0.61997-0.64893-1.1758-0.0132 0.2222-0.0378 0.39505-0.0735 0.51725-0.0779 0.26036-0.19242 0.51629-0.34274 0.76855l-0.77353 1.2732-0.23555-0.98432 0.59205-0.96973c0.17038-0.28248 0.2971-0.51224 0.38128-0.68831 0.0837-0.17657 0.13498-0.33007 0.15464-0.46008 0.02-0.12641 0.0248-0.25284 0.0146-0.37846-0.009-0.0919-0.0382-0.23869-0.0865-0.44036l-0.21724-0.90782-1.6636 0.39805-0.18743-0.78322zm2.2806 0.28237 0.40265 1.6826c0.0857 0.35814 0.17533 0.63233 0.26986 0.82324 0.0959 0.19028 0.2075 0.32532 0.3352 0.40628 0.12889 0.0798 0.25395 0.10528 0.37475 0.0764 0.17713-0.0424 0.29835-0.17922 0.36374-0.41115 0.0659-0.22931 0.0464-0.56315-0.0586-1.0018l-0.448-1.8722-1.2396 0.29662z" stroke-width="1pt" fill="#d0d0d0"/> + </g> + </g> +</svg> diff --git a/s/flag/mu.svg b/s/flag/mu.svg new file mode 100755 index 0000000..af3b1a6 --- /dev/null +++ b/s/flag/mu.svg @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- +On October 30, 2003, Brett Roper dedicated to the public domain the +work "SVG graphic of Mauritius Flag." Before making the dedication, + +Brett Roper +represented that Brett Roper owned all copyrights in the +work. By making the dedication, Brett Roper made an overt act +of relinquishment in perpetuity of all present and future rights under +copyright law, whether vested or contingent, in "SVG graphic of +Mauritius Flag." + +Brett Roper understands that such relinquishment of all rights +includes the relinquishment of all rights to enforce (by lawsuit or +otherwise) those copyrights in the Work. + +Brett Roper recognizes that, once placed in the public domain, +"SVG graphic of Mauritius Flag" may be freely reproduced, +distributed, transmitted, used, +modified, built upon, or otherwise exploited by anyone for any +purpose, commercial or non-commercial, and in any way, including by +methods that have not yet been invented or conceived. +--> +<svg id="canada" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" fill="#28ff09"> + <metadata id="metadata3793"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" fill-opacity="1" transform="matrix(1.25 0 0 .93750 0 .00002048)"> + <rect id="rect560" height="128" width="512" y="384" x="0" fill="#009a00"/> + <rect id="rect558" height="128" width="512" y="128" x="0" fill="#00f"/> + <rect id="rect557" height="128" width="512" y="-.000019656" x="0" fill="#f00"/> + <rect id="rect559" height="128" width="512" y="256" x="0" fill="#ff0"/> + </g> +</svg> diff --git a/s/flag/mv.svg b/s/flag/mv.svg new file mode 100755 index 0000000..9faba07 --- /dev/null +++ b/s/flag/mv.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3804"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd"> + <rect id="rect149" transform="scale(-1)" height="480" width="640" y="-480" x="-640" fill="#2d9c4b"/> + <path id="path673" d="m410.48 91.74c-173.07 49.64-148.41 275.98 13.81 293.26-256.94 49.22-293.5-318.86-13.81-293.26z" fill="#fff"/> + <rect id="rect695" height="60" width="640" y="0" x="0" fill="#b71401"/> + <rect id="rect696" height="60" width="640" y="420" x="0" fill="#b71401"/> + <rect id="rect697" height="457.03" width="60" y="0" x=".00081519" fill="#b71401"/> + <rect id="rect698" height="457.03" width="60" y="0" x="580" fill="#b71401"/> + </g> +</svg> diff --git a/s/flag/mw.svg b/s/flag/mw.svg new file mode 100755 index 0000000..d6891fd --- /dev/null +++ b/s/flag/mw.svg @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3847"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" stroke-width="1pt" fill-rule="evenodd"> + <g id="g6497" transform="matrix(.83333 0 0 .9375 108.2 .0000021859)"> + <rect id="rect171" height="512" width="768" y="-.0000023316" x="-129.84" fill="#f41408"/> + <rect id="rect256" height="170.67" width="768" y="341.33" x="-129.84" fill="#21873b"/> + <rect id="rect255" height="170.67" width="768" y="-.0000023316" x="-129.84"/> + </g> + <g id="g6372" transform="matrix(1 0 0 .90680 60.299 .83219)"> + <path id="path386" d="m160.18 154.64c22.308-54.325 84.502-80.311 138.83-58.003 27.36 11.235 46.74 30.607 57.987 57.963l-196.81 0.0407z" fill="#f31509"/> + <path id="path353" d="m134.21 161.66c-23.45-1.74-48.376-7.12-52.443-8.6-4.0665-1.4808-4.2229-3.954-3.722-5.8475 0.50108-1.8942 3.0964-4.0446 6.1266-3.243 5.6819 1.503 28.788 7.6146 50.034 17.693z" fill="#f31509"/> + <path id="path354" d="m258.84 66.919c-4.2082-23.136-5.2705-48.609-4.8599-52.917 0.41062-4.3082 2.765-5.0815 4.7237-5.0728 1.9594 0.00865 4.6933 1.9799 4.6794 5.1143-0.026 5.8772-0.13081 29.778-4.5432 52.876z" fill="#f31509"/> + <path id="path355" d="m270.38 67.456c-2.2104-23.412-1.0862-48.882-0.30789-53.139 0.77825-4.2571 3.1903-4.8259 5.141-4.6494 1.9514 0.17651 4.5064 2.3747 4.224 5.4964-0.52945 5.8534-2.6818 29.657-9.0571 52.292z" fill="#f31509"/> + <path id="path356" d="m280.84 68.873c-0.27645-23.514 2.9398-48.805 4.0657-52.984 1.1259-4.1787 3.5765-4.547 5.5061-4.2106 1.9303 0.33648 4.2957 2.7375 3.7574 5.8253-1.0093 5.79-5.113 29.336-13.329 51.369z" fill="#f31509"/> + <path id="path357" d="m291.85 71.335c1.7933-23.447 7.2221-48.357 8.7113-52.421 1.4892-4.0634 3.9627-4.2147 5.8552-3.7099 1.8932 0.505 4.0382 3.1048 3.2303 6.1333-1.5148 5.6788-7.674 28.772-17.797 49.998z" fill="#f31509"/> + <path id="path358" d="m302.7 74.791c3.8675-23.195 11.486-47.526 13.33-51.441 1.844-3.9152 4.3212-3.8463 6.1614-3.1755 1.8409 0.67105 3.7466 3.451 2.6732 6.3958-2.01 5.521-10.2 27.977-22.16 48.22z" fill="#f31509"/> + <path id="path359" d="m312.81 79.016c5.8364-22.78 15.507-46.369 17.679-50.113 2.172-3.7432 4.6342-3.4628 6.4103-2.6371 1.7768 0.82598 3.4379 3.7586 2.1166 6.601-2.4776 5.3296-12.552 27.003-26.206 46.149z" fill="#f31509"/> + <path id="path360" d="m322.76 84.225c7.8085-22.181 19.507-44.834 21.999-48.372 2.4913-3.5387 4.9196-3.0437 6.6166-2.0657 1.6976 0.97838 3.0956 4.0452 1.5305 6.7609-2.9347 5.0922-14.868 25.8-30.146 43.677z" fill="#f31509"/> + <path id="path361" d="m332.17 90.255c9.712-21.416 23.341-42.963 26.131-46.271 2.7903-3.3081 5.1661-2.6034 6.7715-1.4812 1.6059 1.1226 2.7313 4.2996 0.93541 6.8686-3.3673 4.817-17.06 24.406-33.838 40.884z" fill="#f31509"/> + <path id="path362" d="m341.03 97.092c11.544-20.487 27.001-40.762 30.07-43.814 3.0684-3.0519 5.3736-2.1426 6.8749-0.88453 1.5018 1.2585 2.3456 4.5216 0.33236 6.924-3.7749 4.5047-19.126 22.824-37.277 37.774z" fill="#f31509"/> + <path id="path363" d="m349.28 104.69c13.292-19.399 30.464-38.244 33.787-41.015 3.3236-2.7718 5.5405-1.6643 6.9259-0.27975 1.386 1.385 1.941 4.7094-0.2746 6.9266-4.1545 4.1573-21.049 21.064-40.439 34.369z" fill="#f31509"/> + <path id="path364" d="m356.86 113.01c14.943-18.158 33.701-35.424 37.255-37.893 3.5539-2.4695 5.6651-1.1718 6.9238 0.32891 1.2591 1.5013 1.5204 4.8616-0.88118 6.8758-4.5032 3.7768-22.815 19.136-43.298 30.689z" fill="#f31509"/> + <path id="path365" d="m363.38 121.54c16.41-16.843 36.549-32.478 40.297-34.641 3.7482-2.1633 5.7433-0.69342 6.8719 0.90742 1.129 1.6014 1.1081 4.9718-1.4537 6.7779-4.8036 3.3865-24.338 17.159-45.715 26.956z" fill="#f31509"/> + <path id="path366" d="m369.28 130.79c17.791-15.377 39.193-29.232 43.113-31.067 3.9195-1.8347 5.7816-0.19951 6.7691 1.492 0.98785 1.6921 0.67865 5.0484-2.0283 6.6286-5.0757 2.9631-25.716 15.014-47.854 22.946z" fill="#f31509"/> + <path id="path367" d="m374.75 141.33c19.138-13.664 41.731-25.478 45.804-26.942 4.0726-1.464 5.7752 0.33664 6.6019 2.1123 0.82694 1.7763 0.20834 5.0895-2.6333 6.4124-5.3282 2.4805-26.996 12.568-49.773 18.417z" fill="#f31509"/> + <path id="path368" d="m378.93 151.51c20.24-11.972 43.763-21.804 47.946-22.914 4.1831-1.1092 5.7251 0.83075 6.3964 2.6708 0.67153 1.8407-0.22897 5.0886-3.1736 6.1629-5.5214 2.0143-27.974 10.206-51.169 14.08z" fill="#f31509"/> + <path id="path369" d="m382.29 162.3c21.216-10.142 45.514-17.863 49.779-18.6 4.2646-0.73632 5.6296 1.332 6.1361 3.224 0.50672 1.8927-0.67648 5.0486-3.7043 5.8592-5.6774 1.5199-28.765 7.7016-52.21 9.5162z" fill="#f31509"/> + <path id="path370" d="m247.55 67.357c-6.3301-22.648-9.7438-47.913-9.7334-52.241 0.0104-4.3277 2.2832-5.3154 4.2342-5.488 1.9518-0.17261 4.8563 1.5373 5.1324 4.6595 0.51775 5.8545 2.624 29.662 0.36681 53.069z" fill="#f31509"/> + <path id="path371" d="m236.45 68.792c-8.2828-22.009-13.889-46.88-14.256-51.192-0.36741-4.3121 1.8105-5.4944 3.739-5.8366 1.9292-0.34232 4.9719 1.1075 5.5195 4.1937 1.0268 5.7869 5.2032 29.32 4.9978 52.835z" fill="#f31509"/> + <path id="path372" d="m225.42 71.218c-10.19-21.193-17.97-45.473-18.72-49.737-0.74591-4.2629 1.3194-5.6326 3.2102-6.1434 1.8916-0.51097 5.0502 0.66513 5.8676 3.6911 1.5327 5.6739 7.7663 28.748 9.6336 52.189z" fill="#f31509"/> + <path id="path373" d="m215.02 74.467c-11.95-20.252-21.76-43.784-22.86-47.968-1.1052-4.1842 0.83633-5.7243 2.677-6.3938 1.8414-0.66974 5.0884 0.23393 6.1598 3.1796 2.0089 5.5233 10.179 27.984 14.03 51.182z" fill="#f31509"/> + <path id="path374" d="m204.86 78.627c-13.65-19.154-25.44-41.759-26.9-45.834-1.4595-4.0742 0.34295-5.7749 2.1195-6.5996 1.7772-0.825 5.0897-0.20277 6.4095 2.6403 2.4746 5.3309 12.539 27.01 18.362 49.793z" fill="#f31509"/> + <path id="path375" d="m194.59 83.924c-15.313-17.847-29.09-39.299-30.91-43.225-1.8205-3.9261-0.1786-5.7823 1.5165-6.7636 1.6957-0.98172 5.0508-0.66039 6.6212 2.0522 2.9447 5.0864 14.921 25.77 22.773 47.936z" fill="#f31509"/> + <path id="path376" d="m185.24 89.848c-16.8-16.458-32.37-36.641-34.53-40.395-2.1526-3.7543-0.67706-5.7453 0.92699-6.8693 1.6046-1.1244 4.9749-1.0939 6.7737 1.473 3.3728 4.8132 17.089 24.386 26.826 45.792z" fill="#f31509"/> + <path id="path377" d="m176.48 96.438c-18.139-14.965-35.382-33.745-37.847-37.302-2.4652-3.5569-1.1648-5.6666 0.33745-6.9233 1.5028-1.2573 4.8634-1.5144 6.8747 0.88966 3.7712 4.5078 19.108 22.839 30.635 43.336z" fill="#f31509"/> + <path id="path378" d="m167.97 104.1c-19.4-13.292-38.25-30.46-41.02-33.783-2.7725-3.323-1.6654-5.5401-0.2812-6.9259 1.3848-1.3862 4.709-1.942 6.9266 0.27315 4.1581 4.1536 21.068 21.044 34.377 40.431z" fill="#f31509"/> + <path id="path379" d="m160.62 111.96c-20.447-11.615-40.668-27.143-43.709-30.222-3.0412-3.0789-2.1239-5.381-0.86066-6.8779 1.2637-1.4974 4.5297-2.3299 6.9251-0.30832 4.4916 3.7905 22.758 19.205 37.645 37.408z" fill="#f31509"/> + <path id="path380" d="m153.58 120.94c-21.398-9.7515-42.92-23.42-46.223-26.216-3.3029-2.7964-2.5939-5.1709-1.4687-6.7742 1.1256-1.6038 4.3046-2.7233 6.8703-0.92275 4.8108 3.3762 24.375 17.105 40.821 33.913z" fill="#f31509"/> + <path id="path381" d="m147.27 130.67c-22.191-7.7804-44.858-19.451-48.4-21.937-3.5418-2.4868-3.05-4.9157-2.0741-6.614 0.97622-1.6989 4.0413-3.1007 6.759-1.5391 5.0959 2.9282 25.819 14.836 43.716 30.091z" fill="#f31509"/> + <path id="path382" d="m142.03 140.56c-22.785-5.8169-46.383-15.467-50.128-17.636-3.7451-2.1687-3.4668-4.6312-2.6426-6.4081 0.82446-1.7775 3.7557-3.4411 6.5992-2.1222 5.3317 2.473 27.014 12.529 46.171 26.166z" fill="#f31509"/> + <path id="path383" d="m137.83 150.47c-23.192-3.8867-47.516-11.525-51.43-13.373-3.9137-1.8472-3.8427-4.3244-3.1704-6.164 0.67257-1.8403 3.454-3.7438 6.398-2.6679 5.5202 2.0174 27.969 10.221 48.202 22.204z" fill="#f31509"/> + <path id="path384" d="m134.21 161.66c-23.45-1.74-48.376-7.12-52.443-8.6-4.0665-1.4808-4.2229-3.954-3.722-5.8475 0.50108-1.8942 3.0964-4.0446 6.1266-3.243 5.6819 1.503 28.788 7.6146 50.034 17.693z" fill="#f31509"/> + <rect id="rect385" height="13.853" width="381.23" y="155.15" x="69.087"/> + </g> + </g> +</svg> diff --git a/s/flag/mx.svg b/s/flag/mx.svg new file mode 100755 index 0000000..ea4ba18 --- /dev/null +++ b/s/flag/mx.svg @@ -0,0 +1,349 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg3337" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4182"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <g id="g6001" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.3333 0 0 1 0 -32)"> + <rect id="rect880" height="480" width="480" y="32" x="0" fill="#fff"/> + <rect id="rect1200" height="480" width="160.73" y="32" x="0" fill="#0b7226"/> + <rect id="rect1201" height="480" width="159.81" y="32" x="320.19" fill="#bc0000"/> + </g> + <g id="g5008" transform="matrix(.93750 0 0 .93750 78.8 -2.9842)"> + <path id="path723" d="m143.28 279.14c0.0819-0.10639 3.6992-6.4398 3.2703-5.4192 1.6664 1.2767 4.7091 0.0667 2.5015-2.8052 0.53702-1.1614 1.2151-2.0468 1.7529-3.209 1.2138-2.2735-1.386-3.2534-2.4145-1.6812-0.62864 1.2041-1.2358 1.9201-1.8648 3.1246-3.2753-1.5549-3.4907 2.1021-1.9235 2.7408-0.69535 0.98455-1.8796 2.6068-2.5745 3.5913 0.41712 1.2193 0.83509 2.4386 1.2526 3.6578z" fill-rule="evenodd" fill="#9c4314"/> + <path id="path724" d="m142.85 277.73c-0.10766-0.0798-6.4916-3.6072-5.4652-3.193 1.2535-1.6843 0-4.7093-2.8396-2.4611-1.1695-0.5214-2.0649-1.1872-3.234-1.7078-2.2904-1.1809-3.2331 1.4321-1.647 2.4377 1.2134 0.61234 1.9374 1.2085 3.1512 1.8206-1.5085 3.2969 2.1515 3.4607 2.7674 1.8846 0.99468 0.68142 4.8467 2.9144 5.841 3.5958 1.2134-0.43444 0.21279-1.9425 1.4262-2.3769z" fill-rule="evenodd" fill="#9c4314"/> + <path id="path721" d="m165.94 316.43c0.0211-0.13257 0.18534-7.4242 0.29426-6.3227 2.0734 0.32889 4.1725-2.1844 0.86338-3.6578-0.0806-1.2771 0.0937-2.3786 0.0131-3.6566-0.0156-2.577-2.7683-2.2004-2.9236-0.32846 0.0207 1.3586-0.17226 2.2773-0.15157 3.6359-3.6207 0.19294-2.0683 3.5109-0.38588 3.326-0.1427 1.1969-0.41121 3.1871-0.55349 4.384 0.94739 0.87308 1.896 1.7466 2.8439 2.6197z" fill-rule="evenodd" fill="#9c4314"/> + <path id="path722" d="m164.89 315.39c-0.13257-0.019-7.4259-0.0798-6.3261-0.20476 0.29976-2.078-2.2431-4.1408-3.6692-0.81102-1.2763 0.0984-2.3807-0.0604-3.657 0.0384-2.5762 0.0523-2.1608 2.7991-0.28709 2.9279 1.3586-0.0397 2.2794 0.13974 3.638 0.10005 0.24403 3.6173 3.5401 2.0181 3.3311 0.3386 1.199 0.12581 4.9409 0.51676 6.1399 0.64257 0.86-0.96006-0.0291-2.0717 0.83045-3.0317z" fill-rule="evenodd" fill="#9c4314"/> + <path id="path691" d="m240.35 340.38s2.5015 3.3767 3.627 3.5016c3.5016 0.24993 31.266 0 31.266 0 0-0.0418 1.0006-0.58347 1.0006-0.62527 0.91699-1.1674 0.83382-1.8344 1.7508-3.0018 1.4591-1.4591 3.5434-1.9176 5.0025-3.3767 6.2535-1.5009 11.881-3.0013 18.135-4.0019-0.50029-3.7102-4.2519-2.9182-6.253-4.3772-0.62526-0.58389-0.50072-1.1674-0.12539-1.7512 4.6276-2.1262 9.2548-4.2519 13.882-6.378v-1.5009c-9.8387 1.1673-18.927 3.0845-29.516 3.5016-12.048 4.9611-24.096 9.9219-36.144 14.883-0.8752 1.0424-1.7508 2.0844-2.626 3.1267z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#42b2f3"/> + <path id="path610" d="m140.42 273.97h-0.12539c0.62737 0 0.12877 0.0418 0-1.501" stroke="#000" stroke-width=".42219pt" fill="none"/> + <path id="path611" d="m140.96 275.64c-1.8758-6.6285-4.9075-12.437-11.982-14.154-1.3265-0.30187-2.2688-4.0906-0.0583-3.9137 1.251 0.50029 0.0253-0.23769 1.2758 0.2626 1.2383 0.44245 3.166-0.53407 2.3702-2.6416 0-0.24994-2.3613-4.4414-2.3613-4.5664-0.44203-0.47876 0.37913-3.166 2.5015-1.7508 1.0006 0.65651 2.0012 2.1979 3.4438 2.501 0.53069-0.0887 0.88153-1.7356 0.7933-3.0106 0-0.12497 0.12496-4.3228 0.12496-4.3228-0.50282-2.5293 1.7356-3.8204 3.532-1.9277 0.12539 0.62526-0.0148 0.63159 0.11019 1.2573 0.41163 0.8372 0.91192 0.96765 1.5005 0.12496l2.3765-2.3765c1.411-0.52436 2.2916-1.0487 2.3761 1.8762 0 0-1.9467 2.4402-2.8675 3.3247-0.47876 0.70716-1.5186 1.6689 0.28666 2.1996 0.12497 0 2.5808 0.35379 2.5808 0.35379 1.6803 0.6983 1.8572 2.5466 0.61936 2.7147 0 0-1.3101 1.5283-3.6093 2.8029-0.70758 0.56784-1.2898 1.2509-0.67085 2.0316 1.3265 0.51549 0.90432 0.0215 3.1668 0.0215 1.9091-0.44203 1.7322 4.2329-1.7166 3.9162-1.0322 0.24656-2.3942 0.14439-2.9536 1.7939-0.24993 1.2847-0.31157 3.7511-0.31157 4.3768-0.21405 2.9768 0.22333 7.1056 0.22333 7.2306 0.24994 2.1261-0.50029 1.3755-0.75065 1.8758z" fill-rule="evenodd" stroke="#286726" stroke-width="1.9526" fill="#008d00"/> + <path id="path612" d="m161.43 313.78c-0.24403-0.31116-6.5114-7.1789-13.751-6.4072-1.3506 0.16381-3.5164-3.0845-1.3759-3.6646 1.3464 0.049 0.29806-0.14354 1.644-0.0946 1.1378-0.79836-0.91995-3.2542-1.8492-2.4014-0.084-0.23516-2.4816 0.51338-3.4982 0.30693-3.1457-0.30144-4.52-3.8166-2.2216-5.1494 1.4291 0.54589 4.1311 0.59655 5.5915 0.39474 1.4439-0.43949 0.77514-1.7538-0.62358-1.9501-1.9906-0.29468-10.021-2.2515-9.3118-3.2255-1.3274-2.2114-0.01-3.9166 2.3199-2.7417 1.9231 1.1661 2.1472 0.51127 1.679-0.35886-0.56995-1.6533-1.1175-1.2569-1.2016-2.6919-0.14185-0.92459 0.15874-1.7605 1.5228-1.1792 0.57544-0.48467 1.5224 2.9777 5.0975 1.6651 0.66157 0.55265 1.2244-3.7461 3.706-3.0921 1.8597 0.57544 0.58895 2.5095 0.95246 5.2398 0.29764 1.7985 2.0945 1.3856 2.3414 0.45174-0.38925-4.132 3.6498-4.2042 4.1117-2.8084 0.38377 1.0204 0.7287 3.8001 0.24023 6.413-0.26598 1.3282-0.0553 3.9644 0.79118 4.49 1.4224 0.0376 0.50409-0.28497 1.4827-1.7572 1.6478-1.0605 4.2105 2.7801 1.2113 4.7087-3.163 0.68184 1.7926 12.734 2.2102 13.407-0.45807 0.49311-1.0023-0.10977-1.0694 0.44541z" fill-rule="evenodd" stroke="#286726" stroke-width="1.9526" fill="#008d00"/> + <path id="path702" d="m200.28 346.01c0-0.13426-0.9799-7.3613-0.69956-6.2906 2.0991 0 3.7786-2.8109 0.27948-3.7478-0.27948-1.2488-0.27991-2.3643-0.55982-3.6135-0.41923-2.5428-3.079-1.7398-2.9388 0.13342 0.23304 1.3388 0.1866 2.276 0.41965 3.6148-3.5455 0.75783-1.4929 3.7917 0.14017 3.3454 0.0464 1.2045 0.0929 3.212 0.13974 4.4165 1.0728 0.71392 2.1464 1.4278 3.2192 2.1418z" fill-rule="evenodd" fill="#9c4314"/> + <path id="path720" d="m200.15 345.16c-0.13383 0.002-7.3465 1.0842-6.2801 0.78865-0.0296-2.0991-2.8641-3.7385-3.7512-0.22629-1.245 0.29722-2.3604 0.31326-3.6055 0.6109-2.5365 0.45512-1.6959 3.1031 0.17479 2.9368 1.3358-0.25205 2.2735-0.21912 3.6089-0.47116 0.80764 3.5346 3.8124 1.4388 3.3429-0.18745 1.2041-0.0633 4.9611-0.26345 6.1648-0.3272 0.69914-1.0829-0.35337-2.0413 0.34535-3.1242z" fill-rule="evenodd" fill="#9c4314"/> + <path id="path637" d="m197.69 305.64c17.653 10.42 22.189 8.9074 21.452 4.2907 0.84606 0 1.0289 0.73672 3.535-1.1099-0.34915 6.8268 7.0843 10.751 11.616 9.9278 4.0893 0.26387 3.5616 5.6721 3.5616 5.6721 0.24867 5.5336-1.6128 7.77-1.3641 13.304-0.0621 0-0.12455-0.65946-0.18661-0.65946-5.0308-1.1965-14.942-1.3375-18.654-2.1384 17.015-11.608-13.086-11.926-15.778-12.321-2.0333-0.26387-0.5822-2.2422 0.60457-2.77 9.3654-1.8466-8.8031-10.716-8.3302-11.771-1.1095-0.65946 0.0777-1.1872 0.0777-1.1872 1.2433-0.80849 2.2232-0.42936 3.4666-1.2379z" fill-rule="evenodd" stroke="#000" stroke-width="1.1082" fill="#33b1e9"/> + <path id="path643" d="m241.77 314.47c-3.0693 0-5.54 2.4706-5.54 5.54-0.92332 4.221-0.7916 10.157 0 15.828 0 3.0689 2.4706 5.54 5.54 5.54 12.223 1.3189 25.369 0.92333 36.669 0 3.0693 0 5.54-2.4711 5.54-5.54 1.4511-5.0122 1.055-10.288 0-15.828 0-3.0693-2.4706-5.54-5.54-5.54-12.223-0.52773-24.71-1.1872-36.669 0z" fill-rule="evenodd" stroke="#000" stroke-width="1.5832" fill="#983d25"/> + <path id="path1138" stroke-linejoin="round" d="m200.49 163.79c-2.789 2.4154-5.5775 4.8307-8.3665 7.246-3.4362 1.519-7.1717 3.4113-4.4824 11.504-1.5688 10.384 6.7981 12.027 14.119 9.8606 1.2201-2.6893 1.6077-4.5457 2.8278-7.235-3.2373-0.49777-4.9692 0.63623-7.9076 0.43696-2.0172-0.3234-2.1662-1.8424-1.4194-2.8384 3.1622-1.5689 6.0259-3.0626 9.1881-4.6314-0.0747-0.47327-0.14945-0.12454-0.22418-0.59781-2.6146 1.3447-4.4815 1.793-7.2456 2.9135-2.1916 0.77218-2.8139-2.0421-1.9425-3.2872 0 0 5.6772-8.1423 5.6772-8.2171 0.47538-1.7124 0.14607-4.5955-0.22376-5.1545z" fill-rule="evenodd" stroke="#000003" stroke-linecap="round" stroke-width="1.0555" fill="#268728"/> + <path id="path614" d="m275.88 473.6c0 5.7342-4.6485 10.383-10.383 10.383-5.7342 0-10.383-4.6485-10.383-10.383 0-5.7342 4.6485-10.383 10.383-10.383 5.7342 0 10.383 4.6485 10.383 10.383z" fill-rule="evenodd" transform="matrix(.42219 0 0 .42219 107.4 106.2)" stroke="#000" stroke-width="2.5" fill="#fff"/> + <path id="path615" d="m275.88 473.6c0 5.7342-4.6485 10.383-10.383 10.383-5.7342 0-10.383-4.6485-10.383-10.383 0-5.7342 4.6485-10.383 10.383-10.383 5.7342 0 10.383 4.6485 10.383 10.383z" fill-rule="evenodd" transform="matrix(.39806 0 0 .39806 93.268 134.16)" stroke="#000" stroke-width="2.6515" fill="#fff"/> + <path id="path616" d="m275.88 473.6c0 5.7342-4.6485 10.383-10.383 10.383-5.7342 0-10.383-4.6485-10.383-10.383 0-5.7342 4.6485-10.383 10.383-10.383 5.7342 0 10.383 4.6485 10.383 10.383z" fill-rule="evenodd" transform="matrix(.39806 0 0 .39806 195.97 143.42)" stroke="#000" stroke-width="2.625" fill="#fff"/> + <path id="path1143" stroke-linejoin="round" d="m200.88 169.32c0.0992 2.485 0.16634 5.6058 0.16634 6.5566-0.10555-2.3242-0.91953-4.1852-1.221-5.1 0.36224-0.59655 0.94908-1.4566 1.0546-1.4566z" fill-rule="evenodd" stroke="#000" stroke-width=".42219pt" fill="#ba4600"/> + <path id="path617" d="m275.88 473.6c0 5.7342-4.6485 10.383-10.383 10.383-5.7342 0-10.383-4.6485-10.383-10.383 0-5.7342 4.6485-10.383 10.383-10.383 5.7342 0 10.383 4.6485 10.383 10.383z" fill-rule="evenodd" transform="matrix(.39806 0 0 .39806 131.59 148.43)" stroke="#000" stroke-width="3.8182" fill="#973100"/> + <path id="path618" d="m275.88 473.6c0 5.7342-4.6485 10.383-10.383 10.383-5.7342 0-10.383-4.6485-10.383-10.383 0-5.7342 4.6485-10.383 10.383-10.383 5.7342 0 10.383 4.6485 10.383 10.383z" fill-rule="evenodd" transform="matrix(.39806 0 0 .39806 175.18 148.43)" stroke="#000" stroke-width="3.8182" fill="#973100"/> + <path id="path619" d="m275.88 473.6c0 5.7342-4.6485 10.383-10.383 10.383-5.7342 0-10.383-4.6485-10.383-10.383 0-5.7342 4.6485-10.383 10.383-10.383 5.7342 0 10.383 4.6485 10.383 10.383z" fill-rule="evenodd" transform="matrix(.39806 0 0 .39806 175.18 128.39)" stroke="#000" stroke-width="3.8182" fill="#973100"/> + <path id="path620" d="m275.88 473.6c0 5.7342-4.6485 10.383-10.383 10.383-5.7342 0-10.383-4.6485-10.383-10.383 0-5.7342 4.6485-10.383 10.383-10.383 5.7342 0 10.383 4.6485 10.383 10.383z" fill-rule="evenodd" transform="matrix(.39806 0 0 .39806 131.84 128.39)" stroke="#000" stroke-width="3.8182" fill="#973100"/> + <path id="path621" d="m200.9 348.26c-0.24403-0.31116-2.1-5.5725-12.591-5.8013-1.4756-0.0865-2.4115 0.33775-5.4006 0.13088-1.7318 0.14228-1.0534-1.9218-0.36688-2.6644 1.1378-0.79836-4.0534-0.4091-5.8376-0.19759-1.7994-0.10343-3.0098-0.40994-4.026-0.61639-3.1462-0.30145-4.9869-2.5108-2.6885-3.8436 0.96302-0.94655 4.8776 0.13003 6.3379-0.0718 1.4439-0.4395 1.2417-2.873-0.15747-3.0693-1.9906-0.29469-10.673-0.94571-9.9645-1.9197-1.3274-2.2114-0.94233-3.3568 2.5065-2.9283 1.9231 1.1661 1.8673-0.32804 1.3991-1.1982-0.56996-1.6533-3.7292-1.9096-3.8132-3.3446-0.51465-3.4429 1.7445-3.9061 3.1086-3.3247 0.57545-0.48467-2.5817-3.1778 0.99341-4.4904 0.88829-0.27864 2.7164-0.0616 3.3328 3.2036 1.8597 0.57544 0.5746-2.1426 3.0976-3.2475 2.1629-0.90644-0.14397 9.6867 2.4348 9.5921 2.2224 0.90433 1.7846-5.7899 3.6452-4.4874 4.0214-1.0314 2.0751 12.848 3.825 12.01 2.9051 2.5407 3.2091-2.2849 4.0556-1.7593 1.4224 0.0376 2.3693 0.0882 1.576 3.2796-0.59064 2.4837 0.293 3.0596 0.74474 4.0555 2.7172 5.9879 6.7947 5.9322 8.1558 8.6878 0.43823 4.0745-0.30017 1.4494-0.3673 2.0046z" fill-rule="evenodd" stroke="#286726" stroke-width="1.9526" fill="#008d00"/> + <path id="path622" d="m251.14 357.47c-5.016 4.1208-10.227 6.7895-12.135 11.079 2.2862-0.30778 3.1694-0.68943 4.875-0.47454 1.8471-4.1328 7.656-6.34 11.085-9.6816-1.275-0.30778-2.5504-0.61555-3.8255-0.92316z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#009400"/> + <path id="path629" d="m264.55 357.91c4.5356 4.1898 10.158 6.584 12.135 11.011-2.2862-0.30777-3.2394-0.62019-4.6023-0.26851-1.8471-4.1328-7.9287-6.546-11.358-9.8877 1.275-0.30778 2.5504-0.54716 3.8254-0.85493z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#009400"/> + <path id="path630" d="m261.13 358.76c5.496 3.2977 7.6893 5.6713 11.075 9.8923-1.6267 0.098-3.9086 0.83552-4.7437 1.3193-4.0893-5.32-7.2549-7.2106-10.684-10.552 1.275-0.30778 3.0782-0.35169 4.3532-0.65946z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#fff"/> + <path id="path827" d="m209.24 180.19c-2.2013 0.60542-3.1516 2.4618-3.3518 4.1932-8.1111 5.6814-2.2156 16.865 5.3061 14.542-5.5653-8.3344 0-13.042 6.1906-10.121 1.8758 1.3759 3.1837 4.2451 3.3606 4.0682 1.1775-2.553 5.8368-4.7758 5.8368-4.7758s3.7532 0.5041 4.4304-1.9239c0.42725-1.5528 3.8824-7.9806 3.8824-7.9806-4.0091-0.82538-8.0182-1.6508-12.027-2.4761-2.7708-0.0591-5.5416-0.11779-8.3129-0.1769-1.4739 0.64848-2.9477 1.297-4.4216 1.9454-0.58938 0.94317-0.30355 1.7618-0.89335 2.705z" stroke-opacity=".77245" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#ffba00"/> + <path id="path631" d="m256.64 359.03c5.496 3.2977 8.0165 6.3852 11.402 10.606-1.4899 0.4395-1.9932 2.8916-2.8282 3.3754-2.6387-5.32-7.0016-9.8539-11.618-14.383 1.275-0.30778 1.7694 0.70885 3.0444 0.40108z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#d40000"/> + <path id="path627" d="m254.57 358.39c-5.496 3.2977-7.4145 5.3973-10.8 9.6183 1.6267 0.0984 3.6338 1.1095 4.4689 1.5933 4.0893-5.32 7.2549-7.2106 10.684-10.552-1.275-0.30778-3.0782-0.35169-4.3532-0.65946z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#fff"/> + <path id="path628" d="m259.05 358.65c-5.496 3.2977-7.8101 6.5895-11.196 10.811 2.7244 1.9509 2.0611 2.07 2.6218 3.1711 2.6387-5.32 8.4421-9.7167 13.059-14.245-1.275-0.30778-3.2099 0.57164-4.4849 0.26386z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#d40000"/> + <path id="path635" d="m203.69 472.45c0 5.0024-7.2204 9.0577-16.127 9.0577-8.9068 0-16.127-4.0553-16.127-9.0577s7.2203-9.0577 16.127-9.0577c8.9068 0 16.127 4.0553 16.127 9.0577z" fill-rule="evenodd" transform="matrix(.43855 .14328 -.13174 .47697 170.31 53.137)" stroke="#000" stroke-width="2.2433" fill="#973000"/> + <path id="path761" d="m250.12 351.73c-3.9618 2.8468-9.5643 6.6502-13.526 9.497-0.81356 0.69451 2.7463 1.4232 4.0513 0.78485 4.1822-2.8713 6.3818-4.7516 10.564-7.6229 0.79709-0.44499 1.5946-0.89039 2.3917-1.3354-1.7069-0.12244-1.774-1.2011-3.481-1.3236z" fill-rule="evenodd" stroke="#005e00" stroke-width="1.0555" fill="#008d2b"/> + <path id="path636" d="m203.69 472.45c0 5.0024-7.2204 9.0577-16.127 9.0577-8.9068 0-16.127-4.0553-16.127-9.0577s7.2203-9.0577 16.127-9.0577c8.9068 0 16.127 4.0553 16.127 9.0577z" fill-rule="evenodd" transform="matrix(.37238 -.14619 .17511 .39171 62.95 178.21)" stroke="#000" stroke-width="2.5489" fill="#973000"/> + <path id="path756" d="m290.53 307.86c0.20687-10.871 9.7386-1.3531 13.481-5.8317 8.7946-10.365 9.5482-11.154 17.318-10.03 20.824 8.1829-0.91192 27.106-22.195 18.489-2.3356-1.2847-6.2682-1.3434-8.6042-2.6281z" fill-rule="evenodd" stroke="#000" stroke-width="1.1093" fill="#008d00"/> + <g id="g660" fill-rule="evenodd" transform="matrix(.42219 0 0 .42219 108.15 107.5)" fill="#6d390b"> + <path id="path657" d="m619.32 390.34c0 3.9954-3.239 7.2344-7.2344 7.2344s-7.2344-3.239-7.2344-7.2344 3.239-7.2344 7.2344-7.2344 7.2344 3.239 7.2344 7.2344z" transform="matrix(0.874 .24840 -.16470 .72013 140.99 -45.21)"/> + <rect id="rect659" transform="matrix(.75535 .65532 -.65532 .75535 0 0)" height="4.8229" width="15.887" y="-110.5" x="720.08" stroke-width="1pt"/> + </g> + <path id="path1192" d="m337.62 287.58 1.1061 1.5499 3.8221-3.3302-1.1057-1.5494-3.8225 3.3298z" fill-rule="evenodd" stroke-width="1pt" fill="#6d390b"/> + <path id="path638" d="m241.77 314.33c6.4633 1.9788 11.212 25.458 17.543 27.568" stroke="#000" stroke-linecap="round" stroke-width="1.5832" fill="none"/> + <path id="path639" d="m247.97 314.2c6.4633 1.9788 11.08 25.458 17.411 27.568" stroke="#000" stroke-linecap="round" stroke-width="1.5832" fill="none"/> + <path id="path640" d="m254.04 313.94c6.4633 1.9788 11.212 25.589 17.543 27.699" stroke="#000" stroke-linecap="round" stroke-width="1.5832" fill="none"/> + <path id="path645" d="m203.69 472.45c0 5.0024-7.2204 9.0577-16.127 9.0577-8.9068 0-16.127-4.0553-16.127-9.0577s7.2203-9.0577 16.127-9.0577c8.9068 0 16.127 4.0553 16.127 9.0577z" fill-rule="evenodd" transform="matrix(.37238 -.14619 .17511 .39171 157.39 161.86)" stroke="#000" stroke-width="2.2433" fill="#973000"/> + <path id="path650" d="m340.66 292.97c0.32382 1.2535-0.23769 2.8793-2.4432 3.4489-2.2055 0.56995-4.2759-0.2892-4.5998-1.5431-0.32382-1.2539 0.9533-3.0562 3.1592-3.6262 2.2051-0.56953 3.5595 0.46652 3.8837 1.7204z" fill-rule="evenodd" stroke="#000" stroke-width="1.008" fill="#dc0000"/> + <path id="path719" d="m243.6 353.06c-3.2703 0.66326-10.724 2.2786-13.974 8.7932-0.58937 1.226-5.4935 2.1764-4.829 0.0604 0.76627-1.1078 1.0398-1.2041 1.8065-2.3115-0.06-1.3886-3.2373-0.97821-3.0191 0.26386-0.2436-0.0553-1.7804 0.2415-2.5019 0.98666-1.9488 2.488-5.2752 2.3773-5.16-0.27696 1.2298-0.90981 1.8526-1.7833 2.4694-3.1219 0.40741-1.4532-2.4356-1.9737-3.3547-0.90053-1.9459 1.0177-3.1673 2.4764-5.4825 3.6057-2.5783 0.92755-5.0557-0.72574-2.8109-2.0556 2.0185-0.99156 0.33649-3.284-0.6489-3.3584-1.6997-0.41079-8.6646 0.76459-9.9185 0.0625-0.98075-0.12877-2.7738-2.7083-0.67339-3.169 1.9028-0.62104 5.0798 0.69661 5.9001-3.0224 0.822-6.2628 10.76 3.2036 9.1463 0.5898-3.641-5.3842 2.5564-6.6486 4.4275-2.9824 0.76247 1.6554 4.5466 4.1096 5.6438 3.6486 2.0628 0.22798-3.8271-5.2149 0.84944-6.1027 1.0664 0.22672 2.9688 0.30778 4.2818 2.127 0.97568 0.93979 1.1838 4.8083 4.8341 5.1288 0.79794-1.1779 0.0317-0.57798-0.68141-2.1958-0.006-1.9594 3.2348-1.7994 4.6196 1.5165 1.3717 2.5319 8.6122 0.81229 15.237 0.9647 2.1232-0.34704 5.5383 1.519-6.1618 1.7496z" fill-rule="evenodd" stroke="#286026" stroke-width="1.9526" fill="#008d00"/> + <path id="path648" d="m333.32 292.73c1.1657 1.7905 1.1412 4.628-2.0088 6.6786s-6.8386 1.7947-8.0043 0.004c-1.1657-1.7909-0.11526-5.2812 3.0347-7.3317 3.1495-2.0502 5.8123-1.142 6.9784 0.6489z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#dc0000"/> + <path id="path651" d="m335.58 285.31c1.0914 0.69619 1.7888 2.2684 0.5632 4.1885-1.2252 1.9205-3.3256 2.7033-4.4174 2.0067-1.0914-0.69661-1.3856-2.8861-0.16044-4.8066 1.2252-1.9197 2.9224-2.0852 4.0146-1.3886z" fill-rule="evenodd" stroke="#000" stroke-width="1.008" fill="#dc0000"/> + <path id="path649" d="m338.9 288.57c0.70632 1.085 0.69154 2.805-1.2176 4.0475-1.9091 1.2429-4.145 1.088-4.8514 0.003-0.70633-1.0854-0.0701-3.2006 1.8395-4.4435 1.9087-1.2425 3.5228-0.69196 4.2295 0.39348z" fill-rule="evenodd" stroke="#000" stroke-width="1.008" fill="#dc0000"/> + <path id="path653" d="m346 282.14c0.53153 0.81609 0.52013 2.1105-0.91615 3.0452-1.4363 0.93515-3.1187 0.81863-3.6502 0.002-0.53153-0.81651-0.0528-2.4082 1.3839-3.3433 1.4363-0.93473 2.6505-0.52056 3.1825 0.29637z" fill-rule="evenodd" stroke="#000" stroke-width=".75840" fill="#d90000"/> + <path id="path633" d="m255.24 348.07c-2.8097 0.32931-4.4093 0.50283-4.9493 2.5357-0.29975 1.3806-0.0599 3.1842 0.17985 4.7336 0 1.7791 2.2452 2.9577 4.8598 3.4652h4.4993c1.8944 0 5.3994-1.8549 5.3994-3.634 0.27991-1.0056 0.26978-2.629 0.26978-3.7284 0-2.992-2.1122-3.1765-4.753-3.4565l-5.5058 0.0844z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#fff"/> + <path id="path654" d="m355.13 312.72c-0.31073-10.384-3.0465-25.432 9.7002-30.593 1.6444-0.42895 2.2384 0.49776 1.6786 1.8656-3.7929 9.5757-7.5859 19.151-11.379 28.727z" fill-rule="evenodd" stroke="#286326" stroke-width="1.7415" fill="#008f00"/> + <path id="path656" d="m371.6 291.58c2.2693-4.2683 7.8768-5.3432 9.8556-5.2111-3.9133 4.0011-7.8265 13.806-10.025 17.015-3.1656 5.4522-12.399 9.3211-17.938 12.531 6.1994-8.4421 11.908-15.894 18.108-24.335z" fill-rule="evenodd" stroke="#286326" stroke-width="1.7415" fill="#008c00"/> + <path id="path692" d="m255.48 348.01s-2.8143 0.5003-2.8768 0.5003-2.1886 1.3755-2.1886 1.3755-0.43781 2.6889-0.43781 2.7514 0.50029 3.0642 0.50029 3.0642l1.3134 1.8133 3.4392 1.1879 0.25036-10.693z" fill-rule="evenodd" stroke="#000" stroke-width=".42219pt" fill="#009400"/> + <path id="path655" d="m353.45 315.9c0.3728-0.37321 7.2958-33.014 18.841-36.88 1.8652 2.425 0.96555 7.6961 0.21954 10.494-3.5443 12.187-12.158 20.541-19.06 26.386z" fill-rule="evenodd" stroke="#286326" stroke-width="1.7415" fill="#008d00"/> + <g id="g663" fill-rule="evenodd" transform="matrix(-.33958 -.25086 -.25086 .33958 686.56 298.42)" fill="#6d390b"> + <path id="path664" d="m619.32 390.34c0 3.9954-3.239 7.2344-7.2344 7.2344s-7.2344-3.239-7.2344-7.2344 3.239-7.2344 7.2344-7.2344 7.2344 3.239 7.2344 7.2344z" transform="matrix(0.874 .24840 -.16470 .72013 140.99 -45.21)"/> + <rect id="rect665" transform="matrix(.75535 .65532 -.65532 .75535 0 0)" height="4.8229" width="15.887" y="-110.5" x="720.08" stroke-width="1pt"/> + </g> + <g id="g666" fill-rule="evenodd" transform="matrix(.42377 .15708 -.15237 .43687 148.27 41.811)" fill="#6d390b"> + <path id="path667" d="m619.32 390.34c0 3.9954-3.239 7.2344-7.2344 7.2344s-7.2344-3.239-7.2344-7.2344 3.239-7.2344 7.2344-7.2344 7.2344 3.239 7.2344 7.2344z" transform="matrix(0.874 .24840 -.16470 .72013 140.99 -45.21)"/> + <rect id="rect668" transform="matrix(.75535 .65532 -.65532 .75535 0 0)" height="4.8229" width="15.887" y="-110.5" x="720.08" stroke-width="1pt"/> + </g> + <g id="g669" fill-rule="evenodd" transform="matrix(-.35221 .28319 -.29686 -.35489 692.41 281.45)" fill="#6d390b"> + <path id="path670" d="m619.32 390.34c0 3.9954-3.239 7.2344-7.2344 7.2344s-7.2344-3.239-7.2344-7.2344 3.239-7.2344 7.2344-7.2344 7.2344 3.239 7.2344 7.2344z" transform="matrix(0.874 .24840 -.16470 .72013 140.99 -45.21)"/> + <rect id="rect671" transform="matrix(.75535 .65532 -.65532 .75535 0 0)" height="4.8229" width="15.887" y="-110.5" x="720.08" stroke-width="1pt"/> + </g> + <path id="path682" d="m348.43 325.62c7.0932-3.8436 2.6488 1.549 2.2076 4.5014-2.0958 7.2857-4.0547 7.3322-6.5194 8.5738-3.6756 3.3526-15.453 1.7263-20.925 3.1082 6.8593-4.981 18.378-11.203 25.237-16.183z" fill-rule="evenodd" stroke="#286326" stroke-width="1.4168" fill="#008c00"/> + <path id="path673" d="m337.81 323.93c2.9616-2.3503 3.448-7.5398 3.2504-9.338-2.6843 3.8339-9.5546 8.0465-11.756 10.263-3.7697 3.2454-6.0842 11.928-8.1136 17.195 5.7696-6.2108 10.85-11.909 16.619-18.12z" fill-rule="evenodd" stroke="#286326" stroke-width="1.4168" fill="#008c00"/> + <path id="path675" d="m300.93 353.74c4.639-1.3611 12.545 2.0666 13.835 3.5738-5.597-0.001-14.666 3.8852-18.498 4.5569-6.1116 1.5477-23.062-8.0151-29.13-9.3809 10.13-0.51043 23.423 2.7185 33.793 1.2501z" fill-rule="evenodd" stroke="#286326" stroke-width="1.7415" fill="#008c00"/> + <path id="path759" d="m265.62 352.76c3.9618 2.8468 9.5643 6.6502 13.526 9.497 0.81356 0.6945-2.7463 1.4232-4.0513 0.78485-4.1822-2.8713-6.3818-4.7517-10.564-7.6229-0.79709-0.44499-1.5946-0.8904-2.3917-1.3354 1.7069-0.12243 1.774-1.2011 3.4809-1.3236z" fill-rule="evenodd" stroke="#004500" stroke-width="1.0555" fill="#00602b"/> + <path id="path674" d="m320.61 341.81c0.47581-0.17986 19.363-25.678 31.104-24.624 0.70548 2.7983-2.151 6.999-3.9052 9.1269-7.9021 9.1556-18.799 13.082-27.199 15.497z" fill-rule="evenodd" stroke="#286326" stroke-width="1.6632" fill="#008c00"/> + <g id="g676" fill-rule="evenodd" transform="matrix(.29974 .33824 -.34026 .31352 265.66 6.8508)" fill="#6d390b"> + <path id="path677" d="m619.32 390.34c0 3.9954-3.239 7.2344-7.2344 7.2344s-7.2344-3.239-7.2344-7.2344 3.239-7.2344 7.2344-7.2344 7.2344 3.239 7.2344 7.2344z" transform="matrix(0.874 .24840 -.16470 .72013 140.99 -45.21)"/> + <rect id="rect678" transform="matrix(.75535 .65532 -.65532 .75535 0 0)" height="4.8229" width="15.887" y="-110.5" x="720.08" stroke-width="1pt"/> + </g> + <g id="g679" fill-rule="evenodd" transform="matrix(-.44732 .064498 -.074898 -.45658 628.85 486.61)" fill="#6d390b"> + <path id="path680" d="m619.32 390.34c0 3.9954-3.239 7.2344-7.2344 7.2344s-7.2344-3.239-7.2344-7.2344 3.239-7.2344 7.2344-7.2344 7.2344 3.239 7.2344 7.2344z" transform="matrix(0.874 .24840 -.16470 .72013 140.99 -45.21)"/> + <rect id="rect681" transform="matrix(.75535 .65532 -.65532 .75535 0 0)" height="4.8229" width="15.887" y="-110.5" x="720.08" stroke-width="1pt"/> + </g> + <path id="path660" d="m163 255.92c0.55307-0.82538 1.8285-1.3683 3.4172-0.47792 1.5887 0.88955 2.2608 2.4491 1.7073 3.2753-0.55349 0.8258-2.3398 1.0753-3.9289 0.18534-1.5887-0.88955-1.7491-2.1565-1.1956-2.9828z" fill-rule="evenodd" stroke="#000" stroke-width=".78839" fill="#dc0000"/> + <path id="path684" d="m297.7 350.34c7.7995-2.0624 7.3351-5.8182 10.979-9.1028-8.4358-1.2345-15.165 1.7512-18.769 3.7338-5.6928 3.6709-7.1654 7.6564-12.098 10.401 8.4087-1.0736 12.197-2.2811 19.887-5.0321z" fill-rule="evenodd" stroke="#286326" stroke-width="1.4168" fill="#008c00"/> + <path id="path685" d="m272.26 352.62c22.308 1.6828 18.753-7.3735 43.201-7.1502-0.36097 2.8633-5.0291 6.4553-7.4373 7.7995-10.691 5.6534-28.259 8.3018-35.764-0.64933z" fill-rule="evenodd" stroke="#286326" stroke-width="1.6632" fill="#008c00"/> + <path id="path693" d="m260.92 347.95 0.0625 10.505 2.8764-1.1254s1.188-1.8762 1.188-2.0012c0-0.12496 0.50029-2.564 0.50029-2.6264 0-0.0625-0.24993-3.0013-0.24993-3.0013l-2.1886-1.4384-2.1886-0.31242z" fill-rule="evenodd" stroke="#000" stroke-width=".42219pt" fill="#d40000"/> + <rect id="rect656" fill-rule="evenodd" transform="matrix(-.67306 -.73958 .76307 -.64632 0 0)" height="1.5913" width="5.3039" y="-44.279" x="-299.88" stroke-width="1pt" fill="#6d390b"/> + <path id="path663" d="m163.56 252.82c0.60542-1.0534 2.0016-1.7466 3.7406-0.61006 1.7394 1.1357 2.4749 3.1263 1.869 4.1805-0.60584 1.0542-2.5614 1.373-4.3008 0.23685-1.739-1.1357-1.9146-2.7527-1.3088-3.8073z" fill-rule="evenodd" stroke="#000" stroke-width=".93190" fill="#dc0000"/> + <path id="path658" d="m173.39 248.42c1.0166 0.0418 2.1198 0.94106 2.0624 2.9866-0.057 2.0447-1.1623 3.6076-2.1802 3.5658s-2.0957-1.6022-2.0388-3.6477c0.057-2.0447 1.1382-2.9456 2.1565-2.9047z" fill-rule="evenodd" stroke="#000" stroke-width=".84713" fill="#dc0000"/> + <path id="path661" d="m168.38 249.24c1.1526-0.30271 2.6547 0.20898 3.1956 2.2376 0.54167 2.0282-0.23432 3.9373-1.3873 4.2396-1.153 0.30229-2.8232-0.86675-3.3648-2.8958-0.54125-2.0282 0.40361-3.2791 1.5566-3.5814z" fill-rule="evenodd" stroke="#000" stroke-width=".92835" fill="#dc0000"/> + <path id="path665" stroke-linejoin="round" d="m197.12 281.77c-3.4784-8.8433-12.97-23.524-22.639-16.449-10.73 9.2562 4.8936 23.818 18.218 22.993 1.4739-2.1814 2.9477-4.3629 4.4216-6.5444z" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="#008d00"/> + <path id="path659" d="m169.51 255.85c1.858-1.2497 4.8383-1.2784 7.0522 1.9678 2.2135 3.2466 2.0151 7.0983 0.15748 8.3479-1.8585 1.2501-5.5438 0.22081-7.7577-3.0254-2.2135-3.2458-1.3105-6.0398 0.548-7.2904z" fill-rule="evenodd" stroke="#000" stroke-width="1.1048" fill="#dc0000"/> + <path id="path662" d="m162.64 241.08c0.84691-0.56995 2.2064-0.58262 3.2158 0.89758 1.009 1.4802 0.9191 3.2373 0.0713 3.8073-0.84691 0.56953-2.5276 0.10048-3.5375-1.3801-1.009-1.4798-0.5974-2.7544 0.25036-3.3247z" fill-rule="evenodd" stroke="#000" stroke-width=".79383" fill="#dc0000"/> + <path id="path666" d="m226.66 292.29c-4.3701-7.775-16.296-17.498-28.445-11.278-14.366 10.083 5.795 25.186 26.427 17.739 1.8513-1.918 0.16592-4.5432 2.0176-6.4612z" fill-rule="evenodd" stroke="#000" stroke-width="1.1093" fill="#008d00"/> + <path id="path668" d="m267.16 296.89c-4.3701-7.775-27.793-16.614-37.996-9.1556-12.774 14.328 5.9719 24.301 31.203 17.208 1.8513-1.918 4.9413-6.1348 6.793-8.0528z" fill-rule="evenodd" stroke="#000" stroke-width="1.1093" fill="#008d00"/> + <path id="path669" stroke-linejoin="round" d="m176.19 267.85c0.12497 0 2.6264 3.1263 2.6264 3.1263l-0.12539-4.3773" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path671" stroke-linejoin="round" d="m180.57 273.97 2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path672" stroke-linejoin="round" d="m189.82 272.22 0.25036 3.0015 1.6254-0.12497" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path676" stroke-linejoin="round" d="m189.82 282.23c-0.62526-0.3749-2.7514-2.1261-2.7514-2.1261" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path678" stroke-linejoin="round" d="m183.69 282.48-3.502-1.1256" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path679" d="m177.06 275.85-3.3767-1.1256" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path681" stroke-linejoin="round" d="m170.69 273.85h-2.8768" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path683" stroke-linejoin="round" d="m184.19 264.34v-3.752" stroke="#000" stroke-linecap="round" stroke-width=".42219pt" fill="none"/> + <path id="path686" stroke-linejoin="round" d="m179.19 284.61c-0.3749 0-5.2524-0.25036-5.2524-0.25036" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path687" stroke-linejoin="round" d="m187.95 287.98-3.752 1.2505" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path688" stroke-linejoin="round" d="m193.57 274.6c0.12497-0.12497 3.1267-1.626 3.1267-1.626" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path689" stroke-linejoin="round" d="m185.07 270.35c0-0.12496-1.0006-4.1269-1.0006-4.1269" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path694" d="m255.18 348c-2.8097 0.32931-4.4093 0.50283-4.9493 2.5357-0.29976 1.3806-0.0599 3.1842 0.17985 4.7336 0.50029 2.5921 2.2452 2.9577 4.8598 3.4652h4.4993c1.8944 0 4.9616-1.2297 5.4619-3.5716 0.34239-1.1931 0.20729-2.6914 0.20729-3.7908-0.24993-2.7421-2.1122-3.1766-4.753-3.4565l-5.5058 0.0844z" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path695" d="m255.49 348.01-0.0887 10.435" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path696" d="m260.97 348.01-0.0887 10.435" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path699" d="m373.82 258.77c1.6495-5.4247-4.0615-6.7073-5.3327-9.7534-2.6079 5.1034-1.6942 10.3-1.2324 13.033 1.069 4.4372 5.0025 7.5044 5.6548 11.253 1.1526-5.5954 0.96723-9.0257 0.91024-14.533z" fill-rule="evenodd" stroke="#286326" stroke-width=".94840" fill="#008c00"/> + <path id="path700" d="m381.38 253.73c0.11104-2.9684 3.9829-5.0941 5.5433-5.5628-0.96724 5.7726 0.77049 8.4839 0.31115 10.851-0.34535 3.8647-7.4246 9.7699-10.434 13.051 1.5258-6.3396 3.0528-12 4.5791-18.339z" fill-rule="evenodd" stroke="#286326" stroke-width="1.2603" fill="#008c00"/> + <path id="path698" d="m373.22 276.87c0.18914-0.35506-2.946-27.591 4.9079-33.242 2.0578 1.2087 2.7316 5.1068 2.8836 7.2448 0.43444 9.3878 0.74221 14.158-7.7915 25.998z" fill-rule="evenodd" stroke="#286326" stroke-width="1.3489" fill="#008c00"/> + <path id="path712" d="m215.69 276.22c2.2469 0.71307 4.2265 3.1639 3.0115 7.1472-1.2155 3.9834-3.0968 6.5452-6.05 5.6556-3.8394-0.88955-4.5276-4.4482-3.3133-8.4315 1.2151-3.9829 4.1041-5.0836 6.3518-4.3713z" fill-rule="evenodd" stroke="#000" stroke-width="1.1669" fill="#dc0000"/> + <path id="path717" d="m219.49 272.15c0.71392 0.50071 1.1408 1.553 0.26978 2.7427-0.87056 1.1897-2.2988 1.6009-3.0123 1.0998-0.71434-0.50156-0.85493-1.9345 0.0152-3.1252 0.87055-1.1893 2.013-1.2193 2.7273-0.71729z" fill-rule="evenodd" stroke="#000" stroke-width="1.3374" fill="#dc0000"/> + <path id="path718" d="m213.58 270.93c0.85282-0.18112 1.9138 0.22333 2.1907 1.6714 0.2778 1.4478-0.39475 2.7735-1.2476 2.9542-0.85366 0.18112-1.9982-0.69239-2.2769-2.1405-0.27696-1.4479 0.4796-2.3045 1.3337-2.4852z" fill-rule="evenodd" stroke="#000" stroke-width="1.3374" fill="#dc0000"/> + <path id="path713" d="m216.07 274.09c0.83551 0.25078 1.5718 1.115 1.1196 2.5184-0.45174 1.4034-1.6778 2.2431-2.5129 1.9923-0.83594-0.2512-1.4207-1.5672-0.96935-2.9709 0.45174-1.4029 1.5266-1.7909 2.3626-1.5397z" fill-rule="evenodd" stroke="#000" stroke-width="1.3374" fill="#dc0000"/> + <path id="path714" d="m217.28 269.07c0.69703 0.18956 1.3117 0.84353 0.9343 1.9053-0.37702 1.0622-1.4 1.6976-2.097 1.5076-0.69746-0.18998-1.1851-1.1859-0.80849-2.2482 0.37659-1.0614 1.2737-1.3548 1.9712-1.1648z" fill-rule="evenodd" stroke="#000" stroke-width="1.0627" fill="#dc0000"/> + <path id="path715" d="m220.94 275.46c0.76289 0.52436 1.1897 1.5228 0.18871 2.523-1.001 1.0006-2.5821 1.2391-3.3446 0.71477-0.76331-0.52478-0.86126-1.8433 0.13933-2.8443 0.99974-1.0002 2.2532-0.91826 3.0165-0.39348z" fill-rule="evenodd" stroke="#000" stroke-width="1.3385" fill="#dc0000"/> + <path id="path716" d="m211.34 273.27c0.7764-0.0933 1.6896 0.36773 1.8167 1.7183 0.12792 1.351-0.58178 2.5078-1.3582 2.6011-0.77725 0.0933-1.7259-0.8047-1.8543-2.1553-0.1275-1.3502 0.61851-2.0708 1.3958-2.1641z" fill-rule="evenodd" stroke="#000" stroke-width="1.2147" fill="#dc0000"/> + <path id="path701" d="m199.7 343.51v-0.12497 0.12497 0z" stroke="#000" stroke-width=".42219pt" fill="none"/> + <path id="path750" d="m300.57 291.21c4.3772 2.3347 2.8764 7.7957-0.25036 9.2548-0.16676-3.5852-2.4592-4.669-5.8777-5.5024 1.7926-1.0006 3.7102-4.2527 6.1281-3.7524z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#fff"/> + <path id="path751" d="m258.77 313.05c1.6102-23.735 19.644-26.614 31.597-22.505 17.503 12.701-0.2474 23.253-26.447 23.937-2.3356-1.2847-2.8135-0.14734-5.1494-1.4321z" fill-rule="evenodd" stroke="#000" stroke-width="1.1093" fill="#008d00"/> + <path id="path740" d="m264.01 286.38c-5.5982-0.22587-7.2878 5.2364-5.0916 8.087 2.2287-2.9984 5.0802-2.7607 8.8816-1.7327-1.1644-1.7753-1.1526-5.5509-3.79-6.3544z" fill-rule="evenodd" stroke="#000" stroke-width="1.1218" fill="#fff"/> + <path id="path739" d="m266.93 293.48c-4.3773 2.3347-3.4451 7.7957-0.31833 9.2548 0.16676-3.5852 2.4592-4.669 5.8777-5.5024-1.7926-1.0006-3.1415-4.2527-5.5594-3.7524z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#fff"/> + <path id="path738" stroke-linejoin="round" d="m301.15 291.66c0.0507-1.953-1.4903-3.6414-3.2973-3.9141-2.1776-0.26514-4.2675 1.2383-6.4456-0.35338-0.26514-0.17689-5.3234-4.5428-6.7749-6.5768-1.4515-0.79583-4.4934-2.2878-4.4934-2.2878-1.7926 2.3347-3.0545 5.0228-5.643 6.5616-1.2872 0.5155-1.7787 1.1192-4.1273 0.92755-2.428-1.1348-5.1-1.7179-6.4882-0.48551 1.1813 2.3393 0.85915 5.2985 0.36012 7.5496 0.87562 0.50029 1.8395-0.0988 2.8916 0.13636 3.2432 0.0861 2.4183 3.57 3.627 5.0709 3.4159 0.92882 5.152-0.70716 5.6493-3.4928 0.90348-1.4211 3.6638-1.6052 5.6278-2.1418 2.1262-0.41037 4.783-1.0863 6.7322 0.007 1.6094 0.85493 2.6885 1.8872 3.5016 3.6266 0 0 2.5631 0.22882 5.1279-0.24994 0.0882-1.5397-0.22756-4.3409 3.752-4.3772z" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="#f6aa00"/> + <path id="path741" d="m278.49 280.98c0.0418 1.8762 0.0832 3.752 0.12497 5.6282 0.66706 2.0426 5.2111 1.834 5.7527 0.49988-0.0418-2.1262-0.0832-4.2519-0.12496-6.378" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path742" d="m279.99 292.98c0.98117-0.33226 1.3447-3.0604 1.3447-3.0604" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path743" d="m284 292.23 0.24994-2.2511" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path744" d="m288.12 292.23-0.37-2.37" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path745" d="m277.24 290.48c-0.15157 0.0844-2.1257-2.3761-1.5005-2.1261" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path746" d="m273.62 294.11c0.25035 0-3.2669-3.6422-2.6416-3.3923" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path747" d="m270.36 287.36c-0.0912-0.27906-0.24994-1.6258 0.37532-1.3759" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path748" d="m278.2 286.52c-5.3428 4.612-10.374 2.6712-11.1 6.5494" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path749" d="m291.43 289.13c0.18703-0.22587 0.83002-1.4198 0.15705-1.4173" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path752" stroke-linejoin="round" d="m205.62 291.41c0.0697-0.10343 4.0602-0.43316 4.0602-0.43316l-3.7013-2.3402" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path753" stroke-linejoin="round" d="m229.94 295.39c0.0697-0.10343 4.0602-0.43316 4.0602-0.43316l-3.1698-3.6688" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path754" stroke-linejoin="round" d="m239.77 296.06c-0.1959-0.63498 4.1932 0.0984 4.0602-0.43317l-2.7712-3.0043" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path755" stroke-linejoin="round" d="m234.52 282.06c0.12497 0 2.6264 3.1263 2.6264 3.1263l-0.12539-4.3772" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path757" stroke-linejoin="round" d="m309.84 302.93c0.095 0.0811-0.0236 4.4592-0.0236 4.4592l2.8726-3.1153" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path758" stroke-linejoin="round" d="m277.78 301.81c0.0853 0.0912-0.48298 4.0547-0.48298 4.0547l4.2831-2.2722" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path763" stroke-linejoin="round" d="m202.71 281.49 2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path764" stroke-linejoin="round" d="m197.93 285.87 2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path765" stroke-linejoin="round" d="m215.84 292.68 3.6996-0.33015" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path766" stroke-linejoin="round" d="m209.96 296.33 3.7047-0.26302" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path767" stroke-linejoin="round" d="m236.75 287.92 2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path768" stroke-linejoin="round" d="m247.68 289.28 2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path769" stroke-linejoin="round" d="m227.31 284.5 2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path770" stroke-linejoin="round" d="m199.7 276.16 2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path771" stroke-linejoin="round" d="m229.05 308.13 2.4297-2.8097" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path772" stroke-linejoin="round" d="m241.36 310.46 2.4297-2.8097" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path773" stroke-linejoin="round" d="m194.11 296.09 3.6996-0.33015" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path774" stroke-linejoin="round" d="m201.11 293.46c-0.60416 0.0334 1.8732-0.15958 2.5568 0.11399l-3.6532-2.6138" stroke="#000" stroke-linecap="round" stroke-width="1.1243" fill="none"/> + <path id="path775" stroke-linejoin="round" d="m205.73 301.29 3.6996-0.33015" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path776" stroke-linejoin="round" d="m249.6 297.7 3.7047-0.26302" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path777" stroke-linejoin="round" d="m243.32 302.89 3.7047-0.26303" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path778" stroke-linejoin="round" d="m247.78 283.84c0.12497 0 2.6264 3.1263 2.6264 3.1263l-0.12539-4.3773" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path780" stroke-linejoin="round" d="m283.83 295.03-2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path781" stroke-linejoin="round" d="m292.44 297.9-2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path782" stroke-linejoin="round" d="m288.61 305.28-2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path783" stroke-linejoin="round" d="m319.5 305.96-2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path784" stroke-linejoin="round" d="m303.24 304.05-2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path785" stroke-linejoin="round" d="m319.23 288.33-2.6264 2.6264" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path786" stroke-linejoin="round" d="m331.66 306.08-3.698-0.35252" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path787" stroke-linejoin="round" d="m300.6 314.32 0.17943-3.7106" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path788" stroke-linejoin="round" d="m312.32 297.53 1.8901-3.1981" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path789" stroke-linejoin="round" d="m318.2 301.08 1.8901-3.1981" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path790" stroke-linejoin="round" d="m323.1 311.25c-0.0815 0.095-4.0834-0.0312-4.0834-0.0312l2.8688 2.0915" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path791" stroke-linejoin="round" d="m267.53 310.14c0.0853 0.0912-0.48298 4.0547-0.48298 4.0547l4.2831-2.2722" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path792" stroke-linejoin="round" d="m234.58 302.89c0.48762-0.36181 2.9629-1.1319 2.8299-1.6634l-2.6345-0.95415" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path828" stroke-linejoin="round" d="m346.11 277.88c1.7352 1.3468 4.6618-13.979 4.2134-18.775 0-0.31665-0.54462-10.487 1.5849-17.752 1.3447-2.4462 1.3932-20.773-0.624-25.591 1.6068-0.13553 3.554-0.65566 3.7938-2.6197-7.4221 2.7476-9.1847-15.687-16.326-26.274-6.9733-10.617-15.628-16.806-24.619-23.249 0.70125-1.8023 1.7386-3.4928 3.1124-5.1832-11.04 5.5298-28.243-14.492-53.627-12.996-5.7219 0.56995-8.4176 0.91573-9.8809 4.3992-4.7192 0.40023-9.5512 1.4726-9.5634 7.7003 0.009 1.492 1.3637 4.2168 4.3988 4.2519 4.1594 1.1973 7.534 0.26556 10.349 6.058 0.21109 1.5849 0.53449 4.4026 0.74558 5.9875 0 0-3.7233-4.7163-5.7595-5.5007 0.5404-0.78442-0.32045-1.3227 1.2484-2.5357-1.9049-1.1019-5.3149-0.20519-5.3149-0.20519s-7.3735-3.4708-13.313-2.5361c0-0.6337-1.1365-4.8087-1.1365-4.8087-1.0504 2.941-3.3708 2.7822-3.711 5.5742-0.63371-2.0075-1.492-4.4634-2.1257-6.4709-2.0844 2.8464-1.4794 5.917-2.219 8.8753-0.82622 0.67254-2.474 0.71012-2.8895-1.1952-0.21109-2.3246-0.49733-2.5572-0.48425-5.3297-1.5047 2.6222-3.3083 3.8993-3.9166 8.4269-0.63413-1.6904-0.96892-3.3066-1.603-4.9966 0.0802 5.8883-4.9983 9.4216-9.8083 13.555-1.351 2.5006 0.21151 2.5357 0.31706 3.8035 0.84522 0.42261 1.6904 0.84564 2.5357 1.2682 1.4794-0.10554 3.0706-0.21151 4.5495-0.31706 0.73968 0.95077 0.13468 1.0078 2.1072 1.6225 5.2828 1.4794 11.895-4.8729 17.082 5.1076-2.3888 1.9881-4.7775 6.6664-4.0281 7.534 0.95077 0-1.9087 1.3447 1.956 0.11188-4.0344 3.9226-6.7681 9.0804-6.7681 9.3975-0.44837 1.1011 1.6258-0.14903 1.1923 1.8521 0.567-1.5009 0.95921-0.12497 0.95921-0.12497-9.2075 9.9599-0.30778 20.64-1.2999 26.394 1.5309 2.4656 1.7217-0.0464 3.6355-0.3196 1.6199 7.0569 6.2526 11.337 9.1053 16.938-1.473-0.45174-4.4-0.61217-5.9849 0.0591 0.13467 2.6556 2.5357 5.1803 4.4376 7.5023-1.3734 0.42218-2.6416 0.84437-4.015 1.2708-2.8527 1.4777-4.7488 3.0313-6.7567 5.2478-1.3388 3.234 6.3902 4.0192 10.095 4.5639-0.33606 1.161-0.80933 2.6218-0.13679 3.8968 5.8275 0.56151 12.561-1.161 12.561-1.4777 0-0.32086 1.4599-1.1395 1.4599-1.1395 0.78443 1.5705 2.5103 2.0345 3.2753 1.8108 1.1015 0 2.8114-4.3865 2.0269-7.7472 2.1131 2.5331 4.1016 6.5693 6.2146 9.1066 0.64004 0.67145 1.4667 0.17749 1.9948-0.27442 1.7964 2.8542 4.2759 5.7082 6.0724 8.5579 0.95076 1.0892 0.746 0.68817 2.0328 0.76839 1.175-0.37997 2.1755-0.53618 2.7902-2.816 0 0 0.38968 0.35379 0.94401 1.6106 1.4186 1.009 2.4204-1.4169 3.2048-2.2021 0.44836-1.0808 2.1975 0.21152 2.1975-0.42176 0.63413 0.42218 1.05 2.2798 1.6841 2.702 0.97019-0.35886 1.9336-2.4909 2.0075-4.7538 0.96386 1.9843 1.2615 1.8196 2.0012 2.3516 0.63412-0.53196 0.83297-2.6007 1.4671-3.1284-0.13679-1.0935 7.6133 7.4727 7.9304 7.4727 0.765 0.55729 5.1452 1.8998 6.0415 0.33353 2.1869 1.4608 8.0718 2.3643 9.026 0.0169 4.8442 2.0687 10.545-0.24909 10.304-2.5627 4.4178 1.7648 11.305 0.58684 11.305 0.2702 0.78443-0.0929 2.914-2.1616 0.89673-3.7279-14.687-10.251-36.546-27.223-44.957-31.309 0-3.0258-2.2891-13.941-4.7547-16.947-0.44837-1.5498 0.56108-3.4653 2.0181-3.3534 5.7152 5.3441 7.7928 4.8349 10.818 5.6962 3.2753 2.5838 4.4511 6.5283 7.7265 10.121 1.5435 0.49311 3.3678 2.0565 2.8937 0.53238-2.0442-5.13-4.5153-10.096-10.635-16.766 3.1698 1.5849 8.3619 5.7831 11.868 8.825 2.3372 3.8516 2.9937 6.9192 5.1068 11.779 1.5317 0.97146 3.0963 4.5529 2.8722 1.5849-0.33606-5.5834-4.2519-14.449-4.2519-15.084 6.2248 4.9662 6.1602 12.663 8.0364 17.372 1.6254 2.3896 2.4432 5.5644 3.1158 4.8214 0.78443-1.085-1.8479-14.528-1.8479-14.528-0.42261-1.6904-0.63412-3.6055-1.0567-5.2959 4.6331 2.6665 6.253 12.843 8.421 25.034 0.006 1.9421 0.79709 4.0699 0.69155 5.3365 0.99425 1.2286 2.1392 4.6188 2.0877 2.5965 0 0 0.003-19.833-1.3417-24.389-0.33607-2.4272 0.5957-6.3974 0.5957-6.3974 1.6904 8.2416 3.4932 17.154 5.1836 25.395v6.0246c0.84522 0.84437 1.6904 1.6888 2.5357 2.5374 0.52816-4.9692 1.0567-9.9341 1.5849-14.899 0 0-1.902-17.435-1.902-17.751v-5.0718c-0.0384-1.7867 1.6039-1.4443 2.6864 0.57967 0.21151 4.3321 0.19843 7.7674 0.40994 12.1 0.73968 4.9637 1.2548 8.586 1.6584 14.898 0.19843 5.1718 0.39728 17.403 1.4924 17.192z" stroke-opacity=".77245" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#9c4314"/> + <path id="path793" stroke-linejoin="round" d="m264 306.55c-0.23811-0.55855-0.40952-3.1453-0.95752-3.1398l-1.5423 2.3393" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path794" stroke-linejoin="round" d="m310.35 292.43-0.31538 2.6163" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path795" stroke-linejoin="round" d="m287.3 311.73c-0.60289 0.0739-3.1352-0.48003-3.2821 0.0477l1.8188 2.1316" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path823" d="m248.54 253.1v0.27358-0.27358 0.27358-0.27358 2.7341 2.0502c0.13974 0.67804 0.13679 1.4333 0.13679 2.1869 0.0857 0.57924 0.28835 1.275 0.54673 1.9138 0.0376 0.81061 0.26345 1.3426 0.54674 2.0506 0.0583 0.69873 0.29679 1.2966 0.54673 1.9138 0.0591 0.70167 0.28624 1.0698 0.40995 1.6402 0.198 0.6565 0.43823 1.0842 0.68352 1.5034 0.17816 0.17817 0.24614 0.35549 0.40994 0.40995" stroke="#000" stroke-width=".42219pt" fill="none"/> + <path id="path825" d="m237.87 269.91c0-0.22165-0.0346-0.89293 0.27358-1.367 0.48383-0.68775 0.87224-1.1142 1.5034-1.777 0.74642-0.47497 1.2792-1.0382 1.9138-1.6402 0.68057-0.43443 1.0225-0.8182 1.6402-1.2303 0.37913-0.38672 0.81694-0.57839 1.2303-0.82031 0.47032-0.23094 0.81271-0.57249 1.5034-0.6831 0.41713-0.20856 1.2818-0.13679 1.9138-0.13679 0.65229 0 0.88027-0.12539 1.5038-0.13679" stroke="#000" stroke-width=".42219pt" fill="none"/> + <path id="path829" d="m337.24 222.43c2.1126 1.5317 4.438 4.8611 5.3888 10.883" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path830" d="m325.36 224.48c3.0638 2.7472 4.7931 5.7346 7.0793 12.468" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path831" d="m317.96 227.76c1.8665 2.1308 2.9937 4.3671 4.0154 7.0261" stroke-opacity=".77245" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="#00c600"/> + <path id="path832" d="m305.28 220.79c2.4301 2.8 6.3392 7.0793 8.3471 11.411" stroke-opacity=".77245" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="#00c600"/> + <path id="path833" d="m253.67 149.29c0.17732 12.179 18.004 9.2088 19.505 20.652 3.4117 12.488 1.9894 20.556-3.0009 24.521-2.8337 2.9173-0.66663 7.4529 0.1769 9.7821 4.6331 11.743 11.63 13.633 14.638 23.77" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path834" d="m247 157.6c0-0.2339 0.41839-0.64215 0.83213-0.83172 1.7745-0.57839 2.8654-0.61217 4.6804-0.72785 1.56 0 3.0157 0.0688 4.5757 0.312" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path835" d="m270.09 269.4 6.1977 10.082" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path836" d="m289.84 254.4 33.183 25.412" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path837" d="m288.95 261.37 24.249 21.287" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path838" d="m243.33 234.96c3.1934 6.3404 12.218 14.762 17.633 16.105 0.18492-4.0724-0.046-5.6455-0.69408-8.4687" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path839" d="m253.6 231.35c3.1934 6.3404 6.1091 13.097 14.579 16.939 0.87942-6.1555-1.0179-14.532-5.6924-23.048" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path840" d="m255.1 222.85c2.9156 1.7588 5.5535 2.545 7.4976 2.7767 0.87942-6.1555 1.6495-12.669-3.3724-21.482" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path841" d="m243.88 226.49c4.3042 4.6745 7.775 4.9054 9.7192 5.1372 1.4346-4.2118 2.0366-13.144 0.2778-22.771" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path842" d="m232.73 230.24c4.2852 5.5463 14.165 16.073 19.481 19.899 0.18492-0.88238 0.45935-1.2927 0.38884-4.1151" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path843" d="m305.92 169.33c4.5909 5.2926 22.306 23.103 25.813 31.439 6.0538 13.625 17.217 16.216 19.999 14.69" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path844" d="m275.57 242.96c1.5942 6.519 4.4891 18.378 8.6604 20.253 0.71814-0.70083 1.3252-1.997 1.2547-4.8214" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path845" d="m251.49 206.01c1.8732 1.9074 2.2976 3.6443 4.2417 3.8761 2.368-1.937 6.5389-12.734 5.0405-20.704" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path846" d="m241.67 205.71c0.88068 4.2894 1.7018 7.9122 4.7378 7.9456 5.0481-4.2198 6.5389-13.666 5.0405-21.635" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path847" d="m239.71 228.41-2.2731-4.9953" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path848" d="m288.76 268.83 15.217 13.823" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path849" d="m281.51 263.27 4.6956 13.219" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path850" d="m260.82 251.17c3.1934 6.3413 9.9966 15.494 15.412 16.837 0.18492-0.87815 0.0819-1.6423 0.0114-4.4625" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path851" d="m252.58 249.9c3.1934 6.337 12.577 16.668 17.992 19.695 0.18492-0.87815 0.97483-1.047 0.90433-3.8672" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path852" d="m275.95 267.74 6.7799 11.243" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path853" d="m267.84 239.52c2.9156 1.7588 5.9761 3.2327 7.9203 3.4645 0.29722-6.8542-2.0924-17.909-6.9982-26.373" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path854" d="m234.1 203.58c-0.86633 3.2416-0.746 6.785 2.29 6.8183 8.4252-3.6372 3.3948-7.2608 10.63-19.539" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path855" d="m245.22 181.28c3.1934 6.3404 4.1294 10.651 9.1054 12.28 0.99594-0.44921 3.4733-11.656-4.9274-20.754" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path856" d="m255.45 186.56c1.6406 1.9074 4.0446 2.3634 5.9888 2.246 1.902-3.8001-2.165-14.565-7.5196-20.132" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path857" d="m302.51 177.78c4.0087 5.6417 21.597 25.336 29.135 31.622 1.6942-0.21617 4.2004 1.8876 1.8551-5.2305" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path858" d="m300.53 190.24c4.0087 5.6417 11.349 15.193 18.887 21.48 1.8948 0.70717 3.7284 0.48003 4.3308-0.0127 0.64594-0.62273 0.0578-5.0941 0.2246-9.6428" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path859" d="m295.76 197.35c4.5909 5.0595 10.651 10.884 18.072 17.637 1.8948 0.70716 3.5325 0.73503 3.7486-0.0127 0.18027-0.73925 0.52393-0.55264 0.10808-5.1013" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path860" d="m289.35 206.43c4.5909 5.0595 8.7874 8.7883 12.949 9.7179 2.0113 0.2415 3.0668 0.26936 3.2829-0.47834 0.18028-0.73925 0.0578-4.2789-0.008-8.3619" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path861" d="m282.83 213.18c4.5909 5.0595 4.5951 7.1578 8.7562 8.0874 2.0113 0.24149 3.5008-0.0232 3.8651-0.71097 0.64637-1.438 0.87309-2.998 0.8068-7.081" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path862" d="m280.97 180.11c4.6242 0.84142 5.0072-3.1563 4.6322-6.0166-0.45512-3.5856-2.9908-5.1549-5.9938-4.4013" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path863" d="m278.4 195.95c2.1789 0.84142 4.9168 0.7878 5.9132-1.7078 0.80469-1.8986 0.50283-6.5524-2.4998-5.7988" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path864" d="m281.67 188.38c4.1586 0.25923 4.5474-1.6394 4.3992-4.037-0.16466-2.7945-2.059-4.9219-5.062-4.1683" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path869" d="m285.71 177.52c6.0723-3.6553 23.566 11.003 10.261 15.67" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path870" d="m284.42 187.9c6.0724-3.6553 19.446 8.3032 5.8862 12.961" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path871" d="m282.15 196.15c6.7799 0.23558 14.582 11.118 1.289 12.448" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path872" d="m274.16 201.96c2.1789 0.84143 3.4379 1.3869 5.3825-0.29257 0.76712-0.70421 1.78-3.9335-1.0846-5.7253" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path873" d="m217.39 188.81c2.2929-2.9595 7.8979-4.8463 9.8155-0.92755" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path874" d="m278.25 202.49c3.95 1.2974 10.234 12.285-0.3196 13.406" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path875" d="m273.21 152.79c4.555 0.86127 6.8546 8.2209 10.485 8.7883 6.6389 0.99004-0.85747-7.6834-2.2946-8.6591" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path876" d="m206.05 184.25c2.043 0.0832 3.9606-0.29216 5.2529-2.71" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path883" d="m226.3 205.34c1.1348 2.116 4.0517 1.2704 6.4624-0.19716 3.2977-1.8859 0.51845-8.5113 8.3792-14.161" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path884" d="m230.48 233.24c4.2852 5.5459 12.414 13.821 17.48 18.269 0.18492-0.87815 1.0069-1.3257 0.93641-4.1501" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path885" d="m247.8 251.14 9.7454 13.54" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path886" d="m268.12 247.87c1.5942 6.5169 7.9329 16.839 12.104 18.714 0.71814-0.70505 1.2003-3.4999 1.1298-6.3244" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path887" d="m265.85 266.54-0.59529 6.0415" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path888" d="m280.44 236.33c1.5942 6.5182 3.9888 22.381 7.6598 25.256 0.71814-0.70083 2.2009-13.879 2.1304-16.702" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path889" d="m275.52 235.88c2.1654 0.25838 3.4273 0.2512 5.1216 0.23263 0.29722-6.8542-2.672-14.911-7.5779-23.375" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path890" d="m287.59 218.95-0.33818 6.9306" stroke-opacity=".77245" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="#00c600"/> + <path id="path891" d="m263.12 215.99c2.2904 0.88364 3.9276 1.1695 5.7468 1.0259 1.88-9.2822-2.8527-9.292-8.7503-15.854" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path892" d="m289.47 154.29c4.555 0.86127 1.6668 7.6741 7.859 9.7889 5.198 1.7327 2.2693-5.4319 0.83214-6.4076" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path893" d="m282.7 169.59c3.2863-2.3904 15.035 0.91868 19.011 4.2582 1.1386 1.0618 2.8772 5.3006-2.5243 9.1978" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path902" d="m220.45 175.2c9.4317-9.2037 13.806-8.1558 24.604-1.367 1.5494 0.36435 3.2352 0.0456 4.2375-0.54674 0.54673-1.3214 0.0257-2.6678-0.68353-3.6904-4.8298-3.4628-8.429-4.4655-12.986-3.8276" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path903" d="m234.03 209.36c-2.1206 3.1259-3.855 9.9244-0.27315 17.496 0.14228 0.8714 1.0572 1.7428 0.13636 2.3237-1.7647 0.88913-2.5627 2.3583-3.554 3.8276" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path904" d="m288.99 257.7c0.0646-11.469-1.6111-20.618-6.1859-28.899" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path905" d="m269.18 213.04c1.5144-0.16085 3.4151 0.25796 4.3494-0.19294 0.45132-1.6752-0.83762-3.7376-1.3531-5.3162 0.86971-0.0967 1.9332-0.0967 2.6096-0.29004 0.38672-1.4498 0-3.4797 0-5.2195" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path906" d="m212.53 180.4c0.36435-2.5517 2.6425-5.3766 5.1942-6.8344 1.2302-0.68352 2.0506 0.13679 2.5973 0.40953 0.68353 1.0939 0.27316 3.144 0 3.9644-0.68352 1.367-2.0502 2.4605-4.5107 3.4172-1.2759-0.54673-2.005-0.40994-3.2808-0.95668z" stroke-opacity=".77245" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#fff"/> + <path id="path907" d="m234.4 229.06c0.54674 0.27315 6.0141 6.2876 6.0141 6.2876h3.2808l0.27316-9.1581" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path908" stroke-linejoin="round" d="m243.28 211.43c-1.0935 3.5996-0.68353 7.1992 0 10.799" stroke-opacity=".77245" stroke="#000" stroke-linecap="round" stroke-width="1.0555" fill="none"/> + <path id="path909" d="m236.16 228.41 1.2809-4.9953" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path910" d="m238.5 209.51c-1.6406 3.0072-2.1071 7.9477-1.2539 11.535" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path911" d="m283.18 229.5-3.093 0.0621" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1170" d="m172.37 217.88c0.43443 1.3392-1.0268 0.62019-1.3404 0.99679-1.5355 0.54209-3.9707-1.3396-5.5083-5.8895 0.75023-1.2737 5.1613-4.0125 6.5769-3.4231 0 0 2.7755 1.0576 3.1082 2.2169-0.53238 1.6913-2.9304 6.2872-2.8363 6.0989z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#9f3000"/> + <path id="path912" d="m283.18 229.5 0.0511-6.0892" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path913" d="m288.21 261.49 0.86844 14.857" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1153" d="m172.27 218.4c2.9971 2.8185 7.7062 0.92797 8.4556 7.8139 0.32128 3.8533-5.1376 11.56 0 18.517 1.8196 2.6763 6.5296 5.5661 6.5296 5.5661 2.4622 2.7472 3.2107 7.6353 4.8163 11.453 3.3893 5.0667 8.0634 6.1724 11.774 4.924 0 0 12.202-5.4589 12.202-5.5661 0-0.10681-6.2079-8.3488-6.2079-8.2415 0 0.10681-6.9577 5.887-7.0645 5.887-0.74938-0.10724-4.8163 0.32086-6.3151-4.8168-0.10681-6.565-3.353-10.2-8.5628-12.844-2.64-1.9986-4.745-5.1731-2.4618-9.6331 1.3198-4.0678 2.6404-10.918-2.0337-15.52-2.9971-1.9982-5.138-3.5679-8.3492-4.1746-4.2455 1.6056-4.2096 1.1775-2.7826 6.6364z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#238700"/> + <path id="path914" d="m232.61 161.1c-1.6406 3.0068-1.4908 4.8096-1.2176 7.8168" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path915" d="m224.28 175.89h0.13679 0.54674 3.1436c1.0179-0.027 1.4532-0.41333 2.1874-0.95668 0.49312-0.27865 1.0166-0.6983 1.5034-1.0935 0.40488-0.29005 0.89208-0.63033 1.367-0.82031 0.77513 0 1.3814 0.057 2.0501 0.27357 0.61851 0.25965 1.1272 0.63075 1.6402 0.95668 0.51169 0.20477 0.97441 0.27358 1.777 0.27358 0.83425 0 1.709-0.0388 2.4605 0.13679 0.72278 0.0481 1.5313 0.20687 2.0506 0.40995 0.66157 0.41712 1.0601 0.91488 1.5034 1.367 0.0262 0.72575 0.26471 1.1699 0.27358 1.9134 0 0.6354 0.0718 1.4967-0.13679 1.9138 0 0.78653-0.12539 1.3455-0.27358 1.9138-0.5024 0.472-0.68394 0.83678-1.3666 0.95668-0.53703 0.42176-1.3417 0.40994-2.1874 0.40994h-2.1869c-0.47496-0.39559-1.0504-0.80722-1.6402-1.3666-0.31749-0.73503-0.5269-0.97441-1.2303-1.2303-0.59107-0.0925-1.294-0.13679-2.0502-0.13679-0.6679 0-1.2239 0.0464-1.6406-0.27316-0.37786-0.3597-0.92121-0.54842-1.5034-0.68352-0.61977-0.17563-1.3502-0.13679-2.0506-0.13679h-1.0935" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path916" d="m227.83 177.12c0.0456 0.0456 0.0912 0.0912 0.13679 0.13678-0.31031-0.30988-0.19674-0.16085 0.54673 0.13679 0.90517 0.20899 1.8783 0.38124 2.8705 0.40995 0.94064 0 1.796 0.11526 2.7337 0.13679 0.65398 0 1.3421 0.0536 1.9138-0.13679" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path917" d="m236.58 174.93h-0.13679c0.42852 0 0.16508-0.0355-0.40994 0.68352-0.0557 0.78063-0.22292 1.2113 0.13679 1.9138 0.44541 0.14819 1.1994 0.47919 1.5034 0.81989 0.43992 0.31453 0.40995 0.59698 0.40995 1.367-0.26303 0.42726-0.49903 0.77092-0.8199 1.367-0.17183 0.42936-0.39559 1.0061-0.54673 1.5034-0.15621 0.62442-0.26513 1.2184-0.27358 1.9138v1.3666" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path918" d="m286.07 159.01c0.15241 0.29173 2.7725 5.5243 6.0284 2.2055 0.48256-0.56574 0.65102-0.97653 0.65102-1.9412 0-0.50325-0.0688-1.0884-0.19337-1.5034" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1183" d="m207.18 264.25c1.5765 2.1971 4.4418 1.0656 5.0164-0.69282-1.9619 0.1275-2.7117-1.0314-3.4041-2.8067-0.41923 1.0175-2.0539 2.2384-1.6123 3.4995z" fill-rule="evenodd" stroke="#000" stroke-width=".57302" fill="#fff"/> + <path id="path919" d="m299.9 163.9c0 0.10133 2.7763 2.6547 6.9767 2.6547 1.0132 0 5.8292-1.2163 7.3638-3.356" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path920" d="m305.71 166.36c0.0621 0.40995 0.19336 1.9058 0.19336 2.8996-0.0127 1.0534 0.2398 1.934-0.15748 2.8122-0.43147 1.1192-0.9115 1.5667-1.9691 1.9509-0.86085 0.38968-1.0437 0.0165-2.0024 0.0519" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path921" d="m282.6 161.07c0 0.0646 2.9621 7.1004 3.9356 7.8143" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1184" d="m209.11 262.97c1.5764 2.1971 4.4418 1.0656 5.0164-0.69282-1.9619 0.1275-2.7117-1.0314-3.4041-2.8067-0.41924 1.0175-2.054 2.2384-1.6123 3.4995z" fill-rule="evenodd" stroke="#000" stroke-width=".57302" fill="#fff"/> + <path id="path1185" d="m212.1 261.69c1.5764 2.1971 4.4418 1.0656 5.0164-0.69282-1.9619 0.12751-2.7117-1.0314-3.4041-2.8067-0.41923 1.0175-2.0539 2.2384-1.6123 3.4995z" fill-rule="evenodd" stroke="#000" stroke-width=".57302" fill="#fff"/> + <path id="path922" d="m265.7 157.47h0.19337 0.77302c3.0714-0.51802 13.391 1.3856 15.184 3.2851" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path923" d="m267.63 207.34c-0.0646-0.0646 0.14396 1.183 0.0798 1.1184 0.38082 0.38124-0.0578-1.0297-0.27316-1.8918-0.32213-0.7688-0.38672-1.2754-0.38672-2.3195v-0.77345" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path924" d="m248.34 252.84v0.27442-0.27442 0.27442-1.1188 3.5802 2.0476c0.13974 0.67973 0.13679 1.4354 0.13679 2.1869 0.0857 0.58262 0.28835 1.275 0.54673 1.9167 0.0376 0.8106 0.26345 1.3426 0.54673 2.0476 0.0583 0.70083 0.2968 1.3003 0.54674 1.9167 0.0591 0.70084 0.28624 1.0681 0.40994 1.6381 0.19801 0.65862 0.43824 1.085 0.68353 1.503 0.17816 0.18154 0.35168 1.0977 0.51549 1.1484" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path925" d="m240 244.78v0.13679 0.54674 3.0072c0.17816 0.90644 0.2094 1.8648 0.40994 2.7345 0.0743 0.78105 0.2626 1.4481 0.41037 2.1869 0.065 0.73039 0.94021 3.3226 1.2303 3.9644 0.32339 0.60373 0.80131 1.2328 1.0935 1.6381 0.54631 0.16887 0.99172 0.36308 1.6402 0.40952h1.9138c0.76754-0.14777 1.031-0.22798 1.3666-0.81905 0.18449-0.3673 0.17352-0.62484 0.41037-0.81904" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path926" d="m237.68 269.66c0-0.22376-0.0346-0.89504 0.27358-1.3679 0.48383-0.68816 0.87224-1.1146 1.5034-1.7774 0.74643-0.47707 2.6041-3.0313 8.2014-4.509 0.65228 0 0.88027-0.12665 1.5038-0.13932" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path927" d="m238.34 257.26c0.0456 0.0464 3.0592 1.6212 4.6225 1.6888" stroke-opacity=".77245" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1104" d="m246.95 262.55h-0.14945 0.14945c-0.0498 0-0.0996 0 0 0z" stroke="#000" stroke-width=".42219pt" fill="none"/> + <path id="path1106" d="m245.6 262.4c-0.44794-0.29849-14.94-4.482-14.642-4.482 0.29891 0-5.304 3.8098-5.304 3.8098l13.82 4.7061 5.5281-4.034h0.59739z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#ffbc00"/> + <path id="path1107" d="m231.76 257.8c0.91573-2.3242 0.66917-5.388-2.3242-7.2895-6.8314-4.1906-18.312-3.8385-20.495 1.0563-2.3596-0.31706-3.5569 1.5849-3.909 3.4864-6.0922 1.655-0.45639 8.6941 1.0563 8.9783 2.0468 0.69999 2.6062 0.18619 2.9583-0.48298 1.1395 0.28076 2.702-0.9381 3.0946-1.7778 1.4468 0.26683 2.5462 0.24023 2.5737-1.2108 4.1459 3.8854 9.8602 6.5756 10.495 1.5714 2.1831-1.4439 4.3667-2.8874 6.5498-4.3312z" fill-rule="evenodd" stroke="#000" stroke-width="1.0555" fill="#f7b200"/> + <path id="path1109" d="m205.04 254.95c-0.38757 2.7117 1.4338 5.6345 4.3215 8.4518" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1110" d="m208.83 251.57c-0.38757 2.7117 0.38715 7.3246 3.2749 10.142" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1111" d="m213.12 248.66c-2.6518 2.227-1.2066 9.1176 1.6812 11.935" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1108" stroke-linejoin="round" d="m220.21 192.33c6.1192 8.1039-2.4373 17.058-9.9147 22.217-8.8149 6.9328-13.575 20.447 1.9708 21.277 5.613-0.10343 11.709-0.60035 15.14 3.7955 3.4303 4.3958 3.5561 12.516-5.0844 17.721-0.84649-0.74727-2.105-2.976-3.0423-3.6553-0.93768-0.6793-1.5545 0.19167-2.401-0.5556-0.29891-2.789 4.259-6.9391-0.0511-7.9426-5.578 0.94613-25.104 1.0276-24.855-17.598 0.42852-4.151 2.6475-8.8102 6.2083-13.551 3.5612-4.7408 13.323-10.619 14.26-13.193 1.5034-2.2224-1.2454-6.5477-3.4366-7.1456-1.7926-4.7813 6.1255-9.886 11.205-1.3704z" fill-rule="evenodd" stroke="#000100" stroke-width="1.0555" fill="#288800"/> + <path id="path1117" d="m206.61 206.67 0.2111 10.881" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1118" d="m200.91 211 11.621 1.6904" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1119" d="m209.47 204.24 9.8248 2.0071" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1120" d="m199.12 212.9 8.1816 4.8455" stroke-opacity=".64151" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1121" d="m193.29 223.13 6.3886 6.7875" stroke-opacity=".64151" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1122" d="m199.2 213.35 1.0846 16.05" stroke-opacity=".64151" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1123" d="m194.79 220.07 10.497 0.21363" stroke-opacity=".64151" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1125" d="m183.81 247.19c1.625-1.5397 3.3218-3.7499 4.3718-5.9119" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1126" d="m187.09 249.95c2.1958-1.359 5.0139-2.4301 7.8084-2.9988" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1127" d="m191.13 259.29c1.9036-1.5866 3.9513-3.2686 5.3517-5.4779" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1128" d="m191.2 259.65c3.3496-0.0815 6.7474-0.42599 10.049-1.0339" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1129" d="m197.18 266.24c2.4918-0.9381 4.7682-2.3794 6.6132-3.8204" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1130" d="m179.85 243.82c1.9315-1.5596 3.8634-3.3344 5.4357-5.1815" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1131" d="m178.43 238.82c2.1-0.56362 4.1518-1.6305 5.9406-2.6252" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1132" d="m179.16 233.61c1.6985-0.65862 3.6844-0.93346 5.5265-1.0411" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1133" d="m180.74 228.81c2.0548-0.20222 3.4392-0.0773 5.4944 0.56574" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1134" d="m181.09 225.76c1.7002-0.91235 3.6114-1.5072 5.5231-1.2573" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1135" d="m180.24 223.5 5.9204-4.0425" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1136" d="m179.2 221.83 5.0422-4.9983" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1137" d="m177.77 221.14 3.6946-6.31" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1140" d="m192.5 183.84-0.046 8.9926" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1141" d="m201.6 185.27c-1.3261 2.5906-3.182 5.6552-5.5678 7.9431" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1142" d="m194.89 183.54c-2.6412-0.21109-5.1368 1.2193-7.1443 2.9097" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1145" stroke-linejoin="round" d="m208.97 190.4c4.3899 1.6149 10.218 3.8352 9.612 16.727 3.6329-3.9356 5.298-9.4604 0.681-16.424-3.1031-3.3556-7.6442-4.0623-10.293-0.30313z" fill-rule="evenodd" fill-opacity=".99371" stroke="#000" stroke-linecap="round" stroke-width=".42219pt" fill="#9d4600"/> + <path id="path1146" d="m210.95 194.7c0.17648-2.4977 3.6705-5.5877 5.5121-6.2687" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1147" d="m212.29 196.96c0.92037-3.1918 4.8999-5.7266 6.7415-6.4076" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1148" d="m212.38 201.48c1.6997 0.0262 8.133-3.5413 9.6048-5.6658" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1149" d="m212.9 199.1c2.0683-1.438 5.9537-4.6926 7.7953-5.3736" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1150" d="m218.58 201.71c1.5486-0.88195 2.078-0.66537 3.7013-2.3356" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1151" d="m208.97 190.47c4.4148 1.438 9.8134 4.6926 9.4604 16.651" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1154" d="m194.27 236.68 6.0082-7.2836" stroke-opacity=".64151" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1155" d="m195.02 238.18 5.366-0.005" stroke-opacity=".64151" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1156" d="m192.02 230.9 7.5069 4.2764" stroke-opacity=".64151" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1157" d="m202.13 230.17c-1.4371-0.13299-2.2621-0.40699-3.5109-0.86928 0.58853 9.6744 1.5532 10.171 3.0828 13.82 4.5744 2.9 12.49 2.2228 15.841 1.4988 0.36013 0.5062 2.3406 2.9642 1.1226 3.6785-1.313 0.82369-1.8462 2.42-1.8935 5.0008 0.77556 0.87351 1.5841 0.11484 2.3731 0.67677 0.78907 0.56194 1.7187 2.5509 2.4495 4.2624 0 0 9.7281-6.6862 8.1504-12.976-1.0356-5.909-5.0308-7.9207-5.0308-7.9207-5.648-2.824-13.587-0.95119-16.484-2.0337-3.603-0.80005-5.8701-3.9141-6.101-5.1376z" fill-rule="evenodd" stroke="#000" stroke-width=".42219pt" fill="#9d4600"/> + <path id="path1158" d="m218.16 247.24c4.8725-2.2241 10.024-2.406 11.423-2.2013" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1159" d="m199.1 234.32c1.0576-0.61935 2.6142-1.9408 4.4072-1.9129" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1160" d="m208.06 244.98c0.86549-5.1254 3.0621-8.5865 4.1936-9.452" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1161" d="m210.99 245.38c0.86548-5.1254 3.2614-8.7862 4.3929-9.6517" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1162" d="m214.25 245.04c0.86548-5.1254 3.0621-8.4531 4.1936-9.3186" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1163" d="m216.72 244.64c0.86548-5.1254 3.7275-7.6543 4.859-8.5198" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1164" d="m218.35 246.1c0.86548-5.1254 5.2187-7.973 6.3501-8.8385" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1165" d="m218.49 246.89c2.9671-4.2675 7.8438-6.3408 9.2362-6.6414" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1167" d="m205 244.31c0.86549-5.1254 3.1284-7.9207 4.2599-8.7862" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1168" d="m202.07 243.38c0.86548-5.1254 3.5282-7.721 4.6597-8.5865" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1113" d="m217.28 253.91c2.2997-1.8095 3.8634 4.0344 3.9774 4.7429 0.11399 0.70843 0.54377 1.43 1.6888 2.0915" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1169" d="m200.28 239.85c0.93219-2.596 2.9958-5.4576 4.1273-6.3231" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1112" d="m212.89 248.89c-2.9853 4.7416 0.46018 8.928 4.3253 7.249-0.44372-3.277-1.2818-5.3584 1.7069-8.5105-2.1194 0.12539-4.0218-0.62484-6.0322 1.2615z" fill-rule="evenodd" stroke="#000" stroke-width="1.1218" fill="#fff"/> + <path id="path1171" d="m201.63 214.03 1.4122 6.9657" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1172" d="m203.04 220.43-2.5416 8.5658" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1173" d="m218.05 247.69c5.2571-1.0251 10.309 0.00042 11.621 0.52605" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1174" d="m217.43 248.53c5.3884-0.0781 10.088 2.1228 11.246 2.9878" stroke="#000" stroke-width="1.1352" fill="none"/> + <path id="path1175" d="m217.49 249.53c5.1841 1.1792 7.5074 3.8077 8.4138 4.9181" stroke="#000" stroke-width="1.1275" fill="none"/> + <path id="path1176" d="m217.13 250.72c4.6508 2.5754 5.6974 4.6884 6.259 6.0073" stroke="#000" stroke-width="1.1275" fill="none"/> + <rect id="rect1177" fill-rule="evenodd" transform="rotate(-13.197)" height="11.864" width="2.5653" y="300.37" x="73.552" stroke-width="1pt" fill="#296526"/> + <path id="path1179" d="m160.95 314.67 5.2436 5.972 1.9585-1.6567-4.9227-6.1858-2.2794 1.8705z" fill-rule="evenodd" stroke-width="1pt" fill="#296526"/> + <path id="path1180" d="m321.02 340.19-6.4966 4.5774 1.4384 2.1236 6.6752-4.2354-1.617-2.4656z" fill-rule="evenodd" stroke-width="1pt" fill="#296526"/> + <path id="path1181" d="m355.29 311.61-5.7954 5.4382 1.72 1.9024 6.02-5.1241-1.9446-2.2165z" fill-rule="evenodd" stroke-width="1pt" fill="#296526"/> + <path id="path1182" d="m373.67 273.25-2.108 5.2035 1.1522 1.492 2.268-4.951-1.3122-1.7445z" fill-rule="evenodd" stroke-width="1pt" fill="#296526"/> + <path id="path1186" d="m202 243.66c-2.8147-4.6318-3.1711-9.4773-3.3133-14.216 1.4962 0.71266 2.672 1.1044 3.527 0.85493" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1187" d="m192.2 183.57c-2.3178-5.7945 0.35802-8.9339 3.2483-11.685" stroke="#000" stroke-width="1.0555" fill="none"/> + <path id="path1188" d="m209.1 154.93c0 1.6808-2.0038 3.0433-4.4755 3.0433-2.4718 0-4.4755-1.3626-4.4755-3.0433 0-1.6808 2.0038-3.0433 4.4755-3.0433 2.4718 0 4.4755 1.3626 4.4755 3.0433z" fill-rule="evenodd" transform="matrix(.34540 -.30875 .29017 .36751 78.794 177.89)"/> + <path id="path1189" d="m180.97 214.38c-0.48468 0-8.8799-1.1302-8.8799-1.1302" stroke="#000" stroke-width="1.3721" fill="none"/> + <path id="path1190" d="m177.42 220.52c0-0.32298-5.4893-7.1038-5.4893-7.1038" stroke="#000" stroke-width="1.3721" fill="none"/> + </g> + </g> +</svg> diff --git a/s/flag/my.svg b/s/flag/my.svg new file mode 100755 index 0000000..d0f73fa --- /dev/null +++ b/s/flag/my.svg @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4199"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" stroke-width="1pt" fill-rule="evenodd"> + <rect id="rect149" height="480" width="640" y="-7.1136e-7" x=".90062" fill="#e80008"/> + <rect id="rect299" height="34.286" width="640" y="34.286" x=".90062" fill="#fff"/> + <rect id="rect300" height="34.286" width="640" y="102.86" x=".90062" fill="#fff"/> + <rect id="rect301" height="34.286" width="640" y="171.43" x=".90062" fill="#fff"/> + <rect id="rect302" height="34.286" width="640" y="240" x=".90062" fill="#fff"/> + <rect id="rect303" height="34.286" width="640" y="308.57" x=".90062" fill="#fff"/> + <rect id="rect304" height="34.286" width="640" y="377.14" x=".90062" fill="#fff"/> + <rect id="rect305" height="34.286" width="640" y="445.71" x=".90062" fill="#fff"/> + <rect id="rect298" height="141.39" width="245.17" y="5.3671e-8" x="0" fill="#000689"/> + <g id="g4518" fill="#fe0" transform="matrix(.48288 0 0 .48288 0 7.6956)"> + <path id="path297" d="m257.76 232.94c-54.627 30.397-122.92 9.8571-152.44-45.2-29.517-55.058-9.1377-123.89 45.49-153.64 33.777-18.395 70.875-18.76 104.58-0.66665-19.02-4.578-36.004-4.3319-54.459 1.1505-53.759 15.97-84.662 73.362-68.979 128.11 15.683 54.745 72.042 86.214 125.8 70.244z"/> + <polygon id="polygon291" transform="matrix(.84992 0 0 .84992 34.931 -42.019)" points="370.61 162.91 438.48 124.35 384.56 180.79 462.44 175.5 389.37 202.96 461.83 231.98 384.09 225.02 436.78 282.6 369.76 242.6 392.24 317.34 349.22 252.22 337.04 329.31 337.04 329.31 326.54 251.97 282.12 316.16 306.21 241.91 238.34 280.47 292.26 224.03 214.38 229.32 287.45 201.86 214.99 172.84 292.73 179.8 240.04 122.22 307.06 162.22 284.58 87.482 327.6 152.6 339.78 75.507 350.28 152.85 394.7 88.666"/> + </g> + </g> +</svg> diff --git a/s/flag/mz.svg b/s/flag/mz.svg new file mode 100755 index 0000000..2d57e38 --- /dev/null +++ b/s/flag/mz.svg @@ -0,0 +1,34 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg912" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4218"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs914"> + <clipPath id="clipPath4584" clipPathUnits="userSpaceOnUse"> + <rect id="rect4586" fill-opacity="0.67" height="512" width="682.67" y=".0000049640" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath4584)" transform="matrix(.93750 0 0 .93750 0 -.0000046537)"> + <rect id="rect937" fill-rule="evenodd" height="160" width="768" y=".000052248" x="0" stroke-width="1pt" fill="#009a00"/> + <rect id="rect935" fill-rule="evenodd" height="16.018" width="768" y="159.96" x="0" stroke-width="1pt" fill="#fff"/> + <rect id="rect934" fill-rule="evenodd" height="160" width="768" y="175.98" x="0" stroke-width="1pt"/> + <rect id="rect933" fill-rule="evenodd" height="16.018" width="768" y="335.98" x="0" stroke-width="1pt" fill="#fff"/> + <rect id="rect931" fill-rule="evenodd" height="160" width="768" y="352" x="0" stroke-width="1pt" fill="#ffca00"/> + <path id="path932" d="m0 0.0000044666v512l336.02-256-336.02-256z" fill-rule="evenodd" stroke-width="1pt" fill="#f00"/> + <g id="g938" transform="matrix(.88217 0 0 .88217 34.811 142.78)"> + <polygon id="polygon916" fill="#ffca00" fill-rule="evenodd" transform="matrix(.96989 .020185 -.020185 .96989 6.077 3.6535)" d="m 189.54603,214.56867 -60.76034,-42.57244 -58.855159,45.07437 21.71282,-70.94213 -61.055514,-42.04584 74.179603,-1.2722 21.12078,-71.060124 24.13269,70.155864 74.10887,-1.87174 -59.26477,44.63092 z" stroke-width="1pt" points="189.55 214.57 128.79 172 69.93 217.07 91.643 146.13 30.588 104.08 104.77 102.81 125.89 31.75 150.02 101.91 224.13 100.03 164.86 144.66"/> + <path id="path919" stroke-linejoin="round" d="m77.112 167.91h41.834c3.366 3.776 10.876 5.316 18.029-0.045 13.112-7.18 38.479 0.045 38.479 0.045l4.995-5.307-12.176-39.961-4.371-4.683s-9.365-5.619-27.161-3.746c-17.795 1.873-24.039-0.624-24.039-0.624s-15.609 1.873-19.98 4.058c-0.4805 0.389-4.9951 4.995-4.9951 4.995l-10.615 45.268z" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="#fff"/> + <path id="path918" stroke-linejoin="round" d="m85.542 157.61s39.96-4.995 51.512 10.302c-6.524 4.464-12.268 4.832-18.42 0.313 0.98-1.633 14.361-15.61 48.39-10.927" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path920" d="m128.31 117.65-0.31 44.02" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path921" d="m163.9 118.27 7.493 34.966" stroke="#000" stroke-width="1pt" fill="none"/> + <path id="path922" stroke-linejoin="round" d="m93.134 117.72-4.1583 18.032" stroke="#000" stroke-linecap="round" stroke-width="1.25" fill="none"/> + <path id="path917" stroke-linejoin="round" d="m49.942 172.71 9.8382 11.535c1.1553 0.689 2.1815 0.645 3.2077 0l14.58-17.496 6.1238-7.582c0.9482-1.123 1.2509-2.376 1.1664-3.499l11.707-10.403c0.9577 0.066 1.5281 0.174 2.4858 0.239-1.1315-0.293-1.9617-0.844-1.0708-2.084l2.6243-2.041 2.041 2.624s-2.9156 3.791-3.2072 3.791h-3.2077l-6.1238 5.541 2.677 2.366 4.03 11.048 4.9577-3.5-3.2081-11.372 6.9991-7.582-2.625-4.083 1.75-2.333s24.222 15.25 33.554 11.168c0.252 0.091 0.564-10.876 0.564-10.876s-25.078-2.624-25.662-7.582c-0.583-4.957 5.541-5.54 5.541-5.54l-2.625-3.791 0.584-2.042 4.374 5.541 9.915-8.457 58.321 66.487c3.184-1.291 3.864-2.07 4.083-5.249-0.082-0.08-57.155-65.612-57.155-65.612l4.374-4.665c0.862-0.972 1.165-1.385 1.166-2.917l6.707-5.8318c2.017 0.6929 3.303 1.9018 4.374 3.4988l18.439-15.627c0.486 0.486 1.962 0.972 2.964 0.4254l30.48-29.264-33.22 23.468-1.17-0.875c0-0.9721 1.205-1.2125 0-2.9161-1.291-1.5491-3.208 1.4581-3.499 1.4581-0.292 0-4.809-1.5964-5.799-3.6188l-0.325 5.3684-8.457 7.8735-6.415-0.2916-9.332 9.0398-1.166 3.4989 1.458 2.917s-4.958 4.374-4.958 4.082c0-0.291-1.002-1.289-1.045-1.418l4.253-3.831 0.583-2.6243-1.419-2.2158c-0.43 0.3125-5.871 6.0071-6.163 5.4231-0.49-0.54-15.75-17.786-15.75-17.786l0.874-3.2077-9.914-10.79c-3.6145-1.2479-9.3318-1.458-10.498 6.4154-0.9083 1.8493-8.4567 0.2916-8.4567 0.2916l-4.0825 0.8749-23.037 32.66 12.831 15.455 26.245-33.243 0.7791-9.4176 5.5068 6.1573c1.836 0.2359 3.585 0.2566 5.249-0.5832l15.549 17.356-2.589 2.526c0.875 0.972 1.477 1.593 2.352 2.565 0.875-0.583 1.71-1.283 2.585-1.867 0.292 0.39 0.778 1.129 1.07 1.518-1.303 0.709-2.217 1.653-3.52 2.362-2.085-1.359-4.098-3.051-3.945-5.744l-8.748 7.29-0.292 1.458-25.953 21.579-2.3329 0.292-0.5832 6.707 16.913-13.997v-2.042l1.7497 1.458 13.122-10.497s0.875 1.166 0.584 1.166c-0.292 0-11.665 10.498-11.665 10.498l-0.291 1.166-2.0416 1.75-1.1665-0.875-15.747 13.997h-2.3328l-8.7483 8.749c-2.2564 0.196-4.2116 0.435-6.1238 1.749l-15.67 13.835z" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.25"/> + </g> + </g> +</svg> diff --git a/s/flag/na.svg b/s/flag/na.svg new file mode 100755 index 0000000..878f71f --- /dev/null +++ b/s/flag/na.svg @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4232"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath3052" clipPathUnits="userSpaceOnUse"> + <rect id="rect3054" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath3052)"> + <rect id="rect628" height="480" width="640" y="2.1858e-15" x="0" fill="#fff"/> + <g id="g4284" transform="matrix(.9375 0 0 .9375 -20.901 0)"> + <path id="path623" d="m-5.8379 0.23864 0.8561 368.58 573.98-368.82-574.84 0.23864z" fill="#3662a2"/> + <path id="path624" d="m733.09 511.53-1.3468-383.25-578.98 383.54 580.33-0.2831z" fill="#38a100"/> + <path id="path625" d="m-5.4684 396.61 0.4866 115.39 125.25-0.16 611.76-410.14-0.69-100.32-123.76-1.1414-613.05 396.37z" fill="#c70000"/> + </g> + <g id="g4279" transform="matrix(.9375 0 0 .9375 75.102 0)"> + <polygon id="polygon715" transform="matrix(.62436 .023795 -.024998 .62440 20.58 22.369)" d="m 223.81121,249.35391 -37.97017,-20.97471 -19.93871,38.52427 -22.39578,-37.14972 -36.52956,23.39363 -0.82045,-43.37048 -43.332351,1.9947 20.97471,-37.97017 -38.524264,-19.93871 37.149716,-22.39578 -23.393635,-36.529562 43.370484,-0.820453 -1.9947,-43.332348 37.97017,20.97471 19.93871,-38.524264 22.39578,37.149717 36.52956,-23.393636 0.82046,43.370487 43.33234,-1.994702 -20.97471,37.970171 38.52427,19.93871 -37.14972,22.39578 23.39364,36.52956 -43.37049,0.82045 z" points="223.81 249.35 185.84 228.38 165.9 266.9 143.51 229.75 106.98 253.15 106.16 209.78 62.824 211.77 83.799 173.8 45.275 153.86 82.424 131.47 59.031 94.937 102.4 94.117 100.41 50.785 138.38 71.759 158.32 33.235 180.71 70.385 217.24 46.991 218.06 90.362 261.39 88.367 240.42 126.34 278.94 146.28 241.79 168.67 265.19 205.2 221.82 206.02" stroke-width="1pt" fill="#ffe700"/> + <path id="path716" d="m239.52 185.41c0 31.289-25.365 56.654-56.654 56.654s-56.654-25.365-56.654-56.654 25.365-56.654 56.654-56.654 56.654 25.365 56.654 56.654z" transform="matrix(.87763 0 0 .87083 -42.442 -41.528)" fill="#3662a2"/> + <path id="path717" d="m239.52 185.41c0 31.289-25.365 56.654-56.654 56.654s-56.654-25.365-56.654-56.654 25.365-56.654 56.654-56.654 56.654 25.365 56.654 56.654z" transform="matrix(.68714 0 0 .68714 -7.608 -7.4702)" fill="#ffe700"/> + </g> + </g> +</svg> diff --git a/s/flag/nc.svg b/s/flag/nc.svg new file mode 100755 index 0000000..3b5e684 --- /dev/null +++ b/s/flag/nc.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata8"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="scale(.60207 .67733)"> + <rect id="rect171" height="708.66" width="1063" y="0" x="0" fill="#fff"/> + <rect id="rect403" height="708.66" width="354.33" y="0" x="0" fill="#00267f"/> + <rect id="rect135" height="708.66" width="354.33" y="0" x="708.66" fill="#f31830"/> + </g> +</svg> diff --git a/s/flag/ne.svg b/s/flag/ne.svg new file mode 100755 index 0000000..6da6cf8 --- /dev/null +++ b/s/flag/ne.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata2993"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd"> + <g id="g5125" transform="matrix(1.141 0 0 1 52.486 -32)"> + <rect id="rect149" transform="scale(-1)" height="480" width="560.91" y="-512" x="-514.91" fill="#fff"/> + <rect id="rect148" transform="scale(-1)" height="160" width="560.91" y="-192" x="-514.91" fill="#ff7000"/> + <rect id="rect585" transform="scale(-1)" height="160" width="560.91" y="-512" x="-514.91" fill="#36a100"/> + </g> + <path id="path578" d="m580.68 372.84a69.808 69.808 0 1 1 -139.62 0 69.808 69.808 0 1 1 139.62 0z" transform="matrix(.81359 0 0 .81359 -181.18 -65.342)" fill="#ff7000"/> + </g> +</svg> diff --git a/s/flag/nf.svg b/s/flag/nf.svg new file mode 100755 index 0000000..87bf348 --- /dev/null +++ b/s/flag/nf.svg @@ -0,0 +1,46 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg571" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3030"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd"> + <rect id="rect609" height="480" width="250.45" y=".00013793" x="194.79" stroke-width="1pt" fill="#fff"/> + <rect id="rect608" height="480" width="194.79" y=".000061489" x=".000001" stroke-width="1pt" fill="#198200"/> + <rect id="rect610" height="480" width="194.77" y=".0000014969" x="445.23" stroke-width="1pt" fill="#198200"/> + <path id="path575" stroke-linejoin="round" d="m313.5 351.29v52.63c7.0905 0.0731 14.181 0.14624 21.271 0.21937 0 0-6.798-45.832-3.0703-51.972 3.7284-6.1399 7.2367-5.2632 7.2367-5.2632s13.815 4.1671 15.35 3.509c1.5355-0.65809-0.21936-5.2632 7.2367-4.6051 2.4122-0.87745 1.0968-5.0438 3.2897-5.2632 2.1929-0.21936 44.516 11.842 53.726 0.43873-2.4122-6.3592-10.745-0.43873-12.938-0.21936-1.9735 0-10.306-3.947-15.132 0-4.3858-3.2889-24.341-5.4826-24.341-5.4826-2.6316-2.6316 47.586 1.3162 50.437-0.65733 5.9205-5.9213-10.964-5.2632-13.596-3.2897-4.6782-2.851-10.545-2.6308-14.127-0.65733-1.7176-4.1085-18.036-2.3391-27.1-3.5091-2.9012-1.7016-2.4046-2.6689-0.43872-3.7276 18.932 0.80432 37.772 3.2607 56.796 2.4122 5.1421-6.7035-6.4781-9.2178-13.596-3.5091-4.1786-6.8718-12.719-0.21936-18.42-0.87668-5.7012-0.65809-3.0696-7.6754 4.1664-6.5794 7.2367 1.0968 20.175-0.43797 22.588-3.7277 2.4115-3.2889-1.4403-6.6304-13.377-3.5083-4.0399-3.9485-12.938 0-17.104 1.3154-5.5435-3.0924-18.42-0.43873-22.806 0.65809-4.2936-2.6689 22.587-7.0173 22.587-7.0173 10.376-0.18356 16.228-1.9735 19.516-2.851 15.686-8.4074-0.2247-9.3032-8.4562-3.1922-5.1094-3.9889-9.9635 0.34123-14.569 1.8768-4.6051 1.5348-13.377 2.6316-13.377 1.9735 0-0.65809 12.5-8.3335 12.5-8.3335s15.35-1.096 18.42-1.5348c3.0703-0.43873 18.782-8.5026-2.6316-3.0703-7.4561 0.6581-11.842 0.21937-14.693 0.43873-16.532-1.7092 1.5356-3.2889 1.5356-3.2889s23.407-2.1517 23.683-3.2897c0.45929-9.1264-19.078-4.8245-19.297-4.8245 0.0564-6.52-18.201 0.21936-18.201 0-3.4892-2.0558 1.9735-4.1664 1.9735-4.1664 4.8245-1.1692 12.036-1.5127 13.923-3.049 0 0 13.626-0.13177 15.243-3.749-3.3415-9.2186-28.824 1.6368-32.236 3.2897-4.6051 0 3.0703-7.4561 3.2897-7.6754 0.21937-0.21937 21.052-1.096 30.92-14.473 0.68551-8.1424-11.622 4.6051-11.622 4.6051-0.91858-10.56-13.377 0.65809-20.613 1.5356-7.2359 0.87669-7.4553-3.2897-2.4115-3.9478 5.0431-0.65733 10.745-0.2186 13.596-7.894 2.8502-7.6754 11.403 0.43873 12.938-2.4122 1.5348-2.851-3.0703-5.2632-3.0703-5.2632s6.3593-6.5786-3.947-6.3592c-10.307 0.21936-23.684-1.3154-23.684-1.3154s10.746-4.1672 20.833-3.9478c10.088 0.21937 4.6051-7.2359-5.0438-7.2359-9.6482 0-14.692-3.2897-14.692-3.2897 5.4826-2.0466 10.964-4.0933 16.447-6.1399-0.36561-1.5348-0.73122-3.0703-1.0968-4.6051 0 0 9.6489-7.6754-3.947-5.9213-13.596 1.7549-15.131 1.9735-15.131 1.9735s-27.192 4.1671-27.411 4.1671c-0.21936 0-7.4561-2.1929-0.43873-3.9478 7.0174-1.7541 31.797-6.798 35.525-5.4818 3.7284 1.3154-0.43872-9.2102-13.596-10.526-13.157-1.3154-21.271 3.2897-21.271 3.2897s-8.5521-3.0703-0.65733-5.7019c7.894-2.6308 20.394 0.87745 20.394 0.87745s14.035-4.1664 2.4122-5.9205c-11.622-1.7549-15.288 1.5706-20.613 1.7541-2.1258-2.6537 18.245-3.2882 19.516-5.4826-2.1487-3.9485-14.765 0-22.148 0-3.1404-1.3322-3.343-3.4923 0.21937-4.8245 7.5292-0.29249 14.598 0.15005 22.128-0.14243-0.21937-4.0201 0.0206-8.7753-0.1988-12.795-9.5499-1.745-20.755 1.259-26.116 1.0046 1.4342-4.3865 22.067-5.5123 24.362-6.7058 4.775-5.9685-20.175 0-20.394 0-4.3515-0.64286-4.0704-3.391-1.3154-5.0438 6.3592-0.73122 20.616 0.92543 19.537-3.3864-0.82642-4.0405-9.8889-1.8768-13.617-0.99932-3.7276 0.87669-9.2102 0.21936-9.2102 0.21936-2.3871-3.2139 21.49-1.9067 21.271-4.386-0.31153-2.8466-15.132-0.87722-20.175-0.65786-3.9409-2.7191 18.931-4.5132 19.298-4.8244 0.82643-7.2899-15.35 0-18.42 0-3.0703 0-1.5348-4.6051-1.5348-4.6051s6.3592-2.8507 6.1399-3.2893c-0.21936-0.43857-4.8245-1.9736-5.2632-1.9736-0.43796 0 0-5.0438 0-5.0438s5.2632-3.9472 4.8245-5.0436c-0.43873-1.0965-6.1399 0.87715-6.1399 0.87715v-4.3858s4.1664-0.43857 4.6051-2.4122c0.43873-1.9737-5.0438-2.1929-5.0438-2.1929-0.73121-7.6751-1.4617-15.35-2.1929-23.025-0.65808 7.1634-1.3154 14.327-1.9735 21.49-2.4122 0.36553-4.8245 0.73098-7.2367 1.0964 0 0 5.0438 2.8508 5.9213 5.7015 0.87669 2.8508-6.1406 1.9736-6.1406 1.9736s5.7019 4.8244 6.1406 6.5788c0.43796 1.7543-7.8948 2.1929-7.8948 2.1929s7.0173 5.0437 7.4561 7.8944c0.43872 2.8508 0 4.3858 0 4.3858s-11.622-10.087-19.079-7.2366c-3.8747 2.0243 8.8766 2.9606 17.324 10.307-0.0198 1.6359-20.517-4.9924-21.271-0.87722 0.47528 1.1453 21.887 4.2192 23.464 7.0174-7.8217 0.29248-23.999-1.7114-23.464 0.87669-1.6346 2.9881 15.279 1.2918 22.367 3.7284 2.0779 2.3612 1.8608 4.356-1.7541 4.6051-6.8323-3.2668-22.112-5.7065-22.148-1.5355 0.0929 1.1136 15.796 0.39074 21.49 4.1671-7.6008 1.729-33.383-3.519-33.546-0.96352 0.73426 1.1936 4.8191 6.4453 11.836 6.226 7.0173-0.21936 23.244 2.851 24.341 5.0438 1.096 2.1929-21.052-4.6051-29.385-0.65809-8.3328 3.9478 23.902 1.5356 29.165 6.36 5.2632 4.8245-10.526-0.43873-10.526-0.43873s-21.929-3.0703-25.218-1.5355c-3.2897 1.5355-7.0174 5.0438-7.0174 5.0438s2.1929 4.3857 4.3858 3.5091c2.1929-0.87746-0.65809 2.6316-0.65809 2.6316s30.701 7.4553 37.499 14.034c6.798 6.5794-39.034-10.306-39.034-10.306s-18.42 6.798 1.0961 7.2367c-2.2454 3.2851 1.0968 5.2624 1.0968 5.2624s32.455 6.798 35.744 12.061c3.2897 5.2632-22.148-5.0438-27.85-7.894-5.7012-2.851-21.929 1.7541-21.709 2.8502 0.21937 1.0968 7.8948 2.6316 8.1134 4.6051 0.21936 1.9735-9.4288 2.6316-9.4288 4.3857 0 1.7549 41.007 10.307 51.972 19.517 10.964 9.2102-32.236-10.964-32.236-10.964s2.4122 3.2889 0 4.1664c-2.4122 0.87669-10.964-12.281-24.999-4.1664-2.5562 3.3384 12.243 5.9921 16.008 6.3592-1.2857 3.3057-2.4122 4.3858 2.851 7.6747 5.2624 3.2897-10.307-4.8237-10.307-4.3857 0 0.43873 1.0968 5.7019 1.0968 5.7019-4.8587-3.947-10.726-5.139-16.228-1.0968 0 0-0.21937 3.9478 5.4818 6.36-3.113 6.3608 3.509 4.3858 14.035 10.306-15.644-4.0887-16.885 3.5091-5.7012 5.2632s41.884 2.851 49.121 12.28c7.2367 9.4296-10.281-3.6157-12.28-3.947-0.43873 0.21936-0.87745 4.8245-0.87745 4.8245-4.6782-2.7078-8.9893-5.1406-14.585-6.2876-0.43872 0.87669-0.32599 2.1213-0.76472 2.998-5.0781-3.6622-9.5118-6.2222-16.886-6.5786-0.29249 1.1699-0.58497 2.3391-0.87745 3.509 0 0-6.1399-7.6754-18.201 0-6.7348 4.8283 25.438 1.7541 30.701 7.4561 5.2632 5.7012 1.0961 6.5786 1.0961 6.5786-4.3857-1.6079-8.7715-3.2166-13.157-4.8245 0 0-15.569-2.851-19.955 0.65734-4.3857 3.509 64.033 12.061 66.006 21.491 1.3306 5.1139-16.08-5.3691-31.139-9.8683-0.58496 1.681-1.1699 3.3628-1.7549 5.0438 0 0-5.9799-6.0074-12.719-7.0173-0.21936 0 1.3154 5.9213 1.3154 5.9213s-16.885-7.8948-25.437-3.7284c-8.5529 4.1664 29.824 6.3592 33.332 10.307 3.5083 3.947-11.622-2.6316-12.938 0-1.3162 2.6316-19.956-4.8245-19.737-1.3162 0.21936 3.509 2.6316 5.4826 2.6316 5.4826s38.814 3.7277 40.131 8.3328c1.3154 4.6051-21.491-2.6316-21.491-2.6316s-2.1929 3.2897-0.43873 4.8245c1.7542 1.5356-13.157-8.7715-11.842-1.9735-4.8359-1.9255-17.324-7.894-15.569-3.2889 1.7541 4.6051 35.306 11.184 35.306 11.184s-14.693 1.0961-14.035 4.8245c-18.901-11.515-18.42-4.1672-17.982-3.9478 0.43873 0.21937-24.341-6.1399-5.7019 3.9478 18.64 10.087 10.088 8.3328 10.307 8.5521 0.21936 0.21937 1.9735 5.0438 1.5348 5.0438-0.43873 0-12.719-6.5794-16.885-7.0174-4.1671-0.43872-23.903 5.4818-2.851 14.692s33.99-2.1929 45.612-0.87669c11.622 1.3154 17.104 3.2889 16.008 7.0173-1.0968 3.7276-11.873-12.217-23.215 1.5759-12.902-2.5532-21.658-4.0346-14.998 5.4468-21.07-7.8742-33.934 2.4062-7.3989 6.5733 26.075 0.76854 42.103-6.36 42.103-6.36s4.3857 8.1142 10.746 2.4122c6.3592-5.7012 6.5786 2.1929 6.798 2.1929 0.2186 0 6.1399-2.6316 6.1399-2.6316h1.5348z" stroke="#000" stroke-linecap="round" stroke-width=".74216" fill="#198200"/> + <path id="path580" stroke-linejoin="round" d="m316.07 320.16v-3.6728s-8.2825-1.4693-12.322-0.64286c-2.3924-1.371-4.6531-3.1762-7.5117-1.6528-0.55146 1.1936 5.2342 4.3157 7.1621 4.3157 2.2584 1.4289 12.672 1.8364 12.672 1.6528z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path581" stroke-linejoin="round" d="m315.97 326.13s-8.2833-3.0284-11.589 0.46081c0.54079 3.7094 9.7525 5.5077 11.681 4.4977 1.9286-1.01 0-4.775-0.0922-4.9585z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path582" stroke-linejoin="round" d="m329.93 327.6v2.5714s9.9171 1.9278 11.662-0.18357c1.7442-2.1121-7.8971-3.4892-11.662-2.3879z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path583" stroke-linejoin="round" d="m329.48 317.35 0.36561 2.9012s8.5392 1.9278 11.845-2.755c3.3057-4.6828-7.504 0.0373-12.21-0.14625z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path584" stroke-linejoin="round" d="m329.93 307.4v1.9278s6.4278 1.0107 7.8971-1.7442c1.4693-2.755-7.7135 0-7.8971-0.18356z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path585" stroke-linejoin="round" d="m316.51 301.46c-0.98866-1.4106-4.4794-4.9044-13.846-5.9144-6.5093-0.0213 11.758 9.5781 13.846 5.9144z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path586" stroke-linejoin="round" d="m329.75 291.69s-0.36713 2.6628-0.27573 2.6628c0.0922 0 22.038-6.52 27.18-6.0607 4.5929-1.2987 5.51-4.4992 5.3256-4.4992-3.9196-2.8571-22.864 2.2957-32.23 7.8971z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path587" stroke-linejoin="round" d="m330.21 283.89c-0.0922 0.45929-0.27573 2.5714-0.27573 2.5714s15.518-3.0307 19.651-5.9685c4.1321-2.9386-19.191 3.4892-19.375 3.3971z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path588" stroke-linejoin="round" d="m329.57 276.27 0.001 2.589s10.358-0.3161 12.487-2.4054c1.3588-2.0893-9.1287-0.29705-12.488-0.18356z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path589" stroke-linejoin="round" d="m351.18 298.01s5.3805 0.75178 6.3905-0.8089c-0.1988-2.7702-6.3905 0.9003-6.3905 0.8089z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path590" stroke-linejoin="round" d="m330.02 266.63c-0.0922 0.45853 0.0914 5.6928 0.0914 5.6928s24.885-7.8971 26.446-9.3664c1.5607-1.4693 5.0248-5.8916-26.538 3.6736z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path591" stroke-linejoin="round" d="m329.29 258.73v4.1321s10.009-0.73502 14.601-4.5c4.5914-3.7642-14.601 0.4593-14.601 0.36789z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path592" stroke-linejoin="round" d="m317.26 249.36 0.64285 3.765s-32.965-10.652-32.873-10.652c0.0914 0-1.6605-5.4262 32.23 6.8871z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path593" stroke-linejoin="round" d="m317.81 236.14c-0.0922 0.36713-0.0922 3.5806-0.18433 3.4892-0.0914-0.0922-22.864-9.5499-23.69-8.7235-3.0239-7.0859 23.875 5.4178 23.875 5.2342z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path594" stroke-linejoin="round" d="m328.92 242.02c0 0.0922 0.36713 3.2143 0.36713 3.2143s13.958-2.9386 14.784-4.3157c0.82641-1.3779-15.151 1.1936-15.151 1.1014z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path595" stroke-linejoin="round" d="m329.25 249.45c0.12949 0.7891 0.40445 3.3064 0.40445 3.3064s5.6014-0.4593 6.4278-1.745c0.82642-1.2857-6.8323-1.4693-6.8323-1.5614z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path596" stroke-linejoin="round" d="m328.37 232.47c0 0.27573 0.0914 3.1221 0.0914 3.1221s15.335-3.03 16.988-4.4992c1.6528-1.4693-17.355 1.3771-17.079 1.3771z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path597" stroke-linejoin="round" d="m328.46 224.02c0 0.18356-0.5507 3.1221-0.18357 3.1221s18.641-3.1221 21.487-5.6928c2.8472-2.5714-21.028 2.8464-21.303 2.5707z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path598" stroke-linejoin="round" d="m328.19 209.14v3.2143s11.846-2.4793 14.05-4.9593c2.2035-2.4793-14.05 1.9286-14.05 1.745z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path599" stroke-linejoin="round" d="m326.17 187.47 0.27573 4.8664s15.886-2.2035 18.181-4.8664c2.2957-2.6628-18.548 0-18.457 0z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path600" stroke-linejoin="round" d="m318.82 151.02v3.03s-7.53-0.36713-5.6936-1.6528 5.6936-1.1021 5.6936-1.3771z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path601" stroke-linejoin="round" d="m325.8 155.06 0.18357 4.1321s9.7335-0.91783 10.468-2.4793c0.73426-1.5607-10.468-1.6528-10.652-1.6528z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path602" stroke-linejoin="round" d="m325.25 161.03s0.18356 2.5714 0.36712 2.5714c0.18357 0 3.8564-0.27573 4.6828-1.2857 0.82641-1.01-4.6828-1.1021-5.0499-1.2857z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path603" stroke-linejoin="round" d="m316.99 172.78c0 0.27497 0.27497 3.9486 0.0914 3.8564s-21.303-6.1521-23.232-6.0607c-1.9278 0.0922-2.4793-4.8664 23.141 2.2043z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path604" stroke-linejoin="round" d="m318.73 179.67c0 0.73501 0.45929 4.5914-0.27573 4.4078-0.73426-0.18356-14.324-4.4992-12.947-5.7849 1.3771-1.2857 13.223 1.6528 13.223 1.3771z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path605" stroke-linejoin="round" d="m317.54 208.68 0.0914 3.4892s-23.69-7.1621-24.517-8.3556c-0.82642-1.1936-3.1221-6.7949 24.426 4.8664z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path606" stroke-linejoin="round" d="m318.45 217.22c0 0.0922 0.18433 3.3057 0.0922 3.3057-0.0922 0-32.23-11.294-32.23-11.294s-2.5714-8.4485 32.138 7.9885z" stroke="#000" stroke-linecap="round" stroke-width=".59373pt" fill="#fff"/> + <path id="path607" stroke-linejoin="round" d="m280.26 328.68c0 0.10969-0.10969 3.5167-0.10969 3.5167s-6.264-1.7587-8.2421-5.2746c3.6263-0.98866 8.4615 1.8676 8.3518 1.758z" stroke="#000" stroke-width=".59373pt" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/ng.svg b/s/flag/ng.svg new file mode 100755 index 0000000..95ce7d8 --- /dev/null +++ b/s/flag/ng.svg @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3039"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" transform="matrix(.64508 0 0 .96762 0 .000077450)"> + <g id="g2479" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.3333 0 0 1 0 -212.6)"> + <rect id="rect171" height="496.06" width="744.09" y="212.6" x="0" fill="#fff"/> + <rect id="rect135" height="496.06" width="248.03" y="212.6" x="496.06" fill="#36a100"/> + <rect id="rect403" height="496.06" width="248.03" y="212.6" x="0" fill="#36a100"/> + </g> + </g> +</svg> diff --git a/s/flag/ni.svg b/s/flag/ni.svg new file mode 100755 index 0000000..154acad --- /dev/null +++ b/s/flag/ni.svg @@ -0,0 +1,122 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3142"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath4786" clipPathUnits="userSpaceOnUse"> + <rect id="rect4788" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath4786)"> + <rect id="rect1062" fill-rule="evenodd" height="161.14" width="798.86" y="318.86" x="-79.429" stroke-width="1pt" fill="#5387f4"/> + <rect id="rect1063" fill-rule="evenodd" height="161.14" width="798.86" y="-.0000011560" x="-79.429" stroke-width="1pt" fill="#5387f4"/> + <rect id="rect1064" fill-rule="evenodd" height="157.71" width="798.86" y="161.14" x="-79.429" stroke-width="1pt" fill="#fff"/> + <g id="g968" transform="matrix(.45385 0 0 .45413 121.08 -34.817)"> + <g id="g784" transform="translate(-23.549 -.000030518)"> + <path id="path580" d="m496.06 627.16 17.717-17.716 17.716 17.716h-35.433z" fill-rule="evenodd" transform="matrix(11.097 0 0 19.115 -5241.2 -11263)" stroke-width="1pt" fill="#ffd200"/> + <path id="path562" d="m496.06 627.16 17.717-17.716 17.716 17.716h-35.433z" fill-rule="evenodd" transform="matrix(10 0 0 17.321 -4677.2 -10147)" stroke-width="1pt" fill="#0ff"/> + <g id="g619" stroke="#ffd200" stroke-width=".55067pt" fill="none"> + <path id="path604" d="m462.73 556.66-1.18-108.32"/> + <path id="path606" d="m468.62 563.73 38.855-54.162"/> + <path id="path607" d="m474.51 569.61 62.4-25.9"/> + <path id="path609" d="m479.22 577.86 73.001 2.355"/> + <path id="path611" d="m474.51 587.28 42.388 37.677" transform="translate(0 -.000030518)"/> + <path id="path612" d="m462.73 583.74v34.146"/> + <path id="path613" d="m449.78 575.5-55.339 48.275"/> + <path id="path614" d="m455.67 579.03-24.726 45.92"/> + <path id="path615" d="m446.25 569.61-91.84 31.791"/> + <path id="path616" d="m445.07 564.9-64.76-2.355"/> + <path id="path617" d="m393.26 537.82 56.517 18.839"/> + <path id="path618" d="m420.34 489.55 34.146 65.936"/> + </g> + <g id="g572" fill-rule="evenodd" transform="translate(0 318.54)"> + <path id="path565" d="m460.63 219.69c-35.433 0-61.25 6.505-83.044 14.145l5.54-9.579 5.53-9.595 5.54-9.596 5.54-9.578 5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595 5.54 9.578 5.53 9.596 5.54 9.595 5.53 9.579c-22.972-7.64-47.613-14.145-83.046-14.145z" transform="translate(.00055313 -.0036163)" stroke-width="1pt" fill="#c453d7"/> + <path id="path566" d="m460.63 212.93c-35.548-0.05-75.281 10.597-77.504 11.329l5.53-9.595 5.54-9.596 5.54-9.578 5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595 5.54 9.578 5.53 9.596 5.54 9.595s-42.083-11.329-77.516-11.329z" transform="translate(.012903 .00088501)" stroke-width="1pt" fill="#5000c1"/> + <path id="path567" d="m460.63 205.27c-26.248-0.109-68.686 7.141-71.68 8.504l5.246-8.713 5.54-9.578 5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595 5.54 9.578 5.53 9.596s-36.543-9.387-71.976-9.387z" transform="translate(-.00020024 -.0065155)" stroke-width="1pt" fill="#0053d7"/> + <path id="path568" d="m460.63 197.32c-34.802-0.07-63.717 6.631-66.434 7.739l5.54-9.578 5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595 5.54 9.578s-31.013-7.739-66.446-7.739z" transform="translate(-.015031 -.0081177)" stroke-width="1.25" fill="#009f9f"/> + <path id="path569" d="m460.63 190.56c-35.605-0.123-57.963 4.465-60.894 4.931l5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595s-25.473-4.931-60.906-4.931z" transform="translate(-.00020024 -.012848)" stroke-width="1pt" fill="#ff0"/> + <path id="path570" d="m460.34 181.72c-31.014-0.671-53.786 4.25-55.07 4.167l5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579s-20.227-4.167-55.66-4.167z" transform="translate(-.014536 -.012848)" stroke-width="1pt" fill="#f50"/> + <path id="path571" d="m461.51 171.42c-31.129 0.257-47.247 4.34-50.707 4.891l6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595s-13.52-4.891-48.953-4.891z" transform="translate(-.029404 .0029450)" stroke-width="1pt" fill="#ff0b00"/> + </g> + <path id="path581" d="m496.06 627.16 4.983-4.983h25.467l4.983 4.983h-35.433z" fill-rule="evenodd" transform="matrix(10 0 0 17.321 -4677.2 -10147)" stroke-width="1pt" fill="#4363ff"/> + <g id="g592" fill-rule="evenodd" transform="matrix(.96712 0 0 1 -10.643 -6.6606)"> + <path id="path590" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="translate(149.03 .83256)" stroke="#000" stroke-width=".55067pt" fill="#6da700"/> + <path id="path591" d="m447.92 662.72c-44.959-19.982-18.317-9.991-31.638-18.317-6.661-16.651-16.651-29.973-8.326-29.973 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 28.308 12.489 28.308 12.489l-18.317-2.498z" transform="translate(149.03 .83256)" stroke-width="1pt" fill="#ffbd00"/> + <path id="path588" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="translate(111.56 .83256)" stroke="#000" stroke-width=".55067pt" fill="#6da700"/> + <path id="path589" d="m447.92 662.72c-44.959-19.982-18.317-9.991-31.638-18.317-6.661-16.651-16.651-29.973-8.326-29.973 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 28.308 12.489 28.308 12.489l-18.317-2.498z" transform="translate(111.56 .83256)" stroke-width="1pt" fill="#ffbd00"/> + <path id="path586" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="translate(74.099 .83249)" stroke="#000" stroke-width=".55067pt" fill="#6da700"/> + <path id="path587" d="m447.92 662.72c-44.959-19.982-18.317-9.991-31.638-18.317-6.661-16.651-16.651-29.973-8.326-29.973 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 28.308 12.489 28.308 12.489l-18.317-2.498z" transform="translate(74.099 .83249)" stroke-width="1pt" fill="#ffbd00"/> + <path id="path584" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="translate(31.638 -.000030518)" stroke="#000" stroke-width=".55067pt" fill="#6da700"/> + <path id="path585" d="m447.92 662.72c-44.959-19.982-18.317-9.991-31.638-18.317-6.661-16.651-16.651-29.973-8.326-29.973 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 28.308 12.489 28.308 12.489l-18.317-2.498z" transform="translate(31.638 -.000030518)" stroke-width="1pt" fill="#ffbd00"/> + <path id="path582" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" stroke="#000" stroke-width=".55067pt" fill="#6da700"/> + <path id="path583" d="m447.92 662.72c-44.959-19.982-18.317-9.991-31.638-18.317-6.661-16.651-16.651-29.973-8.326-29.973 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 28.308 12.489 28.308 12.489l-18.317-2.498z" stroke-width="1pt" fill="#ffbd00"/> + </g> + <path id="path603" d="m438.01 565.49c0.409 0 0.727-1.87 1.766-3.532 2.222-1.61 4.568-2.871 7.653-3.533 1.665-0.832 5.08-0.588 7.653-0.588 3.611 0.324 3.837 1.865 5.888 4.121 0.902 1.837 3.038 4.389 4.121 7.064 1.172 1.42 2.107 3.626 2.943 5.299 0.855 1.804 1.765 4.526 2.944 7.064 0.605 2.824 1.177 5.028 1.177 8.242 0 3.352-0.554 4.78-1.177 7.065-1.794 0.598-5.29 0.888-7.065 0-1.9-1.7-5.162-0.617-6.475-2.355-3.386-0.474-4.208-4.459-5.888-6.475-1.175-1.729-1.156-3.032-2.355-4.71-1.857-1.327-2.108-2.945-2.943-5.299 0.736-2.517 2.015-3.068 4.121-4.121 1.127-1.644 1.766-2.304 1.766-5.298-0.424-3.334-1.625-2.982-4.71-3.533-3.814 0-5.77 0.393-9.419 0.589z" fill-rule="evenodd" transform="matrix(.67241 0 0 .52247 155.85 268.72)" stroke="#000" stroke-width=".55067pt" fill="#f00"/> + <g id="g651" stroke="#0ff" stroke-width=".55067pt" fill="none" transform="matrix(1.0073 0 0 1.4304 -11.671 -306.49)"> + <path id="path632" d="m314.38 690.89h1.177c-3.178 0-1.561-0.077 4.71 1.177 5.434 0.647 10.545 1.178 16.484 1.178"/> + <path id="path633" d="m308.49 708.55v-1.177c0 3.69-0.307 1.422 5.887-3.532 5.262-0.916 7.744 0.94 14.129 1.177 3.388 1.694 9.526 1.142 12.952 0 1.753-0.751 1.78-1.604 3.532-2.355"/> + <path id="path634" d="m321.44 710.91v-1.177c0.784 0.313 5.255 0 8.242 0 6.162 0 10.917-0.299 14.129 2.355h2.355"/> + <path id="path635" d="m366.18 686.18h1.178 4.709c3.749-1.25 9.204-1.249 12.952 0 1.484 4.877 3.389 5.78 9.42 5.887 1.974-1.481 6.046-2.526 8.242-3.532"/> + <path id="path636" d="m369.71 694.42h1.178 4.71 10.597"/> + <path id="path637" d="m380.31 705.02v-1.177c0 3.69-0.306 1.422 5.888-3.533 4.69-2.304 7.16-3.599 14.129-2.355 5.013 2.679 6.789 4.236 12.952 4.71 5.601 0 8.065-0.901 12.951-1.177"/> + <path id="path638" d="m395.62 710.91h1.177c-3.291 0-1.541 0.146 4.71-2.355 5.854 1.464 9.805 3.453 16.484 3.533 3.824-0.192 6.575-1.178 10.597-1.178"/> + <path id="path639" d="m438.01 686.18h1.177 4.71c5.761 0 11.38-0.098 16.484 1.177h16.484c1.57 0 1.177 0.393 1.177-1.177"/> + <path id="path640" d="m433.3 695.6h1.177c-3.291 0-1.541 0.146 4.71-2.354 4.946 0.38 10.524 1.085 14.129 3.532 5.172 2.267 7.214 4.216 14.13 4.71 3.945-0.208 4.215-1.751 8.242-2.355"/> + <path id="path641" d="m450.96 707.37c1.847-0.923 8.039-3.283 12.952-1.178 5.104 1.276 10.723 1.178 16.484 1.178 3.665-1.571 9.865-2.905 12.952-4.71h3.532"/> + <path id="path642" d="m500.41 692.07c2.368 0 12.454-0.558 17.661 1.178 6.371-0.768 8.617-3.877 12.952-7.065 4.347 0 8.014 0.103 11.774 1.177"/> + <path id="path643" d="m522.78 706.2c0.095-0.012 4.706-0.924 8.242-1.177 5.307-3.98 6.228 0.084 11.774 1.177 6.151-1.391 9.251-4.42 11.775-8.242"/> + <path id="path644" d="m535.73 697.95h1.177c-3.466 0-1.513 0.202 4.71-3.532 4.142-2.071 4.632-4.167 10.597-4.71 3.294-2.47 5.733-0.305 8.242 1.178"/> + <path id="path645" d="m560.46 707.37c0.197-0.935 2.335-6.019 3.532-8.242 5.249-2.1 7.759-3.058 11.775 2.355 4.27 1.164 8.279 3.491 12.951 4.709 1.733 0 0.9 0.278 2.355-1.177"/> + <path id="path646" d="m576.94 690.89v-1.178c0 3.691-0.245 1.485 4.71-4.709 5.457 0.999 6.892 4.302 9.419 8.242 5.85 0 9.697-0.142 12.952-2.355"/> + <path id="path647" d="m605.2 703.84c0.715-1.044 5.415-8.715 9.42-4.71 5.226 1.425 6.044 3.803 11.774 5.887 1.002-1.753 2.103-2.094 4.71-2.355"/> + <path id="path648" d="m501.59 708.55h1.178c-3.291 0-1.542 0.146 4.709-2.355 4.895-2.826 7.322-3.976 10.597-8.242 5.468 0.196 9.662 1.178 15.307 1.178 0-1.57-0.393-1.178 1.177-1.178"/> + <path id="path649" d="m350.88 694.42c0-0.815 3.214-2.088 7.064-3.532 2.806-2.105 5.133-0.126 9.42 0"/> + <path id="path650" d="m356.76 705.02h1.177c-3.291 0-1.541 0.146 4.71-2.355 4.516 0.632 6.547 2.879 11.774 3.532"/> + </g> + </g> + <path id="path862" d="m749.42 355.13c0 11.712 4.736 17.088 16.384 17.088 2.688 0 6.144-0.704 8.192-1.664 7.232-3.456 7.872-9.088 7.872-16.32v-20.16c0-1.856 0.96-3.904 6.016-3.904v-1.216h-14.848v1.216c5.056 0 6.016 2.048 6.016 3.904v20.16c0 6.08-0.064 15.104-12.032 15.104-8 0-11.072-3.776-11.072-13.76v-21.504c0-1.856 0.96-3.904 5.632-3.904v-1.216h-17.792v1.216c4.672 0 5.632 2.048 5.632 3.904v21.056z" transform="matrix(-.015647 .99988 -.99988 -.015647 1071.5 -162.39)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path863" d="m735.98 328.05h-1.344c-1.6 4.736-6.592 0-14.4 0-12.736 0-21.952 9.472-21.952 22.208 0 15.04 11.84 21.952 22.72 21.952 5.248 0 12.416-2.432 16.128-4.544v-12.16c0-3.648 0.32-5.696 4.48-5.76v-1.216h-16.32v1.216c5.312 0 5.632 2.112 5.632 5.76v9.536c0 1.856 0 2.24-1.856 3.136-2.176 1.024-4.864 1.408-7.232 1.408-10.752 0-16.192-8.96-16.192-18.816 0-11.2 4.608-20.16 15.232-20.16 7.552 0 11.776 4.224 14.208 11.008h1.472l-0.576-13.568z" transform="matrix(.15771 .98748 -.98748 .15771 935.34 -214.65)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path870" d="m558.19 328.12h-1.344c-2.112 5.184-5.312-0.064-14.08-0.064-12.864 0-21.888 9.408-21.888 22.144 0 14.016 9.536 22.016 22.016 22.016 6.144 0 12.736-3.2 16.64-8l-1.088-1.28c-4.416 4.352-8.704 6.4-14.976 6.4-10.496 0-15.168-9.664-15.168-18.624 0-11.52 4.544-20.032 15.104-20.032 7.296 0 11.968 4.8 13.824 11.84h1.536l-0.576-14.4z" transform="matrix(.76764 .64088 -.64088 .76764 411.98 -224.79)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path871" d="m511.41 334.07c0-1.856 0.96-3.904 6.272-3.904v-1.216h-19.072v1.216c5.312 0 6.272 2.048 6.272 3.904v32.128c0 1.856-0.96 3.904-6.272 3.904v1.216h19.072v-1.216c-5.312 0-6.272-2.048-6.272-3.904v-32.128z" transform="matrix(.87269 .53240 -.48758 .84843 302.18 -196.24)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path872" d="m490.42 334.07c0-1.856 0.96-3.904 6.208-3.904v-1.216h-15.232v1.216c5.248 0 6.208 2.048 6.208 3.904v25.664l-24.64-30.784h-10.944v1.216c3.136 0.064 3.712 0.64 5.696 2.88l0.512 0.64v32.512c0 1.856-0.96 3.904-6.208 3.904v1.216h15.232v-1.216c-5.248 0-6.208-2.048-6.208-3.904v-29.248l28.416 35.264h0.96v-38.144z" transform="matrix(.92166 .38801 -.38801 .92166 242.32 -151.83)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path873" d="m431.47 371.32 2.88-10.816h-1.792c-3.392 8.128-8.256 8.192-13.376 8.192h-8.448c-1.28 0-1.664-1.344-1.664-2.496v-15.744h9.024c4.288 0 7.936 1.216 7.936 6.208h1.344v-14.976h-1.344c0 4.992-3.648 6.144-7.936 6.144h-9.024v-13.76c0-1.6 1.216-2.496 2.816-2.496h10.304c4.48 0 6.592 3.072 7.296 6.528h1.408v-9.152h-33.984v1.216c4.672 0 5.632 2.048 5.632 3.904v32.128c0 1.856-0.96 3.904-5.632 3.904v1.216h34.56z" transform="matrix(.99769 .067952 -.067952 .99769 69.593 -42.496)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path878" d="m284.46 328.12h-1.344c-2.112 5.184-5.312-0.064-14.08-0.064-12.864 0-21.888 9.408-21.888 22.144 0 14.016 9.536 22.016 22.016 22.016 6.144 0 12.736-3.2 16.64-8l-1.088-1.28c-4.416 4.352-8.704 6.4-14.976 6.4-10.496 0-15.168-9.664-15.168-18.624 0-11.52 4.544-20.032 15.104-20.032 7.296 0 11.968 4.8 13.824 11.84h1.536l-0.576-14.4z" transform="matrix(.85522 -.51827 .51827 .85522 -113.64 211.06)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path879" d="m237.68 334.07c0-1.856 0.96-3.904 6.272-3.904v-1.216h-19.072v1.216c5.312 0 6.272 2.048 6.272 3.904v32.128c0 1.856-0.96 3.904-6.272 3.904v1.216h19.072v-1.216c-5.312 0-6.272-2.048-6.272-3.904v-32.128z" transform="matrix(.77259 -.63491 .63491 .77259 -134.85 270.84)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path880" d="m219.82 371.32 3.072-11.136h-1.6c-3.52 8.768-9.216 8.512-17.344 8.512-3.968 0-6.4-0.704-6.4-2.496v-32.128c0-1.856 0.96-3.904 5.632-3.904v-1.216h-17.792v1.216c4.672 0 5.632 2.048 5.632 3.904v32.128c0 1.856-0.96 3.904-5.632 3.904v1.216h34.432z" transform="matrix(.68725 -.72642 .72642 .68725 -149.29 322.56)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path884" d="m102.38 355.13c0 11.712 4.736 17.088 16.384 17.088 2.688 0 6.144-0.704 8.192-1.664 7.232-3.456 7.872-9.088 7.872-16.32v-20.16c0-1.856 0.96-3.904 6.016-3.904v-1.216h-14.848v1.216c5.056 0 6.016 2.048 6.016 3.904v20.16c0 6.08-0.064 15.104-12.032 15.104-8 0-11.072-3.776-11.072-13.76v-21.504c0-1.856 0.96-3.904 5.632-3.904v-1.216h-17.792v1.216c4.672 0 5.632 2.048 5.632 3.904v21.056z" transform="matrix(.47347 -.88081 .88081 .47347 -169.71 425.81)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path887" d="m56.369 371.32 2.88-10.816h-1.792c-3.392 8.128-8.256 8.192-13.376 8.192h-8.448c-1.28 0-1.664-1.344-1.664-2.496v-15.744h9.024c4.288 0 7.936 1.216 7.936 6.208h1.344v-14.976h-1.344c0 4.992-3.648 6.144-7.936 6.144h-9.024v-13.76c0-1.6 1.216-2.496 2.816-2.496h10.304c4.48 0 6.592 3.072 7.296 6.528h1.408v-9.152h-33.984v1.216c4.672 0 5.632 2.048 5.632 3.904v32.128c0 1.856-0.96 3.904-5.632 3.904v1.216h34.56z" transform="matrix(.19479 -.98084 .98084 .19479 -181.27 537.16)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path892" d="m-15.439 366.2c0 1.856-0.96 3.904-5.44 3.904v1.216h17.6v-1.216c-4.672 0-5.632-2.048-5.632-3.904v-14.464l3.584-0.128 15.232 19.712h10.304v-1.216c-2.88-0.192-4.352-1.472-6.08-3.584l-12.672-15.62c6.016-0.832 11.584-3.968 11.584-10.752 0-7.488-6.4-11.2-17.024-11.2h-16.896v1.216c4.48 0 5.44 2.048 5.44 3.904v32.128zm6.528-31.808c0-3.008 0.576-3.008 4.736-3.008 5.76 0 10.24 2.496 10.24 8.832 0 6.912-5.696 8.832-14.976 9.152v-14.976z" transform="matrix(.010619 -.99994 .99994 .010619 -182.07 608.65)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path895" d="m66.481 366.2c0 1.856-0.96 3.904-5.632 3.904v1.216h17.792v-1.216c-4.672 0-5.632-2.048-5.632-3.904v-13.696c1.856 0.192 3.712 0.32 5.568 0.32 8.192 0 16.256-3.264 16.256-12.736 0-7.552-7.68-11.136-17.536-11.136h-16.128v1.216c4.352 0 5.312 2.048 5.312 3.904v32.128zm6.528-31.936c0-2.624 0.128-2.944 2.816-2.944 6.144 0 12.032 2.048 12.032 9.28 0 7.424-4.8 9.728-11.712 9.728-1.024 0-2.112-0.128-3.136-0.192v-15.872z" transform="matrix(.24519 -.96948 .96948 .24519 -179.51 515.06)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path899" d="m149.36 366.2c0 1.856-0.96 3.904-6.144 3.904v1.216h20.16c10.048 0 16.704-3.968 16.704-11.648 0-6.144-5.184-9.536-10.688-10.624 4.928-1.152 8.512-3.904 8.512-9.28 0-8.192-7.68-10.816-17.536-10.816h-17.152v1.216c5.184 0 6.144 2.048 6.144 3.904v32.128zm6.528-15.744h3.2c6.016 0 13.632 1.408 13.632 9.024 0 7.488-4.928 9.472-11.584 9.472-4.672 0-5.248-1.152-5.248-3.392v-15.104zm0-2.56v-14.528c0-2.24 2.048-2.112 7.936-1.728 4.48 0.832 7.552 3.456 7.552 8.32 0 5.184-3.776 7.936-10.24 7.936h-5.248z" transform="matrix(.57567 -.81768 .81768 .57567 -162.29 378.54)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path902" d="m368.24 371.32c17.152 0 25.792-8.064 25.792-21.056 0-14.4-9.92-21.312-26.304-21.312h-16.512v1.216c4.672 0 5.632 2.048 5.632 3.904v32.128c0 1.856-0.96 3.904-5.632 3.904v1.216h17.024zm-4.864-36.736c0-3.072 0.576-3.264 3.648-3.264 11.84 0 20.032 6.464 20.032 19.008 0 11.904-7.552 18.944-20.608 18.368-1.408-0.064-3.072-0.768-3.072-3.136v-30.976z" transform="matrix(.99696 -.077916 .077916 .99696 22.208 13.662)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path905" d="m613.87 366.2c0 1.856-0.96 3.904-5.44 3.904v1.216h17.6v-1.216c-4.672 0-5.632-2.048-5.632-3.904v-14.464l3.584-0.128 15.232 19.712h10.304v-1.216c-2.88-0.192-4.352-1.472-6.08-3.584l-12.672-15.616c6.016-0.832 11.584-3.968 11.584-10.752 0-7.488-6.4-11.2-17.024-11.2h-16.896v1.216c4.48 0 5.44 2.048 5.44 3.904v32.128zm6.528-31.808c0-3.008 0.576-3.008 4.736-3.008 5.76 0 10.24 2.496 10.24 8.832 0 6.912-5.696 8.832-14.976 9.152v-14.976z" transform="matrix(.50910 .86071 -.86071 .50910 646.29 -258.77)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path908" d="m584.94 328.05h-1.28l-12.992 30.848c-2.624 6.208-4.288 10.88-8.256 11.2v1.216h12.672v-1.216c-2.176 0-4.352-0.576-4.352-2.688 0-2.368 2.624-7.488 3.456-9.92h16.768l2.304 5.44c2.432 5.696 2.496 6.912-2.944 7.168v1.216h16.32v-1.216c-3.584 0.192-4.928-3.648-6.08-6.272l-15.616-35.776zm-2.304 9.216 7.424 17.6h-14.784l7.36-17.6z" transform="matrix(.67256 .74004 -.74004 .67256 502.4 -247.73)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path911" d="m673.84 328.05h-1.28l-12.992 30.848c-2.624 6.208-4.288 10.88-8.256 11.2v1.216h12.672v-1.216c-2.176 0-4.352-0.576-4.352-2.688 0-2.368 2.624-7.488 3.456-9.92h16.768l2.304 5.44c2.432 5.696 2.496 6.912-2.944 7.168v1.216h16.32v-1.216c-3.584 0.192-4.928-3.648-6.08-6.272l-15.616-35.776zm-2.304 9.216 7.424 17.6h-14.784l7.36-17.6z" transform="matrix(.40179 .91573 -.91573 .40179 739.21 -252.03)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path914" d="m812.46 328.05h-1.28l-12.992 30.848c-2.624 6.208-4.288 10.88-8.256 11.2v1.216h12.672v-1.216c-2.176 0-4.352-0.576-4.352-2.688 0-2.368 2.624-7.488 3.456-9.92h16.768l2.304 5.44c2.432 5.696 2.496 6.912-2.944 7.168v1.216h16.32v-1.216c-3.584 0.192-4.928-3.648-6.08-6.272l-15.616-35.776zm-2.304 9.216 7.424 17.6h-14.784l7.36-17.6z" transform="matrix(-.11764 .99306 -.99306 -.11764 1148.5 -122.34)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path918" d="m311.22 328.05h-1.28l-12.992 30.848c-2.624 6.208-4.288 10.88-8.256 11.2v1.216h12.672v-1.216c-2.176 0-4.352-0.576-4.352-2.688 0-2.368 2.624-7.488 3.456-9.92h16.768l2.304 5.44c2.432 5.696 2.496 6.912-2.944 7.168v1.216h16.32v-1.216c-3.584 0.192-4.928-3.648-6.08-6.272l-15.616-35.776zm-2.304 9.216 7.424 17.6h-14.784l7.36-17.6z" transform="matrix(.92940 -.36908 .36908 .92940 -77.682 140.58)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path932" d="m728.93 940.02 4.372-10.693-1.589-0.19c-4.535 8.288-10.161 7.359-18.231 6.395-3.94-0.471-6.272-1.458-6.059-3.238l3.81-31.901c0.22-1.843 1.416-3.762 6.056-3.208l0.144-1.208-17.667-2.11-0.144 1.207c4.639 0.555 5.349 2.702 5.129 4.545l-3.81 31.901c-0.22 1.843-1.416 3.763-6.055 3.209l-0.145 1.207 34.189 4.084z" transform="matrix(.41659 -.90910 .90910 .41659 -458.69 1006.7)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path937" d="m594.21 883.96 4.575 0.546c4.448 0.531 7.649 0.72 8.052 9.212l1.525 0.182 0.91-10.849-35.842-4.281-1.671 10.758 1.525 0.182c0.68-1.917 1.256-4.039 2.788-5.532 2.161-2.449 7.08-1.539 11.656-0.993l-4.099 34.316c-0.22 1.843-1.416 3.763-6.055 3.209l-0.145 1.207 17.667 2.11 0.144-1.207c-4.639-0.554-5.349-2.702-5.129-4.544l4.099-34.316z" transform="matrix(.73379 -.67937 .67937 .73379 -457.69 566.21)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path938" d="m564.31 882.84c0.22-1.843 1.416-3.762 6.627-3.14l0.144-1.207-15.124-1.807-0.145 1.208c5.211 0.622 5.922 2.769 5.701 4.612l-3.043 25.483-20.815-33.489-10.867-1.298-0.144 1.208c3.106 0.435 3.61 1.075 5.314 3.535l0.432 0.696-3.856 32.283c-0.22 1.842-1.416 3.762-6.627 3.14l-0.144 1.207 15.125 1.807 0.144-1.208c-5.211-0.622-5.922-2.77-5.701-4.612l3.468-29.042 24.034 38.385 0.953 0.114 4.524-37.875z" transform="matrix(.86944 -.49404 .49404 .86944 -371.79 341.97)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path939" d="m517.25 914.73 4.143-10.398-1.78-0.212c-4.332 7.668-9.169 7.155-14.253 6.547l-8.388-1.002c-1.271-0.151-1.493-1.531-1.357-2.675l1.868-15.633 8.96 1.07c4.258 0.509 7.736 2.149 7.144 7.105l1.334 0.16 1.776-14.87-1.334-0.16c-0.592 4.957-4.351 5.668-8.609 5.16l-8.96-1.071 1.632-13.662c0.19-1.589 1.503-2.335 3.092-2.145l10.231 1.222c4.449 0.531 6.181 3.832 6.471 7.347l1.398 0.167 1.085-9.087-33.744-4.031-0.144 1.208c4.639 0.554 5.349 2.701 5.129 4.544l-3.81 31.902c-0.221 1.842-1.417 3.762-6.056 3.208l-0.144 1.207 34.316 4.099z" transform="matrix(.93823 -.34602 .34602 .93823 -276.66 203.91)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path940" d="m484.06 867.26-1.335-0.159c-2.711 4.897-5.266-0.694-13.973-1.734-12.773-1.525-22.849 6.746-24.359 19.392-1.663 13.917 6.857 22.992 19.249 24.472 6.101 0.729 13.026-1.667 17.472-5.97l-0.929-1.4c-4.901 3.797-9.402 5.322-15.629 4.578-10.422-1.244-13.915-11.394-12.852-20.291 1.366-11.439 6.887-19.352 17.373-18.099 7.244 0.865 11.314 6.185 12.322 13.396l1.525 0.182 1.136-14.367z" transform="matrix(.98636 -.16458 .16458 .98636 -142.32 76.797)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path943" d="m379.9 854.82-1.334-0.16c-2.712 4.897-5.267-0.693-13.973-1.733-12.773-1.526-22.849 6.745-24.36 19.392-1.662 13.917 6.858 22.991 19.25 24.471 6.1 0.729 13.025-1.667 17.471-5.97l-0.929-1.4c-4.901 3.798-9.401 5.323-15.629 4.579-10.422-1.245-13.915-11.395-12.852-20.292 1.366-11.438 6.888-19.351 17.373-18.099 7.245 0.865 11.314 6.186 12.322 13.396l1.525 0.182 1.136-14.366z" transform="matrix(.98504 .17233 -.17233 .98504 161.14 -58.103)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path944" d="m332.74 855.18c0.22-1.843 1.416-3.763 6.69-3.133l0.145-1.207-18.938-2.262-0.144 1.208c5.275 0.63 5.985 2.777 5.765 4.62l-3.811 31.901c-0.22 1.843-1.416 3.763-6.69 3.133l-0.145 1.207 18.938 2.262 0.144-1.207c-5.274-0.63-5.985-2.778-5.765-4.621l3.811-31.901z" transform="matrix(.96020 .27931 -.27931 .96020 264.57 -72.664)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path947" d="m268.33 885 4.143-10.398-1.779-0.213c-4.332 7.669-9.17 7.155-14.254 6.548l-8.388-1.002c-1.271-0.152-1.493-1.532-1.356-2.676l1.867-15.632 8.96 1.07c4.258 0.508 7.736 2.148 7.144 7.105l1.335 0.16 1.776-14.871-1.335-0.159c-0.592 4.957-4.351 5.668-8.608 5.159l-8.961-1.07 1.632-13.663c0.19-1.589 1.504-2.334 3.092-2.144l10.232 1.222c4.448 0.531 6.181 3.832 6.47 7.347l1.398 0.167 1.085-9.087-33.744-4.031-0.144 1.208c4.639 0.554 5.349 2.701 5.129 4.544l-3.81 31.901c-0.22 1.843-1.416 3.763-6.055 3.209l-0.145 1.207 34.316 4.099z" transform="matrix(.84216 .53922 -.53922 .84216 521.41 -47.221)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path948" d="m230.87 843.01c0.22-1.843 1.416-3.763 6.055-3.209l0.144-1.207-12.646-1.511-17.877 30.415-10.847-33.845-12.582-1.503-0.144 1.207c5.083 0.607 5.794 2.755 5.574 4.598l-3.811 31.901c-0.22 1.843-1.416 3.762-6.627 3.14l-0.144 1.207 15.124 1.807 0.145-1.207c-5.211-0.623-5.922-2.77-5.702-4.613l3.537-29.614 11.807 36.603 0.889 0.106 20.588-34.216-3.712 31.075c-0.22 1.843-1.416 3.763-6.055 3.209l-0.144 1.207 17.666 2.11 0.144-1.207c-4.639-0.554-5.349-2.702-5.129-4.544l3.747-31.909z" transform="matrix(.75139 .65985 -.65985 .75139 643.34 -.61954)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path953" d="m278.85 881.1c-0.22 1.843-1.416 3.763-5.864 3.231l-0.145 1.208 17.476 2.087 0.144-1.207c-4.639-0.554-5.349-2.702-5.129-4.545l1.716-14.362 3.573 0.298 12.787 21.38 10.231 1.222 0.145-1.208c-2.837-0.532-4.147-1.977-5.612-4.279l-10.731-17.009c6.072-0.113 11.973-2.566 12.778-9.302 0.888-7.435-5.027-11.88-15.576-13.14l-16.777-2.004-0.144 1.207c4.448 0.532 5.159 2.679 4.939 4.522l-3.811 31.901zm10.255-30.809c0.356-2.987 0.928-2.919 5.059-2.425 5.719 0.683 9.872 3.693 9.12 9.984-0.82 6.863-6.703 8.094-15.956 7.311l1.777-14.87z" transform="matrix(.93272 .36060 -.36060 .93272 344.85 -74.044)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path956" d="m406.47 857.93-1.271-0.152-16.559 29.089c-3.341 5.853-5.548 10.295-9.526 10.142l-0.144 1.208 12.583 1.503 0.144-1.208c-2.161-0.258-4.253-1.088-4.003-3.185 0.281-2.351 3.494-7.124 4.608-9.44l16.65 1.989 1.643 5.674c1.739 5.945 1.658 7.16-3.774 6.769l-0.144 1.207 16.205 1.936 0.144-1.208c-3.581-0.234-4.46-4.207-5.293-6.949l-11.26-37.36zm-3.381 8.878 5.285 18.356-14.68-1.754 9.395-16.602z" transform="translate(0 -5.828)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path959" d="m159.33 828.41-1.271-0.152-16.559 29.09c-3.342 5.853-5.548 10.294-9.526 10.141l-0.144 1.208 12.582 1.503 0.145-1.208c-2.161-0.258-4.253-1.088-4.003-3.185 0.281-2.351 3.494-7.124 4.608-9.44l16.65 1.989 1.642 5.675c1.74 5.944 1.659 7.159-3.773 6.768l-0.144 1.207 16.205 1.936 0.144-1.208c-3.582-0.234-4.461-4.206-5.293-6.948l-11.26-37.36zm-3.381 8.878 5.284 18.356-14.679-1.753 9.395-16.603z" transform="matrix(.56328 .82627 -.82627 .56328 819.55 133)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path962" d="m612.48 920.95c-0.22 1.843-1.416 3.763-5.865 3.232l-0.144 1.207 17.476 2.087 0.144-1.207c-4.639-0.554-5.349-2.702-5.129-4.544l1.715-14.362 3.574 0.298 12.787 21.379 10.231 1.222 0.144-1.207c-2.837-0.533-4.147-1.978-5.612-4.28l-10.73-17.009c6.072-0.112 11.972-2.566 12.777-9.302 0.888-7.435-5.027-11.88-15.576-13.14l-16.776-2.004-0.144 1.208c4.448 0.531 5.158 2.678 4.938 4.521l-3.81 31.901zm10.254-30.809c0.357-2.987 0.929-2.918 5.059-2.425 5.72 0.683 9.872 3.693 9.121 9.984-0.82 6.863-6.704 8.094-15.956 7.311l1.776-14.87z" transform="matrix(.6625 -.74906 .74906 .6625 -474.31 673.26)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <path id="path965" d="m676.55 890.19-1.271-0.152-16.558 29.089c-3.342 5.853-5.549 10.295-9.527 10.142l-0.144 1.208 12.583 1.502 0.144-1.207c-2.161-0.258-4.253-1.088-4.002-3.185 0.28-2.351 3.493-7.124 4.608-9.44l16.649 1.988 1.643 5.675c1.739 5.945 1.659 7.16-3.773 6.769l-0.145 1.207 16.205 1.936 0.144-1.208c-3.581-0.234-4.46-4.207-5.293-6.949l-11.26-37.36zm-3.38 8.877 5.284 18.357-14.68-1.754 9.396-16.603z" transform="matrix(.48593 -0.874 0.874 .48593 -475.12 919.05)" stroke="#000" stroke-width=".55067pt" fill="#ffd200"/> + <ellipse id="path966" d="m 186.49635,676.03918 c 0,5.05801 -4.2867,9.15833 -9.5746,9.15833 -5.2879,0 -9.57459,-4.10032 -9.57459,-9.15833 0,-5.058 4.28669,-9.15832 9.57459,-9.15832 5.2879,0 9.5746,4.10032 9.5746,9.15832 z" fill-rule="evenodd" rx="9.5746" ry="9.1583" stroke="#000" transform="translate(2.4977 8.3258)" cy="676.04" cx="176.92" stroke-width=".55067pt" fill="#ffd200"/> + <ellipse id="path967" d="m 186.49635,676.03918 c 0,5.05801 -4.2867,9.15833 -9.5746,9.15833 -5.2879,0 -9.57459,-4.10032 -9.57459,-9.15833 0,-5.058 4.28669,-9.15832 9.57459,-9.15832 5.2879,0 9.5746,4.10032 9.5746,9.15832 z" fill-rule="evenodd" rx="9.5746" ry="9.1583" stroke="#000" transform="translate(514.53 19.982)" cy="676.04" cx="176.92" stroke-width=".55067pt" fill="#ffd200"/> + </g> + </g> +</svg> diff --git a/s/flag/nl.svg b/s/flag/nl.svg new file mode 100755 index 0000000..9138430 --- /dev/null +++ b/s/flag/nl.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>SVG Graphic of the Dutch flag</dc:title> + <dc:rights><Agent> + <dc:title>Marc Maurer</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> +</rdf:RDF> +--> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3151"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="scale(1.25 .9375)"> + <rect id="rect171" rx="0" ry="0" height="509.76" width="512" y="-.0000019907" x="0" fill="#fff"/> + <rect id="rect256" rx="0" ry="0" height="169.92" width="512" y="342.08" x="0" fill="#21468b"/> + <rect id="rect255" height="169.92" width="512" y="-.0000019907" x="0" fill="#ae1c28"/> + </g> +</svg> diff --git a/s/flag/no.svg b/s/flag/no.svg new file mode 100755 index 0000000..913b2f7 --- /dev/null +++ b/s/flag/no.svg @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="islenskifaninn" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3163"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath3738" clipPathUnits="userSpaceOnUse"> + <rect id="rect3740" fill-opacity="0.67" height="480" width="640" y="6" x="-32"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3738)" transform="translate(32,-6)"> + <rect id="rect8153" height="512" width="512" y="-20" x="0" fill="#fff"/> + <rect id="rect583" fill-rule="evenodd" height="511.84" width="699.74" y="-19.842" x="-70" stroke-width="1pt" fill="#fff"/> + <rect id="rect561" fill-rule="evenodd" height="221.47" width="222.94" y="-43.039" x="-99.213" stroke-width="1pt" fill="#d72828"/> + <rect id="rect562" fill-rule="evenodd" height="221.47" width="431.36" y="-43.039" x="247.42" stroke-width="1pt" fill="#d72828"/> + <rect id="rect563" fill-rule="evenodd" height="225.76" width="220" y="301.67" x="-99.213" stroke-width="1pt" fill="#d72828"/> + <rect id="rect564" fill-rule="evenodd" height="223.65" width="419.68" y="303.79" x="250" stroke-width="1pt" fill="#d72828"/> + <rect id="rect565" fill-rule="evenodd" height="545.67" width="64.425" y="-43.039" x="154.65" stroke-width="1pt" fill="#003897"/> + <rect id="rect566" fill-rule="evenodd" height="63.444" width="763.01" y="204.84" x="-99.213" stroke-width="1pt" fill="#003897"/> + </g> +</svg> diff --git a/s/flag/np.svg b/s/flag/np.svg new file mode 100755 index 0000000..c29900c --- /dev/null +++ b/s/flag/np.svg @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>Nepal SVG Flag</dc:title> + <dc:rights><Agent> + <dc:title>Tobias Jakobs</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> +</rdf:RDF> +--> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3171"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath8578" clipPathUnits="userSpaceOnUse"> + <rect id="rect8580" fill-opacity="0.67" height="512" width="512" y="-15.957" x="0"/> + </clipPath> + </defs> + <g id="flag"> + <rect id="rect8734" height="480" width="640" y="0" x="0" fill="#fff"/> + <g id="g8553" clip-path="url(#clipPath8578)" transform="matrix(.9375 0 0 .9375 0 14.96)"> + <g id="g8531" fill-rule="evenodd" transform="matrix(1.0432 0 0 1.0432 -.0024051 -21.45)"> + <path id="path552" d="m6.2712 489.83 363.1-0.01-237.66-241.01 246.61 0.29-372.03-237.62-0.0188 478.35z" stroke="#000063" stroke-width="13.26" fill="#ce0000"/> + <polygon id="polygon555" fill="#fff" d="m 296.97868,523.24292 -21.02922,7.1358 16.4532,15.86944 -22.15922,-1.45491 9.1278,20.95781 -19.91568,-9.82413 0.41278,22.85555 -14.64016,-16.69771 -8.36508,21.27374 -7.1358,-21.02923 -15.86944,16.4532 1.45491,-22.15922 -20.95781,9.1278 9.82413,-19.91568 -22.85555,0.41278 16.69771,-14.64016 -21.27374,-8.36508 21.02922,-7.1358 -16.45319,-15.86944 22.15922,1.45491 -9.1278,-20.95781 19.91568,9.82413 -0.41278,-22.85555 14.64016,16.69771 8.36508,-21.27374 7.1358,21.02923 15.86944,-16.4532 -1.45492,22.15922 20.95782,-9.1278 -9.82413,19.91568 22.85555,-0.41278 -16.69772,14.64016 z" transform="matrix(1.2301 0 0 1.1997 -192.06 -266.1)" stroke-width="1pt" points="296.98 523.24 275.95 530.38 292.4 546.25 270.24 544.79 279.37 565.75 259.46 555.93 259.87 578.78 245.23 562.08 236.86 583.36 229.73 562.33 213.86 578.78 215.31 556.62 194.36 565.75 204.18 545.84 181.32 546.25 198.02 531.61 176.75 523.24 197.78 516.11 181.32 500.24 203.48 501.69 194.36 480.74 214.27 490.56 213.86 467.7 228.5 484.4 236.86 463.13 244 484.16 259.87 467.7 258.41 489.86 279.37 480.74 269.55 500.65 292.4 500.24 275.7 514.88"/> + <path id="path563" d="m142.18 184.6-10.861 8.04 5.353 4.423c13-10.048 22.25-19.231 29.48-34.471 1.695 20.342-16.951 66.004-65.884 66.508-52.371-0.044-70.543-48.492-68.522-67.366 9.621 17.455 15.492 25.966 30.594 35.054l4.6206-4.241-10.229-8.523 13.168-3.424-7.0846-11.924 13.796 1.005-1.7336-13.885 12.094 7.077 3.784-12.926 8.6895 10.411 8.1403-9.87 4.432 13.411 11.301-7.864-1.449 13.639 13.548-1.59-6.351 12.608 13.115 3.908z" stroke-width="1pt" fill="#fff"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/nr.svg b/s/flag/nr.svg new file mode 100755 index 0000000..881fa3e --- /dev/null +++ b/s/flag/nr.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg3473" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3179"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs3475"> + <clipPath id="clipPath3566" clipPathUnits="userSpaceOnUse"> + <rect id="rect3568" fill-opacity="0.67" height="512" width="682.67" y="-.0000039058" x="-54.667"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath3566)" transform="matrix(.9375 0 0 .9375 51.25 .0000036617)" stroke-width="1pt"> + <rect id="rect3478" width="1024" y="-.0000039058" x="-140" height="512" fill="#002170"/> + <rect id="rect3477" width="1024" y="234.11" x="-140" height="43.783" fill="#ffb20d"/> + <polygon id="polygon3483" transform="matrix(.88165 -.082933 .082933 .88165 -286.48 94.865)" d="m 467.71652,433.18173 -33.51227,-40.5561 -16.72515,49.88125 -8.74443,-51.87875 -39.42503,34.83586 18.36648,-49.30053 -51.56101,10.45622 40.55611,-33.51227 -49.88126,-16.72515 51.87875,-8.74442 -34.83586,-39.42503 49.30053,18.36648 -10.45622,-51.56101 33.51227,40.55611 16.72515,-49.88126 8.74442,51.87875 39.42504,-34.83586 -18.36649,49.30053 51.56102,-10.45622 -40.55611,33.51227 49.88126,16.72515 -51.87876,8.74442 34.83586,39.42504 -49.30053,-18.36649 z" points="467.72 433.18 434.2 392.63 417.48 442.51 408.74 390.63 369.31 425.46 387.68 376.16 336.12 386.62 376.67 353.11 326.79 336.38 378.67 327.64 343.83 288.21 393.13 306.58 382.68 255.02 416.19 295.57 432.92 245.69 441.66 297.57 481.08 262.74 462.72 312.04 514.28 301.58 473.72 335.09 523.6 351.82 471.72 360.56 506.56 399.99 457.26 381.62" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/nu.svg b/s/flag/nu.svg new file mode 100755 index 0000000..10d0dcb --- /dev/null +++ b/s/flag/nu.svg @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg2498" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3203"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs2500"> + <clipPath id="clipPath3533" clipPathUnits="userSpaceOnUse"> + <rect id="rect3535" fill-opacity="0.67" height="372.05" width="496.06" y="-0.000366" x="-.00023516"/> + </clipPath> + </defs> + <g id="flag" transform="matrix(1.2902 0 0 1.2902 .00030339 .00047220)" clip-path="url(#clipPath3533)"> + <rect id="rect1310" fill-rule="evenodd" height="248.1" width="499.55" y="-0.000366" x=".013254" stroke-width="1pt" fill="#fff"/> + <path id="path549" d="m0.013255 0.0003312-0.02081 18.621 119.21 61.253 44.86 1.3-164.05-81.174z" fill="#c00"/> + <path id="path551" d="m51.054 0.0003312 144.53 75.491v-75.491h-144.52z" fill="#006"/> + <path id="path552" fill="#c00" d="m214.86 0.0003312v96.372h-214.84v55.07h214.84v96.372h66.106v-96.372h214.84v-55.07h-214.84v-96.372h-66.106z"/> + <path id="path554" d="m300.24 0.0003312v71.132l141.39-70.581-141.39-0.55067z" fill="#006"/> + <path id="path555" d="m304.71 78.887 39.76-0.32 154.48-78.016-40.99 0.6682-153.25 77.668z" fill="#c00"/> + <path id="path700" d="m0.013255 167.5v52.775l99.159-52.22-99.159-0.56z" fill="#006"/> + <path id="path701" d="m381.85 169.68-41.336-0.321 155.82 77.58-1.025-17.749-113.46-59.51zm-343.12 78.57 146.11-76.71-38.38 0.26-146.45 76.34" fill="#c00"/> + <path id="path556" d="m497.9 21.795-118 58.515 116.43 0.4357v87.194h-99.159l98.242 53.231 1.442 27.079-52.474-0.627-143.62-70.505v71.132h-104.67v-71.132l-134.72 70.941-60.844 0.191v247.81h991.59v-495.63l-493.17-0.42967m-498.41 27.971-0.52326 51.467 104.39 1.308-103.86-52.775z" fill="#006"/> + <g id="g3304" fill-rule="evenodd" stroke-width="1pt" fill="#ffd900"> + <rect id="rect3302" height="496.06" width="496.06" y="-.000015260" x="496.06"/> + <rect id="rect3303" height="248.03" width="523.49" y="248.03" x="0"/> + </g> + <g id="g3330" fill-rule="evenodd" transform="translate(7.6357 -229.39)"> + <path id="path3329" d="m284.27 354.68c0 23.619-19.147 42.767-42.767 42.767-23.619 0-42.767-19.147-42.767-42.767s19.147-42.767 42.767-42.767c23.619 0 42.767 19.147 42.767 42.767z" transform="translate(-1.0063 -.000015259)" fill="#000067"/> + <polygon id="polygon3317" transform="matrix(.37676 0 0 .36496 39.671 225.36)" points="511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21" stroke-width="1pt" fill="#fff40d"/> + <polygon id="polygon3325" transform="matrix(.18672 0 0 .17086 285.51 292.33)" points="511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21" stroke-width="1pt" fill="#fff40d"/> + <polygon id="polygon3326" transform="matrix(.18672 0 0 .17086 140.83 377.87)" points="511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21" stroke-width="1pt" fill="#fff40d"/> + <polygon id="polygon3327" transform="matrix(.18672 0 0 .17086 140.83 210.82)" points="511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21" stroke-width="1pt" fill="#fff40d"/> + <polygon id="polygon3328" transform="matrix(.18672 0 0 .17086 -4.2973 292.33)" points="511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21" stroke-width="1pt" fill="#fff40d"/> + </g> + </g> +</svg> diff --git a/s/flag/nz.svg b/s/flag/nz.svg new file mode 100755 index 0000000..80f4c3b --- /dev/null +++ b/s/flag/nz.svg @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- + +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>New Zealand, Australia, United Kingdom, United States, +Bosnia and Herzegovina, Azerbaijan, Armenia, Bahamas, Belgium, Benin, +Bulgaria, Estonia, Finland, Gabon, Gambia, Germany, Greece, Greenland, +Guinea, Honduras, Israel, Jamaica, Jordan, and Romania Flags</dc:title> + <dc:rights><Agent> + <dc:title>Daniel McRae</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> + +</rdf:RDF> + +--> +<svg id="svg566" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3230"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt"> + <rect id="rect580" height="480" width="640" y="0" x=".0040666" fill="#00006a"/> + <g id="g560" transform="matrix(1.342 0 0 1.2608 -.0013058 -1.3763)"> + <path id="path572" d="m64.501 291.57 514.08 508.63h105.45l-502.98-508.39-116.55-0.24z" transform="matrix(.46237 0 0 .47458 -29.823 -137.28)" fill="#fff"/> + <path id="path577" d="m105.54 296.01 503.84 506.72 39.211-0.619-505.95-506.11h-37.1z" transform="matrix(-.46190 0 0 -.47635 317.39 383.47)" fill="#f00"/> + <path id="path581" d="m64.501 291.57 514.08 508.63h105.45l-502.98-508.39-116.55-0.24z" transform="matrix(-.46237 0 0 .47458 316.28 -137.28)" fill="#fff"/> + <path id="path579" d="m105.54 296.01 503.84 506.72 39.211 0.02-505.95-506.74h-37.1z" transform="matrix(-.46172 0 0 .47635 317.32 -139.91)" fill="#f00"/> + <rect id="rect570" height="241.38" width="45.831" y="1.0945" x="120.31" fill="#fff"/> + <rect id="rect569" height="48.276" width="286.44" y="97.646" x=".0049350" fill="#fff"/> + <rect id="rect574" height="241.38" width="25.78" y="1.0945" x="130.34" fill="#f00"/> + <rect id="rect575" height="24.138" width="286.44" y="109.72" x=".0049340" fill="#f00"/> + </g> + <g id="g8203" transform="matrix(.86562 0 0 .86562 58.74 83.943)"> + <g id="g591" transform="matrix(1.0266 0 0 1.0321 -.00099878 .00044559)"> + <polygon id="polygon589" fill="#fff" transform="translate(0 -1.9662)" d="m 519.06818,108.72801 -22.02531,-16.19344 -22.83816,15.02531 8.59468,-25.951362 -21.3473,-17.077307 27.33711,0.154617 9.64481,-25.579666 8.30058,26.04692 27.30812,1.268204 -22.20707,15.943265 z" points="519.07 108.73 497.04 92.535 474.2 107.56 482.8 81.608 461.45 64.531 488.79 64.686 498.43 39.106 506.74 65.153 534.04 66.421 511.84 82.364"/> + <polygon id="polygon590" fill="#f00" transform="matrix(.99883 .048364 -.048364 .99883 4.0356 -21.997)" d="m 511.20355,91.032508 -13.4698,-8.733191 -12.86977,9.595493 4.14336,-15.509251 -13.10283,-9.274702 16.03054,-0.852053 4.77177,-15.327575 5.76406,14.982654 16.05195,-0.19826 -12.46816,10.111842 z" points="511.2 91.032 497.73 82.299 484.86 91.895 489.01 76.386 475.9 67.111 491.94 66.259 496.71 50.931 502.47 65.914 518.52 65.716 506.06 75.828"/> + </g> + <g id="g594" transform="matrix(1.0266 0 0 1.0321 -86.795 144.08)"> + <polygon id="polygon595" fill="#fff" transform="translate(0 -1.9662)" d="m 519.06818,108.72801 -22.02531,-16.19344 -22.83816,15.02531 8.59468,-25.951362 -21.3473,-17.077307 27.33711,0.154617 9.64481,-25.579666 8.30058,26.04692 27.30812,1.268204 -22.20707,15.943265 z" points="519.07 108.73 497.04 92.535 474.2 107.56 482.8 81.608 461.45 64.531 488.79 64.686 498.43 39.106 506.74 65.153 534.04 66.421 511.84 82.364"/> + <polygon id="polygon596" fill="#f00" transform="matrix(.99883 .048364 -.048364 .99883 4.0356 -21.997)" d="m 511.20355,91.032508 -13.4698,-8.733191 -12.86977,9.595493 4.14336,-15.509251 -13.10283,-9.274702 16.03054,-0.852053 4.77177,-15.327575 5.76406,14.982654 16.05195,-0.19826 -12.46816,10.111842 z" points="511.2 91.032 497.73 82.299 484.86 91.895 489.01 76.386 475.9 67.111 491.94 66.259 496.71 50.931 502.47 65.914 518.52 65.716 506.06 75.828"/> + </g> + <g id="g597" transform="matrix(1.0266 0 0 1.0321 90.83 129.88)"> + <polygon id="polygon598" fill="#fff" transform="translate(0 -1.9662)" d="m 519.06818,108.72801 -22.02531,-16.19344 -22.83816,15.02531 8.59468,-25.951362 -21.3473,-17.077307 27.33711,0.154617 9.64481,-25.579666 8.30058,26.04692 27.30812,1.268204 -22.20707,15.943265 z" points="519.07 108.73 497.04 92.535 474.2 107.56 482.8 81.608 461.45 64.531 488.79 64.686 498.43 39.106 506.74 65.153 534.04 66.421 511.84 82.364"/> + <polygon id="polygon599" fill="#f00" transform="matrix(.99883 .048364 -.048364 .99883 4.0356 -21.997)" d="m 511.20355,91.032508 -13.4698,-8.733191 -12.86977,9.595493 4.14336,-15.509251 -13.10283,-9.274702 16.03054,-0.852053 4.77177,-15.327575 5.76406,14.982654 16.05195,-0.19826 -12.46816,10.111842 z" points="511.2 91.032 497.73 82.299 484.86 91.895 489.01 76.386 475.9 67.111 491.94 66.259 496.71 50.931 502.47 65.914 518.52 65.716 506.06 75.828"/> + </g> + <g id="g600" transform="matrix(1.0266 0 0 1.0321 -2.0195 334.84)"> + <polygon id="polygon601" fill="#fff" transform="translate(0 -1.9662)" d="m 519.06818,108.72801 -22.02531,-16.19344 -22.83816,15.02531 8.59468,-25.951362 -21.3473,-17.077307 27.33711,0.154617 9.64481,-25.579666 8.30058,26.04692 27.30812,1.268204 -22.20707,15.943265 z" points="519.07 108.73 497.04 92.535 474.2 107.56 482.8 81.608 461.45 64.531 488.79 64.686 498.43 39.106 506.74 65.153 534.04 66.421 511.84 82.364"/> + <polygon id="polygon602" fill="#f00" transform="matrix(.99883 .048364 -.048364 .99883 4.0356 -21.997)" d="m 511.20355,91.032508 -13.4698,-8.733191 -12.86977,9.595493 4.14336,-15.509251 -13.10283,-9.274702 16.03054,-0.852053 4.77177,-15.327575 5.76406,14.982654 16.05195,-0.19826 -12.46816,10.111842 z" points="511.2 91.032 497.73 82.299 484.86 91.895 489.01 76.386 475.9 67.111 491.94 66.259 496.71 50.931 502.47 65.914 518.52 65.716 506.06 75.828"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/om.svg b/s/flag/om.svg new file mode 100755 index 0000000..470b82e --- /dev/null +++ b/s/flag/om.svg @@ -0,0 +1,349 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3554"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath14935" clipPathUnits="userSpaceOnUse"> + <rect id="rect14937" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath14935)"> + <rect id="rect1526" fill-rule="evenodd" height="553.02" width="702.27" y="-21.609" x="-3.2985" stroke-width="1pt" fill="#ef2d29"/> + <rect id="rect1527" fill-rule="evenodd" height="207.56" width="535.76" y="317.33" x="174.57" stroke-width="1pt" fill="#009025"/> + <rect id="rect1528" fill-rule="evenodd" height="190.08" width="564.88" y="-35.415" x="174.57" stroke-width="1pt" fill="#fff"/> + <g id="g1212" stroke-width=".98327" transform="matrix(.19848 0 0 .17744 19.131 -14.073)" stroke="#ef2d28"> + <g id="g1137" fill-rule="evenodd" transform="translate(464.17 3.5432)" fill="#fff"> + <rect id="rect1138" rx="11.298" ry="11.851" height="85.039" width="138.19" y="467.72" x="17.717" stroke-width="1.0544pt"/> + <rect id="rect1139" rx="10.719" ry="10.864" height="77.953" width="131.1" y="471.26" x="21.26" stroke-width=".98327pt"/> + <path id="path1140" d="m64.966 396.07 9.723 0.443 0.4419 5.745 7.955 5.303 6.1873-6.629 7.5131 5.303-7.0711 5.746 1.7678 7.955 8.8385-0.442v10.607l-7.0707-0.442-3.5356 6.629 7.9551 7.513-6.1873 6.187-6.6292-6.629-9.723 2.652 0.442 9.723-10.607 0.884-1.3258-9.281-8.839-4.862-4.8614 6.629-7.5132-4.861 4.4195-7.513-5.3034-4.862h-7.5132l-0.4419-13.7 7.5131 0.884 5.3034-7.955-6.1872-6.187 7.9551-7.071 5.7453 5.745 9.7229-1.768 1.3258-5.746z" transform="matrix(.68108 0 0 .58520 37.972 260.74)" stroke-width=".98327pt"/> + <ellipse id="path1141" transform="matrix(.65819 0 0 .70224 38.845 209.62)" cx="68.944" rx="11.049" cy="426.78" ry="9.9439" stroke-width=".98327pt" d="m 79.992815,426.78302 c 0,5.49184 -4.946685,9.94386 -11.048731,9.94386 -6.102045,0 -11.048731,-4.45202 -11.048731,-9.94386 0,-5.49184 4.946686,-9.94386 11.048731,-9.94386 6.102046,0 11.048731,4.45202 11.048731,9.94386 z"/> + <g id="g1142" stroke-width=".98327pt"> + <path id="path1143" d="m38.976 474.8-10.63 10.63"/> + <path id="path1144" d="m38.976 474.8-10.63 10.63" transform="translate(7.0866 .000045776)"/> + <path id="path1145" d="m38.976 474.8-10.63 10.63" transform="translate(14.173 .00012207)"/> + <path id="path1146" d="m38.976 474.8-10.63 10.63" transform="translate(21.26 .00012207)"/> + <path id="path1147" d="m38.976 474.8-10.63 10.63" transform="translate(28.346 .000045776)"/> + <path id="path1148" d="m38.976 474.8-10.63 10.63" transform="translate(35.433 .00027466)"/> + <path id="path1149" d="m38.976 474.8-10.63 10.63" transform="translate(42.52 .00012207)"/> + <path id="path1150" d="m38.976 474.8-10.63 10.63" transform="translate(49.606 .00019836)"/> + <path id="path1151" d="m38.976 474.8-10.63 10.63" transform="translate(56.693 .00012207)"/> + <path id="path1152" d="m38.976 474.8-10.63 10.63" transform="translate(63.779 .00027466)"/> + <path id="path1153" d="m38.976 474.8-10.63 10.63" transform="translate(70.866 .00035095)"/> + <path id="path1154" d="m38.976 474.8-10.63 10.63" transform="translate(77.953 .00042725)"/> + <path id="path1155" d="m38.976 474.8-10.63 10.63" transform="translate(49.606 .00019836)"/> + <path id="path1156" d="m38.976 474.8-10.63 10.63" transform="translate(85.039 .00012207)"/> + <path id="path1157" d="m38.976 474.8-10.63 10.63" transform="translate(92.126 .00019836)"/> + <path id="path1158" d="m38.976 474.8-10.63 10.63" transform="translate(99.213 .00027466)"/> + <path id="path1159" d="m38.976 474.8-10.63 10.63" transform="translate(106.3 .000045776)"/> + <path id="path1160" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 173.62 -.000030518)"/> + <path id="path1161" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 166.54 .000045776)"/> + <path id="path1162" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 159.45 .00012207)"/> + <path id="path1163" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 152.36 .00012207)"/> + <path id="path1164" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 145.28 .000045776)"/> + <path id="path1165" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 138.19 .00027466)"/> + <path id="path1166" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 131.1 .00012207)"/> + <path id="path1167" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 124.02 .00019836)"/> + <path id="path1168" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 116.93 .00012207)"/> + <path id="path1169" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 109.84 .00027466)"/> + <path id="path1170" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 102.76 .00035095)"/> + <path id="path1171" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 95.669 .00042725)"/> + <path id="path1172" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 124.02 .00019836)"/> + <path id="path1173" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 88.583 .00012207)"/> + <path id="path1174" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 81.496 .00019836)"/> + <path id="path1175" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 74.41 .00027466)"/> + <path id="path1176" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 67.323 .000045776)"/> + </g> + <g id="g1177" transform="translate(-.000035763 60.236)" stroke-width=".98327pt"> + <path id="path1178" d="m38.976 474.8-10.63 10.63"/> + <path id="path1179" d="m38.976 474.8-10.63 10.63" transform="translate(7.0866 .000045776)"/> + <path id="path1180" d="m38.976 474.8-10.63 10.63" transform="translate(14.173 .00012207)"/> + <path id="path1181" d="m38.976 474.8-10.63 10.63" transform="translate(21.26 .00012207)"/> + <path id="path1182" d="m38.976 474.8-10.63 10.63" transform="translate(28.346 .000045776)"/> + <path id="path1183" d="m38.976 474.8-10.63 10.63" transform="translate(35.433 .00027466)"/> + <path id="path1184" d="m38.976 474.8-10.63 10.63" transform="translate(42.52 .00012207)"/> + <path id="path1185" d="m38.976 474.8-10.63 10.63" transform="translate(49.606 .00019836)"/> + <path id="path1186" d="m38.976 474.8-10.63 10.63" transform="translate(56.693 .00012207)"/> + <path id="path1187" d="m38.976 474.8-10.63 10.63" transform="translate(63.779 .00027466)"/> + <path id="path1188" d="m38.976 474.8-10.63 10.63" transform="translate(70.866 .00035095)"/> + <path id="path1189" d="m38.976 474.8-10.63 10.63" transform="translate(77.953 .00042725)"/> + <path id="path1190" d="m38.976 474.8-10.63 10.63" transform="translate(49.606 .00019836)"/> + <path id="path1191" d="m38.976 474.8-10.63 10.63" transform="translate(85.039 .00012207)"/> + <path id="path1192" d="m38.976 474.8-10.63 10.63" transform="translate(92.126 .00019836)"/> + <path id="path1193" d="m38.976 474.8-10.63 10.63" transform="translate(99.213 .00027466)"/> + <path id="path1194" d="m38.976 474.8-10.63 10.63" transform="translate(106.3 .000045776)"/> + <path id="path1195" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 173.62 -.000030518)"/> + <path id="path1196" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 166.54 .000045776)"/> + <path id="path1197" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 159.45 .00012207)"/> + <path id="path1198" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 152.36 .00012207)"/> + <path id="path1199" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 145.28 .000045776)"/> + <path id="path1200" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 138.19 .00027466)"/> + <path id="path1201" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 131.1 .00012207)"/> + <path id="path1202" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 124.02 .00019836)"/> + <path id="path1203" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 116.93 .00012207)"/> + <path id="path1204" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 109.84 .00027466)"/> + <path id="path1205" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 102.76 .00035095)"/> + <path id="path1206" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 95.669 .00042725)"/> + <path id="path1207" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 124.02 .00019836)"/> + <path id="path1208" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 88.583 .00012207)"/> + <path id="path1209" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 81.496 .00019836)"/> + <path id="path1210" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 74.41 .00027466)"/> + <path id="path1211" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 67.323 .000045776)"/> + </g> + </g> + <g id="g1062" fill-rule="evenodd" fill="#fff"> + <rect id="rect1061" rx="11.298" ry="11.851" height="85.039" width="138.19" y="467.72" x="17.717" stroke-width="1.0544pt"/> + <rect id="rect936" rx="10.719" ry="10.864" height="77.953" width="131.1" y="471.26" x="21.26" stroke-width=".98327pt"/> + <path id="path934" d="m64.966 396.07 9.723 0.443 0.4419 5.745 7.955 5.303 6.1873-6.629 7.5131 5.303-7.0711 5.746 1.7678 7.955 8.8385-0.442v10.607l-7.0707-0.442-3.5356 6.629 7.9551 7.513-6.1873 6.187-6.6292-6.629-9.723 2.652 0.442 9.723-10.607 0.884-1.3258-9.281-8.839-4.862-4.8614 6.629-7.5132-4.861 4.4195-7.513-5.3034-4.862h-7.5132l-0.4419-13.7 7.5131 0.884 5.3034-7.955-6.1872-6.187 7.9551-7.071 5.7453 5.745 9.7229-1.768 1.3258-5.746z" transform="matrix(.68108 0 0 .58520 37.972 260.74)" stroke-width=".98327pt"/> + <ellipse id="path935" transform="matrix(.65819 0 0 .70224 38.845 209.62)" cx="68.944" rx="11.049" cy="426.78" ry="9.9439" stroke-width=".98327pt" d="m 79.992815,426.78302 c 0,5.49184 -4.946685,9.94386 -11.048731,9.94386 -6.102045,0 -11.048731,-4.45202 -11.048731,-9.94386 0,-5.49184 4.946686,-9.94386 11.048731,-9.94386 6.102046,0 11.048731,4.45202 11.048731,9.94386 z"/> + <g id="g991" stroke-width=".98327pt"> + <path id="path938" d="m38.976 474.8-10.63 10.63"/> + <path id="path939" d="m38.976 474.8-10.63 10.63" transform="translate(7.0866 .000045776)"/> + <path id="path940" d="m38.976 474.8-10.63 10.63" transform="translate(14.173 .00012207)"/> + <path id="path941" d="m38.976 474.8-10.63 10.63" transform="translate(21.26 .00012207)"/> + <path id="path942" d="m38.976 474.8-10.63 10.63" transform="translate(28.346 .000045776)"/> + <path id="path943" d="m38.976 474.8-10.63 10.63" transform="translate(35.433 .00027466)"/> + <path id="path950" d="m38.976 474.8-10.63 10.63" transform="translate(42.52 .00012207)"/> + <path id="path951" d="m38.976 474.8-10.63 10.63" transform="translate(49.606 .00019836)"/> + <path id="path952" d="m38.976 474.8-10.63 10.63" transform="translate(56.693 .00012207)"/> + <path id="path953" d="m38.976 474.8-10.63 10.63" transform="translate(63.779 .00027466)"/> + <path id="path954" d="m38.976 474.8-10.63 10.63" transform="translate(70.866 .00035095)"/> + <path id="path955" d="m38.976 474.8-10.63 10.63" transform="translate(77.953 .00042725)"/> + <path id="path957" d="m38.976 474.8-10.63 10.63" transform="translate(49.606 .00019836)"/> + <path id="path962" d="m38.976 474.8-10.63 10.63" transform="translate(85.039 .00012207)"/> + <path id="path963" d="m38.976 474.8-10.63 10.63" transform="translate(92.126 .00019836)"/> + <path id="path964" d="m38.976 474.8-10.63 10.63" transform="translate(99.213 .00027466)"/> + <path id="path965" d="m38.976 474.8-10.63 10.63" transform="translate(106.3 .000045776)"/> + <path id="path974" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 173.62 -.000030518)"/> + <path id="path975" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 166.54 .000045776)"/> + <path id="path976" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 159.45 .00012207)"/> + <path id="path977" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 152.36 .00012207)"/> + <path id="path978" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 145.28 .000045776)"/> + <path id="path979" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 138.19 .00027466)"/> + <path id="path980" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 131.1 .00012207)"/> + <path id="path981" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 124.02 .00019836)"/> + <path id="path982" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 116.93 .00012207)"/> + <path id="path983" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 109.84 .00027466)"/> + <path id="path984" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 102.76 .00035095)"/> + <path id="path985" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 95.669 .00042725)"/> + <path id="path986" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 124.02 .00019836)"/> + <path id="path987" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 88.583 .00012207)"/> + <path id="path988" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 81.496 .00019836)"/> + <path id="path989" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 74.41 .00027466)"/> + <path id="path990" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 67.323 .000045776)"/> + </g> + <g id="g1026" transform="translate(-.000035763 60.236)" stroke-width=".98327pt"> + <path id="path1027" d="m38.976 474.8-10.63 10.63"/> + <path id="path1028" d="m38.976 474.8-10.63 10.63" transform="translate(7.0866 .000045776)"/> + <path id="path1029" d="m38.976 474.8-10.63 10.63" transform="translate(14.173 .00012207)"/> + <path id="path1030" d="m38.976 474.8-10.63 10.63" transform="translate(21.26 .00012207)"/> + <path id="path1031" d="m38.976 474.8-10.63 10.63" transform="translate(28.346 .000045776)"/> + <path id="path1032" d="m38.976 474.8-10.63 10.63" transform="translate(35.433 .00027466)"/> + <path id="path1033" d="m38.976 474.8-10.63 10.63" transform="translate(42.52 .00012207)"/> + <path id="path1034" d="m38.976 474.8-10.63 10.63" transform="translate(49.606 .00019836)"/> + <path id="path1035" d="m38.976 474.8-10.63 10.63" transform="translate(56.693 .00012207)"/> + <path id="path1036" d="m38.976 474.8-10.63 10.63" transform="translate(63.779 .00027466)"/> + <path id="path1037" d="m38.976 474.8-10.63 10.63" transform="translate(70.866 .00035095)"/> + <path id="path1038" d="m38.976 474.8-10.63 10.63" transform="translate(77.953 .00042725)"/> + <path id="path1039" d="m38.976 474.8-10.63 10.63" transform="translate(49.606 .00019836)"/> + <path id="path1040" d="m38.976 474.8-10.63 10.63" transform="translate(85.039 .00012207)"/> + <path id="path1041" d="m38.976 474.8-10.63 10.63" transform="translate(92.126 .00019836)"/> + <path id="path1042" d="m38.976 474.8-10.63 10.63" transform="translate(99.213 .00027466)"/> + <path id="path1043" d="m38.976 474.8-10.63 10.63" transform="translate(106.3 .000045776)"/> + <path id="path1044" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 173.62 -.000030518)"/> + <path id="path1045" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 166.54 .000045776)"/> + <path id="path1046" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 159.45 .00012207)"/> + <path id="path1047" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 152.36 .00012207)"/> + <path id="path1048" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 145.28 .000045776)"/> + <path id="path1049" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 138.19 .00027466)"/> + <path id="path1050" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 131.1 .00012207)"/> + <path id="path1051" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 124.02 .00019836)"/> + <path id="path1052" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 116.93 .00012207)"/> + <path id="path1053" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 109.84 .00027466)"/> + <path id="path1054" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 102.76 .00035095)"/> + <path id="path1055" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 95.669 .00042725)"/> + <path id="path1056" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 124.02 .00019836)"/> + <path id="path1057" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 88.583 .00012207)"/> + <path id="path1058" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 81.496 .00019836)"/> + <path id="path1059" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 74.41 .00027466)"/> + <path id="path1060" d="m38.976 474.8-10.63 10.63" transform="matrix(-1 0 0 1 67.323 .000045776)"/> + </g> + </g> + <g id="g910" transform="matrix(-1 0 0 1 635.41 3.5356)"> + <path id="path911" d="m538.58 531.5c1.717 166.56 24.803 201.97 3.543 201.97s-31.89-92.07-31.89-205.51 14.173-205.51 35.433-205.51-8.913 31.909-7.086 209.06z" fill-rule="evenodd" transform="matrix(1.6191 -.71484 1.0156 1.1396 -1010.9 421.76)" stroke-width=".98327pt" fill="#fff"/> + <path id="path912" d="m545.67 779.53-60.236 17.716c56.693 60.236 120.47 85.039 138.19 74.409 17.717-10.629-31.89-35.433-77.953-92.125z" fill-rule="evenodd" stroke-width="1.2291" fill="#fff"/> + <path id="path913" d="m547.27 786.9-50.926 14.74c56.693 60.236 112.77 77.385 127.28 70.015 14.591-7.37-30.287-28.063-76.35-84.755z" fill-rule="evenodd" transform="matrix(.97408 0 0 .96154 12.584 29.978)" stroke-width="1.27" fill="#fff"/> + <path id="path914" d="m353.13 634.23c0.187 1.273 0.748 7.068 1.25 9.375 0 3.186 0.288 5.632 0.625 8.125 0.796 2.177 0.661 4.198 3.125 5.001 1.694 2.631 2.76 3.313 5 4.375 1.527 1.323 3.84 2.642 6.25 3.75 2.499 1.071 4.771 1.218 7.5 0.625 2.19-1.526 3.804-3.1 5.625-4.375 0.429-1.973 0.822-4.903 1.25-6.875-0.674 2.024-1.147 5.265-1.25 8.125 0.24 3.12 1.265 4.481 2.5 6.875" transform="matrix(.70423 0 0 .69959 111.95 190.53)" stroke-width="1.7511" fill="none"/> + <path id="path915" d="m389.38 681.73c0.208-0.208 0.416-0.417 0.625-0.625-1.484 1.484-0.878 0.776 2.5-1.25 2.426-1.246 5.015-1.908 8.125-2.5h8.75c3.405 0 5.696 0.511 8.125 1.25 1.762 1.762 4.393 2.763 6.25 4.375 1.905 1.295 2.722 2.829 3.75 5 1.701 1.701 2.803 4.326 4.375 5.625 0.704 2.871 2.141 2.773 3.125 5-2.948 0.227-5.311 0.631-6.875 2.5-2.597 1.344 2.179-1.317 3.125-2.5 2.046-0.618 2.576-1.25 5.625-1.25 2.85-0.904 4.579 0.737 7.5 1.25 1.705 0.987 2.178 1.25 4.376 1.25" transform="matrix(.70423 0 0 .69959 102.7 186.59)" stroke-width="1.7511" fill="none"/> + <path id="path916" d="m438.13 724.86c1.273 0.075 7.083 1.146 9.376 0 2.552-0.696 4.068-2.04 5.625-4.375 0.767-1.689 0 2.998 0 5 0.283 3.68 1.366 3.714 3.125 6.25 1.814 1.163 3.725 2.8 5.625 3.75 1.576 1.366 3.513 2.28 5.625 3.125 1.896 0.898 4.111 1.813 5.625 3.125 2.09 1.493 1.888 3.278 3.125 5.625-0.235 3.057-0.733 4.79-2.5 6.25-0.738 2.113-2.395 4.205-3.75 5.625-1.545 2.87-3.256 4.224 0.625 5 2.132 0.914 3.327 0.197 5.625 0" transform="matrix(.70423 0 0 .69959 92.14 178.29)" stroke-width="1.7511" fill="none"/> + <path id="path917" d="m480.63 771.73c1.536-0.391 6.983-2.213 9.375-3.125h8.75c3.391 0.261 4.037 1.256 6.876 2.5 1.832 1.871 3.089 3.162 5.625 4.376 1.341 1.733 3.953 4.677 5 6.875 0.745 2.133 1.25 5.018 1.25 8.125-0.044 3.648-1.002 4.271-1.25 7.5-0.701 2.684-1.839 5.143-3.75 7.5-0.265 0.793-0.457 0.986-1.25 1.25" transform="matrix(.70423 0 0 .69959 89.94 176.1)" stroke-width="1.7511" fill="none"/> + <path id="path918" d="m538.13 817.98c0.374 0 1.201 2.018 2.5 3.75 2.828 2.906 3.192 3.125 7.5 3.125 3.884-0.143 3.522-1.532 6.25-2.5 1.289-2.008 2.896-3.6 4.375-6.25 1.006-1.634 1.89-4.129 3.125-5.625 1.141-1.854 2.563-3.254 3.75-5 1.172-0.502 1.618-0.984 3.126-1.25-3.6 0.578-3.915 1.867-6.251 3.75-1.094 1.779-2.181 3.633-3.125 5.625-0.361 2.673-1.21 4.779-1.25 8.125 0 3.457 0.017 5.872 1.25 8.75 1.473 1.545 2.563 3.143 4.375 4.376 1.439 1.405 3.244 3.336 4.376 5 1.96 1.206 3.385 2.189 5.625 3.75 1.884 1.102 3.915 2.234 6.875 2.5 3.67-0.262 4.755-1.297 7.5-2.5 2.329-1.713 4.163-2.838 6.25-4.375 1.629-1.141 3.288-3.403 4.375-5 3.382-0.846 5.529-0.508 7.5 1.25 1.718 1.167 3.207 2.657 4.375 4.375 1.02 0.51 2.73 1.99 3.75 2.5" transform="matrix(0.5 0 0 .55224 180.32 294.48)" stroke-width="2.339" fill="none"/> + <path id="path919" d="m503.76 836.11c-0.802 0.334-3.717 2.367-5 3.125-0.8 2.631-2.077 4.069-2.5 6.875-0.677 2.709-0.625 5.692-0.625 8.75 0.685 3.194 2.015 5.557 3.125 8.125 1.974 1.342 2.967 2.33 5.625 3.75 2.494 0.337 4.94 0.625 8.126 0.625 1.904 0.635 5.615 0.942 7.5 0 2.783-0.376 4.854-1.507 6.875-2.5 2.306-1.307 3.728-2.542 6.25-3.75 1.225-1.801 3.13-3.46 5-5.625 1.556-2.105 2.7-3.286 3.75-5.625-0.924 2.669-2.327 4.999-3.125 7.5-1.422 2.661-2.248 3.604-2.5 6.875-0.871 2.613-0.625 5.76-0.625 8.75 0.274 2.031 0.418 5.837 1.25 7.5v1.875" transform="matrix(.62163 0 0 .68918 170.66 184.25)" stroke-width="1.8778" fill="none"/> + <path id="path920" d="m541.26 799.23v0.625c0-1.687 0.041-0.83-0.625 2.5-1.179 1.462-3.944 1.868-6.25 1.25-2.022-1.67-1.96-2.935-5.625-3.75-3.542 0.253-4.892 1.279-6.875 2.5-2.354 1.177-3.438 1.771-5 4.375-0.776 2.12-1.209 3.555 1.25 4.375 1.954 1.386 4.277 2.149 6.875 2.5 2.887 0 4.968-0.339 6.25 1.25 1.983 2.055 1.875 3.277 1.875 6.875 0.667 1.112 0.799 4.394 1.25 5.625 1.736 0.823 2.755 1.25 5.625 1.25 0.674-1.931 1.423-5.419 1.875-7.5 0.489-2.248 0.64-5.379 1.875-6.875 1.168-1.717 2.658-3.207 4.375-4.375 0.766-1.073 2.223-1.965 3.75-2.5-2.452 1.251-2.801 2.603-3.125 5.625 2.155 1.078 2.731 1.833 6.25 1.875 3.459-0.291 4.295-1.169 5.625-3.125 0.242 3.136 1.243 4.186 1.875 6.875 1.286 1.891 1.832 3.828 3.125 6.25-0.551 3.012-1.737 3.163-1.875 6.875-0.811 2.435-0.723 4.783-2.5 6.251-0.792 0.968-1.384 1.158-3.125 1.25 3.618 0 5.727-0.391 8.125-1.875 1.854-1.141 3.255-2.563 5.001-3.75 2.212-1.603 4.947-3.085 7.5-3.751 2.887 0 4.968-0.339 6.25 1.25 1.77 1.265 2.959 3.447 3.75 6.251 0.579 3.244 0.8 5.404-0.625 7.5-1.057 2.408-1.297 3.346 0 6.25 1.452 2.033 3.617 2.272 6.875 3.125 2.379-0.128 4.668-0.671 6.25-1.25" stroke-width="1.2291" fill="none"/> + </g> + <g id="g921" fill-rule="evenodd" stroke-width=".98327pt" transform="matrix(-1 0 0 1 635.41 3.5356)"> + <path id="path922" d="m531.5 359.64c0-165.27 7.937-299.41 17.717-299.41 9.779 0 17.716 134.13 17.716 299.41h-35.433z" transform="matrix(1.4216 -.73423 .46161 .89375 -716.84 541.07)" fill="#fff"/> + <path id="path923" d="m531.5 359.64c0-165.27 7.937-299.41 17.717-299.41 9.779 0 17.716 134.13 17.716 299.41" transform="matrix(1.1373 -.58739 .44532 .86221 -554.83 471.77)" fill="#fff"/> + <path id="path924" d="m563.39 301.18c0.189 18.908 0 40.188 0 60.236h-28.347c0-20.048-0.189-41.328 0-60.236h28.347z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <path id="path925" d="m559.84 304.72c0.189 18.908 0 33.102 0 53.15h-21.26c0-20.048-0.189-34.242 0-53.15h21.26z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <rect id="rect926" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" height="38.976" width="14.173" y="311.81" x="542.13" fill="#fff"/> + <path id="path927" d="m542.13 311.81 14.173 38.976" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <path id="path928" d="m542.13 350.79 14.173-38.976" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <path id="path929" d="m542.13 113.39h14.173" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <ellipse id="path930" fill="#ef0000" transform="matrix(1.6046 .45375 -.36215 1.5787 -734.9 -170.85)" cx="545.67" rx="3.5433" cy="92.126" ry="3.5433" d="m 549.21262,92.125977 c 0,1.956921 -1.5864,3.54332 -3.54331,3.54332 -1.95691,0 -3.5433,-1.586399 -3.5433,-3.54332 0,-1.956922 1.58639,-3.54332 3.5433,-3.54332 1.95691,0 3.54331,1.586398 3.54331,3.54332 z"/> + </g> + <g id="g899"> + <path id="path835" d="m538.58 531.5c1.717 166.56 24.803 201.97 3.543 201.97s-31.89-92.07-31.89-205.51 14.173-205.51 35.433-205.51-8.913 31.909-7.086 209.06z" fill-rule="evenodd" transform="matrix(1.6191 -.71484 1.0156 1.1396 -1010.9 421.76)" stroke-width=".98327pt" fill="#fff"/> + <path id="path842" d="m545.67 779.53-60.236 17.716c56.693 60.236 120.47 85.039 138.19 74.409 17.717-10.629-31.89-35.433-77.953-92.125z" fill-rule="evenodd" stroke-width="1.2291" fill="#fff"/> + <path id="path843" d="m547.27 786.9-50.926 14.74c56.693 60.236 112.77 77.385 127.28 70.015 14.591-7.37-30.287-28.063-76.35-84.755z" fill-rule="evenodd" transform="matrix(.97408 0 0 .96154 12.584 29.978)" stroke-width="1.27" fill="#fff"/> + <path id="path871" d="m353.13 634.23c0.187 1.273 0.748 7.068 1.25 9.375 0 3.186 0.288 5.632 0.625 8.125 0.796 2.177 0.661 4.198 3.125 5.001 1.694 2.631 2.76 3.313 5 4.375 1.527 1.323 3.84 2.642 6.25 3.75 2.499 1.071 4.771 1.218 7.5 0.625 2.19-1.526 3.804-3.1 5.625-4.375 0.429-1.973 0.822-4.903 1.25-6.875-0.674 2.024-1.147 5.265-1.25 8.125 0.24 3.12 1.265 4.481 2.5 6.875" transform="matrix(.70423 0 0 .69959 111.95 190.53)" stroke-width="1.7511" fill="none"/> + <path id="path872" d="m389.38 681.73c0.208-0.208 0.416-0.417 0.625-0.625-1.484 1.484-0.878 0.776 2.5-1.25 2.426-1.246 5.015-1.908 8.125-2.5h8.75c3.405 0 5.696 0.511 8.125 1.25 1.762 1.762 4.393 2.763 6.25 4.375 1.905 1.295 2.722 2.829 3.75 5 1.701 1.701 2.803 4.326 4.375 5.625 0.704 2.871 2.141 2.773 3.125 5-2.948 0.227-5.311 0.631-6.875 2.5-2.597 1.344 2.179-1.317 3.125-2.5 2.046-0.618 2.576-1.25 5.625-1.25 2.85-0.904 4.579 0.737 7.5 1.25 1.705 0.987 2.178 1.25 4.376 1.25" transform="matrix(.70423 0 0 .69959 102.7 186.59)" stroke-width="1.7511" fill="none"/> + <path id="path873" d="m438.13 724.86c1.273 0.075 7.083 1.146 9.376 0 2.552-0.696 4.068-2.04 5.625-4.375 0.767-1.689 0 2.998 0 5 0.283 3.68 1.366 3.714 3.125 6.25 1.814 1.163 3.725 2.8 5.625 3.75 1.576 1.366 3.513 2.28 5.625 3.125 1.896 0.898 4.111 1.813 5.625 3.125 2.09 1.493 1.888 3.278 3.125 5.625-0.235 3.057-0.733 4.79-2.5 6.25-0.738 2.113-2.395 4.205-3.75 5.625-1.545 2.87-3.256 4.224 0.625 5 2.132 0.914 3.327 0.197 5.625 0" transform="matrix(.70423 0 0 .69959 92.14 178.29)" stroke-width="1.7511" fill="none"/> + <path id="path874" d="m480.63 771.73c1.536-0.391 6.983-2.213 9.375-3.125h8.75c3.391 0.261 4.037 1.256 6.876 2.5 1.832 1.871 3.089 3.162 5.625 4.376 1.341 1.733 3.953 4.677 5 6.875 0.745 2.133 1.25 5.018 1.25 8.125-0.044 3.648-1.002 4.271-1.25 7.5-0.701 2.684-1.839 5.143-3.75 7.5-0.265 0.793-0.457 0.986-1.25 1.25" transform="matrix(.70423 0 0 .69959 89.94 176.1)" stroke-width="1.7511" fill="none"/> + <path id="path877" d="m538.13 817.98c0.374 0 1.201 2.018 2.5 3.75 2.828 2.906 3.192 3.125 7.5 3.125 3.884-0.143 3.522-1.532 6.25-2.5 1.289-2.008 2.896-3.6 4.375-6.25 1.006-1.634 1.89-4.129 3.125-5.625 1.141-1.854 2.563-3.254 3.75-5 1.172-0.502 1.618-0.984 3.126-1.25-3.6 0.578-3.915 1.867-6.251 3.75-1.094 1.779-2.181 3.633-3.125 5.625-0.361 2.673-1.21 4.779-1.25 8.125 0 3.457 0.017 5.872 1.25 8.75 1.473 1.545 2.563 3.143 4.375 4.376 1.439 1.405 3.244 3.336 4.376 5 1.96 1.206 3.385 2.189 5.625 3.75 1.884 1.102 3.915 2.234 6.875 2.5 3.67-0.262 4.755-1.297 7.5-2.5 2.329-1.713 4.163-2.838 6.25-4.375 1.629-1.141 3.288-3.403 4.375-5 3.382-0.846 5.529-0.508 7.5 1.25 1.718 1.167 3.207 2.657 4.375 4.375 1.02 0.51 2.73 1.99 3.75 2.5" transform="matrix(0.5 0 0 .55224 180.32 294.48)" stroke-width="2.339" fill="none"/> + <path id="path878" d="m503.76 836.11c-0.802 0.334-3.717 2.367-5 3.125-0.8 2.631-2.077 4.069-2.5 6.875-0.677 2.709-0.625 5.692-0.625 8.75 0.685 3.194 2.015 5.557 3.125 8.125 1.974 1.342 2.967 2.33 5.625 3.75 2.494 0.337 4.94 0.625 8.126 0.625 1.904 0.635 5.615 0.942 7.5 0 2.783-0.376 4.854-1.507 6.875-2.5 2.306-1.307 3.728-2.542 6.25-3.75 1.225-1.801 3.13-3.46 5-5.625 1.556-2.105 2.7-3.286 3.75-5.625-0.924 2.669-2.327 4.999-3.125 7.5-1.422 2.661-2.248 3.604-2.5 6.875-0.871 2.613-0.625 5.76-0.625 8.75 0.274 2.031 0.418 5.837 1.25 7.5v1.875" transform="matrix(.62163 0 0 .68918 170.66 184.25)" stroke-width="1.8778" fill="none"/> + <path id="path879" d="m541.26 799.23v0.625c0-1.687 0.041-0.83-0.625 2.5-1.179 1.462-3.944 1.868-6.25 1.25-2.022-1.67-1.96-2.935-5.625-3.75-3.542 0.253-4.892 1.279-6.875 2.5-2.354 1.177-3.438 1.771-5 4.375-0.776 2.12-1.209 3.555 1.25 4.375 1.954 1.386 4.277 2.149 6.875 2.5 2.887 0 4.968-0.339 6.25 1.25 1.983 2.055 1.875 3.277 1.875 6.875 0.667 1.112 0.799 4.394 1.25 5.625 1.736 0.823 2.755 1.25 5.625 1.25 0.674-1.931 1.423-5.419 1.875-7.5 0.489-2.248 0.64-5.379 1.875-6.875 1.168-1.717 2.658-3.207 4.375-4.375 0.766-1.073 2.223-1.965 3.75-2.5-2.452 1.251-2.801 2.603-3.125 5.625 2.155 1.078 2.731 1.833 6.25 1.875 3.459-0.291 4.295-1.169 5.625-3.125 0.242 3.136 1.243 4.186 1.875 6.875 1.286 1.891 1.832 3.828 3.125 6.25-0.551 3.012-1.737 3.163-1.875 6.875-0.811 2.435-0.723 4.783-2.5 6.251-0.792 0.968-1.384 1.158-3.125 1.25 3.618 0 5.727-0.391 8.125-1.875 1.854-1.141 3.255-2.563 5.001-3.75 2.212-1.603 4.947-3.085 7.5-3.751 2.887 0 4.968-0.339 6.25 1.25 1.77 1.265 2.959 3.447 3.75 6.251 0.579 3.244 0.8 5.404-0.625 7.5-1.057 2.408-1.297 3.346 0 6.25 1.452 2.033 3.617 2.272 6.875 3.125 2.379-0.128 4.668-0.671 6.25-1.25" stroke-width="1.2291" fill="none"/> + </g> + <g id="g889" stroke-width=".98327pt" fill-rule="evenodd"> + <path id="path847" d="m531.5 359.64c0-165.27 7.937-299.41 17.717-299.41 9.779 0 17.716 134.13 17.716 299.41h-35.433z" transform="matrix(1.4216 -.73423 .46161 .89375 -716.84 541.07)" fill="#fff"/> + <path id="path856" d="m531.5 359.64c0-165.27 7.937-299.41 17.717-299.41 9.779 0 17.716 134.13 17.716 299.41" transform="matrix(1.1373 -.58739 .44532 .86221 -554.83 471.77)" fill="#fff"/> + <path id="path850" d="m563.39 301.18c0.189 18.908 0 40.188 0 60.236h-28.347c0-20.048-0.189-41.328 0-60.236h28.347z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <path id="path852" d="m559.84 304.72c0.189 18.908 0 33.102 0 53.15h-21.26c0-20.048-0.189-34.242 0-53.15h21.26z" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <rect id="rect853" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" height="38.976" width="14.173" y="311.81" x="542.13" fill="#fff"/> + <path id="path854" d="m542.13 311.81 14.173 38.976" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <path id="path855" d="m542.13 350.79 14.173-38.976" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <path id="path857" d="m542.13 113.39h14.173" transform="matrix(1.4216 -.73423 .45889 .88849 -716.67 541.39)" fill="#fff"/> + <ellipse id="path858" fill="#ef0000" transform="matrix(1.6046 .45375 -.36215 1.5787 -734.9 -170.85)" cx="545.67" rx="3.5433" cy="92.126" ry="3.5433" d="m 549.21262,92.125977 c 0,1.956921 -1.5864,3.54332 -3.54331,3.54332 -1.95691,0 -3.5433,-1.586399 -3.5433,-3.54332 0,-1.956922 1.58639,-3.54332 3.5433,-3.54332 1.95691,0 3.54331,1.586398 3.54331,3.54332 z"/> + </g> + <g id="g694" fill-rule="evenodd" fill="#fff"> + <path id="path552" d="m305.61 396.85c0 124.02 0.491 170.76-5.62 177.17-5.79 6.857-167.12 0-167.12 35.433s132.87 70.867 172.74 70.866c53.149 0 79.723-35.433 79.723-106.3v-177.17h-79.723z" transform="matrix(1.3333 0 0 1 -141.74 .00042725)" stroke-width=".98327pt"/> + <path id="path564" d="m265.75 396.85v17.717c35.433 5.906 70.866 5.906 106.3 0v-17.717c-35.433 5.906-70.866 5.906-106.3 0z" transform="matrix(1 0 0 .99999 .000023842 35.437)" stroke-width=".98327pt"/> + <path id="path562" d="m265.75 396.85v17.717c35.433 5.906 70.866 5.906 106.3 0v-17.717c-35.433 5.906-70.866 5.906-106.3 0z" transform="matrix(1 0 0 .99999 .00020981 .0040894)" stroke-width=".98327pt"/> + <path id="path563" d="m265.75 396.85v17.717c35.433 5.906 70.866 5.906 106.3 0v-17.717c-35.433 5.906-70.866 5.906-106.3 0z" transform="matrix(1 0 0 .99999 .00020981 17.721)" stroke-width=".98327pt"/> + <path id="path565" d="m265.75 396.85v17.717c35.433 5.906 70.866 5.906 106.3 0v-17.717c-35.433 5.906-70.866 5.906-106.3 0z" transform="matrix(1 0 0 .99999 .000019073 53.154)" stroke-width=".98327pt"/> + <ellipse id="path570" transform="matrix(.54545 0 0 .14383 130.46 394.32)" cx="256.89" rx="8.8583" cy="210.83" ry="26.575" stroke-width="4.3882" d="m 265.74803,210.82677 c 0,14.67684 -3.96598,26.57478 -8.85826,26.57478 -4.89228,0 -8.85826,-11.89794 -8.85826,-26.57478 0,-14.67685 3.96598,-26.57479 8.85826,-26.57479 4.89228,0 8.85826,11.89794 8.85826,26.57479 z"/> + <ellipse id="path571" transform="matrix(.54545 0 0 .14383 130.46 391.13)" cx="292.32" rx="8.8583" cy="246.26" ry="26.575" stroke-width="4.3882" d="m 301.18108,246.25981 c 0,14.67685 -3.96598,26.57478 -8.85827,26.57478 -4.89228,0 -8.85826,-11.89793 -8.85826,-26.57478 0,-14.67685 3.96598,-26.57478 8.85826,-26.57478 4.89229,0 8.85827,11.89793 8.85827,26.57478 z"/> + <ellipse id="path572" transform="matrix(.54545 0 0 .14383 130.46 390.49)" cx="327.76" rx="8.8583" cy="263.98" ry="26.575" stroke-width="4.3882" d="m 336.6142,263.97638 c 0,14.67687 -3.96599,26.57483 -8.85828,26.57483 -4.89229,0 -8.85828,-11.89796 -8.85828,-26.57483 0,-14.67687 3.96599,-26.57483 8.85828,-26.57483 4.89229,0 8.85828,11.89796 8.85828,26.57483 z"/> + <ellipse id="path573" transform="matrix(.54545 0 0 .14383 130.46 390.49)" cx="363.19" rx="8.8583" cy="263.98" ry="26.575" stroke-width="4.3882" d="m 372.04723,263.97638 c 0,14.67687 -3.96598,26.57483 -8.85827,26.57483 -4.89228,0 -8.85826,-11.89796 -8.85826,-26.57483 0,-14.67687 3.96598,-26.57483 8.85826,-26.57483 4.89229,0 8.85827,11.89796 8.85827,26.57483 z"/> + <ellipse id="path574" transform="matrix(.54545 0 0 .14383 130.46 391.13)" cx="398.62" rx="8.8583" cy="246.26" ry="26.575" stroke-width="4.3882" d="m 407.48033,246.25981 c 0,14.67685 -3.96598,26.57478 -8.85826,26.57478 -4.89228,0 -8.85826,-11.89793 -8.85826,-26.57478 0,-14.67685 3.96598,-26.57478 8.85826,-26.57478 4.89228,0 8.85826,11.89793 8.85826,26.57478 z"/> + <ellipse id="path575" transform="matrix(.54545 0 0 .14383 130.46 394.32)" cx="434.06" rx="8.8583" cy="210.83" ry="26.575" stroke-width="4.3882" d="m 442.91339,210.82677 c 0,14.67684 -3.96598,26.57478 -8.85828,26.57478 -4.89229,0 -8.85827,-11.89794 -8.85827,-26.57478 0,-14.67685 3.96598,-26.57479 8.85827,-26.57479 4.8923,0 8.85828,11.89794 8.85828,26.57479 z"/> + <path id="path582" d="m265.75 485.43 106.3 95.669" stroke-width=".98327pt"/> + <path id="path583" d="m276.38 485.43 95.669 85.039" stroke-width=".98327pt"/> + <path id="path586" d="m290.55 488.98 81.496 70.866" stroke-width=".98327pt"/> + <path id="path587" d="m301.18 488.98 70.866 60.237" stroke-width=".98327pt"/> + <path id="path588" d="m311.81 488.98 60.236 49.607" stroke-width=".98327pt"/> + <path id="path589" d="m322.44 488.98 49.606 38.977" stroke-width=".98327pt"/> + <path id="path590" d="m333.07 488.98 38.976 28.347" stroke-width=".98327pt"/> + <path id="path591" d="m343.7 488.98 28.346 21.26" stroke-width=".98327pt"/> + <path id="path592" d="m354.33 488.98 17.716 14.174" stroke-width=".98327pt"/> + <path id="path593" d="m364.96 488.98 7.086 7.087" stroke-width=".98327pt"/> + <path id="path594" d="m265.75 485.43 106.3 95.669" transform="translate(.00022888 10.63)" stroke-width=".98327pt"/> + <path id="path595" d="m265.75 485.43 116.93 106.3" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path596" d="m276.38 485.43 102.76 92.126" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path597" d="m290.55 488.98 81.496 70.866" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path598" d="m301.18 488.98 70.866 60.237" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path599" d="m311.81 488.98 60.236 49.607" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path600" d="m322.44 488.98 49.606 38.977" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path601" d="m333.07 488.98 38.976 28.347" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path602" d="m343.7 488.98 28.346 21.26" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path603" d="m354.33 488.98 17.716 14.174" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path604" d="m364.96 488.98 7.086 7.087" transform="matrix(-1 0 0 1 637.8 -.000030518)" stroke-width=".98327pt"/> + <path id="path605" d="m265.75 485.43 116.93 106.3" transform="matrix(-1 0 0 1 637.8 10.63)" stroke-width=".98327pt"/> + <path id="path606" d="m265.75 485.43 116.93 106.3" transform="matrix(-1 0 0 1 637.8 21.26)" stroke-width=".98327pt"/> + <path id="path607" d="m265.75 485.43 116.93 106.3" transform="matrix(-1 0 0 1 637.8 31.89)" stroke-width=".98327pt"/> + <path id="path608" d="m265.75 485.43 116.93 106.3" transform="matrix(-1 0 0 1 637.8 42.52)" stroke-width=".98327pt"/> + <path id="path609" d="m265.75 485.43 116.93 106.3" transform="matrix(-1 0 0 1 637.8 53.15)" stroke-width=".98327pt"/> + <path id="path610" d="m265.75 485.43 116.93 106.3" transform="matrix(-1 0 0 1 637.8 63.78)" stroke-width=".98327pt"/> + <path id="path611" d="m265.75 485.43 116.93 106.3" transform="matrix(-1 0 0 1 637.8 74.41)" stroke-width=".98327pt"/> + <path id="path612" d="m265.75 485.43 116.93 106.3" transform="matrix(-1 0 0 1 637.8 85.04)" stroke-width=".98327pt"/> + <path id="path613" d="m265.75 485.43 109.84 99.21" transform="matrix(-1 0 0 1 637.8 95.67)" stroke-width=".98327pt"/> + <path id="path614" d="m265.75 485.43 99.212 88.583" transform="matrix(-1 0 0 1 637.8 106.3)" stroke-width=".98327pt"/> + <path id="path615" d="m265.75 485.43 77.953 70.866" transform="matrix(-1 0 0 1 634.25 120.47)" stroke-width=".98327pt"/> + <path id="path616" d="m265.75 485.43 63.779 56.693" transform="matrix(-1 0 0 1 630.71 134.65)" stroke-width=".98327pt"/> + <path id="path617" d="m265.75 485.43 31.89 28.346" transform="matrix(-1 0 0 1 623.62 152.36)" stroke-width=".98327pt"/> + <path id="path618" d="m265.75 485.43 102.76 92.126" transform="translate(.00022888 21.26)" stroke-width=".98327pt"/> + <path id="path619" d="m269.29 488.98 102.76 92.126" transform="translate(-3.5433 28.347)" stroke-width=".98327pt"/> + <path id="path620" d="m269.29 488.98 99.213 88.583" transform="translate(-3.5431 38.977)" stroke-width=".98327pt"/> + <path id="path621" d="m269.29 488.98 99.213 88.583" transform="translate(-3.5431 49.607)" stroke-width=".98327pt"/> + <path id="path622" d="m272.84 492.52 95.669 85.039" transform="translate(-7.0866 56.693)" stroke-width=".98327pt"/> + <path id="path623" d="m269.29 488.98 95.669 85.04" transform="translate(-7.0864 67.323)" stroke-width=".98327pt"/> + <path id="path624" d="m269.29 488.98 88.583 77.953" transform="translate(-7.0864 77.953)" stroke-width=".98327pt"/> + <path id="path625" d="m265.75 485.43 88.583 77.953" transform="translate(-7.0866 88.583)" stroke-width=".98327pt"/> + <path id="path626" d="m262.2 481.89 85.04 74.409" transform="translate(-7.0864 99.213)" stroke-width=".98327pt"/> + <path id="path627" d="m262.2 481.89 81.496 70.865" transform="translate(-7.0866 109.84)" stroke-width=".98327pt"/> + <path id="path628" d="m262.2 481.89 70.866 63.779" transform="translate(-7.0866 120.47)" stroke-width=".98327pt"/> + <path id="path636" d="m265.75 396.85v17.717c35.433 5.906 70.866 5.906 106.3 0v-17.717c-35.433 5.906-70.866 5.906-106.3 0z" transform="matrix(1 0 0 .99999 .00021458 70.87)" stroke-width=".98327pt"/> + <path id="path629" d="m262.2 481.89 63.78 56.692" transform="translate(-7.0864 131.1)" stroke-width=".98327pt"/> + <path id="path630" d="m262.2 481.89 56.693 49.606" transform="translate(-7.0864 141.73)" stroke-width=".98327pt"/> + <path id="path631" d="m262.2 481.89 49.606 42.519" transform="translate(-7.0866 152.36)" stroke-width=".98327pt"/> + <path id="path632" d="m262.2 481.89 35.434 31.889" transform="translate(-7.0864 162.99)" stroke-width=".98327pt"/> + <path id="path633" d="m262.2 481.89 28.347 24.804" transform="translate(-7.0864 173.62)" stroke-width=".98327pt"/> + <path id="path634" d="m262.2 481.89 17.716 14.173" transform="translate(-7.0866 184.25)" stroke-width=".98327pt"/> + <ellipse id="path576" transform="matrix(.54545 0 0 .14383 130.46 447.47)" cx="256.89" rx="8.8583" cy="210.83" ry="26.575" stroke-width="4.3882" d="m 265.74803,210.82677 c 0,14.67684 -3.96598,26.57478 -8.85826,26.57478 -4.89228,0 -8.85826,-11.89794 -8.85826,-26.57478 0,-14.67685 3.96598,-26.57479 8.85826,-26.57479 4.89228,0 8.85826,11.89794 8.85826,26.57479 z"/> + <ellipse id="path577" transform="matrix(.54545 0 0 .14383 130.46 444.28)" cx="292.32" rx="8.8583" cy="246.26" ry="26.575" stroke-width="4.3882" d="m 301.18108,246.25981 c 0,14.67685 -3.96598,26.57478 -8.85827,26.57478 -4.89228,0 -8.85826,-11.89793 -8.85826,-26.57478 0,-14.67685 3.96598,-26.57478 8.85826,-26.57478 4.89229,0 8.85827,11.89793 8.85827,26.57478 z"/> + <ellipse id="path578" transform="matrix(.54545 0 0 .14383 130.46 443.64)" cx="327.76" rx="8.8583" cy="263.98" ry="26.575" stroke-width="4.3882" d="m 336.6142,263.97638 c 0,14.67687 -3.96599,26.57483 -8.85828,26.57483 -4.89229,0 -8.85828,-11.89796 -8.85828,-26.57483 0,-14.67687 3.96599,-26.57483 8.85828,-26.57483 4.89229,0 8.85828,11.89796 8.85828,26.57483 z"/> + <ellipse id="path579" transform="matrix(.54545 0 0 .14383 130.46 443.64)" cx="363.19" rx="8.8583" cy="263.98" ry="26.575" stroke-width="4.3882" d="m 372.04723,263.97638 c 0,14.67687 -3.96598,26.57483 -8.85827,26.57483 -4.89228,0 -8.85826,-11.89796 -8.85826,-26.57483 0,-14.67687 3.96598,-26.57483 8.85826,-26.57483 4.89229,0 8.85827,11.89796 8.85827,26.57483 z"/> + <ellipse id="path580" transform="matrix(.54545 0 0 .14383 130.46 444.28)" cx="398.62" rx="8.8583" cy="246.26" ry="26.575" stroke-width="4.3882" d="m 407.48033,246.25981 c 0,14.67685 -3.96598,26.57478 -8.85826,26.57478 -4.89228,0 -8.85826,-11.89793 -8.85826,-26.57478 0,-14.67685 3.96598,-26.57478 8.85826,-26.57478 4.89228,0 8.85826,11.89793 8.85826,26.57478 z"/> + <ellipse id="path581" transform="matrix(.54545 0 0 .14383 130.46 447.47)" cx="434.06" rx="8.8583" cy="210.83" ry="26.575" stroke-width="4.3882" d="m 442.91339,210.82677 c 0,14.67684 -3.96598,26.57478 -8.85828,26.57478 -4.89229,0 -8.85827,-11.89794 -8.85827,-26.57478 0,-14.67685 3.96598,-26.57479 8.85827,-26.57479 4.8923,0 8.85828,11.89794 8.85828,26.57479 z"/> + <path id="path638" d="m113.39 651.97 127.55-74.41" stroke-width=".98327pt"/> + <path id="path639" d="m113.39 651.97 120.47-70.87" transform="translate(-7.0868 -3.5433)" stroke-width=".98327pt"/> + <path id="path640" d="m113.39 651.97 109.84-63.78" transform="translate(-10.63 -10.629)" stroke-width=".98327pt"/> + <path id="path641" d="m113.39 651.97 95.669-56.693" transform="translate(-14.173 -17.716)" stroke-width=".98327pt"/> + <path id="path642" d="m116.93 648.42 88.583-49.606" transform="translate(-24.803 -21.26)" stroke-width=".98327pt"/> + <path id="path643" d="m131.1 641.34 60.236-35.433" transform="translate(-35.433 -24.803)" stroke-width=".98327pt"/> + <path id="path644" d="m138.19 637.8 46.063-28.346" transform="translate(-46.063 -28.346)" stroke-width=".98327pt"/> + <path id="path645" d="m141.73 634.25 31.89-17.717" transform="translate(-49.606 -35.433)" stroke-width=".98327pt"/> + <path id="path654" d="m120.47 648.42 120.47-70.86" transform="translate(3.5431 7.0871)" stroke-width=".98327pt"/> + <path id="path655" d="m127.56 644.88 113.38-67.32" transform="translate(7.0865 14.174)" stroke-width=".98327pt"/> + <path id="path656" d="m134.65 641.34 106.3-63.78" transform="translate(10.63 21.26)" stroke-width=".98327pt"/> + <path id="path657" d="m134.65 641.34 88.583-53.15" transform="translate(21.26 24.804)" stroke-width=".98327pt"/> + <path id="path658" d="m155.91 627.16 77.952-46.063" transform="translate(14.173 38.976)" stroke-width=".98327pt"/> + <path id="path659" d="m155.91 627.16 67.323-38.976" transform="translate(24.803 42.52)" stroke-width=".98327pt"/> + <path id="path660" d="m162.99 623.62 53.15-31.89" transform="translate(28.346 49.607)" stroke-width=".98327pt"/> + <path id="path661" d="m173.62 616.54 42.52-24.803" transform="translate(31.89 56.693)" stroke-width=".98327pt"/> + <path id="path662" d="m177.16 616.54 28.347-17.717" transform="translate(42.52 60.237)" stroke-width=".98327pt"/> + <path id="path663" d="m187.8 609.45 17.717-10.63" transform="translate(46.063 67.323)" stroke-width=".98327pt"/> + <path id="path635" d="m265.75 396.85v17.717c35.433 5.906 70.866 5.906 106.3 0v-17.717c-35.433 5.906-70.866 5.906-106.3 0z" transform="matrix(0 1 -.99999 0 655.51 308.27)" stroke-width=".98327pt"/> + <path id="path664" d="m166.54 630.71 42.52-35.433" transform="translate(-116.93 -7.0861)" stroke-width=".98327pt"/> + <path id="path665" d="m166.54 637.8 42.52-42.52" transform="matrix(1 0 0 -1 -116.93 1236.6)" stroke-width=".98327pt"/> + <path id="path637" d="m260.15 387.99 5.595 26.575c35.433 5.906 65.271 5.906 100.7 0l11.19-26.575c-35.433 5.906-82.056 5.906-117.49 0z" transform="matrix(0 .63333 -0.8 0 423.78 416.34)" stroke-width=".98327pt"/> + <path id="path674" d="m258.66 350.79v-17.865c-10.63 0.149-17.716-10.481-17.717-21.26l-35.432 0.149c0 10.63-7.087 21.26-17.717 21.26v17.716h70.866z" transform="matrix(1.4983 0 0 1 -15.633 53.149)" stroke-width=".98327pt"/> + <rect id="rect675" height="21.26" width="45.506" y="343.7" x="296.09" stroke-width="1.0172pt"/> + <rect id="rect676" height="21.26" width="37.922" y="322.44" x="299.88" stroke-width="1.0172pt"/> + <rect id="rect677" height="21.26" width="37.922" y="301.18" x="299.88" stroke-width="1.0172pt"/> + <rect id="rect679" height="28.346" width="30.337" y="272.83" x="303.67" stroke-width="1.0172pt"/> + <rect id="rect680" height="24.803" width="32.953" y="248.03" x="302.36" stroke-width="1.0601pt"/> + <ellipse id="path681" transform="matrix(1.0333 0 0 1 75.354 63.779)" cx="237.4" rx="42.52" cy="161.22" ry="33.661" stroke-width=".98327pt" d="m 279.92126,161.22044 c 0,18.59069 -19.03671,33.66143 -42.51968,33.66143 -23.48297,0 -42.51968,-15.07074 -42.51968,-33.66143 0,-18.59069 19.03671,-33.66142 42.51968,-33.66142 23.48297,0 42.51968,15.07073 42.51968,33.66142 z"/> + <path id="path683" d="m258.66 159.45c0 9.291 10.63 24.803 10.63 24.803-7.696 6.093-20.154 10.63-31.889 10.63s-26.349-2.528-31.89-10.63c0 0 10.63-15.512 10.63-24.803s-10.63-21.26-10.63-21.26c7.696-6.093 20.154-10.63 31.89-10.63 11.735 0 24.193 4.537 31.889 10.63 0 0-10.63 11.969-10.63 21.26z" transform="matrix(1.0333 0 0 1 75.354 63.779)" stroke-width=".98327pt"/> + <path id="path685" d="m251.58 159.45c0 9.291 10.63 28.346 10.63 28.346-7.696 6.093-13.068 7.087-24.803 7.087s-19.262 1.015-24.803-7.087c0 0 10.63-19.055 10.63-28.346s-10.63-24.803-10.63-24.803c7.696-6.093 13.067-7.087 24.803-7.087 11.735 0 17.107 0.994 24.803 7.087 0 0-10.63 15.512-10.63 24.803z" transform="matrix(1.0333 0 0 1 75.354 63.779)" stroke-width=".98327pt"/> + <ellipse id="path686" transform="matrix(1.0333 0 0 1 75.354 60.236)" cx="194.88" rx="10.63" cy="166.54" ry="10.63" stroke-width=".98327pt" d="m 205.51181,166.53543 c 0,5.87074 -4.75917,10.62992 -10.62991,10.62992 -5.87074,0 -10.62992,-4.75918 -10.62992,-10.62992 0,-5.87074 4.75918,-10.62992 10.62992,-10.62992 5.87074,0 10.62991,4.75918 10.62991,10.62992 z"/> + <ellipse id="path687" transform="matrix(1.0333 0 0 1 163.23 60.236)" cx="194.88" rx="10.63" cy="166.54" ry="10.63" stroke-width=".98327pt" d="m 205.51181,166.53543 c 0,5.87074 -4.75917,10.62992 -10.62991,10.62992 -5.87074,0 -10.62992,-4.75918 -10.62992,-10.62992 0,-5.87074 4.75918,-10.62992 10.62992,-10.62992 5.87074,0 10.62991,4.75918 10.62991,10.62992 z"/> + <ellipse id="path688" transform="matrix(1.0333 0 0 1 119.29 60.236)" cx="194.88" rx="10.63" cy="166.54" ry="10.63" stroke-width=".98327pt" d="m 205.51181,166.53543 c 0,5.87074 -4.75917,10.62992 -10.62991,10.62992 -5.87074,0 -10.62992,-4.75918 -10.62992,-10.62992 0,-5.87074 4.75918,-10.62992 10.62992,-10.62992 5.87074,0 10.62991,4.75918 10.62991,10.62992 z"/> + <ellipse id="path689" transform="matrix(1.0333 0 0 1 119.29 24.803)" cx="194.88" rx="10.63" cy="166.54" ry="10.63" stroke-width=".98327pt" d="m 205.51181,166.53543 c 0,5.87074 -4.75917,10.62992 -10.62991,10.62992 -5.87074,0 -10.62992,-4.75918 -10.62992,-10.62992 0,-5.87074 4.75918,-10.62992 10.62992,-10.62992 5.87074,0 10.62991,4.75918 10.62991,10.62992 z"/> + <ellipse id="path690" transform="matrix(1.0702 0 0 1 79.931 226.77)" cx="194.88" rx="10.63" cy="166.54" ry="10.63" stroke-width=".98327pt" d="m 205.51181,166.53543 c 0,5.87074 -4.75917,10.62992 -10.62991,10.62992 -5.87074,0 -10.62992,-4.75918 -10.62992,-10.62992 0,-5.87074 4.75918,-10.62992 10.62992,-10.62992 5.87074,0 10.62991,4.75918 10.62991,10.62992 z"/> + <ellipse id="path691" transform="matrix(1.0702 0 0 1 140.61 226.77)" cx="194.88" rx="10.63" cy="166.54" ry="10.63" stroke-width=".98327pt" d="m 205.51181,166.53543 c 0,5.87074 -4.75917,10.62992 -10.62991,10.62992 -5.87074,0 -10.62992,-4.75918 -10.62992,-10.62992 0,-5.87074 4.75918,-10.62992 10.62992,-10.62992 5.87074,0 10.62991,4.75918 10.62991,10.62992 z"/> + <path id="path693" d="m212.6 311.81h49.607l-24.803 31.89-24.804-31.89z" transform="matrix(1.0702 0 0 1 64.762 53.149)" stroke-width=".98327pt"/> + <ellipse id="path692" transform="matrix(1.427 0 0 1.3333 40.745 167.72)" cx="194.88" rx="10.63" cy="166.54" ry="10.63" stroke-width=".98327pt" d="m 205.51181,166.53543 c 0,5.87074 -4.75917,10.62992 -10.62991,10.62992 -5.87074,0 -10.62992,-4.75918 -10.62992,-10.62992 0,-5.87074 4.75918,-10.62992 10.62992,-10.62992 5.87074,0 10.62991,4.75918 10.62991,10.62992 z"/> + </g> + <g id="g822" fill-rule="evenodd" transform="translate(-1.7678 -28.3)" fill="#fff"> + <rect id="rect818" rx="4.3492" ry="3.6873" height="21.26" width="81.496" y="524.41" x="262.2" stroke-width="1.2291"/> + <path id="path810" d="m478.35 237.4c-9.814 0-17.716 8.259-17.716 18.519v16.111c0 10.26 7.902 18.52 17.716 18.52 9.815 0 17.717-8.26 17.717-18.52v-16.111c0-10.26-7.902-18.519-17.717-18.519zm0 7.087c-5.888 0-10.63 6.608-10.63 14.816v9.345c0 8.208 4.742 14.816 10.63 14.816 5.889 0 10.63-6.608 10.63-14.816v-9.345c0-8.208-4.741-14.816-10.63-14.816z" transform="translate(-109.84 269.29)" stroke-width="1.2291"/> + <path id="path812" d="m478.35 237.4c-5.888 0-10.63 6.608-10.63 14.816v16.432c0 8.208 4.742 14.816 10.63 14.816 5.889 0 10.63-6.608 10.63-14.816v-16.432c0-8.208-4.741-14.816-10.63-14.816zm0-7.087c-9.814 0-17.716 8.259-17.716 18.519v23.198c0 10.26 7.902 18.52 17.716 18.52 9.815 0 17.717-8.26 17.717-18.52v-23.198c0-10.26-7.902-18.519-17.717-18.519z" transform="translate(-201.97 272.84)" stroke-width="1.2291"/> + <path id="path811" d="m478.35 247.23c-5.888 0-10.63 6.608-10.63 14.816l-0.001 3.864c0 8.208 4.742 14.816 10.63 14.816 5.889 0 10.63-6.608 10.63-14.816l0.001-3.864c0-8.208-4.741-14.816-10.63-14.816zm0-7.087c-9.814 0-17.716 8.259-17.716 18.519l-0.001 10.63c0 10.26 7.902 18.52 17.716 18.52 9.815 0 17.717-8.26 17.717-18.52l0.001-10.63c0-10.26-7.902-18.519-17.717-18.519z" transform="translate(-230.32 270.09)" stroke-width="1.2291"/> + <path id="path813" d="m478.35 237.4c-5.888 0-10.63 6.608-10.63 14.816v16.432c0 8.208 4.742 14.816 10.63 14.816 5.889 0 10.63-6.608 10.63-14.816v-16.432c0-8.208-4.741-14.816-10.63-14.816zm0-7.087c-9.814 0-17.716 8.259-17.716 18.519v23.198c0 10.26 7.902 18.52 17.716 18.52 9.815 0 17.717-8.26 17.717-18.52v-23.198c0-10.26-7.902-18.519-17.717-18.519z" transform="matrix(1.8 0 0 1.1176 -655.51 242.2)" stroke-width=".86655"/> + <path id="path814" d="m478.35 237.4c-5.888 0-10.63 6.608-10.63 14.816v16.432c0 8.208 4.742 14.816 10.63 14.816 5.889 0 10.63-6.608 10.63-14.816v-16.432c0-8.208-4.741-14.816-10.63-14.816zm0-7.087c-9.814 0-17.716 8.259-17.716 18.519v23.198c0 10.26 7.902 18.52 17.716 18.52 9.815 0 17.717-8.26 17.717-18.52v-23.198c0-10.26-7.902-18.519-17.717-18.519z" transform="matrix(1.8 0 0 1.1176 -425.2 245.74)" stroke-width=".86655"/> + <rect id="rect815" rx="2.2691" ry="3.6873" height="21.26" width="42.52" y="524.41" x="375.59" stroke-width="1.2291"/> + <rect id="rect817" rx="1.3237" ry="4.9163" height="28.346" width="24.803" y="520.87" x="336.61" stroke-width="1.2291"/> + <rect id="rect819" rx="1.3237" ry="4.9163" height="28.346" width="24.803" y="520.87" x="219.69" stroke-width="1.2291"/> + <rect id="rect820" rx="2.6473" ry="6.1454" height="35.433" width="49.606" y="517.32" x="141.73" stroke-width="1.2291"/> + <rect id="rect821" rx="2.4582" ry="6.1454" height="35.433" width="46.063" y="520.87" x="450" stroke-width="1.2291"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/pa.svg b/s/flag/pa.svg new file mode 100755 index 0000000..0f0e62b --- /dev/null +++ b/s/flag/pa.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg1646" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3564"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs1648"> + <clipPath id="clipPath3037" clipPathUnits="userSpaceOnUse"> + <rect id="rect3039" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3037)"> + <rect id="rect2996" height="480" width="640" y="0" x="0" fill="#fff"/> + <rect id="rect555" fill-rule="evenodd" height="480" width="477.19" y="1.5939e-7" x="92.462" stroke-width="1pt" fill="#fff"/> + <rect id="rect1649" fill-rule="evenodd" height="221.68" width="358" y="3.6546" x="323.07" stroke-width="1pt" fill="#db0000"/> + <rect id="rect1650" fill-rule="evenodd" height="254.66" width="319.87" y="225.33" x="3.2267" stroke-width="1pt" fill="#0000ab"/> + <path id="path205" d="m214.8 177.65-41.959-29.326-41.754 29.614 15.529-48.124-41.677-29.716 51.562-0.4143 15.993-47.978 16.335 47.867 51.562 0.06322-41.463 29.996 15.872 48.017z" fill-rule="evenodd" stroke-width=".11287" fill="#0000ab"/> + <path id="path1660" d="m516.85 413.89-42.354-27.744-42.146 28.017 15.675-45.529-42.069-28.114 52.047-0.39198 16.143-45.391 16.489 45.286 52.047 0.0598-41.853 28.379 16.021 45.428z" fill-rule="evenodd" stroke-width=".11287" fill="#d80000"/> + </g> +</svg> diff --git a/s/flag/pe.svg b/s/flag/pe.svg new file mode 100755 index 0000000..dbc1973 --- /dev/null +++ b/s/flag/pe.svg @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- +On October 30, 2003, Brett Roper dedicated to the public domain the +works "SVG graphic of Chad Flag.", "SVG graphic of El Salvador Flag.", +"SVG graphic of Sierra Leone Flag.", "SVG graphic of Peru Flag." Before +making the dedication, Brett Roper represented that Brett Roper owned all copyrights in the +work. By making the dedication, Brett Roper made an overt act +of relinquishment in perpetuity of all present and future rights under +copyright law, whether vested or contingent, in "SVG graphic of Chad +Flag.", "SVG graphic of El Salvador Flag.", "SVG graphic of Sierra Leone +Flag.", "SVG graphic of Peru Flag." + +Brett Roper understands that such relinquishment of all rights +includes the relinquishment of all rights to enforce (by lawsuit or +otherwise) those copyrights in the Work. + +Brett Roper recognizes that, once placed in the public domain, +"SVG graphic of Chad Flag.", "SVG graphic of El Salvador Flag.", "SVG +graphic of Sierra Leone Flag.", "SVG graphic of Peru Flag." may be +freely reproduced, distributed, transmitted, used, +modified, built upon, or otherwise exploited by anyone for any +purpose, commercial or non-commercial, and in any way, including by +methods that have not yet been invented or conceived. +--> +<svg id="canada" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" fill="#28ff09"> + <metadata id="metadata3572"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" fill-opacity="1" transform="matrix(1.25 0 0 .93750 0 .0000011260)"> + <rect id="rect576" height="512" width="171.16" y="2.8695e-7" x="170.3" fill="#fff"/> + <rect id="rect575" height="512" width="170.3" y=".000045701" x="0" fill="#f00"/> + <rect id="rect577" height="512" width="171.87" y=".000030219" x="340.13" fill="#f00"/> + </g> +</svg> diff --git a/s/flag/pf.svg b/s/flag/pf.svg new file mode 100755 index 0000000..a4c86c3 --- /dev/null +++ b/s/flag/pf.svg @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3629"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath3278" clipPathUnits="userSpaceOnUse"> + <rect id="rect3280" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3278)"> + <rect id="rect3092" height="480" width="640" y="0" x="0" fill="#fff"/> + <rect id="rect3145" height="480" width="480" y=".000010642" x="80" fill="#fff"/> + <path id="path560" d="m277.28 340.75s10.839-8.7879 21.386-8.7879 13.477 7.3229 20.801 7.9084c7.3239 0.58638 13.475-7.3239 22.558-7.6161 9.0821-0.29222 20.508 6.4443 20.508 6.4443l-39.843 12.013-45.41-9.9616z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path561" d="m254.43 327.86 135.35 0.58638s-11.718-12.597-25.488-12.89c-13.769-0.29512-9.9597 5.859-20.507 6.7366-10.546 0.87956-13.185-6.4444-22.852-6.1521-9.6665 0.29222-15.234 6.1521-22.557 6.4463-7.3239 0.29223-16.699-7.3258-22.266-7.0307-5.5667 0.29223-25.488 8.7879-25.488 8.7879l3.8086 3.5154z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path562" d="m237.15 311.75 166.99 0.58736c2.6358-3.8086-8.2035-12.891-18.163-13.77-8.2054 0.29222-14.062 8.4957-20.801 8.7898-6.7385 0.29223-14.355-8.4976-21.973-8.2025-7.6161 0.29222-15.526 8.2025-23.144 8.2025-7.6161 0-13.183-8.4976-22.85-8.4976-9.6675 0-14.062 9.3753-21.386 8.7899-7.3258-0.58638-13.77-9.3743-20.801-9.3743-7.0307 0-18.75 10.546-21.093 9.9597-2.3436-0.5854 2.928 4.3949 3.2232 3.5154z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path563" stroke-linejoin="round" d="m301.3 218.88 38.38 10.255v-54.786c-17.579 0.87957-32.226-33.397-1.1718-35.741-30.468-4.3949-33.985 3.5154-37.5 12.011l0.29222 68.261z" fill-rule="evenodd" stroke="#000" stroke-width="2.5" fill="#f00"/> + <path id="path564" d="m276.99 258.72 86.718 0.29222" fill-rule="evenodd" stroke="#083d9c" stroke-linecap="round" stroke-width="4.9999" fill="#083d9c"/> + <g id="g570" transform="matrix(1.875 0 0 1.875 -40 -.000030649)" stroke="#000" stroke-linecap="round" stroke-width="2.1333" fill="none"> + <path id="path565" d="m171.25 126.89 5.469 7.344"/> + <path id="path566" d="m171.25 134.24 5.938-7.187"/> + <path id="path567" d="m174.38 126.42-0.156 4.531"/> + </g> + <g id="g574" transform="matrix(1.875 0 0 1.875 -23.594 -.000030649)" stroke="#000" stroke-linecap="round" stroke-width="2.1333" fill="none"> + <path id="path575" d="m171.25 126.89 5.469 7.344"/> + <path id="path576" d="m171.25 134.24 5.938-7.187"/> + <path id="path577" d="m174.38 126.42-0.156 4.531"/> + </g> + <g id="g578" transform="matrix(1.875 0 0 1.875 -6.8953 -.000030649)" stroke="#000" stroke-linecap="round" stroke-width="2.1333" fill="none"> + <path id="path579" d="m171.25 126.89 5.469 7.344"/> + <path id="path580" d="m171.25 134.24 5.938-7.187"/> + <path id="path581" d="m174.38 126.42-0.156 4.531"/> + </g> + <g id="g582" transform="matrix(1.875 0 0 1.875 10.39 -.000030649)" stroke="#000" stroke-linecap="round" stroke-width="2.1333" fill="none"> + <path id="path583" d="m171.25 126.89 5.469 7.344"/> + <path id="path584" d="m171.25 134.24 5.938-7.187"/> + <path id="path585" d="m174.38 126.42-0.156 4.531"/> + </g> + <g id="g586" transform="matrix(1.875 0 0 1.875 27.089 -.000030649)" stroke="#000" stroke-linecap="round" stroke-width="2.1333" fill="none"> + <path id="path587" d="m171.25 126.89 5.469 7.344"/> + <path id="path588" d="m171.25 134.24 5.938-7.187"/> + <path id="path589" d="m174.38 126.42-0.156 4.531"/> + </g> + <path id="path590" d="m218.69 259.6 36.913 0.29318v-23.144l-42.187-2.0494 5.2745 24.901z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path591" d="m216.93 227.67 39.258 3.8086-0.29223-16.406-38.379-15.234-0.58735 27.832z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path592" d="m224.84 194.86 30.176 14.648 4.3088-4.4985s-2.7751-1.912-2.6377-3.6712c0.0522-1.7795 2.7916-2.0494 2.8438-3.9808 0.0503-1.7794-3.1032-1.9933-3.137-3.7737-0.2061-1.9294 2.4306-3.9982 2.4306-3.9982l-27.245-23.73-6.7395 29.004z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path593" d="m422.88 259.89h-38.964l-0.29222-22.558 42.772-3.2231-3.5154 25.781z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path594" d="m384.21 232.06 46.29-5.5648-9.9616-26.66-36.621 15.526 0.29222 16.698z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path595" d="m417.9 192.51-33.398 17.578c-0.48769-1.9052-0.90183-3.737-3.2212-5.2745 0 0 2.0494-1.1718 2.0494-3.2231 0-2.0494-2.6368-2.3436-2.6368-3.5154s2.4171-2.1955 2.5632-4.8333c-0.29223-1.8307-2.5632-4.393-2.1239-4.9068l25.928-19.849 10.839 24.024z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path596" d="m345.54 231.62 16.698-0.73152 0.29221-6.7404-16.99 7.472z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path597" d="m294.57 231.11-17.578-0.51188v-7.0317l17.578 7.5436z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path598" d="m294.49 229.06-17.505-9.0095v-11.718s-2.0514 0.29223-1.7582-2.0514c0.0968-4.8826 12.865 8.9118 19.409 13.403l-0.14611 9.3753z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path599" d="m345.54 227.96-0.0716-7.6161s15.818-14.281 19.187-16.919c0 2.93-1.8298 5.199-1.8298 5.199v11.133l-17.286 8.2025z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path600" d="m243 163.8c0.29222 0.29319 17.75 19.696 17.75 19.696 0.48962-1.8385 4.5149-2.1181 8.6157-1.8249 4.1027 0.29221 7.3723-0.2748 7.3723 2.6552 0 2.929-2.0814 2.5129-2.0814 4.5643s3.1186 1.8791 3.1186 4.513c0 2.6368-2.2613 2.0988-2.2729 4.1404-0.007 1.6875 2.3591 1.7775 2.3591 1.7775l16.626 16.114 0.0726-17.213-34.276-53.758-17.284 19.336z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path601" d="m270.43 143.45c0.2603 0.78184 23.216 47.477 23.216 47.477s0.2603-43.825 4.1734-46.173l-6.5208-12-20.869 10.696z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path602" d="m371.38 145.27-25.923 46.245 0.0338-19.491s2.15-3.2773-1.2415-3.0161c-3.3905 0.26029-7.5639-0.26126-7.5639-0.26126l10.434-36.521 24.26 13.044z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path603" d="m397.99 165.1c-0.26126 0.52155-17.488 18.04-17.488 18.04-0.78184-2.0862-5.9905-1.0847-10.947-1.0847-4.9571 0-5.647 1.5888-5.3848 2.8932 0.52154 3.3915 2.1955 0.89214 2.1955 4.0234 0 3.1293-2.4113 1.9875-2.6271 4.2788 0.23996 2.6319 3.7863 1.9817 1.7088 3.9759l-19.948 19.149 0.0562-18.146 37.042-57.652 15.392 24.521z" fill-rule="evenodd" fill="#ef7d08"/> + <path id="path604" stroke-linejoin="round" d="m309.82 268.4c-8.3477 13.826-30.664 9.7255-35.882 0.0735-1.5637-0.44317-0.63863-59.551-0.63863-59.551s-2.4936-1.136-2.6087-2.9532c-0.11418-1.8356 3.3905-2.002 3.3905-4.3514 0-2.3474-3.5792-1.4272-3.6508-3.7902 0.0155-2.2594 3.8211-1.9478 3.6508-4.0359-0.20126-2.3532-4.2624-2.0049-4.4346-4.1743-0.13159-1.7233 2.9048-3.226 3.7486-4.0011-0.54574 0.0271-2.8206-0.0338-2.8351-0.0416-2.1307 0.0435-4.2624 0.0871-6.3921 0.13063-4.541 0.005 0.0784 0.98988 0.0116 3.6102-0.0416 1.7117-2.3029 2.8506-2.5052 4.3388-0.0716 1.5279 3.2357 2.601 3.2773 4.4346 0.0378 1.6362-3.2493 1.7475-3.1312 3.2676 0.20417 2.5729 2.9116 3.139 2.8709 4.6968-0.0416 1.5559-3.6431 2.1491-3.6528 3.3906 0.12579 2.4016 0.52155 60.781 0.52155 60.781 5.739 29.739 38.868 37.304 48.26-1.8249z" fill-rule="evenodd" stroke="#000" stroke-width="2.5" fill="#f00"/> + <path id="path606" stroke-linejoin="round" d="m331.66 268.4c8.3477 13.826 30.663 9.7255 35.881 0.0735 1.5637-0.44317 0.6396-59.551 0.6396-59.551s2.4936-1.136 2.6077-2.9532c0.11418-1.8356-3.1709-2.002-3.1709-4.3514 0-2.3474 3.3605-1.4272 3.4312-3.7902-0.0145-2.2594-3.5279-2.0939-3.3576-4.183 0.2003-2.3523 2.959-2.0775 3.1157-4.2469 0.13159-1.8685-1.732-3.0064-2.5758-3.7815 0.54574 0.0271 2.6735-0.0338 2.689-0.0416 2.1297 0.0435 4.2614 0.0871 6.3911 0.13063 4.542 0.005-0.0784 0.98988-0.0107 3.6102 0.0406 1.7117 2.302 2.8506 2.5052 4.3388 0.0707 1.5279-3.2367 2.601-3.2783 4.4346-0.0367 1.6362 3.2502 1.7475 3.1312 3.2676-0.20417 2.5729-2.9116 3.139-2.87 4.6968 0.0406 1.5559 3.6431 2.1491 3.6518 3.3906-0.12483 2.4016-0.52059 60.781-0.52059 60.781-5.7399 29.739-38.868 37.304-48.26-1.8249z" fill-rule="evenodd" stroke="#000" stroke-width="2.5" fill="#f00"/> + <path id="path610" d="m301.71 295.59 37.277-0.0222c0.29029-0.29318-8.3457-12.874-18.632-11.987-11.46 0.29996-19.244 12.009-18.644 12.009z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path611" d="m420.57 294.68h-51.008s6.6021-3.9014 8.4018-7.502c3.2996 1.8007 2.3997 3.6005 9.0018 3.9005 6.6001 0.29996 12.901-7.5 19.203-7.2001 6.3002 0.29997 14.401 11.102 14.401 10.802z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path612" d="m219.57 294.68h51.008s-6.6021-3.9014-8.4018-7.502c-3.2996 1.8007-2.3997 3.6005-9.0018 3.9005-6.5992 0.29996-12.901-7.5-19.203-7.2001-6.3002 0.29997-14.401 11.102-14.401 10.802z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path613" d="m223.38 278.64 36.327 0.29222s-2.3436-4.9794-2.6358-11.131c-9.3772-3.2212-16.993 7.0307-23.732 7.3239-6.7366 0.29222-13.767-7.3239-13.767-7.3239l3.8076 10.839z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path614" d="m417.32 278.64-36.328 0.29222s2.3445-4.9794 2.6368-11.131c9.3762-3.2212 16.992 7.0307 23.731 7.3239 6.7375 0.29222 13.768-7.3239 13.768-7.3239l-3.8076 10.839z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path615" d="m310.97 278.94 18.455-0.58444s0.29416-5.5667-9.3743-5.5667c-9.6675 0-8.7879 6.4453-9.0811 6.1512z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path616" d="m299.84 271.03c3.2231-1.7591 6.1521-3.5154 8.2035-7.6181l-12.598 0.29222s-5.857 3.5173-8.7879 7.3258h13.183z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <path id="path617" d="m340.56 271.03c-3.2231-1.7591-6.1512-3.5154-8.2025-7.6181l12.597 0.29222s5.858 3.5173 8.7879 7.3258h-13.183z" fill-rule="evenodd" stroke="#083d9c" stroke-width="2pt" fill="#083d9c"/> + <rect id="rect618" fill-rule="evenodd" height="120" width="720" y="360" x="-40" stroke-width="1pt" fill="#de2010"/> + <rect id="rect619" fill-rule="evenodd" height="120" width="720" y="-4.0231e-7" x="-40" stroke-width="1pt" fill="#de2010"/> + </g> +</svg> diff --git a/s/flag/pg.svg b/s/flag/pg.svg new file mode 100755 index 0000000..57c75d8 --- /dev/null +++ b/s/flag/pg.svg @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3645"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" transform="matrix(.94087 0 0 .9375 80.178 0)"> + <g id="g575" fill-rule="evenodd" transform="matrix(1.0321 0 0 1.0321 -84 -.00041285)"> + <path id="path572" d="m0.51426 0.00046797-0.51426 496.06h659.05l-658.54-496.06z"/> + <path id="path574" d="m0.51426 0.00046797-0.51426 496.06h659.05l-658.54-496.06z" transform="matrix(-1 0 0 -1 659.05 496.06)" fill="#f00"/> + </g> + <g id="g578" transform="matrix(2.3594 0 0 2.3594 -84 -.00042860)"> + <path id="selection_to_path" d="m178 54l-3.84-0.2c-1.18-2.78-4.513-3.8233-6.563-2.6533-1.86 0.16-11.6-0.147-11.6-0.147l7.12 3.12c1.76 4.76 7.88 5.88 7.88 5.88-0.543 8.7748-8.881-1.1324-15.881 3.8676-5 3-5.059 6.5828-7.761 12.371-0.84 1.609-4.36 5.761-4.36 5.761l5.88-0.5-1.88 2.5 7-1s-0.94 0.7848-1.5 1.38c1.037 0.2028 8-1.63 8-1.63l-0.5 2.25c3.57-1.43 8-2.88 8-2.88s1.57 1.31 3 1.88l1-4 4 1 1-4c6 8 8 16 19 18l-1-4c3.06 1.31 8.74 4.09 8.74 4.09l0.86-1.83c4.77 3.42 8.73 3.36 11.4 3.74 0 0-1.99-4.98-2-5 0.13 0.05 1.99 1.01 2 1 0 0-3-8-3-8s3 1 3 1l-4-6 1.5-1-0.5-3c6 2 14 5 15 12 1 11-11 14-19 13 6 5 17 3 22-2 2-2 3-5 4-8 1 3 3 7 3 11-1 9-13 12-21 13 9 5 25-1 26-14 0-11-7-16-10-21-0.45-1.82-1-5.38-1-5.38 0.388 0.1144 3 1.39 3 1.39s-1.77-3.31-2-4.01c0 0-3.12-8.5-4.25-10.38 0.186-0.1052 2.25 0.35 2.25 0.35l-8.19-10.27s1.976-0.1796 2.32-0.24c0 0-9.52-7.51-12.13-8.46 0 0 3-1 3-1-6-3-13-1-19 3l1-3-1.83 0.17v-3.43s1.83-2.74 1.83-2.74-3-1-3-1l2-5s-3 1-3 1l1-5s-2.24 1.04-3.6 0.89c0.05 0.11 1.59-3.42 1.59-3.42-0.95-1.49 0.01-4.47 0.01-4.47-7 1-8 2-12 8-6 11-4 16-3 27z" stroke="#fc0" stroke-width="1.0648" fill="#fc0"/> + <path id="path566" d="m215.78 70.438c0.521 0.8594 6.197 3.5937 10.468 6.0156-1.146-4.6093-9.479-5.625-10.468-6.0156z" fill-rule="evenodd" stroke="#f00" stroke-width="1.0648pt" fill="#f00"/> + <polygon id="polygon567" d="m 78.293953,180.39726 -6.36014,-4.05722 -8.536623,4.08826 1.893261,-7.3026 -6.526133,-6.85547 7.530239,-0.45603 4.503251,-8.32518 2.760683,7.02076 9.309295,1.71023 -5.824042,4.7951 z" fill-rule="evenodd" points="78.294 180.4 71.934 176.34 63.397 180.43 65.29 173.13 58.764 166.27 66.295 165.81 70.798 157.49 73.558 164.51 82.868 166.22 77.044 171.02" stroke-width="1pt" fill="#fff"/> + <polygon id="polygon568" d="m 94.616715,144.7085 -2.950513,-1.41206 -2.835909,1.63004 0.431187,-3.24245 -2.426609,-2.1934 3.217001,-0.59189 1.336183,-2.98564 1.557028,2.87665 3.252415,0.34817 -2.254704,2.36975 z" fill-rule="evenodd" points="94.617 144.71 91.666 143.3 88.83 144.93 89.262 141.68 86.835 139.49 90.052 138.9 91.388 135.91 92.945 138.79 96.198 139.14 93.943 141.51" stroke-width="1pt" fill="#fff"/> + <polygon id="polygon569" d="m 109.00288,124.2359 -6.47446,-3.15579 -6.270134,3.54444 1.000618,-7.13277 -5.308541,-4.86797 7.092876,-1.2525 2.989281,-6.553 3.38302,6.35868 7.15601,0.81798 -5.00205,5.18238 z" fill-rule="evenodd" points="109 124.24 102.53 121.08 96.258 124.62 97.259 117.49 91.95 112.62 99.043 111.37 102.03 104.82 105.42 111.18 112.57 112 107.57 117.18" stroke-width="1pt" fill="#fff"/> + <polygon id="polygon570" d="m 79.400574,95.740189 -7.621278,-3.819012 -7.46663,4.11317 1.276992,-8.428405 -6.219173,-5.830148 8.410501,-1.390029 3.62297,-7.7164 3.920984,7.56932 8.458292,1.061151 -5.9872,6.068126 z" fill-rule="evenodd" points="79.401 95.74 71.779 91.921 64.313 96.034 65.59 87.606 59.37 81.776 67.781 80.386 71.404 72.669 75.325 80.239 83.783 81.3 77.796 87.368" stroke-width="1pt" fill="#fff"/> + <polygon id="polygon571" d="m 50.904899,125.3425 -7.686314,-4.5633 -7.664737,4.66628 1.964754,-8.72025 -6.806433,-5.84764 8.900598,-0.82612 3.45813,-8.28032 3.536119,8.20969 8.943675,0.73012 -6.715157,5.89998 z" fill-rule="evenodd" transform="translate(1.1066 -.000015259)" points="50.905 125.34 43.219 120.78 35.554 125.44 37.519 116.72 30.712 110.88 39.613 110.05 43.071 101.77 46.607 109.98 55.551 110.71 48.836 116.61" stroke-width="1pt" fill="#fff"/> + </g> + </g> +</svg> diff --git a/s/flag/ph.svg b/s/flag/ph.svg new file mode 100755 index 0000000..235b1f3 --- /dev/null +++ b/s/flag/ph.svg @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3666"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath8673" clipPathUnits="userSpaceOnUse"> + <rect id="rect8675" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath8673)"> + <g id="g8587" fill-rule="evenodd" transform="translate(39.999)"> + <rect id="rect149" height="480" width="720" y="1.2138e-14" x="-39.999" stroke-width="1pt" fill="#f50013"/> + <rect id="rect280" height="240" width="720" y="1.2138e-14" x="-39.999" stroke-width="1pt" fill="#00189a"/> + <path id="path279" d="m-39.999 0 413.15 239.69-413.15 239.39 0.001-479.08z" stroke-width="1pt" fill="#feffff"/> + <path id="path205" d="m-20.421 437.1 4.2112-18.49-16.605-9.1751 19.301-2.4097 4.3908-18.458 7.7175 17.003 19.317-2.2333-14.532 12.917 7.5486 17.078-16.698-9.019-14.653 12.787z" stroke-width=".11287" fill="#eca300"/> + <path id="path425" d="m67.453 198.5-14.826-25.459-8.5262-0.96556 20.301 28.83 3.0515-2.4053zm-11.508 11.665-31.173-23.986-1.1167-13.964 12.606-0.42603 25.771 31.518-6.0873 6.8576zm-4.7339 5.4849-25.656-14.482-1.0805-8.5124 29.101 19.91-2.3639 3.0837z" stroke-width="1pt" fill="#eca300"/> + <path id="path426" d="m104.14 193.27 7.7384-28.427-5.2941-6.7529-6.2992 34.693 3.8549 0.48677zm-16.386-0.0163-4.7804-39.042 9.1667-10.593 9.1482 8.6837-4.3772 40.477-9.1573 0.47383zm-7.2297 0.47507-7.6818-28.442 5.3075-6.7423 6.2301 34.705-3.8559 0.4791z" stroke-width="1pt" fill="#eca300"/> + <path id="path427" d="m133.87 216.19 25.839-14.153 1.1889-8.4979-29.352 19.538 2.3244 3.1136zm-11.359-11.81 24.795-30.533 13.989-0.75002 0.0952 12.613-32.184 24.935-6.6955-6.2651zm-5.3588-4.8762 15.15-25.268 8.5378-0.85677-20.667 28.568-3.0206-2.444z" stroke-width="1pt" fill="#eca300"/> + <path id="path428" d="m138.47 251.81 28.423 7.7533 6.7556-5.2906-34.69-6.3174-0.48879 3.8546zm0.0249-16.386 39.044-4.7599 10.588 9.1723-8.6885 9.1437-40.475-4.3985-0.46902-9.1576zm-0.47128-7.2299 28.446-7.6669 6.7395 5.3111-34.709 6.2119-0.47708-3.8561z" stroke-width="1pt" fill="#eca300"/> + <path id="path429" d="m116.83 280.78 14.939 25.393 8.5304 0.92791-20.428-28.74-3.0409 2.4188zm11.457-11.715 31.279 23.848 1.1784 13.959-12.604 0.48168-25.91-31.404 6.057-6.8844zm4.7097-5.5057 25.72 14.368 1.118 8.5076-29.188-19.782 2.3503-3.0941z" stroke-width="1pt" fill="#eca300"/> + <path id="path430" d="m80.273 286.2-7.5427 28.479 5.3404 6.7163 6.0605-34.735-3.8582-0.46025zm16.386-0.0964 5.0488 39.008-9.0937 10.656-9.2077-8.6206 4.0988-40.506 9.1539-0.53679zm7.2262-0.52478 7.8772 28.389-5.261 6.7787-6.4686-34.662 3.8525-0.50561z" stroke-width="1pt" fill="#eca300"/> + <path id="path431" d="m50.609 263.87-25.608 14.567-1.0522 8.516 29.034-20.007-2.3742-3.0758zm11.547 11.626-24.301 30.928-13.975 0.97473-0.29785-12.61 31.779-25.449 6.7953 6.1567zm5.4365 4.7894-14.742 25.508-8.523 0.99386 20.205-28.897 3.0595 2.3952z" stroke-width="1pt" fill="#eca300"/> + <path id="path432" d="m45.543 227.9-28.477-7.5514-6.7179 5.3384 34.734 6.0711 0.46143-3.858zm0.09139 16.386-39.009 5.0369-10.653-9.0969 8.6234-9.2051 40.505 4.1111 0.534 9.154zm0.52257 7.2264-28.391 7.8685-6.7771-5.2631 34.664-6.4581 0.50443 3.8526z" stroke-width="1pt" fill="#eca300"/> + <path id="path433" d="m301.72 264.76-10.991-15.454-17.902 6.2788 11.054-16.004-10.847-15.566 17.824 5.564 11.197-15.899-0.0391 19.443 17.768 5.7399-17.847 6.452-0.2167 19.446z" stroke-width=".11287" fill="#eca300"/> + <path id="path434" d="m-9.8517 92.122-3.4083-18.655-18.876-1.897 16.794-9.814-3.231-18.696 13.788 12.592 16.879-9.658-8.2732 17.595 13.662 12.727-18.9-1.718-8.4347 17.524z" stroke-width=".11287" fill="#eca300"/> + <ellipse id="path418" d="m 263.71223,353.87601 c 0,40.33258 -32.69602,73.02859 -73.02861,73.02859 -40.33258,0 -73.0286,-32.69601 -73.0286,-73.02859 0,-40.33258 32.69602,-73.0286 73.0286,-73.0286 40.33259,0 73.02861,32.69602 73.02861,73.0286 z" cx="190.68" rx="73.029" cy="353.88" transform="matrix(.67733 0 0 .67733 -37.108 -.000016235)" ry="73.029" stroke-width="1pt" fill="#eca300"/> + </g> + </g> +</svg> diff --git a/s/flag/pk.svg b/s/flag/pk.svg new file mode 100755 index 0000000..2b7ee7a --- /dev/null +++ b/s/flag/pk.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3676"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath8442" clipPathUnits="userSpaceOnUse"> + <rect id="rect8444" fill-opacity="0.67" height="512" width="682.67" y="-.0000018825" x="-52.334"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath8442)" transform="matrix(.93750 0 0 .93750 49.063 .0000017649)" stroke-width="1pt"> + <rect id="rect171" height="512" width="768" y=".000016585" x="-95" fill="#0c590b"/> + <rect id="rect403" height="512" width="192.52" y="-7.5494e-7" x="-95" fill="#fff"/> + <g id="g6428" fill="#fff" transform="matrix(.78618 0 0 .78618 1.1148 55.129)"> + <path id="path273" d="m512.08 216.58-39.641-8.3395-20.846 34.733-4.3191-40.278-39.476-9.0939 36.972-16.554-3.5504-40.353 27.169 30.047 37.281-15.846-20.18 35.124 26.591 30.56z"/> + <path id="path278" d="m527.03 319.21c-35.19 77.54-127.55 111.41-205.31 75.39-77.77-36.03-111.65-128.38-75.62-206.15 18.376-39.665 48.448-66.923 90.898-81.8-4.8826 4.129-9.7139 8.4119-15.008 13.875-54.836 56.591-53.411 147.03 3.179 201.86 56.591 54.836 147.03 53.412 201.86-3.179z"/> + </g> + </g> +</svg> diff --git a/s/flag/pl.svg b/s/flag/pl.svg new file mode 100755 index 0000000..8eafb70 --- /dev/null +++ b/s/flag/pl.svg @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3683"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" transform="scale(1.25 .9375)"> + <rect id="rect149" transform="scale(-1)" height="512" width="512" y="-512" x="-512" fill="#fff"/> + <rect id="rect148" transform="scale(-1)" height="256" width="512" y="-512" x="-512" stroke-width="1pt" fill="#dc143c"/> + </g> +</svg> diff --git a/s/flag/pm.svg b/s/flag/pm.svg new file mode 100755 index 0000000..0df2d55 --- /dev/null +++ b/s/flag/pm.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3691"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="scale(.60207 .67733)"> + <rect id="rect171" height="708.66" width="1063" y="0" x="0" fill="#fff"/> + <rect id="rect403" height="708.66" width="354.33" y="0" x="0" fill="#00267f"/> + <rect id="rect135" height="708.66" width="354.33" y="0" x="708.66" fill="#f31830"/> + </g> +</svg> diff --git a/s/flag/pn.svg b/s/flag/pn.svg new file mode 100755 index 0000000..f60dfd7 --- /dev/null +++ b/s/flag/pn.svg @@ -0,0 +1,146 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg id="Flag_of_the_Pitcairn_Islands" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="-15 -7.5 30 15"> + <metadata id="metadata125"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs3"> + <clipPath id="border"> + <rect id="rect6" y="-7.5" width="30" x="-15" height="15"/> + </clipPath> + </defs> + <comment id="comment10">The above line is the ensign field color: #CF142B red and #00247D blue</comment> + <g id="flag"> + <rect id="rect8" height="22.5" width="30" y="-11.25" x="-15" fill="#00247d"/> + <g id="canton" transform="translate(0,-3.75)"> + <g id="g13" clip-path="url(#border)"> + <circle id="circle15" d="m 20,0 c 0,11.045695 -8.954305,20 -20,20 -11.045695,0 -20,-8.954305 -20,-20 0,-11.045695 8.954305,-20 20,-20 11.045695,0 20,8.954305 20,20 z" cx="0" cy="0" r="20" fill="#00247d"/> + <path id="diags_white" stroke-width="3" stroke="#fff" d="m-20-10 40 20m-40 0 40-20"/> + <path id="diags_red" stroke-width="2" stroke="#cf142b" d="m-20-10 40 20m-40 0 40-20"/> + <path id="eraser_white" fill="#fff" d="m0 0 20 10h-3l-20-10m3 0 20-10h3l-20 10m-3 0-20 10h-3l20-10m3 0-20-10h3l20 10"/> + <comment id="comment20">I think the above two lines give the simplest way to make the diagonals</comment> + <path id="cross_white" stroke-width="5" stroke="#fff" d="m-20 0h40m-20-10v20"/> + <path id="cross_red" stroke-width="3" stroke="#cf142b" d="m-20 0h40m-20-10v20"/> + </g> + </g> + <g id="g2791" transform="matrix(.15883 0 0 .15883 -27.207 -8.9732)"> + <path id="path2793" d="m197.84 77.265c-2.706 2.2955-5.284 5.64-5.917 8.6634-1.782 8.5128-4.149 10.406-7.805 8.5782 0 4.5702 4.008 4.9218 5.766 2.25 0 4.2894 1.555 8.0064 5.062 11.179 1.477 1.336 1.758 0.422 1.055-1.054-0.703-1.477-0.703-6.258-2.109-9.0004 2.25 1.6171 5.554 0.7031 5.273-3.7266-2.883 1.6875-5.748 1.6215-6.047-2.3907-0.351-4.7109 1.487-11.546 4.722-14.499z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <path id="path2795" d="m194.42 43.401c0.191-1.689-0.17-3.4238-1.404-4.5115-2.384-2.0995-4.72-1.404-6.458 0.2867-2.602-1.4063-3.984 3.5806-6.937 2.7368 0.492 1.6172 1.266 2.3203 2.742 1.7578-1.547 1.4062 0 3.0937-1.828 4.7812 3.305 1.0548 5.063-0.7734 4.922-3.9375 1.266 1.125 3.234 1.0548 4.289-0.2109-1.758-0.5625-1.766-2.0925-1.055-3.5156 1.055-2.1094 6.01-2.0276 5.729 2.613z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <path id="path2797" d="m202.05 67.858c-3.727 1.9687-10.547 1.125-11.18-3.7265-0.633-4.8516 4.078-7.0313 5.344-7.6641 1.973-0.9868 3.515 0.7734 2.883 2.8125 2.179-0.7734 2.672-3.3047 1.617-4.7813 2.883 0.211 5.555-1.9687 6.68-5.0625-1.011 0.9628-3.768 0.3118-6.038 0.1655 0.703-0.7734 0.694-2.2749 0.483-3.0483-2.391 2.4609-5.836 1.3359-10.406 8.4375 0.703-2.4609 2.039-7.3828 2.812-10.617 0.077-0.3234 0.137-0.6415 0.174-0.9729 0.281-4.6406-4.668-4.7236-5.723-2.6143 1.156 1.3047 0.549 2.8267 0.135 5.1341-0.492 2.7422-1.547 9.0703-2.461 11.18-0.281-3.3047-2.461-3.5156-2.883-5.1328-0.633 0.4218-0.984 1.5468-0.843 2.3203-0.774-0.8437-3.446 0.2109-4.43-1.0547-1.055 2.1094 0.633 4.2187 2.39 5.1328-1.019 0.0703-1.265 1.3008-2.39 1.3008 1.512 1.7578 3.058 2.4609 4.851 2.6015s3.129 0.8081 4.219 2.9884c1.758 3.5156 8.455 5.8007 14.766 2.6015z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2799" d="m211.33 63.569c-2.109 5.8359-7.875 9.9843-10.477 10.617-4.427 1.0769-13.457 5.4601-15.881 7.7164-0.383-0.0848-0.738-0.2236-0.994-0.4039-1.195-0.8437-2.179-3.5859-0.07-5.9062 6.61-6.1875 13.711-3.5157 18.141-7.7344-3.727 1.9687-10.547 1.125-11.18-3.7265 4.008 1.0546 11.25 1.125 17.016-5.0625 0.773 0.8437 3.023 3.5156 3.445 4.5z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <path id="path2801" d="m197.84 77.265c-3.34 2.8337-5.073 9.7884-4.722 14.499 0.098 1.3106 0.466 2.1987 1.023 2.7437 0.246-2.6719 2.104-9.5759 6.852-12.658 4.008-2.6016 10.266-8.4375 12.586-15.117-0.422-1.1953-1.125-2.039-2.461-2.8828-2.296 6.3037-8.462 9.3278-13.278 13.415z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2803" d="m209.19 60.862c-1.196 1.793-3.903 4.2539-6.504 5.2383 0.562-0.6328 0.738-1.4415 0.773-2.1094-3.305 1.2657-9.914 1.125-12.586 0.1407 4.008 1.0546 11.25 1.125 17.016-5.0625 0.562 0.6327 1.054 1.1952 1.301 1.7929z" stroke="#000" stroke-width=".18616" fill="#316d3a"/> + <path id="path2805" d="m183.91 75.592c-5.374 5.0307-1.828 9.4218 0.281 10.406-0.562 3.5156 2.743 3.0938 2.672 6.0469 1.336-0.7734 1.688-2.8125 1.477-4.4297 1.687 1.8282 5.976-0.2109 6.89 3.1641 0.563-3.7266-2.32-7.4532-5.906-7.1016 1.477-1.3359 0.633-3.5156-0.773-4.0781-0.281 2.7422-3.375 2.7422-4.571 1.8984-1.195-0.8437-2.179-3.5859-0.07-5.9062z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2807" d="m195.55 107.58c-0.587 0.335-0.544 1.091-0.176 1.582 0.738 0.984-0.52 3.215 1.863 3.691 0.704 0.141 1.245-0.289 1.512-1.09 0.738-2.215-1.617-2.461-1.828-3.515-0.211-1.055-0.879-0.95-1.371-0.668z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <path id="path2809" d="m197.55 111.73c-0.789 0.364-1.477 0.879-1.16 3.41 0.13 1.047 0.07 3.586-0.844 3.621 0.562 0.282 1.758 0.58 2.25-0.07 0.474 0.791 1.547 0.563 1.969-0.422 0.562 0.457 1.336-0.316 1.336-0.984 0.492 0.316 1.476-0.141 1.23-1.652 0.598 0.21 1.371-0.211 1.652-0.598-0.879-0.176-3.093-1.371-3.621-2.32-0.527-0.95-1.898-1.407-2.812-0.985z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <g id="g2811" stroke="#000" stroke-width=".18616" fill="none"> + <path id="path2813" d="m185.37 40.621c0.354-0.5246 0.75-1.0177 1.189-1.4448"/> + <path id="path2815" d="m198.75 49.928c0.621-0.3548 1.564-0.394 2.611-0.3267"/> + <path id="path2817" d="m197.8 118.69c-0.246-0.351-0.334-1.828-0.158-2.725"/> + <path id="path2819" d="m199.77 118.27c-0.387-0.299-1.125-1.318-1.248-2.215"/> + <path id="path2821" d="m201.1 117.29c-0.493-0.229-1.688-1.776-1.952-2.777"/> + <path id="path2823" d="m202.33 115.64c-0.58-0.124-2.355-1.284-3.094-2.514"/> + </g> + <path id="path2825" d="m234.75 75.663c8.649 7.2422 9.211 13.008 7.875 16.383-0.703-3.164-4.289-8.0859-8.016-9.3515l0.141-7.0313z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <g id="g2006"> + <g id="g2828"> + <path id="path2830" d="m219.28 71.585h16.032v18.984c0 16.172-9 25.734-18.141 30.797-9.141-5.063-18.141-14.625-18.141-30.797v-18.984h11.25c0.018 0.9844 0.106 2.4609 1.266 3.9375 2.654-0.2637 5.66-2.25 7.734-3.9375z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2832" d="m235.31 71.585v18.984c0 4.882-0.821 9.1618-2.217 12.897l-15.92-29.213-15.92 29.213c-1.397-3.7351-2.217-8.0149-2.217-12.897v-18.984h36.282z" stroke="#000" stroke-width=".18616" fill="#006ec7"/> + <path id="path2711" d="m233.58 102.06c-0.281 0.861-0.791 2.259-1.186 3.12l-15.22-28.285-15.22 28.285c-0.395-0.861-0.905-2.259-1.186-3.12l16.41-30.421 16.41 30.421z" fill="#f7e017"/> + </g> + <g id="g2835" stroke="#000" stroke-width=".18616" fill="#f7e017"> + <path id="path2837" d="m224.41 112.47c0.422 0.211 1.199 0.601 1.551 0.742 0.844-1.688 0.984-4.078 0.703-6.188-0.914 2.321-4.008 2.25-4.851 3.656 0.519 0.26 1 0.6 1.415 0.9-1.055 1.054-3.525 2.827-4.931 3.249v-15.082c0-1.0547-0.352-1.9336-0.352-2.8125v-3.1178c0-0.7031-0.14-1.7226-0.773-1.7226s-0.773 1.0195-0.773 1.7226v3.1178c0 0.8789-0.352 1.8984-0.352 2.8125v15.082c-0.773-2.25-3.802-1.48-5.208-3.73 0.55-0.134 1.129-0.175 1.692-0.067-1.054-3.586-3.937-3.867-4.5-4.922 0 1.477-0.632 4.922 0.352 6.399 0.221-0.265 0.553-0.537 0.952-0.781 1.195 2.602 6.571 2.609 7.837 6.898 1.016-1.575 4.676-3.405 7.238-6.156z"/> + <path id="path2839" d="m217.17 99.921c1.195 0 4.992-0.3888 6.363-0.3888 0.357 0 0.647-0.5342 0.647-1.1932s-0.29-1.1933-0.647-1.1933c-1.371 0-5.168-0.3887-6.363-0.3887s-4.992 0.3887-6.363 0.3887c-0.357 0-0.647 0.5343-0.647 1.1933s0.29 1.1932 0.647 1.1932c1.371 0 5.168 0.3888 6.363 0.3888z"/> + <path id="path2841" d="m216.4 93.74c-0.254-0.2041-0.587-0.3278-0.952-0.3278-0.797 0-1.442 0.5894-1.442 1.3164 0 0.7271 0.645 1.3164 1.442 1.3164 0.796 0 1.441-0.5893 1.441-1.3164 0-0.5625 0.818-0.5625 0.818 0 0 1.1394-1.011 2.0631-2.259 2.0631s-2.26-0.9237-2.26-2.0631c0-1.1393 1.012-2.063 2.26-2.063 0.374 0 0.727 0.0831 1.038 0.2304-0.028 0.189-0.086 0.541-0.086 0.844z"/> + <path id="path2843" d="m210.81 99.532c0.357 0 0.646-0.5342 0.646-1.1932s-0.289-1.1933-0.646-1.1933"/> + <path id="path2845" d="m211.34 99.532c0.357 0 0.646-0.5342 0.646-1.1932s-0.289-1.1933-0.646-1.1933"/> + <path id="path2847" d="m214.81 99.777c0.43 0 0.779-0.644 0.779-1.4383 0-0.7944-0.349-1.4383-0.779-1.4383"/> + <path id="path2849" d="m215.62 99.842c0.45 0 0.815-0.6732 0.815-1.5036 0-0.8305-0.365-1.5037-0.815-1.5037"/> + <path id="path2851" d="m218.32 99.859c0.455 0 0.824-0.6809 0.824-1.5206 0-0.8399-0.369-1.5206-0.824-1.5206"/> + <path id="path2853" d="m219.17 99.811c0.45 0 0.814-0.6592 0.814-1.4723 0-0.8132-0.364-1.4724-0.814-1.4724"/> + <path id="path2855" d="m222.94 99.555c0.364 0 0.66-0.5448 0.66-1.2168s-0.296-1.2168-0.66-1.2168"/> + <path id="path2857" d="m209.33 111.73c0.435-0.266 0.953-0.495 1.504-0.629"/> + <path id="path2859" d="m223.64 111.87c-0.129-0.092-0.267-0.19-0.413-0.296"/> + <path id="path2861" d="m224.41 112.47c0.985-1.057 1.805-2.252 2.254-3.618"/> + </g> + <g id="g2863" stroke="#000" stroke-width=".18616"> + <path id="path2865" d="m213.95 85.006c0-0.3427 0.282-0.4899 0.61-0.7383 0.396-0.2988 0.554-0.4394 0.914-0.4394h4.615c0.342 0 0.421 0.0879 0.421 0.4043v6.2754c0 0.3164-0.079 0.4043-0.421 0.4043h-6.139v-5.9677" fill="#fff"/> + <path id="path2867" d="m218.95 91.457c0.606 0 0.497-0.0132 0.923-0.4394 0.444-0.4439 0.402-0.4044 0.402-0.8128v-5.7379c0-0.2959-0.073-0.3781-0.391-0.3781h-4.27c-0.334 0-0.48 0.1315-0.846 0.411-0.304 0.2322-0.561 0.3699-0.561 0.6905v6.2667h4.743z" fill="#e5e5e5"/> + <path id="path2869" d="m219.4 91.325c0 0.3164-0.079 0.4043-0.422 0.4043h-4.614c-0.343 0-0.417-0.0879-0.417-0.4043v-6.2754c0-0.3164 0.074-0.4043 0.417-0.4043h4.614c0.343 0 0.422 0.0879 0.422 0.4043v6.2754z" fill="#fff"/> + </g> + </g> + <g id="g2871"> + <path id="path2875" d="m228.35 67.908c0.899 1.002 1.195 2.3525 0.705 3.671h-1.336c0.562-1.6875 0.211-3.2985-2.18-3.5094-3.575-0.3155-7.734 6.6093-13.992 7.4531-1.828-2.1797-1.73-6.3317 0.59-8.3005-1.199-3.4582-3.733-7.2612-5.486-8.9073-1.148-0.1867-2.474-0.2802-3.331-0.2297 0.914-1.9688 3.519-4.0409 5.629-4.8846 0.341-0.4993 0.708-0.979 1.051-1.4084 0.211-2.707 13.078-1.4414 15.82 0.2461 0 3.0234 1.194 13.128 2.53 15.87z" stroke="#000" stroke-width=".18616" fill="#96877d"/> + <g id="g2877"> + <path id="path2879" d="m212.75 69.753c-0.306-4.6868-2.2-8.5465-4.863-11.176 1.265 0.3516 3.867 0.3516 5.625-0.914 2.32-1.5469 8.367-4.254 10.582-3.0937 0.176 0.3866 0.281 1.2656 0.14 1.8281-0.527-1.4063-6.363 0.7734-8.015 1.4414-1.582 0.7382-2.285 1.7226-1.723 3.9375-0.914-0.7735-0.598-1.5118-1.547-2.0743 0.387 0.9141 0.703 2.5664 0.809 3.9024-0.352-0.9492-0.985-2.9883-2.356-4.1836 1.196 2.3203 2.233 7.8925 1.741 10.846 0.949 0 3.041-0.9316 3.884-1.5996-0.738 1.0546-2.865 1.793-4.236 2.0742-0.615 0.7383-1.037 2.6367-1.002 3.6914-0.105-1.3007 0.305-4.4713 0.961-4.679z"/> + <path id="path2881" d="m228.35 67.908c-1.164-1.2958-3.336-1.9974-6.116-1.2447 0.422-0.211 1.336-0.5625 2.145-0.7031-0.105-0.7384-0.773-3.9024-0.879-4.6759l0.774-0.3163c0.386 1.8984 0.878 4.0781 1.195 4.957 0.246 0.0703 0.808 0.1758 1.301 0.4218-0.211-0.7382-1.407-6.0468-1.371-6.6093l1.054-0.5625c0.422 2.8828 1.09 7.0664 1.897 8.733z"/> + </g> + <g id="g2985" stroke="#000" stroke-width=".18616" fill="#96877d"> + <path id="path2873" d="m227.72 71.578c0.562-1.6875 0.211-3.2985-2.18-3.5094-1.853-0.1636-3.863 1.6373-6.242 3.5094h8.422z"/> + <path id="path2883" d="m212.18 56.432c-1.055 0.1407-3.41-0.0703-4.606-0.457 0.069-0.3174 0.192-0.6461 0.35-0.9942-0.739 0.4922-2.143 1.4512-2.67 2.1192 1.688 0.3515 5.171 0.5267 6.926-0.668z"/> + </g> + <path id="path2885" d="m212.14 67.222c0.388 1.1209 0.641 2.2039 0.676 3.1676" stroke="#000" stroke-width=".18616" fill="none"/> + <path id="path2887" d="m208.95 53.2c-0.638 0.9314-1.192 1.9283-1.375 2.7752 1.196 0.3867 3.551 0.5977 4.606 0.457" stroke="#000" stroke-width=".18616" fill="none"/> + <path id="path2889" d="m206.65 58.314c0.455 0.0738 0.881 0.1628 1.24 0.2624 1.265 0.3516 3.867 0.3516 5.625-0.914s6.539-5.2031 11.953-5.625" stroke="#000" stroke-width=".18616" fill="none"/> + <path id="path2891" d="m205.25 57.1c1.688 0.3515 5.171 0.5267 6.926-0.668 4.078-2.7773 8.015-4.3945 11.953-4.6055" stroke="#000" stroke-width=".18616" fill="none"/> + </g> + <path id="path2893" d="m234.75 75.663c5.906 4.0781 10.266 8.0156 11.531 14.344 1.266 6.3281 3.657 8.0156 6.61 6.3281-0.703 3.6562-4.36 4.0783-7.453 1.2656 0.281 4.2187-1.407 9.2817-5.766 11.11-0.281-2.532 1.392-4.536 0.914-6.61-0.211-0.914-0.281-3.0232 0.914-4.0075-2.32 0.7734-5.976-0.7032-6.328-4.1484 2.672 1.2656 6.117 1.4765 7.453-1.8985s0.774-9.1406-7.875-16.383z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2895" d="m242.2 42.757c1.828-4.7813 6.61-4.2891 8.227-2.25 4.711-2.6719 5.344 3.375 9.351 2.1796-0.07 1.125-1.406 2.1797-2.882 2.1094 1.546 1.4062-0.633 3.5156 2.671 4.7812-2.812 1.4063-6.75-0.0702-7.804-3.9375-0.914 1.8282-4.219 1.8282-5.555 0.3516 2.883-0.7734 2.672-3.4453 1.055-4.5-1.629-1.0623-4.5-0.6328-5.063 1.2657z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2897" d="m227.94 53.286c1.312 4.2318 4.026 8.1647 6.951 10.846 3.375 3.0937 8.472 2.3202 11.32-0.6329 0.07 5.8887-6.029 6.3457-9.422 4.5-1.495-0.8134-2.705-0.386-1.265 0.9141 2.179 1.9688 6.948 3.4326 12.585 4.6406 9.844 2.1094 6.329 9.9141 3.446 9.8438 0.826-0.0177 1.504-0.8828 0.316-1.9512-8.543-7.6817-25.91-4.6582-25.629-21.814-1.828 4.5-9.351 2.7421-5.836-2.6016 1.125 0.9141 3.094 0.9843 3.657-0.4219 0.437-1.0942 0.151-2.9973-1.819-4.6326 0.324-0.0256 1.019 0.0008 0.948-0.8078 0.088 0.4745 0.519 1.1777 1.626 0.9404 0.317 0.501 0.649 0.8304 1.099 0.6504 0.088-0.0352 0.352-0.167 0.246-0.668 0.088 0.9317 1.195 1.2657 1.777 1.1953z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2899" d="m236.79 67.999c4.078 2.6719 8.689 2.67 12.938-2.25 1.336-1.5469 3.445-2.8828 4.922-3.0234 1.476-0.1406 1.406-1.5469 2.531-1.8281-0.703-0.211-0.985-1.0547-2.039-0.9492 2.636-0.9142 1.863-3.0235 3.164-4.043-1.055 0.3867-2.707-1.1953-4.219 0.8086 0.387-0.9141-0.141-2.0039-0.527-2.4258 0.14 1.0547-2.075 1.2656-2.496 3.9375-0.237 1.4992-1.055 1.4063-1.196-0.9141-0.103-1.6975-0.914-6.3984-1.898-8.789-0.985-2.3906-1.21-5.6725 0.126-6.1648-0.201-0.34-0.483-0.6404-0.829-0.8665-1.629-1.0623-4.5-0.6328-5.063 1.2657-1.828 4.7812 3.305 7.5234 2.883 12.726-0.773-3.8672-7.031-4.8515-6.961-8.6484-2.039 0.914-1.758 2.6015-0.984 3.9375-1.266-1.9688-4.149 1.2656-6.61-1.4063-0.281 3.5157 2.813 4.8516 5.344 4.9922-1.266 2.25 0.422 4.1485 2.109 4.7812 0.071-3.9375 8.145-2.3213 8.227 4.4298 0.07 5.7656-6.117 6.2577-9.422 4.4296z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <path id="path2901" d="m248.11 73.553c9.844 2.1094 6.329 9.9141 3.446 9.8438-1.836-0.0448-3.586-1.5821-3.692-2.918-2.109 1.125-1.546 3.3399 0.071 4.2188-4.43-0.5274-6.293 2.3906-6.399 5.5898 0.809-1.4766 3.27-1.5821 4.184-1.2656 0.914 0.3164 3.269 0.4921 4.219-0.5625-0.774 0.6679 0.492 2.2148-0.598 3.4101 3.691-0.1406 5.309-3.586 4.676-5.0976 4.781-4.3594 3.867-11.461-5.907-13.219z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <path id="path2903" d="m240.61 106.96c0.641 0.4 0.56 1.241 0.127 1.773-0.867 1.067 0.44 3.612-2.241 4.04-0.791 0.126-1.377-0.378-1.64-1.283-0.727-2.504 1.913-2.676 2.194-3.844 0.282-1.168 1.023-1.022 1.56-0.686z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <path id="path2905" d="m238.2 111.5c0.865 0.441 1.61 1.045 1.147 3.857-0.192 1.163-0.235 3.999 0.784 4.079-0.641 0.289-1.988 0.57-2.509-0.177-0.564 0.862-1.751 0.561-2.179-0.557-0.648 0.486-1.477-0.411-1.448-1.157-0.563 0.332-1.642-0.221-1.302-1.898-0.676 0.21-1.521-0.295-1.818-0.739 0.989-0.158 3.513-1.395 4.143-2.432 0.63-1.036 2.18-1.487 3.182-0.976z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <g id="g2907" stroke="#000" stroke-width=".18616" fill="none"> + <path id="path2909" d="m237.62 119.26c0.29-0.382 0.453-2.026 0.296-3.034"/> + <path id="path2911" d="m235.44 118.71c0.445-0.316 1.313-1.422 1.49-2.417"/> + <path id="path2913" d="m233.99 117.55c0.559-0.233 1.961-1.908 2.299-3.015"/> + <path id="path2915" d="m232.69 115.65c0.653-0.112 2.685-1.329 3.563-2.67"/> + </g> + <path id="path2917" d="m226.24 59.632c-0.118 7.207 2.878 10.853 7.027 13.227-1.542-0.9227-0.874-4.0867-2.949-5.1063 0.493-0.0351 1.266 0.668 2.497 0.3867-0.598-1.3359-1.583-3.375-3.868-3.6562 0.598-0.0703 1.899 0.1406 2.743-0.1758-1.196-1.8281-4.36-0.9492-5.45-4.6757z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <path id="path2919" d="m225.49 52.778c-0.253-0.0833-0.468-0.3384-0.678-0.67-1.107 0.2373-1.538-0.4659-1.626-0.9404 0.071 0.8086-0.628 0.7782-0.953 0.8038 1.979 1.6371 2.262 3.5406 1.824 4.6366-0.563 1.4062-2.532 1.336-3.657 0.4219-0.14 2.9882 3.727 3.9726 5.133 0.2109 0 0.6328 0.809 0.5625 1.02 1.4063 1.004-1.6165 0.246-3.9374-1.063-5.8691z" stroke="#000" stroke-width=".18616" fill="#f7e017"/> + <g id="g2921"> + <path id="path2923" d="m219.32 38.503c-1.758-1.6171-2.567-4.3242-2.497-5.871 0.071-1.5469 0.704-3.2344 2.954-2.5313-0.704 0-0.211 1.4063-0.95 1.5469 0.598 0.2109 1.407-0.2813 1.512-0.5977 0.141 0.4922 1.055 0.3516 1.125 0.9141 0.352-0.2813-0.035-1.6524-0.562-1.9336 0.386-0.2109 0.597-1.3008 0.421-1.8282-0.351 0.0704-0.878 0.5625-0.984 1.2657 0.176-0.5625-0.035-1.9688-1.019-2.1797-0.282 0.3867-0.352 1.3359 0.035 1.8633-0.914-0.211-2.25 0.3867-2.567 1.1601 0.071-0.9317 0.199-2.2581 0.774-3.0937 0.193-0.2813-0.282-0.7734-0.651-0.1055-0.685-1.3359-2.513-2.039-3.322-1.3711s-1.898-0.3164-2.566 0.7383c-0.668 1.0546-2.931 1.1658-2.813 2.2851 0.07 0.668-0.091 1.7-0.422 2.0743-0.808 0.914 0.387 1.582 0.598 2.3906-0.141-2.6719 4.113-7.875 8.367-5.836-0.387 0.668-0.725 2.0022-0.844 3.6211-0.175 2.3907 0.176 5.7657 2.496 7.7344l0.915-0.2461z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2925" d="m220.58 30.136c-0.023-0.6334 1.072-1.4561 2.549-1.4414 1.775 0.0175 3.146 1.6347 4.57 1.4765s0.721 0.6328 0.422 0.8437c-0.299 0.211-0.474 0.5274-0.369 0.9141s-0.077 0.6396-0.65 0.2813c-1.266-0.791-2.532 0.3164-4.202-0.2989-1.448-0.5335-2.285-0.8261-2.32-1.7753z" stroke="#000" stroke-width=".18616" fill="#cf142b"/> + <path id="path2927" d="m213.34 46.729c-0.703-2.2149-3.375-4.6406-4.676-5.2031l-0.07-1.1954c0.703-0.2812 2.39-1.6171 3.164-2.3554 5.273 2.5313 12.445-1.0547 15.75-4.7812l1.266 0.7734-0.633 0.8437-0.668-0.3515c-0.809 0.9844-3.828 3.8251-4.742 4.4227 1.229 0.3106 2.909 0.5248 3.371 0.4992 2.953-2.1094 5.273-4.0079 6.398-4.1485l0.949 1.2656-0.843 0.5976-0.668-0.3866c-3.164 2.6015-6.75 8.2969-8.157 12.094-1.968-0.4218-9-0.1406-10.441-2.0742z" stroke="#000" stroke-width=".18616" fill="#96877d"/> + <path id="path2929" d="m222.73 38.882c-0.455-0.1152-0.847-0.2467-1.094-0.3798-0.563 0.5274-1.969 0.9844-3.762 1.0547" stroke="#000" stroke-width=".18616" fill="none"/> + <path id="path2931" d="m213.62 45.956c-0.474-2.6191 0.281-5.5195 1.617-6.3984 2.918 1.9336 7.911 1.9336 10.864-0.1757" stroke="#000" stroke-width=".18616" fill="none"/> + <path id="path2933" d="m213.62 44.585c2.25-0.0704 7.137 0.3164 8.332 0.4921 1.196 0.1758 3.199 0.668 2.918 1.2657" stroke="#000" stroke-width=".18616" fill="none"/> + <path id="path2935" d="m214.66 44.212 0.647-0.6464-0.647-0.6463-0.646 0.6463 0.646 0.6464z" stroke="#000" stroke-width=".18616" fill="none"/> + <path id="path2937" d="m216.19 31.12c-0.809-1.125-3.037-1.4809-3.516 0.0352-0.211 0.668-0.527 1.3711-1.055 1.6875-0.527 0.3163-0.403 1.2745-0.175 1.6875 0.562 1.0195 0.07 2.0038 1.16 2.6718 0-0.8086 1.195-1.6523 2.215-1.8632 1.019-0.211 2.566-1.125 2.777-2.1445 0.211-1.0196 0.562-1.8634-1.406-2.0743z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2939" d="m211.12 41.245h0.281l0.005 1.9229c0.057 0.0199 0.121 0.0469 0.167 0.0886l1.657-0.9556 0.141 0.2436-1.663 0.9652c0.011 0.06 0.02 0.1285 0.007 0.1895l1.656 0.9572-0.141 0.2436-1.667-0.9576c-0.046 0.04-0.101 0.0815-0.161 0.1009l-0.001 1.9128h-0.281l-0.004-1.9229c-0.058-0.0199-0.122-0.0469-0.168-0.0886l-1.657 0.9556-0.14-0.2437 1.662-0.9652c-0.011-0.0599-0.02-0.1284-0.007-0.1894l-1.655-0.9574 0.14-0.2436 1.668 0.9578c0.046-0.04 0.101-0.0815 0.16-0.1009l0.001-1.9128z" stroke="#000" stroke-width=".18616" fill="#96877d"/> + <path id="path2941" d="m213.63 45.947c-0.604 0.608-1.44 0.9845-2.364 0.9845-1.84 0-3.332-1.4914-3.332-3.3312 0-1.8397 1.492-3.3311 3.332-3.3311 1.081 0 2.041 0.5149 2.65 1.3127-0.172 0.4187-0.371 1.3596-0.386 1.7856-0.116-1.1478-1.086-2.0437-2.264-2.0437-1.258 0-2.277 1.0193-2.277 2.2765 0 1.2573 1.019 2.2764 2.277 2.2764 1.052 0 1.962-0.7356 2.223-1.7051-0.001 0.4174 0.009 1.4238 0.141 1.7754z" stroke="#000" stroke-width=".18616" fill="#96877d"/> + <path id="path2943" d="m209.86 49.12c-0.21-0.2461-0.597-0.9141-0.562-1.4062 0.316-0.0352 0.914 0.1757 1.195 0.457-0.035-0.3515-0.175-1.125-0.105-1.4765 0.387 0.1406 1.195 0.5976 1.476 1.125-0.07-0.3516-0.211-1.2657-0.07-1.8282 0.422 0.2461 1.125 0.9141 1.266 1.3711 0.035-0.7032 0.281-1.8633 0.492-2.1445 0.316 0.3163 0.808 0.5976 1.125 1.0195 0.07-0.5625 0.351-1.2304 0.773-1.4063 0.317 0.3516 0.809 1.1602 0.914 2.0743 0.317-0.1055 0.739-0.6328 0.914-0.9141 0.176 0.2813 0.352 0.7734 0.247 1.3711 0.386-0.3515 0.843-0.8438 0.949-1.2657 0.281 0.211 0.808 0.7384 0.949 1.3009-0.07-0.4571-0.035-1.2656-0.176-1.7227 0.528 0.2812 0.949 0.7735 1.055 1.3008 0.141-0.4922 0.457-1.3711 0.738-1.5821 0.281 0.5625 0.563 1.2305 0.528 1.793 0.175-0.3515 0.457-0.9844 0.738-1.125 0.246 0.3868 0.211 1.2305 0.14 1.6875 0.247-0.3515 0.704-0.7734 0.985-0.914 0.035 0.2109 0.07 0.6328 0 0.9491 0.316-0.1757 0.844-1.125 1.019-1.6171 0.493 0.2461 0.985 1.0899 1.02 1.5117 0.351-0.1406 1.055-0.7734 1.265-1.125 0 0.2461 0.106 0.9141-0.035 1.4414 0.211-0.211 0.422-0.6328 0.528-0.8086 0.14 0.3516 0.035 1.1954-0.106 1.6524 0.317-0.2813 0.774-0.457 1.055-0.457 0.035 0.5976-0.387 1.6522-0.774 2.4257-3.375-0.9492-10.441-1.3007-17.543-1.6875z" stroke="#000" stroke-width=".18616" fill="#337321"/> + <path id="path2945" d="m221.63 30.495c-0.017-0.2591 0.562-0.8456 1.597-0.8396 1.242 0.0072 2.389 0.9187 3.386 0.854s0.505 0.2589 0.296 0.3452c-0.21 0.0863-0.333 0.2157-0.259 0.3739s-0.054 0.2617-0.455 0.1151c-0.886-0.3236-1.772 0.1294-2.941-0.1223-1.014-0.2183-1.6-0.338-1.624-0.7263z" fill="#f7e017"/> + </g> + <g id="g2947" stroke="#000" stroke-width=".18616"> + <g id="g2949" fill="#f7e017"> + <path id="path2951" d="m210.95 51.229c-1.054 1.2656-2.109 1.0546-2.32 0.2461-0.211-0.8086 0.563-1.1953 0.281-1.8985-0.281-0.7031 0.457-1.0195 0.809-0.7031 0.351 0.3164 1.476-0.7031 1.969 0.3516 0.492 1.0547 0.879 1.7929 0.597 2.2148-0.281 0.4219-1.125 0.211-1.336-0.2109z"/> + <path id="path2953" d="m215.48 49.331c-0.198-0.4626 0.897-1.3534 1.459-0.7207 0.563 0.6329 1.442-0.6855 1.934 0.3164 0.492 1.002 0.65 1.5293 0.897 2.0918 0.246 0.5625-1.336 0.8613-1.829 0.3692 0.071 0.3339-1.366 0.5955-1.757-0.3516-0.211-0.5097-0.44-1.0898-0.704-1.7051z"/> + <path id="path2955" d="m222.8 49.911c-0.264-0.4921 1.02-1.1953 1.687-0.2988 0.176-0.3691 1.442-0.4395 1.53 0.6328 0.088 1.0722 0.123 1.7051 0.158 2.127s-0.773 0.8086-1.354-0.2637c-1.037 0.211-1.511-0.3692-1.634-0.9844s-0.246-0.914-0.387-1.2129z"/> + </g> + <g id="g2957" fill="#337321"> + <path id="path2959" d="m211.63 49.208c-0.158-0.3515 0.896-1.0547 1.617-0.5273 0.721 0.5273 1.719-0.455 2.145 0.4921 0.861 1.9161 0.914 2.0567 0.65 2.4258-0.264 0.3692-1.389 0.2285-1.67-0.2813-0.053 0.3517-1.023 0.2937-1.529 0.0177-0.58-0.3165-0.985-1.4942-1.213-2.127z"/> + <path id="path2961" d="m219.03 49.296c-0.246-0.545 1.407-1.0195 2.127-0.0703 0.369-0.334 1.178-0.3516 1.635 0.6855 0.457 1.0372 0.527 1.6172 0.193 1.8809-0.235 0.1854-1.09 0.3339-1.371-0.1406-0.387 0.2461-1.582 0.0351-1.845-0.6329-0.264-0.6679-0.493-1.248-0.739-1.7226z"/> + <path id="path2963" d="m226.03 50.333c-0.035-0.4922 0.862-0.7207 1.196 0s1.402 0.0717 1.494 1.2656c0.017 0.2285-0.123 1.1074-0.457 1.5293s-1.969 0-2.074-0.8964c-0.106-0.8965-0.141-1.4063-0.159-1.8985z"/> + </g> + <g id="g2965" fill="none"> + <path id="path2967" d="m210.95 51.229c-0.386-0.5274-0.914-1.3711-1.582-0.457"/> + <path id="path2969" d="m214.38 51.317c-0.228-0.2988-0.527-0.7909-0.633-1.1777"/> + <path id="path2971" d="m217.94 51.387c-0.246-0.1758-0.615-0.5274-0.808-0.8965"/> + <path id="path2973" d="m217.63 49.542c0.615 0.0703 1.037 0.6503 1.23 0.914 0.194 0.2637 0.598 0.7384 0.915 0.7911"/> + <path id="path2975" d="m221.62 51.651c-0.211-0.3341-0.422-0.6329-0.474-0.8789"/> + <path id="path2977" d="m221.16 49.225c0.211 0.2988 0.369 0.5449 0.492 0.8261"/> + <path id="path2979" d="m224.82 52.108c-0.281-0.5274-0.72-1.0371-1.089-1.2129"/> + <path id="path2981" d="m224.68 50.174c0.035 1.0371 1.424 1.1074 1.476 1.8457"/> + <path id="path2983" d="m227.22 50.333c0.14 0.2636 0.193 0.5273 0.211 0.9668"/> + </g> + </g> + </g> + </g> +</svg> diff --git a/s/flag/pr.svg b/s/flag/pr.svg new file mode 100755 index 0000000..06063c9 --- /dev/null +++ b/s/flag/pr.svg @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- + +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>SVG graphic of Puerto Rico flag</dc:title> + <dc:rights><Agent> + <dc:title>Ricardo Veguilla González</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> +</rdf:RDF> +--> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3702"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath7650" clipPathUnits="userSpaceOnUse"> + <rect id="rect7652" fill-opacity="0.67" height="512" width="682.67" y=".0000024116" x="-37.298"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath7650)" transform="matrix(.9375 0 0 .9375 34.967 -.0000022609)"> + <rect id="rect149" height="512" width="768" y=".0000024116" x="-37.298" stroke-width="1pt" fill="#ed0000"/> + <rect id="rect280" height="102.4" width="768" y="102.4" x="-37.298" stroke-width="1pt" fill="#fff"/> + <rect id="rect281" height="102.4" width="768" y="307.2" x="-37.298" stroke-width="1pt" fill="#fff"/> + <path id="path279" d="m-37.298 0.0000024116 440.69 255.67-440.69 255.34v-511.01z" stroke-width="1pt" fill="#0050f0"/> + <path id="path205" d="m156.45 325.47-47.447-35.432-47.214 35.78 17.56-58.144-47.128-35.904 58.305-0.50059 18.084-57.968 18.472 57.835 58.305 0.0763-46.886 36.243 17.947 58.016z" stroke-width=".11287" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/ps.svg b/s/flag/ps.svg new file mode 100755 index 0000000..a30c26a --- /dev/null +++ b/s/flag/ps.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3713"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath7570" clipPathUnits="userSpaceOnUse"> + <rect id="rect7572" fill-opacity="0.67" height="512" width="682.67" y=".000016181" x="-118"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath7570)" transform="matrix(.93750 0 0 .93750 110.63 -.000015169)"> + <g id="g558" fill-rule="evenodd" stroke-width="1pt" transform="matrix(24.381 0 0 24.381 -246 .00001745)"> + <rect id="rect551" height="7" width="42" y="0" x="0"/> + <rect id="rect552" height="7" width="42" y="7" x="0" fill="#fff"/> + <rect id="rect553" height="7" width="42" y="14" x="0" fill="#090"/> + <path id="path554" d="m0 21 21-10.5-21-10.5v21z" fill="#f00"/> + </g> + </g> +</svg> diff --git a/s/flag/pt.svg b/s/flag/pt.svg new file mode 100755 index 0000000..b9faca0 --- /dev/null +++ b/s/flag/pt.svg @@ -0,0 +1,526 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4089"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <linearGradient id="linearGradient6733" y2="-5035.4" gradientUnits="userSpaceOnUse" y1="-5035.4" gradientTransform="matrix(.085350 0 0 .14208 -225.71 715.44)" x2="4203.4" x1="359.59"> + <stop id="stop562" offset="0"/> + <stop id="stop563" stop-color="#fff" offset="1"/> + </linearGradient> + <clipPath id="clipPath7504" clipPathUnits="userSpaceOnUse"> + <rect id="rect7506" fill-opacity="0.67" height="512" width="682.67" y=".0000053048" x="-72.352"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath7504)" transform="matrix(.9375 0 0 .9375 67.83 -.0000049733)"> + <rect id="rect555" height="511.87" width="307.43" stroke="url(#linearGradient6733)" y=".064535" x="-114.94" stroke-width=".11012pt" fill="#090"/> + <rect id="rect557" fill-rule="evenodd" height="512" width="461.15" y="-.0000025034" x="191.82" stroke-width="1pt" fill="#f00"/> + <g id="g1527" fill-rule="evenodd" stroke-width="1pt" transform="matrix(.10329 0 0 .10306 23.562 74.592)"> + <g id="g1009" transform="matrix(-.053403 1.0792 .43966 -.043588 1384.9 -475.58)"> + <rect id="rect1010" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect1011" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g1012" transform="translate(9.3838 -.000030518)"> + <rect id="rect1013" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect1014" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g1015" transform="translate(197.06 -.000030518)"> + <rect id="rect1016" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect1017" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g1000" transform="matrix(-.053403 1.0792 .43966 -.043588 1572.6 115.61)"> + <rect id="rect1001" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect1002" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g1003" transform="translate(9.3838 -.000030518)"> + <rect id="rect1004" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect1005" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g1006" transform="translate(197.06 -.000030518)"> + <rect id="rect1007" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect1008" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g991" transform="matrix(-.053403 1.0792 .43966 -.043588 1497.5 781.86)"> + <rect id="rect992" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect993" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g994" transform="translate(9.3838 -.000030518)"> + <rect id="rect995" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect996" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g997" transform="translate(197.06 -.000030518)"> + <rect id="rect998" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect999" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g982" transform="matrix(.053403 1.0792 -.43966 -.043588 1815 734.94)"> + <rect id="rect983" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect984" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g985" transform="translate(9.3838 -.000030518)"> + <rect id="rect986" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect987" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g988" transform="translate(197.06 -.000030518)"> + <rect id="rect989" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect990" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g937" transform="matrix(-.31852 .97312 -.46881 -.050001 2307.7 363.88)"> + <rect id="rect938" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect939" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g940" transform="translate(9.3838 -.000030518)"> + <rect id="rect941" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect942" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g943" transform="translate(197.06 -.000030518)"> + <rect id="rect944" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect945" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g928" transform="matrix(-.78495 .83247 -.34476 -.23585 2811.1 622.21)"> + <rect id="rect929" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect930" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g931" transform="translate(9.3838 -.000030518)"> + <rect id="rect932" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect933" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g934" transform="translate(197.06 -.000030518)"> + <rect id="rect935" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect936" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g606" transform="translate(3443.9 797.63)"> + <path id="path607" d="m-576.02-680.03c0.472 617.58-500.34 1118.8-1117.9 1118.8-617.58 0.981-1119.2-499.44-1119.7-1117-1.49-617.6 498.53-1119.6 1116.1-1120.6 617.58-1.96 1120 497.67 1121.5 1115.2 0.026 1.253 0.026 2.31 0.026 3.564zm262.44-0.001c0.582 762.45-617.7 1381.2-1380.1 1381.2-762.44 1.211-1381.8-616.6-1382.3-1379-1.85-762.47 615.47-1382.2 1377.9-1383.4 762.45-2.42 1382.7 614.41 1384.5 1376.8 0.032 1.547 0.032 2.852 0.032 4.399z" fill-opacity=".99967" transform="translate(-149.86 1690.5)" fill="#efef00"/> + <path id="path608" d="m296.75 2625.1c0.582 762.45-617.7 1381.2-1380.1 1381.2-762.45 1.21-1381.8-616.6-1382.4-1379-1.84-762.46 615.48-1382.2 1378-1383.4 762.45-2.42 1382.7 614.41 1384.5 1376.8 0.032 1.55 0.032 2.86 0.032 4.4zm-27.624 0c0.57 747.2-605.35 1353.6-1352.5 1353.6-747.2 1.18-1354.1-604.27-1354.7-1351.5-1.81-747.21 603.16-1354.6 1350.4-1355.8 747.2-2.38 1355 602.11 1356.8 1349.3 0.032 1.52 0.032 2.8 0.032 4.31z" transform="matrix(.98 0 0 .98 -781.88 -1562.1)"/> + <path id="path609" d="m296.75 2625.1c0.582 762.45-617.7 1381.2-1380.1 1381.2-762.45 1.21-1381.8-616.6-1382.4-1379-1.84-762.46 615.48-1382.2 1378-1383.4 762.45-2.42 1382.7 614.41 1384.5 1376.8 0.032 1.55 0.032 2.86 0.032 4.4zm-27.624 0c0.57 747.2-605.35 1353.6-1352.5 1353.6-747.2 1.18-1354.1-604.27-1354.7-1351.5-1.81-747.21 603.16-1354.6 1350.4-1355.8 747.2-2.38 1355 602.11 1356.8 1349.3 0.032 1.52 0.032 2.8 0.032 4.31z" transform="matrix(.85016 0 0 .85016 -922.69 -1221.3)"/> + </g> + <g id="g883" transform="matrix(1 0 0 .98355 9.3838 52.807)"> + <rect id="rect872" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect871" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g877" transform="translate(9.3838 -.000030518)"> + <rect id="rect875" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect876" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g880" transform="translate(197.06 -.000030518)"> + <rect id="rect881" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect882" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g892" transform="matrix(.37140 1.0146 -.43278 .088917 1148.7 461.89)"> + <rect id="rect893" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect894" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g895" transform="translate(9.3838 -.000030518)"> + <rect id="rect896" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect897" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g1963" transform="translate(197.06 -.000030518)"> + <rect id="rect899" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect1965" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g901" transform="matrix(.048179 1.0353 -.45375 .049280 1585.8 -73.118)"> + <rect id="rect902" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect1968" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g904" transform="translate(9.3838 -.000030518)"> + <rect id="rect905" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect906" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g907" transform="translate(197.06 -.000030518)"> + <rect id="rect908" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect909" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g910" transform="matrix(-.61913 .96221 -.38214 -.16868 2610.1 86.531)"> + <rect id="rect911" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect912" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g1978" transform="translate(9.3838 -.000030518)"> + <rect id="rect1979" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect915" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g1981" transform="translate(197.06 -.000030518)"> + <rect id="rect1982" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect918" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g946" transform="matrix(-.013401 1.0347 -.45603 -.022150 3190.7 -29.14)"> + <rect id="rect947" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect948" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g949" transform="translate(9.3838 -.000030518)"> + <rect id="rect950" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect951" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g952" transform="translate(197.06 -.000030518)"> + <rect id="rect953" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect954" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g964" transform="matrix(.29417 .92656 -.37653 -.011881 2458.6 -379.7)"> + <rect id="rect965" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect966" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g967" transform="translate(9.3838 -.000030518)"> + <rect id="rect968" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect969" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g970" transform="translate(197.06 -.000030518)"> + <rect id="rect971" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect972" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g973" transform="matrix(-.44645 .96157 -.41974 -.15349 3749.8 876.84)"> + <rect id="rect974" height="2824.2" width="171.54" y="376.91" x="1528.3"/> + <rect id="rect975" height="2768.8" width="131.37" y="404.6" x="1548.3" fill="#efef00"/> + <g id="g976" transform="translate(9.3838 -.000030518)"> + <rect id="rect977" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect978" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + <g id="g979" transform="translate(197.06 -.000030518)"> + <rect id="rect980" height="2852.7" width="56.303" y="357.96" x="1482.6"/> + <rect id="rect981" height="2802" width="15.952" y="383.29" x="1502.8" fill="#efef00"/> + </g> + </g> + <g id="g1287"> + <g id="g2012" transform="translate(388.6 -627.37)"> + <g id="g2013" transform="translate(1261.6 8670.4)" fill="#f6f6fb"> + <g id="g2014"> + <rect id="rect2015" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2016" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2017" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2018" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2019" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2020" transform="translate(-4610.5 4587.5)"> + <g id="g2021" transform="matrix(.95 0 0 .95 5869.2 3772.5)" fill="#f00"> + <g id="g2022"> + <rect id="rect2023" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2024" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2025" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2026" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2027" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2028" transform="matrix(.567 0 0 .567 5848 1394.8)" fill="#400"> + <g id="g2029"> + <rect id="rect2030" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2031" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2032" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2033" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2034" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2035" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)" fill="#fff"> + <g id="g2036"> + <rect id="rect2037" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2038" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2039" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2040" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2041" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + </g> + </g> + <g id="g2042" transform="translate(-1370 3907.3)"> + <g id="g2043" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff"> + <g id="g2044" transform="translate(1261.6 8670.4)"> + <g id="g2045"> + <rect id="rect2046" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2047" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2048" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2049" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2050" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2051" transform="translate(-4610.5 4587.5)"> + <g id="g2052" transform="matrix(.95 0 0 .95 5869.2 3772.5)"> + <g id="g2053"> + <rect id="rect2054" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2055" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2056" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2057" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2058" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2059" transform="matrix(.567 0 0 .567 5848 1394.8)"> + <g id="g2060"> + <rect id="rect2061" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2062" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2063" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2064" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2065" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2066" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)"> + <g id="g2067"> + <rect id="rect2068" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2069" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2070" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2071" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2072" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + </g> + </g> + <ellipse id="path2073" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2074" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2075" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2076" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2077" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + </g> + <path id="path2078" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(1296.7 561.41)" fill="#ff0"/> + <g id="g2079" fill="#f00" transform="translate(1302.4 561.96)"> + <rect id="rect2080" height="30.484" width="23.308" y="477.6" x="-348.96"/> + <rect id="rect2081" height="30.484" width="23.308" y="476.98" x="-244.43"/> + </g> + <path id="path2082" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(2457.9 565.04)" fill="#ff0"/> + <g id="g2083" fill="#f00" transform="translate(2463.5 565.59)"> + <rect id="rect2084" height="30.484" width="23.308" y="477.6" x="-348.96"/> + <rect id="rect2085" height="30.484" width="23.308" y="476.98" x="-244.43"/> + </g> + <path id="path2086" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(1888.2 565.04)" fill="#ff0"/> + <g id="g2087" fill="#f00" transform="translate(1893.8 565.59)"> + <rect id="rect2088" height="30.484" width="23.308" y="477.6" x="-348.96"/> + <rect id="rect2089" height="30.484" width="23.308" y="476.98" x="-244.43"/> + </g> + <path id="path2090" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(1271.3 1272.6)" fill="#ff0"/> + <g id="g2091" fill="#f00" transform="translate(1277 1273.2)"> + <rect id="rect2092" height="30.484" width="23.308" y="477.6" x="-348.96"/> + <rect id="rect2093" height="30.484" width="23.308" y="476.98" x="-244.43"/> + </g> + <path id="path2094" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="translate(2479.7 1265.4)" fill="#ff0"/> + <g id="g2095" fill="#f00" transform="translate(2485.3 1265.9)"> + <rect id="rect2096" height="30.484" width="23.308" y="477.6" x="-348.96"/> + <rect id="rect2097" height="30.484" width="23.308" y="476.98" x="-244.43"/> + </g> + <path id="path2098" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="matrix(.65276 -.75757 .75757 .65276 969.57 1819.3)" fill="#ff0"/> + <g id="g2099" fill="#f00" transform="matrix(.65276 -.75757 .75757 .65276 973.66 1815.4)"> + <rect id="rect2100" height="30.484" width="23.308" y="477.6" x="-348.96"/> + <rect id="rect2101" height="30.484" width="23.308" y="476.98" x="-244.43"/> + </g> + <path id="path2102" d="m-433.9 545.04v22.689h302.52v-22.689h-302.52zm26.249-62.601v63.152h257.14v-63.152h-257.14zm-22.688 207.62v22.692h302.52v-22.692h-302.52zm81.069-7.017c-0.031-41.191 31.622-74.621 70.654-74.621 39.033-0.066 70.737 33.311 70.768 74.502 0 0.327-0.001 0.602-0.004 0.928m-149.28 3.292c-0.034-45.769 35.136-82.913 78.505-82.913 43.37-0.073 78.596 37.012 78.63 82.78 0.001 0.363 0 0.669-0.004 1.031m-207.65-114.09v113.44h257.14v-113.44h-257.14zm-26.26-113.15v21.46h302.52v-21.46h-302.52zm-0.027-30.268v30.484h23.308v-30.484h-23.308zm279.36 0v30.484h23.308v-30.484h-23.308zm-232.9 0.612v30.484h23.308v-30.484h-23.308zm185.22-0.618v30.484h23.308v-30.484h-23.308zm-139.99-28.725v30.484h23.308v-30.484h-23.308zm92.917-0.006v30.484h23.308v-30.484h-23.308zm-45.236-0.612v30.484h23.308v-30.484h-23.308zm-47.745 31.32v29.144h116.15v-29.144h-116.15z" transform="matrix(-.65276 -.75757 -.75757 .65276 2231 1815.7)" fill="#ff0"/> + <g id="g2103" fill="#f00" transform="matrix(-.65276 -.75757 -.75757 .65276 2226.9 1811.8)"> + <rect id="rect2104" height="30.484" width="23.308" y="477.6" x="-348.96"/> + <rect id="rect2105" height="30.484" width="23.308" y="476.98" x="-244.43"/> + </g> + <g id="g2106" transform="translate(-1377.6 3272)"> + <g id="g2107" transform="translate(3.7814 11.344)"> + <g id="g2108" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff"> + <g id="g2109" transform="translate(1261.6 8670.4)"> + <g id="g2110"> + <rect id="rect2111" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2112" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2113" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2114" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2115" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2116" transform="translate(-4610.5 4587.5)"> + <g id="g2117" transform="matrix(.95 0 0 .95 5869.2 3772.5)"> + <g id="g2118"> + <rect id="rect1155" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2120" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2121" transform="translate(-5963.8 -3463.6)"> + <rect id="rect1158" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2123" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2124" transform="matrix(.567 0 0 .567 5848 1394.8)"> + <g id="g2125"> + <rect id="rect2126" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2127" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2128" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2129" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2130" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2131" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)"> + <g id="g1168"> + <rect id="rect1169" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2134" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2135" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2136" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2137" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + </g> + </g> + <ellipse id="path2138" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2139" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2140" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2141" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2142" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + </g> + <g id="g2143" transform="translate(3.7817 321.43)"> + <g id="g2144" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff"> + <g id="g2145" transform="translate(1261.6 8670.4)"> + <g id="g2146"> + <rect id="rect2147" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2148" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2149" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2150" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2151" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2152" transform="translate(-4610.5 4587.5)"> + <g id="g2153" transform="matrix(.95 0 0 .95 5869.2 3772.5)"> + <g id="g2154"> + <rect id="rect2155" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2156" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2157" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2158" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2159" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2160" transform="matrix(.567 0 0 .567 5848 1394.8)"> + <g id="g2161"> + <rect id="rect2162" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2163" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2164" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2165" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2166" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2167" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)"> + <g id="g2168"> + <rect id="rect2169" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2170" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2171" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2172" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2173" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + </g> + </g> + <ellipse id="path2174" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2175" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2176" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2177" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2178" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + </g> + <g id="g1215" transform="translate(268.49 321.43)"> + <g id="g2180" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff"> + <g id="g2181" transform="translate(1261.6 8670.4)"> + <g id="g2182"> + <rect id="rect2183" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2184" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2185" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2186" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2187" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2188" transform="translate(-4610.5 4587.5)"> + <g id="g2189" transform="matrix(.95 0 0 .95 5869.2 3772.5)"> + <g id="g2190"> + <rect id="rect2191" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2192" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2193" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2194" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2195" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2196" transform="matrix(.567 0 0 .567 5848 1394.8)"> + <g id="g1233"> + <rect id="rect1234" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2199" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2200" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2201" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2202" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2203" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)"> + <g id="g2204"> + <rect id="rect2205" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2206" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2207" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2208" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2209" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + </g> + </g> + <ellipse id="path2210" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2211" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2212" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2213" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2214" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + </g> + <g id="g2215" transform="translate(-260.92 321.43)"> + <g id="g2216" transform="matrix(.15 0 0 .15 2790 -2140.7)" fill="#3b3bff"> + <g id="g2217" transform="translate(1261.6 8670.4)"> + <g id="g2218"> + <rect id="rect2219" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2220" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2221" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2222" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2223" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2224" transform="translate(-4610.5 4587.5)"> + <g id="g2225" transform="matrix(.95 0 0 .95 5869.2 3772.5)"> + <g id="g2226"> + <rect id="rect2227" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2228" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2229" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2230" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2231" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2232" transform="matrix(.567 0 0 .567 5848 1394.8)"> + <g id="g2233"> + <rect id="rect2234" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2235" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2236" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2237" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2238" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + <g id="g2239" transform="matrix(.51172 0 0 .51172 5844.9 1051.6)"> + <g id="g2240"> + <rect id="rect2241" height="1171.1" width="1590.9" y="-7147" x="-850.89"/> + <ellipse id="path2242" transform="matrix(1.0746 0 0 1.0635 -3130.4 -10547)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + <g id="g2243" transform="translate(-5963.8 -3463.6)"> + <rect id="rect2244" height="632.38" width="859.09" y="-3340.7" x="5478.8"/> + <ellipse id="path2245" transform="matrix(.58030 0 0 .57429 4247.9 -5088.5)" cx="2861.4" rx="740.21" cy="4267.3" ry="696.02" d="m 3601.6224,4267.3076 c 0,384.4008 -331.4036,696.0192 -740.2108,696.0192 -408.8071,0 -740.2108,-311.6184 -740.2108,-696.0192 0,-384.4008 331.4037,-696.0191 740.2108,-696.0191 408.8072,0 740.2108,311.6183 740.2108,696.0191 z"/> + </g> + </g> + </g> + </g> + <ellipse id="path2246" fill="#fff" transform="translate(-3.7817 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2247" fill="#fff" transform="translate(129.99 -7.5629)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2248" fill="#fff" transform="translate(61.922 67.595)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2249" fill="#fff" transform="translate(1.4179 140.39)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + <ellipse id="path2250" fill="#fff" transform="translate(128.57 142.75)" cx="2903" rx="35.688" cy="-1854.9" ry="35.688" d="m 2938.7051,-1854.9092 c 0,19.71 -15.9781,35.6881 -35.688,35.6881 -19.7099,0 -35.688,-15.9781 -35.688,-35.6881 0,-19.7099 15.9781,-35.688 35.688,-35.688 19.7099,0 35.688,15.9781 35.688,35.688 z"/> + </g> + </g> + </g> + </g> + </g> +</svg> diff --git a/s/flag/pw.svg b/s/flag/pw.svg new file mode 100755 index 0000000..365f73c --- /dev/null +++ b/s/flag/pw.svg @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg704" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4096"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs706"> + <clipPath id="clipPath5228" clipPathUnits="userSpaceOnUse"> + <rect id="rect5230" fill-opacity="0.67" height="480" width="640" y="-.0000016093" x="-70.28"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath5228)" transform="translate(70.28 .0000016093)" stroke-width="1pt"> + <rect id="rect721" height="480" width="846.32" y="-.0000016093" x="-173.44" fill="#4aadd6"/> + <path id="path719" d="m372.72 248.93a125.59 125.59 0 1 1 -251.18 0 125.59 125.59 0 1 1 251.18 0z" transform="matrix(1.0819 0 0 1.036 -67.613 -25.774)" fill="#ffde00"/> + </g> +</svg> diff --git a/s/flag/py.svg b/s/flag/py.svg new file mode 100755 index 0000000..143f622 --- /dev/null +++ b/s/flag/py.svg @@ -0,0 +1,242 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4313"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath5176" clipPathUnits="userSpaceOnUse"> + <rect id="rect5178" fill-opacity="0.67" height="512" width="640" y=".0000067537" x="-64"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath5176)" transform="matrix(1 0 0 .93750 64 -.0000063316)"> + <g id="g2262" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.0321 0 0 1.0321 -256 .000077199)"> + <rect id="rect2259" height="162.99" width="992.13" y="166.54" x="0" fill="#fff"/> + <rect id="rect2260" height="166.54" width="992.13" y="329.53" x="0" fill="#3d25ca"/> + <rect id="rect2261" height="166.54" width="992.13" y="-0.000067" x="0" fill="#d60000"/> + </g> + <g id="g2055" transform="matrix(.18125 0 0 .18125 183.75 156.78)"> + <path id="path2054" d="m744.14 567.26c0 192.48-157.09 348.52-350.87 348.52s-350.87-156.04-350.87-348.52 157.09-348.52 350.87-348.52 350.87 156.04 350.87 348.52z" fill-rule="evenodd" transform="matrix(1.0351 0 0 1.0421 -8.4421 -43.697)" stroke="#000" stroke-width="12.91" fill="#fff"/> + <g id="g1766" transform="matrix(.40590 0 0 .40681 257.18 329.71)" stroke="#000" stroke-width="2.6369"> + <g id="g842" fill-rule="evenodd" transform="matrix(.89726 .20468 -.22354 .92980 260.11 -31.435)" fill="#006700"> + <path id="path774" d="m259.03 105.71s400.32 70.645 414.45 395.62c14.129 324.97-188.39 367.36-259.03 419.16-70.645 51.807-113.03 113.03-146 113.03-32.968 0-80.065-14.13-80.065-14.13s9.42 51.81 75.355 47.1c65.936-4.71 127.16-113.03 164.84-131.87s277.88-98.9 259.04-428.58c-14.13-353.23-423.88-390.91-428.59-400.33z"/> + <g id="g782" transform="matrix(0.375 -.60020 .56218 .35125 34.021 138.2)"> + <path id="path780" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50148 .47086 -.31880 .60446 320.67 92.874)"/> + <path id="path778" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.57150 .29659 -.20081 .68886 224.73 97.252)"/> + <path id="path779" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50610 -.46199 .3128 .61002 -64.59 364.47)"/> + <path id="path777" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.59310 -.20779 .14069 .71490 9.6354 223.61)"/> + <path id="path776" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.61321 0 0 .73913 93.439 155.35)"/> + <path id="path781" d="m151.53 682.7c0 1.665-41.628-24.978-49.954-33.303-8.333-8.33-6.668-46.62-33.31-64.94s-54.949-9.99-68.27 1.66c-13.321 11.656-8.3257 38.298 23.312 61.61s53.284 1.666 69.936 9.991c16.651 8.326 43.294 24.976 56.615 38.297 13.321-9.99 46.623-21.646 64.94-29.972 18.316-8.325 64.941 11.656 96.578-11.656 26.642-18.316 38.297-56.614 19.981-68.27-18.317-11.656-51.619-6.66-71.6 4.996-19.982 11.656-29.972 58.279-49.955 66.605-14.986 4.995-56.614 28.307-58.279 24.977z" transform="matrix(.52514 0 0 .27822 191.54 402.47)"/> + </g> + <g id="g789" transform="matrix(.73572 -.67729 .67729 .73572 -14.339 19.529)"> + <path id="path790" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50148 .47086 -.31880 .60446 320.67 92.874)"/> + <path id="path791" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.57150 .29659 -.20081 .68886 224.73 97.252)"/> + <path id="path792" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50610 -.46199 .3128 .61002 -64.59 364.47)"/> + <path id="path793" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.59310 -.20779 .14069 .71490 9.6354 223.61)"/> + <path id="path794" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.61321 0 0 .73913 93.439 155.35)"/> + <path id="path795" d="m151.53 682.7c0 1.665-41.628-24.978-49.954-33.303-8.333-8.33-6.668-46.62-33.31-64.94s-54.949-9.99-68.27 1.66c-13.321 11.656-8.3257 38.298 23.312 61.61s53.284 1.666 69.936 9.991c16.651 8.326 43.294 24.976 56.615 38.297 13.321-9.99 46.623-21.646 64.94-29.972 18.316-8.325 64.941 11.656 96.578-11.656 26.642-18.316 38.297-56.614 19.981-68.27-18.317-11.656-51.619-6.66-71.6 4.996-19.982 11.656-29.972 58.279-49.955 66.605-14.986 4.995-56.614 28.307-58.279 24.977z" transform="matrix(.52514 0 0 .27822 191.54 402.47)"/> + </g> + <g id="g796" transform="matrix(.84890 -.52856 .52856 .84890 124.02 41.877)"> + <path id="path797" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50148 .47086 -.31880 .60446 320.67 92.874)"/> + <path id="path798" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.57150 .29659 -.20081 .68886 224.73 97.252)"/> + <path id="path799" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50610 -.46199 .3128 .61002 -64.59 364.47)"/> + <path id="path800" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.59310 -.20779 .14069 .71490 9.6354 223.61)"/> + <path id="path801" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.61321 0 0 .73913 93.439 155.35)"/> + <path id="path802" d="m151.53 682.7c0 1.665-41.628-24.978-49.954-33.303-8.333-8.33-6.668-46.62-33.31-64.94s-54.949-9.99-68.27 1.66c-13.321 11.656-8.3257 38.298 23.312 61.61s53.284 1.666 69.936 9.991c16.651 8.326 43.294 24.976 56.615 38.297 13.321-9.99 46.623-21.646 64.94-29.972 18.316-8.325 64.941 11.656 96.578-11.656 26.642-18.316 38.297-56.614 19.981-68.27-18.317-11.656-51.619-6.66-71.6 4.996-19.982 11.656-29.972 58.279-49.955 66.605-14.986 4.995-56.614 28.307-58.279 24.977z" transform="matrix(.52514 0 0 .27822 191.54 402.47)"/> + </g> + <g id="g803" transform="matrix(.98953 -.14433 .14433 .98953 329.61 1.6446)"> + <path id="path804" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50148 .47086 -.31880 .60446 320.67 92.874)"/> + <path id="path805" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.57150 .29659 -.20081 .68886 224.73 97.252)"/> + <path id="path806" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50610 -.46199 .3128 .61002 -64.59 364.47)"/> + <path id="path807" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.59310 -.20779 .14069 .71490 9.6354 223.61)"/> + <path id="path808" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.61321 0 0 .73913 93.439 155.35)"/> + <path id="path809" d="m151.53 682.7c0 1.665-41.628-24.978-49.954-33.303-8.333-8.33-6.668-46.62-33.31-64.94s-54.949-9.99-68.27 1.66c-13.321 11.656-8.3257 38.298 23.312 61.61s53.284 1.666 69.936 9.991c16.651 8.326 43.294 24.976 56.615 38.297 13.321-9.99 46.623-21.646 64.94-29.972 18.316-8.325 64.941 11.656 96.578-11.656 26.642-18.316 38.297-56.614 19.981-68.27-18.317-11.656-51.619-6.66-71.6 4.996-19.982 11.656-29.972 58.279-49.955 66.605-14.986 4.995-56.614 28.307-58.279 24.977z" transform="matrix(.52514 0 0 .27822 191.54 402.47)"/> + </g> + <g id="g810" transform="matrix(1.1499 .18520 -.17928 1.1312 447.09 -8.1525)"> + <path id="path811" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50148 .47086 -.31880 .60446 320.67 92.874)"/> + <path id="path812" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.57150 .29659 -.20081 .68886 224.73 97.252)"/> + <path id="path813" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50610 -.46199 .3128 .61002 -64.59 364.47)"/> + <path id="path814" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.59310 -.20779 .14069 .71490 9.6354 223.61)"/> + <path id="path815" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.61321 0 0 .73913 93.439 155.35)"/> + <path id="path816" d="m151.53 682.7c0 1.665-41.628-24.978-49.954-33.303-8.333-8.33-6.668-46.62-33.31-64.94s-54.949-9.99-68.27 1.66c-13.321 11.656-8.3257 38.298 23.312 61.61s53.284 1.666 69.936 9.991c16.651 8.326 43.294 24.976 56.615 38.297 13.321-9.99 46.623-21.646 64.94-29.972 18.316-8.325 64.941 11.656 96.578-11.656 26.642-18.316 38.297-56.614 19.981-68.27-18.317-11.656-51.619-6.66-71.6 4.996-19.982 11.656-29.972 58.279-49.955 66.605-14.986 4.995-56.614 28.307-58.279 24.977z" transform="matrix(.52514 0 0 .27822 191.54 402.47)"/> + </g> + <g id="g817" transform="matrix(1.0178 .80745 -.82443 .96298 756.4 48.616)"> + <path id="path818" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50148 .47086 -.31880 .60446 320.67 92.874)"/> + <path id="path819" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.57150 .29659 -.20081 .68886 224.73 97.252)"/> + <path id="path820" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.50610 -.46199 .3128 .61002 -64.59 364.47)"/> + <path id="path821" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.59310 -.20779 .14069 .71490 9.6354 223.61)"/> + <path id="path822" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.61321 0 0 .73913 93.439 155.35)"/> + <path id="path823" d="m151.53 682.7c0 1.665-41.628-24.978-49.954-33.303-8.333-8.33-6.668-46.62-33.31-64.94s-54.949-9.99-68.27 1.66c-13.321 11.656-8.3257 38.298 23.312 61.61s53.284 1.666 69.936 9.991c16.651 8.326 43.294 24.976 56.615 38.297 13.321-9.99 46.623-21.646 64.94-29.972 18.316-8.325 64.941 11.656 96.578-11.656 26.642-18.316 38.297-56.614 19.981-68.27-18.317-11.656-51.619-6.66-71.6 4.996-19.982 11.656-29.972 58.279-49.955 66.605-14.986 4.995-56.614 28.307-58.279 24.977z" transform="matrix(.52514 0 0 .27822 191.54 402.47)"/> + </g> + <g id="g834" transform="matrix(.70068 .98883 -.97411 .69025 782.3 222.78)"> + <path id="path832" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.92853 .37125 -.37125 .92853 252.11 -52.333)"/> + <path id="path833" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.87409 -.48576 .48576 .87409 -234.07 229)"/> + <path id="path831" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="translate(9.9908 14.986)"/> + </g> + <g id="g838" transform="matrix(.16083 -.47509 .76898 .18492 -139.38 169.17)"> + <path id="path839" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.92853 .37125 -.37125 .92853 252.11 -52.333)"/> + <path id="path840" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.87409 -.48576 .48576 .87409 -234.07 229)"/> + <path id="path841" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="translate(9.9908 14.986)"/> + </g> + </g> + <g id="g1623" fill-rule="evenodd" transform="matrix(.99936 -.025878 .017480 .95569 103.72 108.05)" fill="#006700"> + <path id="path673" d="m339.1 586.1s113.03 32.968 211.94 89.484c98.904 56.516 252.16 272.38 292.21 280.92 44.682-1.342 105.85-37.846 126.48-164.27-67.86 43.25-107.82 101.54-174.96 40.06-23.55-14.13-102.44-137.87-187.22-199.09-84.77-61.23-254.32-122.45-254.32-122.45l-14.129 75.356z" transform="matrix(.67307 .061265 -.021852 .36561 -223.16 555.09)"/> + <path id="path655" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.22020 -.58061 -.56170 .20187 498.33 149.41)"/> + <path id="path656" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.22082 -.58039 -.56146 .20252 482.16 153.62)"/> + <path id="path657" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.31222 -.53799 -.51625 .29737 485.55 82.607)"/> + <path id="path658" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.23174 -.60068 -.55952 .20773 468.36 154.89)"/> + <path id="path659" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.16989 -.59613 -.57891 .14997 463.29 195.77)"/> + <path id="path660" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.29638 -.58472 -.52952 .27541 460.33 120.12)"/> + <path id="path661" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.41657 -.46086 -.43642 .40677 449.75 -4.3415)"/> + <path id="path662" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.37077 -.61687 -.53581 .34039 481.04 103.22)"/> + <path id="path663" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.39501 -.59481 -.51356 .36652 476.42 82.783)"/> + <path id="path638" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.27938 -.66608 -.64876 .38722 494.14 95.882)"/> + <path id="path639" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.31006 -.64126 -.62984 .41526 493.2 73.607)"/> + <path id="path640" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.36811 -.60966 -.58877 .47184 474.07 44.859)"/> + <path id="path641" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.46201 -.52149 -.51837 .56778 463.19 -42.071)"/> + <path id="path642" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.33504 -.62763 -.61380 .43994 455.59 76.105)"/> + <path id="path643" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.31416 -.64930 -.61924 .41561 461.59 103.3)"/> + <path id="path644" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.40162 -.57445 -.57246 .50741 441.37 35.733)"/> + <path id="path645" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.53889 -.41956 -.44565 .64143 415.43 -105.63)"/> + <path id="path622" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.50728 -.62456 -.5684 .59428 465.65 14.525)"/> + <path id="path623" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.53210 -.58958 -.53942 .61853 457.63 -8.7561)"/> + <path id="path624" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.53270 -.58889 -.53882 .61919 441.32 7.0157)"/> + <path id="path625" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.61584 -.47620 -.44141 .70952 410.66 -84.735)"/> + <path id="path626" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.47964 -.63197 -.59086 .57072 436.11 57.18)"/> + <path id="path627" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.42049 -.68402 -.63433 .50718 448.7 118.68)"/> + <path id="path628" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.43061 -.69232 -.61096 .52059 413.98 112.33)"/> + <path id="path629" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.57704 -.52972 -.4751 .68536 385.94 -50.897)"/> + <path id="path551" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.59455 -.63298 -.59222 .76522 451.58 -30.354)"/> + <path id="path553" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.61990 -.58928 -.55891 .78836 441.41 -55.635)"/> + <path id="path560" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.62052 -.58840 -.55822 .78902 424.35 -35.138)"/> + <path id="path561" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.70568 -.44711 -.44574 .87684 385.32 -134.92)"/> + <path id="path562" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.62455 -.58268 -.55371 .79325 403.49 -26.088)"/> + <path id="path563" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.56829 -.65639 -.61131 .73342 427.06 39.506)"/> + <path id="path564" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.73370 -.39339 -.39064 .90553 351.09 -132.23)"/> + <path id="path565" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.81096 -.13952 -.18237 .97738 252.19 -272.91)"/> + <path id="path566" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.73184 -.39768 -.39411 .90366 340.67 -115.45)"/> + <path id="path567" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.75038 -.35265 -.35755 .92216 327.56 -141.21)"/> + <path id="path568" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.79780 -.31648 -.31043 .97647 313.84 -165.52)"/> + <path id="path569" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.83868 -.14750 -.17163 1.0158 244.27 -245.48)"/> + <path id="path570" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.76499 -.40186 -.38396 .94508 327.22 -101.8)"/> + <path id="path571" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.72444 -.49104 -.45587 .90197 365.88 -43.312)"/> + <path id="path572" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.75610 -.31701 -.29476 .99159 283.06 -143.75)"/> + <path id="path573" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.85152 -.040613 -.086611 1.0261 186.79 -259.73)"/> + <path id="path574" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.76356 -.31091 -.26627 .99585 253.97 -135.08)"/> + <path id="path575" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.77576 -.26144 -.22831 1.01 237.89 -160.04)"/> + <path id="path576" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.78450 -.23176 -.19317 1.0177 217.81 -158.32)"/> + <path id="path577" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.80583 -.057045 -.058291 1.0422 144.06 -231.29)"/> + <path id="path578" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.79918 -.19047 -.14475 1.0357 195.61 -167.06)"/> + <path id="path579" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.78151 -.28937 -.22108 1.0126 244.54 -119.77)"/> + <path id="path580" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.81036 -.073375 -.054418 1.0506 150.3 -187.11)"/> + <path id="path581" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.79583 .20748 .16214 1.0325 11.425 -282.66)"/> + <path id="path582" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.83230 -.073818 -.063234 1.0471 158.58 -166.22)"/> + <path id="path583" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.83441 -.022113 -.022132 1.0495 137.26 -185.67)"/> + <path id="path584" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.83091 -.094243 -.079468 1.0455 168.16 -145.21)"/> + <path id="path585" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.83242 .083180 .061604 1.0464 84.087 -204.96)"/> + <path id="path586" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.82497 -.15415 -.12707 1.0384 176.47 -102.86)"/> + <path id="path587" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.80889 -.25347 -.20596 1.0187 223.56 -57.902)"/> + <path id="path588" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.83401 -.036986 -.033956 1.0491 137.38 -132.48)"/> + <path id="path589" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.81322 .24218 .18814 1.0214 -19.326 -209.79)"/> + <path id="path590" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.82635 .15381 .11780 1.0384 58.116 -162.22)"/> + <path id="path591" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.80657 .27576 .21488 1.0129 7.5742 -201.31)"/> + <path id="path592" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.82529 .16284 .12499 1.037 53.836 -147.04)"/> + <path id="path593" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.77235 .40340 .31656 .96913 -65.33 -189.99)"/> + <path id="path594" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.80048 .28493 .23828 1.0098 -10.356 -150.92)"/> + <path id="path595" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.82760 .14227 .10861 1.0401 83.037 -122.66)"/> + <path id="path596" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.76878 .39613 .32636 .97156 -59.056 -143.04)"/> + <path id="path597" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.65490 .63930 .51831 .83196 -220.52 -149.44)"/> + <path id="path598" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.77032 .39153 .32271 .97342 -55.223 -122.15)"/> + <path id="path599" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.75348 .43904 .36029 .95294 -81.31 -127.85)"/> + <path id="path600" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.75308 .44009 .36113 .95245 -73.123 -100.27)"/> + <path id="path601" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.68150 .59422 .48280 .86473 -169.94 -99.097)"/> + <path id="path602" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.75044 .44697 .36657 .94924 -75.725 -73.307)"/> + <path id="path603" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.78227 .35344 .29256 .98789 -13.052 -71.768)"/> + <path id="path604" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.70471 .55038 .44824 .89327 -122.62 -55.466)"/> + <path id="path605" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.49745 .81292 .67456 .65902 -326.81 -30.979)"/> + <path id="path606" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.67755 .57664 .49337 .87330 -146.45 -46.203)"/> + <path id="path607" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.65241 .61898 .52617 .84381 -172.89 -45.262)"/> + <path id="path608" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.65182 .61993 .52690 .84312 -159.84 -20.278)"/> + <path id="path609" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.50705 .80342 .66738 .67058 -286.39 19.592)"/> + <path id="path610" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.60805 .68475 .57686 .79138 -190.41 12.602)"/> + <path id="path611" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.66079 .60532 .5156 .85367 -130.32 -7.1051)"/> + <path id="path612" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.53968 0.769 .64128 .70978 -230.83 45.662)"/> + <path id="path613" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.19550 .97660 .82904 .34045 -469.03 180.53)"/> + <path id="path614" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.54271 .76564 .63872 .71342 -219.87 62.62)"/> + <path id="path615" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.37436 .87687 .76510 .54840 -348.1 103.99)"/> + <path id="path616" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.37351 .87749 .76552 .54743 -327.73 121.39)"/> + <path id="path617" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.23925 .95715 .81749 .39183 -403.67 188.09)"/> + <path id="path618" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.36797 .88142 .76820 .54107 -316.2 145.59)"/> + <path id="path619" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.44027 .82519 .72917 .62347 -265.88 104.33)"/> + <path id="path620" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.27970 .93643 .80455 .43904 -344.27 192.27)"/> + <path id="path621" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.056628 1.0193 .84990 .17535 -456.93 323.18)"/> + <path id="path664" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(.020168 -.39188 -.61627 .040304 498.97 161.08)"/> + <path id="path665" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(.016015 -.40284 -.61767 .036364 470.02 162.81)"/> + <path id="path666" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.084592 -.37938 -.61077 .10615 525.98 120.63)"/> + <path id="path667" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.18817 -.47728 -.59826 .20148 516.32 112.47)"/> + <path id="path668" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(.074343 -.39391 -.61211 .0056470 437.32 192.49)"/> + <path id="path669" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.054047 -.38420 -.61423 .087112 464.53 145.6)"/> + <path id="path670" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.21479 -.34741 -.57798 .18575 503.79 66.8)"/> + <path id="path671" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.12891 -.54735 -.45778 .086234 407.59 198.43)"/> + <path id="path672" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.15109 -.53870 -.44765 .11133 408.8 182.53)"/> + <path id="path1609" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(.029557 .99554 .88443 .14490 -527.6 335.38)"/> + <path id="path1610" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.16718 .93867 .86898 .36192 -427.03 233.56)"/> + <path id="path1611" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.017451 .98644 .88475 .19757 -462.22 328.02)"/> + <path id="path1612" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.15992 .94166 .87035 .35408 -386.57 266.9)"/> + <path id="path1613" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.24302 .90317 .85090 .44315 -346.84 215.36)"/> + <path id="path1614" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.061519 .97537 .88278 .24648 -403.41 318.71)"/> + <path id="path1615" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(.17448 1.0058 .86755 -.020642 -483.67 471.63)"/> + <path id="path1616" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(.10114 .99083 .89256 .080863 -503.33 405.32)"/> + <path id="path1617" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.099170 .94827 .89278 .29843 -410.35 296.52)"/> + <path id="path1618" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(.053604 .98514 .89668 .13336 -438.65 393.27)"/> + <path id="path1619" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(-.091716 .95073 .89358 .29051 -367.59 326.87)"/> + <path id="path1620" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(-.17738 .91832 .88059 .38075 -331.68 272.6)"/> + <path id="path1621" d="m248.44 462.47c29.436 48.274 77.71 121.28 101.26 170.73 26.295-51.807 74.962-128.34 104.79-175.44-31.79 36.107-71.822 88.699-104.79 116.56-33.36-27.866-70.253-78.103-101.26-111.86z" transform="matrix(.0088532 .97727 .89823 .18229 -380.66 379.75)"/> + <path id="path1622" d="m332.03 604.94c1.177 0 21.194-164.84 21.194-164.84l17.661 164.84-20.016 28.258-18.839-28.258z" transform="matrix(.24643 .99065 .86381 -.083039 -449.71 538.06)"/> + </g> + <g id="g1752" transform="matrix(1.1008 0 0 1.0798 111.21 31.501)"> + <path id="path1353" d="m374.65 434.6c0 66.213-53.676 119.89-119.89 119.89-66.213 0-119.89-53.676-119.89-119.89 0-66.213 53.676-119.89 119.89-119.89 66.213 0 119.89 53.676 119.89 119.89z" fill-rule="evenodd" transform="matrix(2.1427 0 0 2.2166 -324.43 -513.33)" fill="#3d25ca"/> + <path id="path1740" d="m353.57 628.49-130.85-89.51-130.85 89.51 49.07-143.21-114.5-89.51h147.21l49.069-143.21 49.069 143.21h147.21l-114.49 89.507 49.069 143.21z" fill-rule="evenodd" transform="matrix(1.0832 0 0 .98968 -10.924 -12.555)" fill="#ffd900"/> + <path id="path1741" d="m17.716 379.13 212.6 53.15" fill="none"/> + <path id="path1742" d="m230.32 237.4v194.88" fill="none"/> + <path id="path1743" d="m230.32 432.28v88.583" fill="none"/> + <path id="path1744" d="m230.32 432.28 88.583 35.434" fill="none"/> + <path id="path1745" d="m177.16 379.13 53.15 53.149" fill="none"/> + <path id="path1746" d="m230.32 432.28 53.15-53.149" fill="none"/> + <path id="path1747" d="m442.91 379.13-212.59 53.15" fill="none"/> + <path id="path1748" d="m230.32 432.28 141.73 177.17" fill="none"/> + <path id="path1749" d="m230.32 432.28-141.74 177.17" fill="none"/> + <path id="path1750" d="m141.73 467.72 88.583-35.434" fill="none"/> + </g> + </g> + <g id="g2032"> + <path id="path1963" d="m637.79 325.98c0 117.36-95.243 212.6-212.6 212.6s-212.6-95.243-212.6-212.6c0-117.35 95.244-212.6 212.6-212.6 117.35 0 212.6 95.244 212.6 212.6zm70.867 0c0 156.47-126.99 283.46-283.46 283.46s-283.46-126.99-283.46-283.46 126.99-283.46 283.46-283.46 283.46 126.99 283.46 283.46z" fill-rule="evenodd" transform="matrix(1.0938 0 0 1.0938 -66.437 190.9)" stroke="#000" stroke-width="1.0328pt" fill="#d60000"/> + <path id="path1968" d="m790.76 189.65v-21.772l-17.561-29.625h7.335l8.985 15.497c1.654 2.898 3.198 5.796 4.63 8.694 1.363-2.688 3.023-5.715 4.969-9.08l8.826-15.111h7.022l-18.176 29.625v21.772h-6.03z" transform="matrix(-.34698 .93787 -.93787 -.34698 1087.2 -72.78)" stroke-width="1pt" fill="#ffe600"/> + <path id="path1971" d="m719.4 138.25h6.031v29.695c0 5.166-0.52 9.268-1.554 12.306-1.04 3.039-2.912 5.516-5.628 7.433-2.694 1.893-6.237 2.84-10.628 2.84-4.27 0-7.759-0.83-10.47-2.489-2.715-1.66-4.651-4.056-5.812-7.188-1.162-3.155-1.74-7.456-1.74-12.902v-29.695h6.025v29.661c0 4.464 0.366 7.759 1.093 9.886 0.742 2.104 2.004 3.728 3.786 4.874 1.804 1.145 3.999 1.717 6.593 1.717 4.428 0 7.589-1.133 9.478-3.401 1.882-2.267 2.826-6.626 2.826-13.076v-29.661z" transform="matrix(.10883 .99406 -.99406 .10883 751.51 -205.45)" stroke-width="1pt" fill="#ffe600"/> + <path id="path1972" d="m661.32 169.49v-6.03l19.295-0.035v19.072c-2.96 2.665-6.015 4.675-9.165 6.03-3.151 1.332-6.38 1.999-9.695 1.999-4.477 0-8.55-1.075-12.215-3.226-3.649-2.174-6.401-5.305-8.268-9.396-1.862-4.09-2.795-8.659-2.795-13.708 0-5.002 0.923-9.665 2.768-13.988 1.862-4.348 4.535-7.573 8.014-9.677 3.48-2.104 7.489-3.155 12.029-3.155 3.294 0 6.264 0.607 8.916 1.823 2.673 1.192 4.768 2.863 6.279 5.013 1.512 2.151 2.663 4.956 3.447 8.415l-5.436 1.682c-0.684-2.617-1.533-4.674-2.546-6.17-1.018-1.496-2.466-2.688-4.354-3.576-1.883-0.911-3.978-1.367-6.274-1.367-2.758 0-5.139 0.479-7.149 1.437-2.011 0.935-3.639 2.174-4.88 3.716-1.22 1.543-2.174 3.238-2.859 5.084-1.161 3.179-1.739 6.626-1.739 10.343 0 4.581 0.695 8.414 2.079 11.499 1.411 3.085 3.453 5.376 6.126 6.872 2.673 1.495 5.51 2.243 8.512 2.243 2.609 0 5.16-0.561 7.648-1.683 2.482-1.145 4.37-2.36 5.654-3.645v-9.572h-13.392z" transform="matrix(.19869 .98006 -.98006 .19869 685.86 -216.97)" stroke-width="1pt" fill="#ffe600"/> + <path id="path1981" d="m413.37 189.65v-51.397h6.025v45.332h22.439v6.065h-28.464z" transform="matrix(0.985 .17257 -.17257 0.985 61.223 44.283)" stroke-width="1pt" fill="#ffe600"/> + <path id="path1982" d="m371.29 189.65v-51.397h32.941v6.066h-26.91v15.741h25.203v6.03h-25.203v17.495h27.966v6.065h-33.997z" transform="translate(14.314 109.37)" stroke-width="1pt" fill="#ffe600"/> + <path id="path1987" d="m251.62 171.63 6.025 1.718c-1.262 5.586-3.543 9.852-6.836 12.796-3.273 2.922-7.282 4.383-12.024 4.383-4.911 0-8.91-1.122-11.997-3.366-3.065-2.267-5.404-5.539-7.022-9.817-1.596-4.277-2.392-8.87-2.392-13.778 0-5.352 0.902-10.015 2.7-13.989 1.824-3.997 4.402-7.023 7.738-9.08 3.357-2.08 7.049-3.12 11.063-3.12 4.562 0 8.391 1.309 11.499 3.926 3.108 2.618 5.272 6.299 6.497 11.044l-5.935 1.578c-1.055-3.74-2.593-6.463-4.598-8.169-2.01-1.706-4.54-2.559-7.584-2.559-3.501 0-6.434 0.946-8.794 2.839-2.344 1.894-3.988 4.441-4.943 7.644-0.955 3.178-1.427 6.462-1.427 9.851 0 4.371 0.557 8.192 1.676 11.465 1.141 3.248 2.901 5.679 5.283 7.292 2.381 1.612 4.964 2.419 7.738 2.419 3.378 0 6.237-1.099 8.576-3.296 2.344-2.197 3.925-5.457 4.757-9.781z" transform="matrix(.76014 -.64976 .64976 .76014 -59.543 364.33)" stroke-width="1pt" fill="#ffe600"/> + <path id="path1988" d="m202.45 189.65v-51.397h6.03v51.397h-6.03z" transform="matrix(.66836 -.74384 .74384 .66836 -54.644 400.36)" stroke-width="1pt" fill="#ffe600"/> + <path id="path1989" d="m165.78 189.65v-51.397h6.03v45.332h22.434v6.065h-28.464z" transform="matrix(.60945 -.79282 .79282 .60945 -54.38 421.56)" stroke-width="1pt" fill="#ffe600"/> + <path id="path1993" d="m107.51 138.25h6.025v29.695c0 5.166-0.514 9.268-1.548 12.306-1.04 3.039-2.912 5.516-5.627 7.433-2.695 1.893-6.238 2.84-10.629 2.84-4.2695 0-7.7593-0.83-10.475-2.489-2.7101-1.66-4.6513-4.056-5.8075-7.188-1.1615-3.155-1.7396-7.456-1.7396-12.902v-29.695h6.025v29.661c0 4.464 0.3659 7.759 1.0872 9.886 0.7479 2.104 2.0101 3.728 3.7922 4.874 1.8032 1.145 3.9989 1.717 6.5871 1.717 4.4339 0 7.5944-1.133 9.4834-3.401 1.882-2.267 2.826-6.626 2.826-13.076v-29.661z" transform="matrix(.36842 -.92966 .92966 .36842 -47.569 485.03)" stroke-width="1pt" fill="#ffe600"/> + <path id="path1996" d="m-7.1562 189.65v-51.397h32.941v6.066h-26.916v15.741h25.203v6.03h-25.203v17.495h27.972v6.065h-33.997z" transform="matrix(-.0082977 -.99997 .99997 -.0082977 -39.126 554.8)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2001" d="m325.2 189.65v-51.397h15.693c3.543 0 6.243 0.246 8.11 0.737 2.609 0.678 4.836 1.904 6.682 3.681 2.403 2.29 4.195 5.224 5.373 8.8 1.204 3.553 1.803 7.619 1.803 12.2 0 3.903-0.403 7.363-1.209 10.378-0.812 3.015-1.846 5.516-3.108 7.503-1.262 1.963-2.652 3.517-4.164 4.663-1.495 1.121-3.304 1.974-5.441 2.559-2.111 0.584-4.545 0.876-7.303 0.876h-16.436zm6.025-6.065h9.727c3.007 0 5.356-0.315 7.053-0.947 1.724-0.631 3.087-1.519 4.105-2.664 1.427-1.613 2.536-3.775 3.326-6.486 0.806-2.735 1.209-6.042 1.209-9.922 0-5.375-0.785-9.501-2.36-12.376-1.554-2.898-3.447-4.838-5.686-5.82-1.617-0.701-4.216-1.051-7.801-1.051h-9.573v39.266z" transform="matrix(.98024 -.19783 .19783 .98024 -13.77 184.73)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2004" d="m466.69 189.65v-51.397h17.189c3.023 0 5.335 0.164 6.927 0.491 2.238 0.421 4.115 1.227 5.627 2.419 1.511 1.169 2.726 2.817 3.633 4.943 0.933 2.127 1.4 4.465 1.4 7.012 0 4.371-1.231 8.076-3.697 11.114-2.466 3.015-6.921 4.523-13.365 4.523h-11.684v20.895h-6.03zm6.03-26.961h11.779c3.893 0 6.662-0.817 8.295-2.453 1.639-1.637 2.456-3.939 2.456-6.907 0-2.15-0.488-3.985-1.459-5.505-0.954-1.542-2.216-2.559-3.792-3.05-1.013-0.303-2.89-0.455-5.627-0.455h-11.652v18.37z" transform="matrix(.88663 .46248 -.46248 .88663 182.56 -57.182)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2007" d="m504.14 189.65 17.497-51.397h6.491l18.648 51.397h-6.868l-5.314-15.566h-19.051l-5.002 15.566h-6.401zm13.142-21.106h15.45l-4.757-14.234c-1.448-4.323-2.525-7.876-3.23-10.657-0.584 3.295-1.4 6.567-2.456 9.816l-5.007 15.075z" transform="matrix(.74426 .66789 -.66789 .74426 286.34 -137.51)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2012" d="m551.69 189.65v-51.397h20.197c4.062 0 7.149 0.468 9.26 1.403 2.116 0.912 3.803 2.535 5.07 4.873 1.263 2.337 1.894 4.92 1.894 7.748 0 3.646-1.045 6.72-3.14 9.221-2.09 2.501-5.325 4.09-9.695 4.768 1.596 0.864 2.805 1.718 3.638 2.559 1.761 1.823 3.426 4.102 5.001 6.837l7.924 13.988h-7.584l-6.025-10.693c-1.761-3.085-3.214-5.446-4.354-7.082-1.135-1.636-2.164-2.781-3.077-3.435-0.891-0.655-1.803-1.111-2.731-1.368-0.684-0.164-1.803-0.246-3.357-0.246h-6.99v22.824h-6.031zm6.031-28.713h12.957c2.752 0 4.911-0.316 6.465-0.947 1.554-0.654 2.731-1.683 3.543-3.085 0.806-1.426 1.209-2.969 1.209-4.628 0-2.431-0.785-4.429-2.36-5.995-1.554-1.566-4.021-2.349-7.399-2.349h-14.415v17.004z" transform="matrix(.60879 .79333 -.79333 .60879 386.21 -178.23)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2015" d="m592.55 189.65 17.497-51.397h6.492l18.647 51.397h-6.868l-5.314-15.566h-19.051l-5.001 15.566h-6.402zm13.143-21.106h15.449l-4.757-14.234c-1.448-4.323-2.53-7.876-3.23-10.657-0.583 3.295-1.4 6.567-2.456 9.816l-5.006 15.075z" transform="matrix(.48763 .87305 -.87305 .48763 475.73 -199.8)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2018" d="m730.47 189.65 17.497-51.397h6.491l18.648 51.397h-6.868l-5.314-15.566h-19.051l-5.002 15.566h-6.401zm13.142-21.106h15.445l-4.752-14.234c-1.454-4.323-2.53-7.876-3.23-10.657-0.584 3.295-1.401 6.567-2.456 9.816l-5.007 15.075z" transform="matrix(-0.104 .99458 -.99458 -0.104 908.9 -163.73)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2021" d="m-53.15 189.65v-51.397h20.196c4.0626 0 7.1494 0.468 9.2602 1.403 2.1162 0.912 3.8027 2.535 5.0703 4.873 1.2623 2.337 1.8934 4.92 1.8934 7.748 0 3.646-1.0448 6.72-3.1397 9.221-2.0897 2.501-5.3249 4.09-9.6952 4.768 1.5965 0.864 2.8057 1.718 3.6384 2.559 1.7608 1.823 3.4261 4.102 5.0013 6.837l7.9237 13.988h-7.5842l-6.025-10.693c-1.7608-3.085-3.214-5.446-4.3543-7.082-1.135-1.636-2.1639-2.781-3.0762-3.435-0.891-0.655-1.8032-1.111-2.7313-1.368-0.6842-0.164-1.8033-0.246-3.3573-0.246h-6.9902v22.824h-6.0303zm6.0303-28.713h12.957c2.7526 0 4.9112-0.316 6.4651-0.947 1.554-0.654 2.7314-1.683 3.5429-3.085 0.8062-1.426 1.2092-2.969 1.2092-4.628 0-2.431-0.7849-4.429-2.3601-5.995-1.554-1.566-4.0202-2.349-7.3986-2.349h-14.415v17.004z" transform="matrix(-.21523 -.97656 .97656 -.21523 -37.95 596.54)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2024" d="m35.167 189.65v-51.397h17.184c3.0284 0 5.3355 0.164 6.9319 0.491 2.2381 0.421 4.1103 1.227 5.6272 2.419 1.5115 1.169 2.7207 2.817 3.633 4.943 0.9334 2.127 1.4001 4.465 1.4001 7.012 0 4.371-1.2357 8.076-3.6966 11.114-2.4662 3.015-6.9213 4.523-13.365 4.523h-11.684v20.895h-6.0302zm6.0302-26.961h11.78c3.8929 0 6.6561-0.817 8.2949-2.453 1.6389-1.637 2.4556-3.939 2.4556-6.907 0-2.15-0.4879-3.985-1.4585-5.505-0.9546-1.542-2.2169-2.559-3.7921-3.05-1.0183-0.303-2.8905-0.455-5.6272-0.455h-11.652v18.37z" transform="matrix(.085737 -.99632 .99632 .085737 -39.533 533.62)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2028" d="m123.33 189.65v-51.397h17.094c3.479 0 6.263 0.526 8.358 1.578 2.111 1.029 3.761 2.63 4.943 4.803 1.199 2.15 1.798 4.406 1.798 6.767 0 2.197-0.525 4.265-1.58 6.205-1.061 1.94-2.652 3.506-4.789 4.698 2.757 0.911 4.868 2.466 6.343 4.663 1.49 2.197 2.238 4.791 2.238 7.783 0 2.407-0.456 4.651-1.368 6.732-0.891 2.056-2 3.645-3.326 4.767s-2.996 1.975-5.006 2.56c-1.989 0.561-4.434 0.841-7.33 0.841h-17.375zm6.03-29.8h9.849c2.673 0 4.593-0.199 5.749-0.596 1.533-0.514 2.684-1.367 3.453-2.559 0.785-1.192 1.177-2.688 1.177-4.488 0-1.706-0.36-3.202-1.087-4.487-0.721-1.31-1.761-2.198-3.108-2.665-1.347-0.491-3.654-0.736-6.926-0.736h-9.107v15.531zm0 23.735h11.345c1.946 0 3.315-0.082 4.1-0.245 1.389-0.281 2.545-0.748 3.479-1.403 0.933-0.655 1.702-1.601 2.302-2.84 0.599-1.262 0.901-2.711 0.901-4.347 0-1.917-0.435-3.576-1.305-4.979-0.869-1.425-2.084-2.419-3.638-2.979-1.533-0.585-3.75-0.877-6.651-0.877h-10.533v17.67z" transform="matrix(.55474 -.83202 .83202 .55474 -52.297 436.28)" stroke-width="1pt" fill="#ffe600"/> + <path id="path2031" d="m260.06 189.65 17.497-51.397h6.497l18.642 51.397h-6.863l-5.314-15.566h-19.051l-5.007 15.566h-6.401zm13.148-21.106h15.444l-4.752-14.234c-1.453-4.323-2.53-7.876-3.235-10.657-0.578 3.295-1.395 6.567-2.456 9.816l-5.001 15.075z" transform="matrix(.84688 -.53178 .53178 .84688 -62.478 318.04)" stroke-width="1pt" fill="#ffe600"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/qa.svg b/s/flag/qa.svg new file mode 100755 index 0000000..3b27f98 --- /dev/null +++ b/s/flag/qa.svg @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4320"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath3030" clipPathUnits="userSpaceOnUse"> + <rect id="rect3032" fill-opacity="0.67" height="512" width="682.67" y=".0000024116" x="-27.334"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath3030)" transform="matrix(.9375 0 0 .9375 25.626 -.0000022609)" stroke-width="1pt"> + <rect id="rect171" height="512" width="768" y=".0000024116" x="-70" fill="#660057"/> + <path id="path193" d="m86.533 511.76-156.53 0.24-0.003-512 155.8 0.081472 100.53 32.327-99.795 31.51l99.791 32.489-99.791 31.511 99.791 32.489-99.791 31.511 99.791 32.489-99.791 31.511 99.791 32.49-99.791 31.511 99.791 32.49-99.791 31.511 99.791 32.489-99.791 31.511 99.791 32.489-99.791 31.511" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/re.svg b/s/flag/re.svg new file mode 100755 index 0000000..011a681 --- /dev/null +++ b/s/flag/re.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4328"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="scale(.60207 .67733)"> + <rect id="rect171" height="708.66" width="1063" y="0" x="0" fill="#fff"/> + <rect id="rect403" height="708.66" width="354.33" y="0" x="0" fill="#00267f"/> + <rect id="rect135" height="708.66" width="354.33" y="0" x="708.66" fill="#f31830"/> + </g> +</svg> diff --git a/s/flag/ro.svg b/s/flag/ro.svg new file mode 100755 index 0000000..df8e272 --- /dev/null +++ b/s/flag/ro.svg @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>New Zealand, Australia, United Kingdom, United States, +Bosnia and Herzegovina, Azerbaijan, Armenia, Bahamas, Belgium, Benin, +Bulgaria, Estonia, Finland, Gabon, Gambia, Germany, Greece, Greenland, +Guinea, Honduras, Israel, Jamaica, Jordan, and Romania Flags</dc:title> + <dc:rights><Agent> + <dc:title>Daniel McRae</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> +</rdf:RDF> +--> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4337"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" transform="scale(.64064 .72072)"> + <g id="g555" fill-rule="evenodd" stroke-width="1pt" transform="scale(8.325)"> + <rect id="rect551" height="80" width="40" y="0" x="0" fill="#00319c"/> + <rect id="rect552" height="80" width="40" y="0" x="40" fill="#ffde00"/> + <rect id="rect553" height="80" width="40" y="0" x="80" fill="#de2110"/> + </g> + </g> +</svg> diff --git a/s/flag/rs.svg b/s/flag/rs.svg new file mode 100755 index 0000000..601d9ce --- /dev/null +++ b/s/flag/rs.svg @@ -0,0 +1,1562 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<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" + width="640" + height="480" + id="svg2" + version="1.1" + inkscape:version="0.48.4 r9939" + sodipodi:docname="rs.svg"> + <metadata + id="metadata607"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <defs + id="defs605"> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath3890"> + <rect + style="fill:#000000;fill-rule:evenodd;stroke:none" + id="rect3892" + width="1200" + height="900" + x="60" + y="5.3290705e-14" /> + </clipPath> + </defs> + <sodipodi:namedview + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1" + objecttolerance="10" + gridtolerance="10" + guidetolerance="10" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:window-width="1215" + inkscape:window-height="776" + id="namedview603" + showgrid="false" + inkscape:zoom="1.24375" + inkscape:cx="328" + inkscape:cy="240" + inkscape:window-x="65" + inkscape:window-y="24" + inkscape:window-maximized="1" + inkscape:current-layer="svg2" /> + <g + id="flag" + transform="matrix(0.53333333,0,0,0.53333333,-32,0)" + clip-path="url(#clipPath3890)" + inkscape:label="#g3584"> + <rect + id="rect4" + height="900" + width="1350" + x="0" + y="0" + style="fill:#ffffff" /> + <rect + id="rect6" + height="600" + width="1350" + x="0" + y="0" + style="fill:#0c4076" /> + <rect + id="rect8" + height="300" + width="1350" + x="0" + y="0" + style="fill:#c6363c" /> + <g + id="g10"> + <g + id="g12" + transform="matrix(1,0,0,1.0043716,0,-0.32788075)"> + <path + id="path14" + d="m 473.38,259.35 0.006,-0.17558 1.0099,0.0337 -0.006,0.17559 -0.48224,0.49188 -0.52761,-0.52559 z m 1.0098,0.0337 -0.0156,0.47143 -0.46673,0.0205 0.48224,-0.49188 z m -93.132,5.2436 -0.98838,0.21166 0.46197,-0.61455 4.1457,-0.26338 4.0657,-0.25738 3.9858,-0.25013 3.9058,-0.24415 3.8258,-0.23812 3.7458,-0.23091 3.6658,-0.2261 3.587,-0.21888 3.5071,-0.21166 3.4259,-0.20687 3.3471,-0.19963 3.2672,-0.19483 3.1872,-0.18761 3.1096,-0.18161 3.0284,-0.17558 2.9484,-0.16958 2.8685,-0.16356 2.7897,-0.15755 2.7109,-0.15153 2.6309,-0.14552 2.5509,-0.1395 2.4721,-0.1335 2.3934,-0.12869 2.3134,-0.12145 2.2334,-0.11667 2.1558,-0.11064 2.0746,-0.10342 1.9959,-0.0997 1.9171,-0.0925 1.8383,-0.0878 1.7583,-0.0818 1.6795,-0.0758 0.0454,1.0174 -1.6795,0.0758 -1.7559,0.0818 -1.8383,0.0878 -1.9147,0.0926 -1.9959,0.0997 -2.0746,0.10343 -2.1534,0.11064 -2.2334,0.11666 -2.3134,0.12147 -2.391,0.12869 -2.4721,0.13349 -2.5509,0.13951 -2.6309,0.14551 -2.7085,0.15154 -2.7897,0.15756 -2.8684,0.16355 -2.9484,0.16957 -3.0284,0.17559 -3.1072,0.1816 -3.1872,0.18761 -3.2672,0.19483 -3.3471,0.19964 -3.4259,0.20685 -3.5071,0.21167 -3.5847,0.21889 -3.6658,0.22609 -3.7458,0.23091 -3.8258,0.23813 -3.9058,0.24414 -3.9857,0.25015 -4.0633,0.25736 -4.1457,0.26338 0.46196,-0.61455 z m -0.98838,0.21166 -0.12175,-0.57726 0.58372,-0.0372 -0.46197,0.61455 z m 6.5343,31.051 -6.5343,-31.051 0.98838,-0.21166 6.5343,31.051 -0.47986,0.61455 -0.50852,-0.40289 z m 0.50852,0.40289 -0.42138,0.012 -0.0871,-0.41491 0.50851,0.40289 z m 94.846,-4.0806 -0.031,1.0174 0.031,0 -2.8792,0.0878 -2.9007,0.0902 -2.9222,0.0914 -2.9389,0.0937 -2.9568,0.095 -2.9711,0.0962 -2.9866,0.0974 -2.9974,0.0997 -3.0081,0.0997 -3.0177,0.0997 -3.0236,0.10222 -3.0296,0.10096 -3.0344,0.10222 -3.0356,0.10342 -3.0356,0.10223 -3.0356,0.10222 -3.032,0.10223 -3.0284,0.10106 -3.0212,0.10222 -3.0153,0.0999 -3.0045,0.0997 -2.9938,0.0986 -2.9819,0.0974 -2.9675,0.0962 -2.952,0.0938 -2.9329,0.0925 -2.915,0.0914 -2.8935,0.089 -2.872,0.0878 -2.8482,0.0842 -2.8207,0.083 -2.7944,0.0795 -0.0287,-1.0174 2.7944,-0.0793 2.8207,-0.083 2.8458,-0.0842 2.872,-0.0878 2.8935,-0.089 2.915,-0.0914 2.9329,-0.0925 2.952,-0.0938 2.9651,-0.0962 2.9818,-0.0974 2.9938,-0.0985 3.0045,-0.0997 3.0153,-0.0997 3.0212,-0.10223 3.0284,-0.10096 3.032,-0.10223 3.0356,-0.10222 3.0356,-0.10223 3.0356,-0.10343 3.0344,-0.10223 3.0296,-0.10106 3.0236,-0.10222 3.0177,-0.0997 3.0081,-0.0997 2.9974,-0.0997 2.9866,-0.0974 2.9711,-0.0962 2.9592,-0.095 2.9389,-0.0938 2.9222,-0.0914 2.9007,-0.0902 2.8792,-0.0878 0.031,0 z m -0.031,0 0.0156,0 0.0156,0 -0.031,0 z m 94.368,3.466 0.98838,0.21167 -0.50852,0.40289 -2.7944,-0.0795 -2.8207,-0.083 -2.8494,-0.0842 -2.8708,-0.0878 -2.8935,-0.089 -2.915,-0.0914 -2.9329,-0.0925 -2.952,-0.0937 -2.9687,-0.0962 -2.9806,-0.0974 -2.9938,-0.0986 -3.0057,-0.0998 -3.0141,-0.0998 -3.0224,-0.10222 -3.0272,-0.10106 -3.0332,-0.10223 -3.0344,-0.10222 -3.0368,-0.10223 -3.0356,-0.10343 -3.0332,-0.10221 -3.0296,-0.10107 -3.0248,-0.10222 -3.0165,-0.0997 -3.0093,-0.0997 -2.9974,-0.0999 -2.9854,-0.0974 -2.9723,-0.0962 -2.9568,-0.095 -2.9389,-0.0938 -2.9222,-0.0914 -2.9007,-0.0902 -2.8792,-0.0878 0.031,-1.0174 2.8792,0.0878 2.9007,0.0902 2.9222,0.0914 2.9389,0.0938 2.9592,0.095 2.9723,0.0962 2.9854,0.0974 2.9974,0.0997 3.0093,0.0998 3.0165,0.0998 3.0248,0.10222 3.0296,0.10106 3.0332,0.10223 3.0356,0.10343 3.0368,0.10223 3.0344,0.10222 3.0332,0.10223 3.0272,0.10096 3.0224,0.10223 3.0141,0.0997 3.0057,0.0997 2.9938,0.0985 2.9807,0.0974 2.9663,0.0962 2.952,0.0938 2.9329,0.0925 2.915,0.0914 2.8935,0.089 2.8708,0.0878 2.847,0.0842 2.8207,0.083 2.7944,0.0793 -0.50852,0.40289 z m 0.98838,0.21167 -0.0871,0.41491 -0.42138,-0.012 0.50852,-0.40289 z m 6.5343,-31.051 -6.5343,31.051 -0.98838,-0.21167 6.5343,-31.051 0.52642,-0.40289 0.46196,0.61456 z m -0.46196,-0.61456 0.58373,0.0372 -0.12177,0.57727 -0.46196,-0.61455 z m -93.659,-4.8395 1.0099,-0.0337 -0.48225,-0.49189 1.6795,0.0758 1.7583,0.0818 1.8383,0.0878 1.9171,0.0925 1.9959,0.0985 2.0746,0.10463 2.1558,0.11064 2.2334,0.11546 2.3134,0.12267 2.3934,0.12748 2.4721,0.13349 2.5509,0.13951 2.6309,0.14552 2.7109,0.15153 2.7897,0.15755 2.8684,0.16356 2.9484,0.16957 3.0284,0.17559 3.1096,0.1816 3.1872,0.18761 3.2672,0.19482 3.3471,0.19965 3.4259,0.20686 3.5071,0.21167 3.5871,0.21887 3.6658,0.2261 3.7458,0.23092 3.8258,0.23812 3.9058,0.24413 3.9858,0.25015 4.0657,0.25738 4.1457,0.26338 -0.0645,1.0174 -4.1457,-0.26337 -4.0633,-0.25737 -3.9858,-0.25015 -3.9058,-0.24415 -3.8258,-0.23812 -3.7458,-0.2309 -3.6658,-0.2261 -3.5847,-0.21889 -3.5071,-0.21167 -3.4259,-0.20685 -3.3471,-0.19964 -3.2672,-0.19483 -3.1872,-0.18761 -3.1072,-0.1816 -3.0284,-0.17559 -2.9484,-0.16957 -2.8684,-0.16357 -2.7897,-0.15754 -2.7085,-0.15153 -2.6309,-0.14552 -2.5509,-0.13951 -2.4721,-0.13349 -2.391,-0.12748 -2.3134,-0.12268 -2.2334,-0.11545 -2.1534,-0.11065 -2.0746,-0.10462 -1.9958,-0.0986 -1.9147,-0.0926 -1.8383,-0.0878 -1.7559,-0.0818 -1.6795,-0.0758 -0.48225,-0.4919 z m 0.48224,0.49189 -0.46673,-0.0205 -0.0156,-0.47144 0.48224,0.49188 z m 0.52164,-0.70235 0.006,0.17679 -1.0099,0.0337 -0.006,-0.17679 0.40823,-0.51713 0.60162,0.48346 z m -1.0098,0.0337 -0.0144,-0.43415 0.42256,-0.083 -0.40823,0.51713 z m -7.7662,0.33554 0.0358,-1.0174 -0.0358,0 0.66966,-0.0228 0.6446,-0.0205 0.61595,-0.0193 0.58969,-0.0169 0.56462,-0.0157 0.53716,-0.0132 0.50971,-0.012 0.48583,-0.012 0.45719,-0.007 0.43092,-0.007 0.40585,-0.005 0.3796,-0.002 0.35333,-10e-4 0.32588,10e-4 0.29962,0.002 0.27574,0.004 0.25068,0.007 0.22323,0.008 0.19934,0.008 0.17786,0.0132 0.1516,0.0145 0.13249,0.0168 0.12415,0.0228 0.13966,0.0444 0.20651,0.14071 0.11937,0.52917 -0.20771,0.28022 -0.14085,0.0782 -0.11937,0.0445 -0.12653,0.036 -0.14324,0.0349 -0.16473,0.0337 -0.19339,-1.0006 0.14086,-0.0288 0.10744,-0.0253 0.074,-0.0217 0.0263,-0.008 -0.0477,0.0277 -0.16712,0.2345 0.10744,0.48588 0.13966,0.0998 0.0226,0.008 -0.0477,-0.008 -0.0919,-0.012 -0.12533,-0.012 -0.15161,-0.0108 -0.18262,-0.008 -0.21369,-0.008 -0.23873,-0.005 -0.26618,-0.004 -0.29486,-0.002 -0.3211,-0.001 -0.34857,0.001 -0.3748,0.002 -0.40109,0.005 -0.42854,0.007 -0.45479,0.007 -0.48107,0.009 -0.5097,0.012 -0.53479,0.0132 -0.56223,0.0157 -0.58729,0.0167 -0.61595,0.0193 -0.6422,0.0205 -0.66729,0.0228 -0.0358,0 z m 0.0358,0 -0.0179,0.001 -0.0179,-0.001 0.0358,0 z m -8.2687,0.15754 0,-1.0198 -0.0967,1.0102 -0.16473,-0.0337 -0.14325,-0.0348 -0.12653,-0.036 -0.11937,-0.0445 -0.14085,-0.0782 -0.20771,-0.28022 0.11341,-0.52315 0.21128,-0.14673 0.13609,-0.0433 0.12414,-0.024 0.13608,-0.0181 0.15398,-0.0145 0.17548,-0.012 0.19935,-0.009 0.22441,-0.007 0.24828,-0.007 0.27576,-0.005 0.30081,-0.002 0.32707,0 0.35094,10e-4 0.3796,0.002 0.40467,0.005 0.43212,0.006 0.45837,0.008 0.48345,0.0108 0.5121,0.0121 0.53596,0.0145 0.56462,0.0145 0.58969,0.0181 0.61594,0.0193 0.6446,0.0205 0.66966,0.0228 -0.0358,1.0174 -0.66727,-0.0228 -0.64221,-0.0205 -0.61595,-0.0193 -0.58729,-0.0181 -0.56224,-0.0145 -0.53597,-0.0145 -0.50732,-0.012 -0.48106,-0.008 -0.45599,-0.008 -0.42735,-0.006 -0.40227,-0.005 -0.37482,-0.002 -0.34856,-0.001 -0.3199,0 -0.29365,0.002 -0.2662,0.005 -0.24113,0.005 -0.21248,0.007 -0.18263,0.009 -0.15399,0.009 -0.12295,0.012 -0.0883,0.0107 -0.0454,0.009 0.0167,-0.007 0.14682,-0.10582 0.10147,-0.47986 -0.16711,-0.23453 -0.0478,-0.0277 0.0263,0.008 0.074,0.0217 0.10744,0.0253 0.14086,0.0288 -0.0967,1.0102 z m -10e-4,-1.0198 10e-4,0 0,1.0198 -10e-4,0 -0.50493,-0.52675 0.50493,-0.49308 z m -0.50493,0.49309 0.0167,-0.49309 0.48821,0 -0.50493,0.49309 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path16" + d="m 583.45,264.21 c 3.2719,-6.6002 6.7086,-13.075 11.297,-18.682 -11.747,8.7421 -17.928,7.4228 -18.788,-3.9591 -0.69592,-0.24775 -1.6377,-0.24775 -2.5784,-0.24775 -8.9635,13.98 -17.683,12.042 -26.156,-5.8148 -11.543,18.351 -21.448,18.022 -29.225,-1.1137 -13.313,16.726 -24.528,16.772 -33.646,0.35359 l -10e-4,-2.0854 c 0.50732,0.2261 0.16233,0.29826 -1.0338,0.13229 l -0.19337,-0.38004 c -0.35573,0.071 -0.6828,0.13349 -0.98242,0.18881 -0.29961,-0.0553 -0.62789,-0.11785 -0.98241,-0.18881 l -0.19338,0.38004 c -1.1973,0.16597 -1.5422,0.0937 -1.0349,-0.13229 v 2.0866 c -9.1174,16.417 -20.333,16.372 -33.646,-0.35478 -7.7769,19.135 -17.683,19.465 -29.226,1.1137 -8.4717,17.857 -17.192,19.794 -26.155,5.8148 -0.94064,-0.001 -1.8825,0 -2.5796,0.24775 -0.85827,11.382 -7.0392,12.701 -18.786,3.9591 4.5874,5.6068 8.0252,12.082 11.297,18.682 33.848,-1.4131 67.579,-3.181 101.31,-4.9561 33.728,1.7751 67.457,3.543 101.31,4.9561 h 10e-4 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path18" + d="m 595.05,245.94 -0.60163,-0.8202 0.69115,0.73361 -0.42376,0.52436 -0.4166,0.52675 -0.40944,0.53399 -0.40466,0.53878 -0.3975,0.54239 -0.39393,0.54601 -0.38675,0.55321 -0.38198,0.55443 -0.37602,0.56043 -0.37124,0.56405 -0.36766,0.56885 -0.36169,0.57125 -0.3581,0.57367 -0.35214,0.57968 -0.35095,0.58087 -0.34497,0.5845 -0.34141,0.5893 -0.33901,0.59049 -0.33423,0.59291 -0.33184,0.59651 -0.32827,0.59893 -0.32588,0.60132 -0.3223,0.60372 -0.31991,0.60614 -0.31871,0.60735 -0.31515,0.60853 -0.31513,0.61096 -0.31154,0.61335 -0.31037,0.61454 -0.30917,0.61455 -0.30797,0.61697 -0.30678,0.61697 -0.90483,-0.45461 0.30678,-0.61937 0.31037,-0.61936 0.30917,-0.61696 0.31274,-0.61696 0.31394,-0.61576 0.31515,-0.61335 0.31751,-0.61335 0.32111,-0.61215 0.32229,-0.60855 0.32469,-0.60853 0.32827,-0.60613 0.33064,-0.60373 0.33424,-0.60134 0.33901,-0.60012 0.3414,-0.5953 0.34379,-0.59412 0.34975,-0.5917 0.35333,-0.58809 0.35691,-0.58449 0.36289,-0.58329 0.36647,-0.57848 0.37242,-0.57606 0.37603,-0.57126 0.38317,-0.56765 0.38675,-0.56404 0.39392,-0.56043 0.3987,-0.55563 0.40466,-0.55202 0.41183,-0.54601 0.4166,-0.54358 0.42376,-0.5388 0.43093,-0.53157 0.69115,0.73362 z m -19.257,-3.8894 0.33662,-0.95972 0.33543,0.44137 0.0955,1.0198 0.12413,0.95851 0.15519,0.8972 0.18383,0.83583 0.21487,0.7745 0.24232,0.71318 0.27097,0.65183 0.29603,0.58809 0.32468,0.52797 0.34977,0.46783 0.37361,0.40891 0.40109,0.35237 0.42614,0.29705 0.45361,0.24294 0.48344,0.19002 0.51569,0.13951 0.55028,0.0865 0.58491,0.0325 0.62074,-0.0217 0.65891,-0.0794 0.69473,-0.1347 0.73173,-0.19122 0.76636,-0.25136 0.80217,-0.31029 0.83797,-0.3692 0.87378,-0.42694 0.90721,-0.48587 0.94063,-0.54721 0.97525,-0.60494 1.0087,-0.66627 1.0433,-0.72399 1.0755,-0.78413 0.60163,0.82021 -1.0946,0.79615 -1.0624,0.73844 -1.0302,0.67829 -0.99912,0.62177 -0.96929,0.56164 -0.93825,0.50271 -0.9072,0.44618 -0.87855,0.38605 -0.84753,0.32712 -0.82126,0.26819 -0.79143,0.20806 -0.76396,0.14912 -0.73532,0.0866 -0.70905,0.0265 -0.6804,-0.0397 -0.65296,-0.10106 -0.62311,-0.16837 -0.59088,-0.23332 -0.55864,-0.29825 -0.51926,-0.36441 -0.48465,-0.42452 -0.44763,-0.48829 -0.40705,-0.5448 -0.37004,-0.60493 -0.33424,-0.66026 -0.29723,-0.71678 -0.26381,-0.7733 -0.22919,-0.82742 -0.19576,-0.88635 -0.16235,-0.94288 -0.12892,-0.99699 -0.0979,-1.0559 0.33543,0.44137 z m 0.33662,-0.95972 0.31037,0.11064 0.025,0.33073 -0.33543,-0.44137 z m -2.3217,0.50873 -0.8499,-0.55322 0.42495,-0.23333 0.0883,0 0.0883,0 0.0871,0 0.092,0 0.0883,0.001 0.0871,0 0.0908,10e-4 0.0908,0.001 0.0871,0.002 0.0859,0.001 0.0931,0.004 0.0883,0.004 0.0848,0.004 0.0871,0.004 0.0908,0.005 0.0871,0.006 0.0871,0.007 0.0859,0.007 0.0836,0.007 0.0871,0.009 0.0883,0.0108 0.0811,0.0108 0.0859,0.012 0.0848,0.0157 0.0799,0.0132 0.0871,0.0181 0.0811,0.0181 0.0764,0.0181 0.0859,0.0228 0.0777,0.0228 0.0788,0.024 0.0788,0.0277 -0.33663,0.95972 -0.0525,-0.0181 -0.0573,-0.0168 -0.0585,-0.0181 -0.0549,-0.0132 -0.0668,-0.0156 -0.0621,-0.0156 -0.0609,-0.0108 -0.0704,-0.0132 -0.0657,-0.0108 -0.0692,-0.009 -0.074,-0.0108 -0.0692,-0.008 -0.0728,-0.007 -0.0764,-0.007 -0.0764,-0.007 -0.0776,-0.005 -0.0799,-0.006 -0.0764,-0.005 -0.0799,-0.004 -0.0848,-0.004 -0.0811,-0.004 -0.0788,-0.001 -0.0859,-0.001 -0.0871,-0.002 -0.0836,-0.001 -0.0836,-0.001 -0.0871,0 -0.0883,-0.001 -0.0848,0 -0.0871,0 -0.0883,0 -0.0883,0 0.42495,-0.2333 z m -0.8499,-0.55322 0.14921,-0.23333 0.27574,0 -0.42495,0.23333 z m -25.304,-5.2652 -0.85469,-0.54601 0.88334,0.053 0.79022,1.6164 0.79023,1.5238 0.79142,1.4275 0.79022,1.335 0.79142,1.2399 0.79143,1.1437 0.79142,1.0511 0.78903,0.95489 0.78784,0.8611 0.78665,0.76728 0.78306,0.67229 0.78067,0.57848 0.7771,0.48587 0.77352,0.39447 0.76754,0.30307 0.76517,0.21286 0.76277,0.12749 0.76396,0.0385 0.76397,-0.0481 0.76874,-0.13591 0.7735,-0.22369 0.7795,-0.31269 0.78784,-0.40409 0.7938,-0.49669 0.79978,-0.5893 0.80575,-0.68191 0.81171,-0.77931 0.81648,-0.87072 0.81888,-0.96693 0.82366,-1.0607 0.82841,-1.1557 0.82962,-1.2496 0.8499,0.55322 -0.84871,1.2784 -0.84991,1.1846 -0.8499,1.0944 -0.84993,1.003 -0.85229,0.90919 -0.85229,0.81781 -0.85588,0.7252 -0.85946,0.63259 -0.86305,0.54 -0.86662,0.44497 -0.87021,0.34877 -0.87378,0.25255 -0.87618,0.15515 -0.87855,0.0553 -0.87617,-0.0458 -0.8726,-0.14432 -0.86781,-0.24173 -0.86305,-0.34155 -0.85468,-0.43536 -0.84872,-0.52917 -0.84036,-0.62418 -0.83559,-0.71798 -0.82961,-0.80818 -0.82605,-0.90199 -0.82006,-0.99338 -0.81769,-1.0848 -0.8129,-1.1774 -0.81052,-1.2688 -0.80693,-1.3614 -0.80575,-1.454 -0.80217,-1.5454 -0.79978,-1.638 0.88334,0.053 z m -0.85469,-0.54601 0.48942,-0.77811 0.39392,0.83103 -0.88334,-0.053 z m -28.404,-0.52196 -0.78784,-0.63739 0.86184,0.12507 0.72936,1.7258 0.74009,1.614 0.75322,1.5021 0.76158,1.3915 0.77352,1.2784 0.78186,1.1666 0.79142,1.0559 0.79859,0.94408 0.80693,0.83103 0.8141,0.72279 0.81769,0.60974 0.82483,0.5027 0.82843,0.39568 0.83559,0.28984 0.84274,0.18641 0.84992,0.083 0.86424,-0.0205 0.87617,-0.12387 0.89407,-0.2273 0.90841,-0.33314 0.92631,-0.44136 0.94182,-0.54963 0.95734,-0.65904 0.97168,-0.76971 0.98718,-0.87913 1.0003,-0.99218 1.0123,-1.1004 1.0254,-1.2123 1.0373,-1.3241 1.0481,-1.4336 1.0588,-1.5442 1.0707,-1.6548 0.85469,0.54601 -1.0851,1.6765 -1.0755,1.5682 -1.0672,1.46 -1.0588,1.3506 -1.0516,1.2435 -1.0433,1.1341 -1.0361,1.0259 -1.0278,0.91761 -1.0218,0.80819 -1.017,0.69993 -1.011,0.59051 -1.0051,0.47985 -1.0015,0.36681 -0.99673,0.25376 -0.99077,0.13831 -0.98122,0.0228 -0.97167,-0.095 -0.95973,-0.21047 -0.94302,-0.32832 -0.92631,-0.44137 -0.9084,-0.55322 -0.89168,-0.66506 -0.87379,-0.77572 -0.85707,-0.88394 -0.84157,-0.99218 -0.82483,-1.1016 -0.81053,-1.2099 -0.79499,-1.3169 -0.78307,-1.4252 -0.76755,-1.5358 -0.75441,-1.6428 -0.74129,-1.7523 0.86185,0.12507 z m -0.78784,-0.63739 0.53715,-0.67469 0.32469,0.79976 -0.86184,-0.12507 z m -33.758,0.67227 1.0122,0 -0.0645,-0.24893 0.8511,1.4768 0.86423,1.377 0.87379,1.282 0.88334,1.181 0.89407,1.086 0.90363,0.98737 0.91318,0.89117 0.92152,0.79254 0.93109,0.69633 0.93825,0.60132 0.94779,0.50392 0.95615,0.4101 0.96451,0.31631 0.97524,0.22247 0.986,0.12989 0.99912,0.0372 1.0122,-0.0553 1.0266,-0.14793 1.0421,-0.24413 1.0564,-0.33674 1.0743,-0.43297 1.0886,-0.52915 1.1042,-0.6278 1.1209,-0.72278 1.1352,-0.82142 1.1495,-0.91882 1.165,-1.0174 1.1782,-1.1148 1.1937,-1.2147 1.2056,-1.3121 1.2212,-1.4107 1.2331,-1.5081 0.78784,0.63739 -1.2498,1.5298 -1.2402,1.4324 -1.2271,1.3361 -1.2176,1.2387 -1.2068,1.1413 -1.1961,1.0463 -1.1877,0.94768 -1.1758,0.85028 -1.1662,0.75406 -1.1591,0.65665 -1.1483,0.55803 -1.1412,0.46181 -1.1304,0.3608 -1.1233,0.26098 -1.1125,0.16236 -1.103,0.0601 -1.0922,-0.042 -1.0791,-0.14191 -1.066,-0.24413 -1.0528,-0.34275 -1.035,-0.44619 -1.0218,-0.5424 -1.0027,-0.64222 -0.98838,-0.73963 -0.97167,-0.83584 -0.95615,-0.93205 -0.94183,-1.0283 -0.9251,-1.1245 -0.91199,-1.2195 -0.89767,-1.3157 -0.88332,-1.4107 -0.87021,-1.5057 -0.0645,-0.24895 z m 0.0645,0.24895 -0.0645,-0.11546 0,-0.13349 0.0645,0.24895 z m 0.94659,-2.3343 10e-4,2.0854 -1.0122,0 -10e-4,-2.0854 0.71026,-0.46543 0.302,0.46543 z m -1.0122,0 0,-0.78173 0.71026,0.3163 -0.71026,0.46543 z m -0.97763,0.3644 0.90005,-0.46422 -0.38079,-0.273 0.10744,0.0145 0.10265,0.0145 0.0931,0.0108 0.0883,0.0108 0.0848,0.007 0.0848,0.008 0.0704,0.007 0.0704,0.004 0.0668,0.005 0.0525,0.004 0.0466,0 0.0489,0 0.0369,0.001 0.0298,-0.002 0.0191,-0.001 0.009,-10e-4 -0.004,10e-4 -0.0204,0.005 -0.0335,0.0132 -0.0823,0.0493 -0.10025,0.10463 -0.0777,0.178 -10e-4,0.18761 0.0513,0.14191 0.049,0.0709 0.0286,0.0288 0.0179,0.0145 0.005,0.004 -0.002,-0.001 -0.0226,-0.0108 -0.0286,-0.0156 -0.031,-0.0145 0.40825,-0.93086 0.0597,0.0265 0.0502,0.0253 0.0489,0.0253 0.0573,0.0349 0.0549,0.0372 0.0585,0.0481 0.0573,0.0577 0.0704,0.0997 0.0609,0.16837 -10e-4,0.21167 -0.0871,0.19964 -0.11938,0.12387 -0.11101,0.0662 -0.074,0.0277 -0.0704,0.0193 -0.0633,0.0108 -0.0598,0.008 -0.0597,0.004 -0.0609,0.002 -0.0633,0.001 -0.0585,0 -0.0752,-0.002 -0.0764,-0.004 -0.0717,-0.005 -0.08,-0.006 -0.0896,-0.007 -0.0848,-0.008 -0.0943,-0.009 -0.10025,-0.0108 -0.10504,-0.0132 -0.10744,-0.0145 -0.1122,-0.0144 -0.38079,-0.273 z m 0.38079,0.27301 -0.26022,-0.036 -0.12057,-0.23693 0.38079,0.273 z m 0.32587,-1.1173 0.19339,0.38003 -0.90005,0.46423 -0.19338,-0.38004 0.35214,-0.73241 0.5479,0.26819 z m -0.5479,-0.26819 0.37363,-0.0746 0.17427,0.34275 -0.5479,-0.26818 z m -0.97525,1.1906 0.18144,-1.003 -0.18144,0 0.0238,-0.004 0.0275,-0.006 0.031,-0.005 0.0286,-0.006 0.0298,-0.006 0.0298,-0.006 0.0286,-0.005 0.0298,-0.006 0.0286,-0.005 0.0226,-0.004 0.0394,-0.008 0.0298,-0.005 0.0215,-0.005 0.031,-0.006 0.0298,-0.006 0.0335,-0.006 0.0405,-0.007 0.031,-0.005 0.0119,-0.002 0.031,-0.007 0.0417,-0.008 0.0323,-0.006 0.031,-0.006 0.0347,-0.007 0.0226,-0.004 0.0323,-0.007 0.0417,-0.008 0.025,-0.004 0.0335,-0.007 0.0406,-0.008 0.0263,-0.005 0.0335,-0.007 0.19577,1.0006 -0.0335,0.007 -0.0406,0.007 -0.0238,0.004 -0.0335,0.007 -0.0394,0.008 -0.0226,0.004 -0.0323,0.007 -0.0417,0.008 -0.0298,0.005 -0.031,0.006 -0.0323,0.006 -0.0204,0.004 -0.031,0.007 -0.0502,0.009 -0.031,0.005 -0.0215,0.005 -0.0286,0.006 -0.0298,0.006 -0.031,0.006 -0.0382,0.007 -0.0298,0.005 -0.0204,0.004 -0.0369,0.008 -0.0286,0.005 -0.0298,0.006 -0.0286,0.005 -0.0298,0.006 -0.0275,0.004 -0.0286,0.006 -0.0263,0.005 -0.0275,0.006 -0.0335,0.006 -0.18143,0 z m 0.18144,0 -0.0908,0.0168 -0.0908,-0.0168 0.18144,0 z m -0.6231,-0.45821 -0.90005,-0.46423 0.54909,-0.26698 0.0335,0.007 0.0238,0.004 0.0417,0.008 0.0323,0.007 0.025,0.004 0.043,0.008 0.0323,0.007 0.025,0.005 0.031,0.006 0.0323,0.006 0.031,0.006 0.0406,0.007 0.0335,0.008 0.0119,0.002 0.031,0.005 0.0429,0.007 0.0298,0.006 0.031,0.006 0.0298,0.006 0.0216,0.005 0.031,0.005 0.0394,0.008 0.0226,0.004 0.0286,0.005 0.0298,0.006 0.0287,0.005 0.0298,0.006 0.0298,0.006 0.0287,0.006 0.031,0.005 0.0275,0.006 0.0238,0.004 -0.18144,1.003 -0.0335,-0.006 -0.0275,-0.006 -0.0263,-0.005 -0.0286,-0.006 -0.0275,-0.004 -0.0298,-0.006 -0.0286,-0.005 -0.0298,-0.006 -0.0286,-0.005 -0.0369,-0.008 -0.0204,-0.004 -0.0286,-0.005 -0.0406,-0.007 -0.0298,-0.006 -0.031,-0.006 -0.0298,-0.006 -0.0191,-0.005 -0.031,-0.005 -0.0501,-0.009 -0.0286,-0.006 -0.0238,-0.005 -0.031,-0.006 -0.0323,-0.006 -0.031,-0.006 -0.0394,-0.007 -0.0323,-0.007 -0.0216,-0.004 -0.0417,-0.008 -0.0323,-0.007 -0.025,-0.004 -0.0406,-0.008 -0.0335,-0.007 0.54911,-0.26698 z m -0.90005,-0.46423 0.17428,-0.34155 0.37481,0.0746 -0.54909,0.26698 z m -0.19338,0.38004 0.19338,-0.38004 0.90005,0.46423 -0.19338,0.38004 -0.38079,0.273 -0.51926,-0.73723 z m 0.90005,0.46423 -0.12056,0.23692 -0.26023,0.036 0.38079,-0.273 z m -0.97883,-0.36441 -1.0122,0 0.71024,0.46543 -0.031,0.0145 -0.0286,0.0156 -0.0226,0.0108 -0.002,0.001 0.005,-0.004 0.0179,-0.0145 0.0287,-0.0288 0.049,-0.0709 0.0513,-0.14191 -10e-4,-0.18761 -0.0777,-0.17799 -0.10982,-0.11186 -0.0716,-0.042 -0.031,-0.012 -0.0238,-0.006 -0.004,-10e-4 0.008,10e-4 0.0215,0.001 0.0286,0.002 0.0369,-0.001 0.0501,0 0.0454,0 0.0525,-0.004 0.068,-0.005 0.068,-0.004 0.0717,-0.007 0.0848,-0.008 0.0859,-0.007 0.0883,-0.0108 0.0931,-0.0108 0.10266,-0.0145 0.10743,-0.0144 0.13846,1.0102 -0.11221,0.0145 -0.10742,0.0145 -0.10506,0.0132 -0.10265,0.0108 -0.0931,0.009 -0.0848,0.008 -0.0883,0.007 -0.08,0.006 -0.0728,0.005 -0.0764,0.004 -0.074,0.002 -0.0598,0 -0.0633,-0.001 -0.0598,-0.002 -0.0597,-0.004 -0.0609,-0.008 -0.0633,-0.0108 -0.074,-0.0205 -0.0692,-0.0265 -0.10265,-0.0589 -0.12892,-0.13109 -0.0871,-0.19964 -10e-4,-0.21166 0.0609,-0.16838 0.0704,-0.0998 0.0573,-0.0577 0.0585,-0.0481 0.0549,-0.0372 0.0573,-0.0349 0.049,-0.0253 0.0502,-0.0253 0.0598,-0.0265 0.71025,0.46542 z m -0.71026,-0.46542 0.71026,-0.31629 0,0.78171 -0.71026,-0.46542 z m -0.302,2.552 0,-2.0866 1.0122,0 0,2.0866 -0.0645,0.24894 -0.94779,-0.24894 z m 1.0122,0 0,0.13228 -0.0645,0.11666 0.0645,-0.24894 z m -33.684,-0.16117 -0.93585,-0.38725 0.86185,-0.12507 1.2331,1.5081 1.22,1.4107 1.2068,1.3121 1.1937,1.2147 1.1782,1.1148 1.165,1.0174 1.1483,0.91882 1.1364,0.82142 1.1209,0.72278 1.103,0.62779 1.0898,0.52916 1.0731,0.43297 1.0576,0.33674 1.0421,0.24413 1.0266,0.14793 1.0122,0.0553 0.99793,-0.036 0.98601,-0.13108 0.97644,-0.22248 0.9645,-0.31631 0.95615,-0.40891 0.9466,-0.50511 0.93944,-0.60012 0.93108,-0.69633 0.92153,-0.79375 0.91318,-0.88995 0.90363,-0.98739 0.89407,-1.0848 0.88334,-1.1834 0.87379,-1.2808 0.86423,-1.377 0.85111,-1.4768 0.88333,0.4979 -0.8702,1.5057 -0.88334,1.4107 -0.89766,1.3145 -0.91198,1.2195 -0.92511,1.1257 -0.94183,1.0283 -0.95616,0.93084 -0.97165,0.83706 -0.98838,0.73963 -1.0039,0.64101 -1.0206,0.54359 -1.0349,0.44499 -1.0528,0.34276 -1.0648,0.24413 -1.0815,0.14311 -1.091,0.0409 -1.103,-0.0602 -1.1125,-0.16236 -1.1233,-0.26097 -1.1316,-0.36081 -1.14,-0.46181 -1.1495,-0.55802 -1.1579,-0.65665 -1.1662,-0.75406 -1.177,-0.85028 -1.1865,-0.94768 -1.1961,-1.0463 -1.2068,-1.1413 -1.2176,-1.2387 -1.2283,-1.3361 -1.239,-1.4324 -1.2498,-1.5298 0.86184,-0.12508 z m -0.93585,-0.38725 0.32469,-0.79976 0.53716,0.67469 -0.86185,0.12507 z m -28.302,1.5274 -0.91199,-0.44016 0.88334,-0.053 1.0707,1.6548 1.0588,1.5442 1.0481,1.4336 1.0373,1.3241 1.0254,1.2123 1.0122,1.1004 1.0003,0.99218 0.9872,0.87914 0.97285,0.7697 0.95616,0.65905 0.94183,0.54962 0.92749,0.44137 0.9084,0.33313 0.89289,0.2273 0.87618,0.12387 0.86424,0.0205 0.85109,-0.083 0.84156,-0.18642 0.83559,-0.28983 0.82962,-0.39568 0.82485,-0.50271 0.81766,-0.60973 0.81411,-0.7228 0.80693,-0.83103 0.79859,-0.94407 0.79142,-1.0559 0.78188,-1.1666 0.7735,-1.2784 0.76158,-1.3915 0.75322,-1.5021 0.7401,-1.614 0.72934,-1.7258 0.93585,0.38724 -0.74127,1.7523 -0.75442,1.6428 -0.76755,1.5358 -0.78306,1.4252 -0.795,1.3169 -0.81051,1.2099 -0.82485,1.1016 -0.84156,0.99218 -0.85707,0.88394 -0.87378,0.77572 -0.8917,0.66506 -0.9084,0.55323 -0.92751,0.44136 -0.94302,0.32832 -0.95853,0.21048 -0.97286,0.095 -0.98122,-0.0228 -0.99076,-0.1383 -0.99554,-0.25377 -1.0015,-0.3668 -1.0063,-0.47985 -1.0111,-0.59051 -1.0158,-0.69994 -1.023,-0.80819 -1.0278,-0.91761 -1.0361,-1.0259 -1.0433,-1.1341 -1.0516,-1.2435 -1.0588,-1.3506 -1.0672,-1.46 -1.0755,-1.5682 -1.0851,-1.6765 0.88333,-0.053 z m -0.91199,-0.44016 0.39392,-0.83103 0.48942,0.77811 -0.88334,0.053 z m -25.7,6.5448 0.002,-1.0198 0.42376,0.23332 0.82962,1.2496 0.82842,1.1557 0.82366,1.0607 0.81887,0.96693 0.81649,0.87072 0.81171,0.77931 0.80574,0.68191 0.79978,0.5893 0.79381,0.49669 0.78783,0.40409 0.77948,0.31269 0.77352,0.22369 0.76875,0.13591 0.76396,0.0481 0.76396,-0.0385 0.76277,-0.12749 0.76517,-0.21286 0.76754,-0.30307 0.77351,-0.39447 0.77591,-0.48587 0.78186,-0.57848 0.78308,-0.67229 0.78664,-0.76728 0.78664,-0.8611 0.79023,-0.95489 0.79022,-1.0511 0.79143,-1.1437 0.79142,-1.2399 0.79023,-1.335 0.79142,-1.4275 0.79022,-1.5238 0.79023,-1.6164 0.91198,0.44016 -0.79978,1.638 -0.80216,1.5454 -0.80574,1.454 -0.80694,1.3614 -0.81053,1.2688 -0.81291,1.1774 -0.81647,1.0848 -0.82127,0.99338 -0.82484,0.90199 -0.82962,0.80819 -0.83559,0.71797 -0.84156,0.62419 -0.84752,0.52915 -0.85469,0.43536 -0.86303,0.34156 -0.86782,0.24173 -0.87259,0.14432 -0.87617,0.0458 -0.87857,-0.0553 -0.87617,-0.15514 -0.87379,-0.25256 -0.87019,-0.34876 -0.86663,-0.44498 -0.86304,-0.54 -0.85946,-0.63259 -0.85588,-0.7252 -0.8523,-0.8178 -0.85231,-0.9092 -0.8499,-1.003 -0.84991,-1.0944 -0.84991,-1.1846 -0.84873,-1.2784 0.42377,0.23331 z m 0.002,-1.0198 0.27455,0 0.14921,0.23332 -0.42376,-0.23332 z m -2.077,0.79616 -1.0075,-0.077 0.33543,-0.44138 0.0788,-0.0277 0.0788,-0.024 0.0777,-0.0228 0.0859,-0.0228 0.0777,-0.0181 0.0811,-0.0181 0.0871,-0.0168 0.0788,-0.0145 0.0859,-0.0156 0.0848,-0.012 0.0836,-0.0108 0.0859,-0.0108 0.0836,-0.008 0.0896,-0.009 0.0848,-0.006 0.0859,-0.007 0.0908,-0.006 0.0836,-0.005 0.0883,-0.005 0.0919,-0.004 0.0883,-0.002 0.0859,-0.002 0.0896,-0.004 0.0908,-0.001 0.0871,-0.001 0.0871,-0.001 0.0908,-10e-4 0.0919,0 0.0883,0 0.0871,0 0.0883,0 0.0896,0 -0.002,1.0198 -0.0871,0 -0.0883,0 -0.0871,0 -0.0883,0 -0.0848,0 -0.0836,0.001 -0.0871,0.001 -0.0871,0.001 -0.0836,0.001 -0.0823,0.001 -0.0859,0.002 -0.0811,0.002 -0.0777,0.004 -0.0811,0.005 -0.0836,0.005 -0.074,0.004 -0.0788,0.007 -0.0777,0.006 -0.0728,0.007 -0.074,0.008 -0.0717,0.008 -0.074,0.0108 -0.068,0.009 -0.0668,0.0108 -0.0692,0.012 -0.0609,0.012 -0.0645,0.0156 -0.0656,0.0156 -0.0549,0.0133 -0.0585,0.0181 -0.0573,0.0169 -0.0525,0.0181 0.33543,-0.44138 z m -1.0075,-0.077 0.025,-0.33073 0.31036,-0.11064 -0.33543,0.44137 z m -17.892,3.6741 -0.78067,0.64702 0.69114,-0.73361 1.0755,0.78413 1.0433,0.72399 1.0087,0.66627 0.97526,0.60493 0.94063,0.54721 0.90721,0.48588 0.87378,0.42693 0.83797,0.36921 0.80216,0.31029 0.76636,0.25135 0.73174,0.19122 0.69473,0.1347 0.65892,0.0795 0.62072,0.0217 0.58491,-0.0325 0.5503,-0.0866 0.51567,-0.13951 0.48345,-0.19002 0.45241,-0.24294 0.42735,-0.29705 0.39987,-0.35117 0.37364,-0.41011 0.35094,-0.46782 0.32349,-0.52797 0.29843,-0.5893 0.26978,-0.65062 0.24231,-0.71318 0.21367,-0.77331 0.18383,-0.83703 0.15518,-0.89839 0.12534,-0.9573 0.0942,-1.0198 1.0075,0.077 -0.0967,1.0559 -0.13011,0.9982 -0.16233,0.94167 -0.19578,0.88516 -0.22799,0.82863 -0.26381,0.77329 -0.29843,0.71799 -0.33424,0.65905 -0.36885,0.60493 -0.40823,0.5448 -0.44525,0.48707 -0.48584,0.42574 -0.52045,0.36441 -0.55745,0.29824 -0.59089,0.23333 -0.62311,0.16836 -0.65294,0.10097 -0.68041,0.0397 -0.70906,-0.0265 -0.73531,-0.0866 -0.76397,-0.14913 -0.79142,-0.20806 -0.82126,-0.2682 -0.84752,-0.32712 -0.87856,-0.38604 -0.90721,-0.44619 -0.93825,-0.5027 -0.96928,-0.56165 -0.99913,-0.62177 -1.0302,-0.67829 -1.0624,-0.73843 -1.0946,-0.79615 0.69115,-0.73362 z m 10.885,18.497 0.043,1.0174 -0.47389,-0.28142 -0.30678,-0.61696 -0.30798,-0.61697 -0.30916,-0.61455 -0.31037,-0.61454 -0.31155,-0.61336 -0.31514,-0.61095 -0.31514,-0.60853 -0.31871,-0.60735 -0.31991,-0.60614 -0.32349,-0.60372 -0.32469,-0.60132 -0.32945,-0.59893 -0.33186,-0.59651 -0.33424,-0.59411 -0.33781,-0.58929 -0.34259,-0.5893 -0.34498,-0.5845 -0.34975,-0.58087 -0.35333,-0.57968 -0.35691,-0.57367 -0.36289,-0.57125 -0.36647,-0.56885 -0.37243,-0.56404 -0.37482,-0.56044 -0.38317,-0.55443 -0.38677,-0.55321 -0.39272,-0.54601 -0.3975,-0.54239 -0.40465,-0.53759 -0.41064,-0.53518 -0.4166,-0.52796 -0.42257,-0.52315 0.78067,-0.64703 0.42974,0.53278 0.42376,0.53759 0.41779,0.54238 0.41183,0.54721 0.40465,0.55202 0.3999,0.55563 0.39152,0.56043 0.38796,0.56404 0.38198,0.56765 0.37721,0.57126 0.37124,0.57607 0.36766,0.57847 0.36169,0.58329 0.35811,0.58449 0.35214,0.58809 0.34975,0.5917 0.34498,0.59412 0.34259,0.59652 0.33662,0.59891 0.33423,0.60133 0.33186,0.60373 0.32706,0.60614 0.32588,0.60852 0.3223,0.60855 0.32111,0.61215 0.31752,0.61335 0.31514,0.61335 0.31394,0.61576 0.31275,0.61696 0.30917,0.61696 0.31035,0.61936 0.30679,0.61937 -0.4739,-0.28142 z m 0.043,1.0174 -0.32708,0.0132 -0.14681,-0.29464 0.47389,0.28142 z m 101.31,-5.9736 -0.0525,1.0174 0.0525,0 -3.1621,0.16596 -3.1621,0.16717 -3.1621,0.16596 -3.1621,0.16596 -3.1621,0.16478 -3.1621,0.16596 -3.1633,0.16476 -3.1621,0.16357 -3.1633,0.16475 -3.1633,0.16236 -3.1633,0.16236 -3.1645,0.16236 -3.1633,0.16115 -3.1645,0.15996 -3.1645,0.15875 -3.1645,0.15754 -3.1657,0.15755 -3.1645,0.15634 -3.1681,0.15394 -3.1657,0.15394 -3.1669,0.15154 -3.1669,0.15153 -3.1681,0.14913 -3.1681,0.14792 -3.1705,0.14674 -3.1693,0.14431 -3.1693,0.14311 -3.1705,0.14072 -3.1716,0.13951 -3.1716,0.13709 -3.1728,0.13591 -3.1728,0.13349 -0.0429,-1.0174 3.1728,-0.1335 3.1728,-0.1359 3.1716,-0.1371 3.1693,-0.13951 3.1705,-0.14071 3.1692,-0.14312 3.1693,-0.14432 3.1681,-0.14671 3.1681,-0.14793 3.1681,-0.14913 3.1669,-0.15153 3.1669,-0.15153 3.1657,-0.15394 3.1657,-0.15394 3.1645,-0.15635 3.1657,-0.15755 3.1645,-0.15755 3.1645,-0.15875 3.1645,-0.15995 3.1633,-0.16115 3.1621,-0.16236 3.1633,-0.16235 3.1633,-0.16236 3.1633,-0.16476 3.1621,-0.16357 3.1633,-0.16476 3.1621,-0.16597 3.1621,-0.16476 3.1621,-0.16597 3.1621,-0.16596 3.1621,-0.16717 3.1621,-0.16597 0.0525,0 z m -0.0525,0 0.0263,-10e-4 0.0263,10e-4 -0.0525,0 z m 101.33,4.9549 0,1.0198 -0.0216,-0.001 -3.1728,-0.13349 -3.1728,-0.13591 -3.1716,-0.13709 -3.1716,-0.13951 -3.1705,-0.14071 -3.1693,-0.14311 -3.1692,-0.14432 -3.1705,-0.14674 -3.1681,-0.14792 -3.1669,-0.14912 -3.1681,-0.15154 -3.1669,-0.15154 -3.1657,-0.15394 -3.1669,-0.15393 -3.1657,-0.15635 -3.1645,-0.15755 -3.1657,-0.15753 -3.1633,-0.15876 -3.1645,-0.15995 -3.1633,-0.16116 -3.1657,-0.16236 -3.1633,-0.16236 -3.1621,-0.16236 -3.1633,-0.16475 -3.1621,-0.16357 -3.1633,-0.16476 -3.1621,-0.16596 -3.1621,-0.16476 -3.1621,-0.16597 -3.1621,-0.16597 -3.1621,-0.16717 -3.1621,-0.16596 0.0525,-1.0174 3.1621,0.16597 3.1621,0.16716 3.1621,0.16596 3.1621,0.16597 3.1621,0.16477 3.1621,0.16597 3.1633,0.16475 3.1621,0.16357 3.1633,0.16476 3.1621,0.16236 3.1633,0.16236 3.1633,0.16236 3.1633,0.16114 3.1645,0.15996 3.1633,0.15875 3.1657,0.15754 3.1645,0.15756 3.1657,0.15635 3.1645,0.15393 3.1657,0.15394 3.1669,0.15153 3.1681,0.15154 3.1669,0.14913 3.1681,0.14792 3.1681,0.14673 3.1693,0.14431 3.1693,0.14312 3.1705,0.14071 3.1693,0.13951 3.1716,0.13709 3.1728,0.13591 3.1728,0.13349 -0.0215,-10e-4 z m 0,1.0198 -0.0216,-0.001 0.0286,0.001 -0.007,0 z m 10e-4,0 -10e-4,0 0,-1.0198 10e-4,0 0.45242,0.73723 -0.45242,0.28262 z m 0.45242,-0.28262 -0.13967,0.28262 -0.31275,0 0.45242,-0.28262 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <polygon + id="polygon20" + transform="matrix(1.0106622,0,0,1.0182434,-5.1283744,-6.1909008)" + points="459.63,277.31 482.13,266.06 504.63,277.31 482.13,288.56 " + style="fill:#edb92e" /> + <g + id="g22"> + <path + id="path24" + d="m 473.89,259.19 -0.006,0.17559 c -17.488,0.78174 -48.477,2.522 -93.121,5.3662 l 6.5343,31.051 c 29.651,-0.83704 64.257,-2.1383 94.845,-3.0632 30.588,0.92484 65.195,2.2261 94.846,3.0632 l 6.5343,-31.051 c -44.64,-2.86 -75.63,-4.6 -93.12,-5.38 l -0.006,-0.17679 c 1.7667,-0.34755 -0.97524,-0.40769 -8.2532,-0.15633 -7.278,-0.25257 -10.018,-0.19122 -8.2508,0.15633 h -0.001 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path26" + d="m 597.33,236.74 -3.6837,-0.61936 c -7.075,17.39 -13.417,17.812 -14.611,1.27 1.5816,-0.56885 0.95733,-3.335 2.7491,-2.2285 0.93943,0.57848 2.1308,-1.0692 1.3536,-1.9772 -2.0054,-1.4817 -3.7876,-1.252 -5.5411,0.39808 -0.82484,-2.641 -2.8506,-3.8725 -5.3752,-2.7601 -1.0898,0.48106 -0.71621,2.4582 0.3784,2.3452 1.7679,-0.18401 1.0576,1.6657 1.6079,2.902 -12.548,16.482 -18.963,14.52 -17.4,-7.1245 -2.9878,-0.61936 -6.4662,-1.2375 -9.577,-2.3512 -11.548,23.346 -19.765,24.349 -26.418,3.3987 1.4253,-1.068 1.0194,-3.7511 3.1024,-2.8888 1.1734,0.48587 2.1594,-1.5995 1.1102,-2.4895 -2.4316,-2.0613 -5.0708,-1.365 -6.8387,1.2844 -1.4193,-2.8539 -3.9488,-3.8834 -6.619,-2.1491 -1.1531,0.74804 -0.43809,2.9429 0.78665,2.611 2.3528,-0.63621 1.2964,2.4738 3.0762,3.5406 -5.1007,19.695 -30.867,21.02 -26.65,-8.1311 -2.3647,0.0794 -4.5014,0.15995 -6.6298,0.23933 -2.1296,-0.0795 -4.2663,-0.15995 -6.6322,-0.23933 4.2173,29.151 -21.55,27.826 -26.649,8.1311 1.7786,-1.0668 0.72218,-4.1756 3.075,-3.5406 1.2247,0.33193 1.9409,-1.8629 0.78782,-2.611 -2.6715,-1.7342 -5.1997,-0.70476 -6.619,2.1491 -1.769,-2.6494 -4.4083,-3.3458 -6.8387,-1.2844 -1.0504,0.88996 -0.0645,2.9754 1.1101,2.4895 2.0818,-0.86229 1.676,1.8208 3.1012,2.8888 -6.6525,20.95 -14.869,19.947 -26.416,-3.3987 -3.1108,1.1136 -6.5904,1.7318 -9.5782,2.3512 1.5626,21.644 -4.8512,23.607 -17.4,7.1245 0.5503,-1.2363 -0.15875,-3.086 1.6079,-2.902 1.0946,0.11304 1.4694,-1.8653 0.3796,-2.3452 -2.5259,-1.1137 -4.5504,0.11906 -5.3752,2.7601 -1.7535,-1.65 -3.5369,-1.8785 -5.5423,-0.39808 -0.77709,0.908 0.41542,2.5556 1.3536,1.9772 1.7929,-1.1064 1.1674,1.6597 2.7491,2.2285 -1.1925,16.542 -7.5358,16.12 -14.61,-1.27 l -3.6837,0.61936 c -0.1134,4.0866 1.3059,8.4342 3.8067,11.63 10.608,13.554 18.499,10.479 18.788,-4.7012 13.89,16.392 24.394,14.319 26.278,-2.9705 11.685,21.809 30.433,11.372 30.821,-1.8557 5.146,19.226 33.665,19.091 35.489,-3.0066 1.8228,22.096 30.34,22.232 35.487,3.0066 0.38795,13.227 19.136,23.665 30.821,1.8557 1.8836,17.289 12.388,19.363 26.278,2.9705 0.28769,15.18 8.178,18.255 18.788,4.7012 2.4996,-3.1942 3.9201,-7.543 3.8067,-11.63 h -0.002 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path28" + d="m 593.72,235.62 3.6838,0.61938 -0.16711,1.0054 -3.6838,-0.61937 -0.38437,-0.69633 0.55148,-0.30909 z m -0.55148,0.30909 0.15279,-0.37643 0.39869,0.0673 -0.55148,0.30909 z m -14.312,0.98376 0.33901,0.95972 0.33424,-0.51714 0.12654,1.4889 0.15398,1.3879 0.18264,1.2856 0.21009,1.1846 0.23515,1.0824 0.25785,0.98016 0.2829,0.87674 0.302,0.7733 0.32111,0.66746 0.33543,0.56406 0.34736,0.457 0.35214,0.35478 0.35333,0.25737 0.35453,0.16597 0.36169,0.0854 0.37841,0.008 0.40824,-0.0746 0.44047,-0.16115 0.47152,-0.25617 0.50253,-0.35598 0.52643,-0.45821 0.5467,-0.55923 0.56582,-0.66146 0.58133,-0.76369 0.59565,-0.86711 0.60759,-0.96693 0.61954,-1.068 0.62788,-1.1702 0.63743,-1.27 0.64459,-1.371 0.65057,-1.4708 0.65773,-1.5719 0.93585,0.38726 -0.66489,1.5887 -0.6601,1.4925 -0.65654,1.3927 -0.64937,1.294 -0.64221,1.1966 -0.63624,1.0992 -0.62907,1.0006 -0.61953,0.90319 -0.61476,0.80697 -0.6064,0.70957 -0.59922,0.61215 -0.59567,0.51594 -0.59088,0.42092 -0.59087,0.3187 -0.59088,0.21648 -0.59208,0.10584 -0.5861,-0.0133 -0.567,-0.1335 -0.53598,-0.25014 -0.49896,-0.3608 -0.45719,-0.46061 -0.42137,-0.55563 -0.38795,-0.65062 -0.35692,-0.74445 -0.32826,-0.83584 -0.29962,-0.93446 -0.27216,-1.0283 -0.24471,-1.1233 -0.21486,-1.2207 -0.18742,-1.3193 -0.15876,-1.4167 -0.12652,-1.5129 0.33422,-0.51713 z m -0.33422,0.51714 -0.0275,-0.38725 0.36168,-0.12989 -0.33424,0.51714 z m 3.5166,-2.6999 -0.52762,0.8683 -0.13249,-0.0758 -0.11102,-0.053 -0.0883,-0.0337 -0.0657,-0.0168 -0.0382,-0.005 -0.0204,0.001 -0.0107,0.002 -0.002,0.001 -0.008,0.006 -0.0204,0.0181 -0.0275,0.03 -0.0323,0.0445 -0.0382,0.0625 -0.0405,0.077 -0.0442,0.0938 -0.0454,0.10096 -0.0454,0.11064 -0.0502,0.12387 -0.0525,0.12629 -0.0537,0.13108 -0.0597,0.14071 -0.0668,0.14072 -0.0717,0.14191 -0.0823,0.14551 -0.0896,0.14192 -0.10147,0.1407 -0.11578,0.13832 -0.13011,0.13108 -0.14445,0.12147 -0.15996,0.11064 -0.17546,0.095 -0.19099,0.0806 -0.33902,-0.95972 0.0931,-0.0397 0.0848,-0.047 0.0764,-0.053 0.0728,-0.0613 0.068,-0.0685 0.0633,-0.0758 0.0633,-0.0878 0.0609,-0.0938 0.0561,-0.0997 0.0549,-0.11064 0.0525,-0.11185 0.0502,-0.11666 0.0513,-0.12387 0.0502,-0.12387 0.0502,-0.12387 0.0525,-0.12749 0.0573,-0.12747 0.0585,-0.12267 0.0668,-0.12509 0.0764,-0.12507 0.0896,-0.12148 0.10623,-0.11664 0.12295,-0.10464 0.14683,-0.0925 0.16949,-0.0685 0.17787,-0.0384 0.18503,-0.008 0.18621,0.0217 0.18264,0.0458 0.18144,0.0673 0.18502,0.089 0.1898,0.10943 z m -0.52762,0.8683 z m 1.3178,-2 0.59923,-0.8226 0.0836,0.0782 0.099,0.12989 0.0836,0.13469 0.068,0.14433 0.0525,0.14432 0.0357,0.14431 0.025,0.14672 0.009,0.15153 -0.004,0.14311 -0.0156,0.14072 -0.0238,0.14071 -0.0358,0.1347 -0.0417,0.13109 -0.0536,0.13109 -0.0609,0.12387 -0.068,0.11906 -0.074,0.11305 -0.0811,0.10823 -0.0883,0.10344 -0.0955,0.0974 -0.10147,0.0902 -0.10744,0.0818 -0.11697,0.0758 -0.12056,0.0649 -0.12654,0.0541 -0.13369,0.0444 -0.14445,0.0312 -0.14681,0.0132 -0.14444,-0.001 -0.1528,-0.0193 -0.15041,-0.0397 -0.14562,-0.0565 -0.14086,-0.077 0.52762,-0.86831 0.0357,0.0193 0.0358,0.0132 0.0286,0.008 0.0287,0.002 0.037,0.001 0.0346,-0.004 0.0323,-0.007 0.043,-0.0132 0.0454,-0.0205 0.0466,-0.024 0.0454,-0.03 0.0477,-0.0385 0.049,-0.042 0.0454,-0.047 0.0454,-0.053 0.0429,-0.0577 0.0406,-0.0601 0.0346,-0.0613 0.0323,-0.0662 0.025,-0.0613 0.0226,-0.0685 0.0167,-0.0649 0.0119,-0.0637 0.006,-0.0637 10e-4,-0.0613 -0.002,-0.053 -0.008,-0.053 -0.0143,-0.0553 -0.0167,-0.0481 -0.0226,-0.0458 -0.0286,-0.0458 -0.0347,-0.0458 0.0836,0.0782 z m 0.59923,-0.8226 0.0454,0.0337 0.0382,0.0445 -0.0836,-0.0782 z m -6.323,0.96212 0.9645,-0.30548 -0.82723,-0.22008 0.17548,-0.15996 0.17548,-0.15032 0.17666,-0.14553 0.17906,-0.13589 0.18143,-0.12628 0.18145,-0.11906 0.18264,-0.10945 0.18502,-0.10096 0.18741,-0.0914 0.1886,-0.083 0.1886,-0.0709 0.19218,-0.0649 0.19577,-0.053 0.19338,-0.042 0.19696,-0.0337 0.19935,-0.0217 0.19815,-0.0108 0.19934,-0.002 0.20055,0.0108 0.19935,0.0205 0.20174,0.03 0.20172,0.042 0.19935,0.0517 0.20174,0.0625 0.20054,0.0733 0.20174,0.083 0.20053,0.095 0.19935,0.10222 0.20054,0.11425 0.19935,0.12388 0.20054,0.13229 0.20172,0.14311 -0.59922,0.82262 -0.17309,-0.12388 -0.1719,-0.11546 -0.17069,-0.10462 -0.16712,-0.095 -0.16353,-0.0854 -0.16235,-0.0758 -0.15876,-0.0661 -0.15756,-0.0565 -0.15638,-0.0481 -0.15399,-0.0397 -0.1516,-0.0325 -0.14921,-0.0228 -0.1492,-0.0157 -0.14564,-0.006 -0.14682,0 -0.14563,0.008 -0.14444,0.0168 -0.14444,0.0241 -0.14563,0.0325 -0.14324,0.0385 -0.14443,0.0481 -0.14803,0.0565 -0.14563,0.0637 -0.14682,0.0722 -0.14921,0.0818 -0.14922,0.0878 -0.1504,0.0974 -0.15041,0.10703 -0.1504,0.11425 -0.1528,0.12387 -0.15398,0.13351 -0.15399,0.14069 -0.82723,-0.22008 z m 0.82723,0.22008 -0.5861,0.55202 -0.24113,-0.7721 0.82723,0.22008 z m -5.5173,-2.6663 -0.40584,-0.93326 0.25663,-0.10583 0.25546,-0.0925 0.25067,-0.077 0.25068,-0.0637 0.24947,-0.0505 0.24591,-0.0348 0.24351,-0.0205 0.23994,-0.007 0.23635,0.007 0.23277,0.0205 0.23158,0.0348 0.22561,0.0505 0.21844,0.0625 0.21605,0.0758 0.2101,0.089 0.20173,0.10096 0.19936,0.11424 0.19217,0.12868 0.18264,0.13712 0.17547,0.14792 0.17189,0.16115 0.16235,0.17199 0.15519,0.18159 0.14681,0.18882 0.14086,0.20084 0.13249,0.20927 0.12654,0.22008 0.11699,0.2285 0.10981,0.23572 0.10267,0.24534 0.0931,0.25376 0.0871,0.25977 -0.9645,0.30548 -0.0752,-0.2261 -0.0811,-0.21768 -0.0859,-0.20686 -0.0931,-0.19964 -0.0979,-0.19002 -0.10265,-0.17919 -0.10863,-0.17078 -0.11221,-0.15995 -0.11818,-0.15274 -0.12176,-0.14311 -0.12413,-0.13109 -0.12893,-0.12027 -0.13488,-0.11425 -0.13727,-0.10343 -0.13967,-0.0925 -0.14444,-0.083 -0.14921,-0.0746 -0.1504,-0.0649 -0.15638,-0.0541 -0.16115,-0.0458 -0.16353,-0.036 -0.16712,-0.0253 -0.17308,-0.0157 -0.17667,-0.005 -0.18264,0.005 -0.18622,0.0157 -0.19099,0.0277 -0.19696,0.0385 -0.20054,0.0517 -0.20531,0.0625 -0.21009,0.0758 -0.21367,0.089 z m 0.12296,1.3722 0.10504,1.0126 -10e-4,0 -0.15756,0.008 -0.15757,-0.012 -0.14922,-0.03 -0.14443,-0.0458 -0.13609,-0.0637 -0.12414,-0.0746 -0.1146,-0.0865 -0.10265,-0.0962 -0.0931,-0.10464 -0.0823,-0.11184 -0.0716,-0.11546 -0.0621,-0.11906 -0.0536,-0.12507 -0.0454,-0.12989 -0.0358,-0.12868 -0.0275,-0.13229 -0.0191,-0.13711 -0.009,-0.13589 -0.002,-0.1335 0.007,-0.13831 0.0179,-0.13831 0.0263,-0.1383 0.0369,-0.13589 0.0466,-0.1323 0.0609,-0.13349 0.0704,-0.12508 0.0823,-0.12147 0.10025,-0.11906 0.10863,-0.10704 0.12055,-0.0962 0.1337,-0.0866 0.14443,-0.0722 0.40586,0.93326 -0.0513,0.0265 -0.0454,0.0288 -0.0417,0.0337 -0.0369,0.0348 -0.031,0.0372 -0.0298,0.047 -0.0298,0.0505 -0.0226,0.0517 -0.0204,0.0577 -0.0179,0.0613 -0.0119,0.0637 -0.008,0.0685 -0.002,0.0662 0,0.0758 0.005,0.0685 0.009,0.0673 0.0156,0.0697 0.0167,0.0662 0.0216,0.0602 0.025,0.0577 0.0287,0.0541 0.0287,0.0481 0.0298,0.0397 0.031,0.0349 0.031,0.0288 0.031,0.024 0.031,0.0193 0.0286,0.0132 0.0298,0.009 0.0323,0.006 0.0357,0.002 0.043,-10e-4 -0.001,0 z m 2.0615,3.7186 -0.80218,-0.62056 -0.0609,0.51834 -0.0585,-0.14552 -0.0513,-0.14793 -0.0417,-0.14792 -0.0335,-0.14191 -0.0298,-0.14553 -0.025,-0.14432 -0.0191,-0.1407 -0.0167,-0.13831 -0.0144,-0.1359 -0.0119,-0.12989 -0.0119,-0.12748 -0.0107,-0.12147 -0.0131,-0.11665 -0.0131,-0.11185 -0.0144,-0.10342 -0.0167,-0.0974 -0.0179,-0.0878 -0.0204,-0.077 -0.0226,-0.0685 -0.0238,-0.0602 -0.0226,-0.047 -0.0226,-0.0349 -0.0216,-0.0288 -0.0238,-0.0228 -0.025,-0.0205 -0.0275,-0.0156 -0.0417,-0.0169 -0.0549,-0.0157 -0.0692,-0.0132 -0.0859,-0.007 -0.10744,0 -0.12413,0.008 -0.10505,-1.0126 0.19338,-0.0132 0.18145,0 0.17665,0.0145 0.16951,0.03 0.15997,0.047 0.15159,0.0649 0.14444,0.083 0.12533,0.0974 0.11221,0.10945 0.0955,0.12026 0.0799,0.12628 0.0633,0.12868 0.0525,0.12748 0.0417,0.13109 0.0347,0.13229 0.0275,0.13109 0.0215,0.12868 0.0191,0.12989 0.0156,0.12868 0.0131,0.12869 0.0131,0.12868 0.0119,0.12748 0.0119,0.12748 0.0119,0.12147 0.0144,0.11906 0.0167,0.11666 0.0179,0.11305 0.0226,0.10944 0.0263,0.10824 0.0275,0.0997 0.0323,0.0926 0.0369,0.0902 -0.0609,0.51833 z m 0.0609,-0.51833 0.12295,0.2766 -0.18383,0.24174 0.0609,-0.51834 z m -17.964,-6.4173 0.20293,-0.99821 0.40227,0.53639 -0.12175,1.9603 -0.0764,1.8461 -0.0298,1.7282 0.0131,1.6128 0.0609,1.4949 0.10384,1.3794 0.14684,1.2616 0.19099,1.1437 0.23157,1.0247 0.27097,0.908 0.30797,0.78773 0.34259,0.66747 0.37363,0.54841 0.39869,0.43296 0.42138,0.32591 0.45002,0.2237 0.48225,0.13109 0.52881,0.0384 0.58014,-0.0577 0.63504,-0.15996 0.68876,-0.26699 0.7377,-0.37643 0.78785,-0.48948 0.8332,-0.59893 0.87618,-0.71196 0.91914,-0.82261 0.95973,-0.93325 0.99912,-1.0451 1.0385,-1.1546 1.0779,-1.264 1.1149,-1.3734 1.1519,-1.4841 0.80218,0.62057 -1.1638,1.4985 -1.1292,1.3927 -1.0946,1.2832 -1.0576,1.1762 -1.023,1.0692 -0.98839,0.96211 -0.95257,0.85148 -0.91675,0.74565 -0.88572,0.63741 -0.8523,0.52795 -0.82127,0.41973 -0.7938,0.30788 -0.76635,0.19122 -0.7401,0.0746 -0.71263,-0.053 -0.67325,-0.18401 -0.62668,-0.31268 -0.56941,-0.43657 -0.50851,-0.55323 -0.45002,-0.66145 -0.39512,-0.7685 -0.34139,-0.87432 -0.29484,-0.98016 -0.2459,-1.0896 -0.19815,-1.1966 -0.15399,-1.3073 -0.10624,-1.4179 -0.0609,-1.5286 -0.0156,-1.6416 0.0323,-1.7547 0.0764,-1.8677 0.12413,-1.982 0.40228,0.53639 z m 0.20293,-0.99821 0.4345,0.0902 -0.0323,0.44618 -0.40227,-0.53639 z m -9.2261,-1.6248 -0.90483,-0.45459 0.62192,-0.25256 0.28767,0.10096 0.28889,0.0985 0.29245,0.0962 0.29245,0.0925 0.29603,0.0902 0.29843,0.089 0.29844,0.0878 0.29841,0.0842 0.30081,0.0818 0.30202,0.0794 0.302,0.0782 0.30319,0.077 0.30321,0.0734 0.30439,0.0734 0.30558,0.0709 0.3032,0.071 0.302,0.0673 0.3044,0.0673 0.30319,0.0662 0.30202,0.0637 0.302,0.0637 0.30081,0.0637 0.29842,0.0625 0.29843,0.0601 0.29842,0.0613 0.29246,0.0602 0.29364,0.0589 0.29365,0.059 0.28888,0.0589 0.28649,0.0577 0.28528,0.0589 0.28172,0.0577 -0.20293,0.9982 -0.28171,-0.0577 -0.28291,-0.059 -0.28649,-0.0577 -0.28887,-0.059 -0.29127,-0.059 -0.29363,-0.0589 -0.29724,-0.0602 -0.29604,-0.0613 -0.29842,-0.0602 -0.30319,-0.0625 -0.30321,-0.0637 -0.302,-0.0637 -0.30678,-0.0662 -0.30559,-0.0661 -0.30677,-0.0674 -0.30917,-0.0697 -0.30798,-0.0709 -0.30797,-0.0734 -0.30917,-0.0733 -0.30797,-0.0758 -0.31036,-0.077 -0.30918,-0.0806 -0.30677,-0.0818 -0.30797,-0.0842 -0.30798,-0.0866 -0.30558,-0.0878 -0.30558,-0.0914 -0.30321,-0.0925 -0.30438,-0.0974 -0.29963,-0.0985 -0.30081,-0.10096 -0.29722,-0.10582 0.62191,-0.25256 z m -0.90483,-0.45459 0.19935,-0.40409 0.42257,0.15153 -0.62192,0.25256 z m -26.267,3.2171 0.60401,0.81781 0.17906,-0.56404 0.6243,1.8882 0.63385,1.7571 0.64101,1.6272 0.65056,1.4961 0.65893,1.3638 0.66728,1.2339 0.67324,1.1016 0.6828,0.96813 0.68636,0.83585 0.69115,0.70475 0.69355,0.57246 0.69592,0.44618 0.69473,0.31871 0.7007,0.19963 0.71025,0.083 0.72458,-0.0349 0.74605,-0.15394 0.76994,-0.27421 0.79738,-0.40288 0.82246,-0.53157 0.84633,-0.66146 0.86902,-0.79374 0.89168,-0.92725 0.91078,-1.0583 0.93109,-1.1906 0.95138,-1.3241 0.97167,-1.4564 0.98957,-1.5875 1.0111,-1.7198 1.0278,-1.8521 1.0493,-1.9844 1.0696,-2.1143 0.90483,0.4546 -1.0767,2.1311 -1.0588,2.0012 -1.0397,1.8713 -1.023,1.7414 -1.0063,1.614 -0.98838,1.4829 -0.97524,1.3554 -0.95735,1.2267 -0.9466,1.0968 -0.93227,0.97055 -0.92154,0.84185 -0.91319,0.71437 -0.906,0.58449 -0.90005,0.4534 -0.89646,0.3199 -0.8917,0.1828 -0.88452,0.042 -0.8726,-0.0998 -0.8535,-0.24294 -0.83079,-0.38124 -0.80576,-0.51594 -0.78187,-0.64462 -0.76038,-0.7745 -0.73889,-0.90079 -0.72099,-1.0259 -0.70668,-1.1521 -0.69115,-1.2772 -0.67802,-1.4047 -0.66489,-1.5298 -0.65294,-1.6584 -0.64341,-1.7835 -0.63147,-1.9122 0.17906,-0.56404 z m -0.17906,0.56404 -0.10981,-0.34755 0.28887,-0.21649 -0.17906,0.56404 z m 3.7757,-3.5153 -0.38437,0.94288 -0.15637,-0.0589 -0.1337,-0.0385 -0.1146,-0.0228 -0.0979,-0.009 -0.0752,0.001 -0.0596,0.009 -0.0513,0.0156 -0.0477,0.0205 -0.0454,0.0277 -0.0466,0.0385 -0.0477,0.0481 -0.0536,0.0637 -0.0549,0.077 -0.0536,0.0865 -0.0561,0.10222 -0.0561,0.11185 -0.0573,0.12268 -0.0598,0.13108 -0.0585,0.13711 -0.0597,0.14311 -0.0645,0.15033 -0.068,0.15273 -0.0704,0.15755 -0.0788,0.15875 -0.0811,0.15634 -0.0908,0.15995 -0.10025,0.15997 -0.10982,0.15513 -0.11938,0.15034 -0.13249,0.14792 -0.14684,0.14071 -0.15994,0.12988 -0.60401,-0.8178 0.0979,-0.0794 0.0896,-0.0854 0.0848,-0.095 0.0836,-0.10462 0.0764,-0.10944 0.074,-0.11666 0.0692,-0.12387 0.0692,-0.13231 0.0645,-0.13228 0.0633,-0.1383 0.0633,-0.14311 0.0596,-0.14072 0.0621,-0.14553 0.0633,-0.14672 0.0645,-0.14551 0.0668,-0.14432 0.0728,-0.14312 0.0777,-0.14071 0.0871,-0.1395 0.0955,-0.13229 0.10623,-0.12868 0.12176,-0.12027 0.13967,-0.11064 0.15517,-0.095 0.16712,-0.0758 0.18264,-0.0541 0.19576,-0.0289 0.19935,-0.004 0.20054,0.0193 0.20771,0.0397 0.21486,0.0625 0.22084,0.083 z m 0.59208,-1.6284 0.65175,-0.77931 0.13012,0.12267 0.1134,0.13109 0.099,0.1395 0.0848,0.14914 0.0668,0.15034 0.0537,0.15513 0.037,0.15754 0.0263,0.15634 0.0107,0.15876 10e-4,0.15394 -0.0107,0.15755 -0.0216,0.15153 -0.0298,0.15033 -0.0417,0.14673 -0.049,0.14311 -0.0596,0.14191 -0.0669,0.1323 -0.074,0.12868 -0.0836,0.12507 -0.0955,0.12027 -0.10025,0.11064 -0.10983,0.10096 -0.11817,0.0938 -0.12892,0.0842 -0.13847,0.071 -0.14443,0.0565 -0.15518,0.0433 -0.15995,0.0228 -0.16473,0.005 -0.16713,-0.0157 -0.16592,-0.036 -0.16592,-0.0577 0.38437,-0.94288 0.0536,0.0193 0.049,0.009 0.0454,0.006 0.043,-0.002 0.043,-0.006 0.043,-0.012 0.0466,-0.0181 0.0477,-0.0253 0.0478,-0.0313 0.049,-0.0385 0.0502,-0.0481 0.0502,-0.053 0.0454,-0.0577 0.0429,-0.0649 0.043,-0.0735 0.0382,-0.077 0.0335,-0.077 0.0275,-0.0806 0.0226,-0.0842 0.0179,-0.083 0.0119,-0.0865 0.006,-0.0806 -0.001,-0.0818 -0.006,-0.0795 -0.0119,-0.0746 -0.0179,-0.0735 -0.0226,-0.0662 -0.0286,-0.0661 -0.0323,-0.0577 -0.0417,-0.0577 -0.049,-0.0565 -0.0536,-0.0505 z m -6.9652,1.1233 0.90482,-0.457 -0.87258,-0.0553 0.17904,-0.25857 0.18502,-0.24655 0.18981,-0.23331 0.19696,-0.2237 0.20053,-0.21046 0.20651,-0.19844 0.21249,-0.1864 0.21724,-0.17319 0.22323,-0.16236 0.2268,-0.14551 0.23038,-0.13351 0.23755,-0.12026 0.23993,-0.10462 0.24352,-0.0902 0.24828,-0.077 0.25068,-0.0601 0.25426,-0.0445 0.25545,-0.0289 0.25783,-0.0133 0.25904,0.004 0.25903,0.0193 0.26142,0.0348 0.26141,0.053 0.25903,0.0697 0.26023,0.0842 0.25903,0.10223 0.25545,0.11906 0.25546,0.13349 0.25307,0.15154 0.25066,0.16597 0.24949,0.184 0.2459,0.19964 -0.65176,0.77933 -0.21009,-0.17079 -0.21128,-0.15514 -0.2101,-0.13951 -0.20769,-0.12508 -0.20771,-0.10944 -0.2077,-0.095 -0.20412,-0.0806 -0.20294,-0.0673 -0.20411,-0.053 -0.19935,-0.0409 -0.19935,-0.0277 -0.19696,-0.0144 -0.19695,-0.001 -0.19577,0.008 -0.19338,0.0217 -0.1922,0.0348 -0.19097,0.0458 -0.191,0.0577 -0.1886,0.0709 -0.1898,0.083 -0.18503,0.0938 -0.18502,0.10703 -0.18383,0.11906 -0.18264,0.13109 -0.17905,0.14191 -0.17667,0.15755 -0.17546,0.16717 -0.1719,0.17918 -0.1683,0.19244 -0.16593,0.20444 -0.16116,0.21527 -0.15756,0.22731 -0.8726,-0.0553 z m 0.87259,0.0553 -0.48464,0.7252 -0.38795,-0.78052 0.87259,0.0553 z m -6.7659,-2.0048 -0.5467,-0.8563 -10e-4,0 0.26857,-0.16597 0.26977,-0.15033 0.27097,-0.13469 0.27097,-0.11666 0.26978,-0.10096 0.26859,-0.0842 0.26858,-0.0685 0.26858,-0.0505 0.26619,-0.036 0.26619,-0.0167 0.26142,-0.004 0.26022,0.0144 0.25785,0.03 0.25425,0.047 0.24948,0.0613 0.24472,0.0758 0.2435,0.0925 0.23517,0.10704 0.23157,0.12026 0.22441,0.13591 0.21845,0.14792 0.21368,0.16356 0.20531,0.17439 0.20174,0.18761 0.19336,0.20084 0.18624,0.21046 0.18142,0.2237 0.1719,0.23451 0.16712,0.24655 0.15876,0.25737 0.15159,0.26699 0.14565,0.27902 -0.90483,0.45699 -0.12652,-0.24533 -0.1349,-0.23572 -0.13728,-0.22369 -0.14324,-0.21046 -0.14802,-0.20085 -0.15279,-0.19002 -0.15518,-0.17679 -0.15996,-0.16477 -0.16353,-0.15394 -0.16712,-0.1407 -0.1707,-0.12988 -0.17308,-0.11666 -0.17667,-0.10704 -0.17906,-0.0938 -0.18023,-0.083 -0.18383,-0.0685 -0.18743,-0.059 -0.18978,-0.047 -0.1922,-0.0349 -0.19337,-0.0228 -0.19816,-0.009 -0.20173,10e-4 -0.20412,0.0145 -0.20651,0.0265 -0.2089,0.0409 -0.21367,0.0541 -0.21844,0.0673 -0.21964,0.0818 -0.22323,0.0974 -0.22322,0.11064 -0.22919,0.12869 -0.23038,0.14191 -10e-4,0 z m 0.38198,1.6909 0.26262,0.98377 -0.16951,0.036 -0.17069,0.0145 -0.1695,-0.005 -0.16355,-0.0265 -0.15399,-0.0445 -0.14921,-0.0613 -0.13488,-0.0746 -0.12892,-0.0878 -0.11817,-0.10106 -0.10506,-0.10824 -0.0955,-0.11546 -0.0848,-0.12147 -0.08,-0.12989 -0.0668,-0.13589 -0.0573,-0.1347 -0.0513,-0.14432 -0.0394,-0.14552 -0.0323,-0.14793 -0.0216,-0.15153 -0.0119,-0.15274 -0.001,-0.15513 0.008,-0.15515 0.0204,-0.15393 0.0323,-0.15514 0.0454,-0.15395 0.0573,-0.14793 0.0717,-0.14912 0.0883,-0.14312 0.10025,-0.13349 0.11578,-0.12628 0.13012,-0.11545 0.14444,-0.10464 0.54671,0.85629 -0.0609,0.0446 -0.0537,0.0481 -0.0466,0.0518 -0.0429,0.0565 -0.0357,0.059 -0.031,0.0625 -0.0263,0.0709 -0.0216,0.0721 -0.0156,0.0782 -0.0107,0.0818 -0.006,0.083 0.001,0.083 0.007,0.0854 0.0119,0.0842 0.0179,0.0854 0.0226,0.083 0.0275,0.077 0.0335,0.0795 0.0357,0.0709 0.0369,0.0625 0.0442,0.0613 0.043,0.053 0.0454,0.0458 0.0417,0.036 0.043,0.03 0.0442,0.024 0.0417,0.0181 0.0417,0.0108 0.0442,0.007 0.043,0.002 0.0489,-0.005 0.0573,-0.012 z m 3.6969,4.1612 -0.97883,-0.25737 0.23038,0.56645 -0.19816,-0.13229 -0.18024,-0.14674 -0.16235,-0.15873 -0.14324,-0.16838 -0.12533,-0.17318 -0.11341,-0.1804 -0.0967,-0.1828 -0.0848,-0.1816 -0.0764,-0.18521 -0.0657,-0.18159 -0.0596,-0.1792 -0.0536,-0.1768 -0.0513,-0.17196 -0.0477,-0.16959 -0.043,-0.15634 -0.0466,-0.15153 -0.0442,-0.14311 -0.0454,-0.12989 -0.0454,-0.11666 -0.0489,-0.10584 -0.0466,-0.0878 -0.0466,-0.0709 -0.0466,-0.0565 -0.0454,-0.0444 -0.0466,-0.0337 -0.049,-0.0265 -0.0585,-0.0205 -0.0777,-0.0157 -0.0955,-0.006 -0.12176,0.006 -0.14563,0.0205 -0.17429,0.0409 -0.2626,-0.98377 0.24828,-0.0577 0.23636,-0.0349 0.2268,-0.0108 0.21964,0.0156 0.20889,0.042 0.19696,0.0685 0.18025,0.0962 0.15876,0.11545 0.14086,0.13349 0.11818,0.14553 0.10147,0.15273 0.0848,0.15755 0.0728,0.15875 0.0645,0.16235 0.0573,0.16597 0.0513,0.16235 0.049,0.16598 0.0477,0.16597 0.0454,0.16236 0.0466,0.15994 0.049,0.15996 0.0525,0.15514 0.0537,0.15033 0.0573,0.13951 0.0657,0.13829 0.068,0.12989 0.0728,0.11787 0.0823,0.11306 0.0883,0.10341 0.0955,0.0938 0.10624,0.0865 0.11937,0.0794 0.23038,0.56644 z m -0.23039,-0.56645 0.32588,0.19603 -0.0955,0.37042 -0.23039,-0.56645 z m -26.893,-7.1846 -0.0335,-1.0174 0.51687,0.58209 -0.30558,2.6158 -0.14086,2.4354 0.0143,2.2598 0.15996,2.0842 0.29484,1.911 0.42019,1.7414 0.53477,1.5731 0.63862,1.4083 0.73413,1.2472 0.81886,1.0896 0.89648,0.93567 0.96211,0.78653 1.0218,0.63981 1.0743,0.49789 1.1185,0.3584 1.1531,0.22008 1.183,0.0842 1.2044,-0.0505 1.2152,-0.18281 1.2164,-0.3163 1.2116,-0.44498 1.1949,-0.57366 1.171,-0.69874 1.1352,-0.82502 1.0934,-0.94889 1.0385,-1.0692 0.97763,-1.1882 0.90483,-1.3061 0.82484,-1.4203 0.73294,-1.5346 0.63505,-1.6452 0.52641,-1.7547 0.97883,0.25738 -0.5479,1.8292 -0.66369,1.7198 -0.76875,1.6067 -0.86543,1.4901 -0.95257,1.3734 -1.0302,1.2532 -1.0982,1.1317 -1.1579,1.0042 -1.2092,0.87793 -1.2474,0.74684 -1.2808,0.61456 -1.3023,0.47865 -1.3167,0.34036 -1.3202,0.19964 -1.3142,0.0553 -1.2976,-0.0938 -1.2725,-0.24173 -1.2355,-0.39688 -1.1889,-0.55081 -1.1292,-0.70716 -1.06,-0.8659 -0.98002,-1.0247 -0.8905,-1.1834 -0.79142,-1.3434 -0.6816,-1.5045 -0.56581,-1.6645 -0.44166,-1.828 -0.30678,-1.9928 -0.16474,-2.1588 -0.0144,-2.3271 0.14324,-2.5003 0.31274,-2.6711 0.51688,0.58208 z m -0.0335,-1.0174 0.60401,-0.0205 -0.0871,0.60254 -0.51687,-0.58209 z m -6.6322,1.2568 0.0382,-1.0174 -0.0382,0 0.20055,-0.007 0.19815,-0.007 0.20053,-0.008 0.20055,-0.007 0.20053,-0.007 0.20055,-0.007 0.19935,-0.007 0.20054,-0.008 0.20292,-0.007 0.20174,-0.007 0.20174,-0.007 0.20291,-0.008 0.20413,-0.007 0.20412,-0.007 0.20294,-0.007 0.20531,-0.008 0.20651,-0.007 0.20651,-0.007 0.2077,-0.007 0.20651,-0.007 0.2089,-0.008 0.21247,-0.007 0.21129,-0.007 0.2089,-0.007 0.21367,-0.008 0.21606,-0.007 0.21486,-0.007 0.21607,-0.007 0.21606,-0.007 0.21843,-0.008 0.22084,-0.007 0.22084,-0.007 0.0335,1.0174 -0.22083,0.007 -0.21845,0.007 -0.21844,0.008 -0.21845,0.007 -0.21606,0.007 -0.21486,0.007 -0.21369,0.007 -0.21127,0.008 -0.21368,0.007 -0.21129,0.007 -0.20769,0.007 -0.2089,0.008 -0.20889,0.007 -0.20772,0.007 -0.2065,0.007 -0.20413,0.007 -0.20532,0.008 -0.20531,0.007 -0.20412,0.007 -0.20173,0.007 -0.20293,0.008 -0.20413,0.007 -0.20172,0.007 -0.20055,0.007 -0.20053,0.008 -0.20174,0.007 -0.20054,0.007 -0.20054,0.007 -0.19815,0.007 -0.20054,0.008 -0.20055,0.007 -0.19815,0.007 -0.0382,0 z m 0.0382,0 -0.0191,0.001 -0.0191,-0.001 0.0382,0 z m -6.1511,-0.8214 -1.0003,0.14672 0.51687,-0.58208 0.22083,0.007 0.22084,0.007 0.21964,0.008 0.21606,0.007 0.21605,0.007 0.21487,0.007 0.21487,0.007 0.21247,0.008 0.21129,0.007 0.21128,0.007 0.21129,0.007 0.21009,0.008 0.2065,0.007 0.2077,0.007 0.20652,0.007 0.20651,0.007 0.20532,0.008 0.20292,0.007 0.20413,0.007 0.20531,0.007 0.20293,0.008 0.20054,0.007 0.20173,0.007 0.20294,0.007 0.20053,0.008 0.20055,0.007 0.20053,0.007 0.19935,0.007 0.20174,0.007 0.19935,0.008 0.19934,0.007 0.20053,0.007 -0.0382,1.0174 -0.19815,-0.007 -0.20174,-0.007 -0.19934,-0.008 -0.19935,-0.007 -0.19934,-0.007 -0.20056,-0.007 -0.20291,-0.007 -0.20055,-0.008 -0.20053,-0.007 -0.20175,-0.007 -0.20292,-0.007 -0.20292,-0.008 -0.20294,-0.007 -0.20412,-0.007 -0.20532,-0.007 -0.20531,-0.008 -0.20413,-0.007 -0.20651,-0.007 -0.20769,-0.007 -0.2089,-0.007 -0.21009,-0.008 -0.20652,-0.007 -0.21128,-0.007 -0.21367,-0.007 -0.21248,-0.008 -0.21247,-0.007 -0.21486,-0.007 -0.21606,-0.007 -0.21845,-0.007 -0.21965,-0.008 -0.21844,-0.007 -0.22083,-0.007 0.51686,-0.58208 z m -1.0003,0.14672 -0.0871,-0.60253 0.60401,0.0205 -0.51687,0.58209 z m -26.408,7.62 0.51806,0.87554 0.23039,-0.56646 0.52642,1.7547 0.63504,1.6452 0.73293,1.5346 0.82484,1.4203 0.90482,1.3061 0.97645,1.1882 1.0397,1.0692 1.0922,0.94889 1.1352,0.82501 1.1722,0.69874 1.1949,0.57367 1.2116,0.44498 1.2164,0.3163 1.2152,0.18281 1.2032,0.0505 1.183,-0.0842 1.1543,-0.22009 1.1185,-0.3584 1.0731,-0.49788 1.0218,-0.63982 0.96213,-0.78653 0.89646,-0.93567 0.81887,-1.0896 0.73412,-1.2472 0.63983,-1.4083 0.53478,-1.5731 0.41897,-1.7414 0.29486,-1.911 0.15995,-2.0842 0.0143,-2.2598 -0.14086,-2.4354 -0.30558,-2.6158 1.0003,-0.14672 0.31275,2.6711 0.14324,2.5003 -0.0143,2.3271 -0.16472,2.1588 -0.30679,1.9928 -0.44047,1.828 -0.56582,1.6645 -0.68279,1.5045 -0.79142,1.3434 -0.89049,1.1834 -0.98004,1.0247 -1.06,0.8659 -1.1292,0.70716 -1.1877,0.55082 -1.2355,0.39687 -1.2737,0.24173 -1.2976,0.0938 -1.3131,-0.0553 -1.3202,-0.19962 -1.3166,-0.34037 -1.3023,-0.47865 -1.2808,-0.61456 -1.2486,-0.74683 -1.2092,-0.87794 -1.1567,-1.0042 -1.0994,-1.1317 -1.029,-1.2532 -0.95257,-1.3734 -0.86543,-1.4901 -0.76874,-1.6067 -0.66369,-1.7198 -0.5479,-1.8292 0.23038,-0.56645 z m -0.23038,0.56645 -0.0955,-0.37042 0.32589,-0.19603 -0.23039,0.56645 z m 3.6957,-4.1612 -0.26261,0.98379 -0.17429,-0.0409 -0.14443,-0.0205 -0.12057,-0.005 -0.10025,0.006 -0.0752,0.0145 -0.0585,0.0217 -0.049,0.0253 -0.0466,0.0348 -0.0466,0.0444 -0.0442,0.0541 -0.0466,0.0721 -0.0477,0.0902 -0.049,0.10343 -0.0454,0.11785 -0.0454,0.12989 -0.0442,0.14072 -0.0442,0.15273 -0.0466,0.15995 -0.0466,0.16597 -0.0513,0.17198 -0.0525,0.17558 -0.0597,0.1804 -0.0668,0.18281 -0.0752,0.1828 -0.0859,0.18521 -0.0979,0.18281 -0.11102,0.17677 -0.12414,0.17319 -0.14443,0.16957 -0.16235,0.15875 -0.18025,0.14672 -0.19815,0.1323 -0.51806,-0.87553 0.11936,-0.0794 0.10625,-0.0866 0.0955,-0.0938 0.0871,-0.10222 0.0811,-0.11305 0.0752,-0.12147 0.0692,-0.12747 0.0621,-0.1347 0.0585,-0.14432 0.0549,-0.14913 0.0502,-0.15395 0.0502,-0.16115 0.0466,-0.15994 0.0466,-0.16357 0.0466,-0.16475 0.049,-0.16477 0.0514,-0.16477 0.0573,-0.16356 0.0645,-0.16356 0.0728,-0.15875 0.0836,-0.15514 0.10147,-0.15393 0.12056,-0.14793 0.13966,-0.13109 0.15877,-0.11666 0.18024,-0.095 0.19697,-0.0697 0.21128,-0.0409 0.21486,-0.0156 0.22801,0.009 0.23753,0.0349 0.2483,0.0577 z m 0.38317,-1.6909 0.54672,-0.85629 0.14443,0.10462 0.13012,0.11546 0.11579,0.12629 0.10147,0.13589 0.0859,0.14071 0.0728,0.14672 0.0573,0.15034 0.0454,0.15393 0.0323,0.15515 0.0204,0.15634 0.008,0.15514 -0.002,0.15274 -0.0119,0.15274 -0.0216,0.14912 -0.031,0.15034 -0.0406,0.14551 -0.0489,0.14192 -0.0585,0.13951 -0.0692,0.13589 -0.0764,0.12629 -0.0859,0.12266 -0.0979,0.11666 -0.10385,0.10703 -0.11817,0.10106 -0.12893,0.0878 -0.13488,0.0746 -0.14922,0.0613 -0.15398,0.0445 -0.16353,0.0265 -0.16951,0.005 -0.1707,-0.0145 -0.16951,-0.036 0.26262,-0.98377 0.0573,0.012 0.049,0.005 0.043,-0.002 0.0442,-0.007 0.0417,-0.0108 0.0417,-0.0181 0.0442,-0.0241 0.0429,-0.03 0.0417,-0.036 0.0466,-0.047 0.043,-0.0517 0.0405,-0.0601 0.0406,-0.0662 0.0357,-0.071 0.0323,-0.0745 0.0275,-0.0793 0.0238,-0.083 0.0167,-0.083 0.0119,-0.0866 0.007,-0.0854 0,-0.0854 -0.004,-0.083 -0.0107,-0.0793 -0.0156,-0.0782 -0.0215,-0.0721 -0.0263,-0.0685 -0.0323,-0.0649 -0.0357,-0.0613 -0.0417,-0.0541 -0.0466,-0.0518 -0.0537,-0.0481 -0.0609,-0.0444 z m -6.7647,2.0048 0.83797,-0.56765 -0.8714,0.0553 0.14564,-0.27901 0.15159,-0.26699 0.15877,-0.25736 0.16711,-0.24655 0.1719,-0.23331 0.18024,-0.2249 0.18741,-0.21166 0.19337,-0.19965 0.20175,-0.18761 0.20531,-0.17438 0.21367,-0.16357 0.21845,-0.14792 0.22442,-0.1359 0.23038,-0.12026 0.23635,-0.10704 0.24232,-0.0925 0.24471,-0.0758 0.24948,-0.0613 0.25425,-0.047 0.25904,-0.03 0.25903,-0.0145 0.26261,0.004 0.265,0.0168 0.26738,0.036 0.26859,0.0505 0.26858,0.0685 0.26858,0.0842 0.27098,0.10096 0.26858,0.11665 0.27097,0.13469 0.27097,0.15034 0.26738,0.16596 -0.54671,0.85629 -0.23158,-0.14191 -0.228,-0.12869 -0.2256,-0.11064 -0.22322,-0.0974 -0.21845,-0.0818 -0.21844,-0.0673 -0.21367,-0.0541 -0.2089,-0.0409 -0.20771,-0.0265 -0.20292,-0.0145 -0.20294,-0.001 -0.19696,0.009 -0.19456,0.0228 -0.19219,0.0349 -0.18979,0.047 -0.18742,0.059 -0.18264,0.0685 -0.18143,0.083 -0.17787,0.0937 -0.17667,0.10704 -0.17308,0.11665 -0.1707,0.12989 -0.16711,0.14072 -0.16353,0.15393 -0.15997,0.16596 -0.15638,0.17558 -0.1516,0.18884 -0.148,0.20203 -0.14325,0.21048 -0.13727,0.22368 -0.1349,0.23572 -0.12653,0.24534 -0.87139,0.0553 z m 0.87139,-0.0553 -0.38794,0.77932 -0.48345,-0.724 0.87139,-0.0553 z m -6.9652,-1.1233 -0.65176,-0.77931 0.2459,-0.19963 0.24947,-0.18402 0.24949,-0.16597 0.25426,-0.15152 0.25544,-0.1335 0.25546,-0.11907 0.25904,-0.10221 0.25903,-0.0842 0.25902,-0.0697 0.26143,-0.053 0.26142,-0.0348 0.26022,-0.0193 0.25784,-0.004 0.25783,0.0132 0.25546,0.0289 0.25426,0.0444 0.25187,0.0601 0.24828,0.077 0.24232,0.0902 0.23993,0.10463 0.23635,0.12026 0.23159,0.13349 0.228,0.14673 0.22201,0.16115 0.21726,0.17319 0.21248,0.18641 0.20532,0.19723 0.20293,0.21046 0.19696,0.2249 0.18978,0.23331 0.18502,0.24655 0.17787,0.25856 -0.83797,0.56766 -0.15876,-0.2273 -0.16115,-0.21528 -0.16593,-0.20445 -0.16831,-0.19121 -0.17189,-0.17921 -0.17666,-0.16836 -0.17668,-0.15756 -0.17905,-0.1419 -0.18145,-0.1323 -0.18262,-0.11785 -0.18622,-0.10704 -0.18622,-0.0938 -0.1898,-0.083 -0.18979,-0.0709 -0.18861,-0.0577 -0.19218,-0.0458 -0.19218,-0.0349 -0.19338,-0.0217 -0.19577,-0.008 -0.19577,0.001 -0.19815,0.0145 -0.19935,0.0277 -0.19934,0.0408 -0.20175,0.053 -0.20411,0.0673 -0.20413,0.0806 -0.2077,0.095 -0.2077,0.10945 -0.2089,0.12508 -0.2089,0.13951 -0.21128,0.15513 -0.21008,0.17078 z m 0.59207,1.6284 0.38437,0.94288 -0.16592,0.0577 -0.16594,0.036 -0.16711,0.0157 -0.16591,-0.005 -0.15997,-0.0228 -0.15517,-0.0433 -0.14564,-0.0565 -0.13728,-0.0721 -0.12652,-0.083 -0.11937,-0.0926 -0.11102,-0.10221 -0.10147,-0.11185 -0.0931,-0.11907 -0.0836,-0.12387 -0.0752,-0.12989 -0.068,-0.1347 -0.0573,-0.13951 -0.0501,-0.1407 -0.0417,-0.14913 -0.0298,-0.15032 -0.0216,-0.15395 -0.009,-0.15514 0,-0.15393 0.0119,-0.15876 0.025,-0.15634 0.0394,-0.15996 0.0525,-0.15274 0.0668,-0.15032 0.0848,-0.14914 0.0979,-0.13829 0.1134,-0.13229 0.1313,-0.12268 0.65176,0.77932 -0.0549,0.0505 -0.0466,0.0553 -0.043,0.059 -0.0323,0.0577 -0.0286,0.0661 -0.0238,0.0685 -0.0179,0.0709 -0.0107,0.0746 -0.007,0.0795 0,0.0818 0.005,0.083 0.0119,0.0842 0.0179,0.083 0.0226,0.0818 0.0286,0.083 0.0335,0.0793 0.0369,0.0746 0.0417,0.0721 0.0454,0.0662 0.0454,0.059 0.049,0.0517 0.0489,0.047 0.0502,0.0397 0.0501,0.0325 0.0466,0.024 0.0454,0.0181 0.0429,0.012 0.043,0.006 0.0442,0.002 0.0454,-0.006 0.049,-0.009 0.0536,-0.0193 z m 3.7745,3.5153 -0.96211,-0.31028 0.17905,0.56405 -0.15996,-0.12989 -0.14681,-0.14071 -0.13252,-0.14793 -0.11936,-0.15033 -0.10982,-0.15514 -0.10025,-0.15996 -0.0908,-0.15995 -0.0811,-0.15635 -0.0788,-0.15874 -0.0716,-0.15875 -0.0656,-0.15154 -0.0645,-0.14792 -0.0609,-0.14552 -0.0585,-0.13711 -0.0597,-0.13108 -0.0573,-0.12267 -0.0561,-0.11186 -0.0561,-0.10222 -0.0549,-0.089 -0.0537,-0.0758 -0.0513,-0.0613 -0.049,-0.0481 -0.0489,-0.0397 -0.043,-0.0277 -0.0477,-0.0205 -0.0525,-0.0157 -0.0585,-0.009 -0.0764,-10e-4 -0.0967,0.009 -0.11579,0.0228 -0.13249,0.0385 -0.15638,0.0589 -0.38437,-0.94287 0.22083,-0.083 0.21367,-0.0625 0.2089,-0.0397 0.19935,-0.0193 0.20053,0.004 0.19458,0.0288 0.18144,0.0541 0.16951,0.0758 0.15518,0.095 0.13728,0.10945 0.12294,0.12026 0.10863,0.13109 0.0942,0.13349 0.0859,0.13711 0.0777,0.14069 0.0728,0.14313 0.0668,0.14431 0.0645,0.14553 0.0633,0.14671 0.0609,0.14313 0.0621,0.14311 0.0633,0.14432 0.0621,0.13709 0.0645,0.13231 0.0692,0.13228 0.0692,0.12387 0.074,0.11666 0.0764,0.10945 0.0836,0.10462 0.0848,0.095 0.0896,0.0854 0.0978,0.0793 0.17906,0.56405 z m -0.17905,-0.56404 0.28888,0.21648 -0.10982,0.34756 -0.17906,-0.56404 z m -26.549,-2.5099 -0.33901,-0.95972 0.62191,0.25256 1.0696,2.1143 1.0492,1.9844 1.0278,1.8521 1.0111,1.7198 0.98957,1.5875 0.97167,1.4564 0.95018,1.3241 0.93227,1.1906 0.91079,1.0583 0.89169,0.92725 0.86902,0.79373 0.84633,0.66146 0.82245,0.53158 0.7962,0.40288 0.77113,0.27421 0.74605,0.15394 0.72458,0.0348 0.70906,-0.083 0.70069,-0.19963 0.69593,-0.3187 0.69473,-0.44619 0.69353,-0.57245 0.69115,-0.70476 0.68638,-0.83585 0.68279,-0.96812 0.67325,-1.1016 0.66727,-1.2339 0.65892,-1.3638 0.65056,-1.4961 0.64102,-1.6272 0.63386,-1.7571 0.6243,-1.8882 0.96211,0.31028 -0.63146,1.9122 -0.64339,1.7835 -0.65297,1.6584 -0.66488,1.5298 -0.67803,1.4047 -0.69114,1.2772 -0.70667,1.1521 -0.72099,1.0259 -0.73889,0.90078 -0.76039,0.7745 -0.78187,0.64462 -0.80455,0.51594 -0.83201,0.38124 -0.85349,0.24293 -0.87139,0.0998 -0.88454,-0.042 -0.89168,-0.1828 -0.89767,-0.31991 -0.89884,-0.45339 -0.90603,-0.5845 -0.91316,-0.71436 -0.92154,-0.84185 -0.93228,-0.97055 -0.9466,-1.0968 -0.95853,-1.2267 -0.97406,-1.3554 -0.98838,-1.4829 -1.0063,-1.614 -1.023,-1.7414 -1.0397,-1.8713 -1.0588,-2.0012 -1.0767,-2.1311 0.62191,0.25256 z m -0.33901,-0.95972 0.42257,-0.15153 0.19934,0.40409 -0.62191,-0.25256 z m -8.905,2.7938 -1.0075,0.0746 0.40227,-0.53638 0.28171,-0.0577 0.2853,-0.059 0.28768,-0.0577 0.28887,-0.059 0.29245,-0.059 0.29365,-0.059 0.29246,-0.0601 0.29842,-0.0613 0.29962,-0.0602 0.29723,-0.0625 0.30082,-0.0637 0.30319,-0.0637 0.30082,-0.0637 0.30319,-0.0662 0.3044,-0.0673 0.30319,-0.0673 0.30321,-0.071 0.30557,-0.0709 0.30321,-0.0734 0.30438,-0.0733 0.30202,-0.077 0.302,-0.0782 0.3032,-0.0794 0.30081,-0.0818 0.29842,-0.0842 0.29842,-0.0878 0.29843,-0.089 0.29603,-0.0902 0.29246,-0.0925 0.29246,-0.0962 0.28887,-0.0985 0.28768,-0.10096 0.33901,0.95971 -0.29722,0.10582 -0.30083,0.10097 -0.2996,0.0986 -0.3044,0.0974 -0.3032,0.0925 -0.30559,0.0914 -0.30558,0.0878 -0.30797,0.0866 -0.30798,0.0842 -0.30797,0.0818 -0.30917,0.0806 -0.30916,0.077 -0.30917,0.0758 -0.30797,0.0733 -0.30798,0.0734 -0.31035,0.0709 -0.30798,0.0697 -0.30678,0.0673 -0.30558,0.0662 -0.3056,0.0662 -0.3032,0.0637 -0.30319,0.0637 -0.30199,0.0625 -0.29963,0.0601 -0.29604,0.0613 -0.29723,0.0602 -0.29365,0.059 -0.29007,0.059 -0.29126,0.059 -0.28529,0.0577 -0.2829,0.0589 -0.28172,0.0577 0.40227,-0.53638 z m -1.0075,0.0746 -0.0323,-0.44617 0.4345,-0.0902 -0.40227,0.53638 z m -17.359,6.8792 0.92392,0.41612 -0.0609,-0.51835 1.1519,1.4829 1.1161,1.3746 1.0767,1.264 1.0385,1.1546 1.0003,1.0451 0.95853,0.93446 0.91915,0.8214 0.87736,0.71197 0.83201,0.60012 0.78784,0.48828 0.7389,0.37643 0.68756,0.26699 0.63386,0.15996 0.58253,0.0577 0.5276,-0.0385 0.48345,-0.13109 0.44882,-0.2237 0.42138,-0.32591 0.39869,-0.43297 0.37364,-0.5484 0.34258,-0.66747 0.30917,-0.78773 0.26978,-0.9068 0.23158,-1.0259 0.19099,-1.1437 0.14681,-1.2616 0.10386,-1.3794 0.0609,-1.4949 0.0131,-1.6128 -0.0286,-1.7282 -0.0777,-1.8461 -0.12176,-1.9603 1.0075,-0.0746 0.12415,1.982 0.0777,1.8677 0.031,1.7547 -0.0156,1.6416 -0.0609,1.5286 -0.10623,1.4179 -0.15399,1.3073 -0.19815,1.1966 -0.2459,1.0884 -0.29365,0.98136 -0.34259,0.87432 -0.39512,0.76849 -0.45003,0.66146 -0.50851,0.55322 -0.56938,0.43657 -0.6255,0.31268 -0.67444,0.184 -0.71145,0.053 -0.74008,-0.0745 -0.76754,-0.19121 -0.79262,-0.30789 -0.82246,-0.41972 -0.85229,-0.52917 -0.88454,-0.6362 -0.91795,-0.74564 -0.95257,-0.85268 -0.98719,-0.96091 -1.0242,-1.0692 -1.0576,-1.1762 -1.0934,-1.2832 -1.1304,-1.3915 -1.1638,-1.4997 -0.0609,-0.51834 z m 0.0609,0.51834 -0.18383,-0.24173 0.12296,-0.27661 0.0609,0.51834 z m 2.0603,-3.7186 -0.10265,1.0126 -10e-4,0 -0.12414,-0.008 -0.10744,0 -0.0859,0.007 -0.0692,0.0132 -0.0537,0.0145 -0.0406,0.0181 -0.0298,0.0169 -0.025,0.0193 -0.0216,0.0217 -0.0226,0.03 -0.0238,0.0372 -0.0238,0.047 -0.0226,0.0577 -0.0215,0.0649 -0.0204,0.0806 -0.0191,0.0902 -0.0167,0.095 -0.0144,0.10344 -0.0131,0.10943 -0.0107,0.11666 -0.0119,0.12387 -0.0119,0.12989 -0.0144,0.12989 -0.0131,0.13349 -0.0167,0.1383 -0.0191,0.14071 -0.0238,0.14191 -0.0298,0.14793 -0.0358,0.14432 -0.0406,0.14552 -0.0514,0.14793 -0.0585,0.14551 -0.92392,-0.41611 0.0369,-0.0902 0.0323,-0.0925 0.0286,-0.10224 0.0263,-0.10583 0.0204,-0.10703 0.0191,-0.11546 0.0167,-0.11666 0.0143,-0.11906 0.0131,-0.12387 0.0119,-0.12749 0.0119,-0.12507 0.0119,-0.12628 0.0131,-0.12869 0.0156,-0.13108 0.0191,-0.12988 0.0215,-0.13109 0.0286,-0.12868 0.0323,-0.12869 0.043,-0.13469 0.0537,-0.12989 0.0645,-0.12868 0.0788,-0.12388 0.0942,-0.11906 0.11221,-0.11064 0.12772,-0.0986 0.14205,-0.0818 0.15041,-0.0637 0.16115,-0.0481 0.16951,-0.03 0.17666,-0.0145 0.18144,0 0.19338,0.0132 -10e-4,0 z m 0.12535,-1.3722 0.40585,-0.93327 0.14444,0.0722 0.1337,0.0865 0.12055,0.0962 0.11102,0.10825 0.0955,0.11544 0.0823,0.11907 0.074,0.13109 0.0585,0.13228 0.0466,0.1311 0.0382,0.13711 0.0275,0.1407 0.0156,0.1347 0.007,0.13591 -0.001,0.13949 -0.0107,0.13591 -0.0191,0.13229 -0.0263,0.13349 -0.0369,0.13229 -0.0454,0.12749 -0.0525,0.12266 -0.0621,0.12147 -0.074,0.11786 -0.0811,0.10944 -0.0931,0.10463 -0.10266,0.0962 -0.1146,0.0865 -0.12415,0.0746 -0.13607,0.0637 -0.14443,0.0458 -0.14922,0.03 -0.15757,0.012 -0.15756,-0.008 0.10265,-1.0126 0.043,0.001 0.0358,-0.002 0.0323,-0.006 0.0298,-0.009 0.0286,-0.0132 0.031,-0.0193 0.031,-0.024 0.031,-0.0288 0.031,-0.0349 0.031,-0.042 0.0286,-0.0458 0.0263,-0.0517 0.0263,-0.0601 0.0215,-0.0625 0.0179,-0.0649 0.0143,-0.0662 0.009,-0.0721 0.006,-0.071 10e-4,-0.0673 -0.005,-0.0709 -0.008,-0.0697 -0.0107,-0.0613 -0.0167,-0.0602 -0.0226,-0.0613 -0.0226,-0.053 -0.0263,-0.0444 -0.0323,-0.047 -0.0335,-0.0409 -0.0347,-0.0337 -0.0417,-0.0337 -0.0454,-0.0288 -0.0513,-0.0265 z m -5.5173,2.6663 0.68996,-0.74564 -0.82724,0.22008 0.0871,-0.25977 0.0931,-0.25376 0.10265,-0.24534 0.10982,-0.23572 0.11698,-0.22849 0.12653,-0.22009 0.13251,-0.20927 0.14085,-0.19964 0.14683,-0.19121 0.15398,-0.18161 0.16473,-0.17198 0.1707,-0.15995 0.17428,-0.14792 0.18383,-0.13831 0.19219,-0.12749 0.19696,-0.11424 0.20412,-0.10096 0.20889,-0.089 0.21487,-0.077 0.22202,-0.0625 0.22561,-0.0493 0.228,-0.0337 0.23278,-0.0228 0.23874,-0.007 0.24112,0.007 0.24351,0.0217 0.2447,0.0349 0.2483,0.0505 0.25067,0.0625 0.25307,0.0782 0.25426,0.0925 0.25664,0.10584 -0.40586,0.93324 -0.21367,-0.089 -0.21129,-0.0758 -0.20531,-0.0637 -0.20054,-0.0505 -0.19577,-0.0385 -0.19218,-0.0277 -0.18621,-0.0168 -0.18144,-0.005 -0.17667,0.005 -0.17309,0.0157 -0.16831,0.0265 -0.16354,0.0348 -0.15996,0.0458 -0.15517,0.0553 -0.15399,0.0649 -0.14682,0.0746 -0.14443,0.083 -0.13967,0.0914 -0.13609,0.10463 -0.13608,0.11426 -0.13011,0.12147 -0.12415,0.13109 -0.12056,0.1407 -0.11818,0.15274 -0.1122,0.16115 -0.10862,0.17078 -0.10267,0.17919 -0.0979,0.19002 -0.0931,0.19964 -0.0859,0.20686 -0.0811,0.21768 -0.0752,0.22611 -0.82723,0.22007 z m 0.82723,-0.22008 -0.24112,0.7721 -0.58611,-0.55202 0.82723,-0.22008 z m -5.6414,-0.21768 -0.76636,-0.66627 0.0848,-0.0782 0.20055,-0.14311 0.20054,-0.13229 0.20054,-0.12507 0.19934,-0.11186 0.19935,-0.10342 0.20174,-0.0938 0.19935,-0.083 0.20173,-0.0734 0.20173,-0.0637 0.20055,-0.0517 0.20054,-0.0408 0.20053,-0.0312 0.20055,-0.0205 0.20173,-0.0107 0.19816,0.002 0.19934,0.0108 0.19935,0.0217 0.19577,0.0337 0.19458,0.0432 0.19337,0.053 0.19218,0.0625 0.19099,0.0721 0.18861,0.083 0.18741,0.0914 0.18502,0.10096 0.18264,0.10944 0.18143,0.11906 0.18145,0.12627 0.17906,0.13591 0.17666,0.14551 0.17548,0.15034 0.17546,0.15994 -0.68995,0.74565 -0.15399,-0.1407 -0.15399,-0.1335 -0.15279,-0.12388 -0.1504,-0.11424 -0.15041,-0.10704 -0.15041,-0.0974 -0.1492,-0.0878 -0.14922,-0.0818 -0.14682,-0.0722 -0.14563,-0.0637 -0.14564,-0.0553 -0.14681,-0.0481 -0.14565,-0.0409 -0.14443,-0.0312 -0.14562,-0.024 -0.14205,-0.0168 -0.14683,-0.008 -0.14563,0 -0.14682,0.006 -0.14803,0.0156 -0.1504,0.024 -0.15279,0.0313 -0.1528,0.0397 -0.15398,0.047 -0.15876,0.0589 -0.16116,0.0662 -0.16114,0.0746 -0.16354,0.0865 -0.16831,0.095 -0.16951,0.10344 -0.17189,0.11545 -0.17428,0.12388 0.0848,-0.0782 z m -0.76636,-0.66627 0.0357,-0.042 0.0489,-0.036 -0.0848,0.0782 z m 1.473,1.8761 0.52761,0.8683 -0.13966,0.0758 -0.14562,0.0577 -0.1528,0.0397 -0.1516,0.0193 -0.14444,0.001 -0.14562,-0.0132 -0.14564,-0.0312 -0.13369,-0.0445 -0.12533,-0.0541 -0.12056,-0.0649 -0.1158,-0.0746 -0.10981,-0.083 -0.10025,-0.0902 -0.0942,-0.0962 -0.0908,-0.10462 -0.0811,-0.10824 -0.074,-0.11305 -0.0692,-0.12147 -0.0585,-0.12147 -0.0537,-0.12868 -0.043,-0.13349 -0.0358,-0.1347 -0.0238,-0.1407 -0.0156,-0.14072 -0.002,-0.14671 0.009,-0.14793 0.0226,-0.14432 0.0369,-0.14671 0.0525,-0.14433 0.068,-0.14432 0.0836,-0.13469 0.099,-0.12989 0.76635,0.66626 -0.0347,0.0458 -0.0286,0.0458 -0.0226,0.0458 -0.0167,0.0481 -0.0131,0.053 -0.008,0.0553 -0.005,0.0565 0.002,0.0577 0.006,0.0637 0.0119,0.0637 0.0167,0.0649 0.0215,0.0661 0.0275,0.0637 0.0323,0.0685 0.0335,0.059 0.0405,0.0601 0.043,0.0577 0.0429,0.0517 0.049,0.0481 0.0477,0.042 0.0478,0.0372 0.0466,0.0312 0.0466,0.0241 0.0466,0.0205 0.0405,0.0132 0.0335,0.007 0.0335,0.004 0.0369,-0.001 0.0298,-0.002 0.0286,-0.008 0.0335,-0.012 0.037,-0.0205 z m 3.5166,2.6999 -1.0075,-0.0746 0.33423,0.51714 -0.19098,-0.0806 -0.17547,-0.095 -0.15996,-0.11065 -0.14563,-0.12267 -0.12772,-0.12989 -0.1158,-0.1371 -0.10266,-0.14192 -0.0908,-0.14311 -0.08,-0.14431 -0.0729,-0.14192 -0.0657,-0.1407 -0.0609,-0.13952 -0.0537,-0.13229 -0.0525,-0.12627 -0.0502,-0.12388 -0.0454,-0.11184 -0.0454,-0.10223 -0.0417,-0.089 -0.0417,-0.077 -0.0394,-0.0649 -0.0335,-0.0458 -0.0275,-0.0312 -0.0167,-0.0145 -0.009,-0.006 -0.005,-0.002 -0.008,-0.002 -0.0216,-10e-4 -0.0382,0.005 -0.0656,0.0169 -0.0883,0.0337 -0.11101,0.053 -0.13251,0.0758 -0.52761,-0.86832 0.18979,-0.10944 0.18502,-0.089 0.18145,-0.0673 0.18263,-0.0458 0.18621,-0.0217 0.18624,0.008 0.17785,0.0385 0.16711,0.0673 0.14803,0.0925 0.12653,0.10824 0.10385,0.11545 0.0883,0.12027 0.0752,0.12266 0.068,0.12508 0.0609,0.12747 0.0548,0.12629 0.0525,0.12628 0.0501,0.12387 0.0502,0.12387 0.0513,0.12268 0.0514,0.11785 0.0513,0.11185 0.0561,0.11064 0.0561,0.10096 0.0597,0.0925 0.0621,0.0866 0.0656,0.077 0.068,0.0697 0.0716,0.0602 0.0764,0.053 0.0848,0.047 0.0931,0.0397 0.33424,0.51715 z m -0.33423,-0.51714 0.36169,0.12989 -0.0275,0.38725 -0.33423,-0.51714 z m -14.696,-0.28743 -0.16713,-1.0054 0.5515,0.30909 0.65772,1.5719 0.65056,1.4708 0.6446,1.371 0.63624,1.27 0.62908,1.1702 0.61833,1.068 0.60759,0.96694 0.59685,0.86709 0.58013,0.76369 0.56581,0.66147 0.54791,0.55923 0.52642,0.45821 0.50136,0.35598 0.4715,0.25616 0.44167,0.16116 0.40706,0.0746 0.37839,-0.008 0.36169,-0.0854 0.35453,-0.16597 0.35453,-0.25736 0.35213,-0.35479 0.34618,-0.457 0.33662,-0.56405 0.32111,-0.66747 0.30201,-0.7721 0.28171,-0.87793 0.25903,-0.98017 0.23396,-1.0824 0.2101,-1.1846 0.18263,-1.2856 0.15399,-1.3879 0.12652,-1.4889 1.0075,0.0746 -0.12653,1.5129 -0.15876,1.4167 -0.1874,1.3193 -0.21488,1.2207 -0.24351,1.1233 -0.27335,1.0283 -0.29842,0.93325 -0.32828,0.83704 -0.35691,0.74444 -0.38915,0.65064 -0.42017,0.55563 -0.45958,0.46061 -0.49777,0.36079 -0.53596,0.25015 -0.56702,0.13349 -0.5861,0.0132 -0.59087,-0.10583 -0.59208,-0.21647 -0.59089,-0.3187 -0.59206,-0.42093 -0.59327,-0.51594 -0.60044,-0.61214 -0.6064,-0.70957 -0.61354,-0.80698 -0.62073,-0.90318 -0.62908,-1.0006 -0.63504,-1.0992 -0.6434,-1.1966 -0.65056,-1.294 -0.65415,-1.3927 -0.66012,-1.4925 -0.66489,-1.5887 0.55149,0.30908 z m -0.16713,-1.0054 0.3987,-0.0673 0.1528,0.37643 -0.5515,-0.30908 z m -3.6837,0.61938 3.6837,-0.61938 0.16713,1.0054 -3.6837,0.61937 -0.58851,-0.51715 0.42138,-0.48826 z m -0.42138,0.48826 0.0119,-0.41971 0.40944,-0.0685 -0.42138,0.48826 z m 4.7091,11.329 -0.795,0.63019 -0.23874,-0.31269 -0.23158,-0.3187 -0.2244,-0.32592 -0.21845,-0.33073 -0.21129,-0.33674 -0.20293,-0.34275 -0.19815,-0.34757 -0.1898,-0.35237 -0.18264,-0.35719 -0.17547,-0.36199 -0.16712,-0.36561 -0.16114,-0.37042 -0.1516,-0.37402 -0.14563,-0.37644 -0.13728,-0.38003 -0.13011,-0.38365 -0.12176,-0.38605 -0.1134,-0.38726 -0.10624,-0.39085 -0.0979,-0.39207 -0.0896,-0.39447 -0.0811,-0.39447 -0.0728,-0.39687 -0.0645,-0.39687 -0.0561,-0.39808 -0.0477,-0.39808 -0.0382,-0.40048 -0.0298,-0.39808 -0.0204,-0.39807 -0.0131,-0.39808 -0.002,-0.39687 0.007,-0.39568 1.0099,0.0288 -0.005,0.37162 0.002,0.37283 0.0107,0.37402 0.0204,0.37643 0.0275,0.37642 0.0358,0.37643 0.0454,0.37644 0.0537,0.37642 0.0597,0.37523 0.0704,0.37522 0.0764,0.37524 0.0847,0.37282 0.0931,0.37282 0.099,0.36921 0.10863,0.36801 0.1146,0.36681 0.12295,0.36199 0.13011,0.3608 0.13847,0.35719 0.14443,0.35478 0.1516,0.34877 0.15996,0.34636 0.16592,0.34276 0.17308,0.33795 0.17787,0.33312 0.18622,0.32833 0.19338,0.32351 0.19934,0.31751 0.20412,0.31148 0.21249,0.30668 0.21725,0.29945 0.22442,0.29345 z m 18.774,-4.7168 -0.76875,0.66146 0.8905,-0.3211 -0.0502,1.4047 -0.0942,1.3349 -0.13847,1.2628 -0.18024,1.1918 -0.22322,1.1209 -0.26619,1.0475 -0.3056,0.97413 -0.34975,0.90079 -0.38914,0.82501 -0.43212,0.75046 -0.4739,0.67228 -0.51567,0.59291 -0.55865,0.51233 -0.59923,0.42814 -0.63864,0.33915 -0.67561,0.24775 -0.70549,0.15393 -0.73411,0.0613 -0.75919,-0.0337 -0.78069,-0.12627 -0.80098,-0.21888 -0.81886,-0.3079 -0.84036,-0.39926 -0.85827,-0.49068 -0.87498,-0.58089 -0.89407,-0.67108 -0.91318,-0.76488 -0.9299,-0.85628 -0.94897,-0.94889 -0.96332,-1.0427 -0.98122,-1.1389 -0.99674,-1.2339 0.79501,-0.63019 0.97525,1.2099 0.95973,1.1125 0.93943,1.0162 0.91795,0.92003 0.89648,0.82502 0.87497,0.73121 0.84872,0.63741 0.82485,0.54719 0.79619,0.45461 0.76634,0.36561 0.73533,0.2766 0.70547,0.19244 0.66847,0.10943 0.63743,0.0265 0.60521,-0.0493 0.57417,-0.12508 0.54431,-0.19963 0.51926,-0.27662 0.4942,-0.35358 0.47031,-0.43055 0.44405,-0.51112 0.41661,-0.59291 0.38914,-0.67348 0.35571,-0.75526 0.3235,-0.83584 0.28888,-0.91402 0.25187,-0.99458 0.21367,-1.0704 0.17308,-1.1485 0.1337,-1.2219 0.0919,-1.2964 0.0477,-1.371 0.89051,-0.32112 z m -0.89051,0.32112 0.025,-1.3422 0.86544,1.021 -0.89051,0.32111 z m 27.229,-3.2027 -0.89049,0.48345 0.94778,-0.1864 -0.20412,1.5959 -0.25425,1.5081 -0.30559,1.4191 -0.35452,1.3301 -0.40227,1.2411 -0.45122,1.1509 -0.50017,1.0619 -0.5491,0.97054 -0.59565,0.87673 -0.6434,0.78413 -0.69115,0.69033 -0.74009,0.5917 -0.78306,0.49068 -0.82604,0.38965 -0.86663,0.28504 -0.90362,0.17918 -0.93705,0.0734 -0.96809,-0.0325 -0.99555,-0.13711 -1.023,-0.24053 -1.0505,-0.34516 -1.0755,-0.44858 -1.0994,-0.54962 -1.1245,-0.65304 -1.1495,-0.75766 -1.1722,-0.8611 -1.1961,-0.96333 -1.2176,-1.0692 -1.2414,-1.175 -1.2606,-1.2808 -1.282,-1.3854 -1.3011,-1.4937 0.76875,-0.66145 1.282,1.472 1.2605,1.3638 1.239,1.2568 1.2128,1.1485 1.1889,1.0427 1.1603,0.93687 1.134,0.83223 1.1042,0.72641 1.0719,0.62417 1.0421,0.52075 1.0063,0.41972 0.97168,0.3187 0.93465,0.22129 0.89767,0.12268 0.86065,0.0277 0.82245,-0.0637 0.78427,-0.15514 0.74963,-0.24654 0.71622,-0.33674 0.68279,-0.42814 0.64938,-0.52195 0.61713,-0.61335 0.58135,-0.70957 0.54789,-0.80457 0.50851,-0.90079 0.46914,-0.997 0.42733,-1.0908 0.38557,-1.1858 0.3402,-1.282 0.29604,-1.371 0.24709,-1.4648 0.19935,-1.5574 0.94779,-0.18642 z m -0.94779,0.18641 0.17667,-1.6248 0.77112,1.4384 -0.94779,0.18641 z m 31.812,-1.9327 -0.97645,0.26459 0.99316,-0.11667 -0.0919,1.2748 -0.19936,1.2508 -0.29962,1.2243 -0.39749,1.1882 -0.49062,1.1485 -0.57536,1.104 -0.65771,1.0535 -0.73532,0.99699 -0.80695,0.93567 -0.87736,0.86831 -0.93824,0.79735 -0.99913,0.71799 -1.0528,0.6362 -1.1018,0.54721 -1.1471,0.45099 -1.1877,0.34997 -1.2211,0.24655 -1.2546,0.13229 -1.2761,0.0144 -1.2963,-0.10824 -1.3119,-0.23692 -1.3178,-0.37163 -1.3226,-0.50991 -1.3202,-0.65424 -1.3107,-0.80217 -1.3011,-0.95491 -1.282,-1.1136 -1.2605,-1.276 -1.2343,-1.4444 -1.2044,-1.6152 -1.1698,-1.7932 -1.1292,-1.976 0.8905,-0.48346 1.1006,1.9254 1.1364,1.7426 1.1638,1.5622 1.1889,1.3891 1.208,1.2231 1.2224,1.0607 1.2319,0.9068 1.2367,0.75647 1.2391,0.61335 1.2343,0.47625 1.2271,0.34516 1.2164,0.22008 1.2008,0.10096 1.183,-0.0145 1.1591,-0.12267 1.1328,-0.2273 1.1018,-0.32592 1.066,-0.41972 1.0254,-0.50872 0.9836,-0.59291 0.93228,-0.67229 0.87856,-0.74443 0.82006,-0.81298 0.75681,-0.87795 0.68996,-0.93204 0.61475,-0.98618 0.53955,-1.0343 0.45719,-1.074 0.37123,-1.1112 0.28052,-1.1401 0.18502,-1.1666 0.0871,-1.1882 0.99316,-0.11666 z m 35.504,-2.9164 -1.0075,0.0842 1.0075,0 -0.25186,2.0493 -0.40467,1.923 -0.54672,1.7943 -0.6792,1.6681 -0.80456,1.5418 -0.91914,1.4119 -1.0242,1.2832 -1.1197,1.1546 -1.2056,1.0271 -1.2808,0.89717 -1.3489,0.76849 -1.4038,0.64342 -1.4492,0.51474 -1.4885,0.38846 -1.516,0.26217 -1.5339,0.13831 -1.5446,0.0132 -1.5446,-0.10944 -1.5351,-0.23452 -1.5172,-0.35598 -1.4885,-0.47865 -1.4527,-0.60012 -1.4062,-0.72279 -1.3513,-0.84427 -1.2856,-0.96452 -1.2116,-1.0836 -1.128,-1.2051 -1.0325,-1.3217 -0.93108,-1.442 -0.81649,-1.5574 -0.69592,-1.6741 -0.56223,-1.7883 0.97644,-0.2646 0.53598,1.7018 0.66011,1.5899 0.77351,1.4781 0.88094,1.3626 0.97764,1.252 1.066,1.1377 1.1448,1.0258 1.2164,0.91161 1.2796,0.79857 1.3322,0.68431 1.3763,0.56885 1.4121,0.4546 1.4384,0.33675 1.4563,0.22248 1.4635,0.10463 1.4635,-0.0132 1.4527,-0.13109 1.4348,-0.24774 1.405,-0.36681 1.368,-0.48587 1.3226,-0.60493 1.2677,-0.72519 1.2044,-0.84187 1.1316,-0.96452 1.0528,-1.0848 0.96213,-1.2063 0.86662,-1.3301 0.75919,-1.4552 0.6434,-1.5791 0.52044,-1.7078 0.38557,-1.8364 0.24232,-1.9651 1.0075,0 z m 35.489,3.0331 -1.0099,0.0312 0.99316,0.11666 -0.56223,1.7883 -0.69592,1.6741 -0.8165,1.5574 -0.93108,1.442 -1.0326,1.3217 -1.128,1.2051 -1.2116,1.0848 -1.2868,0.96333 -1.3501,0.84426 -1.4062,0.72159 -1.4527,0.60132 -1.4909,0.47865 -1.516,0.35599 -1.5339,0.23331 -1.5446,0.11064 -1.5446,-0.0132 -1.5339,-0.13831 -1.516,-0.26338 -1.4885,-0.38845 -1.4492,-0.51474 -1.4038,-0.641 -1.3489,-0.76971 -1.2808,-0.89837 -1.2056,-1.0259 -1.1197,-1.1546 -1.0242,-1.2844 -0.91794,-1.4119 -0.80456,-1.5406 -0.67921,-1.6681 -0.54671,-1.7956 -0.40466,-1.9218 -0.25188,-2.0493 1.0075,-0.0842 0.24234,1.9651 0.38555,1.8352 0.52045,1.709 0.64342,1.5791 0.75918,1.454 0.86543,1.3301 0.96212,1.2075 1.0528,1.0848 1.1316,0.96332 1.2044,0.84306 1.2677,0.72399 1.3226,0.60493 1.368,0.48587 1.405,0.36682 1.4348,0.24894 1.4527,0.13109 1.4635,0.0132 1.4635,-0.10583 1.4551,-0.22128 1.4396,-0.33675 1.4121,-0.4546 1.3763,-0.57006 1.3322,-0.68311 1.2784,-0.79856 1.2176,-0.91281 1.1448,-1.0247 1.066,-1.1377 0.97763,-1.252 0.88095,-1.3626 0.77352,-1.4781 0.66012,-1.5899 0.53596,-1.7018 0.99315,0.11667 z m 30.819,1.816 -1.0051,0.11064 0.94779,0.1864 -1.1292,1.976 -1.1698,1.7932 -1.2044,1.6152 -1.2343,1.4444 -1.2605,1.276 -1.282,1.1136 -1.3011,0.95491 -1.3107,0.80217 -1.3202,0.65424 -1.3226,0.50992 -1.3178,0.37163 -1.3119,0.23692 -1.2964,0.10703 -1.2761,-0.0145 -1.2534,-0.13229 -1.2224,-0.24535 -1.1877,-0.35117 -1.1472,-0.451 -1.1006,-0.54719 -1.054,-0.635 -0.99912,-0.71799 -0.93826,-0.79736 -0.87736,-0.86951 -0.80693,-0.93447 -0.73651,-0.99819 -0.65654,-1.0535 -0.57536,-1.1028 -0.4906,-1.1485 -0.39751,-1.1882 -0.29962,-1.2243 -0.19934,-1.2508 -0.0919,-1.2748 1.0099,-0.0312 0.0871,1.1882 0.18502,1.1666 0.28052,1.1401 0.37124,1.1112 0.45718,1.074 0.53955,1.0331 0.61595,0.98617 0.68877,0.93327 0.7568,0.87672 0.82007,0.8142 0.87856,0.74443 0.93228,0.67229 0.98241,0.5917 1.0266,0.50872 1.066,0.41972 1.1018,0.32713 1.1316,0.2261 1.1603,0.12266 1.183,0.0145 1.2008,-0.0997 1.2164,-0.22008 1.2271,-0.34517 1.2343,-0.47625 1.2391,-0.61335 1.2367,-0.75646 1.2319,-0.9068 1.2224,-1.0607 1.208,-1.2231 1.1889,-1.3891 1.1638,-1.5622 1.1364,-1.7426 1.1006,-1.9254 0.9478,0.18641 z m -0.9478,-0.18641 0.77113,-1.4384 0.17667,1.6248 -0.9478,-0.18641 z m 27.229,3.2027 -1.0122,0.0193 0.89049,0.32111 -1.3011,1.4937 -1.282,1.3854 -1.2605,1.2808 -1.2414,1.175 -1.2176,1.0692 -1.1961,0.96331 -1.1722,0.8611 -1.1495,0.75767 -1.1245,0.65303 -1.0994,0.54963 -1.0755,0.44858 -1.0504,0.34515 -1.023,0.24053 -0.99555,0.13712 -0.96808,0.0325 -0.93706,-0.0734 -0.90362,-0.17918 -0.86662,-0.28503 -0.82604,-0.38966 -0.78306,-0.49068 -0.7401,-0.5917 -0.69115,-0.69032 -0.64339,-0.78413 -0.59566,-0.87674 -0.5491,-0.97053 -0.50016,-1.0619 -0.45122,-1.1509 -0.40227,-1.2411 -0.35452,-1.3301 -0.30559,-1.4191 -0.25425,-1.5081 -0.20413,-1.5959 1.0051,-0.11064 0.19935,1.5574 0.24709,1.4648 0.29604,1.371 0.3402,1.282 0.38557,1.1858 0.42734,1.0908 0.46912,0.99701 0.50851,0.90078 0.54792,0.80457 0.58132,0.70957 0.61714,0.61335 0.64937,0.52195 0.68279,0.42814 0.71623,0.33674 0.74963,0.24655 0.78426,0.15514 0.82245,0.0637 0.86066,-0.0277 0.89767,-0.12268 0.93466,-0.22128 0.97167,-0.31871 1.0063,-0.41972 1.0421,-0.52075 1.0719,-0.62417 1.1042,-0.72641 1.134,-0.83223 1.1603,-0.93687 1.1889,-1.0427 1.2128,-1.1485 1.239,-1.2568 1.2605,-1.3638 1.282,-1.472 0.89051,0.32112 z m -0.8905,-0.32112 0.86543,-1.021 0.025,1.3422 -0.8905,-0.32111 z m 18.774,4.7168 0.795,0.63019 -0.99674,1.2339 -0.98122,1.1389 -0.9633,1.0427 -0.94899,0.95008 -0.93109,0.8551 -0.91198,0.76488 -0.89527,0.67107 -0.87499,0.58089 -0.85826,0.49068 -0.83916,0.39927 -0.82007,0.30789 -0.79978,0.21888 -0.78187,0.12628 -0.75919,0.0337 -0.73412,-0.0613 -0.70548,-0.15393 -0.67563,-0.24774 -0.63863,-0.33915 -0.59924,-0.42815 -0.55864,-0.51233 -0.51568,-0.5929 -0.4739,-0.67349 -0.43092,-0.74925 -0.39034,-0.82501 -0.34856,-0.9008 -0.30677,-0.97413 -0.26501,-1.0475 -0.22322,-1.1197 -0.18144,-1.193 -0.13727,-1.2628 -0.0944,-1.3349 -0.0502,-1.4047 1.0122,-0.0193 0.0477,1.371 0.092,1.2964 0.13249,1.2219 0.17429,1.1473 0.21367,1.0716 0.25068,0.99459 0.29006,0.91402 0.3223,0.83584 0.35691,0.75526 0.38796,0.67469 0.41659,0.5917 0.44406,0.51113 0.47031,0.43055 0.4942,0.35357 0.51926,0.27661 0.54432,0.19964 0.57416,0.12508 0.60521,0.0493 0.63744,-0.0265 0.66966,-0.10943 0.70428,-0.19243 0.73651,-0.27661 0.76515,-0.3656 0.7962,-0.45461 0.82484,-0.54719 0.84992,-0.63742 0.87378,-0.73121 0.89766,-0.82621 0.91795,-0.91882 0.93944,-1.0162 0.95973,-1.1124 0.97525,-1.2099 z m 4.2042,-10.805 0,-1.0198 0.50493,0.49549 0.007,0.39568 -0.002,0.39687 -0.0131,0.39808 -0.0204,0.39807 -0.0298,0.39929 -0.0394,0.39927 -0.0466,0.39808 -0.0561,0.39808 -0.0645,0.39807 -0.0728,0.39688 -0.0811,0.39447 -0.0896,0.39447 -0.0979,0.39087 -0.10504,0.39085 -0.11459,0.38966 -0.12295,0.38364 -0.12892,0.38486 -0.13847,0.37882 -0.14444,0.37764 -0.15279,0.37282 -0.15876,0.37042 -0.16951,0.3668 -0.17548,0.3608 -0.18263,0.35719 -0.18979,0.35358 -0.19577,0.34756 -0.20412,0.34155 -0.21129,0.33674 -0.21845,0.33194 -0.22441,0.32471 -0.23157,0.31871 -0.23874,0.31268 -0.79501,-0.63019 0.22441,-0.29344 0.21726,-0.29946 0.21248,-0.30548 0.20412,-0.31268 0.19935,-0.31751 0.19218,-0.3223 0.18622,-0.32832 0.18025,-0.33434 0.17308,-0.33795 0.16593,-0.34155 0.15757,-0.34516 0.1516,-0.35117 0.14562,-0.35358 0.13728,-0.35839 0.1313,-0.35959 0.12176,-0.3632 0.11579,-0.36681 0.10744,-0.36802 0.10025,-0.36921 0.093,-0.37162 0.0848,-0.37282 0.0764,-0.37522 0.0704,-0.37523 0.0596,-0.37642 0.0537,-0.37644 0.0442,-0.37643 0.0369,-0.37763 0.0275,-0.37522 0.0203,-0.37644 0.0107,-0.37402 0.002,-0.37282 -0.005,-0.37162 0.50494,0.49549 z m 0,-1.0198 0.49061,0 0.0143,0.49549 -0.50493,-0.49549 z m -0.002,0 0.002,0 0,1.0198 -0.002,0 -0.0836,-0.007 0.0836,-1.0126 z m 0,1.0198 -0.0406,0 -0.043,-0.007 0.0836,0.007 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path30" + d="m 482.14,262.87 c -1.2032,0 -2.4041,0.002 -3.605,0.006 l -1.2009,0.006 -0.61475,0.002 -1.1149,0.006 -0.66967,0.005 -0.43331,0.002 -0.76515,0.006 -1.1985,0.012 -1.054,0.009 -0.22442,0.002 -0.88215,0.009 c -0.87616,0.009 -1.75,0.0217 -2.6237,0.0337 l -0.29006,0.005 -0.16592,0.002 -1.1161,0.0181 -0.34259,0.004 -0.4727,0.008 -1.1495,0.0193 -0.0442,10e-4 -1.1925,0.0228 -0.38558,0.007 -0.80454,0.0156 -0.26381,0.006 -0.9275,0.0193 -1.1889,0.0253 -0.0536,0.002 -1.1364,0.0265 -0.48105,0.0108 -0.0357,10e-4 c -1.4122,0.0348 -2.8231,0.0721 -4.2329,0.11184 l -0.57535,0.0168 -1.6115,0.0493 -0.18264,0.005 -1.4276,0.0458 -0.93943,0.03 -0.66848,0.0217 -0.18621,0.007 -1.4217,0.0493 -0.0859,0.002 -1.1806,0.0432 -0.0525,0.002 -1.128,0.0433 -0.76278,0.0288 -1.5936,0.0637 h -0.009 c -2.0961,0.0854 -4.1887,0.17679 -6.2776,0.2742 l -0.29843,0.0132 c -3.0738,0.14552 -6.138,0.30427 -9.1926,0.47625 l -0.17547,0.009 -0.45479,0.0265 c -6.1177,0.34997 -12.201,0.75526 -18.247,1.2135 l -0.2268,0.0168 -0.0752,0.007 c -8.8584,0.67469 -17.637,1.4672 -26.328,2.3692 -4.9467,0.46542 -5.8921,-5.4083 0,-5.9555 8.6913,-0.90319 17.47,-1.6933 26.328,-2.368 l 0.0752,-0.006 c 12.155,-0.92484 24.459,-1.632 36.897,-2.1094 l 1.0266,-0.0385 0.15637,-0.007 0.33901,-0.012 1.1806,-0.0433 0.0871,-0.004 c 5.0887,-0.1804 10.2,-0.32351 15.332,-0.42695 l 0.80574,-0.0167 0.0394,-10e-4 1.3656,-0.0253 0.17308,-0.004 0.043,-10e-4 1.1495,-0.0193 0.47388,-0.008 0.7198,-0.0108 0.90364,-0.0133 0.29006,-0.005 0.42495,-0.006 c 1.0528,-0.0145 2.1081,-0.0277 3.1621,-0.0385 l 1.0027,-0.0108 0.19456,-0.002 1.1985,-0.009 c 1.1651,-0.009 2.3325,-0.0181 3.4999,-0.0241 h 0.0979 l 1.2009,-0.005 c 1.2008,-0.004 2.4029,-0.007 3.605,-0.007 1.2032,0 2.4053,0.002 3.605,0.007 l 1.202,0.005 h 0.0967 c 1.1674,0.006 2.3349,0.0145 3.5011,0.0241 l 1.1985,0.009 0.19339,0.002 1.0027,0.0108 c 1.0552,0.012 2.1093,0.024 3.1621,0.0385 l 0.42616,0.006 0.28888,0.005 0.90362,0.0133 0.72099,0.0108 0.4727,0.008 1.1495,0.0193 0.0442,10e-4 0.1719,0.004 1.3656,0.0253 0.0406,10e-4 0.80455,0.0167 c 5.1329,0.10344 10.243,0.24655 15.333,0.42695 l 0.0859,0.004 1.1806,0.0433 0.339,0.012 0.15639,0.007 1.0278,0.0385 c 12.437,0.47745 24.742,1.1846 36.897,2.1094 l 0.0752,0.006 c 8.8572,0.67469 17.636,1.4648 26.327,2.368 5.8933,0.54721 4.9467,6.4222 0,5.9555 -8.6913,-0.90198 -17.47,-1.6945 -26.327,-2.3692 l -0.0752,-0.007 -0.22681,-0.0168 c -6.0461,-0.45821 -12.129,-0.8647 -18.247,-1.2135 l -0.45479,-0.0265 -0.17548,-0.009 c -3.0558,-0.17198 -6.1201,-0.33072 -9.1926,-0.47625 l -0.29962,-0.0132 c -2.0878,-0.0974 -4.1815,-0.18881 -6.2776,-0.2742 h -0.009 l -1.5924,-0.0637 -0.76396,-0.0288 -1.128,-0.0433 -0.0513,-0.002 -1.1806,-0.0432 -0.0871,-0.002 -1.4217,-0.0493 -0.18621,-0.007 -0.66848,-0.0217 -0.93945,-0.03 -1.4276,-0.0458 -0.18145,-0.005 -1.6127,-0.0493 -0.57536,-0.0168 c -1.4086,-0.0397 -2.8195,-0.077 -4.2316,-0.11184 l -0.0358,-10e-4 -0.48107,-0.0108 -1.1364,-0.0265 -0.0536,-0.002 -1.1901,-0.0253 -0.92751,-0.0193 -0.26261,-0.006 -0.80575,-0.0156 -0.38556,-0.007 -1.1925,-0.0228 -0.0429,-10e-4 -1.1495,-0.0193 -0.4739,-0.008 -0.3414,-0.004 -1.1161,-0.0181 -0.16712,-0.002 -0.28887,-0.005 c -0.87498,-0.0121 -1.7488,-0.0241 -2.6237,-0.0337 l -0.88333,-0.009 -0.22323,-0.002 -1.054,-0.009 -1.1997,-0.012 -0.76397,-0.006 -0.4345,-0.002 -0.66846,-0.005 -1.1149,-0.006 -0.61476,-0.002 -1.202,-0.006 c -1.2009,-0.004 -2.4017,-0.006 -3.605,-0.006 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path32" + d="m 482.14,105.07 c 9.4827,0 17.169,7.7439 17.169,17.298 0,9.5527 -7.6862,17.298 -17.169,17.298 -9.4815,0 -17.168,-7.7439 -17.168,-17.298 0,-9.5538 7.6862,-17.298 17.168,-17.298 z" + inkscape:connector-curvature="0" + style="fill:#0c4076" /> + <path + id="path34" + d="m 485.26,84.894 c 1.6783,-0.0457 3.026,-1.4312 3.026,-3.1329 0,-1.7042 -1.3501,-3.0908 -3.0308,-3.1341 -0.009,-1.7234 -1.3978,-3.1173 -3.1108,-3.1173 -1.7118,0 -3.1012,1.3951 -3.1108,3.1185 -1.6795,0.0433 -3.0308,1.4287 -3.0308,3.1329 0,1.7017 1.3489,3.0872 3.0272,3.1329 v 6.4246 h -5.491 c -0.009,-1.7222 -1.399,-3.1161 -3.1108,-3.1161 -1.6903,0 -3.0678,1.3614 -3.1108,3.0547 -1.7094,0.0084 -3.0941,1.4083 -3.0941,3.1329 0,1.7258 1.3847,3.1257 3.0953,3.1341 0.0429,1.6933 1.4181,3.0547 3.1096,3.0547 1.6664,0 3.0284,-1.3229 3.1072,-2.9826 h 5.4934 v 21.372 h 6.2311 v -21.372 h 5.4934 c 0.0787,1.6597 1.4408,2.9826 3.1072,2.9826 1.6915,0 3.0678,-1.3614 3.1096,-3.0547 1.7106,-0.0081 3.0953,-1.4083 3.0953,-3.1341 0,-1.7246 -1.3847,-3.1245 -3.0941,-3.1329 -0.0429,-1.6933 -1.4205,-3.0547 -3.1108,-3.0547 -1.7118,0 -3.1,1.3939 -3.1108,3.1161 h -5.4898 v -6.425 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path36" + d="m 487.78,81.761 1.0122,0 0,0 -0.005,0.184 -0.0143,0.1816 -0.0215,0.17799 -0.031,0.17799 -0.0382,0.17438 -0.0478,0.17078 -0.0549,0.16717 -0.0633,0.16356 -0.0704,0.15995 -0.0788,0.15514 -0.0836,0.14793 -0.0896,0.14672 -0.099,0.14312 -0.10385,0.1347 -0.10982,0.13229 -0.11698,0.12628 -0.12176,0.12026 -0.12772,0.11425 -0.13369,0.10824 -0.13728,0.10102 -0.14205,0.09502 -0.14562,0.089 -0.1528,0.08299 -0.15757,0.07457 -0.15877,0.06735 -0.16353,0.06014 -0.1683,0.05172 -0.16951,0.0433 -0.17548,0.03607 -0.17667,0.02645 -0.17905,0.01804 -0.18144,0.0095 -0.0263,-1.0174 0.1313,-0.0072 0.12892,-0.01323 0.12652,-0.01925 0.12535,-0.02645 0.12414,-0.03127 0.11817,-0.03728 0.11817,-0.0433 0.1158,-0.04811 0.11221,-0.05292 0.10742,-0.05892 0.10744,-0.06494 0.10385,-0.06855 0.099,-0.07457 0.0955,-0.07697 0.0919,-0.08299 0.0883,-0.08659 0.0836,-0.09019 0.0789,-0.09381 0.0752,-0.10102 0.0704,-0.09982 0.0656,-0.10583 0.0621,-0.10944 0.0549,-0.11185 0.0513,-0.11425 0.0442,-0.11786 0.0406,-0.11906 0.0335,-0.12267 0.0287,-0.12387 0.0216,-0.12748 0.0167,-0.12989 0.009,-0.13109 0.002,-0.13349 0,0 z m -3.0308,-3.1317 1.0122,-0.0048 -0.493,-0.50632 0.18144,0.0095 0.17905,0.01804 0.17667,0.02645 0.17309,0.03487 0.17189,0.0433 0.1683,0.05172 0.16474,0.06014 0.15995,0.06734 0.15638,0.07457 0.1516,0.08177 0.14803,0.089 0.14324,0.09621 0.13726,0.10102 0.13251,0.10824 0.12772,0.11425 0.12176,0.12026 0.11578,0.12508 0.11222,0.13229 0.10384,0.1359 0.0978,0.14071 0.092,0.14793 0.0848,0.15033 0.0777,0.15634 0.0692,0.15875 0.0645,0.16356 0.0537,0.16837 0.0466,0.16837 0.0405,0.17559 0.031,0.17799 0.0216,0.17919 0.0143,0.1816 0.005,0.18401 -1.0122,0 -0.002,-0.13349 -0.009,-0.13109 -0.0167,-0.13109 -0.0216,-0.12508 -0.0286,-0.12508 -0.0347,-0.12508 -0.0394,-0.11786 -0.0454,-0.11786 -0.0502,-0.11545 -0.0561,-0.11064 -0.0609,-0.10944 -0.0657,-0.10463 -0.0716,-0.10223 -0.0752,-0.09982 -0.0789,-0.09381 -0.0848,-0.09139 -0.0883,-0.08659 -0.0919,-0.08299 -0.0942,-0.07697 -0.10148,-0.07457 -0.10266,-0.06975 -0.10505,-0.06254 -0.11101,-0.06014 -0.11101,-0.05292 -0.11698,-0.04811 -0.11699,-0.0433 -0.12056,-0.03728 -0.12176,-0.03127 -0.12534,-0.02526 -0.12653,-0.01925 -0.1313,-0.01323 -0.13131,-0.0072 -0.49299,-0.50632 z m 0.49299,0.50632 -0.49061,-0.01323 -0.002,-0.49309 0.493,0.50632 z m -3.0976,-3.1161 0,-1.0198 0.18504,0.0048 0.18382,0.01443 0.18144,0.02285 0.17668,0.03247 0.17189,0.03969 0.17188,0.04811 0.16832,0.05773 0.16354,0.06374 0.16233,0.07336 0.15518,0.08177 0.15041,0.08539 0.14683,0.09501 0.14085,0.10102 0.13489,0.10583 0.1337,0.11545 0.12533,0.12026 0.11818,0.12508 0.11222,0.13109 0.10862,0.1371 0.10025,0.14191 0.0942,0.14672 0.0883,0.15274 0.08,0.15634 0.0728,0.15995 0.0645,0.16356 0.0585,0.17078 0.0489,0.17198 0.0417,0.17438 0.0323,0.1804 0.0226,0.1804 0.0156,0.1828 0.006,0.18761 -1.0122,0.0048 -0.004,-0.1347 -0.0107,-0.13229 -0.0179,-0.13229 -0.0226,-0.12748 -0.0298,-0.12628 -0.0346,-0.12387 -0.0417,-0.12026 -0.0478,-0.12026 -0.0513,-0.11425 -0.0585,-0.11305 -0.0621,-0.10944 -0.068,-0.10583 -0.0717,-0.10102 -0.0777,-0.09862 -0.0836,-0.09502 -0.0871,-0.0914 -0.0896,-0.08659 -0.0931,-0.08178 -0.099,-0.07697 -0.10266,-0.07457 -0.10385,-0.06615 -0.10983,-0.06374 -0.1122,-0.05772 -0.1146,-0.05172 -0.11817,-0.0469 -0.11817,-0.04089 -0.12415,-0.03368 -0.12654,-0.03007 -0.1289,-0.02285 -0.12892,-0.01804 -0.13132,-0.0095 -0.13488,-0.0024 z m -3.0976,3.1173 -0.0263,-1.0174 -0.49299,0.50632 0.006,-0.18761 0.0156,-0.1828 0.0226,-0.1804 0.0323,-0.1804 0.0429,-0.17679 0.049,-0.16957 0.0561,-0.16837 0.0656,-0.16597 0.0729,-0.16116 0.0811,-0.15634 0.0871,-0.15153 0.0942,-0.14672 0.10025,-0.14191 0.10743,-0.1371 0.11341,-0.13229 0.11936,-0.12508 0.12654,-0.12026 0.13012,-0.11305 0.13607,-0.10824 0.14085,-0.09981 0.14803,-0.09501 0.15159,-0.08779 0.15518,-0.07937 0.15758,-0.07216 0.16472,-0.06615 0.1707,-0.05773 0.1707,-0.0481 0.17309,-0.03969 0.17666,-0.03247 0.18025,-0.02285 0.18383,-0.01443 0.18502,-0.0048 0,1.0198 -0.13488,0.0024 -0.12893,0.0095 -0.13011,0.01804 -0.12892,0.02285 -0.12772,0.03007 -0.12296,0.03368 -0.11817,0.04089 -0.11698,0.0469 -0.11698,0.05292 -0.11222,0.05773 -0.10862,0.06134 -0.10504,0.06855 -0.10266,0.07336 -0.0978,0.07696 -0.0942,0.08177 -0.0908,0.08659 -0.0859,0.09139 -0.0823,0.09381 -0.0764,0.09862 -0.074,0.10343 -0.068,0.10583 -0.0633,0.11064 -0.0573,0.11064 -0.0513,0.11545 -0.0466,0.11786 -0.0417,0.12267 -0.0369,0.12628 -0.0286,0.12387 -0.0226,0.12748 -0.0179,0.13229 -0.0107,0.13229 -0.004,0.1347 -0.49299,0.50632 z m 0.49299,-0.50632 -0.002,0.49309 -0.49062,0.01323 0.493,-0.50632 z m -3.0308,3.1305 -1.0122,0 0.005,-0.18401 0.0143,-0.1816 0.0215,-0.17919 0.031,-0.17799 0.0406,-0.17559 0.0466,-0.16957 0.0549,-0.16717 0.0633,-0.16356 0.0704,-0.15875 0.0764,-0.15394 0.0859,-0.15394 0.0908,-0.14552 0.0978,-0.14191 0.10504,-0.1359 0.11101,-0.13109 0.1158,-0.12508 0.12175,-0.12026 0.12654,-0.11425 0.13369,-0.10824 0.13846,-0.10223 0.14445,-0.09621 0.14682,-0.08779 0.15041,-0.08177 0.15757,-0.07457 0.15875,-0.06734 0.16473,-0.06014 0.16832,-0.05172 0.17189,-0.0433 0.17309,-0.03487 0.17786,-0.02645 0.17787,-0.01804 0.18142,-0.0095 0.0263,1.0174 -0.1313,0.0072 -0.13011,0.01323 -0.12773,0.01925 -0.12534,0.02526 -0.12176,0.03127 -0.12056,0.03728 -0.11699,0.0433 -0.11578,0.04811 -0.11221,0.05291 -0.10982,0.06014 -0.10862,0.06374 -0.10148,0.06734 -0.0979,0.07336 -0.0955,0.07937 -0.0931,0.08299 -0.0883,0.08659 -0.0848,0.09139 -0.08,0.09502 -0.074,0.09742 -0.0716,0.10343 -0.0668,0.10463 -0.0597,0.10583 -0.0549,0.11305 -0.0513,0.11545 -0.0442,0.11786 -0.0406,0.11906 -0.0346,0.12387 -0.0286,0.12508 -0.0215,0.12508 -0.0167,0.13109 -0.009,0.13109 -0.002,0.13349 z m 3.0272,3.1329 -1.0122,0 0.49299,0.50872 -0.18143,-0.0095 -0.17906,-0.01804 -0.17667,-0.02646 -0.17546,-0.03607 -0.16951,-0.0433 -0.16832,-0.05172 -0.16354,-0.06014 -0.15875,-0.06735 -0.15757,-0.07457 -0.15279,-0.08299 -0.14563,-0.089 -0.14206,-0.09381 -0.13846,-0.10223 -0.13251,-0.10824 -0.12772,-0.11425 -0.12176,-0.12026 -0.11578,-0.12508 -0.11221,-0.13229 -0.10385,-0.1383 -0.0978,-0.14071 -0.0896,-0.14432 -0.0847,-0.15033 -0.0789,-0.15634 -0.0692,-0.15875 -0.0644,-0.16356 -0.0536,-0.16837 -0.0466,-0.16837 -0.0406,-0.17438 -0.031,-0.1792 -0.0215,-0.17799 -0.0144,-0.1816 -0.005,-0.184 1.0122,0 0.002,0.13349 0.009,0.13109 0.0167,0.12989 0.0215,0.12628 0.0286,0.12387 0.0346,0.12508 0.0394,0.11786 0.0454,0.11786 0.0502,0.11546 0.0549,0.11064 0.0609,0.10704 0.068,0.10824 0.0692,0.10222 0.0752,0.09742 0.0788,0.09381 0.0848,0.09139 0.0883,0.08659 0.0919,0.08299 0.0942,0.07697 0.10026,0.07336 0.10385,0.06975 0.10744,0.06494 0.10743,0.05892 0.1122,0.05291 0.11579,0.04811 0.11818,0.0433 0.11818,0.03728 0.12414,0.03127 0.12534,0.02645 0.12653,0.01925 0.12891,0.01323 0.13131,0.0072 0.493,0.50872 z m -0.493,-0.50872 0.493,0.01323 0,0.49549 -0.493,-0.50872 z m -0.51926,6.9333 0,-6.4246 1.0122,0 0,6.4246 -0.50612,0.50992 -0.50613,-0.50992 z m 1.0122,0 0,0.50992 -0.50612,0 0.50612,-0.50992 z m -5.9971,-0.50992 5.491,0 0,1.0198 -5.491,0 -0.50612,-0.50752 0.50612,-0.51233 z m 0,1.0198 -0.50373,0 -0.002,-0.50752 0.50612,0.50752 z m -3.1108,-3.1161 0,-1.0198 0.18504,0.0048 0.18383,0.01443 0.18023,0.02285 0.17667,0.03247 0.17309,0.0397 0.1707,0.04811 0.1695,0.05772 0.16354,0.06494 0.16234,0.07336 0.15399,0.08058 0.14921,0.08539 0.14683,0.09381 0.14324,0.10102 0.13728,0.10944 0.12891,0.11305 0.12534,0.11786 0.12057,0.12628 0.1134,0.13229 0.10743,0.1371 0.10025,0.14191 0.0942,0.14672 0.0871,0.15154 0.0811,0.15634 0.0728,0.16115 0.0645,0.16476 0.0573,0.16717 0.0489,0.17078 0.043,0.17799 0.0323,0.1792 0.0226,0.1804 0.0156,0.18401 0.006,0.18641 -1.0122,0.0048 -0.004,-0.13349 -0.0107,-0.13349 -0.0179,-0.13229 -0.0226,-0.12628 -0.0286,-0.12508 -0.0369,-0.12508 -0.0406,-0.12147 -0.0477,-0.11906 -0.0514,-0.11546 -0.0573,-0.11064 -0.0633,-0.11064 -0.068,-0.10583 -0.074,-0.10343 -0.0764,-0.09862 -0.0823,-0.09381 -0.0848,-0.09019 -0.0919,-0.08659 -0.0955,-0.08419 -0.0967,-0.07577 -0.10025,-0.07216 -0.10622,-0.06734 -0.11103,-0.06374 -0.11339,-0.05892 -0.11222,-0.05172 -0.11818,-0.0457 -0.11936,-0.04089 -0.12295,-0.03368 -0.12773,-0.03007 -0.12892,-0.02285 -0.13011,-0.01804 -0.12893,-0.0095 -0.13488,-0.0024 z m -3.1084,3.0547 -0.005,-1.0198 -0.50255,0.49669 0.009,-0.1828 0.0179,-0.1804 0.0263,-0.17799 0.0346,-0.17438 0.043,-0.17559 0.0525,-0.16837 0.0585,-0.16236 0.0668,-0.16476 0.0752,-0.15634 0.08,-0.15274 0.0896,-0.14913 0.0931,-0.14312 0.10147,-0.14071 0.10863,-0.13349 0.111,-0.12748 0.12176,-0.12508 0.12534,-0.11666 0.12892,-0.11064 0.13489,-0.10583 0.14325,-0.09981 0.14443,-0.0902 0.14803,-0.08539 0.15397,-0.07817 0.15877,-0.07097 0.16353,-0.06374 0.16593,-0.05532 0.1683,-0.0469 0.1719,-0.04089 0.17787,-0.03127 0.17785,-0.02164 0.18025,-0.01443 0.18264,-0.0048 0,1.0198 -0.13251,0.0024 -0.13011,0.0095 -0.13012,0.01684 -0.12294,0.02165 -0.12415,0.02887 -0.12295,0.03487 -0.12056,0.04089 -0.1158,0.04449 -0.11339,0.05172 -0.11102,0.05652 -0.10981,0.06134 -0.10386,0.06615 -0.10025,0.07097 -0.0967,0.07457 -0.0955,0.08177 -0.092,0.08539 -0.0836,0.08659 -0.0823,0.09381 -0.0777,0.09742 -0.0728,0.09981 -0.0692,0.10463 -0.0633,0.10583 -0.0585,0.11185 -0.0536,0.11305 -0.0477,0.11425 -0.0417,0.12147 -0.0382,0.12026 -0.031,0.12267 -0.025,0.12628 -0.0191,0.12748 -0.0131,0.13229 -0.007,0.13229 -0.50255,0.49669 z m 0.50255,-0.4967 -0.0131,0.49429 -0.48943,0.0024 0.50256,-0.49669 z m -3.0929,3.1197 -1.0122,0 0.005,-0.18641 0.0144,-0.18521 0.0226,-0.1816 0.0323,-0.17799 0.0394,-0.17438 0.0478,-0.17198 0.0573,-0.17198 0.0656,-0.16596 0.0717,-0.15875 0.0787,-0.15634 0.0871,-0.15274 0.0943,-0.14913 0.099,-0.14191 0.10743,-0.1371 0.11221,-0.13109 0.11937,-0.12748 0.12415,-0.12026 0.1313,-0.11425 0.13607,-0.10824 0.14086,-0.10102 0.14445,-0.09501 0.15159,-0.089 0.15518,-0.07937 0.15877,-0.07336 0.16472,-0.06615 0.16831,-0.05772 0.16951,-0.0493 0.17309,-0.04209 0.17905,-0.03247 0.17906,-0.02285 0.18263,-0.01563 0.18502,-0.006 0.005,1.0198 -0.13251,0.0036 -0.1325,0.01083 -0.1313,0.01804 -0.12654,0.02285 -0.12533,0.03006 -0.12415,0.03488 -0.11817,0.04089 -0.11698,0.0469 -0.1158,0.05412 -0.11221,0.05773 -0.10622,0.06253 -0.10625,0.06855 -0.10266,0.07457 -0.0979,0.07697 -0.0931,0.08299 -0.0908,0.08659 -0.0859,0.09139 -0.0811,0.09502 -0.0764,0.09862 -0.0728,0.10343 -0.068,0.10583 -0.0609,0.10944 -0.0573,0.11305 -0.0525,0.11786 -0.0466,0.11786 -0.0406,0.11906 -0.0335,0.12387 -0.0298,0.12868 -0.0226,0.12988 -0.0179,0.13109 -0.009,0.12989 -0.002,0.1359 z m 3.0941,3.1209 -1.0099,0.02647 0.50255,0.49669 -0.18622,-0.0061 -0.18144,-0.01568 -0.17905,-0.02281 -0.17906,-0.03248 -0.17309,-0.04206 -0.16951,-0.04928 -0.1683,-0.05651 -0.16593,-0.0673 -0.15876,-0.07331 -0.15398,-0.07942 -0.1516,-0.089 -0.14564,-0.09501 -0.14085,-0.10101 -0.13608,-0.10824 -0.13251,-0.11545 -0.12295,-0.12026 -0.11936,-0.12508 -0.1134,-0.13349 -0.10624,-0.13831 -0.099,-0.14071 -0.0942,-0.14672 -0.0871,-0.15394 -0.0788,-0.15634 -0.0716,-0.15876 -0.0657,-0.16596 -0.0573,-0.17198 -0.0478,-0.17318 -0.0394,-0.17318 -0.0323,-0.17799 -0.0226,-0.1828 -0.0143,-0.18521 -0.005,-0.18641 1.0122,0 0.002,0.1359 0.009,0.13229 0.0179,0.12988 0.0227,0.12989 0.0298,0.12748 0.0335,0.12508 0.0406,0.11906 0.0466,0.11786 0.0525,0.11786 0.0573,0.11306 0.0609,0.10823 0.068,0.10584 0.0728,0.10464 0.0777,0.09978 0.0799,0.09256 0.0859,0.09143 0.0919,0.089 0.0919,0.08176 0.0979,0.07698 0.10265,0.07454 0.10506,0.06853 0.10863,0.06252 0.11101,0.05774 0.11579,0.05417 0.11579,0.04572 0.12055,0.04205 0.12414,0.03493 0.12535,0.03003 0.12652,0.02281 0.13132,0.01802 0.13131,0.0108 0.13368,0.0041 0.50255,0.49669 z m -0.50256,-0.49669 0.48943,0.002 0.0131,0.49429 -0.50255,-0.49669 z m 3.1072,3.0547 0,1.0198 -0.18263,-0.005 -0.18024,-0.0145 -0.17786,-0.0217 -0.17667,-0.0313 -0.17428,-0.0409 -0.16831,-0.047 -0.16593,-0.0553 -0.16234,-0.0637 -0.15875,-0.0709 -0.15399,-0.0782 -0.14802,-0.0853 -0.14445,-0.0902 -0.14324,-0.0997 -0.13488,-0.10583 -0.13011,-0.11185 -0.12416,-0.11665 -0.11936,-0.12268 -0.1134,-0.12747 -0.10862,-0.1347 -0.10147,-0.14071 -0.0942,-0.14432 -0.0871,-0.14792 -0.0811,-0.15274 -0.074,-0.15755 -0.0668,-0.16116 -0.0598,-0.16476 -0.0514,-0.16957 -0.043,-0.17439 -0.0346,-0.17438 -0.0263,-0.17799 -0.0179,-0.1804 -0.009,-0.18281 1.0099,-0.02647 0.007,0.13229 0.0131,0.13229 0.0191,0.12748 0.025,0.12627 0.031,0.12388 0.037,0.11906 0.0429,0.11905 0.0478,0.11786 0.0525,0.11186 0.0597,0.11184 0.0633,0.10704 0.068,0.10342 0.0728,0.09978 0.0777,0.09622 0.0823,0.09378 0.0859,0.089 0.0908,0.08544 0.0942,0.08055 0.0967,0.07454 0.10025,0.07097 0.10386,0.06619 0.10982,0.0613 0.11101,0.05651 0.1134,0.05173 0.11699,0.04449 0.11817,0.04093 0.12295,0.03493 0.12415,0.02882 0.12413,0.0217 0.13012,0.0168 0.13011,0.009 0.13251,0.002 z m 3.1072,-2.9826 0,1.0198 0.50494,-0.48588 -0.0119,0.1804 -0.0226,0.17679 -0.0286,0.17438 -0.0394,0.17318 -0.0454,0.16596 -0.0525,0.16476 -0.0621,0.16236 -0.068,0.15996 -0.0764,0.15394 -0.0811,0.14792 -0.0896,0.14673 -0.0955,0.14071 -0.10025,0.13349 -0.10623,0.13109 -0.1158,0.12748 -0.11937,0.11785 -0.12175,0.11425 -0.13131,0.10945 -0.13369,0.10221 -0.13966,0.0962 -0.14326,0.089 -0.14919,0.0842 -0.1528,0.0758 -0.15638,0.0697 -0.16115,0.0625 -0.16234,0.0517 -0.16711,0.0481 -0.1719,0.0385 -0.17308,0.03 -0.17548,0.0217 -0.17786,0.0132 -0.18024,0.005 0,-1.0198 0.13011,-0.002 0.13011,-0.0108 0.12533,-0.0145 0.12535,-0.0228 0.12176,-0.02648 0.11936,-0.03371 0.11938,-0.03971 0.1134,-0.04328 0.1134,-0.0505 0.10981,-0.05417 0.10624,-0.06018 0.10505,-0.06496 0.099,-0.06975 0.0979,-0.07331 0.0931,-0.0782 0.0908,-0.08299 0.0859,-0.08655 0.08,-0.089 0.0777,-0.09501 0.074,-0.09978 0.0692,-0.09978 0.0633,-0.10342 0.0598,-0.10944 0.0549,-0.11064 0.0489,-0.11185 0.043,-0.11665 0.0382,-0.11906 0.0335,-0.12267 0.0275,-0.12268 0.0215,-0.12627 0.0156,-0.12628 0.009,-0.12989 0.50494,-0.48586 z m -0.50493,0.48586 0.0226,-0.48586 0.48226,0 -0.50493,0.48586 z m 5.9983,0.53398 -5.4934,0 0,-1.0198 5.4934,0 0.50613,0.50993 -0.50613,0.50993 z m 0,-1.0198 0.50613,0 0,0.50993 -0.50613,-0.50993 z m -0.50613,21.882 0,-21.372 1.0122,0 0,21.372 -0.50613,0.50992 -0.50612,-0.50992 z m 0.50613,0.50992 -0.50613,0 0,-0.50992 0.50613,0.50992 z m 6.2311,0 -6.2311,0 0,-1.0198 6.2311,0 0.50613,0.50993 -0.50613,0.50991 z m 0.50613,-0.50992 0,0.50992 -0.50613,0 0.50613,-0.50992 z m 0,-21.372 0,21.372 -1.0122,0 0,-21.372 0.50612,-0.50993 0.50613,0.50993 z m -1.0122,0 0,-0.50993 0.50612,0 -0.50612,0.50993 z m 5.9995,0.50993 -5.4934,0 0,-1.0198 5.4934,0 0.50492,0.48586 -0.50492,0.53398 z m 0,-1.0198 0.48225,0 0.0226,0.48586 -0.50492,-0.48586 z m 3.1072,2.9826 0,1.0198 -0.18026,-0.005 -0.17785,-0.0133 -0.17548,-0.0217 -0.17309,-0.03 -0.17189,-0.0385 -0.16711,-0.0482 -0.16235,-0.0517 -0.16114,-0.0625 -0.15637,-0.0697 -0.1528,-0.0758 -0.14922,-0.0842 -0.14324,-0.089 -0.13966,-0.0962 -0.1337,-0.10222 -0.1313,-0.10944 -0.12176,-0.11426 -0.11937,-0.11786 -0.11579,-0.12748 -0.10622,-0.13109 -0.10025,-0.1335 -0.0955,-0.14071 -0.0896,-0.14672 -0.0811,-0.14793 -0.0764,-0.15394 -0.068,-0.15995 -0.0621,-0.16236 -0.0525,-0.16476 -0.0454,-0.16597 -0.0394,-0.17317 -0.0287,-0.17438 -0.0226,-0.1768 -0.0119,-0.18039 1.0099,-0.04817 0.009,0.12989 0.0156,0.12628 0.0216,0.12628 0.0275,0.12267 0.0335,0.12267 0.0382,0.11906 0.0429,0.11666 0.0489,0.11184 0.0549,0.11064 0.0597,0.10944 0.0633,0.10342 0.0692,0.09978 0.074,0.09978 0.0777,0.09501 0.08,0.089 0.0859,0.08655 0.0908,0.08299 0.0931,0.0782 0.0979,0.07331 0.099,0.06975 0.10506,0.06496 0.10622,0.06018 0.10982,0.05417 0.11341,0.0505 0.1134,0.04328 0.11937,0.03971 0.11937,0.03371 0.12176,0.02647 0.12534,0.0228 0.12534,0.0145 0.13011,0.0108 0.13011,0.002 z m 3.1072,-3.0547 0.005,1.0198 0.50255,-0.4967 -0.009,0.1816 -0.0167,0.1816 -0.0275,0.17919 -0.0346,0.17318 -0.0429,0.17438 -0.0513,0.16957 -0.0597,0.16476 -0.0668,0.16116 -0.0728,0.15514 -0.0811,0.15515 -0.0896,0.14912 -0.0931,0.14311 -0.10147,0.13831 -0.10744,0.1359 -0.11339,0.12868 -0.11937,0.12267 -0.12415,0.11665 -0.1313,0.11306 -0.13489,0.10462 -0.14205,0.0998 -0.14563,0.0914 -0.14802,0.0842 -0.15399,0.0782 -0.15876,0.0709 -0.16234,0.0637 -0.16593,0.0553 -0.1683,0.047 -0.17429,0.0409 -0.17666,0.0312 -0.17787,0.0217 -0.18024,0.0145 -0.18264,0.005 0,-1.0198 0.13251,-0.002 0.13011,-0.009 0.13011,-0.0168 0.12414,-0.0217 0.12415,-0.02882 0.12295,-0.03493 0.11817,-0.04083 0.11698,-0.04449 0.1134,-0.05173 0.11102,-0.05652 0.10982,-0.06253 0.10505,-0.06496 0.099,-0.07097 0.099,-0.07576 0.0931,-0.07942 0.0908,-0.08543 0.0859,-0.089 0.0823,-0.09256 0.0764,-0.095 0.0728,-0.10222 0.0692,-0.10464 0.0633,-0.10584 0.0573,-0.10944 0.0537,-0.11425 0.0477,-0.11786 0.0429,-0.11906 0.0369,-0.11906 0.031,-0.12387 0.025,-0.12748 0.0204,-0.12628 0.0119,-0.13109 0.007,-0.13349 0.50254,-0.49669 z m -0.50255,0.49669 0.0119,-0.49429 0.49062,-0.002 -0.50255,0.49669 z m 3.0941,-3.1209 1.0122,0 -0.005,0.18641 -0.0143,0.18521 -0.0226,0.1828 -0.0323,0.17799 -0.0394,0.17318 -0.0477,0.17318 -0.0573,0.17198 -0.0657,0.16596 -0.0717,0.15875 -0.0788,0.15634 -0.0871,0.15394 -0.0942,0.14673 -0.099,0.14071 -0.10624,0.1383 -0.1134,0.13349 -0.11936,0.12508 -0.12296,0.12026 -0.1325,0.11546 -0.13607,0.10824 -0.14086,0.10101 -0.14563,0.095 -0.15161,0.089 -0.15398,0.07932 -0.15876,0.07341 -0.16593,0.0673 -0.1683,0.05651 -0.16951,0.04928 -0.17308,0.04205 -0.17907,0.03248 -0.17905,0.02281 -0.18143,0.01568 -0.18623,0.0061 -0.005,-1.0198 0.13371,-0.0041 0.1313,-0.0108 0.13131,-0.01802 0.12653,-0.02281 0.12533,-0.03003 0.12415,-0.03493 0.12057,-0.04206 0.11579,-0.04572 0.11577,-0.05417 0.11103,-0.05773 0.10863,-0.06253 0.10503,-0.06853 0.10267,-0.07454 0.0979,-0.07698 0.0919,-0.08176 0.092,-0.089 0.0859,-0.09144 0.08,-0.09256 0.0777,-0.09978 0.0728,-0.10463 0.068,-0.10584 0.0609,-0.10824 0.0573,-0.11305 0.0525,-0.11786 0.0466,-0.11786 0.0406,-0.11906 0.0335,-0.12508 0.0298,-0.12748 0.0226,-0.12989 0.0179,-0.12989 0.009,-0.13229 0.002,-0.1359 z m -3.0929,-3.1197 1.0099,-0.02645 -0.50254,-0.49669 0.18502,0.006 0.18264,0.01563 0.17905,0.02285 0.17906,0.03247 0.17308,0.04209 0.16951,0.0493 0.1683,0.05773 0.16473,0.06615 0.15877,0.07336 0.15517,0.07937 0.15161,0.089 0.14444,0.09501 0.14085,0.10102 0.13608,0.10824 0.1313,0.11425 0.12416,0.12026 0.11937,0.12748 0.11221,0.13109 0.10742,0.1371 0.099,0.14191 0.0942,0.14913 0.0871,0.15274 0.0789,0.15634 0.0717,0.15875 0.0656,0.16597 0.0573,0.17198 0.0477,0.17198 0.0394,0.17438 0.0323,0.17799 0.0227,0.1816 0.0144,0.18521 0.005,0.18641 -1.0122,0 -0.002,-0.1359 -0.009,-0.12988 -0.0179,-0.13109 -0.0226,-0.12989 -0.0298,-0.12868 -0.0335,-0.12387 -0.0406,-0.11906 -0.0466,-0.11786 -0.0525,-0.11786 -0.0573,-0.11305 -0.0609,-0.10944 -0.068,-0.10583 -0.0728,-0.10343 -0.0764,-0.09862 -0.0811,-0.09501 -0.0859,-0.09139 -0.0908,-0.08659 -0.0931,-0.08299 -0.0979,-0.07696 -0.10265,-0.07457 -0.10625,-0.06855 -0.10623,-0.06253 -0.11221,-0.05773 -0.11579,-0.05412 -0.11699,-0.0469 -0.11817,-0.04089 -0.12414,-0.03487 -0.12535,-0.03006 -0.12652,-0.02285 -0.1313,-0.01804 -0.13251,-0.01083 -0.1325,-0.0036 -0.50254,-0.49669 z m 0.50255,0.49669 -0.48942,-0.0024 -0.0131,-0.49429 0.50255,0.4967 z m -3.1084,-3.0547 0,-1.0198 0.18263,0.0048 0.18025,0.01443 0.17785,0.02164 0.17787,0.03127 0.17189,0.04089 0.16831,0.0469 0.16712,0.05532 0.16115,0.06374 0.15876,0.07097 0.15519,0.07817 0.148,0.08539 0.14445,0.09019 0.14324,0.09981 0.13488,0.10583 0.13011,0.11185 0.12296,0.11545 0.12176,0.12387 0.11221,0.12868 0.10861,0.13349 0.10147,0.14071 0.0931,0.14312 0.0896,0.14913 0.08,0.15274 0.0752,0.15634 0.0668,0.16476 0.0585,0.16236 0.0525,0.16837 0.043,0.17559 0.0347,0.17438 0.0263,0.17799 0.0179,0.1804 0.009,0.1828 -1.0099,0.02645 -0.007,-0.13229 -0.0131,-0.13229 -0.0191,-0.12748 -0.025,-0.12628 -0.031,-0.12267 -0.0382,-0.12026 -0.0417,-0.12147 -0.0477,-0.11425 -0.0537,-0.11305 -0.0585,-0.11185 -0.0633,-0.10583 -0.0692,-0.10463 -0.0728,-0.09981 -0.0777,-0.09742 -0.0811,-0.0926 -0.0859,-0.08779 -0.092,-0.08659 -0.0942,-0.08057 -0.0967,-0.07457 -0.10025,-0.07095 -0.10385,-0.06615 -0.10982,-0.06134 -0.10982,-0.05653 -0.11579,-0.05172 -0.11579,-0.04449 -0.11936,-0.04089 -0.12295,-0.03487 -0.12415,-0.02887 -0.12294,-0.02164 -0.13012,-0.01684 -0.13011,-0.0095 -0.1325,-0.0024 z m -3.1108,3.1161 0,-1.0198 -0.50612,0.50632 0.006,-0.18521 0.0156,-0.18401 0.0238,-0.1828 0.0323,-0.17679 0.0406,-0.17559 0.0502,-0.17318 0.0573,-0.16717 0.0657,-0.16597 0.074,-0.16236 0.0788,-0.15274 0.0859,-0.15153 0.0955,-0.14793 0.10147,-0.14312 0.10744,-0.1359 0.1122,-0.13229 0.12177,-0.12628 0.12294,-0.11786 0.13131,-0.11425 0.13846,-0.10824 0.14086,-0.10102 0.14563,-0.09381 0.1504,-0.08539 0.15399,-0.08058 0.16235,-0.07336 0.16352,-0.06494 0.16951,-0.05772 0.1707,-0.04812 0.1731,-0.03969 0.17665,-0.03247 0.18026,-0.02285 0.18383,-0.01443 0.18502,-0.0048 0,1.0198 -0.13489,0.0024 -0.12891,0.0095 -0.13012,0.01804 -0.12892,0.02285 -0.12772,0.03006 -0.12296,0.03368 -0.11937,0.04089 -0.11816,0.0457 -0.11222,0.05172 -0.11339,0.05892 -0.10982,0.06374 -0.10506,0.06734 -0.10266,0.07216 -0.0979,0.07697 -0.0931,0.08299 -0.092,0.08659 -0.0859,0.09019 -0.0811,0.09381 -0.0789,0.09981 -0.0728,0.10222 -0.0668,0.10463 -0.0621,0.11064 -0.0597,0.11425 -0.0525,0.11425 -0.0466,0.11786 -0.0406,0.12147 -0.0357,0.12267 -0.0286,0.12748 -0.025,0.12868 -0.0167,0.12989 -0.0107,0.13349 -0.004,0.1347 -0.50612,0.50632 z m 0.50612,-0.50632 -0.004,0.50632 -0.50254,0 0.50611,-0.50632 z m -5.9959,-0.51353 5.4898,0 0,1.0198 -5.4898,0 -0.50612,-0.50992 0.50612,-0.50992 z m 0,1.0198 -0.50612,0 0,-0.50992 0.50612,0.50992 z m 0.50613,-6.9345 0,6.4246 -1.0122,0 0,-6.4246 0.49299,-0.50872 0.51926,0.50872 z m -1.0122,0 0,-0.49549 0.49299,-0.01323 -0.49299,0.50872 z m 0.50613,0 -0.0131,-0.50872 0.0131,0.50872 z m -0.50613,0 0,-0.49549 0.49299,-0.01323 -0.49299,0.50872 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path38" + d="m 499.82,122.37 -1.0122,0 0,0 -0.0215,-0.8647 -0.0633,-0.85267 -0.10744,-0.84067 -0.14562,-0.82621 -0.18623,-0.81179 -0.22561,-0.79616 -0.26141,-0.78171 -0.29723,-0.76128 -0.33424,-0.74324 -0.36766,-0.724 -0.40108,-0.70235 -0.43331,-0.6819 -0.46434,-0.65785 -0.49539,-0.63379 -0.52283,-0.60974 -0.55388,-0.58329 -0.57775,-0.55683 -0.6052,-0.52676 -0.62908,-0.49909 -0.65295,-0.46783 -0.67683,-0.43657 -0.69712,-0.40408 -0.71861,-0.37042 -0.7377,-0.33675 -0.7556,-0.29946 -0.77591,-0.26338 -0.79023,-0.22731 -0.80575,-0.1876 -0.82006,-0.14673 -0.83439,-0.10823 -0.84633,-0.0637 -0.85827,-0.0217 0,-1.0198 0.9084,0.024 0.89885,0.0685 0.88454,0.11305 0.8702,0.15634 0.85587,0.19964 0.83799,0.23933 0.82125,0.28022 0.80337,0.31869 0.78305,0.35599 0.76159,0.39447 0.74008,0.42814 0.71742,0.46302 0.69354,0.4967 0.66726,0.52797 0.64103,0.56043 0.61355,0.5881 0.58491,0.61936 0.55627,0.64582 0.52402,0.67229 0.49301,0.69874 0.45957,0.72279 0.42495,0.74564 0.39153,0.76729 0.35334,0.78893 0.31632,0.80938 0.27814,0.82744 0.23755,0.84425 0.19815,0.8623 0.15517,0.87673 0.11222,0.89116 0.068,0.9056 0.0238,0.91521 0,0 z m -17.675,17.808 0,-1.0198 0.85827,-0.0217 0.84633,-0.0637 0.83439,-0.10825 0.82006,-0.14671 0.80575,-0.18761 0.79023,-0.2273 0.7759,-0.26338 0.75561,-0.29947 0.7377,-0.33675 0.71861,-0.37041 0.69712,-0.40409 0.67683,-0.43776 0.65295,-0.46784 0.62908,-0.49909 0.6052,-0.52676 0.57894,-0.55683 0.55268,-0.58208 0.52284,-0.60854 0.49538,-0.6362 0.46435,-0.65785 0.43331,-0.68071 0.40108,-0.70234 0.36766,-0.7252 0.33424,-0.74324 0.29723,-0.76128 0.26141,-0.78051 0.2256,-0.79736 0.18624,-0.81058 0.14562,-0.82742 0.10744,-0.84065 0.0633,-0.85148 0.0215,-0.86472 1.0122,0 -0.0238,0.91523 -0.068,0.90439 -0.11221,0.89117 -0.15517,0.87792 -0.19816,0.8611 -0.23755,0.84547 -0.27812,0.82622 -0.31633,0.80939 -0.35334,0.78893 -0.39153,0.76849 -0.42495,0.74565 -0.45958,0.72158 -0.49299,0.69874 -0.52404,0.67228 -0.55626,0.64703 -0.58611,0.61815 -0.61236,0.5881 -0.64101,0.56044 -0.66729,0.52796 -0.69353,0.49671 -0.71741,0.46421 -0.74008,0.42814 -0.76159,0.39448 -0.78306,0.35598 -0.80336,0.3187 -0.82126,0.28021 -0.83797,0.23934 -0.85588,0.19963 -0.87021,0.15636 -0.88453,0.11304 -0.89884,0.0685 -0.90841,0.024 z m -17.674,-17.808 1.0122,0 0.0215,0.86471 0.0633,0.85268 0.10743,0.84066 0.14563,0.82621 0.18622,0.8118 0.22561,0.79615 0.26141,0.78172 0.29723,0.76127 0.33424,0.74325 0.36766,0.72399 0.40109,0.70234 0.4333,0.68191 0.46434,0.65785 0.49539,0.6338 0.52283,0.60974 0.55269,0.58208 0.57895,0.55803 0.6052,0.52677 0.62907,0.49909 0.65296,0.46783 0.67563,0.43656 0.69831,0.40409 0.71861,0.37041 0.7377,0.33675 0.7556,0.29947 0.77472,0.26338 0.79142,0.2273 0.80574,0.18761 0.82007,0.14671 0.83439,0.10825 0.84513,0.0637 0.85828,0.0217 0,1.0198 -0.9084,-0.024 -0.89766,-0.0685 -0.88454,-0.11304 -0.87019,-0.15634 -0.85588,-0.19965 -0.83918,-0.23934 -0.82007,-0.2802 -0.80336,-0.3187 -0.78305,-0.35599 -0.76158,-0.39447 -0.74129,-0.42813 -0.71622,-0.46303 -0.69354,-0.49669 -0.66727,-0.52797 -0.64102,-0.56043 -0.61475,-0.5893 -0.5837,-0.61817 -0.55628,-0.64581 -0.52402,-0.67229 -0.49301,-0.69874 -0.45957,-0.72279 -0.42495,-0.74564 -0.39154,-0.7673 -0.35333,-0.78893 -0.31632,-0.80939 -0.27814,-0.82742 -0.23755,-0.84425 -0.19815,-0.8623 -0.15518,-0.87674 -0.11221,-0.89116 -0.068,-0.90559 -0.0238,-0.91522 z m 17.674,-17.808 0,1.0198 -0.85827,0.0217 -0.84513,0.0637 -0.83439,0.10823 -0.82007,0.14673 -0.80575,0.1876 -0.79142,0.22731 -0.77471,0.26338 -0.75561,0.29946 -0.7377,0.33675 -0.7186,0.37042 -0.69832,0.40408 -0.67562,0.43657 -0.65297,0.46782 -0.62907,0.4991 -0.6052,0.52797 -0.57894,0.55561 -0.55149,0.5833 -0.52403,0.60974 -0.49539,0.63379 -0.46435,0.65785 -0.4333,0.68191 -0.40109,0.70234 -0.36766,0.724 -0.33424,0.74324 -0.29722,0.76127 -0.26141,0.78172 -0.22561,0.79616 -0.18622,0.81179 -0.14564,0.82621 -0.10743,0.84066 -0.0633,0.85268 -0.0215,0.8647 -1.0122,0 0.0238,-0.91521 0.068,-0.9056 0.11221,-0.89117 0.15518,-0.87672 0.19815,-0.8623 0.23755,-0.84426 0.27814,-0.82742 0.31632,-0.8094 0.35333,-0.78893 0.39154,-0.76728 0.42495,-0.74564 0.45958,-0.7228 0.493,-0.69874 0.52402,-0.67228 0.55507,-0.64583 0.58491,-0.61935 0.61475,-0.5893 0.64102,-0.55924 0.66728,-0.52796 0.69353,-0.49671 0.71622,-0.46301 0.74129,-0.42814 0.76158,-0.39447 0.78305,-0.35599 0.80336,-0.31869 0.82007,-0.28022 0.83918,-0.23934 0.85587,-0.19963 0.8702,-0.15634 0.88454,-0.11305 0.89765,-0.0685 0.9084,-0.0241 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path40" + d="m 498.96,118.85 c 0.23158,1.1353 0.35454,2.3103 0.35454,3.5141 0,0.83103 -0.0598,1.6488 -0.1731,2.4498 -5.6438,-0.19723 -11.302,-0.33072 -16.995,-0.33072 -5.6927,0 -11.351,0.13349 -16.996,0.33072 -0.11341,-0.80096 -0.17309,-1.6188 -0.17309,-2.4498 0,-1.2038 0.12294,-2.3788 0.35572,-3.5141 5.5841,-0.19122 11.183,-0.32352 16.813,-0.32352 5.6307,0 11.229,0.13229 16.813,0.32352 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path42" + d="m 499.82,122.37 -1.0122,0 0,0 0,-0.11064 -10e-4,-0.10583 -0.002,-0.11065 -0.002,-0.11184 -10e-4,-0.10584 -0.005,-0.10704 -0.005,-0.11184 -0.005,-0.10944 -0.006,-0.10583 -0.007,-0.10703 -0.007,-0.10824 -0.007,-0.10944 -0.008,-0.10584 -0.009,-0.10583 -0.0107,-0.10825 -0.0107,-0.10943 -0.009,-0.10462 -0.0131,-0.10585 -0.0119,-0.10703 -0.0131,-0.10342 -0.0143,-0.10825 -0.0144,-0.10704 -0.0143,-0.10222 -0.0167,-0.10583 -0.0155,-0.10584 -0.0179,-0.10462 -0.0167,-0.10344 -0.0191,-0.10463 -0.0191,-0.10582 -0.0191,-0.10344 -0.0204,-0.10342 -0.0204,-0.10343 0.99077,-0.20445 0.0226,0.11065 0.0204,0.10824 0.0215,0.11064 0.0191,0.11064 0.0191,0.10944 0.0191,0.11064 0.0179,0.11185 0.0179,0.11064 0.0167,0.11064 0.0167,0.11426 0.0143,0.11184 0.0144,0.10824 0.0155,0.11546 0.0119,0.11185 0.0131,0.11304 0.0119,0.11666 0.0107,0.10944 0.0107,0.11304 0.009,0.11546 0.008,0.11305 0.009,0.11426 0.007,0.11305 0.007,0.11425 0.006,0.11786 0.005,0.11425 0.005,0.11185 0.005,0.11665 0.004,0.11786 0.002,0.11185 0.002,0.11546 0.001,0.11785 0,0.11545 0,0 z m -0.69711,2.9585 0.0357,-1.0174 -0.51805,0.43657 0.009,-0.071 0.009,-0.0758 0.0107,-0.0758 0.008,-0.0662 0.008,-0.0758 0.009,-0.0758 0.008,-0.0721 0.008,-0.0709 0.007,-0.0758 0.008,-0.0758 0.006,-0.0734 0.007,-0.0722 0.006,-0.0709 0.006,-0.077 0.006,-0.0758 0.006,-0.077 0.005,-0.0734 0.005,-0.0735 0.005,-0.0709 0.004,-0.0734 0.004,-0.0806 0.005,-0.0746 0.002,-0.0735 0.004,-0.077 0.002,-0.0721 0.002,-0.0734 0.001,-0.0782 0.002,-0.077 0,-0.0697 0,-0.0782 10e-4,-0.077 0,-0.0746 1.0122,0 0,0.0818 -10e-4,0.077 0,0.0782 -0.002,0.0866 -0.002,0.077 -10e-4,0.0782 -0.002,0.0806 -0.002,0.0818 -0.004,0.077 -0.002,0.0806 -0.005,0.0818 -0.004,0.0733 -0.004,0.0806 -0.005,0.0806 -0.005,0.0806 -0.007,0.0806 -0.006,0.077 -0.006,0.0758 -0.006,0.077 -0.006,0.0806 -0.007,0.0795 -0.008,0.0806 -0.008,0.0758 -0.007,0.0758 -0.008,0.0806 -0.008,0.0794 -0.009,0.0758 -0.008,0.0758 -0.0107,0.083 -0.0107,0.0758 -0.009,0.0758 -0.0119,0.0782 -0.51807,0.43656 z m 0.51806,-0.43656 -0.0645,0.4522 -0.4536,-0.0156 0.51806,-0.43656 z m -17.495,0.10704 0,-1.0198 0.53359,0 0.53477,0.001 0.53479,0.002 0.53239,0.002 0.53358,0.004 0.53357,0.004 0.53359,0.005 0.53358,0.006 0.5312,0.006 0.53358,0.007 0.53118,0.007 0.53359,0.008 0.5312,0.008 0.53238,0.009 0.5312,0.009 0.53239,0.0108 0.53119,0.0108 0.5312,0.0132 0.5312,0.0121 0.52999,0.0132 0.5312,0.0133 0.53001,0.0145 0.53118,0.0132 0.53001,0.0157 0.53,0.0157 0.52999,0.0157 0.5312,0.0157 0.5288,0.0169 0.5312,0.0167 0.5288,0.0181 0.53001,0.0181 0.53,0.0181 -0.0357,1.0174 -0.52761,-0.0181 -0.53001,-0.0181 -0.5288,-0.0181 -0.52881,-0.0168 -0.5288,-0.0168 -0.52881,-0.0156 -0.53,-0.0157 -0.53,-0.0157 -0.52761,-0.0157 -0.5312,-0.0132 -0.53001,-0.0145 -0.5288,-0.0132 -0.53,-0.0132 -0.53119,-0.012 -0.52881,-0.0108 -0.53118,-0.0108 -0.53001,-0.0108 -0.5312,-0.009 -0.52999,-0.009 -0.5312,-0.008 -0.53121,-0.008 -0.53118,-0.007 -0.5312,-0.007 -0.5312,-0.006 -0.53119,-0.006 -0.53119,-0.005 -0.53358,-0.004 -0.53119,-0.004 -0.5324,-0.002 -0.53239,-0.002 -0.53239,-0.001 -0.53358,0 z m -17.496,-0.10704 1.0003,-0.14431 -0.51807,-0.43657 0.53,-0.0181 0.53001,-0.0181 0.52881,-0.0181 0.53119,-0.0168 0.53,-0.0168 0.52999,-0.0156 0.53,-0.0156 0.53001,-0.0157 0.53119,-0.0155 0.53,-0.0133 0.53,-0.0145 0.53239,-0.0132 0.53,-0.0133 0.53119,-0.012 0.5312,-0.0133 0.5312,-0.0108 0.53238,-0.0108 0.5312,-0.009 0.53239,-0.009 0.5312,-0.008 0.53358,-0.008 0.53119,-0.007 0.53359,-0.007 0.53119,-0.006 0.53357,-0.006 0.53359,-0.005 0.53358,-0.004 0.53359,-0.004 0.53238,-0.002 0.53479,-0.002 0.53476,-0.001 0.53359,0 0,1.0198 -0.53359,0 -0.53238,10e-4 -0.53239,0.002 -0.53239,0.002 -0.53118,0.004 -0.5336,0.004 -0.53119,0.005 -0.5312,0.006 -0.53119,0.006 -0.53119,0.007 -0.5312,0.007 -0.53119,0.008 -0.5312,0.008 -0.53,0.009 -0.53119,0.009 -0.53,0.0108 -0.53119,0.0108 -0.52882,0.0108 -0.53119,0.012 -0.53,0.0132 -0.53,0.0133 -0.53,0.0144 -0.53001,0.0132 -0.5288,0.0157 -0.53,0.0157 -0.53001,0.0157 -0.5276,0.0157 -0.53001,0.0168 -0.5288,0.0168 -0.52882,0.0181 -0.52999,0.0181 -0.52761,0.0181 -0.51806,-0.43655 z m 0.51806,0.43656 -0.45361,0.0156 -0.0644,-0.4522 0.51806,0.43656 z m -0.69711,-2.9585 1.0122,0 0,0.0746 0.001,0.077 0,0.0782 0,0.0697 0.002,0.077 10e-4,0.0782 0.002,0.0733 0.002,0.0722 0.004,0.077 0.002,0.0735 0.005,0.0746 0.004,0.0806 0.004,0.0734 0.005,0.0709 0.005,0.0735 0.005,0.0734 0.006,0.077 0.006,0.0758 0.006,0.077 0.006,0.0709 0.007,0.0722 0.006,0.0735 0.008,0.0758 0.007,0.0758 0.008,0.0709 0.008,0.0722 0.009,0.0758 0.008,0.0758 0.008,0.0662 0.0107,0.0758 0.009,0.0758 0.009,0.0709 -1.0003,0.14432 -0.0119,-0.0782 -0.009,-0.0758 -0.0107,-0.0758 -0.0107,-0.083 -0.008,-0.0758 -0.009,-0.0758 -0.008,-0.0794 -0.008,-0.0806 -0.007,-0.0758 -0.008,-0.0758 -0.008,-0.0806 -0.007,-0.0794 -0.006,-0.0806 -0.006,-0.077 -0.006,-0.0758 -0.006,-0.077 -0.007,-0.0806 -0.005,-0.0806 -0.005,-0.0806 -0.004,-0.0806 -0.004,-0.0733 -0.005,-0.0818 -0.002,-0.0806 -0.004,-0.077 -0.002,-0.0818 -0.002,-0.0806 -10e-4,-0.0782 -0.002,-0.077 -0.002,-0.0866 0,-0.0782 -10e-4,-0.077 0,-0.0818 z m 0.84513,-4.0229 0.0335,1.0174 0.47867,-0.4053 -0.0204,0.10224 -0.0204,0.10342 -0.0204,0.10584 -0.0191,0.10582 -0.0191,0.10223 -0.0167,0.10343 -0.0179,0.10463 -0.0156,0.10343 -0.0156,0.10823 -0.0167,0.10464 -0.0131,0.10463 -0.0143,0.10463 -0.0119,0.10704 -0.0131,0.10703 -0.0119,0.10585 -0.0119,0.10822 -0.009,0.10583 -0.0107,0.10825 -0.009,0.10583 -0.008,0.10583 -0.007,0.10944 -0.007,0.10824 -0.007,0.10704 -0.006,0.10583 -0.005,0.10944 -0.005,0.10945 -0.004,0.10943 -0.004,0.10825 -0.001,0.10943 -0.002,0.11065 -0.001,0.10583 0,0.11064 -1.0122,0 0,-0.11546 0.001,-0.11785 0.002,-0.11545 0.004,-0.11426 0.004,-0.11545 0.004,-0.11426 0.005,-0.11425 0.005,-0.11425 0.006,-0.11786 0.007,-0.11424 0.007,-0.11306 0.009,-0.11425 0.008,-0.11306 0.009,-0.11545 0.0107,-0.11305 0.0119,-0.11304 0.0119,-0.11305 0.0119,-0.11305 0.0131,-0.11185 0.0144,-0.11185 0.0143,-0.11185 0.0156,-0.11425 0.0167,-0.11185 0.0156,-0.10822 0.0179,-0.11306 0.0179,-0.11185 0.0191,-0.11064 0.0191,-0.11186 0.0216,-0.11064 0.0202,-0.10823 0.0204,-0.10823 0.0226,-0.11186 0.47867,-0.40529 z m -0.47867,0.40529 0.08,-0.39206 0.39869,-0.0133 -0.47867,0.40529 z m 17.309,-0.73001 0,1.0198 -0.52761,0 -0.52642,0.001 -0.52642,0.002 -0.52761,0.002 -0.52522,0.004 -0.52763,0.004 -0.52522,0.005 -0.52522,0.006 -0.52643,0.006 -0.52522,0.006 -0.52523,0.008 -0.52641,0.007 -0.52405,0.008 -0.52522,0.009 -0.52522,0.009 -0.52403,0.0108 -0.52524,0.009 -0.52403,0.012 -0.52522,0.012 -0.52403,0.012 -0.52403,0.0133 -0.52403,0.0132 -0.52404,0.0144 -0.52404,0.0145 -0.52403,0.0145 -0.52283,0.0156 -0.52404,0.0157 -0.52283,0.0168 -0.52403,0.0168 -0.52404,0.0168 -0.52284,0.0167 -0.52403,0.0181 -0.0335,-1.0174 0.52404,-0.0181 0.52284,-0.0168 0.52403,-0.0168 0.52403,-0.0168 0.52523,-0.0168 0.52403,-0.0157 0.52522,-0.0155 0.52404,-0.0145 0.52403,-0.0145 0.52643,-0.0145 0.52402,-0.0132 0.52642,-0.0132 0.52403,-0.012 0.52524,-0.012 0.52641,-0.012 0.52523,-0.012 0.52641,-0.0108 0.52524,-0.009 0.52761,-0.009 0.52641,-0.008 0.52643,-0.007 0.52522,-0.008 0.52761,-0.006 0.52643,-0.006 0.5276,-0.006 0.52762,-0.005 0.52762,-0.004 0.5276,-0.004 0.52762,-0.002 0.5288,-0.002 0.52882,-10e-4 0.5276,0 z m 17.309,0.73121 -0.99078,0.20446 0.47867,0.40649 -0.52403,-0.0181 -0.52283,-0.0169 -0.52404,-0.0168 -0.52403,-0.0168 -0.52283,-0.0168 -0.52404,-0.0156 -0.52283,-0.0155 -0.52405,-0.0145 -0.52403,-0.0144 -0.52402,-0.0145 -0.52404,-0.0133 -0.52403,-0.0132 -0.52404,-0.012 -0.52522,-0.012 -0.52404,-0.0121 -0.52522,-0.009 -0.52403,-0.0108 -0.52522,-0.009 -0.52523,-0.009 -0.52404,-0.008 -0.52641,-0.007 -0.52523,-0.008 -0.52523,-0.006 -0.52642,-0.006 -0.52522,-0.006 -0.52522,-0.005 -0.52763,-0.004 -0.52522,-0.004 -0.52762,-0.002 -0.52641,-0.002 -0.52642,-10e-4 -0.52762,0 0,-1.0198 0.52762,0 0.52881,10e-4 0.52881,0.002 0.5276,0.002 0.52762,0.004 0.52762,0.004 0.5276,0.005 0.52762,0.006 0.52642,0.006 0.52761,0.006 0.52523,0.008 0.52641,0.007 0.52642,0.008 0.52762,0.009 0.52522,0.009 0.52642,0.0107 0.52523,0.012 0.52642,0.012 0.52522,0.012 0.52404,0.012 0.52642,0.0132 0.52403,0.0132 0.52641,0.0145 0.52404,0.0144 0.52404,0.0145 0.52523,0.0156 0.52402,0.0157 0.52523,0.0168 0.52403,0.0169 0.52404,0.0167 0.52284,0.0168 0.52403,0.0181 0.47867,0.40652 z m -0.47868,-0.40649 0.39869,0.0132 0.08,0.39326 -0.47868,-0.40649 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path44" + d="m 468.82,133.18 c -3.6348,-2.2574 -4.2698,1.2363 -4.1779,4.7493 0.34618,13.234 2.8649,25.827 -0.67444,42.031 -1.4157,6.4847 -3.6969,10.132 -1.4742,11.382 5.67,3.187 8.2687,6.1022 7.3687,7.6705 1.676,3.2183 5.8563,2.5965 12.278,1.5646 6.4221,1.0319 10.604,1.6536 12.281,-1.5646 -0.90125,-1.5683 1.6986,-4.4835 7.3675,-7.6705 2.2238,-1.2496 -0.0573,-4.8972 -1.4742,-11.382 -3.5381,-16.205 -1.0194,-28.797 -0.67445,-42.031 0.0919,-3.5129 -0.54194,-7.0066 -4.1767,-4.7493 -7.1562,4.445 -19.404,4.4955 -26.643,0 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path46" + d="m 465.15,137.91 -1.0099,0.0265 0,0 -0.007,-0.33673 -0.002,-0.33434 0.004,-0.33434 0.009,-0.33193 0.0156,-0.32832 0.0216,-0.32472 0.0298,-0.3187 0.0357,-0.31269 0.0454,-0.30667 0.0537,-0.29706 0.0633,-0.29104 0.074,-0.27901 0.0836,-0.2718 0.0979,-0.26098 0.11101,-0.24654 0.12535,-0.23571 0.14205,-0.22131 0.15995,-0.20565 0.17905,-0.18641 0.20055,-0.16716 0.22083,-0.14071 0.23874,-0.11184 0.25545,-0.0806 0.27097,-0.0493 0.28052,-0.0145 0.29007,0.0181 0.29842,0.0505 0.30798,0.0818 0.31871,0.11306 0.32946,0.14431 0.3414,0.17679 0.35333,0.20686 -0.53,0.86831 -0.31036,-0.1828 -0.28888,-0.14793 -0.26739,-0.11787 -0.24471,-0.0865 -0.2244,-0.0602 -0.20055,-0.0337 -0.18025,-0.0108 -0.16115,0.007 -0.14205,0.0253 -0.1313,0.042 -0.11937,0.0565 -0.11101,0.0709 -0.10743,0.0902 -0.10267,0.10704 -0.10025,0.12867 -0.0943,0.14674 -0.0896,0.16836 -0.0823,0.18641 -0.0764,0.20325 -0.0692,0.22129 -0.0621,0.23813 -0.0561,0.25015 -0.0466,0.26338 -0.0406,0.2754 -0.0335,0.28383 -0.0275,0.29464 -0.0191,0.30067 -0.0156,0.30907 -0.007,0.3127 -0.004,0.3175 0.002,0.3199 0.005,0.32231 0,0 z m -0.68518,42.154 -0.98838,-0.21887 0.31275,-1.4985 0.27813,-1.4793 0.24709,-1.4588 0.21487,-1.4408 0.18622,-1.4227 0.15875,-1.4059 0.13132,-1.3891 0.10742,-1.3746 0.0848,-1.359 0.0621,-1.3458 0.043,-1.3325 0.0215,-1.3205 0.006,-1.3085 -0.009,-1.2977 -0.0238,-1.2892 -0.0371,-1.2808 -0.0489,-1.2712 -0.0585,-1.264 -0.0668,-1.258 -0.074,-1.252 -0.0788,-1.2459 -0.0823,-1.2435 -0.0859,-1.2387 -0.0859,-1.2375 -0.0859,-1.2351 -0.0823,-1.2339 -0.08,-1.2327 -0.074,-1.2351 -0.068,-1.2351 -0.0598,-1.2375 -0.0502,-1.2411 -0.0382,-1.2435 1.0099,-0.0265 0.0382,1.2339 0.0502,1.2315 0.0597,1.2303 0.068,1.2279 0.074,1.2303 0.0799,1.2303 0.0823,1.2315 0.0859,1.2327 0.0859,1.2375 0.0859,1.2411 0.0823,1.246 0.0788,1.2508 0.074,1.2568 0.0668,1.2652 0.0585,1.2712 0.049,1.2808 0.037,1.2904 0.0263,1.2989 0.009,1.3097 -0.006,1.3229 -0.0238,1.335 -0.0429,1.347 -0.0621,1.3602 -0.0848,1.3758 -0.10981,1.3915 -0.13371,1.4059 -0.16113,1.4251 -0.18862,1.4396 -0.21725,1.46 -0.24948,1.478 -0.2829,1.4985 -0.31514,1.5177 z m -1.7225,10.828 -0.49181,0.88996 -0.2435,-0.15395 -0.21726,-0.17799 -0.19099,-0.19963 -0.15996,-0.22008 -0.13131,-0.23693 -0.10147,-0.25375 -0.0716,-0.26219 -0.0454,-0.27059 -0.0238,-0.27902 -0.002,-0.29104 0.0167,-0.29827 0.0323,-0.30666 0.0466,-0.3187 0.0621,-0.33073 0.0728,-0.34156 0.0848,-0.35718 0.0967,-0.36682 0.10384,-0.38123 0.11221,-0.39447 0.12056,-0.4101 0.12773,-0.42455 0.13131,-0.43776 0.13488,-0.45219 0.14085,-0.47024 0.14324,-0.48105 0.14326,-0.49911 0.14443,-0.51473 0.14443,-0.52916 0.14324,-0.54481 0.14086,-0.56283 0.13847,-0.57608 0.1325,-0.59289 0.98839,0.21887 -0.13728,0.60735 -0.14085,0.58808 -0.14324,0.57247 -0.14565,0.55442 -0.14681,0.53879 -0.14683,0.52194 -0.14563,0.50391 -0.14324,0.48829 -0.14086,0.47023 -0.13728,0.4546 -0.1313,0.43776 -0.12534,0.41973 -0.11817,0.40289 -0.10983,0.38725 -0.10147,0.36922 -0.0919,0.35237 -0.08,0.33313 -0.068,0.3175 -0.0549,0.29706 -0.0417,0.28022 -0.0275,0.26096 -0.0143,0.24053 0.002,0.21648 0.0167,0.19964 0.031,0.17921 0.0429,0.15873 0.0537,0.13831 0.0692,0.12388 0.0836,0.11425 0.10025,0.10584 0.12175,0.0985 0.14802,0.0937 z m 7.5704,7.8786 -0.89528,0.47385 0.009,-0.49189 0.0454,-0.0925 0.0323,-0.095 0.0204,-0.10342 0.008,-0.11186 -0.005,-0.12387 -0.0204,-0.1383 -0.0358,-0.14914 -0.0537,-0.16114 -0.0728,-0.17319 -0.0931,-0.184 -0.11222,-0.19484 -0.1325,-0.20445 -0.15278,-0.21166 -0.17191,-0.21888 -0.19218,-0.2261 -0.21366,-0.23331 -0.23278,-0.24053 -0.25187,-0.24534 -0.27216,-0.24896 -0.29246,-0.25736 -0.30917,-0.25978 -0.33064,-0.26458 -0.34976,-0.26939 -0.36885,-0.2718 -0.38675,-0.27661 -0.40586,-0.27902 -0.42495,-0.28382 -0.44287,-0.28503 -0.46197,-0.28743 -0.48224,-0.29104 -0.49777,-0.29345 -0.51688,-0.29465 0.49181,-0.88996 0.5288,0.30186 0.50971,0.29826 0.49181,0.29827 0.47389,0.29464 0.45719,0.29465 0.43689,0.29103 0.42019,0.28865 0.40107,0.28622 0.38317,0.28383 0.36409,0.28142 0.34737,0.27661 0.32826,0.27661 0.30917,0.26939 0.29125,0.26819 0.27336,0.267 0.25187,0.25976 0.23516,0.25738 0.21845,0.25496 0.19816,0.25255 0.17905,0.25015 0.15876,0.24535 0.14086,0.24292 0.12175,0.24174 0.10148,0.24053 0.08,0.24052 0.0573,0.23814 0.0347,0.23692 0.009,0.23692 -0.0179,0.23452 -0.0466,0.2309 -0.0752,0.22008 -0.10265,0.21048 0.009,-0.49189 z m -0.89528,0.47385 -0.13011,-0.24895 0.13967,-0.24294 -0.009,0.49189 z m 12.806,0.82501 -0.15995,1.0054 0.15995,0 -0.59684,0.095 -0.58253,0.0925 -0.57059,0.0902 -0.55865,0.0842 -0.54432,0.0795 -0.53358,0.0758 -0.52046,0.0673 -0.50613,0.0625 -0.49657,0.0541 -0.48225,0.0458 -0.46912,0.0385 -0.45839,0.0277 -0.44525,0.0181 -0.4333,0.007 -0.42019,-0.005 -0.40943,-0.0157 -0.39631,-0.03 -0.38557,-0.0432 -0.37362,-0.059 -0.36169,-0.0746 -0.34856,-0.0914 -0.33781,-0.11065 -0.32349,-0.12747 -0.31275,-0.14793 -0.29962,-0.16958 -0.2829,-0.19122 -0.2674,-0.21167 -0.25307,-0.23451 -0.23514,-0.25617 -0.21845,-0.27901 -0.19935,-0.29946 -0.18264,-0.32231 0.89528,-0.47385 0.14683,0.25978 0.15875,0.23692 0.16832,0.21647 0.18024,0.19604 0.19338,0.17919 0.2077,0.16357 0.21846,0.14792 0.23276,0.13109 0.24829,0.11906 0.26381,0.10343 0.28052,0.0914 0.29604,0.077 0.31155,0.0649 0.32827,0.0517 0.34497,0.0385 0.3605,0.0277 0.37602,0.0155 0.39391,0.002 0.40705,-0.005 0.42138,-0.0181 0.43927,-0.0277 0.45242,-0.036 0.46793,-0.0433 0.48225,-0.0542 0.49658,-0.0602 0.5109,-0.0673 0.52642,-0.0734 0.53955,-0.0794 0.55387,-0.0842 0.56581,-0.0878 0.58253,-0.0925 0.59446,-0.095 0.15995,0 z m -0.15995,0 0.0799,-0.0132 0.08,0.0132 -0.15995,0 z m 11.923,-0.80697 0.87617,-0.50993 0.009,0.49189 -0.18263,0.32231 -0.19935,0.29945 -0.21845,0.27902 -0.23634,0.25616 -0.25068,0.23332 -0.26858,0.21286 -0.2853,0.19123 -0.29842,0.16836 -0.31155,0.14914 -0.32469,0.12749 -0.33781,0.11064 -0.34856,0.0914 -0.36169,0.0746 -0.37363,0.059 -0.38556,0.0433 -0.3963,0.03 -0.40944,0.0155 -0.42019,0.005 -0.43331,-0.007 -0.44644,-0.0181 -0.45718,-0.0277 -0.47032,-0.0385 -0.48226,-0.0458 -0.49538,-0.0541 -0.50732,-0.0625 -0.52046,-0.0674 -0.53237,-0.0758 -0.54553,-0.0794 -0.55865,-0.0842 -0.57059,-0.0902 -0.58252,-0.0925 -0.59685,-0.095 0.15996,-1.0054 0.59446,0.095 0.58253,0.0925 0.5658,0.0878 0.55387,0.0842 0.54076,0.0794 0.52521,0.0734 0.51091,0.0673 0.49778,0.0602 0.48105,0.0541 0.46793,0.0432 0.4536,0.036 0.43809,0.0277 0.42257,0.0181 0.40705,0.005 0.39392,-0.002 0.376,-0.0156 0.36051,-0.0277 0.34499,-0.0385 0.32826,-0.0517 0.31155,-0.0649 0.29604,-0.077 0.28052,-0.0914 0.26499,-0.10344 0.2471,-0.11785 0.23397,-0.1323 0.21844,-0.14792 0.20651,-0.16236 0.19338,-0.1804 0.18144,-0.19603 0.1683,-0.21648 0.15878,-0.23691 0.14682,-0.25978 0.009,0.49188 z m 0.87617,-0.50993 0.13967,0.24294 -0.13011,0.24895 -0.009,-0.49189 z m 6.6835,-7.8605 0.4918,0.88996 -0.51685,0.29465 -0.49778,0.29345 -0.48226,0.29103 -0.46076,0.28744 -0.44286,0.28503 -0.42615,0.28382 -0.40586,0.27901 -0.38675,0.27662 -0.36886,0.27179 -0.34855,0.26939 -0.33067,0.26459 -0.31154,0.26098 -0.29126,0.25495 -0.27097,0.25016 -0.25307,0.24655 -0.23277,0.23931 -0.21248,0.23212 -0.19219,0.2261 -0.17188,0.22009 -0.15399,0.21286 -0.1325,0.20325 -0.1122,0.19362 -0.092,0.18401 -0.0728,0.17439 -0.0537,0.16236 -0.0371,0.14793 -0.0191,0.13709 -0.005,0.12508 0.008,0.11185 0.0203,0.10342 0.0323,0.095 0.0454,0.0925 -0.87617,0.50993 -0.10266,-0.21048 -0.0752,-0.22008 -0.0466,-0.23091 -0.0179,-0.23451 0.009,-0.23572 0.0335,-0.23812 0.0585,-0.23934 0.08,-0.23933 0.10148,-0.23932 0.12055,-0.24173 0.14086,-0.24414 0.16115,-0.24655 0.17786,-0.24894 0.19815,-0.25136 0.21605,-0.25496 0.23636,-0.25857 0.25426,-0.26098 0.27217,-0.26578 0.29006,-0.26698 0.31036,-0.2718 0.32827,-0.27541 0.34497,-0.27661 0.36528,-0.28143 0.38318,-0.28382 0.40108,-0.28622 0.42017,-0.28865 0.43809,-0.29103 0.4548,-0.29465 0.47509,-0.29465 0.4918,-0.29826 0.50971,-0.29826 0.52881,-0.30187 z m -1.7225,-10.828 0.98838,-0.21887 0.13251,0.59289 0.13847,0.57608 0.14085,0.56284 0.14325,0.54481 0.14443,0.52915 0.14443,0.51473 0.14444,0.4979 0.14326,0.48347 0.13966,0.46903 0.13607,0.4522 0.1313,0.43776 0.12774,0.42455 0.12055,0.41009 0.11222,0.39448 0.10384,0.38123 0.0955,0.36801 0.0848,0.35479 0.074,0.34154 0.0621,0.33194 0.0466,0.31871 0.0323,0.30787 0.0156,0.29826 -0.002,0.28863 -0.0226,0.27901 -0.0454,0.2718 -0.0728,0.26338 -0.10147,0.25256 -0.13011,0.23693 -0.16235,0.22128 -0.18979,0.19844 -0.21724,0.17799 -0.24353,0.15394 -0.4918,-0.88997 0.14803,-0.0937 0.12176,-0.0985 0.10147,-0.10704 0.0836,-0.11305 0.068,-0.12387 0.0561,-0.13951 0.0417,-0.15754 0.031,-0.178 0.0156,-0.19965 0.002,-0.21887 -0.0131,-0.24053 -0.0275,-0.25977 -0.0417,-0.28022 -0.0548,-0.29585 -0.0692,-0.31751 -0.08,-0.33553 -0.0908,-0.35118 -0.10148,-0.36921 -0.10981,-0.38725 -0.11818,-0.40289 -0.12534,-0.41973 -0.13131,-0.43776 -0.13847,-0.4546 -0.13966,-0.47144 -0.14324,-0.48587 -0.14683,-0.50512 -0.14682,-0.52194 -0.14683,-0.53878 -0.14563,-0.55443 -0.14324,-0.57247 -0.14086,-0.58808 -0.13727,-0.60735 z m -0.68517,-42.154 1.0099,0.0265 -0.0382,1.2435 -0.0501,1.2411 -0.0597,1.2375 -0.0668,1.2351 -0.0752,1.2351 -0.0788,1.2327 -0.0836,1.2339 -0.0848,1.2351 -0.0871,1.2375 -0.0847,1.2387 -0.0823,1.2435 -0.08,1.2459 -0.074,1.252 -0.0668,1.258 -0.0585,1.264 -0.0477,1.2712 -0.0382,1.2808 -0.0226,1.288 -0.009,1.2989 0.005,1.3085 0.0226,1.3205 0.0417,1.3325 0.0633,1.3458 0.0847,1.359 0.10625,1.3746 0.1313,1.3891 0.15876,1.4059 0.18621,1.4227 0.21488,1.4408 0.24709,1.4588 0.27813,1.4793 0.31274,1.4985 -0.98837,0.21887 -0.31513,-1.5177 -0.28292,-1.4985 -0.24947,-1.478 -0.21726,-1.46 -0.18861,-1.4396 -0.16114,-1.4251 -0.1337,-1.4059 -0.10863,-1.3915 -0.0848,-1.3758 -0.0633,-1.3602 -0.0417,-1.347 -0.025,-1.335 -0.005,-1.3229 0.009,-1.3085 0.025,-1.3001 0.0382,-1.2904 0.0477,-1.2808 0.0585,-1.2712 0.0669,-1.2652 0.074,-1.2568 0.0799,-1.2508 0.0823,-1.246 0.0848,-1.2411 0.0871,-1.2375 0.0848,-1.2327 0.0836,-1.2315 0.0788,-1.2303 0.0752,-1.2303 0.0668,-1.2279 0.0598,-1.2303 0.0502,-1.2315 0.0382,-1.2339 z m -3.4068,-4.3019 -0.53,-0.8683 0.35333,-0.20686 0.3414,-0.1768 0.32945,-0.14431 0.31873,-0.11305 0.30676,-0.0818 0.29963,-0.0505 0.29007,-0.0181 0.28051,0.0144 0.27096,0.0493 0.25547,0.0806 0.23754,0.11184 0.22202,0.14072 0.19935,0.16716 0.18025,0.18641 0.15995,0.20686 0.14086,0.22008 0.12534,0.23572 0.11101,0.24654 0.0967,0.25978 0.0859,0.273 0.0728,0.28021 0.0633,0.28984 0.0537,0.29707 0.0454,0.30666 0.0358,0.31269 0.0298,0.31871 0.0216,0.32471 0.0156,0.32833 0.009,0.33193 0.004,0.33434 -0.002,0.33433 -0.007,0.33674 -1.0099,-0.0265 0.005,-0.32232 0.002,-0.3199 -0.004,-0.3175 -0.007,-0.3127 -0.0156,-0.30907 -0.0191,-0.30067 -0.0275,-0.29464 -0.0335,-0.28383 -0.0406,-0.2754 -0.0466,-0.26338 -0.0561,-0.25136 -0.0609,-0.23692 -0.0692,-0.22008 -0.0777,-0.20446 -0.0823,-0.18641 -0.0896,-0.16836 -0.0955,-0.14793 -0.0979,-0.12749 -0.10386,-0.10703 -0.10623,-0.0902 -0.11221,-0.0709 -0.12057,-0.0565 -0.12892,-0.042 -0.14204,-0.0253 -0.16115,-0.007 -0.18024,0.0108 -0.20175,0.0337 -0.22322,0.0602 -0.2447,0.0866 -0.2674,0.11787 -0.28887,0.14793 -0.31035,0.1828 z m -27.173,0 0.53001,-0.8683 0.67444,0.39686 0.6995,0.37163 0.72696,0.34516 0.75083,0.3211 0.77471,0.29465 0.795,0.2694 0.8141,0.24413 0.82962,0.21768 0.84633,0.19243 0.85827,0.16716 0.869,0.14071 0.87858,0.11426 0.8869,0.0902 0.8917,0.0625 0.89526,0.0385 0.89528,0.0108 0.89646,-0.0132 0.89528,-0.0409 0.89049,-0.0649 0.88454,-0.0914 0.87616,-0.11666 0.86782,-0.14191 0.85468,-0.16717 0.84156,-0.19363 0.82723,-0.21888 0.80813,-0.24413 0.79023,-0.2694 0.76754,-0.29344 0.74607,-0.31871 0.72099,-0.34275 0.69473,-0.36681 0.66489,-0.39326 0.53,0.8683 -0.70548,0.41491 -0.73293,0.38847 -0.75919,0.36199 -0.78186,0.33314 -0.80336,0.30788 -0.82364,0.28142 -0.84395,0.25375 -0.85828,0.2261 -0.87258,0.20084 -0.88811,0.17438 -0.89647,0.14673 -0.90721,0.12147 -0.91318,0.0938 -0.91914,0.0673 -0.92391,0.041 -0.92513,0.0156 -0.9263,-0.0132 -0.92392,-0.0385 -0.92033,-0.0649 -0.91557,-0.0925 -0.9096,-0.11906 -0.90005,-0.14552 -0.8893,-0.17199 -0.87736,-0.19963 -0.86305,-0.22731 -0.84752,-0.25375 -0.82843,-0.28142 -0.81053,-0.30908 -0.78902,-0.33555 -0.76516,-0.36439 -0.74009,-0.39327 -0.71264,-0.41853 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + </g> + <g + id="g3987"> + <path + id="path49" + d="m 363.03,212.12 c -1.8968,-4.1431 -0.36646,-9.9267 0.25306,-11.235 0.31394,-0.66267 -0.61595,-2.1179 -1.0194,-2.6879 -12.907,-18.281 -13.128,-19.903 -4.2305,-26.753 8.0288,-6.1804 26.161,-12.19 39.133,-16.235 2.7013,-2.0625 4.4203,-4.8671 6.8757,-7.1762 -24.928,1.7932 -51.946,11.919 -65.572,23.754 -7.2004,6.2538 1.5554,18.889 12.28,38.106 6.631,4.7842 9.7418,7.0102 12.28,2.2273 h 0.001 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path51" + d="m 362.83,200.67 0.91198,0.43776 0,0 -0.0513,0.11666 -0.0585,0.14551 -0.0657,0.17319 -0.0668,0.19603 -0.0717,0.22008 -0.0728,0.24053 -0.074,0.26217 -0.074,0.27782 -0.0716,0.29585 -0.0704,0.3139 -0.0692,0.32833 -0.0645,0.34154 -0.0621,0.35238 -0.0561,0.36561 -0.0513,0.37522 -0.0442,0.38365 -0.0357,0.39206 -0.0286,0.39928 -0.0216,0.40409 -0.009,0.4089 -0.001,0.4113 0.0107,0.41372 0.0227,0.41491 0.0346,0.41372 0.0466,0.41251 0.0621,0.40889 0.0764,0.4053 0.0908,0.40048 0.10625,0.39447 0.12295,0.38725 0.13966,0.37763 0.15876,0.37041 -0.91915,0.42574 -0.17785,-0.41612 -0.15637,-0.42573 -0.13728,-0.43055 -0.11817,-0.43535 -0.10025,-0.43897 -0.0836,-0.44378 -0.0668,-0.44499 -0.0514,-0.44617 -0.0369,-0.44499 -0.0226,-0.44377 -0.0131,-0.44257 10e-4,-0.43777 0.0119,-0.43296 0.0216,-0.42814 0.031,-0.42093 0.0382,-0.4137 0.0466,-0.40531 0.0537,-0.39447 0.0585,-0.38483 0.0645,-0.37162 0.0692,-0.3584 0.0717,-0.34516 0.0752,-0.32832 0.0764,-0.3151 0.0788,-0.29705 0.0788,-0.27661 0.0777,-0.25977 0.0764,-0.23933 0.0764,-0.21768 0.0728,-0.19724 0.0704,-0.17438 0.0704,-0.15513 0,0 z m -0.97525,-2.1732 0.82365,-0.5917 0.0417,0.0601 0.0442,0.0637 0.0454,0.0673 0.0502,0.0734 0.0502,0.0782 0.0513,0.0782 0.0561,0.0878 0.0536,0.089 0.0537,0.0878 0.0561,0.0938 0.0561,0.0986 0.0549,0.0974 0.0536,0.0997 0.0537,0.10344 0.0525,0.10463 0.0489,0.10222 0.0501,0.10585 0.0477,0.11064 0.0429,0.10943 0.0406,0.10703 0.0369,0.10704 0.0357,0.11064 0.031,0.11426 0.025,0.10943 0.0202,0.11305 0.0156,0.11546 0.007,0.11425 0,0.11786 -0.009,0.12267 -0.0204,0.11786 -0.0323,0.11906 -0.0502,0.12268 -0.91197,-0.43777 0.002,-0.007 0.004,-0.0181 0.006,-0.0265 0.002,-0.0313 0,-0.0409 -0.005,-0.0517 -0.006,-0.0577 -0.0131,-0.0625 -0.0156,-0.071 -0.0191,-0.0709 -0.0238,-0.077 -0.0298,-0.083 -0.031,-0.0854 -0.0357,-0.0854 -0.0357,-0.0842 -0.0405,-0.0865 -0.0442,-0.0925 -0.043,-0.0878 -0.0466,-0.0865 -0.049,-0.0902 -0.0477,-0.0878 -0.049,-0.0842 -0.0489,-0.0818 -0.0514,-0.0854 -0.049,-0.0795 -0.0466,-0.0734 -0.0489,-0.0758 -0.0454,-0.0685 -0.0454,-0.0662 -0.043,-0.0649 -0.0394,-0.0565 -0.037,-0.053 z m -4.1254,-27.454 0.61357,0.81059 -0.80217,0.62417 -0.74725,0.59531 -0.69115,0.57126 -0.63147,0.55082 -0.57416,0.53278 -0.51329,0.51713 -0.4548,0.50633 -0.39272,0.49909 -0.33424,0.49308 -0.27455,0.49189 -0.21726,0.49308 -0.15875,0.50391 -0.10505,0.51714 -0.049,0.53879 0.009,0.56766 0.0668,0.60251 0.12892,0.64223 0.191,0.6855 0.25545,0.73242 0.32229,0.78413 0.39033,0.83704 0.4572,0.89476 0.5276,0.95491 0.59565,1.0186 0.6649,1.086 0.73771,1.1594 0.80693,1.2327 0.87975,1.3097 0.95257,1.3951 1.0242,1.4805 1.0982,1.5695 1.1722,1.6645 -0.82365,0.5917 -1.1746,-1.6669 -1.1006,-1.5743 -1.0266,-1.4853 -0.95734,-1.3999 -0.88453,-1.3193 -0.81409,-1.2423 -0.74487,-1.1714 -0.67682,-1.1028 -0.60759,-1.0379 -0.53956,-0.98135 -0.4739,-0.92604 -0.40705,-0.87553 -0.34139,-0.82983 -0.27695,-0.79015 -0.21008,-0.75285 -0.14324,-0.724 -0.0789,-0.69393 -0.009,-0.67347 0.0585,-0.64704 0.12654,-0.62778 0.19217,-0.60734 0.25783,-0.58929 0.31992,-0.57366 0.3796,-0.56044 0.4357,-0.55202 0.49299,-0.54961 0.54672,-0.55081 0.60042,-0.55683 0.65296,-0.57006 0.70786,-0.58568 0.75919,-0.60494 0.81171,-0.6314 z m 39.134,-16.236 0.61116,0.81299 -0.15637,0.0806 -1.2295,0.38364 -1.257,0.39568 -1.282,0.4077 -1.3035,0.41732 -1.3226,0.42574 -1.3381,0.43776 -1.3513,0.44619 -1.3632,0.4558 -1.3692,0.46422 -1.3751,0.47384 -1.3775,0.48107 -1.3763,0.48827 -1.3728,0.4967 -1.3656,0.5027 -1.3584,0.51113 -1.3453,0.51594 -1.3298,0.52436 -1.3142,0.52915 -1.2916,0.53278 -1.2701,0.53879 -1.2438,0.54479 -1.214,0.54721 -1.183,0.55322 -1.1483,0.55562 -1.1113,0.55923 -1.0696,0.56165 -1.0278,0.56404 -0.98004,0.56524 -0.93227,0.56885 -0.87975,0.56646 -0.82484,0.57005 -0.76755,0.56766 -0.61357,-0.8106 0.79621,-0.5893 0.85109,-0.58688 0.90364,-0.58329 0.95376,-0.58088 1.0015,-0.57728 1.0445,-0.57366 1.0863,-0.56885 1.1256,-0.56645 1.1603,-0.56284 1.1949,-0.55802 1.2259,-0.55442 1.2534,-0.54721 1.2796,-0.54359 1.3011,-0.53759 1.3214,-0.53157 1.3393,-0.52677 1.3525,-0.51834 1.3632,-0.51353 1.3728,-0.5051 1.3775,-0.49912 1.3811,-0.49068 1.3823,-0.48345 1.3799,-0.47386 1.3739,-0.46663 1.3656,-0.45579 1.356,-0.44858 1.3405,-0.43778 1.325,-0.42814 1.3059,-0.41732 1.2844,-0.40769 1.2593,-0.39569 1.2319,-0.38604 -0.15637,0.0806 z m 0.61116,0.81299 -0.0704,0.0541 -0.0859,0.0265 0.15637,-0.0806 z m 6.6059,-7.074 -0.0717,-1.0174 0.38079,0.88155 -0.22203,0.21165 -0.21963,0.21648 -0.21487,0.21768 -0.21367,0.22129 -0.21009,0.22249 -0.20651,0.22611 -0.20771,0.22728 -0.20411,0.22851 -0.20175,0.23092 -0.20292,0.23211 -0.20054,0.23211 -0.20053,0.23572 -0.20056,0.23331 -0.20053,0.23452 -0.20054,0.23692 -0.20294,0.23452 -0.20292,0.23571 -0.20531,0.23452 -0.20532,0.23211 -0.2089,0.23452 -0.21247,0.23092 -0.21249,0.2309 -0.21724,0.2285 -0.21964,0.2261 -0.22323,0.22489 -0.22799,0.2225 -0.23277,0.21888 -0.23635,0.21648 -0.24233,0.21406 -0.24709,0.20926 -0.25307,0.20566 -0.25903,0.20325 -0.61117,-0.81299 0.24232,-0.18882 0.23635,-0.19363 0.23278,-0.19723 0.22799,-0.19964 0.22441,-0.20445 0.22084,-0.20926 0.21606,-0.21046 0.21367,-0.21528 0.21247,-0.21888 0.20771,-0.21888 0.20771,-0.2237 0.20531,-0.22368 0.20173,-0.22731 0.20294,-0.22971 0.20053,-0.2297 0.20054,-0.23332 0.20055,-0.23211 0.20054,-0.23451 0.20053,-0.23452 0.20055,-0.23572 0.20293,-0.23572 0.20292,-0.23692 0.20532,-0.23451 0.2065,-0.23573 0.21129,-0.23571 0.21009,-0.23212 0.21367,-0.23331 0.21964,-0.23211 0.22084,-0.2285 0.2244,-0.2273 0.22921,-0.2261 0.23395,-0.2237 0.38079,0.88154 z m -0.0717,-1.0174 1.4277,-0.10223 -1.0469,0.98378 -0.3808,-0.88155 z m -65.206,24.648 -0.6613,-0.7721 1.3298,-1.1148 1.405,-1.1028 1.4766,-1.0896 1.5446,-1.0752 1.6127,-1.0583 1.6771,-1.0427 1.7368,-1.0247 1.7953,-1.0054 1.8514,-0.98617 1.9051,-0.96332 1.9529,-0.94169 2.0006,-0.91761 2.0448,-0.89357 2.0866,-0.86711 2.126,-0.84065 2.1594,-0.81059 2.1952,-0.78172 2.225,-0.75285 2.2501,-0.71919 2.2776,-0.68552 2.2991,-0.65183 2.3158,-0.61455 2.3337,-0.57968 2.3468,-0.5424 2.3576,-0.5015 2.3647,-0.46182 2.3695,-0.41973 2.3731,-0.37643 2.3707,-0.33193 2.3683,-0.28863 2.3611,-0.24053 2.354,-0.19363 0.0716,1.0174 -2.3325,0.19122 -2.342,0.23813 -2.3492,0.28623 -2.354,0.32953 -2.354,0.37403 -2.3528,0.41732 -2.348,0.457 -2.3408,0.49909 -2.3301,0.53759 -2.317,0.57487 -2.3015,0.61215 -2.2823,0.64703 -2.2609,0.68068 -2.2358,0.71439 -2.2083,0.74564 -2.1785,0.77691 -2.1451,0.80577 -2.1092,0.83344 -2.0699,0.85989 -2.0281,0.88636 -1.9839,0.91041 -1.9362,0.93204 -1.886,0.95612 -1.8323,0.97414 -1.7762,0.9958 -1.7177,1.0126 -1.6556,1.0307 -1.5912,1.0439 -1.5232,1.0583 -1.4527,1.0728 -1.3787,1.0836 -1.3035,1.0932 z m 12.244,37.306 -0.5897,0.82742 -0.14562,-0.16355 -0.99913,-1.7811 -0.9836,-1.7426 -0.96929,-1.7042 -0.94779,-1.6669 -0.92869,-1.6284 -0.90244,-1.5911 -0.87736,-1.5526 -0.84872,-1.5165 -0.81529,-1.4768 -0.78307,-1.4408 -0.74486,-1.4035 -0.70547,-1.3662 -0.66491,-1.3301 -0.61952,-1.2916 -0.57416,-1.2556 -0.52403,-1.2207 -0.47033,-1.1834 -0.41778,-1.1473 -0.35931,-1.1136 -0.3008,-1.08 -0.23517,-1.0439 -0.1707,-1.0102 -0.10147,-0.97895 -0.0287,-0.94648 0.0502,-0.91162 0.12891,-0.87913 0.21248,-0.84427 0.29962,-0.80938 0.39033,-0.76849 0.48107,-0.73 0.57416,-0.68431 0.66609,-0.64222 0.6613,0.7721 -0.59208,0.56765 -0.50015,0.60013 -0.41899,0.63139 -0.33543,0.66506 -0.26141,0.70115 -0.18622,0.74083 -0.11459,0.78052 -0.043,0.82261 0.0263,0.86471 0.0942,0.9092 0.15875,0.9501 0.22561,0.99338 0.2865,1.0343 0.34736,1.0752 0.40585,1.116 0.46078,1.157 0.51447,1.1966 0.56462,1.2363 0.61237,1.2772 0.65772,1.3157 0.7007,1.3542 0.74009,1.3939 0.7783,1.4336 0.8129,1.472 0.84633,1.5117 0.87498,1.5502 0.90243,1.5887 0.92632,1.6284 0.95017,1.6669 0.96929,1.7066 0.98599,1.745 0.99912,1.7835 -0.14562,-0.16356 z m -0.5897,0.82742 -0.0908,-0.0661 -0.0549,-0.0974 0.14563,0.16355 z m 12.574,1.3037 0,1.0198 0.44645,-0.2694 -0.25187,0.4486 -0.25903,0.41131 -0.26619,0.37402 -0.27575,0.33674 -0.28529,0.30067 -0.29962,0.26578 -0.31036,0.22731 -0.3235,0.19122 -0.33781,0.15153 -0.34617,0.11184 -0.35573,0.0735 -0.36407,0.0348 -0.37124,-0.001 -0.376,-0.036 -0.3796,-0.0685 -0.38796,-0.0985 -0.39512,-0.12628 -0.40347,-0.15514 -0.41182,-0.18039 -0.42376,-0.20566 -0.4345,-0.2297 -0.44525,-0.25256 -0.45958,-0.27541 -0.47388,-0.29585 -0.48824,-0.31871 -0.50373,-0.33554 -0.52165,-0.35718 -0.53597,-0.37523 -0.55506,-0.39206 -0.57298,-0.4101 -0.59327,-0.42454 -0.61236,-0.44258 0.58969,-0.82742 0.60997,0.44018 0.59088,0.42453 0.57059,0.4077 0.55029,0.38966 0.5312,0.37042 0.51209,0.34997 0.49419,0.33072 0.47629,0.30908 0.45718,0.28624 0.44047,0.26338 0.42377,0.24053 0.40586,0.21526 0.39033,0.18883 0.37124,0.16355 0.35572,0.1359 0.33782,0.10944 0.32349,0.0818 0.30559,0.0541 0.29006,0.0288 0.27336,0.001 0.25903,-0.0253 0.25068,-0.0517 0.24113,-0.0782 0.23516,-0.10583 0.23277,-0.13589 0.23156,-0.16958 0.23039,-0.20564 0.23039,-0.24295 0.23038,-0.28142 0.23038,-0.32351 0.22801,-0.36321 0.22799,-0.40768 0.44643,-0.2694 z m -0.44643,0.26939 0.14324,-0.26939 0.30319,0 -0.44643,0.26939 z m 0.44764,0.75045 -10e-4,0 0,-1.0198 10e-4,0 0.45957,0.29704 -0.45957,0.72279 z m 0.45957,-0.7228 0.33065,0.7228 -0.79022,0 0.45957,-0.7228 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path53" + d="m 359.11,213.58 c -0.56223,-1.6452 -0.96689,-3.2315 -1.245,-4.7192 -0.54312,-2.7096 -0.31036,-5.5166 0.59089,-8.1516 -2.9747,-4.2093 -6.3123,-8.783 -8.7211,-13.328 -1.7201,-3.2448 -3.0487,-6.8575 -2.0376,-10.558 1.0791,-3.9471 4.4943,-6.6362 7.58,-9.0115 3.6957,-2.8455 8.6244,-5.3374 13.613,-7.466 11.172,-4.6338 20.054,-6.902 26.563,-7.1077 l -4.1314,3.8353 c -12.112,3.917 -26.406,9.0836 -33.283,14.379 -8.8978,6.8503 -8.677,8.4715 4.2305,26.753 0.40227,0.57005 1.3334,2.0253 1.0194,2.6879 -0.61954,1.3085 -1.7619,7.341 0.13608,11.483 -1.1149,2.101 -2.73,1.003 -4.3164,1.2038 h 0.001 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path55" + d="m 357.37,208.96 0.99077,-0.20204 10e-4,0.007 0.0263,0.13712 0.0275,0.13829 0.0263,0.13951 0.0286,0.13831 0.0286,0.13951 0.0298,0.14071 0.031,0.1395 0.031,0.14312 0.0323,0.14071 0.0323,0.14312 0.0346,0.14191 0.0346,0.14432 0.0346,0.14311 0.0369,0.14552 0.0358,0.14551 0.0382,0.14433 0.0382,0.14551 0.0382,0.14552 0.0417,0.14673 0.0405,0.14792 0.0417,0.14793 0.043,0.14792 0.043,0.14793 0.0442,0.14793 0.0466,0.15033 0.0454,0.14913 0.0466,0.14914 0.049,0.15153 0.0489,0.15274 0.049,0.14912 0.0502,0.15153 0.0525,0.15153 -0.95734,0.33194 -0.0525,-0.15635 -0.0525,-0.15634 -0.0513,-0.15634 -0.0489,-0.15514 -0.049,-0.15395 -0.0489,-0.15393 -0.0478,-0.15395 -0.0466,-0.15273 -0.0466,-0.15514 -0.0454,-0.15273 -0.0429,-0.15274 -0.0442,-0.15274 -0.0405,-0.15033 -0.0417,-0.15154 -0.0406,-0.15033 -0.0406,-0.15032 -0.0382,-0.15154 -0.0382,-0.14794 -0.0369,-0.14792 -0.037,-0.15032 -0.0346,-0.14673 -0.0346,-0.14673 -0.0347,-0.14793 -0.0323,-0.14551 -0.0335,-0.14552 -0.031,-0.14673 -0.0298,-0.14311 -0.031,-0.14432 -0.0286,-0.14552 -0.0287,-0.14191 -0.0275,-0.14311 -0.0263,-0.14191 10e-4,0.007 z m 0.99077,-0.20204 10e-4,0.007 -0.004,-0.0193 0.002,0.012 z m -0.31634,-7.7547 0.82366,-0.59171 0.0656,0.46183 -0.0788,0.24052 -0.0777,0.24053 -0.0728,0.24174 -0.068,0.24293 -0.0644,0.24293 -0.0597,0.24294 -0.0573,0.24534 -0.0525,0.24534 -0.049,0.24654 -0.0454,0.24535 -0.0406,0.24654 -0.0369,0.24774 -0.0335,0.24775 -0.0286,0.24654 -0.0238,0.24894 -0.0215,0.25016 -0.0167,0.24655 -0.0119,0.24894 -0.009,0.24894 -0.002,0.24776 0,0.25015 0.002,0.24895 0.008,0.24774 0.0131,0.24775 0.0167,0.24774 0.0215,0.24896 0.025,0.24773 0.0298,0.24776 0.0335,0.24654 0.0382,0.24654 0.0429,0.24534 0.0466,0.24534 -0.99077,0.20205 -0.0513,-0.26218 -0.0454,-0.26459 -0.0406,-0.26578 -0.0358,-0.26339 -0.0323,-0.26457 -0.0275,-0.26459 -0.0216,-0.26579 -0.0191,-0.26458 -0.0131,-0.26699 -0.008,-0.26698 -0.005,-0.2658 0,-0.26458 0.005,-0.26699 0.009,-0.26577 0.0119,-0.26579 0.0191,-0.2658 0.0216,-0.26457 0.0263,-0.26338 0.031,-0.26579 0.0357,-0.26459 0.0394,-0.26217 0.0429,-0.26338 0.0477,-0.26218 0.0514,-0.26097 0.0573,-0.26219 0.0597,-0.25976 0.0645,-0.25977 0.0692,-0.25977 0.0728,-0.25738 0.0777,-0.25857 0.0799,-0.25496 0.0859,-0.25495 0.0657,0.46181 z m 0.82366,-0.59171 0.1504,0.21288 -0.0848,0.24895 -0.0657,-0.46183 z m -9.5794,-12.791 0.8929,-0.48105 0.22561,0.42213 0.23157,0.42213 0.23635,0.42212 0.24113,0.42334 0.24709,0.42213 0.24948,0.42334 0.25546,0.42212 0.25663,0.42333 0.26143,0.42093 0.26619,0.42213 0.26859,0.42093 0.27096,0.42213 0.27335,0.41972 0.27695,0.41973 0.27932,0.41972 0.27933,0.41853 0.28409,0.41732 0.28291,0.41732 0.28529,0.41491 0.28529,0.41492 0.28769,0.4125 0.28767,0.41251 0.28769,0.4101 0.28888,0.41011 0.28648,0.40891 0.28769,0.40529 0.28767,0.40529 0.2853,0.40409 0.28529,0.40168 0.28291,0.39928 0.2829,0.39808 0.27933,0.39567 -0.82366,0.5917 -0.27932,-0.39567 -0.28291,-0.39808 -0.2829,-0.39927 -0.28529,-0.40169 -0.2853,-0.40409 -0.28768,-0.40529 -0.28768,-0.40771 -0.28888,-0.40889 -0.28886,-0.41011 -0.28769,-0.4125 -0.29007,-0.41492 -0.28767,-0.41491 -0.28769,-0.41733 -0.28768,-0.41731 -0.28529,-0.41973 -0.28411,-0.41972 -0.28409,-0.42334 -0.27933,-0.42213 -0.27932,-0.42212 -0.27814,-0.42694 -0.27335,-0.42453 -0.27097,-0.42574 -0.26859,-0.42694 -0.26619,-0.42816 -0.26141,-0.42814 -0.25783,-0.42934 -0.25427,-0.42814 -0.24948,-0.42935 -0.2459,-0.43055 -0.24113,-0.42935 -0.23634,-0.43175 -0.2304,-0.42935 z m -2.0782,-10.933 0.97406,0.2694 -0.0836,0.32832 -0.0692,0.32832 -0.0597,0.32832 -0.0466,0.32713 -0.0347,0.32592 -0.0226,0.32712 -0.0144,0.32471 0,0.32472 0.007,0.32593 0.0179,0.3223 0.0286,0.32472 0.0382,0.32351 0.0466,0.32111 0.0549,0.32231 0.0645,0.3223 0.0717,0.31991 0.0799,0.3187 0.0883,0.32111 0.0955,0.3187 0.10025,0.3163 0.10863,0.31629 0.1146,0.3163 0.11937,0.31389 0.12532,0.3115 0.13251,0.31268 0.13489,0.31149 0.14085,0.30788 0.14444,0.30667 0.14921,0.30668 0.1516,0.30547 0.15399,0.30187 0.15876,0.30067 -0.89289,0.48105 -0.16115,-0.31029 -0.16114,-0.31148 -0.15638,-0.3151 -0.15398,-0.31629 -0.14922,-0.31871 -0.14562,-0.32231 -0.14205,-0.32351 -0.13728,-0.32471 -0.1325,-0.33073 -0.12653,-0.33073 -0.11938,-0.33072 -0.11578,-0.33555 -0.10743,-0.33794 -0.10026,-0.33795 -0.0931,-0.34034 -0.0871,-0.34276 -0.0764,-0.34636 -0.0692,-0.34636 -0.0597,-0.34877 -0.0514,-0.34998 -0.0406,-0.35237 -0.031,-0.35359 -0.0204,-0.35597 -0.009,-0.35719 0.002,-0.35839 0.0143,-0.35839 0.025,-0.3608 0.0394,-0.362 0.0514,-0.3632 0.0645,-0.362 0.0788,-0.36439 0.093,-0.36442 z m 7.7602,-9.282 0.61356,0.81059 -0.28888,0.22249 -0.29005,0.2249 -0.29246,0.22729 -0.29127,0.2273 -0.28887,0.23091 -0.29127,0.23453 -0.28887,0.23572 -0.28649,0.23691 -0.2829,0.24173 -0.28171,0.24414 -0.27813,0.24776 -0.27336,0.24894 -0.26858,0.25496 -0.26619,0.25857 -0.25903,0.25977 -0.25307,0.26459 -0.24949,0.26939 -0.23993,0.273 -0.23396,0.27662 -0.22679,0.28262 -0.21846,0.28623 -0.2089,0.29103 -0.20173,0.29586 -0.19099,0.29945 -0.18145,0.30668 -0.17189,0.31028 -0.16115,0.31751 -0.15041,0.32231 -0.13846,0.32711 -0.12773,0.33555 -0.11459,0.34034 -0.10265,0.34637 -0.97406,-0.2694 0.11221,-0.38724 0.12891,-0.37644 0.13967,-0.36922 0.15279,-0.36319 0.16712,-0.35598 0.17547,-0.34636 0.1886,-0.34157 0.19815,-0.33313 0.2077,-0.32591 0.21846,-0.3199 0.2256,-0.3151 0.23516,-0.30547 0.24112,-0.30187 0.24829,-0.29585 0.25665,-0.28984 0.26142,-0.28383 0.26739,-0.27901 0.27335,-0.2742 0.27576,-0.26819 0.28051,-0.26458 0.28529,-0.26098 0.28767,-0.25497 0.28889,-0.25135 0.29245,-0.24895 0.29365,-0.24414 0.29603,-0.24053 0.29366,-0.23691 0.29603,-0.23573 0.29603,-0.23211 0.29246,-0.22729 0.29245,-0.22731 0.29127,-0.2249 z m 13.728,-7.5322 0.38438,0.94288 0.005,-0.002 -0.46554,0.19964 -0.46435,0.20204 -0.46315,0.20445 -0.46435,0.20566 -0.46077,0.20806 -0.46076,0.20926 -0.45839,0.21288 -0.45718,0.21405 -0.4536,0.21649 -0.45241,0.21888 -0.45002,0.22008 -0.44525,0.2225 -0.44405,0.22489 -0.44049,0.2273 -0.43809,0.2273 -0.4321,0.23091 -0.42974,0.23211 -0.42495,0.23452 -0.42018,0.23813 -0.4166,0.23812 -0.41184,0.24173 -0.40584,0.24053 -0.40109,0.24534 -0.3975,0.24655 -0.38915,0.24895 -0.38436,0.25015 -0.3784,0.25255 -0.37244,0.25376 -0.36526,0.25616 -0.3593,0.25737 -0.35095,0.25977 -0.34499,0.26219 -0.61355,-0.81059 0.35452,-0.2694 0.36289,-0.26699 0.36885,-0.26699 0.37722,-0.26097 0.37958,-0.26098 0.38796,-0.25977 0.39392,-0.25496 0.39869,-0.25376 0.40466,-0.25134 0.40825,-0.25016 0.4154,-0.24775 0.41899,-0.24413 0.42376,-0.24295 0.42734,-0.24053 0.43212,-0.23932 0.4369,-0.23692 0.43927,-0.23332 0.44286,-0.23211 0.44764,-0.2297 0.44883,-0.2273 0.45241,-0.22491 0.4548,-0.22248 0.45719,-0.22129 0.45837,-0.21888 0.46196,-0.21648 0.46316,-0.21527 0.46554,-0.21166 0.46554,-0.21048 0.46674,-0.20805 0.46792,-0.20686 0.46912,-0.20204 0.47032,-0.20205 0.005,-0.002 z m -0.005,0.002 0.005,-0.002 0.031,-0.0132 -0.0357,0.0156 z m 27.103,-6.2634 -0.68518,-0.75044 0.3581,0.88394 -0.60759,0.0253 -0.62192,0.0372 -0.63624,0.0493 -0.65056,0.0602 -0.66489,0.0746 -0.67921,0.0854 -0.69235,0.0974 -0.70667,0.11064 -0.72218,0.12266 -0.73412,0.1347 -0.74964,0.14913 -0.76396,0.15996 -0.77591,0.17318 -0.79142,0.18641 -0.80574,0.19964 -0.81768,0.21167 -0.83201,0.22488 -0.84753,0.23693 -0.85946,0.25136 -0.87378,0.26458 -0.88811,0.27782 -0.90123,0.28983 -0.91557,0.30426 -0.92751,0.31751 -0.94302,0.32953 -0.95615,0.34395 -0.97048,0.3584 -0.9824,0.37161 -0.99674,0.38484 -1.0111,0.39929 -1.023,0.41251 -1.0385,0.42574 -0.38437,-0.94289 1.0433,-0.42814 1.0302,-0.41491 1.0182,-0.40169 1.0039,-0.38725 0.98958,-0.37402 0.97764,-0.36079 0.96331,-0.34636 0.95018,-0.33435 0.93705,-0.3199 0.92272,-0.30668 0.91079,-0.29223 0.89528,-0.28023 0.88332,-0.26698 0.86903,-0.25376 0.85707,-0.24174 0.84154,-0.22729 0.82962,-0.21408 0.8153,-0.20205 0.80336,-0.18881 0.78784,-0.17558 0.7759,-0.16236 0.76158,-0.15154 0.74844,-0.1371 0.73413,-0.12508 0.72099,-0.11304 0.70666,-0.0998 0.69592,-0.0878 0.67923,-0.0746 0.66727,-0.0625 0.65295,-0.0517 0.64102,-0.0372 0.62668,-0.0253 0.35812,0.88395 z m -0.35812,-0.88394 1.356,-0.0433 -0.99792,0.92723 -0.35812,-0.88394 z m -4.4584,3.9688 4.1314,-3.8352 0.68518,0.75043 -4.1314,3.8353 -0.1886,0.10943 -0.49658,-0.85988 z m 0.68518,0.75045 -0.0799,0.0746 -0.10863,0.0348 0.1886,-0.10943 z m -33.318,14.409 -0.61357,-0.81058 0.67803,-0.50391 0.71981,-0.50391 0.75798,-0.5015 0.7962,-0.4979 0.83201,-0.49791 0.86542,-0.49187 0.89648,-0.49189 0.92868,-0.48948 0.95615,-0.48586 0.9848,-0.48226 1.0087,-0.47986 1.0337,-0.47625 1.0552,-0.47384 1.0767,-0.46904 1.0934,-0.46543 1.1101,-0.46181 1.1268,-0.45701 1.1388,-0.4546 1.1507,-0.44859 1.1615,-0.44378 1.1686,-0.43777 1.1746,-0.43415 1.1806,-0.42815 1.183,-0.42333 1.1842,-0.41611 1.1841,-0.41131 1.1794,-0.4053 1.1782,-0.39927 1.171,-0.39086 1.1626,-0.38604 1.1543,-0.37885 1.1436,-0.37042 0.30797,0.96934 -1.1388,0.37042 -1.1519,0.37883 -1.1603,0.38365 -1.1686,0.39086 -1.1734,0.39688 -1.177,0.40528 -1.1794,0.4089 -1.1794,0.41613 -1.1782,0.42092 -1.1758,0.42574 -1.1698,0.43176 -1.1638,0.43775 -1.1543,0.44138 -1.146,0.44617 -1.1316,0.4498 -1.1197,0.4546 -1.103,0.45942 -1.0863,0.46302 -1.0672,0.46421 -1.0457,0.46904 -1.0218,0.47144 -0.99913,0.47504 -0.97286,0.47746 -0.94421,0.47866 -0.91438,0.48226 -0.88213,0.48225 -0.84872,0.48468 -0.81291,0.48587 -0.77709,0.48587 -0.73651,0.48707 -0.69593,0.48707 -0.65414,0.48707 z m 4.3355,26.053 -0.82364,0.58931 0,0.001 -1.1746,-1.6669 -1.1006,-1.5743 -1.0266,-1.4853 -0.95735,-1.3999 -0.88453,-1.3193 -0.81409,-1.2423 -0.74487,-1.1714 -0.67683,-1.1028 -0.60759,-1.0379 -0.53955,-0.98137 -0.47389,-0.92603 -0.40706,-0.87553 -0.34139,-0.82983 -0.27694,-0.79013 -0.21009,-0.75287 -0.14325,-0.72399 -0.0788,-0.69393 -0.009,-0.67349 0.0585,-0.64702 0.12653,-0.62778 0.19218,-0.60734 0.25785,-0.5893 0.31989,-0.57367 0.3796,-0.56043 0.43571,-0.55201 0.49299,-0.54962 0.54672,-0.55081 0.60042,-0.55682 0.65295,-0.57006 0.70787,-0.58569 0.75919,-0.60493 0.81171,-0.63139 0.61356,0.81058 -0.80217,0.62417 -0.74725,0.59532 -0.69114,0.57126 -0.63148,0.55082 -0.57417,0.53276 -0.51328,0.51715 -0.45479,0.5063 -0.39273,0.4991 -0.33424,0.49309 -0.27455,0.49189 -0.21726,0.49309 -0.15875,0.5039 -0.10504,0.51714 -0.049,0.5388 0.009,0.56764 0.0668,0.60253 0.12892,0.64221 0.19099,0.68551 0.25545,0.73242 0.32229,0.78412 0.39034,0.83705 0.45719,0.89477 0.52761,0.95491 0.59566,1.0186 0.66489,1.086 0.73771,1.1594 0.80693,1.2327 0.87975,1.3097 0.95257,1.3951 1.0242,1.4805 1.0982,1.5695 1.1722,1.6645 0,0.001 z m 1.0636,3.2014 -0.91199,-0.43776 0.002,-0.007 0.004,-0.0181 0.006,-0.0265 0.002,-0.0312 0,-0.0409 -0.004,-0.0481 -0.008,-0.0613 -0.0119,-0.0625 -0.0156,-0.0685 -0.0215,-0.077 -0.0226,-0.0758 -0.0286,-0.0806 -0.031,-0.0853 -0.0346,-0.083 -0.0382,-0.0865 -0.0406,-0.089 -0.0417,-0.089 -0.0454,-0.0865 -0.0478,-0.0914 -0.0466,-0.0878 -0.0477,-0.0853 -0.0502,-0.0865 -0.0501,-0.0842 -0.0489,-0.083 -0.049,-0.077 -0.0502,-0.0782 -0.0454,-0.0733 -0.0466,-0.0685 -0.0454,-0.0697 -0.0417,-0.0613 -0.0394,-0.0565 -0.0369,-0.0542 0.82365,-0.58929 0.0417,0.0589 0.0442,0.0637 0.0466,0.0709 0.0478,0.0697 0.0513,0.0782 0.0525,0.0806 0.0525,0.083 0.0561,0.0914 0.0537,0.0902 0.0549,0.0914 0.0549,0.0962 0.0573,0.0997 0.0536,0.10224 0.0525,0.0985 0.0525,0.10583 0.0514,0.10584 0.0477,0.10342 0.0477,0.10824 0.0442,0.11185 0.0406,0.10704 0.0382,0.10944 0.0347,0.11184 0.0286,0.10824 0.0275,0.11184 0.0191,0.11305 0.0156,0.11186 0.008,0.11785 0,0.11786 -0.009,0.12267 -0.0204,0.11786 -0.0323,0.11906 -0.0502,0.12266 z m 0.12653,11.505 -0.89289,-0.48105 -0.0131,0.4546 -0.17905,-0.41611 -0.15877,-0.42574 -0.14204,-0.43176 -0.12535,-0.43777 -0.10863,-0.44497 -0.0931,-0.44739 -0.0789,-0.44978 -0.0657,-0.4522 -0.0514,-0.45341 -0.0394,-0.45219 -0.0275,-0.44979 -0.0167,-0.44859 -0.007,-0.44377 0.004,-0.43776 0.0131,-0.43176 0.0191,-0.42453 0.0286,-0.41492 0.0335,-0.4065 0.0417,-0.39566 0.0466,-0.38246 0.0513,-0.3692 0.0548,-0.35599 0.0598,-0.33915 0.0621,-0.32231 0.0657,-0.30788 0.0656,-0.28502 0.068,-0.26698 0.068,-0.24776 0.0692,-0.22489 0.068,-0.20324 0.0704,-0.18521 0.0717,-0.16116 0.91198,0.43776 -0.0477,0.11064 -0.0536,0.14191 -0.0585,0.17198 -0.0597,0.19844 -0.0633,0.2237 -0.0609,0.24534 -0.0633,0.26819 -0.0609,0.28623 -0.0573,0.30547 -0.0573,0.32231 -0.0525,0.33674 -0.0489,0.35239 -0.0442,0.3656 -0.0394,0.37643 -0.0335,0.38725 -0.0263,0.39566 -0.0191,0.40531 -0.0107,0.41249 -0.004,0.41612 0.005,0.41974 0.0167,0.42453 0.025,0.42574 0.0369,0.42334 0.049,0.42453 0.0609,0.42332 0.074,0.41853 0.0859,0.41371 0.099,0.4089 0.1158,0.39929 0.12773,0.39326 0.14443,0.38244 0.15995,0.37042 -0.0131,0.4546 z m 0.0131,-0.45459 0.10624,0.2309 -0.11937,0.22369 0.0131,-0.45459 z m -4.776,0.908 0,1.0198 -0.0633,-1.015 0.17189,-0.0181 0.1707,-0.009 0.16951,-0.004 0.16473,0.005 0.15876,0.007 0.15756,0.0108 0.15877,0.0132 0.1516,0.0168 0.14802,0.0156 0.14682,0.0168 0.14086,0.0156 0.13728,0.0132 0.13487,0.009 0.13131,0.009 0.12415,0.004 0.12295,0 0.11579,-0.004 0.11101,-0.009 0.10625,-0.0145 0.10385,-0.0217 0.099,-0.0265 0.0931,-0.0325 0.0931,-0.0409 0.092,-0.0493 0.0896,-0.0565 0.0871,-0.0685 0.093,-0.0818 0.0908,-0.095 0.0919,-0.10823 0.092,-0.12749 0.0931,-0.14551 0.092,-0.16357 0.89287,0.48106 -0.12055,0.21166 -0.12414,0.19364 -0.13012,0.17798 -0.13728,0.16597 -0.14324,0.14553 -0.14563,0.13228 -0.15398,0.11667 -0.15877,0.10222 -0.16114,0.0854 -0.16235,0.0722 -0.16712,0.0589 -0.16353,0.0433 -0.16354,0.0337 -0.16353,0.0241 -0.16354,0.0145 -0.16115,0.006 -0.15637,0 -0.15758,-0.006 -0.15278,-0.009 -0.1516,-0.012 -0.1516,-0.0155 -0.15041,-0.0157 -0.14444,-0.0169 -0.14563,-0.0156 -0.14205,-0.0145 -0.13727,-0.0132 -0.13847,-0.008 -0.13728,-0.007 -0.13369,-0.002 -0.12891,0.001 -0.12535,0.007 -0.12652,0.0133 -0.0633,-1.015 z m 0.001,1.0198 -0.001,0 0,-1.0198 0.001,0 0.47867,0.34395 -0.47867,0.67589 z m 0.47867,-0.67589 0.23038,0.67589 -0.70905,0 0.47867,-0.67589 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path57" + d="m 468.14,132.2 c 0.11221,-2.3151 -0.0442,-1.9242 -0.39034,1.6476 -0.37242,-0.71558 -0.86185,-1.0439 -1.4539,-1.0319 -1.0469,0.0193 -1.6783,1.6152 -1.781,5.2195 0.0621,0.92964 0.12534,1.8485 0.1874,2.7601 -33.058,-0.73482 -52.66,4.2838 -57.715,13.922 -4.16,7.9303 2.9126,21.062 13.584,36.055 1.2904,1.8136 1.2486,1.6597 10e-4,3.1546 -1.8049,2.1624 -3.7494,5.8232 -2.2883,9.0391 -6.4662,3.5671 -14.161,4.433 -20.874,1.4853 -1.1137,-2.9609 -3.5321,-4.3704 -5.4874,-5.7126 -0.39749,-0.27421 -1.8359,-0.98016 -1.9792,-1.4408 -3.5274,-11.349 -7.0679,-21.843 -10.107,-31.615 -9.5364,-30.687 75.242,-33.501 88.304,-33.483 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path59" + d="m 467.31,134.09 0.89527,-0.47385 -0.95138,0.18762 0.0323,-0.32712 0.031,-0.30788 0.0298,-0.28984 0.0286,-0.273 0.0275,-0.25256 0.0263,-0.23572 0.025,-0.21648 0.0238,-0.19964 0.0227,-0.18159 0.0215,-0.16837 0.0215,-0.14792 0.0191,-0.12869 0.0179,-0.11666 0.0191,-0.10096 0.0167,-0.0842 0.0204,-0.089 0.031,-0.0902 0.0728,-0.1359 0.5861,-0.18281 0.31394,0.32232 0.0298,0.11906 0.009,0.0878 0.005,0.0795 0.004,0.089 10e-4,0.10463 0,0.11906 -0.004,0.1347 -0.004,0.14793 -0.005,0.16476 -0.007,0.1816 -0.008,0.19363 -0.009,0.21166 -1.0098,-0.0505 0.009,-0.20685 0.008,-0.19123 0.007,-0.17438 0.005,-0.15754 0.004,-0.14072 0.001,-0.12267 0,-0.10463 -0.001,-0.0878 -10e-4,-0.0673 -0.002,-0.0458 0,-0.006 0.0156,0.0613 0.29963,0.29825 0.567,-0.17076 0.0513,-0.0925 0.005,-0.0132 -0.006,0.0241 -0.0119,0.0649 -0.0143,0.0793 -0.0155,0.10223 -0.0191,0.12388 -0.0191,0.13831 -0.0215,0.15634 -0.0204,0.17679 -0.0238,0.19723 -0.025,0.21407 -0.0263,0.23091 -0.0275,0.25015 -0.0286,0.2682 -0.0298,0.28743 -0.0286,0.30547 -0.0323,0.32472 -0.95138,0.18761 z m 0.95137,-0.18761 -0.16472,1.6993 -0.78665,-1.5117 0.95137,-0.18761 z m -1.9481,-0.57127 -0.0191,-1.0198 -0.001,0 0.0717,0 0.0764,0.002 0.0764,0.007 0.0657,0.007 0.0704,0.009 0.0752,0.0132 0.074,0.0181 0.074,0.0205 0.0692,0.0228 0.0633,0.024 0.0668,0.0265 0.0717,0.0325 0.0656,0.0349 0.0621,0.0349 0.0633,0.0397 0.0633,0.042 0.0621,0.0458 0.0573,0.0444 0.0561,0.047 0.0573,0.0517 0.0561,0.0542 0.0537,0.0565 0.0525,0.0589 0.049,0.059 0.0501,0.0613 0.0477,0.0637 0.0477,0.0685 0.043,0.0662 0.0454,0.0697 0.0442,0.0746 0.0394,0.071 0.0417,0.077 -0.89528,0.47385 -0.0298,-0.0553 -0.0323,-0.0565 -0.0275,-0.0481 -0.031,-0.0481 -0.0311,-0.047 -0.031,-0.042 -0.031,-0.042 -0.0286,-0.0372 -0.0323,-0.0372 -0.031,-0.0348 -0.0298,-0.03 -0.0298,-0.03 -0.0286,-0.0253 -0.0323,-0.0277 -0.031,-0.0253 -0.0287,-0.0217 -0.0275,-0.0181 -0.0298,-0.0181 -0.0335,-0.0181 -0.0298,-0.0157 -0.0238,-0.0108 -0.0335,-0.0145 -0.0347,-0.012 -0.031,-0.0108 -0.0286,-0.008 -0.0287,-0.006 -0.0298,-0.006 -0.0346,-0.005 -0.0417,-0.005 -0.031,-0.002 -0.0335,0 -0.0382,0 -0.001,0 z m 0.001,0 0.0119,0 -0.0131,0 0.001,0 z m -1.2868,4.6759 -1.0099,0.0673 0,-0.0481 0.0107,-0.33674 0.0143,-0.32712 0.0179,-0.3151 0.0216,-0.30186 0.0226,-0.29345 0.0275,-0.28261 0.0298,-0.27181 0.0335,-0.25978 0.0382,-0.25015 0.0394,-0.23932 0.043,-0.22971 0.0466,-0.22008 0.0489,-0.20926 0.0525,-0.20085 0.0573,-0.19122 0.0609,-0.1828 0.0657,-0.17198 0.0692,-0.16356 0.0728,-0.15393 0.0788,-0.14792 0.0848,-0.13832 0.0896,-0.12988 0.0943,-0.11907 0.10147,-0.11064 0.11339,-0.10584 0.11937,-0.0902 0.12175,-0.0782 0.13131,-0.0673 0.13847,-0.053 0.14205,-0.0397 0.14563,-0.024 0.14325,-0.009 0.0191,1.0198 -0.0502,0.002 -0.043,0.007 -0.0417,0.0108 -0.0406,0.0169 -0.043,0.0217 -0.0477,0.03 -0.0454,0.0349 -0.0442,0.0409 -0.0514,0.0577 -0.0537,0.0662 -0.0537,0.077 -0.0536,0.0878 -0.0525,0.0997 -0.0536,0.11305 -0.0525,0.12508 -0.0513,0.13589 -0.049,0.14673 -0.0477,0.15995 -0.0454,0.17198 -0.0442,0.18521 -0.0417,0.19603 -0.0382,0.20806 -0.0369,0.22008 -0.0335,0.23092 -0.031,0.24293 -0.0298,0.25496 -0.025,0.26579 -0.0226,0.27901 -0.0191,0.29225 -0.0179,0.30306 -0.0144,0.3127 -0.0107,0.32712 0,-0.0481 z m -1.0099,0.0673 -10e-4,-0.0144 10e-4,-0.0337 0,0.0481 z m 0.68161,3.2351 0.0216,-1.0174 -0.51568,0.54359 -0.006,-0.0842 -0.006,-0.0853 -0.006,-0.0854 -0.006,-0.0902 -0.005,-0.0853 -0.006,-0.0818 -0.006,-0.0854 -0.006,-0.0865 -0.006,-0.0854 -0.006,-0.0854 -0.006,-0.0865 -0.006,-0.0854 -0.006,-0.0878 -0.006,-0.0854 -0.006,-0.0854 -0.006,-0.0914 -0.005,-0.0854 -0.006,-0.0818 -0.006,-0.0878 -0.006,-0.0866 -0.006,-0.0866 -0.006,-0.0865 -0.006,-0.0865 -0.006,-0.0866 -0.006,-0.0865 -0.006,-0.0866 -0.006,-0.0902 -0.005,-0.0878 -0.006,-0.083 -0.006,-0.0865 -0.006,-0.0878 -0.006,-0.0878 1.0099,-0.0673 0.006,0.0854 0.006,0.0878 0.006,0.0866 0.006,0.0902 0.005,0.0878 0.006,0.083 0.006,0.0865 0.006,0.0866 0.006,0.0865 0.006,0.0865 0.006,0.0866 0.006,0.0866 0.006,0.0865 0.006,0.0854 0.006,0.089 0.005,0.0878 0.006,0.0818 0.006,0.0853 0.006,0.0878 0.006,0.0854 0.006,0.0854 0.006,0.0866 0.006,0.0854 0.006,0.0854 0.006,0.0866 0.006,0.0853 0.006,0.089 0.005,0.0854 0.006,0.083 0.006,0.0854 0.006,0.0854 0.006,0.0865 -0.51566,0.5436 z m 0.51566,-0.54361 0.0382,0.55563 -0.55388,-0.012 0.51567,-0.54361 z m -57.772,14.195 -0.89526,-0.47625 0.53954,-0.92725 0.62431,-0.89597 0.71145,-0.8659 0.79618,-0.83344 0.87976,-0.80336 0.96451,-0.77212 1.0481,-0.73963 1.1304,-0.70836 1.2116,-0.67708 1.2952,-0.64702 1.3763,-0.61697 1.4575,-0.5857 1.5411,-0.55441 1.621,-0.52437 1.7034,-0.49428 1.7846,-0.46181 1.8645,-0.43176 1.9469,-0.40047 2.0281,-0.36922 2.1081,-0.33794 2.1892,-0.30668 2.268,-0.2742 2.3504,-0.24294 2.4292,-0.21047 2.5103,-0.17919 2.5891,-0.14553 2.6703,-0.11424 2.7479,-0.0806 2.8279,-0.0481 2.9078,-0.0156 2.9866,0.0193 3.0642,0.053 -0.0215,1.0174 -3.0547,-0.0505 -2.9747,-0.0193 -2.8959,0.0156 -2.8159,0.0458 -2.736,0.0806 -2.656,0.11426 -2.5748,0.14551 -2.496,0.17679 -2.4125,0.21047 -2.3337,0.24053 -2.2513,0.27179 -2.1701,0.30427 -2.0866,0.33555 -2.0066,0.3644 -1.923,0.39567 -1.8407,0.42694 -1.7583,0.4546 -1.6748,0.48467 -1.59,0.51474 -1.5076,0.5424 -1.4241,0.57125 -1.3381,0.60012 -1.2546,0.62779 -1.171,0.65304 -1.0851,0.68189 -1.0003,0.70596 -0.91437,0.73122 -0.82963,0.75766 -0.74606,0.78052 -0.6613,0.80578 -0.57894,0.82862 -0.4942,0.85268 z m 13.547,35.52 -0.82126,0.59411 -0.99197,-1.4035 -0.96927,-1.3915 -0.9466,-1.3794 -0.92035,-1.3674 -0.89288,-1.3542 -0.86662,-1.341 -0.83678,-1.3265 -0.80694,-1.3121 -0.77233,-1.2965 -0.74246,-1.2808 -0.70547,-1.264 -0.66848,-1.2483 -0.63266,-1.2303 -0.59327,-1.2123 -0.55267,-1.1918 -0.50971,-1.175 -0.46794,-1.1558 -0.42256,-1.1341 -0.37601,-1.1148 -0.32947,-1.0956 -0.27931,-1.0728 -0.2292,-1.0499 -0.17548,-1.0294 -0.12175,-1.0066 -0.0656,-0.98377 -0.008,-0.95851 0.0501,-0.93687 0.11339,-0.9104 0.17548,-0.88395 0.24113,-0.85748 0.30797,-0.82744 0.37482,-0.79855 0.89527,0.47625 -0.339,0.71919 -0.27933,0.74804 -0.21726,0.77811 -0.16115,0.80939 -0.10384,0.83824 -0.0478,0.86711 0.008,0.89838 0.0633,0.92604 0.1146,0.95371 0.1683,0.98136 0.21964,1.009 0.26978,1.0343 0.31752,1.0595 0.36646,1.0836 0.41063,1.1076 0.45839,1.1293 0.50015,1.1509 0.54314,1.1726 0.58371,1.193 0.62311,1.2135 0.6613,1.2315 0.69832,1.2496 0.73294,1.2688 0.76754,1.2844 0.79977,1.3025 0.82962,1.3169 0.86186,1.3313 0.88811,1.347 0.91555,1.3602 0.94182,1.3722 0.96451,1.3866 0.9872,1.3963 z m -0.0226,3.7799 -0.77351,-0.65664 0.1134,-0.1359 0.10743,-0.12749 0.0979,-0.11665 0.0896,-0.10823 0.0836,-0.10224 0.074,-0.0902 0.0621,-0.0806 0.0549,-0.0746 0.0466,-0.0673 0.0347,-0.0541 0.025,-0.0493 0.0204,-0.042 0.0119,-0.0325 0.007,-0.0241 0.002,-0.0155 10e-4,-0.0132 -10e-4,-0.0193 -0.002,-0.0253 -0.008,-0.03 -0.0119,-0.0397 -0.0226,-0.0542 -0.0286,-0.0625 -0.0358,-0.0685 -0.0477,-0.0806 -0.0573,-0.0925 -0.0645,-0.0997 -0.0752,-0.11064 -0.0848,-0.12268 -0.0908,-0.13228 -0.099,-0.13951 -0.10983,-0.15274 -0.11698,-0.16477 0.82127,-0.59411 0.11698,0.16476 0.10982,0.15274 0.10385,0.14673 0.0955,0.1371 0.0871,0.12748 0.0823,0.12267 0.0764,0.11666 0.0692,0.11184 0.0645,0.11185 0.0596,0.11185 0.0502,0.10824 0.0442,0.10944 0.0382,0.11424 0.0275,0.12147 0.0167,0.11906 0.006,0.12267 -0.008,0.12629 -0.0215,0.12387 -0.0335,0.11546 -0.0406,0.10943 -0.0489,0.10464 -0.0561,0.10223 -0.0633,0.10221 -0.0656,0.0962 -0.0717,0.0985 -0.0788,0.10223 -0.0836,0.10222 -0.0859,0.10464 -0.0942,0.11304 -0.10025,0.11907 -0.10503,0.12508 -0.11341,0.1359 z m -2.4328,9.1582 -0.48463,-0.89477 -0.21726,0.65905 -0.13847,-0.32953 -0.11817,-0.33193 -0.0967,-0.33553 -0.0777,-0.33555 -0.0585,-0.33674 -0.0406,-0.33674 -0.0226,-0.33795 -0.006,-0.33554 0.009,-0.33434 0.025,-0.33313 0.0394,-0.33072 0.0525,-0.32953 0.0668,-0.32472 0.0764,-0.32231 0.0883,-0.3187 0.10025,-0.3163 0.10982,-0.31148 0.11698,-0.30548 0.12653,-0.30186 0.13489,-0.29826 0.14205,-0.29224 0.14801,-0.28623 0.1528,-0.27902 0.15757,-0.2754 0.16354,-0.2682 0.16711,-0.26217 0.16951,-0.25256 0.17189,-0.24895 0.17428,-0.23932 0.17547,-0.23091 0.17547,-0.22249 0.17548,-0.21528 0.77351,0.65664 -0.16353,0.19845 -0.16354,0.20806 -0.16354,0.21647 -0.16235,0.2225 -0.15994,0.2297 -0.15757,0.23812 -0.15518,0.24294 -0.1516,0.24895 -0.14564,0.25375 -0.14324,0.25978 -0.13607,0.26458 -0.13012,0.26819 -0.12295,0.2718 -0.11459,0.27541 -0.10744,0.27902 -0.10025,0.28021 -0.0883,0.28262 -0.0789,0.28503 -0.0692,0.28622 -0.0573,0.28865 -0.0477,0.28623 -0.0323,0.28743 -0.0226,0.28744 -0.007,0.28622 0.004,0.28743 0.0204,0.28503 0.0335,0.28383 0.049,0.28142 0.0657,0.28262 0.08,0.27782 0.099,0.2766 0.11458,0.27662 -0.21724,0.65905 z m 0.21725,-0.65905 0.19577,0.43055 -0.41302,0.2285 0.21725,-0.65905 z m -21.806,1.8773 0.94542,-0.3608 -0.27097,-0.28622 0.61714,0.25857 0.62191,0.23692 0.62669,0.21527 0.63266,0.19483 0.63385,0.17319 0.63982,0.15273 0.64221,0.13349 0.6458,0.11064 0.64817,0.0925 0.65176,0.071 0.65175,0.0517 0.65295,0.0325 0.65535,0.012 0.65652,-0.005 0.65415,-0.0265 0.65533,-0.0445 0.65654,-0.0637 0.65295,-0.0818 0.65295,-0.0998 0.65058,-0.11907 0.64937,-0.1359 0.64697,-0.15394 0.64221,-0.17078 0.64102,-0.18881 0.63624,-0.20686 0.63265,-0.22249 0.62669,-0.23932 0.62311,-0.25617 0.61714,-0.273 0.61117,-0.28743 0.60521,-0.30547 0.59924,-0.32111 0.48464,0.89478 -0.62072,0.33072 -0.62669,0.3175 -0.63506,0.29945 -0.64101,0.28263 -0.64698,0.26578 -0.65057,0.24896 -0.65654,0.2321 -0.6625,0.21407 -0.66488,0.19604 -0.66847,0.17799 -0.67324,0.16117 -0.67563,0.14069 -0.67683,0.12388 -0.6816,0.10463 -0.6816,0.0842 -0.6828,0.0661 -0.68398,0.047 -0.68518,0.0265 -0.68518,0.007 -0.68399,-0.0145 -0.68398,-0.0325 -0.6828,-0.0541 -0.68041,-0.0758 -0.67921,-0.095 -0.67682,-0.11787 -0.67325,-0.1383 -0.67086,-0.15997 -0.66728,-0.18279 -0.6613,-0.20445 -0.65773,-0.2249 -0.65295,-0.24893 -0.64818,-0.27301 -0.27097,-0.28624 z m 0.27097,0.28623 -0.19577,-0.0854 -0.0752,-0.20084 0.27097,0.28623 z m -5.571,-5.7583 0.57059,-0.84186 0.18264,0.12508 0.18502,0.12507 0.18979,0.12749 0.191,0.13108 0.19338,0.12989 0.19576,0.13349 0.19576,0.13591 0.19696,0.1383 0.19816,0.14071 0.19934,0.14552 0.20056,0.15033 0.19815,0.15153 0.19696,0.15756 0.19695,0.15995 0.19696,0.16717 0.19457,0.17197 0.191,0.1768 0.18979,0.18159 0.18742,0.18883 0.18264,0.19361 0.18144,0.20206 0.17547,0.20806 0.1707,0.21527 0.16711,0.22249 0.16115,0.2297 0.15757,0.23813 0.1504,0.24654 0.14325,0.25376 0.13727,0.26338 0.1313,0.2718 0.12177,0.28142 0.11459,0.28863 -0.94541,0.3608 -0.10266,-0.25736 -0.10743,-0.24775 -0.11459,-0.23812 -0.12056,-0.23211 -0.12893,-0.22491 -0.1313,-0.21768 -0.13847,-0.20925 -0.14443,-0.20566 -0.14802,-0.19844 -0.15398,-0.19122 -0.15638,-0.18642 -0.16235,-0.18039 -0.16592,-0.17678 -0.16831,-0.16958 -0.17308,-0.16717 -0.17668,-0.16235 -0.17785,-0.15755 -0.18026,-0.15274 -0.18502,-0.15033 -0.1874,-0.14793 -0.18621,-0.14431 -0.18862,-0.14071 -0.18979,-0.13831 -0.191,-0.1359 -0.19219,-0.1359 -0.19098,-0.13109 -0.191,-0.13109 -0.19098,-0.12989 -0.191,-0.12867 -0.18978,-0.12749 -0.18742,-0.12748 -0.18741,-0.12749 z m -2.1761,-1.709 0.96451,-0.30547 -0.008,-0.0217 0,-0.002 0.007,0.012 0.0143,0.0181 0.0238,0.0265 0.0335,0.0337 0.0394,0.0372 0.0454,0.0385 0.0514,0.042 0.0561,0.0433 0.0609,0.0445 0.0692,0.0493 0.068,0.047 0.0704,0.047 0.0717,0.0481 0.0777,0.0481 0.0764,0.0482 0.0752,0.0458 0.08,0.0481 0.0777,0.047 0.0777,0.0445 0.0777,0.0458 0.074,0.0432 0.074,0.042 0.0728,0.0433 0.0668,0.0385 0.0668,0.0397 0.0633,0.0372 0.0573,0.0349 0.0609,0.0372 0.0525,0.0337 0.0489,0.0325 -0.57058,0.84185 -0.0323,-0.0205 -0.0382,-0.0265 -0.0417,-0.0253 -0.0549,-0.0325 -0.0561,-0.0349 -0.0621,-0.0349 -0.0692,-0.0409 -0.0704,-0.0409 -0.0717,-0.042 -0.0787,-0.0458 -0.0777,-0.0458 -0.08,-0.047 -0.0823,-0.0493 -0.0823,-0.0481 -0.0871,-0.053 -0.0836,-0.053 -0.0823,-0.053 -0.0836,-0.053 -0.0848,-0.0565 -0.08,-0.0565 -0.0764,-0.0541 -0.0777,-0.0565 -0.0777,-0.0602 -0.0728,-0.059 -0.0717,-0.0625 -0.068,-0.0637 -0.0645,-0.0649 -0.0621,-0.0697 -0.0597,-0.0758 -0.0549,-0.0818 -0.0502,-0.0937 -0.0417,-0.10824 z m -10.107,-31.615 0.96451,-0.30547 0.28649,0.91882 0.28887,0.92122 0.29246,0.92484 0.29365,0.93206 0.29722,0.93446 0.29962,0.93927 0.30201,0.94408 0.30439,0.94889 0.30558,0.95129 0.30918,0.95731 0.31035,0.96213 0.31275,0.96572 0.31394,0.97174 0.31633,0.97535 0.31752,0.98016 0.31872,0.98257 0.32111,0.99097 0.32109,0.9934 0.32349,0.9994 0.32469,1.003 0.32468,1.0078 0.32709,1.0126 0.32707,1.0186 0.32707,1.0223 0.32945,1.0271 0.32828,1.0331 0.33065,1.0367 0.33066,1.0415 0.33064,1.0487 0.33066,1.0511 0.33065,1.0571 0.33066,1.0619 -0.96451,0.30547 -0.33066,-1.0619 -0.33064,-1.0547 -0.33066,-1.0511 -0.33065,-1.0463 -0.32827,-1.0415 -0.33066,-1.0367 -0.32827,-1.0307 -0.32945,-1.0271 -0.32707,-1.0222 -0.32707,-1.0162 -0.32708,-1.0126 -0.32469,-1.0078 -0.32468,-1.003 -0.32349,-0.9994 -0.32111,-0.99339 -0.3211,-0.98858 -0.31871,-0.98497 -0.31753,-0.98015 -0.31633,-0.97535 -0.31394,-0.97174 -0.31275,-0.96573 -0.31035,-0.96213 -0.30917,-0.9573 -0.30559,-0.95371 -0.30439,-0.94889 -0.30201,-0.94408 -0.29962,-0.94166 -0.29722,-0.93446 -0.29604,-0.93207 -0.29246,-0.92723 -0.28887,-0.92364 -0.28649,-0.91882 z m 88.281,-33.661 1.0099,0.0505 -0.50613,0.48467 -1.4229,0.007 -1.8144,0.0289 -2.1749,0.053 -2.5032,0.0842 -2.8016,0.12026 -3.0702,0.15875 -3.3077,0.20326 -3.5142,0.25135 -3.6909,0.30426 -3.8377,0.362 -3.9523,0.42574 -4.0383,0.49189 -4.0932,0.56283 -4.1159,0.63861 -4.1111,0.72039 -4.0729,0.80337 -4.006,0.89356 -3.907,0.98739 -3.778,1.0848 -3.6181,1.1882 -3.4271,1.2941 -3.2063,1.4023 -2.9508,1.5165 -2.6679,1.6332 -2.3552,1.7511 -2.009,1.8701 -1.6377,1.9904 -1.2414,2.1143 -0.81888,2.2442 -0.37601,2.3824 0.0967,2.5412 0.60402,2.7108 -0.96452,0.30547 -0.64219,-2.8816 -0.10387,-2.7336 0.40706,-2.5821 0.88572,-2.4245 1.3274,-2.2634 1.7309,-2.1058 2.0997,-1.9543 2.4339,-1.8112 2.7395,-1.6765 3.0129,-1.5478 3.2564,-1.4263 3.4725,-1.3109 3.6563,-1.2002 3.8138,-1.0944 3.9356,-0.99458 4.0299,-0.90079 4.0968,-0.80819 4.1302,-0.72278 4.135,-0.64102 4.1099,-0.56525 4.0526,-0.49428 3.9666,-0.42574 3.8497,-0.36441 3.7028,-0.30425 3.5238,-0.25378 3.3173,-0.20324 3.0797,-0.15875 2.8112,-0.12026 2.5127,-0.0842 2.1821,-0.0553 1.824,-0.0288 1.4372,-0.007 -0.50613,0.48466 z m 1.0099,0.0505 -0.0238,0.48587 -0.48225,-0.001 0.50613,-0.48467 z m -0.50494,-0.0253 -0.50494,-0.0253 0.50494,0.0253 z m 0.50494,0.0253 -0.0238,0.48587 -0.48225,-0.001 0.50613,-0.48467 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path61" + d="m 404.99,190.16 c 3.5166,0 6.3672,2.8719 6.3672,6.4149 0,3.5442 -2.8506,6.4161 -6.3672,6.4161 -3.5166,0 -6.3672,-2.8719 -6.3672,-6.4161 0,-3.5418 2.8505,-6.4149 6.3672,-6.4149 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path63" + d="m 411.87,196.57 h -1.0122 c 0.0268,-2.1992 -1.2955,-4.3408 -3.2747,-5.3 -0.7998,-0.39875 -1.6926,-0.6056 -2.5861,-0.60484 v -1.0198 c 2.3326,-0.0201 4.6106,1.2606 5.8244,3.2491 0.68656,1.0953 1.0469,2.3841 1.0487,3.6755 z m -6.8733,6.9261 v -1.0198 c 2.1697,0.0263 4.2691,-1.2876 5.2254,-3.2297 0.41942,-0.82526 0.63601,-1.751 0.63558,-2.6764 h 1.0122 c 0.0201,2.3519 -1.2532,4.6604 -3.2586,5.8909 -1.0772,0.67558 -2.3441,1.0335 -3.6146,1.035 z m -6.8733,-6.9261 h 1.0122 c -0.0261,2.1859 1.2785,4.3173 3.24,5.2834 0.80828,0.41087 1.7145,0.62309 2.6208,0.62256 v 1.0198 c -2.3327,0.0203 -4.6104,-1.2609 -5.8244,-3.2491 -0.68595,-1.0969 -1.0479,-2.3837 -1.0487,-3.6766 z m 6.8733,-6.9248 v 1.0198 c -2.1696,-0.0263 -4.2694,1.2871 -5.2253,3.2295 -0.42014,0.82468 -0.63576,1.7502 -0.63548,2.6751 h -1.0123 c -0.0199,-2.3517 1.2544,-4.6585 3.2586,-5.8897 1.0772,-0.67543 2.3438,-1.0337 3.6144,-1.0348 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path65" + d="m 350.75,203.61 c 3.2648,0 5.9124,2.6663 5.9124,5.9567 0,3.2905 -2.6476,5.9567 -5.9124,5.9567 -3.266,0 -5.9136,-2.6675 -5.9136,-5.9567 0,-3.2904 2.6476,-5.9567 5.9136,-5.9567 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path67" + d="m 357.17,209.56 h -1.0123 c 0.0211,-1.9413 -1.0892,-3.8374 -2.7925,-4.7689 -0.79387,-0.44551 -1.704,-0.67765 -2.6137,-0.67802 v -1.0198 c 2.1783,-0.0185 4.305,1.1779 5.439,3.0342 0.64073,1.0226 0.97738,2.227 0.97941,3.4326 z m -6.4185,6.4667 v -1.0198 c 1.9894,0.0233 3.9151,-1.1732 4.8045,-2.9476 0.39671,-0.76908 0.6015,-1.6344 0.60191,-2.4993 h 1.0123 c 0.017,2.1835 -1.1563,4.3288 -3.0136,5.4802 -1.0116,0.64519 -2.207,0.98366 -3.4051,0.9865 z m -6.4197,-6.4667 h 1.0122 c -0.0235,2.0052 1.1667,3.9592 2.9594,4.8576 0.75367,0.38754 1.6007,0.58937 2.4479,0.58935 v 1.0198 c -2.1785,0.0176 -4.307,-1.1773 -5.4402,-3.0354 -0.64027,-1.0226 -0.97781,-2.226 -0.9794,-3.4314 z m 6.4197,-6.4666 v 1.0198 c -2.0017,-0.0231 -3.9402,1.1876 -4.8218,2.9804 -0.38703,0.76044 -0.58493,1.614 -0.58557,2.4666 h -1.0122 c -0.0172,-2.1958 1.17,-4.3522 3.0441,-5.5 1.0063,-0.6311 2.189,-0.9647 3.3755,-0.9668 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path69" + d="m 345.1,192.72 c 3.2648,0 5.9124,2.6675 5.9124,5.9579 0,3.2892 -2.6476,5.9567 -5.9124,5.9567 -3.266,0 -5.9124,-2.6675 -5.9124,-5.9567 0,-3.2904 2.6464,-5.9579 5.9124,-5.9579 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path71" + d="m 351.52,198.68 h -1.0122 c 0.0231,-2.0049 -1.1654,-3.9602 -2.9587,-4.858 -0.75282,-0.38946 -1.6006,-0.5893 -2.4475,-0.58995 v -1.0198 c 2.1781,-0.0175 4.306,1.178 5.439,3.0355 0.64069,1.0225 0.97733,2.2269 0.97941,3.4323 z m -6.4185,6.4666 v -1.0198 c 1.9379,0.0221 3.8165,-1.1107 4.733,-2.8126 0.44347,-0.80194 0.67273,-1.7184 0.67336,-2.634 h 1.0122 c 0.0172,2.1959 -1.1707,4.3518 -3.0442,5.5 -1.0058,0.63018 -2.1882,0.96517 -3.3744,0.9665 z M 338.683,198.68 h 1.0122 c -0.0231,2.0047 1.1661,3.9591 2.9584,4.8576 0.75365,0.38756 1.6007,0.58928 2.4479,0.58926 v 1.0198 c -2.1658,0.0173 -4.2832,-1.1633 -5.4194,-3.0048 -0.65505,-1.0284 -0.99618,-2.2447 -0.99919,-3.4619 z m 6.4185,-6.4678 v 1.0198 c -1.9374,-0.0214 -3.8178,1.1096 -4.7326,2.8131 -0.44377,0.80211 -0.67337,1.719 -0.67389,2.635 h -1.0122 c -0.0178,-2.1961 1.1701,-4.3519 3.0429,-5.5012 1.0069,-0.62976 2.1891,-0.96488 3.3758,-0.9667 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path73" + d="m 339.79,181.71 c 3.266,0 5.9124,2.6663 5.9124,5.9567 0,3.2892 -2.6464,5.9567 -5.9124,5.9567 -3.2648,0 -5.9124,-2.6675 -5.9124,-5.9567 0,-3.2904 2.6476,-5.9567 5.9124,-5.9567 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path75" + d="m 346.21,187.66 h -1.0122 c 0.0228,-1.9924 -1.1502,-3.9362 -2.926,-4.8407 -0.76117,-0.3995 -1.6212,-0.60553 -2.4802,-0.60622 v -1.0198 c 2.1658,-0.0179 4.2819,1.1635 5.4194,3.0035 0.65427,1.0292 0.99676,2.2452 0.9991,3.4632 z m -6.4185,6.4666 v -1.0198 c 1.9251,0.0212 3.7943,-1.0949 4.7149,-2.7811 0.45597,-0.80894 0.69064,-1.738 0.69158,-2.6657 h 1.0123 c 0.0177,2.1834 -1.1568,4.3274 -3.0123,5.4802 -1.0122,0.64387 -2.2079,0.98423 -3.4065,0.98639 z M 333.373,187.66 h 1.0122 c -0.0234,1.9928 1.1514,3.9348 2.926,4.8405 0.76108,0.3998 1.6211,0.60565 2.4802,0.60632 v 1.0198 c -2.1782,0.0176 -4.306,-1.1779 -5.439,-3.0355 -0.64073,-1.0221 -0.97729,-2.2262 -0.97941,-3.4312 z m 6.4185,-6.4666 v 1.0198 c -1.9893,-0.0231 -3.9153,1.1731 -4.8045,2.9477 -0.3967,0.76908 -0.6015,1.6344 -0.60191,2.4993 h -1.0122 c -0.017,-2.1834 1.156,-4.3291 3.0135,-5.4802 1.0117,-0.64531 2.2071,-0.98358 3.4052,-0.98661 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path77" + d="m 444.27,202.15 c 3.4164,-0.2321 2.5712,5.8942 1.8968,7.2592 -0.87976,1.7823 -1.6974,1.8388 -2.8076,0.19121 -0.85111,-1.2628 -2.5044,-7.2183 0.91079,-7.4504 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path79" + d="m 446.62,209.63 -0.90482,-0.45461 0,0 0.0489,-0.11064 0.0549,-0.14311 0.0561,-0.16957 0.0561,-0.19603 0.0561,-0.2189 0.0536,-0.2369 0.0502,-0.25378 0.0466,-0.26698 0.0394,-0.2766 0.0346,-0.29105 0.0286,-0.29345 0.0191,-0.29945 0.0119,-0.30427 0.002,-0.30307 -0.007,-0.29947 -0.0167,-0.29826 -0.0286,-0.28862 -0.0417,-0.28142 -0.0514,-0.2682 -0.0645,-0.25736 -0.0764,-0.23933 -0.0871,-0.22009 -0.10025,-0.19963 -0.11101,-0.1792 -0.12057,-0.15514 -0.1313,-0.1335 -0.14205,-0.11064 -0.15399,-0.089 -0.17188,-0.0685 -0.19458,-0.0493 -0.21964,-0.0253 -0.24948,0.004 -0.0692,-1.0174 0.36647,-0.004 0.34856,0.0397 0.32588,0.0806 0.30319,0.12146 0.27814,0.16116 0.24948,0.19482 0.21963,0.22249 0.1898,0.24414 0.16354,0.26339 0.14086,0.28141 0.11817,0.29465 0.0955,0.30427 0.0788,0.31269 0.0633,0.32111 0.0466,0.32712 0.0335,0.33434 0.0191,0.33433 0.009,0.33554 -0.005,0.33434 -0.0119,0.33313 -0.0216,0.32833 -0.031,0.3223 -0.0369,0.31269 -0.0442,0.30548 -0.0513,0.29345 -0.0549,0.27781 -0.0585,0.26337 -0.0633,0.24775 -0.0657,0.22971 -0.0704,0.21287 -0.074,0.19122 -0.0777,0.17318 0,0 z m -3.6778,0.25015 0.83558,-0.57246 0.0955,0.13831 0.0955,0.12988 0.0896,0.11786 0.0883,0.10463 0.0848,0.0962 0.08,0.0842 0.0764,0.0721 0.0716,0.0613 0.0656,0.0493 0.0621,0.0408 0.0514,0.0289 0.0477,0.0217 0.0394,0.012 0.0357,0.008 0.0286,0.004 0.0238,-0.001 0.0298,-0.004 0.0275,-0.006 0.031,-0.012 0.037,-0.0181 0.0454,-0.0289 0.0502,-0.036 0.0537,-0.0481 0.0598,-0.059 0.0621,-0.0697 0.0657,-0.0818 0.0692,-0.0938 0.0704,-0.10582 0.0728,-0.11667 0.074,-0.12868 0.0764,-0.14072 0.0764,-0.15153 0.90482,0.45461 -0.0883,0.17318 -0.0883,0.16236 -0.0883,0.15514 -0.0919,0.14793 -0.092,0.13709 -0.093,0.12749 -0.0967,0.12267 -0.10267,0.11305 -0.10265,0.10223 -0.11102,0.0962 -0.11459,0.0842 -0.11936,0.0746 -0.12773,0.0637 -0.13609,0.0505 -0.14204,0.0348 -0.13967,0.0181 -0.14562,0.001 -0.14325,-0.0157 -0.13846,-0.03 -0.13489,-0.0458 -0.13131,-0.0577 -0.12772,-0.0697 -0.11938,-0.0794 -0.11817,-0.0878 -0.1146,-0.0998 -0.1122,-0.10584 -0.11102,-0.11545 -0.10863,-0.12266 -0.10982,-0.1335 -0.10862,-0.14192 -0.10982,-0.14912 -0.10982,-0.15996 z m 1.294,-8.2454 0.0692,1.0174 -0.24829,0.0312 -0.21485,0.053 -0.18503,0.0746 -0.16115,0.0925 -0.14325,0.11064 -0.12414,0.12748 -0.11102,0.14913 -0.10025,0.17199 -0.0859,0.19001 -0.0716,0.21166 -0.0585,0.23212 -0.0442,0.24653 -0.0286,0.26219 -0.0167,0.2742 -0.001,0.28263 0.009,0.29223 0.0226,0.29585 0.0323,0.29948 0.043,0.29945 0.0525,0.29826 0.0596,0.29585 0.0668,0.28863 0.0728,0.28023 0.0764,0.26938 0.0811,0.25977 0.0836,0.24414 0.0836,0.2261 0.0859,0.20925 0.0823,0.18763 0.0788,0.16357 0.0728,0.13349 0.0633,0.10222 -0.83559,0.57246 -0.10147,-0.16236 -0.0967,-0.1792 -0.0979,-0.19963 -0.0967,-0.21889 -0.0955,-0.23572 -0.0955,-0.25496 -0.0908,-0.27059 -0.0883,-0.28142 -0.0859,-0.29586 -0.0777,-0.30667 -0.074,-0.3151 -0.0645,-0.32231 -0.0573,-0.32712 -0.0478,-0.33073 -0.0369,-0.33553 -0.025,-0.33435 -0.0119,-0.33312 0.004,-0.33073 0.0191,-0.32712 0.0357,-0.32231 0.0561,-0.31629 0.0777,-0.30428 0.10025,-0.29825 0.12891,-0.28383 0.15518,-0.26819 0.18742,-0.25016 0.22203,-0.2261 0.25305,-0.19483 0.28292,-0.16235 0.31394,-0.12508 0.339,-0.0865 0.36289,-0.0458 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path81" + d="m 444.49,205.46 c 8.0312,-0.54719 6.0449,13.845 4.4584,17.055 -2.0687,4.1864 -3.9917,4.3163 -6.5999,0.44859 -1.9994,-2.9645 -5.8885,-16.956 2.1427,-17.503 h -10e-4 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path83" + d="m 449.4,222.74 -0.90483,-0.4546 0,0 0.13489,-0.30185 0.14085,-0.36802 0.14205,-0.43056 0.14086,-0.48345 0.13489,-0.53158 0.13011,-0.57606 0.12176,-0.61216 0.10982,-0.64582 0.0979,-0.67107 0.0836,-0.69394 0.0668,-0.71196 0.0477,-0.72401 0.0286,-0.73121 0.006,-0.73361 -0.0167,-0.73 -0.043,-0.7228 -0.0704,-0.71077 -0.10025,-0.69031 -0.12773,-0.66868 -0.16115,-0.63981 -0.19338,-0.60614 -0.228,-0.56644 -0.26141,-0.52556 -0.29603,-0.47746 -0.33067,-0.42453 -0.36766,-0.37162 -0.40704,-0.31629 -0.44524,-0.25978 -0.4942,-0.19843 -0.54671,-0.1359 -0.60282,-0.0673 -0.66488,0.008 -0.0692,-1.0174 0.78187,-0.008 0.73174,0.0818 0.67802,0.16957 0.62549,0.25135 0.56939,0.32954 0.5121,0.39807 0.45599,0.46061 0.40228,0.51595 0.34856,0.56403 0.30201,0.60253 0.25664,0.64101 0.21486,0.67108 0.17548,0.69995 0.13965,0.71919 0.10506,0.73842 0.0752,0.75165 0.0454,0.76128 0.0191,0.76608 -0.008,0.7649 -0.0286,0.76007 -0.0501,0.75285 -0.0692,0.73844 -0.0859,0.72038 -0.10265,0.69754 -0.1146,0.66987 -0.12652,0.63861 -0.13489,0.60252 -0.14444,0.56285 -0.1504,0.51714 -0.15398,0.46903 -0.15997,0.41852 -0.16353,0.3644 0,0 z m -7.4702,0.50752 0.83559,-0.57246 0.23635,0.34155 0.23038,0.3163 0.22561,0.29104 0.22083,0.2682 0.21487,0.24293 0.2101,0.21648 0.20291,0.19362 0.19817,0.16838 0.18979,0.14432 0.18264,0.11906 0.17427,0.0962 0.16832,0.0746 0.15756,0.053 0.1516,0.0337 0.14564,0.0157 0.14205,-10e-4 0.13966,-0.0168 0.14205,-0.036 0.14682,-0.0541 0.14802,-0.0735 0.15638,-0.0962 0.16114,-0.11906 0.16354,-0.14312 0.1707,-0.16957 0.17308,-0.19243 0.17548,-0.21888 0.17905,-0.24414 0.18025,-0.26939 0.18264,-0.29585 0.18502,-0.3199 0.18622,-0.34517 0.1886,-0.36921 0.90483,0.45461 -0.19815,0.39085 -0.20056,0.36923 -0.19934,0.34635 -0.20173,0.32231 -0.20174,0.30308 -0.20532,0.2802 -0.20651,0.25737 -0.21128,0.23573 -0.21367,0.21287 -0.22083,0.19121 -0.22561,0.16717 -0.23278,0.14432 -0.24112,0.11906 -0.24709,0.0902 -0.25187,0.0625 -0.25904,0.0337 -0.25903,0.001 -0.26023,-0.0277 -0.25664,-0.0577 -0.25307,-0.0842 -0.24947,-0.11064 -0.24591,-0.13471 -0.2447,-0.15995 -0.24232,-0.1828 -0.23874,-0.20445 -0.24113,-0.22731 -0.23874,-0.25015 -0.24112,-0.27179 -0.24233,-0.29224 -0.2447,-0.3175 -0.24709,-0.33794 -0.2483,-0.36081 z m 2.5605,-17.28 0,-1.0198 0.0347,1.0187 -0.66131,0.083 -0.58848,0.14793 -0.52285,0.20806 -0.46314,0.26458 -0.40706,0.3163 -0.36168,0.36921 -0.31394,0.41732 -0.27097,0.46663 -0.2292,0.51353 -0.18979,0.55563 -0.14922,0.5929 -0.11101,0.62658 -0.074,0.65545 -0.0394,0.6795 -0.005,0.69873 0.0238,0.71318 0.0549,0.72159 0.0788,0.72759 0.10385,0.72401 0.12653,0.72158 0.14443,0.70957 0.16116,0.69753 0.17427,0.67589 0.18741,0.65183 0.19577,0.62539 0.20173,0.59049 0.20532,0.55202 0.20531,0.50872 0.20413,0.46062 0.19696,0.40529 0.1898,0.34756 0.17309,0.28022 -0.83559,0.57246 -0.21129,-0.33794 -0.21368,-0.39327 -0.21605,-0.44378 -0.21845,-0.49187 -0.21725,-0.5376 -0.21486,-0.57847 -0.2089,-0.61696 -0.20293,-0.64703 -0.19457,-0.67829 -0.18145,-0.70235 -0.1683,-0.72159 -0.14922,-0.73842 -0.1313,-0.75046 -0.10863,-0.75766 -0.0836,-0.76129 -0.0573,-0.76007 -0.0263,-0.75406 0.007,-0.74684 0.0417,-0.73242 0.0811,-0.71557 0.12294,-0.69394 0.16832,-0.66987 0.21845,-0.63981 0.27216,-0.60493 0.32826,-0.56525 0.39034,-0.51833 0.4548,-0.46544 0.51926,-0.40289 0.5873,-0.33432 0.64937,-0.26098 0.71263,-0.1792 0.7759,-0.0974 0.0346,1.0186 z m -10e-4,-1.0198 10e-4,0 0,1.0198 -10e-4,0 -0.0346,-1.0186 0.0346,-10e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path85" + d="m 379.74,210.81 c 3.2624,-1.0463 3.8914,5.1065 3.5596,6.5941 -0.43331,1.9423 -1.214,2.1924 -2.6822,0.85989 -1.1245,-1.021 -4.1397,-6.4077 -0.87737,-7.454 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path87" + d="m 383.79,217.51 -0.98599,-0.22369 0,0 0.0216,-0.11785 0.0191,-0.15274 0.0143,-0.1804 0.009,-0.20324 10e-4,-0.2249 -0.004,-0.24294 -0.0119,-0.25857 -0.0179,-0.27059 -0.0275,-0.28023 -0.0347,-0.28743 -0.043,-0.29344 -0.0513,-0.29705 -0.0609,-0.29706 -0.0692,-0.29464 -0.0777,-0.28985 -0.0871,-0.28502 -0.0967,-0.27421 -0.10504,-0.26338 -0.1134,-0.24895 -0.12294,-0.23211 -0.13252,-0.21407 -0.13727,-0.19362 -0.14324,-0.16958 -0.1504,-0.14671 -0.15399,-0.12269 -0.15757,-0.0974 -0.16473,-0.0733 -0.17189,-0.0505 -0.18263,-0.0253 -0.20055,0 -0.21964,0.0288 -0.24231,0.0625 -0.3056,-0.97174 0.35453,-0.0914 0.34617,-0.0458 0.33663,0 0.32349,0.047 0.30797,0.089 0.28649,0.12869 0.26739,0.16236 0.24232,0.19241 0.22203,0.21649 0.20292,0.23932 0.18263,0.25617 0.16594,0.27179 0.1516,0.28744 0.13726,0.29705 0.12176,0.30668 0.11102,0.31509 0.099,0.32111 0.0871,0.32351 0.0764,0.32592 0.0657,0.32592 0.0561,0.32352 0.0478,0.3199 0.0369,0.31389 0.0298,0.30668 0.0204,0.29705 0.0119,0.28262 0.006,0.27181 -0.004,0.25615 -0.009,0.23933 -0.0191,0.22129 -0.0238,0.20325 -0.0358,0.1876 0,0 z m -3.5142,1.1269 0.67802,-0.75766 0.12653,0.11183 0.12176,0.10343 0.11579,0.0926 0.11102,0.083 0.10147,0.071 0.0979,0.0613 0.0919,0.0517 0.0859,0.0433 0.0728,0.0325 0.0668,0.0217 0.0657,0.0181 0.0502,0.009 0.0382,0.004 0.0335,-10e-4 0.0335,-0.005 0.025,-0.006 0.0216,-0.008 0.0286,-0.0156 0.0275,-0.0193 0.0335,-0.0265 0.0369,-0.0385 0.0382,-0.0458 0.0417,-0.0589 0.0442,-0.0722 0.043,-0.0818 0.0442,-0.095 0.0454,-0.11064 0.0442,-0.11906 0.0417,-0.12869 0.0417,-0.14431 0.0406,-0.15514 0.0394,-0.16478 0.98599,0.2237 -0.0442,0.18882 -0.0478,0.17919 -0.049,0.17077 -0.0537,0.16718 -0.0585,0.15514 -0.0598,0.14672 -0.0656,0.14071 -0.0717,0.13469 -0.0777,0.12508 -0.0823,0.11907 -0.0931,0.11064 -0.099,0.10096 -0.10982,0.0938 -0.11817,0.0793 -0.12654,0.0662 -0.13608,0.0542 -0.14204,0.0348 -0.13848,0.0193 -0.14324,0.004 -0.14563,-0.0108 -0.14085,-0.0265 -0.1325,-0.0349 -0.13847,-0.0481 -0.13728,-0.059 -0.13369,-0.0673 -0.1325,-0.0758 -0.13608,-0.0854 -0.13728,-0.095 -0.13727,-0.10222 -0.13967,-0.11184 -0.14085,-0.11787 -0.14564,-0.12868 z m -0.69115,-8.3187 0.30558,0.97174 -0.23276,0.089 -0.19577,0.10464 -0.16354,0.11665 -0.13369,0.12748 -0.11221,0.14191 -0.0919,0.15514 -0.0728,0.17199 -0.0561,0.18882 -0.037,0.20564 -0.0204,0.2249 -0.002,0.23812 0.0167,0.25136 0.0323,0.25977 0.0502,0.26939 0.0656,0.27782 0.0777,0.28022 0.0919,0.28141 0.10265,0.28262 0.11221,0.28023 0.12175,0.27781 0.12773,0.27179 0.13369,0.26459 0.13728,0.25496 0.13848,0.24535 0.13965,0.23091 0.13846,0.21647 0.13728,0.20204 0.13011,0.1816 0.12416,0.16115 0.11578,0.13951 0.10147,0.11186 0.0871,0.0842 -0.67803,0.75767 -0.13488,-0.13229 -0.13966,-0.15273 -0.13967,-0.17079 -0.14563,-0.18761 -0.14921,-0.20806 -0.1516,-0.2237 -0.15278,-0.23812 -0.154,-0.25496 -0.15041,-0.26699 -0.14921,-0.27661 -0.14563,-0.28864 -0.13966,-0.29826 -0.13369,-0.30426 -0.12414,-0.31149 -0.1146,-0.31389 -0.10386,-0.3199 -0.0896,-0.32111 -0.0752,-0.32111 -0.0598,-0.32231 -0.0417,-0.32231 -0.0191,-0.3187 0.002,-0.3175 0.0275,-0.31149 0.0561,-0.30667 0.0896,-0.29947 0.12296,-0.28743 0.16114,-0.27059 0.19816,-0.25256 0.23874,-0.2261 0.27574,-0.19604 0.30797,-0.16475 0.34259,-0.13229 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path89" + d="m 380.74,213.97 c 7.6695,-2.4594 9.1449,11.994 8.3642,15.491 -1.0194,4.564 -2.8553,5.1522 -6.3039,2.0216 -2.6428,-2.3993 -9.7298,-15.055 -2.0603,-17.513 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path91" + d="m 389.6,229.58 -0.98599,-0.22371 0,0 0.0597,-0.32591 0.0501,-0.39086 0.0347,-0.4522 0.0226,-0.50391 0.006,-0.54961 -0.009,-0.5881 -0.0286,-0.62537 -0.0442,-0.65184 -0.0644,-0.67589 -0.0836,-0.69393 -0.10385,-0.70716 -0.12415,-0.71557 -0.14562,-0.71678 -0.16712,-0.71317 -0.1898,-0.70596 -0.21247,-0.69032 -0.23635,-0.67228 -0.26023,-0.64822 -0.2841,-0.61817 -0.30679,-0.58328 -0.33183,-0.5412 -0.35453,-0.49669 -0.37721,-0.44618 -0.40108,-0.39206 -0.42257,-0.33435 -0.44287,-0.273 -0.47031,-0.20926 -0.49419,-0.14431 -0.52641,-0.0733 -0.56223,-0.001 -0.60282,0.0795 -0.6446,0.16717 -0.30558,-0.97174 0.75679,-0.19604 0.72936,-0.0962 0.6983,0.001 0.66729,0.095 0.63026,0.1828 0.59208,0.26458 0.55269,0.33795 0.51089,0.40409 0.47271,0.46182 0.43688,0.51594 0.3999,0.55923 0.36766,0.60132 0.33543,0.63621 0.30558,0.66626 0.27694,0.69153 0.25068,0.71076 0.22441,0.72881 0.19935,0.73963 0.17427,0.74444 0.15041,0.74564 0.12892,0.74204 0.10863,0.73362 0.0859,0.72038 0.0668,0.70235 0.0466,0.67829 0.0286,0.64944 0.0119,0.61936 -0.008,0.58088 -0.0226,0.53758 -0.0394,0.49309 -0.0549,0.44378 -0.074,0.39327 0,0 z m -7.1359,2.2886 0.67802,-0.75767 0.30917,0.2754 0.29843,0.25136 0.28887,0.2297 0.27694,0.20687 0.26739,0.184 0.25425,0.16116 0.24352,0.13829 0.23157,0.11666 0.21845,0.0938 0.2065,0.0721 0.19219,0.053 0.17787,0.0312 0.16831,0.0132 0.15518,-0.004 0.14563,-0.0205 0.13728,-0.0349 0.13011,-0.0505 0.1313,-0.0697 0.12892,-0.0866 0.12772,-0.10703 0.12773,-0.1323 0.12773,-0.15274 0.12654,-0.1804 0.12532,-0.20324 0.12057,-0.2297 0.12055,-0.25618 0.1158,-0.279 0.11102,-0.30428 0.10861,-0.33193 0.10387,-0.35477 0.099,-0.38004 0.0955,-0.4041 0.98599,0.22369 -0.10025,0.42815 -0.10624,0.40649 -0.11339,0.38365 -0.11819,0.3632 -0.12534,0.34276 -0.13249,0.3199 -0.13967,0.29946 -0.14922,0.28022 -0.15876,0.25857 -0.16711,0.23812 -0.18025,0.21768 -0.19218,0.19483 -0.20651,0.17439 -0.21725,0.14672 -0.23159,0.12266 -0.24231,0.0938 -0.25188,0.0637 -0.25783,0.0349 -0.26262,0.006 -0.26618,-0.0205 -0.27098,-0.0481 -0.27097,-0.0722 -0.27335,-0.0962 -0.27813,-0.12026 -0.28171,-0.14071 -0.28649,-0.16236 -0.29246,-0.18521 -0.29842,-0.20566 -0.30559,-0.22849 -0.31036,-0.24654 -0.31991,-0.27061 -0.32827,-0.28984 z m -1.8741,-18.378 0.30559,0.97174 -0.62191,0.23813 -0.53717,0.28502 -0.45718,0.32832 -0.38676,0.36802 -0.32231,0.40529 -0.26141,0.44378 -0.20651,0.48347 -0.15279,0.51713 -0.10147,0.55323 -0.0537,0.58448 -0.005,0.61215 0.0417,0.635 0.0823,0.65424 0.12414,0.66988 0.15876,0.6807 0.19219,0.6855 0.22321,0.68793 0.24948,0.6867 0.27337,0.67951 0.29245,0.66987 0.30797,0.65423 0.3223,0.63742 0.32946,0.61575 0.33662,0.58929 0.33662,0.55923 0.33543,0.52436 0.33066,0.48708 0.3199,0.44498 0.3056,0.39927 0.28886,0.34637 0.26501,0.29224 0.23636,0.22971 -0.67803,0.75767 -0.2841,-0.27781 -0.30081,-0.33072 -0.31513,-0.38004 -0.32707,-0.42574 -0.33902,-0.46904 -0.34498,-0.51113 -0.34975,-0.546 -0.35095,-0.58328 -0.34855,-0.61095 -0.34141,-0.63741 -0.33423,-0.66146 -0.3199,-0.68069 -0.30439,-0.69633 -0.28531,-0.71077 -0.26141,-0.71798 -0.23516,-0.72639 -0.20411,-0.72642 -0.17071,-0.7264 -0.1313,-0.72039 -0.092,-0.71436 -0.0442,-0.70476 0.005,-0.69152 0.0609,-0.67349 0.12056,-0.65182 0.18621,-0.6278 0.25666,-0.59651 0.33065,-0.56163 0.41063,-0.51594 0.48942,-0.46663 0.56938,-0.4077 0.64937,-0.34515 0.73174,-0.28143 z m 0.15279,0.48587 -0.15279,-0.48587 0.15279,0.48587 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path93" + d="m 464.2,137.77 c -17.233,-1.5683 -34.854,0.19483 -52.298,7.1714 -14.703,5.881 -13.262,23.054 4.6662,46.89 -1.6222,3.0199 -2.545,6.7745 -2.6906,11.109 1.8968,-0.10464 3.2266,-0.0553 4.9001,-0.0974 -1.2987,-2.8876 0.15518,-6.4246 1.7965,-8.9165 1.0708,-1.6272 1.2892,-1.341 -0.001,-3.1545 -10.672,-14.993 -17.744,-28.125 -13.584,-36.055 5.0553,-9.6368 24.656,-14.657 57.715,-13.922 -0.0598,-0.87914 -0.12176,-1.7667 -0.18144,-2.6627 -0.10506,-0.12027 -0.21128,-0.23934 -0.3235,-0.3608 l 0.001,-0.001 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path95" + d="m 412.09,145.42 -0.37244,-0.94769 0,0 1.6425,-0.64101 1.6449,-0.61215 1.6461,-0.58208 1.6449,-0.55082 1.6473,-0.52315 1.6485,-0.49309 1.6473,-0.46543 1.6473,-0.43535 1.6485,-0.4101 1.6485,-0.38124 1.6485,-0.35358 1.6473,-0.32712 1.6485,-0.30067 1.6473,-0.2742 1.6461,-0.24775 1.6473,-0.22369 1.6461,-0.19844 1.6449,-0.17318 1.6437,-0.14793 1.6437,-0.12508 1.6413,-0.0997 1.6413,-0.077 1.6389,-0.0541 1.639,-0.0325 1.6354,-0.009 1.6354,0.0132 1.6342,0.036 1.6306,0.0553 1.6282,0.077 1.6282,0.0962 1.6258,0.11906 1.6222,0.1371 -0.0908,1.015 -1.6103,-0.13709 -1.6139,-0.11666 -1.6139,-0.0962 -1.6163,-0.077 -1.6186,-0.0553 -1.6198,-0.0337 -1.621,-0.0132 -1.6234,0.009 -1.6246,0.03 -1.6246,0.0541 -1.627,0.077 -1.627,0.0999 -1.6294,0.12266 -1.6294,0.14793 -1.6306,0.17077 -1.6318,0.19603 -1.6306,0.2213 -1.6318,0.24533 -1.633,0.2718 -1.6318,0.29826 -1.633,0.32472 -1.6342,0.35117 -1.6318,0.37643 -1.6318,0.40529 -1.633,0.43296 -1.633,0.46061 -1.6318,0.48828 -1.6306,0.51833 -1.6306,0.54601 -1.6294,0.57727 -1.6306,0.60493 -1.6282,0.63621 0,0 z m 4.9252,46.659 -0.8905,-0.48588 0.0417,0.55082 -1.6389,-2.2237 -1.5411,-2.1828 -1.4456,-2.1443 -1.3489,-2.1022 -1.2546,-2.0613 -1.1567,-2.0192 -1.06,-1.976 -0.96571,-1.9326 -0.869,-1.887 -0.77351,-1.8413 -0.67683,-1.798 -0.58132,-1.7486 -0.48346,-1.703 -0.38795,-1.6548 -0.29246,-1.6055 -0.19457,-1.5574 -0.0955,-1.5069 0,-1.4564 0.0979,-1.4035 0.19697,-1.3518 0.29484,-1.2965 0.3963,-1.2411 0.493,-1.1846 0.59446,-1.1233 0.69234,-1.0631 0.79142,-0.99941 0.88811,-0.93564 0.986,-0.86953 1.0803,-0.80217 1.1734,-0.73481 1.2701,-0.66627 1.362,-0.59892 0.37244,0.94769 -1.2999,0.57005 -1.2032,0.63259 -1.1089,0.69393 -1.0134,0.75167 -0.91914,0.81179 -0.82604,0.87071 -0.73413,0.92724 -0.64221,0.98377 -0.5491,1.0415 -0.45956,1.1004 -0.36766,1.157 -0.27814,1.2147 -0.18502,1.2724 -0.093,1.3313 0,1.3867 0.093,1.4444 0.18741,1.4973 0.2829,1.5526 0.37602,1.6067 0.47151,1.6572 0.56701,1.7102 0.6625,1.7595 0.75918,1.8076 0.85469,1.8581 0.95137,1.9038 1.0481,1.9495 1.1424,1.9952 1.2402,2.0397 1.3369,2.083 1.4336,2.1251 1.5291,2.166 1.627,2.2069 0.0417,0.55082 z m -0.0417,-0.55081 0.19695,0.26217 -0.15517,0.28864 -0.0417,-0.55081 z m -3.1215,10.908 0.0549,1.0174 -0.53239,-0.52555 0.0156,-0.4101 0.0204,-0.4077 0.025,-0.40409 0.031,-0.40169 0.0347,-0.39687 0.0394,-0.39328 0.043,-0.38964 0.0489,-0.38606 0.0525,-0.38365 0.0573,-0.37883 0.0621,-0.37643 0.0656,-0.37161 0.0716,-0.36802 0.074,-0.3656 0.0799,-0.3608 0.0847,-0.35719 0.0883,-0.35357 0.0931,-0.34878 0.0967,-0.34757 0.10266,-0.34154 0.10624,-0.33795 0.11101,-0.33433 0.1146,-0.33073 0.12056,-0.32592 0.12296,-0.32231 0.12892,-0.3175 0.13249,-0.3151 0.13608,-0.30907 0.14085,-0.30667 0.14683,-0.30068 0.14922,-0.29824 0.15398,-0.29346 0.8905,0.48587 -0.14682,0.27662 -0.14205,0.28141 -0.13728,0.28624 -0.13369,0.28983 -0.13132,0.29465 -0.12533,0.29826 -0.12175,0.30307 -0.11818,0.30788 -0.11341,0.31148 -0.10982,0.3139 -0.10623,0.3199 -0.10147,0.32351 -0.0979,0.32712 -0.0944,0.33073 -0.0883,0.33674 -0.0859,0.33915 -0.0799,0.34276 -0.0777,0.34636 -0.0716,0.35118 -0.0692,0.35598 -0.0633,0.35719 -0.0597,0.36199 -0.0549,0.36681 -0.0502,0.36921 -0.0466,0.37403 -0.043,0.37762 -0.0369,0.38125 -0.0346,0.38486 -0.0286,0.38724 -0.025,0.39206 -0.0204,0.39568 -0.0156,0.39808 -0.53238,-0.52556 z m 0.0549,1.0174 -0.5515,0.03 0.0191,-0.55563 0.53239,0.52555 z m 4.4119,-0.39566 0.92154,-0.42093 -0.44763,0.71918 -0.15757,0.004 -0.15637,0.005 -0.1528,0.002 -0.1516,0.002 -0.1516,0.002 -0.1504,10e-4 -0.14803,0.001 -0.14562,0.001 -0.14682,0.001 -0.14564,0.001 -0.14562,0 -0.14206,0.001 -0.14682,10e-4 -0.14564,0 -0.14324,0.001 -0.14562,0.001 -0.14683,0.001 -0.14443,0.001 -0.14803,0.002 -0.1504,0.001 -0.14683,0.002 -0.15159,0.004 -0.1516,0.001 -0.15399,0.005 -0.15757,0.004 -0.15636,0.005 -0.16116,0.006 -0.16234,0.006 -0.16593,0.007 -0.16831,0.007 -0.16951,0.008 -0.17546,0.009 -0.0549,-1.0174 0.17785,-0.009 0.17668,-0.008 0.17069,-0.007 0.16831,-0.007 0.16712,-0.006 0.16353,-0.006 0.16354,-0.005 0.15757,-0.004 0.15636,-0.005 0.15638,-0.004 0.15161,-0.004 0.15398,-0.002 0.15041,-0.001 0.14802,-0.002 0.14921,-0.001 0.14682,-0.001 0.14562,-0.001 0.14565,-0.001 0.14562,0 0.14205,-0.001 0.14683,-10e-4 0.14563,0 0.14325,-0.001 0.14681,-0.001 0.14564,-0.001 0.14801,-0.001 0.14564,-0.001 0.14682,-0.002 0.1516,-0.002 0.1504,-0.002 0.1516,-0.002 0.15518,-0.004 -0.44764,0.71918 z m 0.92154,-0.42093 0.31513,0.69994 -0.76276,0.0193 0.44763,-0.71918 z m 0.91438,-8.9874 0.84274,0.56283 -0.14801,0.23092 -0.14803,0.23452 -0.14562,0.24172 -0.14324,0.24535 -0.13967,0.25135 -0.13609,0.25376 -0.13249,0.25738 -0.12773,0.26337 -0.12295,0.26459 -0.11817,0.26699 -0.11221,0.27179 -0.10624,0.27179 -0.099,0.27422 -0.0931,0.2766 -0.0836,0.27541 -0.0764,0.27782 -0.068,0.27901 -0.0609,0.27782 -0.0489,0.2766 -0.0406,0.27661 -0.031,0.27661 -0.0204,0.273 -0.009,0.2718 10e-4,0.2706 0.0143,0.26939 0.0238,0.26578 0.037,0.26219 0.049,0.26097 0.0621,0.25737 0.074,0.25134 0.0908,0.25015 0.10265,0.24776 -0.92153,0.42093 -0.12414,-0.29827 -0.10744,-0.30065 -0.0908,-0.30668 -0.074,-0.30788 -0.0585,-0.30908 -0.0442,-0.31028 -0.0286,-0.31149 -0.0144,-0.31269 -0.004,-0.31388 0.0119,-0.3127 0.0226,-0.31389 0.0357,-0.31269 0.0454,-0.31028 0.0561,-0.31028 0.0657,-0.3091 0.0752,-0.30547 0.0836,-0.30667 0.0931,-0.30187 0.10025,-0.30065 0.10862,-0.29826 0.11341,-0.29344 0.12175,-0.29105 0.12534,-0.28864 0.1325,-0.28383 0.13727,-0.27781 0.13967,-0.2766 0.14563,-0.2706 0.14921,-0.26579 0.15041,-0.25977 0.15518,-0.25616 0.15518,-0.24896 0.15757,-0.24293 z m 0.009,-2.5761 0.82125,-0.59412 0.11817,0.16477 0.10863,0.15515 0.10025,0.14311 0.0931,0.13469 0.0859,0.12869 0.0777,0.11906 0.074,0.11665 0.0657,0.11186 0.0585,0.10704 0.0537,0.10943 0.0466,0.10944 0.0382,0.10824 0.0323,0.11666 0.0204,0.11785 0.009,0.12027 -0.004,0.12267 -0.0143,0.11546 -0.025,0.11184 -0.0346,0.10824 -0.043,0.10464 -0.0466,0.0985 -0.0537,0.0962 -0.0573,0.095 -0.0585,0.0914 -0.0633,0.095 -0.068,0.10096 -0.074,0.10462 -0.0764,0.10944 -0.0811,0.11666 -0.0848,0.12267 -0.0908,0.13469 -0.0955,0.14191 -0.84273,-0.56283 0.10025,-0.15154 0.0955,-0.13951 0.0896,-0.12988 0.0836,-0.11907 0.0764,-0.10944 0.0692,-0.0997 0.0609,-0.089 0.0561,-0.0854 0.049,-0.0746 0.0382,-0.0637 0.0298,-0.0553 0.0226,-0.0458 0.0143,-0.0349 0.008,-0.0288 0.006,-0.0228 0.002,-0.0168 10e-4,-0.0145 -0.002,-0.0168 -0.004,-0.0241 -0.008,-0.03 -0.0167,-0.0458 -0.0226,-0.0541 -0.0323,-0.0637 -0.0417,-0.0758 -0.049,-0.0854 -0.0597,-0.095 -0.0704,-0.10703 -0.0788,-0.11665 -0.0883,-0.12749 -0.0979,-0.14071 -0.10624,-0.15034 -0.11578,-0.16235 z m -13.621,-36.591 0.89526,0.47625 -0.33901,0.71917 -0.27933,0.74806 -0.21725,0.77812 -0.16115,0.80939 -0.10384,0.83824 -0.0478,0.86711 0.008,0.89837 0.0633,0.92605 0.11459,0.95369 0.16832,0.98137 0.21964,1.009 0.26977,1.0343 0.31753,1.0595 0.36646,1.0836 0.41063,1.1076 0.45838,1.1293 0.50017,1.1509 0.54312,1.1726 0.58373,1.193 0.6231,1.2135 0.66131,1.2315 0.69831,1.2496 0.73292,1.2688 0.76755,1.2844 0.79977,1.3025 0.82963,1.3169 0.86184,1.3313 0.88811,1.347 0.91557,1.3602 0.94183,1.3722 0.9645,1.3867 0.98718,1.3963 -0.82125,0.59411 -0.99196,-1.4035 -0.96929,-1.3915 -0.9466,-1.3794 -0.92033,-1.3674 -0.89289,-1.3542 -0.86662,-1.341 -0.83679,-1.3265 -0.80693,-1.3121 -0.77232,-1.2965 -0.74248,-1.2808 -0.70547,-1.264 -0.66848,-1.2483 -0.63264,-1.2303 -0.59327,-1.2123 -0.55269,-1.1918 -0.50971,-1.175 -0.46792,-1.1557 -0.42257,-1.1341 -0.37602,-1.1149 -0.32946,-1.0956 -0.27932,-1.0728 -0.2292,-1.0499 -0.17546,-1.0295 -0.12176,-1.0066 -0.0657,-0.98376 -0.008,-0.95852 0.0502,-0.93687 0.1134,-0.9104 0.17547,-0.88395 0.24113,-0.85749 0.30797,-0.82742 0.37483,-0.79856 z m 57.658,-13.649 1.0099,-0.0697 -0.51568,0.54359 -3.0547,-0.0505 -2.9747,-0.0193 -2.8959,0.0156 -2.8159,0.0458 -2.7372,0.0806 -2.6548,0.11425 -2.576,0.14553 -2.4948,0.17678 -2.4136,0.21047 -2.3325,0.24053 -2.2525,0.273 -2.1689,0.30307 -2.0878,0.33554 -2.0054,0.3644 -1.923,0.39688 -1.8419,0.42573 -1.7571,0.45581 -1.6748,0.48467 -1.5912,0.51353 -1.5064,0.54359 -1.4241,0.57126 -1.3393,0.59893 -1.2534,0.62778 -1.171,0.65424 -1.0851,0.68069 -1.0003,0.70717 -0.91438,0.73121 -0.82961,0.75646 -0.74607,0.78052 -0.6613,0.80577 -0.57895,0.82863 -0.49418,0.85268 -0.89527,-0.47625 0.53955,-0.92724 0.6243,-0.89597 0.71144,-0.86592 0.7962,-0.83343 0.87974,-0.80217 0.96451,-0.7721 1.0481,-0.74083 1.1304,-0.70716 1.2116,-0.67829 1.294,-0.64702 1.3775,-0.61576 1.4575,-0.5857 1.5399,-0.55562 1.6222,-0.52315 1.7034,-0.4943 1.7834,-0.46301 1.8658,-0.43056 1.9469,-0.40167 2.0269,-0.36921 2.1093,-0.33795 2.188,-0.30547 2.2692,-0.27541 2.3492,-0.24294 2.4304,-0.21046 2.5092,-0.17919 2.5903,-0.14552 2.6691,-0.11426 2.7491,-0.0806 2.8279,-0.0481 2.9079,-0.0156 2.9866,0.0193 3.0642,0.053 -0.51568,0.54361 z m 1.0099,-0.0697 0.0382,0.55561 -0.55387,-0.012 0.51568,-0.54358 z m -1.066,-2.291 0.75919,-0.67349 0.12535,0.30307 0.006,0.0853 0.005,0.0842 0.006,0.0794 0.006,0.0842 0.006,0.0878 0.005,0.083 0.006,0.0806 0.006,0.083 0.006,0.0878 0.005,0.083 0.006,0.0806 0.006,0.083 0.006,0.0878 0.005,0.0818 0.005,0.0795 0.006,0.083 0.007,0.0842 0.006,0.0878 0.005,0.0818 0.005,0.0795 0.006,0.083 0.007,0.0866 0.005,0.083 0.005,0.0782 0.006,0.083 0.007,0.0866 0.005,0.083 0.005,0.0795 0.006,0.0818 0.007,0.0865 0.005,0.0818 0.006,0.0818 -1.0099,0.0697 -0.006,-0.0842 -0.005,-0.0818 -0.005,-0.0793 -0.006,-0.0818 -0.007,-0.0865 -0.005,-0.083 -0.005,-0.0795 -0.006,-0.083 -0.007,-0.0854 -0.005,-0.083 -0.005,-0.0793 -0.006,-0.083 -0.007,-0.0865 -0.005,-0.0842 -0.006,-0.0806 -0.005,-0.0818 -0.006,-0.083 -0.007,-0.0866 -0.005,-0.0842 -0.006,-0.0806 -0.006,-0.083 -0.006,-0.0878 -0.005,-0.083 -0.006,-0.0806 -0.006,-0.083 -0.006,-0.0878 -0.005,-0.083 -0.006,-0.0806 -0.006,-0.0842 -0.006,-0.0865 -0.005,-0.0842 -0.006,-0.083 0.12534,0.30308 z m 0.75919,-0.67349 0.1134,0.12988 0.0119,0.17319 -0.12535,-0.30307 z m -1.0612,-0.38485 0.71622,0.72159 0.0119,-0.70837 0.008,0.008 0.0204,0.0229 0.009,0.0108 10e-4,0.001 0.0204,0.0217 0.009,0.012 -0.008,-0.0108 0.0298,0.0325 0.009,0.012 0.0107,0.0108 0.009,0.012 10e-4,0 0.0191,0.0217 0.0107,0.012 0.0204,0.0217 0.009,0.012 10e-4,0 0.0286,0.0325 0,0.001 10e-4,0 0.0286,0.0325 0,10e-4 0.001,0 0.0286,0.0325 0,10e-4 0.0107,0.0108 0.0191,0.0228 10e-4,0.001 0.008,0.009 0.0107,0.012 0.0119,0.0132 -0.75919,0.67348 -0.007,-0.008 -0.0107,-0.012 -0.0107,-0.012 -0.0179,-0.0205 0,-0.001 -0.0107,-0.0108 -0.0191,-0.0228 0.009,0.0108 -0.0204,-0.0217 -0.0191,-0.0228 0.009,0.0108 -0.0204,-0.0217 -0.0191,-0.0228 0.009,0.0108 -0.0204,-0.0217 -0.009,-0.012 -10e-4,0 -0.0191,-0.0217 -0.0107,-0.0121 -0.0204,-0.0217 -0.009,-0.012 -0.0107,-0.0108 -0.009,-0.012 0.008,0.0108 -0.0298,-0.0325 -0.009,-0.012 -0.001,0 -0.0204,-0.0228 -0.009,-0.0108 -10e-4,-0.001 -0.0131,-0.0132 0.0119,-0.70835 z m -0.0119,0.70835 -0.33304,-0.36079 0.34498,-0.34757 -0.0119,0.70836 z m 0.72935,0.012 -0.001,0.001 -0.71622,-0.72159 10e-4,-0.001 0.40346,-0.14671 0.31276,0.86832 z m -0.31276,-0.86831 1.0767,0.0986 -0.76396,0.7697 -0.31276,-0.86832 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path97" + d="m 380.59,142.66 c 3.3913,0 6.1404,2.7685 6.1404,6.1852 0,3.4167 -2.7491,6.1864 -6.1404,6.1864 -3.3913,0 -6.1404,-2.7697 -6.1404,-6.1864 0,-3.4167 2.7491,-6.1852 6.1404,-6.1852 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path99" + d="m 387.24,148.84 h -1.0122 c 0.0251,-2.1141 -1.2455,-4.1741 -3.1496,-5.0944 -0.76834,-0.3831 -1.6262,-0.58087 -2.4844,-0.58054 v -1.0198 c 2.2555,-0.0199 4.4585,1.2189 5.6317,3.1418 0.6669,1.0576 1.0115,2.3049 1.0146,3.553 z m -6.6465,6.6964 v -1.0198 c 2.0858,0.0245 4.1056,-1.2375 5.0235,-3.106 0.40447,-0.79203 0.60971,-1.6817 0.61058,-2.5702 h 1.0122 c 0.0194,2.2741 -1.212,4.5064 -3.152,5.6948 -1.0402,0.65606 -2.266,0.99894 -3.4943,1.0012 z M 373.947,148.84 h 1.0122 c -0.0245,2.1018 1.23,4.1512 3.1171,5.0788 0.77603,0.395 1.6468,0.59682 2.5169,0.59744 v 1.0198 c -2.2558,0.0197 -4.459,-1.2194 -5.6317,-3.1429 -0.66692,-1.0576 -1.0115,-2.305 -1.0145,-3.5531 z m 6.6465,-6.6952 v 1.0198 c -2.0856,-0.0248 -4.1053,1.2367 -5.0234,3.1048 -0.40444,0.79204 -0.60979,1.6817 -0.61058,2.5702 h -1.0123 c -0.0193,-2.2614 1.198,-4.4816 3.1202,-5.6744 1.0485,-0.66743 2.2842,-1.0193 3.5261,-1.0205 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path101" + d="m 392.62,138.7 c 3.3913,0 6.1404,2.7685 6.1404,6.1852 0,3.4179 -2.7491,6.1864 -6.1404,6.1864 -3.3901,0 -6.1392,-2.7685 -6.1392,-6.1864 0,-3.4155 2.7479,-6.1852 6.1392,-6.1852 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path103" + d="m 399.27,144.88 h -1.0122 c 0.025,-2.114 -1.2455,-4.1741 -3.1497,-5.0944 -0.76834,-0.38311 -1.6262,-0.58087 -2.4844,-0.58055 v -1.0198 c 2.2555,-0.0199 4.4585,1.2189 5.6317,3.1418 0.66711,1.0576 1.0112,2.3052 1.0146,3.553 z m -6.6465,6.6964 v -1.0198 c 2.0734,0.0246 4.0812,-1.2217 5.0069,-3.072 0.41479,-0.80073 0.62638,-1.7031 0.62719,-2.6041 h 1.0122 c 0.0194,2.2745 -1.2121,4.5067 -3.152,5.696 -1.042,0.65377 -2.2651,0.99888 -3.4944,0.99997 z m -6.6453,-6.6964 h 1.0122 c -0.0246,2.0891 1.2138,4.1261 3.0821,5.062 0.78498,0.40473 1.6679,0.61451 2.5508,0.61423 v 1.0198 c -2.2681,0.0199 -4.4828,-1.2334 -5.6508,-3.1743 -0.65291,-1.0518 -0.99149,-2.2857 -0.99423,-3.5217 z m 6.6453,-6.6952 v 1.0198 c -2.0728,-0.0245 -4.0795,1.2217 -5.0056,3.0709 -0.414,0.80107 -0.62737,1.7028 -0.62748,2.604 h -1.0122 c -0.0198,-2.2866 1.2259,-4.53 3.1829,-5.7145 1.0344,-0.64203 2.2463,-0.97796 3.4624,-0.98032 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path105" + d="m 394.22,143.97 c 0.60521,0.819 1.2176,1.6368 1.8383,2.4558 -9.7012,5.3614 -13.717,11.016 -12.77,16.702 0.16115,0.97655 3.1108,11.382 9.7,31.549 4.5026,3.1329 7.8593,5.9375 10.07,8.4125 -0.24829,0.28142 0.71025,1.1594 0.42376,1.3999 0.67325,3.08 -2.7753,2.4534 -5.0899,1.6933 -1.1149,-2.9609 -4.5157,-6.1022 -6.4698,-7.4456 -0.3987,-0.273 -1.8371,-0.98017 -1.9803,-1.4396 -3.5262,-11.349 -7.0679,-21.843 -10.106,-31.615 -3.0523,-9.8196 3.5608,-16.781 14.384,-21.713 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path107" + d="m 396.31,146.88 -0.48703,-0.89238 -0.15876,0.75527 -0.0597,-0.0782 -0.0573,-0.077 -0.0549,-0.0733 -0.0609,-0.0782 -0.0585,-0.0782 -0.0585,-0.077 -0.0573,-0.077 -0.0573,-0.0758 -0.0585,-0.0782 -0.0573,-0.0758 -0.0585,-0.077 -0.0585,-0.0793 -0.0548,-0.0735 -0.0585,-0.0758 -0.0597,-0.0806 -0.0573,-0.077 -0.0573,-0.077 -0.0561,-0.0758 -0.0573,-0.0758 -0.0585,-0.0782 -0.0573,-0.077 -0.0573,-0.077 -0.0561,-0.0758 -0.0585,-0.077 -0.0573,-0.0795 -0.0561,-0.0746 -0.0573,-0.077 -0.0573,-0.077 -0.0561,-0.0758 -0.0585,-0.0794 -0.0561,-0.077 -0.0573,-0.0758 0.81171,-0.60853 0.0573,0.0782 0.0561,0.077 0.0561,0.0746 0.0561,0.0758 0.0573,0.077 0.0573,0.077 0.0585,0.0793 0.0549,0.0746 0.0561,0.0746 0.0585,0.0782 0.0573,0.077 0.0573,0.077 0.0561,0.0758 0.0573,0.0758 0.0585,0.0782 0.0573,0.077 0.0573,0.077 0.0549,0.0733 0.0585,0.0758 0.0598,0.0806 0.0561,0.0746 0.0585,0.077 0.0573,0.0782 0.0561,0.0734 0.0596,0.0782 0.0573,0.077 0.0585,0.077 0.0561,0.0758 0.0561,0.0733 0.0621,0.0806 0.0573,0.077 0.0573,0.0758 -0.15855,0.75553 z m 0.15877,-0.75526 0.35692,0.47023 -0.51569,0.28503 0.15877,-0.75526 z m -12.674,16.928 -0.99793,0.16596 0,10e-4 -0.0777,-0.55922 -0.0477,-0.56165 -0.0167,-0.56163 0.0156,-0.55922 0.0454,-0.56045 0.0764,-0.55922 0.10982,-0.55924 0.13847,-0.55682 0.17189,-0.55442 0.20173,-0.55323 0.23397,-0.55322 0.265,-0.54961 0.29604,-0.5472 0.32707,-0.54481 0.35811,-0.54359 0.39033,-0.5412 0.42138,-0.53878 0.45241,-0.53638 0.48345,-0.53518 0.51567,-0.53157 0.54552,-0.52917 0.57776,-0.52917 0.60997,-0.52555 0.63981,-0.52316 0.67445,-0.52315 0.70547,-0.51955 0.73771,-0.51713 0.76874,-0.51593 0.80216,-0.51475 0.83558,-0.51113 0.86782,-0.50992 0.90005,-0.50752 0.48702,0.89237 -0.88572,0.5003 -0.8511,0.50031 -0.81888,0.50151 -0.78544,0.5027 -0.75204,0.50391 -0.7186,0.50511 -0.68637,0.50512 -0.65296,0.50631 -0.62071,0.50632 -0.5885,0.50872 -0.55626,0.50752 -0.52403,0.50991 -0.49181,0.50753 -0.45957,0.50872 -0.42854,0.50752 -0.3975,0.50993 -0.36645,0.50751 -0.33424,0.50751 -0.30559,0.50632 -0.27216,0.50632 -0.24591,0.50631 -0.21248,0.50511 -0.18502,0.50511 -0.15518,0.50392 -0.12653,0.50391 -0.0978,0.50391 -0.0692,0.50151 -0.0406,0.50511 -0.0131,0.50391 0.0144,0.50391 0.0429,0.50391 0.0704,0.50631 0,0.001 z m 0,-0.001 0,0.001 -0.0226,-0.13711 0.0226,0.1359 z m 9.4887,31.214 -0.57535,0.83945 -0.1922,-0.26098 -0.60878,-1.8617 -0.58491,-1.8064 -0.56582,-1.7475 -0.54313,-1.6921 -0.52403,-1.6344 -0.50255,-1.5779 -0.48343,-1.5201 -0.46197,-1.4648 -0.44287,-1.4071 -0.42138,-1.3506 -0.40346,-1.2952 -0.38197,-1.2363 -0.36528,-1.1822 -0.34378,-1.1257 -0.3247,-1.0668 -0.30557,-1.0126 -0.2877,-0.95611 -0.26976,-0.89958 -0.24948,-0.84426 -0.23158,-0.78773 -0.21487,-0.73242 -0.19457,-0.67589 -0.17785,-0.62057 -0.15997,-0.56525 -0.14324,-0.5099 -0.12415,-0.45461 -0.10862,-0.39808 -0.0908,-0.34276 -0.0752,-0.29104 -0.0573,-0.23692 -0.0417,-0.184 -0.0286,-0.14432 0.99794,-0.16597 0.0191,0.0937 0.0369,0.16477 0.0549,0.22249 0.0729,0.28142 0.0883,0.33794 0.10624,0.39327 0.12414,0.44979 0.14085,0.50512 0.15996,0.56283 0.17786,0.61816 0.19457,0.67349 0.21248,0.73001 0.23157,0.78533 0.24949,0.84185 0.26739,0.89718 0.28768,0.95611 0.30559,1.0102 0.32468,1.0668 0.34378,1.1233 0.36289,1.1798 0.38198,1.2363 0.40348,1.2929 0.42136,1.3482 0.44286,1.4071 0.46197,1.4624 0.48105,1.5201 0.50256,1.5755 0.52402,1.6344 0.54313,1.6897 0.56581,1.7475 0.58492,1.804 0.6064,1.8617 -0.19219,-0.26097 z m -0.57535,0.83945 -0.13848,-0.0962 -0.0537,-0.16476 0.19219,0.26098 z m 10.736,8.3308 -0.75681,-0.67589 0.002,0.6783 -0.20532,-0.22851 -0.21486,-0.2297 -0.21964,-0.23332 -0.228,-0.23572 -0.23277,-0.23692 -0.24112,-0.23933 -0.2471,-0.24053 -0.25425,-0.24292 -0.26143,-0.24535 -0.26858,-0.24895 -0.27335,-0.24774 -0.28291,-0.25256 -0.28648,-0.25377 -0.29603,-0.25496 -0.30202,-0.25857 -0.30798,-0.25856 -0.31513,-0.26217 -0.32349,-0.26338 -0.32826,-0.2658 -0.33662,-0.26818 -0.3414,-0.2694 -0.34976,-0.2718 -0.35572,-0.273 -0.36288,-0.2754 -0.36885,-0.27902 -0.37721,-0.27781 -0.38318,-0.28262 -0.39034,-0.28383 -0.3963,-0.28623 -0.40346,-0.28744 -0.40945,-0.28863 -0.41779,-0.29104 0.57536,-0.83945 0.42017,0.29345 0.41422,0.29344 0.40825,0.28984 0.39869,0.28864 0.39511,0.28622 0.38556,0.28503 0.38198,0.28263 0.37364,0.28142 0.36766,0.27782 0.3605,0.2778 0.35452,0.27661 0.34617,0.2718 0.3414,0.273 0.33304,0.26819 0.32826,0.2682 0.31992,0.26699 0.31513,0.26337 0.30678,0.26338 0.30082,0.25978 0.29364,0.25857 0.28769,0.25736 0.28052,0.25497 0.27573,0.25375 0.2662,0.25015 0.26142,0.25016 0.25425,0.24775 0.24829,0.24653 0.23993,0.24415 0.23516,0.24293 0.22681,0.24053 0.22203,0.23932 0.21485,0.23813 0.002,0.67829 z m -0.002,-0.6783 0.30201,0.33795 -0.29962,0.34035 -0.002,-0.6783 z m 0.54194,1.6308 -0.98837,0.21888 0.1707,-0.50029 -0.0536,0.0565 -0.0442,0.0733 -0.0226,0.0697 -0.007,0.0565 0,0.0277 0.004,0.0217 -10e-4,-10e-4 -0.005,-0.0157 -0.006,-0.0168 -0.0143,-0.0277 -0.0191,-0.0385 -0.0238,-0.042 -0.0238,-0.0445 -0.0287,-0.0481 -0.0263,-0.0444 -0.0323,-0.0518 -0.037,-0.0613 -0.0298,-0.0505 -0.0347,-0.0577 -0.0346,-0.0613 -0.0347,-0.0637 -0.0323,-0.0625 -0.0275,-0.0589 -0.0323,-0.071 -0.0286,-0.0782 -0.0238,-0.0818 -0.0167,-0.0842 -0.0107,-0.0974 0.004,-0.12026 0.0263,-0.12628 0.0573,-0.13349 0.0811,-0.11306 0.75681,0.67589 0.0405,-0.0577 0.031,-0.0709 0.0119,-0.0565 10e-4,-0.0458 -10e-4,-0.0181 0.002,0.007 0.005,0.0132 0.0107,0.0253 0.0204,0.0397 0.0179,0.0385 0.0227,0.0397 0.025,0.0445 0.0298,0.0481 0.0323,0.0553 0.0275,0.047 0.0346,0.0541 0.0358,0.0613 0.0335,0.0577 0.0335,0.059 0.031,0.0589 0.031,0.0601 0.031,0.0662 0.0323,0.077 0.0238,0.071 0.0227,0.083 0.0156,0.10096 0.002,0.10223 -0.0144,0.12628 -0.0442,0.13229 -0.0752,0.12869 -0.10148,0.10462 0.17069,-0.5003 z m -0.98837,0.21888 -0.0657,-0.30186 0.23636,-0.19843 -0.1707,0.50029 z m -5.0684,1.7643 0.9454,-0.36079 -0.31632,-0.30427 0.21248,0.0685 0.22082,0.0673 0.22442,0.0649 0.2268,0.0637 0.22801,0.059 0.23038,0.0541 0.23037,0.0505 0.22802,0.0445 0.22559,0.0385 0.22322,0.0325 0.21845,0.0253 0.21248,0.0168 0.20531,0.0108 0.19815,0 0.18503,-0.007 0.17666,-0.0168 0.16235,-0.0253 0.14921,-0.0349 0.13728,-0.0432 0.11698,-0.0481 0.10147,-0.0553 0.0896,-0.0625 0.0729,-0.0662 0.0644,-0.077 0.0549,-0.0854 0.0442,-0.0985 0.0357,-0.11906 0.0263,-0.1395 0.0107,-0.16598 -0.005,-0.19001 -0.0226,-0.21768 -0.0454,-0.24294 0.98838,-0.21888 0.0573,0.31268 0.0323,0.29706 0.007,0.28142 -0.0204,0.2694 -0.0454,0.25496 -0.074,0.23932 -0.10147,0.22369 -0.12893,0.20325 -0.1504,0.18041 -0.17308,0.15754 -0.18503,0.12988 -0.19934,0.11065 -0.21009,0.0865 -0.21367,0.0673 -0.22323,0.0517 -0.2268,0.0349 -0.23395,0.024 -0.23755,0.009 -0.24112,-0.002 -0.24353,-0.0108 -0.2459,-0.0193 -0.24948,-0.03 -0.24948,-0.0349 -0.25187,-0.0433 -0.25187,-0.0493 -0.24948,-0.0553 -0.24709,-0.0589 -0.2471,-0.0637 -0.24113,-0.0662 -0.23635,-0.0697 -0.23276,-0.0697 -0.22681,-0.0734 -0.31634,-0.30427 z m 0.31633,0.30427 -0.23038,-0.0758 -0.0859,-0.22849 0.31633,0.30426 z m -6.5976,-7.5093 0.5682,-0.84185 10e-4,0 0.19458,0.1371 0.20053,0.14553 0.20771,0.15393 0.21606,0.16597 0.21844,0.17438 0.22441,0.18161 0.2292,0.19001 0.23277,0.20084 0.23516,0.20687 0.23635,0.21286 0.23994,0.22129 0.23993,0.2273 0.24112,0.23331 0.24113,0.24173 0.23755,0.24414 0.23873,0.25135 0.23396,0.25617 0.23278,0.26098 0.228,0.26458 0.2244,0.27059 0.21965,0.27181 0.21366,0.2766 0.20652,0.28142 0.19934,0.28142 0.19339,0.28503 0.18382,0.28744 0.17547,0.28983 0.16473,0.29225 0.15399,0.29224 0.14325,0.29465 0.1325,0.29585 0.11817,0.29706 -0.94541,0.36079 -0.10385,-0.25857 -0.11579,-0.26218 -0.12892,-0.26338 -0.13966,-0.26578 -0.1504,-0.26579 -0.16115,-0.26578 -0.16951,-0.2658 -0.17906,-0.26577 -0.1874,-0.26458 -0.19458,-0.26219 -0.20173,-0.25977 -0.20771,-0.25977 -0.21247,-0.25616 -0.21845,-0.25256 -0.22083,-0.24895 -0.22442,-0.24414 -0.2268,-0.23933 -0.23038,-0.23691 -0.22918,-0.22971 -0.23158,-0.2237 -0.23039,-0.22008 -0.23039,-0.21168 -0.22918,-0.20564 -0.22561,-0.19964 -0.22084,-0.18881 -0.21964,-0.18281 -0.21486,-0.17439 -0.2089,-0.16476 -0.20172,-0.15634 -0.19816,-0.14673 -0.18861,-0.1383 -0.18025,-0.12508 10e-4,0 z m 0.5682,-0.84185 10e-4,0 0.29962,0.20565 -0.30081,-0.20565 z m -2.7467,-0.8659 0.96451,-0.30548 -0.008,-0.0217 -0.002,-0.005 0.009,0.0132 0.0167,0.0217 0.0215,0.024 0.031,0.0313 0.0394,0.036 0.0501,0.0432 0.0489,0.0409 0.0561,0.042 0.0633,0.0481 0.0668,0.047 0.0656,0.0458 0.0728,0.047 0.074,0.0505 0.0717,0.0445 0.0789,0.0481 0.0799,0.0493 0.0764,0.047 0.0777,0.0458 0.08,0.047 0.0728,0.0432 0.0752,0.042 0.0764,0.0446 0.0704,0.0409 0.068,0.0397 0.0657,0.0385 0.0645,0.0372 0.0585,0.036 0.0609,0.0372 0.0525,0.0337 0.0477,0.0325 -0.56819,0.84185 -0.0335,-0.0205 -0.0382,-0.0265 -0.0417,-0.0253 -0.0536,-0.0312 -0.0573,-0.0349 -0.0633,-0.036 -0.068,-0.0397 -0.0704,-0.0409 -0.0717,-0.042 -0.0777,-0.0445 -0.0823,-0.0481 -0.0777,-0.047 -0.0823,-0.0481 -0.0859,-0.0517 -0.08,-0.0493 -0.0836,-0.0505 -0.0883,-0.0565 -0.0811,-0.053 -0.0823,-0.0542 -0.0823,-0.0577 -0.0788,-0.0565 -0.0752,-0.0553 -0.0777,-0.059 -0.0752,-0.0625 -0.0668,-0.0577 -0.068,-0.0625 -0.0668,-0.0673 -0.0645,-0.0721 -0.0573,-0.0746 -0.0525,-0.0782 -0.0525,-0.0962 -0.0417,-0.10825 z m -10.106,-31.615 0.9645,-0.30547 0.28648,0.91881 0.28889,0.92123 0.29245,0.92604 0.29364,0.93086 0.29604,0.93445 0.29963,0.93927 0.302,0.94409 0.30439,0.94768 0.30677,0.9525 0.30798,0.95732 0.31037,0.96211 0.31273,0.96572 0.31395,0.97175 0.31634,0.97535 0.31752,0.97896 0.3199,0.98376 0.31992,0.99099 0.3223,0.99338 0.32349,0.9994 0.3235,1.003 0.32587,1.0078 0.32588,1.0126 0.32707,1.0186 0.32826,1.0222 0.32828,1.0271 0.32945,1.0331 0.33065,1.0367 0.32947,1.0415 0.33064,1.0487 0.33066,1.0511 0.33065,1.0571 0.33066,1.0619 -0.96451,0.30548 -0.33065,-1.062 -0.33066,-1.0547 -0.33065,-1.0511 -0.33064,-1.0463 -0.32948,-1.0415 -0.32826,-1.0367 -0.32946,-1.0307 -0.32827,-1.0271 -0.32826,-1.0223 -0.32707,-1.0162 -0.32588,-1.0126 -0.32587,-1.0078 -0.3235,-1.003 -0.32349,-0.9994 -0.3223,-0.99338 -0.31991,-0.98858 -0.31992,-0.98377 -0.31751,-0.98137 -0.31633,-0.97535 -0.31394,-0.97174 -0.31275,-0.96572 -0.31037,-0.96212 -0.30797,-0.95732 -0.30678,-0.95249 -0.30439,-0.9501 -0.30201,-0.94407 -0.29961,-0.94168 -0.29843,-0.93446 -0.29365,-0.93326 -0.29245,-0.92603 -0.28888,-0.92364 -0.28648,-0.91882 z m 15.272,-22.17 -0.81172,0.60853 0.61476,0.15996 -0.99435,0.46302 -0.9669,0.47744 -0.93943,0.48587 -0.912,0.50031 -0.88213,0.51233 -0.8535,0.52195 -0.82126,0.53518 -0.79022,0.54721 -0.75561,0.55922 -0.72099,0.57127 -0.68637,0.58448 -0.65058,0.59652 -0.61474,0.60854 -0.57417,0.61937 -0.53836,0.63379 -0.49658,0.64463 -0.45718,0.65904 -0.41541,0.67108 -0.37363,0.68311 -0.33184,0.69633 -0.28648,0.70836 -0.24353,0.7252 -0.19934,0.73722 -0.1528,0.75166 -0.10623,0.76729 -0.0573,0.78172 -0.009,0.79976 0.0394,0.8154 0.0919,0.83464 0.14086,0.84907 0.19695,0.86832 0.25068,0.88635 -0.96451,0.30547 -0.265,-0.93927 -0.20889,-0.92123 -0.1528,-0.9092 -0.0967,-0.89238 -0.0442,-0.87792 0.0119,-0.86231 0.0621,-0.84666 0.11579,-0.83223 0.16473,-0.8142 0.21605,-0.79976 0.26262,-0.78293 0.31036,-0.76608 0.35572,-0.74925 0.40228,-0.73362 0.44405,-0.71677 0.48584,-0.69996 0.52761,-0.6855 0.567,-0.66747 0.60521,-0.65304 0.6434,-0.6374 0.67921,-0.62298 0.71264,-0.60614 0.74964,-0.5929 0.78187,-0.57847 0.8141,-0.56405 0.84514,-0.55201 0.87498,-0.53638 0.90363,-0.52436 0.93346,-0.50992 0.95854,-0.4979 0.98599,-0.48467 1.0111,-0.47264 0.61475,0.15996 z m -0.61476,-0.15996 0.37123,-0.16957 0.24353,0.32953 -0.61476,-0.15996 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path109" + d="m 355.95,216.87 -0.36766,1.9796 c -2.8243,0.66024 -5.2403,0.82502 -7.2457,0.49428 3.3555,-3.2989 5.8539,-4 7.6134,-2.4738 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path111" + d="m 355.08,218.76 0.36766,-1.9796 0.99316,0.18762 -0.36766,1.9796 -0.38199,0.40289 L 355.08,218.76 z m 0.99316,0.18762 -0.0609,0.32832 -0.32111,0.0746 0.38199,-0.40289 z m -8.0956,0.036 0.70666,0.7288 -0.27216,-0.8671 0.18264,0.0288 0.18023,0.0253 0.18862,0.0217 0.1886,0.0205 0.18979,0.0181 0.19218,0.0133 0.19816,0.012 0.19815,0.009 0.20175,0.006 0.20531,0.002 0.20532,0.001 0.20769,-0.002 0.21128,-0.005 0.21488,-0.008 0.21605,-0.0108 0.21964,-0.0145 0.22203,-0.0157 0.22442,-0.0193 0.22679,-0.0217 0.2292,-0.0253 0.23038,-0.0277 0.23516,-0.0312 0.23634,-0.0337 0.24114,-0.0372 0.24112,-0.0385 0.24353,-0.042 0.24827,-0.0458 0.24948,-0.047 0.25069,-0.0505 0.25425,-0.0542 0.25784,-0.0565 0.25903,-0.0602 0.22919,0.9934 -0.26858,0.0602 -0.265,0.0589 -0.26142,0.0565 -0.26261,0.053 -0.25904,0.0493 -0.25545,0.0458 -0.25545,0.0445 -0.25068,0.0409 -0.24828,0.0372 -0.24829,0.036 -0.2447,0.0313 -0.24233,0.03 -0.24113,0.0253 -0.23873,0.024 -0.23635,0.0193 -0.23158,0.0181 -0.23158,0.0145 -0.23038,0.0108 -0.22442,0.008 -0.2256,0.007 -0.22442,0.002 -0.21964,-0.001 -0.21725,-0.005 -0.21605,-0.006 -0.21249,-0.009 -0.21008,-0.012 -0.20891,-0.0157 -0.20889,-0.0181 -0.20293,-0.0228 -0.20054,-0.0241 -0.20174,-0.0277 -0.19695,-0.0312 -0.27216,-0.86712 z m 0.27216,0.86711 -0.98839,-0.16356 0.71623,-0.70355 0.27216,0.86711 z m 8.1911,-2.8827 -0.99316,-0.18762 0.16711,0.47985 -0.14324,-0.11785 -0.14681,-0.10464 -0.14803,-0.0925 -0.14921,-0.0806 -0.15398,-0.0697 -0.15637,-0.0577 -0.15997,-0.0482 -0.16114,-0.0348 -0.1707,-0.024 -0.17309,-0.0145 -0.17905,-0.002 -0.18382,0.0108 -0.191,0.0217 -0.19696,0.0349 -0.20531,0.047 -0.2101,0.0602 -0.21607,0.0745 -0.2244,0.0865 -0.2292,0.10223 -0.23634,0.11666 -0.24233,0.12868 -0.24828,0.14552 -0.25426,0.15875 -0.26142,0.17439 -0.26501,0.19001 -0.27335,0.20445 -0.27813,0.21768 -0.28291,0.23453 -0.28886,0.25015 -0.29485,0.26578 -0.30201,0.27902 -0.30439,0.29585 -0.70666,-0.7288 0.31871,-0.30789 0.31395,-0.29345 0.30917,-0.2778 0.30557,-0.26219 0.29962,-0.24895 0.29724,-0.23451 0.29244,-0.21888 0.28889,-0.20446 0.28528,-0.19121 0.28052,-0.17559 0.27694,-0.16236 0.27574,-0.14793 0.26978,-0.13108 0.26739,-0.11906 0.26501,-0.10343 0.26141,-0.089 0.26023,-0.0746 0.25544,-0.0589 0.25187,-0.0444 0.25069,-0.0288 0.24828,-0.0132 0.2459,0.002 0.23993,0.0193 0.23516,0.0337 0.23516,0.0517 0.2268,0.0673 0.22084,0.0818 0.21605,0.0985 0.21129,0.11184 0.20292,0.1287 0.19697,0.1407 0.19099,0.15634 0.16712,0.47987 z m -0.16712,-0.47987 0.22084,0.19123 -0.0537,0.28864 -0.16712,-0.47987 z m -0.32946,0.38605 0.49658,0.0937 -0.49658,-0.0937 z m 0.32946,-0.38605 0.22084,0.19123 -0.0537,0.28864 -0.16712,-0.47987 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path113" + d="m 355.64,212.34 c 1.7702,0.39447 1.9338,0.69514 2.7061,0.82983 0.99196,0.17198 2.3587,0.10222 3.2994,-0.72881 3.8377,-2.3187 3.9201,1.8581 2.4292,4.9862 -1.0815,2.2658 -0.52642,4.8262 0.50494,6.7661 1.22,2.291 0.96091,3.3398 0.0978,3.9591 -0.59684,0.39327 -1.1662,0.76248 -1.6771,1.0908 -1.0337,1.2291 -1.8192,1.0174 -1.9648,-0.5905 -3.8318,-1.5887 -5.1007,-5.2916 -6.2478,-8.5508 -1.6771,-4.7661 -7.771,-5.893 0.8511,-7.7619 h 10e-4 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path115" + d="m 358.43,212.66 -0.17189,1.003 0,0 -0.0823,-0.0145 -0.0777,-0.0168 -0.0728,-0.0169 -0.074,-0.0181 -0.074,-0.0205 -0.0704,-0.0217 -0.0645,-0.0217 -0.0645,-0.0217 -0.0645,-0.024 -0.0609,-0.0217 -0.0597,-0.0228 -0.0657,-0.0253 -0.0573,-0.024 -0.0597,-0.0228 -0.0668,-0.0265 -0.0621,-0.0253 -0.0657,-0.0253 -0.0704,-0.0277 -0.0716,-0.0265 -0.0764,-0.0277 -0.0777,-0.0289 -0.0823,-0.0277 -0.0931,-0.03 -0.0955,-0.03 -0.099,-0.03 -0.10863,-0.0312 -0.11579,-0.0337 -0.12295,-0.0325 -0.12891,-0.0337 -0.13848,-0.0337 -0.1504,-0.0348 -0.15517,-0.036 0.21724,-0.99579 0.16713,0.0385 0.15518,0.0372 0.14801,0.036 0.14325,0.036 0.1325,0.0372 0.12295,0.0337 0.11817,0.0337 0.11579,0.0349 0.10505,0.0348 0.0979,0.0325 0.0967,0.0325 0.0896,0.0312 0.0836,0.03 0.0811,0.0312 0.0728,0.0277 0.0728,0.0277 0.0692,0.0277 0.0597,0.024 0.0645,0.0253 0.0597,0.024 0.0514,0.0205 0.0549,0.0205 0.0537,0.0217 0.0477,0.0168 0.0502,0.0168 0.0525,0.0167 0.0466,0.0145 0.0477,0.0133 0.0502,0.0132 0.0561,0.012 0.0585,0.012 0.0585,0.012 0,0 z m 2.9532,-0.66387 0.52045,0.87312 0.0729,-0.0541 -0.10624,0.0902 -0.10743,0.083 -0.10982,0.0795 -0.1146,0.0746 -0.11221,0.0673 -0.11579,0.0649 -0.12055,0.0602 -0.11819,0.0542 -0.11817,0.0493 -0.12056,0.0458 -0.12414,0.0433 -0.12056,0.036 -0.12176,0.0337 -0.12414,0.03 -0.12176,0.0265 -0.12415,0.0228 -0.12176,0.0181 -0.11937,0.0169 -0.12414,0.0132 -0.11936,0.009 -0.11938,0.007 -0.12175,0.004 -0.11579,0.002 -0.11699,0 -0.11817,-0.005 -0.10982,-0.005 -0.1146,-0.007 -0.11101,-0.009 -0.10982,-0.0108 -0.10863,-0.0144 -0.10266,-0.0145 -0.10503,-0.0181 0.17189,-1.003 0.0836,0.0132 0.0883,0.0121 0.0871,0.012 0.0908,0.008 0.0919,0.009 0.0908,0.005 0.0978,0.005 0.0942,0.002 0.0955,0 0.099,0 0.0931,-0.004 0.0979,-0.007 0.0979,-0.007 0.0955,-0.0108 0.0978,-0.012 0.0979,-0.0156 0.0955,-0.0181 0.0955,-0.0193 0.0931,-0.0228 0.093,-0.0265 0.0942,-0.0288 0.0883,-0.0288 0.0896,-0.036 0.092,-0.0372 0.0871,-0.0397 0.0823,-0.0408 0.0823,-0.0458 0.0836,-0.0505 0.0787,-0.0505 0.0764,-0.0553 0.0764,-0.059 0.0728,-0.0613 0.0728,-0.0542 z m -0.0728,0.0542 0.0358,-0.0325 0.0369,-0.0217 -0.0728,0.0542 z m 3.2182,5.5899 -0.91197,-0.44259 0,0.001 0.12773,-0.28023 0.11936,-0.28623 0.10982,-0.28864 0.099,-0.29104 0.0896,-0.29104 0.0788,-0.28863 0.0668,-0.28624 0.0561,-0.28262 0.0429,-0.27661 0.0323,-0.26819 0.0203,-0.25857 0.006,-0.24534 -0.006,-0.2333 -0.0191,-0.2189 -0.0298,-0.20084 -0.0417,-0.18401 -0.0514,-0.16115 -0.0609,-0.1371 -0.068,-0.11786 -0.0729,-0.0938 -0.0788,-0.077 -0.0859,-0.0613 -0.092,-0.0444 -0.11339,-0.0337 -0.1349,-0.0193 -0.15875,0 -0.18981,0.0217 -0.21606,0.0493 -0.2459,0.0806 -0.27336,0.11183 -0.29841,0.14793 -0.32469,0.18521 -0.52045,-0.87312 0.37243,-0.21167 0.35573,-0.17679 0.34019,-0.14071 0.32469,-0.10463 0.31394,-0.071 0.29962,-0.036 0.29007,0 0.27813,0.0408 0.26142,0.077 0.24471,0.11906 0.21486,0.15274 0.1886,0.1804 0.15876,0.20685 0.13012,0.2237 0.10624,0.24053 0.0799,0.25255 0.0609,0.26098 0.0417,0.273 0.0238,0.28142 0.008,0.29104 -0.008,0.29826 -0.0226,0.30667 -0.0371,0.30909 -0.0501,0.31509 -0.0633,0.31871 -0.074,0.3199 -0.0883,0.32471 -0.099,0.32231 -0.11101,0.32231 -0.12177,0.3199 -0.1313,0.3151 -0.14205,0.31149 0,0.001 z m 0.4942,6.3043 -0.8905,0.48106 -0.10025,-0.19362 -0.0967,-0.19483 -0.0942,-0.20204 -0.0896,-0.20325 -0.0859,-0.20445 -0.0836,-0.21047 -0.0776,-0.21406 -0.0728,-0.21528 -0.0692,-0.21768 -0.0633,-0.22129 -0.0597,-0.22128 -0.0525,-0.2261 -0.0489,-0.2273 -0.0406,-0.22851 -0.0369,-0.23091 -0.0298,-0.2333 -0.0226,-0.23333 -0.0167,-0.23331 -0.009,-0.23812 -0.002,-0.23572 0.006,-0.23813 0.0143,-0.23812 0.0204,-0.23813 0.0298,-0.24053 0.0382,-0.23812 0.0478,-0.23692 0.0561,-0.23932 0.0656,-0.23813 0.0752,-0.23452 0.0848,-0.23452 0.0942,-0.23452 0.10505,-0.23211 0.91198,0.44259 -0.0883,0.19362 -0.08,0.19602 -0.0704,0.19844 -0.0633,0.19845 -0.0561,0.19963 -0.0466,0.20084 -0.0406,0.20325 -0.0335,0.20204 -0.025,0.20206 -0.0179,0.20445 -0.0119,0.20444 -0.004,0.20445 0,0.20446 0.009,0.20444 0.0144,0.20446 0.0204,0.20685 0.025,0.20204 0.0323,0.20205 0.0382,0.20445 0.0417,0.20084 0.0478,0.19965 0.0525,0.19964 0.0561,0.19723 0.0621,0.19362 0.0657,0.19362 0.0704,0.19003 0.074,0.18882 0.0787,0.1876 0.08,0.18401 0.0847,0.1804 0.0871,0.17799 0.0908,0.17438 z m -0.0704,4.6266 -0.55387,-0.85388 -0.0167,0.012 0.0609,-0.0458 0.0561,-0.047 0.0561,-0.0505 0.049,-0.0481 0.0417,-0.047 0.0417,-0.053 0.0382,-0.053 0.0335,-0.0541 0.0286,-0.0542 0.025,-0.0577 0.0238,-0.0637 0.0203,-0.0662 0.0167,-0.0721 0.0144,-0.077 0.009,-0.077 0.005,-0.0878 0,-0.0938 -0.005,-0.0986 -0.009,-0.10823 -0.0144,-0.11306 -0.0226,-0.12147 -0.0275,-0.12867 -0.0347,-0.13351 -0.0417,-0.1407 -0.0501,-0.15153 -0.0561,-0.15875 -0.0645,-0.16356 -0.0717,-0.17199 -0.0811,-0.17918 -0.0883,-0.18883 -0.0979,-0.19482 -0.10504,-0.20325 0.8905,-0.48106 0.11459,0.22008 0.10505,0.21166 0.0979,0.20566 0.0908,0.20084 0.0811,0.19604 0.074,0.19001 0.0657,0.18281 0.0597,0.17799 0.0514,0.17438 0.0442,0.17198 0.0347,0.16477 0.0298,0.15995 0.0216,0.15875 0.0143,0.15153 0.007,0.15153 -0.002,0.14432 -0.007,0.14313 -0.0167,0.1419 -0.0238,0.1347 -0.031,0.12989 -0.0394,0.12868 -0.0454,0.12147 -0.0537,0.12026 -0.0621,0.11426 -0.0668,0.10943 -0.0717,0.10106 -0.0752,0.0962 -0.0848,0.095 -0.0871,0.0866 -0.0871,0.0794 -0.0942,0.0782 -0.0967,0.0721 -0.0167,0.012 z m 0.0167,-0.0121 -0.0167,0.0121 0.0167,-0.0121 z m -1.5852,1.0054 -0.77113,-0.65905 0.11341,-0.0998 0.0466,-0.03 0.0514,-0.0337 0.0489,-0.0312 0.049,-0.0312 0.0477,-0.03 0.049,-0.0313 0.0502,-0.0325 0.0502,-0.0325 0.0525,-0.0348 0.0502,-0.0312 0.0477,-0.0312 0.0513,-0.0337 0.0537,-0.0349 0.0525,-0.0337 0.0514,-0.0337 0.0537,-0.0348 0.0537,-0.0349 0.0525,-0.0337 0.0525,-0.0337 0.0537,-0.0349 0.0502,-0.0325 0.0537,-0.036 0.0561,-0.036 0.0549,-0.036 0.0537,-0.0349 0.0537,-0.036 0.0561,-0.0372 0.0537,-0.0337 0.0549,-0.0372 0.0585,-0.0385 0.0525,-0.0337 0.0561,-0.0385 0.55387,0.85388 -0.0561,0.036 -0.0573,0.0385 -0.0537,0.0337 -0.0549,0.0372 -0.0585,0.0385 -0.0537,0.0349 -0.0561,0.036 -0.0537,0.0349 -0.0549,0.036 -0.0513,0.0337 -0.0537,0.036 -0.0573,0.0372 -0.0536,0.0348 -0.0549,0.036 -0.0525,0.0337 -0.0537,0.0349 -0.0514,0.0325 -0.0513,0.0337 -0.0525,0.0337 -0.0489,0.0325 -0.0513,0.0337 -0.0549,0.036 -0.0525,0.0337 -0.0477,0.03 -0.0501,0.0325 -0.0502,0.0325 -0.0513,0.0337 -0.0502,0.0325 -0.049,0.0312 -0.0489,0.0312 -0.0466,0.0288 -0.0489,0.0325 0.11341,-0.0997 z m -0.77113,-0.65905 0.049,-0.0589 0.0645,-0.0409 -0.1134,0.0998 z m -1.7714,0.21046 0.38436,-0.94288 0.31156,0.42574 0.0131,0.13109 0.0167,0.12027 0.0204,0.11184 0.0216,0.10223 0.0238,0.0902 0.025,0.0782 0.0275,0.0709 0.0263,0.0613 0.0263,0.0493 0.0226,0.0372 0.0191,0.0253 0.0167,0.0168 0.0156,0.0132 0.006,0.005 0.002,0.001 0.002,0.001 0.006,0.001 0.005,0.001 0.009,-0.001 0.0226,-0.004 0.0263,-0.006 0.0369,-0.0132 0.0442,-0.0193 0.0513,-0.0277 0.0585,-0.036 0.0621,-0.0444 0.0692,-0.0542 0.0728,-0.0625 0.0752,-0.0709 0.0799,-0.0806 0.0836,-0.0914 0.0871,-0.0997 0.77113,0.65906 -0.10624,0.12146 -0.10505,0.11545 -0.10624,0.10704 -0.10624,0.0999 -0.10623,0.0914 -0.10743,0.0854 -0.10982,0.0758 -0.10863,0.0673 -0.1134,0.0613 -0.11579,0.0505 -0.11817,0.042 -0.12415,0.03 -0.12295,0.0181 -0.13369,0.004 -0.13132,-0.0132 -0.12533,-0.0277 -0.12414,-0.0444 -0.11938,-0.0613 -0.10863,-0.0745 -0.0942,-0.083 -0.0883,-0.0938 -0.0788,-0.10463 -0.068,-0.10704 -0.0597,-0.11426 -0.0525,-0.11665 -0.0466,-0.12388 -0.0417,-0.13108 -0.0357,-0.1383 -0.031,-0.14312 -0.025,-0.14794 -0.0215,-0.15634 -0.0179,-0.16236 0.31155,0.42574 z m 0.38436,-0.94288 0.2841,0.11786 0.0275,0.30788 -0.31156,-0.42574 z m -6.9163,-7.9086 0.95256,-0.34156 0.10744,0.30668 0.10982,0.30788 0.10981,0.30908 0.11222,0.30908 0.11339,0.30908 0.11699,0.30788 0.11937,0.30788 0.12415,0.30547 0.12652,0.30547 0.13131,0.30187 0.13489,0.29825 0.14205,0.29466 0.14683,0.29344 0.1516,0.28743 0.15875,0.28263 0.16593,0.27781 0.17309,0.273 0.17786,0.26579 0.18859,0.25977 0.19697,0.25376 0.20412,0.24775 0.21248,0.23813 0.22442,0.2321 0.23276,0.22248 0.24232,0.21529 0.25426,0.20565 0.2662,0.19603 0.27812,0.18761 0.29008,0.17799 0.30319,0.16718 0.31633,0.15754 0.33185,0.14551 -0.38436,0.94289 -0.37245,-0.16476 -0.35691,-0.1768 -0.34378,-0.18882 -0.32827,-0.20203 -0.31394,-0.21167 -0.302,-0.22249 -0.28769,-0.23453 -0.27574,-0.24172 -0.26142,-0.25136 -0.25067,-0.26098 -0.23874,-0.26698 -0.228,-0.2742 -0.21606,-0.28022 -0.2077,-0.28623 -0.19697,-0.29224 -0.1874,-0.29706 -0.18025,-0.30187 -0.1707,-0.30427 -0.16353,-0.30907 -0.15638,-0.31029 -0.14921,-0.31388 -0.14443,-0.3151 -0.13608,-0.3163 -0.1337,-0.3175 -0.12652,-0.3175 -0.12416,-0.3175 -0.11937,-0.3175 -0.11817,-0.3163 -0.11221,-0.31388 -0.11221,-0.3115 -0.10982,-0.31028 -0.10743,-0.30668 z m 1.3274,-8.4426 0,1.0198 0.10624,-0.012 -0.7568,0.17077 -0.67205,0.16718 -0.58969,0.16356 -0.50971,0.15874 -0.43332,0.15515 -0.3581,0.15153 -0.28529,0.14432 -0.21248,0.1359 -0.14682,0.12146 -0.0871,0.0985 -0.0394,0.0722 -0.0156,0.0565 -10e-4,0.0662 0.0191,0.0925 0.0478,0.12748 0.0811,0.15515 0.11698,0.1792 0.14922,0.20203 0.17547,0.21768 0.20055,0.23573 0.22083,0.25135 0.23516,0.26819 0.24828,0.28262 0.25665,0.30187 0.26022,0.31991 0.25903,0.33553 0.25904,0.35719 0.24948,0.37763 0.23754,0.39688 0.22442,0.42092 0.20413,0.44258 0.18143,0.46663 -0.95257,0.34155 -0.15756,-0.40649 -0.18026,-0.38726 -0.19815,-0.37283 -0.21367,-0.35597 -0.22561,-0.34156 -0.23515,-0.32591 -0.24233,-0.3139 -0.24589,-0.30066 -0.24472,-0.28742 -0.24112,-0.27782 -0.23515,-0.26579 -0.22561,-0.25857 -0.21488,-0.25015 -0.19695,-0.24654 -0.18024,-0.24294 -0.15758,-0.24414 -0.13368,-0.25376 -0.0979,-0.26699 -0.0549,-0.28502 0.008,-0.30187 0.0799,-0.29945 0.15399,-0.27663 0.20889,-0.24052 0.25665,-0.21287 0.30797,-0.19602 0.35931,-0.18281 0.4154,-0.17559 0.47866,-0.17198 0.54553,-0.17077 0.61834,-0.17078 0.69353,-0.17198 0.7759,-0.17559 0.10624,-0.012 z m -0.10624,0.012 0.0549,-0.012 0.0513,0 -0.10624,0.012 z m 0.10743,1.0078 -10e-4,0 0,-1.0198 10e-4,0 0.10863,0.012 -0.10863,1.0078 z m 0,-1.0198 0.0549,0 0.0536,0.012 -0.10862,-0.012 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path117" + d="m 357.15,212.5 c 3.3364,1.1978 3.7088,-0.66627 5.9601,-0.57126 -0.88692,5.1413 -1.7846,7.8016 -7.1097,5.0427 -2.9389,-1.5238 -6.7014,0.70594 -7.4164,2.3596 -0.26142,0.60372 -1.9708,-0.65065 -2.5951,-2.0253 -2.6154,-5.7571 6.6883,-6.4113 11.161,-4.8058 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path119" + d="m 363.61,212.02 -0.99553,-0.17559 0.47629,0.59652 -0.17906,-0.002 -0.16951,0.006 -0.15757,0.0145 -0.15398,0.0228 -0.14683,0.0277 -0.14205,0.0349 -0.13726,0.0409 -0.13729,0.0458 -0.13489,0.0505 -0.13847,0.0553 -0.13727,0.0565 -0.13847,0.0602 -0.14205,0.0625 -0.14683,0.0649 -0.15279,0.0649 -0.15876,0.0613 -0.16114,0.0602 -0.17309,0.0577 -0.17787,0.0505 -0.1874,0.047 -0.19815,0.0372 -0.20294,0.0288 -0.21486,0.0193 -0.22322,0.008 -0.23515,-0.005 -0.24353,-0.0168 -0.25425,-0.0312 -0.2662,-0.0444 -0.27931,-0.0602 -0.29127,-0.0746 -0.30678,-0.0914 -0.31991,-0.10944 0.339,-0.95972 0.28889,0.0974 0.26858,0.0818 0.25306,0.0649 0.23636,0.0505 0.22082,0.0372 0.20651,0.024 0.19338,0.0145 0.18026,0.002 0.1707,-0.006 0.16233,-0.0144 0.15518,-0.0217 0.14562,-0.0277 0.14207,-0.0348 0.13965,-0.0409 0.13728,-0.0458 0.13728,-0.0505 0.13728,-0.0541 0.13607,-0.0577 0.13966,-0.0602 0.14205,-0.0625 0.14803,-0.0649 0.1516,-0.0637 0.15518,-0.0625 0.16353,-0.0602 0.1707,-0.0577 0.17786,-0.0505 0.18741,-0.047 0.19457,-0.0372 0.20173,-0.03 0.21486,-0.0193 0.22204,-0.008 0.23158,0.005 0.47627,0.59652 z m -0.47627,-0.59652 0.57535,0.0241 -0.099,0.57247 -0.47627,-0.59652 z m -7.3627,6.0048 0.46315,-0.90679 0.47151,0.23692 0.44524,0.20325 0.419,0.17318 0.39153,0.14433 0.36527,0.11304 0.3402,0.0842 0.31514,0.0577 0.28768,0.0312 0.26381,0.007 0.24232,-0.0156 0.22083,-0.036 0.20054,-0.0553 0.18503,-0.0758 0.17189,-0.0938 0.16353,-0.11425 0.15518,-0.1347 0.14803,-0.15754 0.14324,-0.18041 0.13608,-0.20444 0.13012,-0.2297 0.12533,-0.25378 0.11817,-0.2766 0.11341,-0.29945 0.10624,-0.32231 0.10265,-0.34276 0.0979,-0.36441 0.0931,-0.38365 0.0896,-0.40168 0.0871,-0.42092 0.0848,-0.43776 0.0823,-0.45461 0.0836,-0.47264 0.99553,0.17559 -0.0836,0.47744 -0.0848,0.46423 -0.0871,0.44978 -0.0896,0.43537 -0.0942,0.41853 -0.0979,0.40529 -0.10503,0.38845 -0.10983,0.37162 -0.11817,0.35598 -0.12773,0.34036 -0.13966,0.32231 -0.14922,0.30427 -0.16353,0.28743 -0.17905,0.2694 -0.19577,0.24773 -0.21486,0.2273 -0.23397,0.20205 -0.25187,0.17679 -0.27216,0.14913 -0.29246,0.11666 -0.30798,0.0865 -0.32348,0.053 -0.33543,0.0228 -0.35214,-0.009 -0.36646,-0.0409 -0.3796,-0.0697 -0.3975,-0.0985 -0.41779,-0.12988 -0.43451,-0.15875 -0.45479,-0.18762 -0.47868,-0.22009 -0.50016,-0.24895 z m -6.7217,2.1094 -0.92631,-0.4065 0.0942,-0.19362 0.10982,-0.19242 0.13011,-0.18882 0.14205,-0.184 0.15757,-0.1828 0.17308,-0.1804 0.18264,-0.1744 0.19696,-0.17197 0.2101,-0.16957 0.22083,-0.16236 0.23157,-0.15875 0.24113,-0.15033 0.25187,-0.14552 0.26023,-0.1359 0.26739,-0.12989 0.27812,-0.12026 0.2829,-0.10824 0.29008,-0.0998 0.29604,-0.0878 0.30199,-0.0758 0.30798,-0.0613 0.31037,-0.0481 0.31394,-0.0325 0.31752,-0.0168 0.31872,0 0.3211,0.0181 0.32111,0.0372 0.3211,0.0577 0.31992,0.0782 0.31632,0.0998 0.31513,0.12387 0.30917,0.14673 -0.46316,0.90679 -0.24709,-0.11785 -0.24829,-0.0974 -0.25425,-0.0806 -0.25546,-0.0637 -0.25903,-0.0458 -0.26142,-0.03 -0.26379,-0.0156 -0.26382,0 -0.265,0.0144 -0.26381,0.0277 -0.26499,0.0409 -0.26023,0.0517 -0.25903,0.0661 -0.25546,0.0758 -0.25186,0.0854 -0.24711,0.0962 -0.23993,0.10343 -0.23395,0.11304 -0.2268,0.11906 -0.21846,0.12628 -0.21009,0.13109 -0.19815,0.1347 -0.1898,0.1407 -0.17666,0.14072 -0.16353,0.14551 -0.15399,0.14553 -0.13728,0.14191 -0.12176,0.14192 -0.10862,0.14071 -0.0896,0.13109 -0.074,0.12747 -0.0585,0.11907 z m -3.5178,-2.0168 0.91916,-0.42332 0.0537,0.10944 0.0573,0.11185 0.0633,0.10704 0.0692,0.10943 0.074,0.11185 0.0777,0.10704 0.0789,0.10462 0.0847,0.10223 0.0871,0.10222 0.0896,0.0974 0.0883,0.0938 0.0919,0.089 0.0919,0.0878 0.0919,0.0806 0.0908,0.0758 0.0871,0.0685 0.0883,0.0649 0.0859,0.0589 0.0789,0.0505 0.0777,0.0445 0.068,0.036 0.0609,0.0277 0.0549,0.0205 0.0442,0.0132 0.0286,0.007 0.0107,0.001 -0.007,0 -0.0323,0.007 -0.0501,0.0205 -0.0478,0.0325 -0.0405,0.047 -0.025,0.0433 0.92632,0.40649 -0.0823,0.14673 -0.11459,0.12628 -0.13608,0.095 -0.15279,0.0613 -0.14684,0.0288 -0.13607,0.002 -0.13012,-0.0132 -0.12174,-0.0265 -0.11341,-0.0349 -0.1146,-0.0444 -0.11579,-0.0517 -0.1134,-0.0602 -0.11101,-0.0637 -0.1146,-0.0721 -0.11221,-0.0782 -0.11219,-0.0818 -0.1158,-0.0902 -0.11222,-0.095 -0.11339,-0.0999 -0.11101,-0.10463 -0.11102,-0.10823 -0.10982,-0.11546 -0.10624,-0.11666 -0.10384,-0.12146 -0.10387,-0.12628 -0.10025,-0.13109 -0.0943,-0.1335 -0.0908,-0.13349 -0.0883,-0.13831 -0.0823,-0.14552 -0.0764,-0.14311 -0.0704,-0.14793 z m 11.79,-5.4973 -0.339,0.95972 -0.41183,-0.1371 -0.43689,-0.12388 -0.46196,-0.11064 -0.48106,-0.0974 -0.49896,-0.083 -0.51209,-0.0674 -0.52284,-0.053 -0.52881,-0.0349 -0.53358,-0.0181 -0.5324,-0.001 -0.53119,0.0157 -0.52283,0.0348 -0.5145,0.0542 -0.50134,0.0733 -0.48465,0.0914 -0.46435,0.11064 -0.44046,0.1323 -0.4166,0.15033 -0.38557,0.16837 -0.35214,0.18762 -0.31633,0.20445 -0.27694,0.22128 -0.23755,0.23693 -0.19696,0.25255 -0.15637,0.26939 -0.11698,0.28624 -0.074,0.31028 -0.0323,0.33915 0.0167,0.37041 0.0704,0.40649 0.12892,0.44378 0.19338,0.48106 -0.91915,0.42333 -0.22918,-0.56764 -0.15757,-0.54721 -0.0919,-0.52676 -0.0215,-0.50752 0.0442,-0.48105 0.10982,-0.45701 0.1719,-0.42574 0.22799,-0.39207 0.27814,-0.35598 0.3211,-0.3211 0.36049,-0.28864 0.39511,-0.25497 0.42376,-0.22609 0.45003,-0.19725 0.4739,-0.17196 0.49538,-0.14674 0.51448,-0.12266 0.53001,-0.10096 0.54193,-0.0782 0.55269,-0.059 0.56103,-0.0372 0.56462,-0.0181 0.56581,0.001 0.56462,0.0205 0.56222,0.0372 0.55388,0.0553 0.54552,0.0721 0.53239,0.0878 0.51687,0.10463 0.49777,0.12027 0.47987,0.1359 0.45479,0.15153 z m -0.1695,0.47986 0.1695,-0.47986 -0.1695,0.47986 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path121" + d="m 458.84,124.49 c 3.3758,0 6.1117,2.7577 6.1117,6.1588 0,3.4011 -2.736,6.1588 -6.1117,6.1588 -3.3758,0 -6.1129,-2.7577 -6.1129,-6.1588 0,-3.4011 2.7372,-6.1588 6.1129,-6.1588 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path123" + d="m 465.46,130.64 h -1.0122 c 0.0268,-2.145 -1.2906,-4.233 -3.2434,-5.1234 -0.73535,-0.34813 -1.549,-0.52507 -2.3621,-0.52502 v -1.0198 c 2.2466,-0.0199 4.4402,1.2148 5.6083,3.1303 0.6611,1.0538 1.0078,2.2958 1.0094,3.538 z m -6.6178,6.6687 v -1.0198 c 2.0753,0.0255 4.0847,-1.2311 4.9976,-3.09 0.4023,-0.78858 0.60822,-1.6738 0.60794,-2.5585 h 1.0122 c 0.0196,2.2644 -1.2066,4.4872 -3.1374,5.6718 -1.0369,0.65097 -2.2568,0.99575 -3.4803,0.99647 z m -6.619,-6.6687 h 1.0123 c -0.0257,2.1043 1.2399,4.1545 3.1347,5.0708 0.76421,0.38169 1.6181,0.57823 2.4719,0.57769 v 1.0198 c -2.2596,0.0203 -4.4642,-1.2292 -5.6292,-3.1614 -0.64831,-1.0478 -0.98821,-2.2761 -0.98969,-3.5069 z m 6.619,-6.6687 v 1.0198 c -2.0884,-0.0258 -4.109,1.2475 -5.0157,3.1237 -0.39123,0.78009 -0.59131,1.6528 -0.59092,2.5249 h -1.0122 c -0.0196,-2.2647 1.207,-4.4878 3.1386,-5.6719 1.0368,-0.65131 2.257,-0.99519 3.4802,-0.99655 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path125" + d="m 446.31,124.49 c 3.3758,0 6.1129,2.7577 6.1129,6.1588 0,3.4011 -2.7371,6.1588 -6.1129,6.1588 -3.3758,0 -6.1129,-2.7577 -6.1129,-6.1588 0,-3.4011 2.7372,-6.1588 6.1129,-6.1588 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path127" + d="m 452.93,130.64 h -1.0123 c 0.0256,-2.1043 -1.2399,-4.1545 -3.1348,-5.0708 -0.76422,-0.38166 -1.6181,-0.57822 -2.4719,-0.57767 v -1.0198 c 2.2595,-0.0202 4.4642,1.2294 5.6292,3.1616 0.64837,1.0478 0.9881,2.2763 0.98978,3.5068 z m -6.619,6.6687 v -1.0198 c 2.0884,0.0258 4.109,-1.2473 5.0157,-3.1236 0.39127,-0.78008 0.59125,-1.6528 0.59102,-2.5249 h 1.0122 c 0.0196,2.2647 -1.207,4.4877 -3.1386,5.6719 -1.0369,0.65096 -2.2568,0.99574 -3.4803,0.99646 z m -6.619,-6.6687 h 1.0122 c -0.0257,2.1043 1.2399,4.1545 3.1347,5.0708 0.76421,0.3817 1.6181,0.57823 2.4719,0.57769 v 1.0198 c -2.2596,0.0203 -4.4642,-1.2292 -5.6292,-3.1614 -0.64829,-1.0478 -0.98821,-2.2761 -0.98967,-3.5069 z m 6.619,-6.6687 v 1.0198 c -2.0884,-0.0258 -4.109,1.2475 -5.0157,3.1237 -0.39134,0.78007 -0.59113,1.6528 -0.59092,2.5249 h -1.0123 c -0.0196,-2.2647 1.207,-4.4878 3.1386,-5.6719 1.0368,-0.65131 2.257,-0.99519 3.4802,-0.99655 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path129" + d="m 433.79,125.48 c 3.3758,0 6.1129,2.7565 6.1129,6.1588 0,3.4011 -2.7371,6.1588 -6.1129,6.1588 -3.3758,0 -6.1117,-2.7577 -6.1117,-6.1588 0,-3.4023 2.736,-6.1588 6.1117,-6.1588 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path131" + d="m 440.41,131.63 h -1.0122 c 0.0252,-2.0913 -1.2232,-4.1314 -3.1012,-5.0537 -0.77243,-0.39332 -1.6391,-0.59534 -2.5054,-0.59489 v -1.0198 c 2.2464,-0.0197 4.4396,1.2142 5.6089,3.1287 0.66087,1.0544 1.0087,2.2967 1.0099,3.5397 z m -6.619,6.6687 v -1.0198 c 2.0884,0.0258 4.109,-1.2473 5.0157,-3.1236 0.39129,-0.78008 0.59116,-1.6528 0.59102,-2.5249 h 1.0122 c 0.0196,2.2647 -1.207,4.4877 -3.1386,5.6718 -1.0369,0.6511 -2.2568,0.99554 -3.4803,0.99645 z m -6.6178,-6.6687 h 1.0122 c -0.0268,2.145 1.2906,4.233 3.2434,5.1234 0.73525,0.34844 1.549,0.52522 2.3621,0.52522 v 1.0198 c -2.2594,0.0202 -4.4645,-1.2292 -5.6285,-3.162 -0.64779,-1.0481 -0.98772,-2.2758 -0.98927,-3.5065 z m 6.6178,-6.6687 v 1.0198 c -2.0878,-0.0257 -4.1087,1.2464 -5.0146,3.1229 -0.39147,0.78011 -0.59081,1.6534 -0.59092,2.5256 h -1.0122 c -0.021,-2.3339 1.2845,-4.6238 3.3155,-5.7782 0.99565,-0.58449 2.1488,-0.88846 3.3022,-0.89015 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path133" + d="m 422.25,127.7 c 3.3758,0 6.1117,2.7565 6.1117,6.1576 0,3.4023 -2.736,6.16 -6.1117,6.16 -3.3758,0 -6.1129,-2.7577 -6.1129,-6.16 0,-3.4011 2.7372,-6.1576 6.1129,-6.1576 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path135" + d="m 428.87,133.86 h -1.0122 c 0.0257,-2.1036 -1.239,-4.1538 -3.1335,-5.0696 -0.76418,-0.3818 -1.6181,-0.57832 -2.4719,-0.57778 v -1.0198 c 2.259,-0.0201 4.4641,1.2283 5.6285,3.1607 0.64775,1.0481 0.98783,2.2757 0.98918,3.5065 z m -6.6178,6.6699 v -1.0198 c 2.0882,0.0263 4.1077,-1.2483 5.0145,-3.1237 0.39127,-0.78049 0.59099,-1.6536 0.59093,-2.5261 h 1.0122 c 0.0194,2.2646 -1.2057,4.4873 -3.1365,5.6726 -1.0372,0.65118 -2.2573,0.99615 -3.4811,0.99701 z m -6.619,-6.6699 h 1.0123 c -0.0229,2.0136 1.1298,3.9791 2.895,4.9467 0.82444,0.46083 1.7672,0.70494 2.7117,0.70307 v 1.0198 c -2.2466,0.0198 -4.4402,-1.2149 -5.6089,-3.1299 -0.66171,-1.0539 -1.0081,-2.2972 -1.01,-3.5397 z m 6.619,-6.6675 v 1.0198 c -2.1008,-0.026 -4.1325,1.2627 -5.0326,3.1559 -0.37974,0.77176 -0.57462,1.6316 -0.57411,2.4913 h -1.0122 c -0.0213,-2.3215 1.271,-4.5986 3.2842,-5.7582 1.0036,-0.59625 2.1685,-0.90741 3.3348,-0.90896 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path137" + d="m 346.3,159.43 c 3.3913,0 6.1404,2.7685 6.1404,6.1864 0,3.4167 -2.7491,6.1852 -6.1404,6.1852 -3.3901,0 -6.1404,-2.7685 -6.1404,-6.1852 0,-3.4179 2.7491,-6.1864 6.1404,-6.1864 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path139" + d="m 352.94,165.62 h -1.0122 c 0.0244,-2.1014 -1.2294,-4.1512 -3.1163,-5.0784 -0.77649,-0.39497 -1.6473,-0.59804 -2.518,-0.59788 v -1.0198 c 2.2555,-0.0198 4.4585,1.2188 5.6317,3.1418 0.6663,1.0588 1.0115,2.3057 1.0147,3.5543 z m -6.6465,6.6952 v -1.0198 c 2.0856,0.0248 4.1053,-1.2367 5.0234,-3.1048 0.4044,-0.79205 0.60982,-1.6817 0.61068,-2.5702 h 1.0122 c 0.0193,2.2614 -1.198,4.4816 -3.1202,5.6744 -1.0485,0.66744 -2.2842,1.0193 -3.5262,1.0205 z M 339.647,165.62 h 1.0122 c -0.0247,2.1013 1.2301,4.1496 3.1162,5.0772 0.77675,0.39411 1.6473,0.5981 2.518,0.59778 v 1.0198 c -2.2427,0.0192 -4.434,-1.2046 -5.6115,-3.11 -0.68017,-1.0637 -1.0316,-2.325 -1.0349,-3.5848 z m 6.6465,-6.6964 v 1.0198 c -2.0734,-0.0247 -4.0812,1.2217 -5.007,3.072 -0.41479,0.80074 -0.62652,1.7031 -0.62727,2.6041 h -1.0122 c -0.0194,-2.2745 1.2121,-4.5067 3.152,-5.696 1.042,-0.65378 2.2652,-0.99887 3.4945,-0.99997 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path141" + d="m 356.82,152.75 c 3.3901,0 6.1392,2.7685 6.1392,6.1864 0,3.4167 -2.7479,6.1852 -6.1392,6.1852 -3.3913,0 -6.1404,-2.7685 -6.1404,-6.1852 0,-3.4167 2.7491,-6.1864 6.1404,-6.1864 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path143" + d="m 363.47,158.94 h -1.0122 c 0.0243,-2.0891 -1.2142,-4.126 -3.0823,-5.062 -0.78499,-0.40473 -1.6679,-0.61451 -2.5508,-0.61423 v -1.0198 c 2.2681,-0.0199 4.4825,1.2338 5.6509,3.1744 0.65292,1.0518 0.99144,2.286 0.99443,3.5217 z m -6.6453,6.6952 v -1.0198 c 2.0849,0.025 4.1041,-1.2363 5.022,-3.1037 0.40405,-0.79264 0.61091,-1.6822 0.61094,-2.5713 h 1.0122 c 0.0196,2.2609 -1.1971,4.4804 -3.118,5.674 -1.049,0.66754 -2.2847,1.0196 -3.5272,1.0208 z m -6.6465,-6.6952 h 1.0122 c -0.0248,2.114 1.2456,4.1741 3.1498,5.0944 0.76834,0.3831 1.6262,0.58086 2.4844,0.58054 v 1.0198 c -2.2555,0.0199 -4.4585,-1.2189 -5.6317,-3.1418 -0.66705,-1.0576 -1.0113,-2.3052 -1.0147,-3.553 z m 6.6465,-6.6964 v 1.0198 c -2.0858,-0.0245 -4.1056,1.2375 -5.0235,3.106 -0.40439,0.79206 -0.60982,1.6817 -0.61068,2.5702 h -1.0122 c -0.0195,-2.2741 1.2119,-4.5063 3.1518,-5.6948 1.0403,-0.65613 2.2661,-0.99889 3.4946,-1.0012 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path145" + d="m 368.79,147.09 c 3.3913,0 6.1404,2.7685 6.1404,6.1864 0,3.4167 -2.7479,6.1852 -6.1404,6.1852 -3.3901,0 -6.1392,-2.7685 -6.1392,-6.1852 0,-3.4179 2.7479,-6.1864 6.1392,-6.1864 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path147" + d="m 375.43,153.28 h -1.0122 c 0.0254,-2.1145 -1.2453,-4.1749 -3.1496,-5.0957 -0.76834,-0.38311 -1.6262,-0.58086 -2.4844,-0.58054 v -1.0198 c 2.2555,-0.02 4.4585,1.2188 5.6317,3.1417 0.66602,1.0589 1.012,2.3052 1.0146,3.5543 z m -6.6465,6.6952 v -1.0198 c 2.0854,0.0253 4.1049,-1.2362 5.0232,-3.1038 0.40414,-0.79262 0.61077,-1.6822 0.61074,-2.5713 h 1.0122 c 0.02,2.2736 -1.2111,4.5051 -3.15,5.6939 -1.0428,0.65391 -2.266,1.0001 -3.4961,1.001 z m -6.6453,-6.6952 h 1.0122 c -0.0244,2.0887 1.2143,4.125 3.0821,5.0608 0.78499,0.40471 1.6679,0.6145 2.5508,0.61422 v 1.0198 c -2.2682,0.0198 -4.4825,-1.2336 -5.6513,-3.1741 -0.65256,-1.0513 -0.99118,-2.2851 -0.99378,-3.5207 z m 6.6453,-6.6964 v 1.0198 c -2.0727,-0.0248 -4.0801,1.2214 -5.0056,3.0709 -0.41428,0.80141 -0.62746,1.7036 -0.62739,2.6052 h -1.0122 c -0.0198,-2.2739 1.2111,-4.5056 3.1497,-5.6956 1.0424,-0.6538 2.2657,-0.99959 3.4954,-1.0004 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path149" + d="m 338.16,169.49 c 3.3913,0 6.1404,2.7685 6.1404,6.1864 0,3.4155 -2.7491,6.1852 -6.1404,6.1852 -3.3901,0 -6.1392,-2.7685 -6.1392,-6.1852 0,-3.4179 2.7479,-6.1864 6.1392,-6.1864 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path151" + d="m 344.8,175.68 h -1.0122 c 0.0254,-2.1145 -1.2453,-4.1749 -3.1496,-5.0956 -0.7683,-0.38323 -1.6262,-0.58096 -2.4844,-0.58064 v -1.0198 c 2.2555,-0.0198 4.4585,1.2188 5.6317,3.1418 0.66587,1.0589 1.0122,2.3051 1.0146,3.5543 z m -6.6465,6.6952 v -1.0198 c 2.0733,0.0242 4.081,-1.2219 5.007,-3.072 0.41458,-0.80038 0.62624,-1.7023 0.62709,-2.603 h 1.0122 c 0.0193,2.2739 -1.2126,4.5058 -3.1523,5.6941 -1.0404,0.65545 -2.2656,0.9986 -3.494,1.0007 z m -6.6453,-6.6952 h 1.0122 c -0.024,2.0887 1.2144,4.125 3.0823,5.0608 0.78498,0.40474 1.6679,0.61452 2.5508,0.61424 v 1.0198 c -2.2682,0.0198 -4.4825,-1.2336 -5.6513,-3.1741 -0.65285,-1.0513 -0.99076,-2.2856 -0.99397,-3.5207 z m 6.6453,-6.6964 v 1.0198 c -2.0726,-0.0248 -4.0801,1.2214 -5.0055,3.0709 -0.4143,0.80141 -0.62741,1.7036 -0.6275,2.6052 h -1.0122 c -0.0197,-2.2739 1.2113,-4.5056 3.1498,-5.6956 1.0424,-0.65379 2.2656,-0.99959 3.4954,-1.0004 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <polygon + id="polygon153" + transform="matrix(1.0106622,0,0,1.0182434,-5.1283744,-6.1909008)" + points="454.53,277.39 432.76,290 409.61,280.14 431.38,267.54 " + style="fill:#edb92e" /> + <path + id="path155" + d="m 431.11,266.67 -22.003,12.832 -0.50613,-0.88274 22.003,-12.832 0.45122,-0.0277 0.0549,0.9104 z m -0.50613,-0.88274 0.21845,-0.12748 0.23277,0.0997 -0.45122,0.0277 z m 23.447,10.945 -23.392,-10.035 0.39631,-0.93807 23.392,10.035 0.0549,0.91041 -0.45122,0.0277 z m 0.39631,-0.93807 0.93108,0.39928 -0.87617,0.51114 -0.0549,-0.91042 z m -22.456,12.861 22.005,-12.833 0.50613,0.88276 -22.005,12.833 -0.45122,0.0277 -0.0549,-0.91041 z m 0.50613,0.88274 -0.21845,0.12749 -0.23277,-0.0997 0.45122,-0.0277 z m -23.445,-10.947 23.39,10.036 -0.39631,0.93807 -23.39,-10.036 -0.0549,-0.9104 0.45122,-0.0277 z m -0.39631,0.93807 -0.93108,-0.39929 0.87617,-0.51112 0.0549,0.91041 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path157" + d="m 431.13,270.65 c 5.6414,-0.34757 10.401,2.4426 10.631,6.2309 0.22918,3.7896 -4.1576,7.1425 -9.7979,7.4901 -5.6402,0.34757 -10.4,-2.4426 -10.63,-6.2309 -0.23038,-3.7896 4.1564,-7.1426 9.7967,-7.4901 z" + inkscape:connector-curvature="0" + style="fill:#c6363c" /> + <path + id="path159" + d="m 442.26,276.85 -1.0099,0.0625 0,0 -0.031,-0.3139 -0.0537,-0.30787 -0.0764,-0.30427 -0.099,-0.29585 -0.12055,-0.29104 -0.14206,-0.28743 -0.16235,-0.27903 -0.18383,-0.2742 -0.20531,-0.26578 -0.22322,-0.26098 -0.24471,-0.25135 -0.2638,-0.24415 -0.28052,-0.2345 -0.29843,-0.2261 -0.31752,-0.21529 -0.33304,-0.20563 -0.34975,-0.19484 -0.36408,-0.18281 -0.3796,-0.17198 -0.39392,-0.15875 -0.40705,-0.14552 -0.42019,-0.13469 -0.43091,-0.11786 -0.44406,-0.10583 -0.4536,-0.0914 -0.46316,-0.0758 -0.4727,-0.0602 -0.48225,-0.0458 -0.48941,-0.0277 -0.49658,-0.0107 -0.50255,0.004 -0.50971,0.024 -0.0621,-1.0174 0.54313,-0.024 0.53835,-0.006 0.53001,0.0132 0.52523,0.03 0.51567,0.0482 0.50613,0.0649 0.49896,0.0806 0.48942,0.0986 0.47747,0.11305 0.46913,0.12989 0.45599,0.14433 0.44287,0.15994 0.42972,0.17319 0.4178,0.18881 0.40227,0.20205 0.38795,0.21647 0.37124,0.22971 0.35572,0.24173 0.339,0.25496 0.32111,0.26819 0.30201,0.28023 0.2829,0.29224 0.26382,0.30426 0.24112,0.3163 0.21964,0.32712 0.19577,0.33674 0.17308,0.34757 0.14922,0.3584 0.12055,0.36801 0.0955,0.37642 0.068,0.38244 0.0382,0.39087 0,0 z m -10.272,8.0301 -0.0621,-1.0174 0.50851,-0.0397 0.50015,-0.0565 0.49181,-0.0722 0.48106,-0.0878 0.47271,-0.10342 0.46316,-0.11907 0.45121,-0.13228 0.43809,-0.14553 0.42733,-0.15874 0.41422,-0.17198 0.3999,-0.18281 0.38674,-0.19603 0.37244,-0.20566 0.35453,-0.21647 0.33901,-0.2273 0.32469,-0.23693 0.30557,-0.24292 0.28769,-0.25377 0.27097,-0.26218 0.25068,-0.26698 0.23157,-0.27421 0.21129,-0.27902 0.19099,-0.28623 0.1707,-0.28862 0.1492,-0.29586 0.12893,-0.29826 0.10623,-0.30066 0.0836,-0.30427 0.0621,-0.30667 0.0394,-0.31029 0.0167,-0.31389 -0.007,-0.31389 1.0099,-0.0625 0.009,0.39326 -0.0216,0.38845 -0.049,0.38486 -0.0764,0.37883 -0.10265,0.37404 -0.13012,0.36799 -0.15519,0.3584 -0.17785,0.35117 -0.20174,0.34396 -0.2244,0.33434 -0.24472,0.32471 -0.26739,0.31509 -0.28648,0.30548 -0.30439,0.29344 -0.3235,0.28503 -0.3414,0.27421 -0.3581,0.26097 -0.37482,0.25135 -0.39273,0.23812 -0.40585,0.22491 -0.42018,0.21286 -0.4357,0.19964 -0.44764,0.18641 -0.46077,0.17077 -0.47389,0.15756 -0.48465,0.14192 -0.49658,0.12626 -0.50612,0.11065 -0.51687,0.095 -0.52523,0.077 -0.53357,0.0613 -0.54195,0.042 z m -11.166,-6.7084 1.0099,-0.0625 0.031,0.31389 0.0537,0.30788 0.0764,0.30427 0.099,0.29585 0.12057,0.29104 0.14205,0.28744 0.16235,0.27902 0.18383,0.2742 0.20531,0.26578 0.22322,0.26098 0.24471,0.25135 0.2638,0.24415 0.28052,0.23451 0.29843,0.2261 0.31752,0.21528 0.33304,0.20564 0.34975,0.19483 0.36408,0.18281 0.3796,0.17197 0.39392,0.15876 0.40705,0.14552 0.42018,0.13468 0.43092,0.11787 0.44286,0.10584 0.45361,0.0914 0.46315,0.0758 0.4739,0.0602 0.48225,0.0458 0.48822,0.0277 0.49658,0.0108 0.50255,-0.004 0.50971,-0.0241 0.0621,1.0174 -0.54313,0.024 -0.53834,0.006 -0.53001,-0.0133 -0.52404,-0.03 -0.51567,-0.0481 -0.50732,-0.0649 -0.49896,-0.0806 -0.48943,-0.0985 -0.47867,-0.11305 -0.46673,-0.12989 -0.45599,-0.14433 -0.44287,-0.15994 -0.42973,-0.17318 -0.41779,-0.18882 -0.40227,-0.20204 -0.38795,-0.21648 -0.37124,-0.22971 -0.35572,-0.24172 -0.33901,-0.25496 -0.3211,-0.2682 -0.30202,-0.28022 -0.2829,-0.29225 -0.26381,-0.30426 -0.24112,-0.3163 -0.21964,-0.32712 -0.19577,-0.33674 -0.17308,-0.34757 -0.14922,-0.35839 -0.12055,-0.36801 -0.0955,-0.37643 -0.068,-0.38244 -0.0382,-0.39087 z m 10.271,-8.0301 0.0621,1.0174 -0.50851,0.0397 -0.50016,0.0565 -0.49181,0.0722 -0.48105,0.0878 -0.47271,0.10342 -0.46197,0.11906 -0.4524,0.13229 -0.43809,0.14553 -0.42734,0.15874 -0.41422,0.17199 -0.39989,0.1828 -0.38674,0.19603 -0.37245,0.20566 -0.35452,0.21647 -0.33901,0.2273 -0.32469,0.23693 -0.30558,0.24293 -0.28769,0.25376 -0.27096,0.26218 -0.25068,0.26698 -0.23038,0.27421 -0.21248,0.27901 -0.19099,0.28623 -0.1707,0.28863 -0.14921,0.29465 -0.12773,0.29827 -0.10623,0.30186 -0.0848,0.30427 -0.0621,0.30667 -0.0394,0.31029 -0.0156,0.31269 0.007,0.31509 -1.0099,0.0625 -0.009,-0.39206 0.0204,-0.38965 0.0489,-0.38485 0.0764,-0.37883 0.10385,-0.37403 0.13011,-0.36681 0.15399,-0.35838 0.17786,-0.35238 0.20173,-0.34396 0.22441,-0.33434 0.2459,-0.32471 0.2662,-0.31509 0.28649,-0.30548 0.30438,-0.29345 0.3235,-0.28502 0.3414,-0.27421 0.35811,-0.26096 0.37481,-0.25136 0.39273,-0.23813 0.40586,-0.2249 0.42018,-0.21286 0.4357,-0.19964 0.44764,-0.18642 0.46076,-0.17077 0.4739,-0.15755 0.48583,-0.14191 0.49539,-0.12628 0.50612,-0.11064 0.51688,-0.095 0.52521,-0.077 0.53359,-0.0613 0.54194,-0.042 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path161" + d="m 382.38,269.85 23.776,9.074 -19.628,13.224 c -5.0875,-1.7042 -9.1222,-19.12 -4.1481,-22.298 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path163" + d="m 405.98,279.4 -23.776,-9.074 0.35811,-0.95251 23.776,9.074 0.10147,0.89958 -0.45958,0.053 z m 0.35811,-0.9525 0.91677,0.34997 -0.8153,0.54961 -0.10147,-0.89958 z m -20.088,13.277 19.628,-13.224 0.56104,0.84666 -19.628,13.224 -0.44047,0.0602 -0.12057,-0.90681 z m 0.56104,0.84666 -0.20532,0.13832 -0.23515,-0.0782 0.44047,-0.0602 z m -4.2496,-23.198 -0.35811,0.95252 0.45002,-0.0458 -0.37243,0.28624 -0.33424,0.35839 -0.29961,0.43415 -0.26381,0.50391 -0.22561,0.57126 -0.18502,0.63259 -0.14683,0.68912 -0.10623,0.73844 -0.068,0.78051 -0.0298,0.819 0.006,0.84908 0.0454,0.87432 0.0764,0.89477 0.11102,0.9056 0.14444,0.91401 0.17427,0.91642 0.20175,0.91282 0.23156,0.90199 0.25546,0.88634 0.28052,0.86711 0.30319,0.83825 0.32469,0.80578 0.34498,0.76849 0.36169,0.724 0.37601,0.67227 0.39153,0.61816 0.40108,0.55563 0.40825,0.48828 0.41302,0.41371 0.41183,0.33554 0.40704,0.25617 0.39869,0.17197 -0.3199,0.96693 -0.54911,-0.23691 -0.52403,-0.32832 -0.50254,-0.40771 -0.47986,-0.48347 -0.46078,-0.5484 -0.43927,-0.61094 -0.42257,-0.66628 -0.40229,-0.71797 -0.38078,-0.76489 -0.36168,-0.80458 -0.33901,-0.84185 -0.31515,-0.87192 -0.29246,-0.89839 -0.26498,-0.91761 -0.23874,-0.93326 -0.2089,-0.94409 -0.17906,-0.94768 -0.14921,-0.94768 -0.11579,-0.94169 -0.0811,-0.93084 -0.0454,-0.91281 -0.008,-0.89478 0.0323,-0.8671 0.0728,-0.83585 0.11578,-0.80096 0.16114,-0.75888 0.21129,-0.71436 0.26142,-0.66507 0.31871,-0.60734 0.3784,-0.54481 0.44168,-0.47383 0.50851,-0.39206 0.45003,-0.0458 z m -0.45002,0.0458 0.21248,-0.1359 0.23754,0.0902 -0.45002,0.0458 z m 0.27096,0.43055 0.17906,-0.47625 -0.17906,0.47625 z m -0.27096,-0.43055 0.21248,-0.1359 0.23754,0.0902 -0.45002,0.0458 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path165" + d="m 382.83,274.26 c 5.6211,-0.57727 10.49,2.0168 10.872,5.792 0.38198,3.7775 -3.8676,7.3061 -9.4887,7.8834 -3.6551,0.37522 -5.9279,-2.8455 -6.323,-6.2598 -0.39631,-3.4131 1.0851,-7.0199 4.9395,-7.4156 z" + inkscape:connector-curvature="0" + style="fill:#0c4076" /> + <path + id="path167" + d="m 394.21,280 -1.0051,0.10342 0,0 -0.0442,-0.31269 -0.0657,-0.30547 -0.0896,-0.29947 -0.10982,-0.29343 -0.1325,-0.28505 -0.15399,-0.2802 -0.17428,-0.27421 -0.19457,-0.26459 -0.21487,-0.25856 -0.23514,-0.25015 -0.25188,-0.24173 -0.27336,-0.23332 -0.29007,-0.22249 -0.30797,-0.21287 -0.32707,-0.20324 -0.3402,-0.19243 -0.35812,-0.17919 -0.37004,-0.16837 -0.38795,-0.15634 -0.3987,-0.14313 -0.41182,-0.12868 -0.42496,-0.11666 -0.43688,-0.10221 -0.44645,-0.0866 -0.45838,-0.0721 -0.46434,-0.0577 -0.47629,-0.0397 -0.48344,-0.0265 -0.48942,-0.007 -0.49538,0.007 -0.50255,0.0277 -0.50851,0.042 -0.10266,-1.0126 0.54193,-0.047 0.53597,-0.0277 0.5312,-0.009 0.52522,0.009 0.51688,0.0265 0.5097,0.0445 0.50255,0.0602 0.49181,0.0795 0.48224,0.0938 0.4727,0.10944 0.46078,0.12628 0.45002,0.1407 0.4369,0.15755 0.42376,0.17077 0.41063,0.18521 0.3963,0.20085 0.38078,0.21407 0.36528,0.2273 0.34856,0.24173 0.33065,0.25377 0.31395,0.26698 0.29483,0.28022 0.27575,0.29345 0.25307,0.30668 0.23276,0.31749 0.2101,0.32953 0.18741,0.34034 0.16115,0.35239 0.13608,0.36079 0.11102,0.37162 0.0823,0.38244 0.0537,0.38726 0,0 z m -9.9399,8.4414 -0.10266,-1.0126 0.50613,-0.0613 0.49777,-0.077 0.48703,-0.0926 0.47987,-0.10824 0.46793,-0.12146 0.45599,-0.13711 0.44525,-0.15032 0.4345,-0.16357 0.419,-0.17558 0.40703,-0.18762 0.39274,-0.20084 0.3784,-0.21166 0.36288,-0.2201 0.34617,-0.2309 0.33065,-0.24053 0.31394,-0.25016 0.29724,-0.25735 0.27693,-0.26338 0.25784,-0.2718 0.24113,-0.27782 0.22083,-0.28262 0.19935,-0.28864 0.17906,-0.29345 0.15876,-0.29704 0.13846,-0.29947 0.11579,-0.30307 0.0931,-0.30426 0.0728,-0.30909 0.0501,-0.30908 0.0263,-0.31149 0.005,-0.31268 -0.0204,-0.3151 1.0051,-0.10343 0.025,0.39207 -0.005,0.38966 -0.0335,0.38604 -0.0621,0.38364 -0.0871,0.37644 -0.1146,0.37162 -0.13966,0.36561 -0.16472,0.35959 -0.18742,0.34997 -0.2101,0.34155 -0.23276,0.33675 -0.25426,0.32591 -0.27216,0.3163 -0.29365,0.30787 -0.31274,0.29706 -0.33066,0.28623 -0.34736,0.27662 -0.36408,0.26457 -0.38198,0.25496 -0.39631,0.24174 -0.41183,0.22851 -0.42614,0.21768 -0.44048,0.20444 -0.45479,0.19002 -0.46555,0.17559 -0.47867,0.16236 -0.4918,0.14672 -0.50136,0.13108 -0.5109,0.11546 -0.52283,0.0997 -0.5312,0.0818 -0.53955,0.0637 z m -6.8769,-6.7072 1.0051,-0.11787 0.0406,0.30307 0.0489,0.29946 0.0609,0.29706 0.0717,0.29585 0.0811,0.29103 0.0896,0.28624 0.10147,0.28141 0.10983,0.27782 0.11937,0.2706 0.12772,0.26218 0.13847,0.25616 0.14683,0.24774 0.15518,0.23934 0.16472,0.2285 0.17309,0.22128 0.18025,0.20806 0.1886,0.19844 0.19816,0.18761 0.20411,0.17559 0.21248,0.16235 0.21964,0.15033 0.22681,0.13591 0.23516,0.12267 0.24231,0.10944 0.25068,0.0938 0.25784,0.0793 0.2662,0.0637 0.27454,0.0481 0.2829,0.0312 0.29246,0.0132 0.29843,-0.002 0.30917,-0.0228 0.10266,1.0126 -0.36886,0.0277 -0.36049,0.005 -0.35214,-0.0181 -0.34499,-0.0385 -0.33661,-0.0577 -0.32827,-0.0782 -0.31751,-0.0985 -0.30798,-0.11546 -0.29962,-0.13349 -0.28768,-0.15153 -0.27694,-0.16717 -0.26738,-0.1816 -0.25785,-0.19604 -0.24471,-0.21166 -0.23396,-0.22128 -0.22442,-0.23452 -0.21128,-0.24654 -0.20173,-0.25497 -0.19099,-0.26698 -0.17905,-0.27541 -0.16832,-0.28383 -0.15756,-0.29224 -0.14683,-0.30066 -0.13369,-0.30428 -0.12415,-0.31147 -0.1134,-0.31751 -0.10147,-0.32231 -0.0908,-0.32472 -0.0788,-0.32953 -0.068,-0.33312 -0.0561,-0.33554 -0.0454,-0.33674 z m 5.3907,-7.9808 0.10266,1.0126 -0.32708,0.0433 -0.31155,0.059 -0.29723,0.0758 -0.2841,0.089 -0.27216,0.10463 -0.25665,0.11787 -0.2459,0.13229 -0.23277,0.14311 -0.22083,0.15635 -0.2089,0.16837 -0.19815,0.18039 -0.18741,0.19123 -0.17548,0.20083 -0.16353,0.21287 -0.15399,0.2213 -0.14325,0.2309 -0.13249,0.24174 -0.12176,0.24895 -0.10862,0.25496 -0.10025,0.26458 -0.0883,0.27059 -0.0777,0.27782 -0.0668,0.28142 -0.0561,0.28743 -0.0442,0.29104 -0.0335,0.29465 -0.0238,0.29946 -0.0131,0.29946 -10e-4,0.30186 0.008,0.30307 0.0191,0.30307 0.031,0.30307 -1.0051,0.11786 -0.0335,-0.33674 -0.0216,-0.33916 -0.0107,-0.33914 0.004,-0.33795 0.0131,-0.33794 0.0263,-0.33553 0.0382,-0.33314 0.0513,-0.32953 0.0633,-0.32832 0.0764,-0.32231 0.0896,-0.31871 0.10265,-0.31148 0.1146,-0.30788 0.13011,-0.30066 0.14324,-0.29225 0.15638,-0.28502 0.1695,-0.27661 0.18502,-0.26699 0.19936,-0.25617 0.21366,-0.24654 0.228,-0.23212 0.24351,-0.22128 0.25665,-0.20685 0.27335,-0.19243 0.28529,-0.17679 0.30082,-0.16115 0.31394,-0.14432 0.32945,-0.12627 0.3414,-0.10825 0.35692,-0.0902 0.36885,-0.0685 0.38198,-0.0505 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path169" + d="m 457.46,280.42 c 1.7631,0 3.1931,1.4396 3.1931,3.2171 0,1.7763 -1.43,3.2159 -3.1931,3.2159 -1.7631,0 -3.1919,-1.4396 -3.1919,-3.2159 0,-1.7775 1.4288,-3.2171 3.1919,-3.2171 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path171" + d="m 461.16,283.63 -1.0123,0 0,0 -0.002,-0.13951 -0.0107,-0.13709 -0.0179,-0.13831 -0.0227,-0.13229 -0.0298,-0.13109 -0.0369,-0.12749 -0.0417,-0.12507 -0.0477,-0.12267 -0.0537,-0.11906 -0.0598,-0.11786 -0.0645,-0.11305 -0.0704,-0.10944 -0.0752,-0.10704 -0.08,-0.10342 -0.0836,-0.0974 -0.0896,-0.0938 -0.0931,-0.089 -0.099,-0.0865 -0.10148,-0.0806 -0.10503,-0.0746 -0.10863,-0.0709 -0.11222,-0.0649 -0.11579,-0.0602 -0.12055,-0.0542 -0.12057,-0.0481 -0.12414,-0.042 -0.12892,-0.0372 -0.12773,-0.03 -0.13249,-0.0228 -0.13728,-0.0181 -0.13489,-0.0108 -0.13846,-0.002 0,-1.0198 0.19098,0.005 0.18741,0.0157 0.18264,0.0228 0.18264,0.0325 0.18024,0.042 0.17428,0.0493 0.17428,0.0589 0.16832,0.0673 0.16353,0.0758 0.15877,0.0818 0.15518,0.089 0.1492,0.0974 0.14563,0.10344 0.13966,0.11184 0.13251,0.11546 0.12891,0.12267 0.12296,0.12988 0.11698,0.1359 0.10862,0.13951 0.10386,0.14551 0.0967,0.15274 0.0883,0.15635 0.0811,0.15875 0.0752,0.16476 0.0668,0.17078 0.0585,0.17318 0.0489,0.178 0.0417,0.18159 0.0323,0.18281 0.0226,0.18401 0.0156,0.19001 0.005,0.19242 0,0 z m -3.6993,3.7258 0,-1.0198 0.13848,-0.002 0.13487,-0.0108 0.13728,-0.0181 0.1325,-0.0228 0.12772,-0.03 0.12893,-0.0372 0.12413,-0.042 0.12058,-0.0481 0.12057,-0.0542 0.11578,-0.0602 0.11221,-0.0649 0.10862,-0.0709 0.10504,-0.0746 0.10147,-0.0806 0.099,-0.0866 0.093,-0.089 0.0896,-0.0938 0.0836,-0.0974 0.0799,-0.10344 0.0764,-0.10702 0.0692,-0.10824 0.0633,-0.11185 0.0609,-0.11906 0.0537,-0.12027 0.0477,-0.12267 0.0417,-0.12507 0.0369,-0.12869 0.0298,-0.12868 0.0226,-0.13349 0.0179,-0.13831 0.0107,-0.1359 0.002,-0.13951 1.0122,0 -0.005,0.19244 -0.0156,0.18881 -0.0226,0.184 -0.0323,0.18401 -0.0417,0.18159 -0.0489,0.17679 -0.0585,0.17318 -0.0668,0.17078 -0.0752,0.16356 -0.0799,0.15996 -0.0896,0.15755 -0.0979,0.15153 -0.10267,0.14551 -0.10862,0.13951 -0.11699,0.13591 -0.12294,0.12989 -0.12893,0.12266 -0.13249,0.11545 -0.13966,0.11185 -0.14563,0.10343 -0.14921,0.0974 -0.15519,0.089 -0.15875,0.0818 -0.16354,0.0758 -0.16832,0.0673 -0.17427,0.0589 -0.17428,0.0493 -0.18025,0.042 -0.18264,0.0325 -0.18263,0.0228 -0.18741,0.0156 -0.19099,0.005 z m -3.6981,-3.7258 1.0122,0 0.002,0.13951 0.0107,0.1359 0.0179,0.13831 0.0226,0.13349 0.0298,0.12868 0.0369,0.12869 0.0417,0.12507 0.0477,0.12267 0.0537,0.12026 0.0609,0.11906 0.0633,0.11186 0.0704,0.10944 0.074,0.10582 0.0799,0.10224 0.0859,0.0998 0.0883,0.0925 0.0919,0.089 0.099,0.0866 0.10148,0.0806 0.10503,0.0746 0.10863,0.0709 0.11102,0.0637 0.11817,0.0613 0.11937,0.0542 0.12176,0.0481 0.12414,0.042 0.12773,0.0372 0.12772,0.03 0.1325,0.0228 0.13728,0.0181 0.13488,0.0108 0.13848,0.002 0,1.0198 -0.191,-0.005 -0.18741,-0.0157 -0.18263,-0.0228 -0.18264,-0.0325 -0.18024,-0.042 -0.17547,-0.0493 -0.1719,-0.059 -0.16951,-0.0673 -0.16234,-0.0758 -0.15876,-0.0806 -0.15637,-0.0902 -0.14922,-0.0974 -0.14562,-0.10343 -0.13967,-0.11185 -0.1325,-0.11545 -0.13011,-0.12268 -0.12177,-0.13108 -0.11459,-0.1335 -0.11102,-0.1407 -0.10265,-0.14672 -0.0967,-0.15034 -0.0896,-0.15755 -0.08,-0.15994 -0.0752,-0.16357 -0.0668,-0.17078 -0.0585,-0.17318 -0.0489,-0.17678 -0.0417,-0.18161 -0.0323,-0.184 -0.0226,-0.18402 -0.0156,-0.18881 -0.005,-0.19241 z m 3.6981,-3.727 0,1.0198 -0.13847,0.002 -0.13488,0.0108 -0.13728,0.0181 -0.1325,0.0228 -0.12773,0.03 -0.12773,0.0372 -0.12414,0.042 -0.12175,0.0481 -0.11937,0.0541 -0.11817,0.0613 -0.11103,0.0637 -0.10862,0.071 -0.10504,0.0746 -0.10147,0.0806 -0.099,0.0865 -0.0919,0.089 -0.0883,0.0925 -0.0859,0.0997 -0.08,0.10223 -0.074,0.10462 -0.0704,0.11186 -0.0645,0.11305 -0.0597,0.11786 -0.0537,0.11907 -0.0477,0.12266 -0.0417,0.12507 -0.0371,0.12749 -0.0298,0.13108 -0.0226,0.1323 -0.0179,0.13831 -0.0107,0.13709 -0.002,0.13951 -1.0122,0 0.005,-0.19241 0.0156,-0.19003 0.0226,-0.18401 0.0323,-0.18279 0.0417,-0.18161 0.049,-0.17798 0.0585,-0.17319 0.0668,-0.17078 0.0752,-0.16476 0.0811,-0.15876 0.0883,-0.15633 0.0967,-0.15034 0.10266,-0.14792 0.11101,-0.14071 0.1146,-0.1335 0.12176,-0.13108 0.13011,-0.12268 0.13249,-0.11545 0.13967,-0.11186 0.14562,-0.10341 0.14922,-0.0974 0.15638,-0.0902 0.15875,-0.0806 0.16235,-0.0758 0.16951,-0.0673 0.17189,-0.059 0.17547,-0.0493 0.18025,-0.042 0.18264,-0.0325 0.18263,-0.0228 0.18742,-0.0156 0.19098,-0.005 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path173" + d="m 408.71,283.14 c 1.7631,0 3.1931,1.4396 3.1931,3.2171 0,1.7763 -1.43,3.2159 -3.1931,3.2159 -1.7631,0 -3.192,-1.4396 -3.192,-3.2159 0,-1.7775 1.4289,-3.2171 3.192,-3.2171 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path175" + d="m 412.41,286.36 -1.0122,0 0,0 -0.002,-0.13952 -0.0107,-0.13709 -0.0179,-0.13831 -0.0226,-0.13228 -0.0298,-0.13109 -0.0369,-0.12749 -0.0417,-0.12506 -0.0477,-0.12269 -0.0536,-0.11906 -0.0597,-0.11785 -0.0645,-0.11305 -0.0704,-0.10945 -0.0752,-0.10704 -0.08,-0.10342 -0.0836,-0.0974 -0.0896,-0.0938 -0.0931,-0.089 -0.099,-0.0865 -0.10147,-0.0806 -0.10504,-0.0746 -0.10863,-0.0709 -0.11221,-0.0649 -0.11579,-0.0602 -0.12057,-0.0542 -0.12055,-0.0481 -0.12415,-0.042 -0.12891,-0.0372 -0.12773,-0.03 -0.1325,-0.0228 -0.13729,-0.0181 -0.13487,-0.0108 -0.13848,-0.002 0,-1.0198 0.19099,0.005 0.18742,0.0157 0.18264,0.0228 0.18263,0.0325 0.18025,0.042 0.17427,0.0493 0.17428,0.0589 0.16831,0.0673 0.16354,0.0758 0.15876,0.0818 0.15518,0.089 0.14922,0.0974 0.14562,0.10343 0.13967,0.11185 0.13249,0.11546 0.12892,0.12266 0.12296,0.12989 0.11697,0.1359 0.10863,0.13951 0.10386,0.14551 0.0967,0.15273 0.0883,0.15635 0.0811,0.15875 0.0752,0.16477 0.0669,0.17078 0.0585,0.17318 0.0489,0.17799 0.0417,0.1816 0.0323,0.18281 0.0227,0.184 0.0156,0.19001 0.005,0.19244 0,0 z m -3.6993,3.7258 0,-1.0198 0.13847,-0.002 0.13489,-0.0108 0.13727,-0.0181 0.1325,-0.0228 0.12773,-0.03 0.12892,-0.0372 0.12414,-0.042 0.12056,-0.0481 0.12057,-0.0542 0.11578,-0.0602 0.11222,-0.0649 0.10863,-0.071 0.10503,-0.0745 0.10147,-0.0806 0.099,-0.0866 0.0931,-0.089 0.0896,-0.0938 0.0836,-0.0974 0.08,-0.10343 0.0764,-0.10702 0.0692,-0.10824 0.0633,-0.11186 0.0609,-0.11906 0.0537,-0.12026 0.0477,-0.12268 0.0417,-0.12507 0.0369,-0.12868 0.0298,-0.12869 0.0227,-0.13349 0.0179,-0.1383 0.0107,-0.1359 0.002,-0.13951 1.0123,0 -0.005,0.19243 -0.0156,0.18881 -0.0226,0.18401 -0.0323,0.184 -0.0417,0.1816 -0.049,0.17679 -0.0585,0.17317 -0.0668,0.17079 -0.0752,0.16356 -0.08,0.15996 -0.0896,0.15754 -0.0979,0.15153 -0.10266,0.14551 -0.10863,0.13952 -0.11698,0.1359 -0.12295,0.12989 -0.12892,0.12266 -0.13249,0.11545 -0.13967,0.11186 -0.14563,0.10342 -0.14921,0.0974 -0.15519,0.089 -0.15875,0.0818 -0.16354,0.0758 -0.16831,0.0673 -0.17428,0.0589 -0.17428,0.0493 -0.18025,0.042 -0.18263,0.0325 -0.18263,0.0228 -0.18743,0.0156 -0.19098,0.005 z m -3.6981,-3.7258 1.0122,0 0.002,0.13951 0.0107,0.13589 0.0179,0.13831 0.0226,0.13349 0.0298,0.12869 0.0369,0.12868 0.0417,0.12507 0.0477,0.12267 0.0537,0.12027 0.0609,0.11906 0.0633,0.11185 0.0704,0.10944 0.074,0.10584 0.0799,0.10222 0.0859,0.0998 0.0883,0.0925 0.0919,0.089 0.099,0.0866 0.10147,0.0806 0.10504,0.0746 0.10863,0.071 0.11102,0.0637 0.11817,0.0613 0.11938,0.0542 0.12174,0.0481 0.12415,0.042 0.12772,0.0372 0.12773,0.03 0.1325,0.0228 0.13727,0.0181 0.13489,0.0108 0.13847,0.002 0,1.0198 -0.191,-0.005 -0.1874,-0.0157 -0.18264,-0.0228 -0.18263,-0.0325 -0.18025,-0.042 -0.17547,-0.0493 -0.17189,-0.059 -0.1695,-0.0673 -0.16235,-0.0758 -0.15876,-0.0806 -0.15637,-0.0902 -0.14922,-0.0974 -0.14562,-0.10344 -0.13967,-0.11184 -0.13249,-0.11546 -0.13012,-0.12266 -0.12176,-0.1311 -0.11459,-0.13349 -0.11102,-0.14071 -0.10266,-0.14672 -0.0967,-0.15033 -0.0896,-0.15756 -0.08,-0.15994 -0.0752,-0.16356 -0.0668,-0.17078 -0.0585,-0.17318 -0.0489,-0.17679 -0.0417,-0.1816 -0.0323,-0.18401 -0.0226,-0.184 -0.0156,-0.18882 -0.005,-0.19242 z m 3.6981,-3.727 0,1.0198 -0.13847,0.002 -0.13488,0.0108 -0.13728,0.0181 -0.1325,0.0228 -0.12772,0.03 -0.12773,0.0372 -0.12414,0.042 -0.12176,0.0481 -0.11936,0.0541 -0.11819,0.0613 -0.11102,0.0637 -0.10862,0.0709 -0.10504,0.0746 -0.10147,0.0806 -0.099,0.0866 -0.0919,0.089 -0.0883,0.0925 -0.0859,0.0997 -0.0799,0.10224 -0.074,0.10462 -0.0704,0.11185 -0.0645,0.11305 -0.0597,0.11786 -0.0536,0.11907 -0.0477,0.12266 -0.0417,0.12507 -0.0369,0.12749 -0.0298,0.13109 -0.0226,0.13229 -0.0179,0.13831 -0.0107,0.13709 -0.002,0.13951 -1.0122,0 0.005,-0.19241 0.0156,-0.19003 0.0226,-0.18401 0.0323,-0.18279 0.0417,-0.18161 0.049,-0.17798 0.0585,-0.17319 0.0668,-0.17078 0.0752,-0.16475 0.0811,-0.15876 0.0883,-0.15634 0.0967,-0.15034 0.10267,-0.14792 0.11101,-0.14071 0.1146,-0.13349 0.12174,-0.13109 0.13013,-0.12268 0.13249,-0.11545 0.13966,-0.11185 0.14563,-0.10342 0.14921,-0.0974 0.15638,-0.0902 0.15876,-0.0806 0.16234,-0.0758 0.16951,-0.0673 0.17189,-0.059 0.17547,-0.0493 0.18025,-0.042 0.18264,-0.0325 0.18264,-0.0228 0.1874,-0.0156 0.19099,-0.005 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path177" + d="m 406.99,268.29 c 1.7631,0 3.1932,1.4408 3.1932,3.2171 0,1.7763 -1.4301,3.2171 -3.1932,3.2171 -1.7631,0 -3.1919,-1.4408 -3.1919,-3.2171 0,-1.7763 1.4288,-3.2171 3.1919,-3.2171 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path179" + d="m 410.69,271.51 -1.0122,0 0,0 -0.002,-0.13951 -0.0107,-0.13589 -0.0179,-0.13831 -0.0226,-0.1335 -0.0298,-0.12868 -0.0369,-0.12989 -0.0417,-0.12507 -0.0477,-0.12146 -0.0537,-0.12148 -0.0598,-0.11665 -0.0645,-0.11305 -0.0692,-0.10824 -0.0764,-0.10703 -0.0799,-0.10344 -0.0836,-0.0974 -0.0908,-0.0937 -0.0931,-0.0914 -0.0967,-0.0842 -0.10266,-0.0806 -0.10624,-0.077 -0.10742,-0.0697 -0.11221,-0.0649 -0.1158,-0.0602 -0.12056,-0.0542 -0.12057,-0.0481 -0.12414,-0.042 -0.12892,-0.0372 -0.12772,-0.03 -0.1325,-0.0228 -0.13728,-0.0181 -0.13488,-0.0108 -0.13847,-0.002 0,-1.0198 0.19098,0.005 0.18743,0.0156 0.18263,0.0228 0.18263,0.0325 0.18024,0.042 0.17429,0.0493 0.17427,0.059 0.16832,0.0673 0.16353,0.0758 0.15877,0.0818 0.15518,0.089 0.1504,0.0986 0.14444,0.10343 0.13846,0.10945 0.13489,0.11785 0.12892,0.12268 0.12177,0.12988 0.11697,0.13589 0.10863,0.13951 0.10266,0.14553 0.0979,0.15153 0.0883,0.15635 0.0811,0.15994 0.0752,0.16477 0.0668,0.16957 0.0585,0.17559 0.049,0.17558 0.0417,0.18161 0.0323,0.184 0.0227,0.18401 0.0156,0.18882 0.005,0.19241 0,0 z m -3.6993,3.727 0,-1.0198 0.13848,-0.002 0.13487,-0.0107 0.13729,-0.0181 0.13249,-0.0228 0.12773,-0.03 0.12892,-0.0372 0.12414,-0.042 0.12056,-0.0481 0.12057,-0.0541 0.11579,-0.0602 0.11221,-0.0649 0.10743,-0.0697 0.10624,-0.077 0.10266,-0.0806 0.0967,-0.0842 0.0931,-0.0914 0.0908,-0.0938 0.0836,-0.0974 0.08,-0.10344 0.0764,-0.10704 0.0692,-0.10822 0.0645,-0.11306 0.0597,-0.11666 0.0537,-0.12146 0.0477,-0.12147 0.0417,-0.12507 0.0369,-0.12989 0.0298,-0.12868 0.0226,-0.13349 0.0179,-0.13831 0.0107,-0.1359 0.002,-0.13951 1.0122,0 -0.005,0.19242 -0.0156,0.18882 -0.0226,0.18401 -0.0323,0.184 -0.0417,0.1816 -0.049,0.17559 -0.0585,0.17558 -0.0668,0.16958 -0.0752,0.16476 -0.0811,0.15995 -0.0883,0.15635 -0.0978,0.15154 -0.10266,0.14551 -0.10862,0.13951 -0.11699,0.1359 -0.12175,0.12989 -0.12892,0.12267 -0.13488,0.11785 -0.13847,0.10944 -0.14443,0.10344 -0.15041,0.0986 -0.15519,0.089 -0.15875,0.0818 -0.16354,0.0758 -0.16832,0.0673 -0.17427,0.0589 -0.17428,0.0493 -0.18025,0.042 -0.18264,0.0325 -0.18263,0.0228 -0.18741,0.0156 -0.19099,0.005 z m -3.6981,-3.727 1.0122,0 0.002,0.13951 0.0107,0.1359 0.0179,0.13831 0.0226,0.13349 0.0298,0.12868 0.0369,0.12989 0.0417,0.12507 0.0477,0.12147 0.0536,0.12148 0.0597,0.11664 0.0645,0.11306 0.0704,0.10943 0.074,0.10583 0.0799,0.10223 0.0859,0.0998 0.0883,0.0937 0.0931,0.0902 0.0967,0.0842 0.10267,0.0806 0.10622,0.077 0.10744,0.0697 0.11102,0.0637 0.11818,0.0613 0.11937,0.0542 0.12175,0.0481 0.12414,0.042 0.12773,0.0372 0.12772,0.03 0.13251,0.0228 0.13727,0.0181 0.13489,0.0107 0.13847,0.002 0,1.0198 -0.191,-0.005 -0.1874,-0.0157 -0.18264,-0.0228 -0.18264,-0.0325 -0.18024,-0.042 -0.17547,-0.0493 -0.1719,-0.059 -0.16951,-0.0673 -0.16234,-0.0758 -0.15876,-0.0806 -0.15637,-0.0902 -0.15041,-0.0986 -0.14443,-0.10342 -0.13847,-0.10945 -0.1349,-0.11786 -0.12892,-0.12386 -0.12175,-0.12989 -0.11459,-0.13349 -0.11102,-0.14072 -0.10266,-0.14671 -0.0967,-0.15034 -0.0883,-0.15635 -0.0811,-0.15994 -0.0752,-0.16477 -0.0668,-0.16957 -0.0585,-0.17559 -0.0489,-0.17559 -0.0417,-0.1816 -0.0323,-0.18401 -0.0226,-0.184 -0.0156,-0.18882 -0.005,-0.19241 z m 3.6981,-3.727 0,1.0198 -0.13847,0.002 -0.13489,0.0108 -0.13727,0.0181 -0.1325,0.0228 -0.12773,0.03 -0.12772,0.0372 -0.12415,0.042 -0.12174,0.0481 -0.11938,0.0542 -0.11817,0.0613 -0.11102,0.0637 -0.10744,0.0697 -0.10623,0.077 -0.10266,0.0806 -0.0967,0.0842 -0.0931,0.0902 -0.0883,0.0938 -0.0859,0.0997 -0.08,0.10224 -0.074,0.10583 -0.0704,0.10945 -0.0645,0.11304 -0.0597,0.11666 -0.0537,0.12147 -0.0477,0.12146 -0.0417,0.12507 -0.037,0.12989 -0.0298,0.12868 -0.0226,0.1335 -0.0179,0.13831 -0.0107,0.13589 -0.002,0.13951 -1.0122,0 0.005,-0.19242 0.0156,-0.18882 0.0226,-0.18401 0.0323,-0.184 0.0417,-0.1816 0.049,-0.17559 0.0585,-0.17558 0.0668,-0.16958 0.0752,-0.16477 0.0811,-0.15995 0.0883,-0.15634 0.0967,-0.15033 0.10266,-0.14672 0.11102,-0.14072 0.11459,-0.13349 0.12176,-0.12988 0.12892,-0.12387 0.13488,-0.11786 0.13847,-0.10944 0.14443,-0.10343 0.15041,-0.0985 0.15638,-0.0902 0.15875,-0.0806 0.16235,-0.0758 0.16951,-0.0673 0.17189,-0.0589 0.17548,-0.0493 0.18024,-0.042 0.18264,-0.0325 0.18264,-0.0228 0.18741,-0.0157 0.19099,-0.005 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path181" + d="m 457.34,266.19 c 1.7631,0 3.1919,1.4396 3.1919,3.2159 0,1.7775 -1.4288,3.2171 -3.1919,3.2171 -1.7643,0 -3.1931,-1.4396 -3.1931,-3.2171 0,-1.7763 1.4288,-3.2159 3.1931,-3.2159 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path183" + d="m 461.04,269.41 -1.0122,0 0,0 -0.002,-0.1395 -0.0107,-0.1359 -0.0179,-0.13831 -0.0226,-0.13349 -0.0298,-0.12869 -0.0369,-0.12869 -0.0417,-0.12507 -0.0477,-0.12266 -0.0537,-0.12028 -0.0609,-0.11905 -0.0633,-0.11185 -0.0704,-0.10945 -0.074,-0.10582 -0.08,-0.10224 -0.0859,-0.0997 -0.0883,-0.0925 -0.0919,-0.089 -0.099,-0.0865 -0.10147,-0.0806 -0.10505,-0.0746 -0.10863,-0.0709 -0.11101,-0.0637 -0.11818,-0.0613 -0.11937,-0.0542 -0.12176,-0.0481 -0.12414,-0.042 -0.12772,-0.0372 -0.12773,-0.03 -0.13249,-0.0228 -0.13729,-0.0181 -0.13488,-0.0108 -0.13847,-0.002 0,-1.0198 0.19099,0.005 0.18741,0.0157 0.18264,0.0228 0.18263,0.0325 0.18025,0.042 0.17547,0.0493 0.17189,0.0589 0.16951,0.0673 0.16234,0.0758 0.15877,0.0806 0.15637,0.0902 0.14921,0.0974 0.14563,0.10344 0.13966,0.11184 0.1325,0.11546 0.13011,0.12266 0.12177,0.1311 0.11459,0.13349 0.11102,0.14071 0.10265,0.14672 0.0967,0.15034 0.0896,0.15755 0.08,0.15994 0.0752,0.16356 0.0668,0.17078 0.0585,0.17318 0.049,0.17679 0.0417,0.18161 0.0323,0.184 0.0226,0.184 0.0156,0.18883 0.005,0.19241 0,0 z m -3.6981,3.727 0,-1.0198 0.13847,-0.002 0.13489,-0.0108 0.13728,-0.0181 0.13249,-0.0228 0.12773,-0.03 0.12773,-0.0372 0.12414,-0.042 0.12175,-0.0481 0.11937,-0.0542 0.11818,-0.0613 0.11102,-0.0637 0.10863,-0.0709 0.10503,-0.0746 0.10148,-0.0806 0.099,-0.0866 0.0919,-0.089 0.0883,-0.0925 0.0859,-0.0998 0.0799,-0.10223 0.074,-0.10463 0.0704,-0.11185 0.0645,-0.11304 0.0597,-0.11666 0.0536,-0.12147 0.0477,-0.12147 0.0417,-0.12506 0.0369,-0.12749 0.0298,-0.13109 0.0227,-0.13229 0.0179,-0.13831 0.0107,-0.1371 0.002,-0.1395 1.0122,0 -0.005,0.19241 -0.0156,0.19003 -0.0226,0.184 -0.0323,0.1828 -0.0417,0.1816 -0.049,0.17799 -0.0585,0.17319 -0.0668,0.16957 -0.0752,0.16476 -0.0811,0.15996 -0.0883,0.15634 -0.0967,0.15033 -0.10266,0.14793 -0.11101,0.1407 -0.1146,0.1335 -0.12176,0.13109 -0.13011,0.12267 -0.13249,0.11545 -0.13967,0.11184 -0.14562,0.10344 -0.14922,0.0974 -0.15638,0.0902 -0.15875,0.0806 -0.16235,0.0758 -0.1695,0.0673 -0.17189,0.059 -0.17548,0.0493 -0.18025,0.042 -0.18263,0.0325 -0.18264,0.0228 -0.18741,0.0156 -0.19098,0.005 z m -3.6993,-3.727 1.0122,0 0.002,0.13951 0.0107,0.1371 0.0179,0.13831 0.0226,0.13228 0.0298,0.13109 0.0369,0.12748 0.0417,0.12508 0.0477,0.12146 0.0536,0.12148 0.0598,0.11665 0.0645,0.11305 0.0704,0.11185 0.074,0.10463 0.08,0.10222 0.0859,0.0998 0.0883,0.0925 0.0919,0.089 0.099,0.0865 0.10147,0.0806 0.10385,0.0746 0.11102,0.0709 0.1122,0.0649 0.11699,0.0602 0.11817,0.0541 0.12176,0.0481 0.12414,0.042 0.12654,0.0372 0.13011,0.03 0.1313,0.0228 0.13728,0.0181 0.13607,0.0107 0.13847,0.002 0,1.0198 -0.19097,-0.005 -0.18862,-0.0157 -0.18264,-0.0228 -0.18142,-0.0325 -0.18026,-0.042 -0.17667,-0.0493 -0.17189,-0.059 -0.16951,-0.0673 -0.16353,-0.0758 -0.15758,-0.0818 -0.15517,-0.089 -0.14921,-0.0974 -0.14683,-0.10342 -0.13966,-0.11185 -0.13249,-0.11546 -0.13011,-0.12267 -0.12177,-0.13108 -0.11459,-0.1335 -0.11102,-0.14071 -0.10265,-0.14792 -0.0967,-0.15033 -0.0883,-0.15635 -0.0811,-0.15994 -0.0752,-0.16477 -0.0668,-0.16958 -0.0585,-0.17318 -0.049,-0.17799 -0.0417,-0.1816 -0.0323,-0.1828 -0.0226,-0.18401 -0.0156,-0.19002 -0.005,-0.19242 z m 3.6993,-3.7258 0,1.0198 -0.13846,0.002 -0.13608,0.0108 -0.13728,0.0181 -0.13131,0.0228 -0.13011,0.03 -0.12653,0.0372 -0.12414,0.042 -0.12177,0.0481 -0.11817,0.0542 -0.11697,0.0602 -0.11222,0.0649 -0.11101,0.071 -0.10386,0.0745 -0.10147,0.0806 -0.099,0.0865 -0.092,0.089 -0.0883,0.0925 -0.0859,0.0997 -0.0799,0.10223 -0.074,0.10583 -0.0704,0.10945 -0.0633,0.11184 -0.0609,0.11907 -0.0537,0.12027 -0.0477,0.12266 -0.0417,0.12507 -0.0369,0.12868 -0.0298,0.1287 -0.0226,0.13349 -0.0179,0.1383 -0.0107,0.13589 -0.002,0.13951 -1.0122,0 0.005,-0.19242 0.0156,-0.18881 0.0226,-0.184 0.0323,-0.18402 0.0417,-0.18159 0.049,-0.17678 0.0585,-0.17319 0.0668,-0.17078 0.0752,-0.16356 0.0799,-0.15996 0.0896,-0.15754 0.0967,-0.15034 0.10267,-0.14671 0.11101,-0.14071 0.1146,-0.1335 0.12174,-0.13108 0.13013,-0.12268 0.13249,-0.11545 0.13966,-0.11186 0.14682,-0.10341 0.14922,-0.0974 0.15518,-0.089 0.15756,-0.0818 0.16354,-0.0758 0.16951,-0.0673 0.17189,-0.059 0.17666,-0.0493 0.18026,-0.042 0.18144,-0.0325 0.18263,-0.0228 0.1886,-0.0156 0.19099,-0.005 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path185" + d="m 370.93,237.39 c 2.4172,-0.74323 6.1953,4.6362 7.0941,4.5436 1.1889,-3.0764 -1.2367,-10.433 -5.5328,-16.257 -2.9186,-0.9585 -3.18,-2.8479 -3.7828,-7.2303 -0.18026,-1.3109 -2.6798,-0.4077 -2.7252,1.8232 -0.0502,2.3909 -0.23397,3.715 0.29722,5.7559 0.20891,0.80457 0.0931,1.5755 -0.79858,2.3103 4.5504,1.8148 5.6677,4.0397 5.448,9.056 v -10e-4 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path187" + d="m 377.56,241.75 0.94302,0.37042 -0.42018,0.3211 -0.25306,-0.0157 -0.20055,-0.0673 -0.17786,-0.0925 -0.17308,-0.11183 -0.17309,-0.12989 -0.18144,-0.14792 -0.18622,-0.16356 -0.19577,-0.1768 -0.20412,-0.19242 -0.21248,-0.20325 -0.21845,-0.21046 -0.2268,-0.21889 -0.23395,-0.2261 -0.23874,-0.2285 -0.24472,-0.22971 -0.24828,-0.2297 -0.25187,-0.2261 -0.25307,-0.22128 -0.25664,-0.21528 -0.25426,-0.20445 -0.25544,-0.19242 -0.25426,-0.1804 -0.25068,-0.16477 -0.24471,-0.14672 -0.23993,-0.12628 -0.23158,-0.10462 -0.22203,-0.083 -0.21008,-0.0577 -0.19696,-0.0337 -0.18144,-0.009 -0.16832,0.0132 -0.15756,0.0349 -0.29603,-0.97414 0.30319,-0.0685 0.30678,-0.0253 0.30797,0.0167 0.302,0.053 0.29843,0.0818 0.29603,0.10945 0.29127,0.13108 0.29006,0.15274 0.28768,0.17077 0.28411,0.18642 0.28051,0.19963 0.27933,0.21167 0.27574,0.22129 0.27097,0.2273 0.26738,0.23332 0.26143,0.23572 0.25783,0.23693 0.24948,0.2369 0.24352,0.23092 0.23635,0.2285 0.22681,0.21888 0.21845,0.21047 0.20531,0.19843 0.19457,0.18039 0.18383,0.16718 0.16712,0.14672 0.1504,0.12388 0.13012,0.0962 0.10623,0.071 0.068,0.0348 0.0167,0.007 -0.0668,-0.001 -0.42018,0.32111 z m 0.94302,0.37042 -0.1122,0.28984 -0.30798,0.0312 0.42018,-0.3211 z m -6.1607,-15.958 0.31275,-0.96933 0.24948,0.1804 0.40346,0.55923 0.39153,0.56646 0.3808,0.57365 0.36646,0.57848 0.35572,0.58448 0.34259,0.5881 0.32946,0.59051 0.31633,0.5917 0.30201,0.5917 0.28768,0.59171 0.27455,0.59049 0.26022,0.5881 0.24352,0.58328 0.23038,0.57968 0.21368,0.57367 0.19815,0.56885 0.18144,0.56043 0.16591,0.55082 0.14922,0.54118 0.13011,0.53278 0.1146,0.52075 0.0955,0.50752 0.0777,0.49549 0.0597,0.47986 0.0406,0.46663 0.0204,0.45099 0,0.43535 -0.0215,0.41613 -0.0417,0.40048 -0.0645,0.38123 -0.0896,0.36441 -0.11579,0.34275 -0.94302,-0.37042 0.0871,-0.25856 0.0704,-0.28504 0.0525,-0.31388 0.0369,-0.34035 0.0191,-0.36321 0,-0.38484 -0.0204,-0.4077 -0.0358,-0.42575 -0.0549,-0.44617 -0.0728,-0.46182 -0.0908,-0.47866 -0.10743,-0.49188 -0.12533,-0.50631 -0.14205,-0.51713 -0.15877,-0.52918 -0.17428,-0.53878 -0.191,-0.54721 -0.2065,-0.55442 -0.22322,-0.56043 -0.23635,-0.56646 -0.25068,-0.56885 -0.26739,-0.57366 -0.28051,-0.57487 -0.29246,-0.57487 -0.30678,-0.57486 -0.31991,-0.57367 -0.33304,-0.57126 -0.34618,-0.56765 -0.35691,-0.56163 -0.36885,-0.55683 -0.3796,-0.54961 -0.39153,-0.5424 0.24949,0.18039 z m 0.31275,-0.96933 0.15398,0.0505 0.0955,0.12988 -0.24948,-0.1804 z m -4.4406,-6.6759 1.0027,-0.1395 0.0561,0.40287 0.0525,0.38847 0.0536,0.37282 0.0525,0.36079 0.0513,0.34275 0.0537,0.33073 0.0548,0.3151 0.0549,0.30428 0.0573,0.28863 0.0609,0.2754 0.0621,0.26097 0.0668,0.24776 0.0704,0.23693 0.074,0.22368 0.0788,0.21168 0.0836,0.19843 0.0871,0.1864 0.0943,0.17679 0.10025,0.16596 0.10505,0.15756 0.11341,0.14792 0.12055,0.13951 0.12892,0.13349 0.13727,0.12508 0.14922,0.11907 0.16234,0.11545 0.17189,0.10944 0.18621,0.10343 0.20175,0.10096 0.21605,0.0962 0.23158,0.0902 0.24829,0.0866 -0.31275,0.96933 -0.2841,-0.0986 -0.26977,-0.10702 -0.25666,-0.11305 -0.24231,-0.12027 -0.23396,-0.12989 -0.21965,-0.14071 -0.20531,-0.14673 -0.19696,-0.15754 -0.18503,-0.16836 -0.17189,-0.1768 -0.15876,-0.18521 -0.14922,-0.19604 -0.13845,-0.20324 -0.12654,-0.21167 -0.11818,-0.22248 -0.10862,-0.22971 -0.10026,-0.23933 -0.0908,-0.24774 -0.0859,-0.25496 -0.0777,-0.26579 -0.074,-0.2742 -0.0692,-0.28504 -0.0633,-0.29464 -0.0621,-0.30548 -0.0573,-0.3163 -0.0573,-0.32711 -0.0537,-0.34036 -0.0537,-0.35236 -0.0525,-0.36321 -0.0537,-0.37763 -0.0549,-0.38846 -0.0561,-0.40529 z m -1.7177,1.7643 -1.0122,-0.0217 0.0131,-0.24052 0.0298,-0.23452 0.0454,-0.22369 0.0573,-0.21287 0.0716,-0.20806 0.0848,-0.19603 0.0942,-0.18521 0.10623,-0.1756 0.11221,-0.16475 0.12295,-0.15394 0.12892,-0.14312 0.13369,-0.12989 0.14085,-0.12146 0.14565,-0.10944 0.14681,-0.0962 0.1516,-0.0854 0.154,-0.0746 0.15637,-0.0613 0.15757,-0.0481 0.15994,-0.036 0.15877,-0.0217 0.16234,-0.007 0.16116,0.0108 0.15995,0.0288 0.16115,0.0517 0.15279,0.0758 0.14324,0.0974 0.12773,0.12266 0.10982,0.14432 0.0859,0.16356 0.0596,0.17078 0.0369,0.18161 -1.0027,0.13949 -0.0107,-0.0517 -0.0119,-0.036 -0.009,-0.0193 -0.009,-0.012 -0.0107,-0.009 -0.0143,-0.0108 -0.0191,-0.008 -0.0275,-0.008 -0.0429,-0.007 -0.0513,-0.004 -0.0598,0.002 -0.0728,0.009 -0.0764,0.0168 -0.0836,0.0265 -0.0871,0.0348 -0.0919,0.0433 -0.0919,0.0517 -0.0942,0.0625 -0.0931,0.0685 -0.0908,0.0782 -0.0883,0.0866 -0.0859,0.095 -0.08,0.10096 -0.0764,0.10944 -0.0704,0.11787 -0.0633,0.12507 -0.0561,0.13109 -0.0477,0.13831 -0.0406,0.14793 -0.031,0.15393 -0.0204,0.15996 -0.008,0.17077 z m 0.28052,5.6164 -0.97883,0.25738 -0.049,-0.19604 -0.0466,-0.19483 -0.0406,-0.19002 -0.0382,-0.18521 -0.0335,-0.18279 -0.031,-0.18281 -0.0263,-0.1792 -0.025,-0.17679 -0.0204,-0.17798 -0.0179,-0.17319 -0.0144,-0.17198 -0.0131,-0.17198 -0.009,-0.17077 -0.008,-0.17078 -0.005,-0.17198 -0.005,-0.16957 -0.002,-0.17198 0,-0.17439 0.001,-0.17198 0.002,-0.17438 0.005,-0.17799 0.005,-0.178 0.005,-0.18159 0.006,-0.18401 0.006,-0.18521 0.006,-0.19362 0.007,-0.19243 0.006,-0.19964 0.007,-0.20444 0.006,-0.20686 0.006,-0.21288 0.004,-0.22008 1.0122,0.0217 -0.006,0.22249 -0.006,0.21768 -0.006,0.21167 -0.007,0.20444 -0.006,0.19965 -0.007,0.19483 -0.006,0.18881 -0.006,0.18762 -0.006,0.1816 -0.005,0.17678 -0.005,0.17559 -0.002,0.17078 -0.002,0.16717 -10e-4,0.16716 0,0.16236 0.002,0.15995 0.002,0.16236 0.005,0.15755 0.008,0.15635 0.009,0.15874 0.0107,0.15756 0.0144,0.15754 0.0156,0.16115 0.0179,0.15634 0.0227,0.15996 0.0238,0.16476 0.0286,0.16357 0.031,0.16837 0.0335,0.17078 0.0382,0.17317 0.0417,0.178 0.0466,0.1816 z m -1.1018,1.9651 -0.37243,0.94768 -0.1337,-0.86831 0.0704,-0.059 0.0645,-0.0577 0.0597,-0.059 0.0585,-0.0602 0.0537,-0.0577 0.0477,-0.0565 0.043,-0.053 0.0394,-0.0541 0.0369,-0.0553 0.0346,-0.0553 0.031,-0.0542 0.0275,-0.053 0.0238,-0.0505 0.0216,-0.0505 0.0179,-0.0517 0.0167,-0.0542 0.0156,-0.053 0.0107,-0.0482 0.009,-0.053 0.008,-0.0565 0.006,-0.0517 0.004,-0.053 0.001,-0.0517 0,-0.059 -0.002,-0.0565 -0.005,-0.0577 -0.005,-0.0577 -0.009,-0.0589 -0.009,-0.0649 -0.0119,-0.0577 -0.0131,-0.0602 -0.0167,-0.0662 0.97883,-0.25738 0.0215,0.0854 0.0204,0.089 0.0167,0.0914 0.0144,0.0865 0.0119,0.0902 0.009,0.089 0.007,0.0914 0.002,0.0902 0.002,0.0902 -0.004,0.095 -0.006,0.0938 -0.0107,0.095 -0.0131,0.0878 -0.0167,0.0938 -0.0227,0.0962 -0.025,0.0914 -0.0286,0.0902 -0.0346,0.0925 -0.0382,0.0938 -0.043,0.0914 -0.0466,0.089 -0.0502,0.0878 -0.0537,0.0866 -0.0585,0.0865 -0.0633,0.0878 -0.0692,0.0865 -0.0716,0.083 -0.0752,0.0818 -0.0777,0.0795 -0.0836,0.0806 -0.0908,0.0818 -0.0919,0.0782 -0.13369,-0.86832 z m -0.37243,0.94768 -0.79977,-0.31869 0.66607,-0.54962 0.1337,0.86831 z m 5.1281,8.5821 1.0122,0 -1.011,-0.0228 0.0167,-0.4534 0.007,-0.43655 0,-0.42093 -0.008,-0.40409 -0.0179,-0.38846 -0.0275,-0.37162 -0.037,-0.35839 -0.0466,-0.34154 -0.0573,-0.32833 -0.0656,-0.31509 -0.0789,-0.30067 -0.0871,-0.28863 -0.099,-0.27541 -0.10982,-0.26458 -0.12176,-0.25496 -0.13369,-0.24535 -0.14564,-0.23571 -0.15876,-0.22851 -0.17308,-0.21888 -0.18741,-0.21528 -0.20294,-0.20805 -0.21724,-0.20085 -0.23516,-0.19724 -0.25188,-0.19242 -0.26857,-0.18881 -0.28887,-0.184 -0.30559,-0.18161 -0.32588,-0.17679 -0.34497,-0.17559 -0.36528,-0.17197 -0.38557,-0.16837 -0.40584,-0.16718 0.37242,-0.94768 0.42735,0.1768 0.40704,0.17798 0.39155,0.184 0.37123,0.18762 0.35453,0.19363 0.33662,0.19843 0.31991,0.20566 0.30438,0.21287 0.28769,0.21887 0.27097,0.22851 0.25544,0.23693 0.23874,0.24655 0.22323,0.25375 0.20651,0.26458 0.19218,0.2742 0.17429,0.28383 0.16234,0.29345 0.14324,0.30306 0.13131,0.31269 0.11579,0.32352 0.10147,0.33433 0.0883,0.34395 0.0752,0.35359 0.0645,0.3668 0.0513,0.37764 0.0394,0.38966 0.0298,0.40047 0.0179,0.41491 0.0107,0.42574 0,0.44259 -0.009,0.4558 -0.0167,0.47024 -1.0111,-0.0228 z m 1.0122,-0.001 0,0.001 -1.0122,0 0,-0.001 0.35813,-0.48708 0.65413,0.48708 z m -1.0122,0 0,-0.37644 0.35813,-0.11064 -0.35813,0.48708 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path189" + d="m 368.78,218.51 c -0.4166,1.009 -0.54312,1.8352 -0.64339,3.3674 -0.0764,1.1678 0.34975,2.261 1.0922,3.2291 0.74486,0.97294 1.8108,1.8292 3.0081,2.5244 0.74128,0.43176 1.5924,1.6248 2.2656,2.9814 0.66966,1.3494 1.1603,2.8719 1.1877,3.9543 0.0955,3.5803 0.78904,6.7084 2.4172,7.3253 1.0648,0.40409 1.4909,0.34155 2.3158,0.14913 -0.23278,-0.64342 -0.14444,-1.549 -0.71861,-2.4462 -0.73889,-1.157 -1.3871,-2.4859 -1.4456,-3.6488 -0.0513,-0.9044 -0.47509,-1.5081 -0.12533,-3.2905 0.2256,-1.1546 0.97285,-1.5911 0.84035,-2.6554 -0.25665,-2.0625 -1.8741,-6.0205 -4.2484,-6.0205 -2.3408,-10e-4 -3.4343,-0.25376 -4.6459,-3.3698 -0.41183,-1.0595 -0.95018,-1.5695 -1.2999,-2.0998 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path191" + d="m 368.64,221.91 -1.0099,-0.0673 0,0 0.009,-0.14312 0.009,-0.1383 0.0107,-0.13712 0.0107,-0.13469 0.0107,-0.12748 0.0107,-0.12628 0.0131,-0.12508 0.0119,-0.11784 0.0119,-0.11787 0.0131,-0.11546 0.0143,-0.11424 0.0156,-0.11426 0.0156,-0.10824 0.0167,-0.10704 0.0179,-0.10823 0.0191,-0.10584 0.0204,-0.10223 0.0191,-0.0997 0.0226,-0.10222 0.0226,-0.10096 0.0238,-0.10096 0.0263,-0.0986 0.0263,-0.0985 0.0298,-0.10096 0.0298,-0.0962 0.0298,-0.0937 0.0323,-0.0999 0.0358,-0.0997 0.0346,-0.0962 0.0369,-0.0985 0.0394,-0.10096 0.0406,-0.0986 0.93347,0.39206 -0.0357,0.089 -0.0347,0.0865 -0.0323,0.0866 -0.0323,0.0865 -0.0286,0.083 -0.0275,0.083 -0.0275,0.089 -0.0275,0.0842 -0.0226,0.0818 -0.0238,0.0866 -0.0216,0.0842 -0.0215,0.0866 -0.0204,0.0865 -0.0179,0.0878 -0.0191,0.0925 -0.0179,0.0925 -0.0167,0.0914 -0.0156,0.0938 -0.0144,0.0974 -0.0156,0.10096 -0.0131,0.0998 -0.0119,0.10463 -0.0131,0.10823 -0.0119,0.11064 -0.0119,0.11546 -0.0107,0.11545 -0.0107,0.12147 -0.0107,0.12508 -0.0107,0.12749 -0.008,0.12987 -0.009,0.1359 -0.009,0.14072 0,0 z m 0.98718,2.884 -0.79978,0.62297 -0.0752,-0.0986 -0.0704,-0.0985 -0.0704,-0.0986 -0.068,-0.10222 -0.0668,-0.10223 -0.0633,-0.10222 -0.0633,-0.10464 -0.0585,-0.10583 -0.0561,-0.10223 -0.0561,-0.10704 -0.0525,-0.10703 -0.0525,-0.11065 -0.0466,-0.10943 -0.0454,-0.10703 -0.0442,-0.11065 -0.0406,-0.11304 -0.0394,-0.11667 -0.0346,-0.11184 -0.0323,-0.11185 -0.031,-0.11666 -0.0275,-0.11786 -0.0226,-0.11305 -0.0226,-0.11666 -0.0191,-0.12266 -0.0156,-0.11787 -0.0131,-0.11906 -0.009,-0.12147 -0.006,-0.12026 -0.004,-0.12266 0,-0.12027 0.004,-0.12147 0.006,-0.12387 1.0099,0.0673 -0.006,0.095 -10e-4,0.095 0,0.0962 10e-4,0.0938 0.006,0.0938 0.007,0.0925 0.0107,0.095 0.0107,0.0937 0.0143,0.089 0.0179,0.0926 0.0204,0.0962 0.0204,0.089 0.0238,0.0902 0.0275,0.0925 0.0275,0.0926 0.0298,0.0878 0.0335,0.089 0.0347,0.089 0.0382,0.0925 0.0394,0.0902 0.0406,0.0865 0.0429,0.0878 0.0466,0.0878 0.049,0.0902 0.049,0.0866 0.0514,0.0854 0.0537,0.0878 0.0548,0.0854 0.0585,0.0854 0.0609,0.0866 0.0609,0.0842 0.0633,0.0842 z m 2.8613,2.3945 -0.50612,0.88274 -0.11579,-0.0685 -0.1146,-0.0685 -0.11458,-0.0697 -0.1146,-0.0722 -0.11101,-0.071 -0.11103,-0.0721 -0.1122,-0.0746 -0.10982,-0.0758 -0.10862,-0.0758 -0.10625,-0.0758 -0.10742,-0.0782 -0.10625,-0.0794 -0.10265,-0.0795 -0.10386,-0.0794 -0.10384,-0.0842 -0.10025,-0.0818 -0.099,-0.083 -0.099,-0.0865 -0.0955,-0.0842 -0.0955,-0.0854 -0.0944,-0.0878 -0.0919,-0.0878 -0.0908,-0.089 -0.0896,-0.0902 -0.0883,-0.0902 -0.0883,-0.095 -0.0823,-0.0914 -0.0823,-0.0914 -0.0836,-0.0962 -0.0787,-0.095 -0.0788,-0.0974 -0.074,-0.0974 0.79978,-0.62298 0.0668,0.0854 0.0668,0.083 0.0692,0.083 0.0692,0.0818 0.0752,0.0842 0.0752,0.0842 0.074,0.0782 0.0788,0.0806 0.0799,0.0806 0.0811,0.0794 0.0823,0.0782 0.0847,0.0782 0.0859,0.0782 0.0883,0.0795 0.0871,0.0746 0.092,0.0758 0.0908,0.077 0.0919,0.0721 0.0942,0.0746 0.0955,0.0721 0.0967,0.0722 0.0979,0.0709 0.099,0.0709 0.10148,0.0709 0.10025,0.0685 0.10025,0.0673 0.10624,0.0673 0.10386,0.0685 0.10504,0.0649 0.10505,0.0649 0.10742,0.0637 0.10863,0.0637 z m 2.465,3.1954 -0.90482,0.45461 -0.0609,-0.12267 -0.0621,-0.12028 -0.0633,-0.11905 -0.0645,-0.12026 -0.0645,-0.11666 -0.0656,-0.11546 -0.0668,-0.11425 -0.0656,-0.11184 -0.0668,-0.10944 -0.068,-0.10946 -0.068,-0.10582 -0.0692,-0.10343 -0.068,-0.10222 -0.068,-0.0974 -0.0692,-0.0962 -0.0692,-0.095 -0.068,-0.0902 -0.0668,-0.0866 -0.0692,-0.083 -0.068,-0.083 -0.0668,-0.077 -0.0657,-0.0722 -0.0668,-0.071 -0.0657,-0.0673 -0.0645,-0.0625 -0.0621,-0.0577 -0.0621,-0.0541 -0.0609,-0.0505 -0.0549,-0.042 -0.0585,-0.042 -0.0573,-0.0384 -0.0489,-0.03 0.50613,-0.88274 0.0896,0.0541 0.0836,0.0577 0.0847,0.059 0.0883,0.0685 0.0823,0.0697 0.0811,0.0709 0.0836,0.077 0.0811,0.0795 0.0799,0.0818 0.0811,0.0854 0.0799,0.089 0.0811,0.0937 0.0777,0.0925 0.0788,0.0974 0.0788,0.10096 0.0777,0.10222 0.0764,0.10464 0.0764,0.10583 0.0777,0.11185 0.0752,0.11183 0.074,0.11306 0.0752,0.11787 0.0728,0.11664 0.074,0.11907 0.0728,0.12146 0.0717,0.12389 0.0704,0.12507 0.0692,0.12628 0.0692,0.12748 0.068,0.12868 0.0668,0.13229 0.0657,0.12988 z m 1.2402,4.1684 -1.0098,0.0265 -0.004,-0.089 -0.006,-0.0925 -0.009,-0.0986 -0.009,-0.10096 -0.0131,-0.0997 -0.0143,-0.10343 -0.0179,-0.10823 -0.0204,-0.10945 -0.0215,-0.11064 -0.025,-0.11185 -0.0275,-0.11785 -0.0286,-0.11787 -0.0298,-0.11666 -0.0323,-0.11906 -0.0357,-0.12027 -0.0369,-0.12627 -0.037,-0.12027 -0.0406,-0.12146 -0.043,-0.12749 -0.0442,-0.12748 -0.0454,-0.12507 -0.0454,-0.12267 -0.0502,-0.12627 -0.0501,-0.12749 -0.0514,-0.12628 -0.0525,-0.12627 -0.0549,-0.12508 -0.0549,-0.12628 -0.0561,-0.12387 -0.0585,-0.12388 -0.0597,-0.12507 -0.0598,-0.12268 0.90483,-0.4546 0.0645,0.1323 0.0621,0.12989 0.0633,0.13349 0.0609,0.13589 0.0598,0.13351 0.0573,0.13469 0.0573,0.13589 0.0561,0.13591 0.0525,0.13469 0.0525,0.13349 0.0525,0.13951 0.0477,0.13711 0.0466,0.13469 0.0454,0.13229 0.0454,0.1359 0.0417,0.1371 0.0394,0.13109 0.0382,0.13229 0.0369,0.13351 0.0346,0.13349 0.031,0.12988 0.0298,0.12747 0.0275,0.12869 0.0263,0.12749 0.0226,0.12627 0.0204,0.12507 0.0191,0.12268 0.0156,0.12387 0.0119,0.12027 0.009,0.11545 0.008,0.11907 0.004,0.11545 z m -1.0098,0.0265 z m 3.1,6.8359 -0.35572,0.95252 -0.19338,-0.083 -0.18621,-0.10221 -0.17428,-0.11787 -0.16473,-0.13228 -0.15519,-0.14432 -0.148,-0.15756 -0.13967,-0.17198 -0.13011,-0.1828 -0.12177,-0.18882 -0.11459,-0.20083 -0.10982,-0.21288 -0.10147,-0.22008 -0.0967,-0.2285 -0.0896,-0.23812 -0.0848,-0.24535 -0.08,-0.25616 -0.074,-0.25977 -0.0692,-0.2694 -0.0645,-0.2778 -0.0597,-0.28383 -0.0549,-0.28864 -0.0513,-0.29465 -0.0454,-0.30307 -0.043,-0.30788 -0.0382,-0.31269 -0.0335,-0.3175 -0.0298,-0.3223 -0.025,-0.32712 -0.0226,-0.32953 -0.0179,-0.33434 -0.0143,-0.33674 -0.0107,-0.34035 1.0098,-0.0265 0.0107,0.32833 0.0143,0.32472 0.0179,0.32231 0.0204,0.3175 0.025,0.31269 0.0298,0.31028 0.031,0.30307 0.0357,0.29585 0.0406,0.29345 0.043,0.28382 0.049,0.27781 0.0501,0.2718 0.0549,0.26218 0.0597,0.25376 0.0645,0.24534 0.0668,0.23812 0.0704,0.22731 0.0752,0.21646 0.0777,0.20687 0.0823,0.19483 0.0848,0.184 0.0883,0.17199 0.0931,0.15995 0.0931,0.14792 0.0967,0.1347 0.0967,0.11905 0.10025,0.10704 0.10266,0.0962 0.10265,0.0818 0.10266,0.0697 0.10266,0.0565 0.10743,0.047 z m 1.6628,0.79978 0.95019,-0.34877 -0.3605,0.67107 -0.0777,0.0181 -0.0777,0.0181 -0.0777,0.0167 -0.0728,0.0145 -0.0704,0.0144 -0.074,0.0145 -0.0789,0.0145 -0.0716,0.0108 -0.068,0.009 -0.0764,0.0108 -0.0728,0.007 -0.0729,0.006 -0.0777,0.005 -0.0777,0.004 -0.0777,0 -0.074,-0.002 -0.0777,-0.002 -0.0836,-0.006 -0.0787,-0.008 -0.0789,-0.009 -0.08,-0.0132 -0.0823,-0.0132 -0.0859,-0.0168 -0.0871,-0.0205 -0.0871,-0.0217 -0.0896,-0.024 -0.0919,-0.0265 -0.0896,-0.0277 -0.0955,-0.03 -0.10266,-0.036 -0.099,-0.036 -0.10148,-0.0385 0.35573,-0.9525 0.0942,0.0337 0.0896,0.0337 0.0789,0.0265 0.0811,0.0253 0.08,0.0253 0.0728,0.0217 0.0704,0.0193 0.0657,0.0167 0.0633,0.0133 0.0597,0.012 0.0609,0.0108 0.0585,0.008 0.0573,0.007 0.0525,0.006 0.0478,0.004 0.0514,0.002 0.0549,0 0.049,0 0.049,-0.001 0.0489,-0.002 0.0537,-0.006 0.0536,-0.005 0.0501,-0.006 0.0609,-0.009 0.0573,-0.008 0.0549,-0.009 0.0597,-0.012 0.068,-0.0145 0.068,-0.0145 0.0657,-0.0145 0.0704,-0.0155 0.0752,-0.0181 -0.36049,0.67108 z m 0.95019,-0.34877 0.19577,0.54118 -0.55627,0.12989 0.3605,-0.67107 z m -1.6186,-1.9964 0.8499,-0.55081 0,-0.001 0.0597,0.0986 0.0573,0.0985 0.0525,0.0985 0.0477,0.0962 0.0454,0.0997 0.0394,0.095 0.0369,0.0937 0.037,0.10106 0.0298,0.0962 0.0275,0.089 0.0275,0.0925 0.0226,0.0914 0.0215,0.0878 0.0216,0.0925 0.0167,0.0866 0.0156,0.0806 0.0143,0.0818 0.0156,0.083 0.0131,0.0806 0.0131,0.0746 0.0119,0.077 0.0119,0.0721 0.0119,0.0721 0.0107,0.0662 0.0119,0.0662 0.0119,0.0625 0.0119,0.0577 0.0131,0.0565 0.0156,0.0577 0.0131,0.053 0.0131,0.042 0.0167,0.047 -0.95019,0.34876 -0.0263,-0.0758 -0.025,-0.083 -0.0204,-0.0746 -0.0179,-0.0721 -0.0179,-0.0782 -0.0167,-0.077 -0.0143,-0.077 -0.0144,-0.0758 -0.0131,-0.0758 -0.0119,-0.0746 -0.0119,-0.0746 -0.0119,-0.0721 -0.0131,-0.077 -0.0107,-0.0734 -0.0131,-0.0709 -0.0144,-0.0746 -0.0156,-0.0758 -0.0144,-0.0746 -0.0143,-0.0662 -0.0191,-0.0758 -0.0179,-0.0697 -0.0202,-0.0709 -0.0227,-0.077 -0.0226,-0.0697 -0.0226,-0.0649 -0.0298,-0.0722 -0.0298,-0.0735 -0.031,-0.0662 -0.0357,-0.0721 -0.0357,-0.0697 -0.0405,-0.0697 -0.043,-0.0697 0,-0.001 z m -1.5256,-3.8954 1.0099,-0.0577 0,0.004 0.006,0.0925 0.009,0.0974 0.0119,0.095 0.0156,0.0986 0.0179,0.10096 0.0204,0.10223 0.0238,0.10096 0.0263,0.10704 0.0275,0.10222 0.0323,0.10464 0.0346,0.11064 0.0347,0.10583 0.0382,0.10704 0.0417,0.10944 0.0417,0.10824 0.0454,0.10823 0.049,0.11305 0.0489,0.11065 0.049,0.10824 0.0536,0.10943 0.0548,0.11305 0.0561,0.11066 0.0573,0.10823 0.0598,0.11064 0.0597,0.11064 0.0621,0.10945 0.0621,0.10944 0.0633,0.10704 0.0633,0.10703 0.0668,0.10703 0.0656,0.10704 0.0668,0.10584 -0.84991,0.55081 -0.0717,-0.11305 -0.0704,-0.11185 -0.0692,-0.11425 -0.0704,-0.11666 -0.068,-0.11666 -0.0668,-0.11665 -0.0668,-0.11907 -0.0645,-0.11786 -0.0645,-0.11785 -0.0621,-0.12268 -0.0609,-0.12026 -0.0597,-0.12027 -0.0585,-0.12146 -0.0585,-0.12508 -0.0537,-0.12267 -0.0514,-0.12026 -0.0525,-0.12507 -0.0489,-0.12508 -0.0466,-0.12388 -0.0454,-0.12627 -0.0417,-0.12508 -0.0394,-0.12267 -0.0369,-0.12629 -0.0346,-0.12626 -0.031,-0.12389 -0.0286,-0.12506 -0.025,-0.12629 -0.0226,-0.12267 -0.0204,-0.12748 -0.0144,-0.12627 -0.0119,-0.12388 -0.008,-0.12628 0,0.004 z m 1.0099,-0.0577 0,0.004 -10e-4,-0.0312 10e-4,0.0277 z m -1.1268,-3.3602 0.99317,0.19724 -0.0298,0.15515 -0.0238,0.14551 -0.0203,0.14071 -0.0167,0.13589 -0.0144,0.12868 -0.009,0.11787 -0.007,0.11787 -0.005,0.11424 -0.001,0.10463 0.001,0.10096 0.002,0.0998 0.005,0.0962 0.006,0.0878 0.008,0.089 0.0107,0.0878 0.009,0.0806 0.0131,0.0818 0.0144,0.0854 0.0131,0.077 0.0156,0.0793 0.0144,0.0806 0.0167,0.0794 0.0167,0.083 0.0156,0.0806 0.0156,0.0818 0.0156,0.0818 0.0156,0.0865 0.0131,0.0914 0.0119,0.0854 0.0119,0.0938 0.008,0.0962 0.007,0.0962 -1.0099,0.0577 -0.005,-0.0722 -0.006,-0.0673 -0.009,-0.0697 -0.009,-0.0758 -0.0107,-0.0673 -0.0131,-0.0721 -0.0131,-0.0746 -0.0155,-0.077 -0.0156,-0.0806 -0.0144,-0.0758 -0.0167,-0.0842 -0.0167,-0.083 -0.0179,-0.089 -0.0156,-0.0937 -0.0143,-0.0902 -0.0156,-0.0986 -0.0143,-0.10463 -0.0107,-0.10463 -0.0107,-0.10824 -0.008,-0.11425 -0.005,-0.11546 -0.005,-0.11906 -10e-4,-0.12748 0.004,-0.13109 0.005,-0.13108 0.007,-0.13951 0.0119,-0.14673 0.0167,-0.15032 0.0191,-0.15274 0.0226,-0.15995 0.0286,-0.16959 0.0323,-0.17196 z m 0.8356,-2.4931 1.0027,-0.12747 0.0119,0.12266 0.006,0.11666 0.002,0.11786 -0.006,0.11425 -0.009,0.11185 -0.0179,0.10943 -0.0191,0.10224 -0.0238,0.0985 -0.0275,0.0974 -0.031,0.0974 -0.0335,0.0902 -0.0358,0.0878 -0.0369,0.083 -0.0382,0.0842 -0.0406,0.083 -0.0394,0.0746 -0.037,0.0746 -0.0394,0.0758 -0.0405,0.0758 -0.0382,0.0733 -0.0382,0.071 -0.0357,0.0709 -0.0346,0.0746 -0.0346,0.0721 -0.031,0.0697 -0.031,0.077 -0.0298,0.077 -0.0263,0.0758 -0.0263,0.0818 -0.0238,0.083 -0.0203,0.0842 -0.0191,0.0902 -0.99315,-0.19723 0.0263,-0.12147 0.0298,-0.12026 0.0335,-0.11426 0.0335,-0.10824 0.0382,-0.10944 0.0394,-0.0985 0.0382,-0.0962 0.043,-0.0985 0.0417,-0.089 0.0417,-0.0842 0.0429,-0.0854 0.0405,-0.0806 0.0406,-0.0758 0.0382,-0.0735 0.0369,-0.071 0.0369,-0.0697 0.0347,-0.0697 0.031,-0.0613 0.0286,-0.0625 0.0275,-0.0637 0.0238,-0.0589 0.0216,-0.059 0.0191,-0.0541 0.0156,-0.0589 0.0143,-0.0577 0.0119,-0.0613 0.008,-0.0565 0.005,-0.059 0.004,-0.0637 0,-0.0649 -0.004,-0.0734 -0.007,-0.0721 z m -3.747,-5.5743 0,-1.0198 0.27216,0.0145 0.2662,0.0409 0.25784,0.0673 0.24709,0.0902 0.24113,0.10944 0.23158,0.13229 0.22082,0.14672 0.21248,0.16477 0.20413,0.17799 0.19458,0.19122 0.1874,0.20325 0.17667,0.21286 0.1719,0.22129 0.16353,0.23091 0.15637,0.23813 0.15041,0.24534 0.14086,0.25015 0.13487,0.25497 0.12654,0.25736 0.12176,0.25857 0.1134,0.26218 0.10625,0.26338 0.0978,0.25977 0.0919,0.25977 0.0859,0.25857 0.0764,0.25377 0.0692,0.24893 0.0621,0.24655 0.0536,0.23692 0.0454,0.22971 0.0394,0.22368 0.0298,0.21529 -1.0027,0.12748 -0.025,-0.1816 -0.0347,-0.19483 -0.0406,-0.20566 -0.0489,-0.21286 -0.0549,-0.22008 -0.0645,-0.22731 -0.0692,-0.23212 -0.0764,-0.23451 -0.0848,-0.23813 -0.0908,-0.24053 -0.0967,-0.23932 -0.10385,-0.23813 -0.10982,-0.23691 -0.11459,-0.23332 -0.12296,-0.22851 -0.12653,-0.22368 -0.1313,-0.21649 -0.13727,-0.20925 -0.14205,-0.19964 -0.14564,-0.19002 -0.15041,-0.17919 -0.15159,-0.16477 -0.15638,-0.15274 -0.15876,-0.13951 -0.15995,-0.12386 -0.16116,-0.10824 -0.16234,-0.0914 -0.16234,-0.0758 -0.16592,-0.059 -0.16473,-0.0433 -0.16354,-0.0265 -0.16951,-0.007 z m -5.1162,-3.6946 0.94063,-0.37042 0,-10e-4 0.11101,0.27541 0.10743,0.25737 0.10863,0.24173 0.10625,0.22369 0.10742,0.20926 0.10506,0.19363 0.10622,0.17679 0.10506,0.16476 0.10385,0.14913 0.10384,0.1359 0.10505,0.12388 0.10386,0.11184 0.10385,0.0998 0.10623,0.0902 0.10625,0.0818 0.10743,0.0722 0.11101,0.0661 0.11339,0.0577 0.117,0.0517 0.12295,0.047 0.12891,0.042 0.13251,0.0348 0.14085,0.03 0.14921,0.0277 0.15399,0.0228 0.16235,0.0169 0.17189,0.0156 0.17666,0.0108 0.18741,0.007 0.19577,0.005 0.20292,0.002 0.21129,10e-4 0,1.0198 -0.22084,-10e-4 -0.21487,-0.002 -0.2077,-0.007 -0.20412,-0.007 -0.20053,-0.0132 -0.19338,-0.0157 -0.19339,-0.0217 -0.18979,-0.0277 -0.18263,-0.0325 -0.18145,-0.0397 -0.18025,-0.0493 -0.17666,-0.0565 -0.1707,-0.0637 -0.1719,-0.0758 -0.16591,-0.0866 -0.16116,-0.095 -0.15757,-0.10584 -0.15399,-0.11784 -0.14681,-0.12629 -0.14684,-0.14071 -0.13966,-0.15033 -0.13608,-0.15995 -0.1325,-0.17439 -0.12773,-0.18281 -0.12652,-0.19602 -0.12295,-0.20806 -0.12176,-0.2225 -0.11938,-0.23331 -0.11817,-0.24774 -0.11817,-0.26338 -0.11698,-0.27661 -0.11579,-0.29224 0,-0.001 z m -0.36287,-2.089 -0.93349,-0.39205 0.88811,-0.0854 0.0286,0.042 0.0323,0.047 0.0298,0.0432 0.0323,0.0433 0.0347,0.047 0.0394,0.0517 0.0382,0.0517 0.0371,0.0481 0.0394,0.0517 0.043,0.0553 0.0417,0.0553 0.0406,0.0541 0.0454,0.0602 0.0454,0.0625 0.0442,0.0602 0.0466,0.0662 0.0454,0.0661 0.0454,0.0649 0.0489,0.0733 0.0466,0.0735 0.0454,0.071 0.049,0.0795 0.049,0.0866 0.0442,0.0782 0.0466,0.0842 0.0454,0.089 0.0466,0.0902 0.0466,0.0962 0.043,0.095 0.0442,0.0997 0.0429,0.10222 0.0417,0.10704 -0.94063,0.37042 -0.0371,-0.0878 -0.0357,-0.0878 -0.0369,-0.083 -0.0382,-0.083 -0.0346,-0.0745 -0.0394,-0.0758 -0.0382,-0.0746 -0.0394,-0.0697 -0.0394,-0.0735 -0.037,-0.0625 -0.0394,-0.0625 -0.0406,-0.0662 -0.0394,-0.0613 -0.0394,-0.059 -0.0406,-0.0602 -0.0406,-0.0589 -0.0394,-0.0542 -0.0417,-0.0577 -0.0382,-0.053 -0.0406,-0.053 -0.043,-0.0565 -0.0394,-0.053 -0.0382,-0.0505 -0.0417,-0.0542 -0.0417,-0.0553 -0.0382,-0.0517 -0.0369,-0.0493 -0.0394,-0.0517 -0.0417,-0.0577 -0.0394,-0.0553 -0.0371,-0.0541 -0.0382,-0.0565 0.8881,-0.0854 z m -0.93349,-0.39205 0.36408,-0.88035 0.52403,0.79495 -0.88811,0.0854 z m 0.46673,0.19602 0.46676,0.19604 -0.46676,-0.19604 z m -0.46673,-0.19602 0.36408,-0.88035 0.52403,0.79495 -0.88811,0.0854 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path193" + d="m 359.96,227.08 c 0.63505,-0.49068 1.405,-0.85268 2.1284,-1.1353 1.2307,-0.48106 2.5438,-0.55442 3.8115,-0.17078 5.6128,1.6969 8.0706,11.668 1.9207,14.064 -1.2116,0.14793 -2.3289,-0.9477 -3.4164,-3.3542 -1.282,-3.1846 -2.6452,-5.3951 -4.1063,-6.7469 -0.89527,-1.1293 -0.9251,-2.0854 -0.33901,-2.6566 h 10e-4 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path195" + d="m 361.91,225.47 0.36527,0.9501 0,0 -0.0645,0.0253 -0.0645,0.0265 -0.0704,0.0277 -0.0656,0.0265 -0.0645,0.0277 -0.0668,0.0277 -0.0645,0.0277 -0.0645,0.0288 -0.068,0.0312 -0.0692,0.0313 -0.0645,0.0288 -0.0609,0.0288 -0.0668,0.0325 -0.0657,0.0325 -0.0656,0.0325 -0.0609,0.0312 -0.0656,0.0348 -0.0657,0.0349 -0.0621,0.0337 -0.0598,0.0325 -0.0621,0.0372 -0.0668,0.0385 -0.0597,0.0349 -0.0573,0.0348 -0.0585,0.0372 -0.0621,0.0409 -0.0597,0.0372 -0.0549,0.0385 -0.0561,0.0397 -0.0561,0.0408 -0.0561,0.0409 -0.0536,0.0409 -0.61595,-0.80818 0.0657,-0.0505 0.0656,-0.0481 0.0657,-0.0482 0.068,-0.047 0.0717,-0.0481 0.0668,-0.0445 0.0668,-0.0432 0.0704,-0.0445 0.0716,-0.0444 0.0717,-0.042 0.0668,-0.0385 0.0692,-0.0397 0.074,-0.042 0.0716,-0.0385 0.0704,-0.0372 0.0704,-0.0372 0.0752,-0.0385 0.0704,-0.0348 0.0704,-0.0349 0.0717,-0.0348 0.0752,-0.036 0.074,-0.0337 0.0692,-0.0313 0.0704,-0.0312 0.0716,-0.0312 0.074,-0.0325 0.0717,-0.03 0.0717,-0.03 0.0728,-0.0288 0.0656,-0.0277 0.0717,-0.0288 0.0717,-0.0277 0,0 z m 4.1397,-0.184 -0.29125,0.97655 -0.10744,-0.0325 -0.11101,-0.0289 -0.10981,-0.0277 -0.10744,-0.0228 -0.10982,-0.0228 -0.10863,-0.0193 -0.10862,-0.0167 -0.11101,-0.0157 -0.10863,-0.0107 -0.10983,-0.0108 -0.10981,-0.007 -0.10863,-0.006 -0.10982,-0.001 -0.11101,-0.001 -0.10863,0.001 -0.11101,0.004 -0.10862,0.007 -0.10863,0.008 -0.10982,0.0108 -0.11102,0.0133 -0.10624,0.0156 -0.10863,0.0181 -0.11221,0.0205 -0.10623,0.0217 -0.10863,0.0253 -0.10982,0.0277 -0.10624,0.0277 -0.10743,0.0325 -0.10742,0.0325 -0.10744,0.0372 -0.10624,0.0372 -0.10743,0.0409 -0.36527,-0.9501 0.12415,-0.0481 0.12533,-0.0445 0.12654,-0.042 0.12653,-0.0397 0.12653,-0.0372 0.13011,-0.0349 0.12415,-0.03 0.13011,-0.03 0.13011,-0.0265 0.12653,-0.0228 0.12772,-0.0228 0.1325,-0.0181 0.13012,-0.0157 0.12892,-0.0132 0.13011,-0.0108 0.1325,-0.007 0.13012,-0.004 0.13011,-0.004 0.13011,0.001 0.1313,0.004 0.13251,0.006 0.1313,0.009 0.12892,0.0108 0.1325,0.0157 0.13011,0.0181 0.13011,0.0193 0.13249,0.0241 0.12893,0.0253 0.13131,0.03 0.12891,0.0325 0.12773,0.0337 0.1313,0.0372 z m 1.8359,15.058 -0.12176,-1.0126 -0.12176,0.0312 0.50732,-0.2261 0.45719,-0.26217 0.41064,-0.29466 0.36645,-0.32832 0.32469,-0.35598 0.2841,-0.38364 0.2447,-0.41011 0.20532,-0.43296 0.16832,-0.4546 0.13249,-0.47504 0.0931,-0.49189 0.0597,-0.5051 0.0216,-0.51715 -0.0119,-0.52556 -0.0478,-0.53037 -0.08,-0.53276 -0.11339,-0.53278 -0.14564,-0.52797 -0.17547,-0.52194 -0.20532,-0.50993 -0.23635,-0.4979 -0.26262,-0.48225 -0.28887,-0.46302 -0.31395,-0.44018 -0.339,-0.4137 -0.36169,-0.38967 -0.38198,-0.35599 -0.40347,-0.3235 -0.42138,-0.28864 -0.43928,-0.24895 -0.45718,-0.21046 -0.4739,-0.16717 0.29126,-0.97655 0.55984,0.19843 0.53836,0.24655 0.51329,0.29225 0.48821,0.33432 0.46316,0.37162 0.43689,0.4065 0.40706,0.43777 0.38198,0.46663 0.34975,0.49308 0.3223,0.51353 0.29127,0.53519 0.26022,0.55082 0.22918,0.56524 0.19458,0.57727 0.15995,0.58568 0.12773,0.59051 0.0896,0.59531 0.0525,0.59531 0.0143,0.59291 -0.0263,0.5893 -0.0668,0.57968 -0.10982,0.56885 -0.15398,0.55682 -0.19936,0.53879 -0.2459,0.51714 -0.29484,0.49429 -0.34618,0.46543 -0.3939,0.43294 -0.44525,0.39808 -0.49658,0.35719 -0.54791,0.31268 -0.59565,0.267 -0.12176,0.0312 z m 0.12175,-0.0312 -0.0609,0.024 -0.0609,0.007 0.12175,-0.0312 z m -4.0681,-3.638 0.93825,-0.38244 -0.008,-0.0205 0.0979,0.21528 0.099,0.20686 0.099,0.19964 0.099,0.19122 0.099,0.184 0.0978,0.1756 0.0979,0.16596 0.099,0.15995 0.0967,0.15153 0.0967,0.14192 0.0978,0.13589 0.0967,0.12749 0.0942,0.11786 0.0955,0.11064 0.0943,0.10342 0.0931,0.095 0.0908,0.0866 0.0919,0.0793 0.0883,0.071 0.0896,0.0649 0.0883,0.0577 0.0836,0.0493 0.0823,0.042 0.0859,0.0372 0.0823,0.0312 0.0788,0.024 0.08,0.0193 0.0764,0.0133 0.08,0.007 0.0836,0.004 0.0764,-0.001 0.0823,-0.008 0.12176,1.0126 -0.14444,0.0132 -0.14801,0.004 -0.14086,-0.006 -0.14445,-0.0145 -0.14562,-0.0253 -0.14205,-0.0337 -0.14085,-0.0433 -0.13728,-0.053 -0.13369,-0.059 -0.1349,-0.0685 -0.13368,-0.0782 -0.12654,-0.0842 -0.12772,-0.0914 -0.12415,-0.0997 -0.12295,-0.10585 -0.12176,-0.11544 -0.11937,-0.12146 -0.11578,-0.12749 -0.11698,-0.1347 -0.1158,-0.14432 -0.111,-0.14912 -0.11221,-0.15515 -0.11102,-0.16356 -0.11101,-0.17077 -0.10863,-0.17678 -0.10982,-0.18521 -0.10743,-0.19244 -0.10624,-0.19843 -0.10624,-0.20565 -0.10623,-0.21408 -0.10624,-0.22128 -0.10505,-0.2273 -0.008,-0.0205 z m 0.008,0.0205 -10e-4,-0.002 -0.007,-0.0181 0.008,0.0205 z m -4.0407,-6.641 0.79023,-0.635 -0.0525,-0.0577 0.14443,0.1359 0.14444,0.14311 0.14205,0.14673 0.14085,0.15154 0.14205,0.15634 0.13847,0.16115 0.14086,0.16717 0.13727,0.17198 0.13847,0.17799 0.13608,0.1816 0.13608,0.18761 0.1349,0.19242 0.13368,0.19724 0.13371,0.20205 0.13369,0.20925 0.1313,0.21287 0.13131,0.21769 0.13011,0.22369 0.13011,0.2285 0.12892,0.23452 0.12892,0.23811 0.12893,0.24655 0.12652,0.24895 0.12773,0.25617 0.12533,0.26217 0.12534,0.26459 0.12534,0.273 0.12415,0.27781 0.12295,0.28262 0.12414,0.28744 0.12176,0.29464 0.12295,0.29947 -0.93825,0.38244 -0.11817,-0.29225 -0.11936,-0.28502 -0.11938,-0.28022 -0.12056,-0.2754 -0.11938,-0.2682 -0.12055,-0.26338 -0.12295,-0.25736 -0.12057,-0.25255 -0.12295,-0.24415 -0.12176,-0.24173 -0.12176,-0.23451 -0.12414,-0.22851 -0.12414,-0.22489 -0.12295,-0.21649 -0.12534,-0.21406 -0.12414,-0.20805 -0.12416,-0.20085 -0.12413,-0.19484 -0.12653,-0.19001 -0.12654,-0.18521 -0.12533,-0.1804 -0.12654,-0.17318 -0.12653,-0.16957 -0.12654,-0.16357 -0.12771,-0.15753 -0.12654,-0.15274 -0.12892,-0.14673 -0.12772,-0.14432 -0.12892,-0.1371 -0.12773,-0.13229 -0.12773,-0.12628 -0.13011,-0.12146 -0.0525,-0.0577 z m 0.0525,0.0577 -0.025,-0.024 -0.0275,-0.0337 0.0525,0.0577 z m 0.004,-3.5418 0,1.0198 0.35215,-0.14432 -0.0347,0.0349 -0.0286,0.0337 -0.0298,0.0397 -0.0275,0.0385 -0.0204,0.0312 -0.0191,0.0397 -0.0204,0.0445 -0.0144,0.0372 -0.0143,0.0458 -0.0119,0.0445 -0.008,0.0458 -0.007,0.047 -0.004,0.0517 -0.001,0.053 0.001,0.053 0.005,0.059 0.008,0.0673 0.009,0.0602 0.0155,0.0662 0.0191,0.0697 0.0215,0.071 0.0263,0.0735 0.0323,0.0794 0.0347,0.077 0.0394,0.083 0.0442,0.083 0.049,0.0866 0.0537,0.0878 0.0585,0.089 0.0633,0.0914 0.068,0.0937 0.074,0.0962 -0.79022,0.63499 -0.0883,-0.11545 -0.0848,-0.11305 -0.0799,-0.11545 -0.0752,-0.11546 -0.068,-0.11425 -0.0656,-0.11305 -0.0585,-0.11425 -0.0561,-0.11185 -0.049,-0.11305 -0.0442,-0.11064 -0.0406,-0.11185 -0.0357,-0.11185 -0.0286,-0.11064 -0.025,-0.11185 -0.0191,-0.11304 -0.0131,-0.10583 -0.009,-0.10704 -0.004,-0.11305 0.004,-0.10584 0.008,-0.10704 0.0144,-0.10703 0.0203,-0.10342 0.0263,-0.10223 0.031,-0.0985 0.0382,-0.0997 0.0417,-0.0902 0.0477,-0.0925 0.0561,-0.0937 0.0585,-0.0842 0.0609,-0.0782 0.0692,-0.0818 0.0728,-0.0734 0.35214,-0.14431 z m -0.35213,0.14431 0.14802,-0.14431 0.20411,0 -0.35213,0.14431 z m 0.35333,0.87553 -10e-4,0 0,-1.0198 10e-4,0 0.30798,0.91401 -0.30798,0.10582 z m 0.30798,-0.10583 -0.13727,0.10583 -0.17071,0 0.30798,-0.10583 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path197" + d="m 362.79,227.74 c 5.3919,-2.1046 9.361,8.2261 4.3224,10.189 -2.7049,1.0535 -2.9628,-2.3307 -3.488,-4.2117 -0.70906,-2.5412 -6.0126,-3.9555 -0.83439,-5.9772 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path199" + d="m 367.29,238.4 -0.36528,-0.9501 0,0 0.38795,-0.1804 0.33662,-0.21527 0.29127,-0.25016 0.25187,-0.28142 0.21129,-0.31269 0.17546,-0.34154 0.13848,-0.37042 0.10384,-0.39327 0.0657,-0.41611 0.031,-0.43657 -0.005,-0.44738 -0.0394,-0.45821 -0.074,-0.46423 -0.10624,-0.46663 -0.13728,-0.46181 -0.16711,-0.45581 -0.19577,-0.44619 -0.22323,-0.42813 -0.24947,-0.4101 -0.27217,-0.38726 -0.29245,-0.35839 -0.31395,-0.32832 -0.33184,-0.29466 -0.34618,-0.25615 -0.35929,-0.21528 -0.37244,-0.17318 -0.38199,-0.12628 -0.39272,-0.0794 -0.40346,-0.03 -0.41542,0.0228 -0.42853,0.0818 -0.44286,0.14191 -0.36527,-0.95009 0.55984,-0.1804 0.55269,-0.10343 0.5467,-0.0325 0.5324,0.0397 0.51448,0.10343 0.49419,0.16475 0.47269,0.21889 0.44765,0.26819 0.42257,0.3115 0.3963,0.35237 0.36885,0.38604 0.34259,0.41854 0.31276,0.44497 0.2829,0.46783 0.25425,0.48828 0.22203,0.5039 0.191,0.51595 0.15637,0.52676 0.12056,0.53157 0.0836,0.53398 0.0466,0.53276 0.005,0.52917 -0.0358,0.52076 -0.0823,0.50991 -0.12772,0.4943 -0.17905,0.47383 -0.23039,0.44979 -0.28529,0.42094 -0.34259,0.38243 -0.39631,0.33915 -0.45359,0.28984 -0.50494,0.23573 0,0 z m -4.1576,-4.5484 0.97406,-0.2766 0.0513,0.19002 0.0477,0.19483 0.0489,0.19843 0.0466,0.20205 0.0489,0.20686 0.0478,0.20806 0.0477,0.20565 0.0513,0.20686 0.0525,0.20806 0.0536,0.20203 0.0573,0.19844 0.0609,0.19483 0.0645,0.18882 0.0668,0.18039 0.0704,0.17078 0.0752,0.15995 0.08,0.15033 0.0823,0.14072 0.0848,0.12266 0.0883,0.10945 0.092,0.0974 0.0919,0.0818 0.0955,0.0673 0.10025,0.0553 0.10385,0.0433 0.1134,0.03 0.12415,0.0193 0.13847,0.005 0.15518,-0.0108 0.17308,-0.0289 0.19219,-0.0505 0.21128,-0.0733 0.36528,0.9501 -0.28291,0.0974 -0.27097,0.0721 -0.26619,0.0458 -0.25785,0.0181 -0.25068,-0.009 -0.23873,-0.036 -0.23038,-0.0637 -0.21606,-0.089 -0.19815,-0.11064 -0.18383,-0.12989 -0.16831,-0.14672 -0.15161,-0.15995 -0.13847,-0.17198 -0.12533,-0.1828 -0.11341,-0.18882 -0.10384,-0.19604 -0.0943,-0.20324 -0.0871,-0.20926 -0.0788,-0.21167 -0.074,-0.21527 -0.0656,-0.21647 -0.0644,-0.21768 -0.0585,-0.2213 -0.0549,-0.21526 -0.0537,-0.21648 -0.0502,-0.21528 -0.0477,-0.20806 -0.0466,-0.20445 -0.0466,-0.19723 -0.0466,-0.19122 -0.0454,-0.1828 -0.0466,-0.17078 z m -0.53,-6.5905 0.36527,0.95009 -0.4357,0.1804 -0.37601,0.17439 -0.31275,0.16716 -0.25665,0.15996 -0.19815,0.14671 -0.14562,0.1347 -0.0979,0.11787 -0.0585,0.0974 -0.0298,0.0793 -0.0107,0.0673 0.004,0.0709 0.0191,0.0866 0.0417,0.10463 0.0668,0.12266 0.0908,0.1359 0.11461,0.14673 0.13607,0.15635 0.15518,0.16236 0.1707,0.17078 0.18263,0.17558 0.191,0.18279 0.19815,0.18642 0.20055,0.19242 0.20291,0.20085 0.20175,0.20926 0.19457,0.21526 0.18741,0.22491 0.17546,0.2333 0.16235,0.24414 0.14683,0.25978 0.12175,0.273 0.0967,0.28383 -0.97406,0.2766 -0.0633,-0.1852 -0.0836,-0.18642 -0.10385,-0.18521 -0.12653,-0.18881 -0.14205,-0.19002 -0.15877,-0.18881 -0.17069,-0.18881 -0.18024,-0.18763 -0.18861,-0.1864 -0.19338,-0.18521 -0.19576,-0.18641 -0.19578,-0.18521 -0.19218,-0.18521 -0.18502,-0.18521 -0.17906,-0.18881 -0.16712,-0.19242 -0.15518,-0.19724 -0.13846,-0.20806 -0.11699,-0.21889 -0.0919,-0.2345 -0.0573,-0.25257 -0.0107,-0.26818 0.0442,-0.27181 0.0967,-0.26217 0.14682,-0.24655 0.19099,-0.2285 0.23397,-0.21648 0.27454,-0.20444 0.31873,-0.19843 0.36766,-0.19604 0.41897,-0.19604 0.4739,-0.19483 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path201" + d="m 363.35,229.27 c 2.6285,-1.0247 6.2382,5.1365 2.9484,6.5364 -2.2215,0.94529 -3.9774,-0.29825 -4.69,-2.1552 -0.71384,-1.8569 -0.10266,-3.6621 1.7416,-4.3812 z" + inkscape:connector-curvature="0" + style="fill:#0c4076" /> + <path + id="path203" + d="m 366.5,236.28 -0.39391,-0.93806 0,0 0.23158,-0.11547 0.19098,-0.13108 0.15757,-0.14552 0.13011,-0.15996 0.10505,-0.17317 0.08,-0.18882 0.0597,-0.20566 0.0358,-0.22368 0.0144,-0.23933 -0.008,-0.25015 -0.0323,-0.26218 -0.0537,-0.27301 -0.0752,-0.2754 -0.0955,-0.27661 -0.11341,-0.27781 -0.13368,-0.27541 -0.14803,-0.2694 -0.16354,-0.25977 -0.17666,-0.25015 -0.18621,-0.23691 -0.19696,-0.2201 -0.20413,-0.20324 -0.21009,-0.1828 -0.21367,-0.15996 -0.21367,-0.13589 -0.21129,-0.11064 -0.20651,-0.0818 -0.20173,-0.0553 -0.19099,-0.0288 -0.18622,-0.001 -0.17785,0.0241 -0.17429,0.053 -0.36526,-0.95009 0.32469,-0.0985 0.32826,-0.0457 0.32707,0.004 0.3223,0.0458 0.31394,0.0865 0.30678,0.12267 0.29485,0.15394 0.2829,0.17919 0.27335,0.20565 0.26262,0.2285 0.24948,0.24655 0.23754,0.26578 0.22442,0.28262 0.2077,0.29585 0.19219,0.30789 0.17666,0.31749 0.15757,0.32832 0.13727,0.33314 0.11698,0.33915 0.092,0.34275 0.068,0.34276 0.0417,0.34396 0.0131,0.34396 -0.0215,0.34035 -0.0549,0.33433 -0.0931,0.32593 -0.13489,0.31388 -0.17906,0.29585 -0.22082,0.2706 -0.26501,0.24414 -0.30797,0.21047 -0.34617,0.17317 0,0 z m -5.3585,-2.4402 0.94302,-0.36801 0.0633,0.15393 0.0668,0.15154 0.074,0.14673 0.0777,0.14191 0.0811,0.1359 0.0883,0.13349 0.0919,0.12628 0.0955,0.12267 0.099,0.11545 0.10385,0.10825 0.10863,0.10462 0.11102,0.0974 0.11578,0.0902 0.11819,0.0854 0.12294,0.077 0.12415,0.071 0.12772,0.0625 0.13251,0.0553 0.13488,0.0505 0.13728,0.0397 0.14205,0.0337 0.14324,0.0241 0.14921,0.0167 0.1528,0.009 0.15516,-0.001 0.16116,-0.009 0.16234,-0.0193 0.16831,-0.0289 0.17191,-0.0397 0.17665,-0.0505 0.18026,-0.0625 0.18383,-0.0721 0.39391,0.93806 -0.22918,0.0914 -0.22801,0.077 -0.2268,0.0649 -0.22442,0.0517 -0.22082,0.0385 -0.21965,0.0265 -0.21606,0.012 -0.21485,0.001 -0.2101,-0.012 -0.20651,-0.0217 -0.20293,-0.036 -0.19934,-0.0458 -0.19457,-0.0589 -0.18742,-0.0673 -0.18263,-0.077 -0.18025,-0.089 -0.17189,-0.0974 -0.16592,-0.10583 -0.16116,-0.11426 -0.15398,-0.12146 -0.14921,-0.13109 -0.14205,-0.1359 -0.13728,-0.14431 -0.13011,-0.15154 -0.12414,-0.15634 -0.11579,-0.16235 -0.10982,-0.16718 -0.10505,-0.17198 -0.0967,-0.17799 -0.0908,-0.18281 -0.0836,-0.18521 -0.0777,-0.19001 z m 2.0305,-5.0403 0.36528,0.9501 -0.14922,0.0625 -0.13967,0.0649 -0.1313,0.0709 -0.12653,0.0758 -0.11818,0.0806 -0.11339,0.083 -0.10506,0.0878 -0.0967,0.0902 -0.0919,0.095 -0.0859,0.0998 -0.0799,0.10223 -0.0717,0.10463 -0.0668,0.10824 -0.0609,0.11184 -0.0548,0.11545 -0.0478,0.11787 -0.0429,0.12266 -0.0369,0.12267 -0.0298,0.12869 -0.025,0.12868 -0.0167,0.13349 -0.0119,0.13711 -0.005,0.1383 0,0.13951 0.008,0.14432 0.0144,0.14552 0.0226,0.14672 0.0286,0.15154 0.0335,0.15033 0.043,0.15153 0.049,0.15515 0.0561,0.15513 -0.94302,0.36802 -0.0704,-0.19363 -0.0609,-0.19122 -0.0525,-0.19242 -0.0454,-0.19364 -0.0357,-0.19 -0.0275,-0.19244 -0.0191,-0.19122 -0.0107,-0.19 -0.002,-0.18763 0.007,-0.18881 0.0167,-0.18281 0.0238,-0.184 0.0346,-0.1816 0.0417,-0.17678 0.0513,-0.17561 0.0598,-0.17076 0.0692,-0.16837 0.0788,-0.16597 0.0871,-0.15996 0.0955,-0.15634 0.10503,-0.15034 0.11342,-0.14551 0.11936,-0.1383 0.13011,-0.1359 0.13967,-0.12869 0.14562,-0.12146 0.15398,-0.11667 0.16116,-0.10703 0.16951,-0.10222 0.17666,-0.095 0.18502,-0.0865 0.18981,-0.0795 z m 0.18264,0.47505 -0.18264,-0.47505 0.18264,0.47505 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path205" + d="m 400.08,179.66 c 3.5166,0 6.3672,2.8719 6.3672,6.4149 0,3.5418 -2.8505,6.4149 -6.3672,6.4149 -3.5166,0 -6.3672,-2.8719 -6.3672,-6.4149 0,-3.543 2.8505,-6.4149 6.3672,-6.4149 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path207" + d="m 406.95,186.07 h -1.0122 c 0.0269,-2.1992 -1.2954,-4.3408 -3.2746,-5.3 -0.79979,-0.39878 -1.6927,-0.60543 -2.5861,-0.60475 v -1.0198 c 2.3326,-0.02 4.6106,1.2607 5.8244,3.2492 0.68633,1.0953 1.0473,2.3839 1.0486,3.6754 z m -6.8733,6.9248 v -1.0198 c 2.1696,0.0263 4.2693,-1.2872 5.2253,-3.2296 0.42015,-0.82468 0.63578,-1.7502 0.63549,-2.6752 h 1.0122 c 0.0199,2.3517 -1.2544,4.6585 -3.2586,5.8897 -1.0772,0.67562 -2.3441,1.0334 -3.6144,1.0349 z m -6.8733,-6.9248 h 1.0122 c -0.0268,2.1992 1.2955,4.3408 3.2747,5.3 0.79978,0.39881 1.6927,0.60521 2.5861,0.60475 v 1.0198 c -2.3326,0.02 -4.6106,-1.2607 -5.8244,-3.2492 -0.68639,-1.0953 -1.0472,-2.3839 -1.0487,-3.6753 z m 6.8733,-6.9249 v 1.0198 c -2.1692,-0.0264 -4.2688,1.2868 -5.2248,3.2285 -0.42042,0.82499 -0.6362,1.7507 -0.6361,2.6761 h -1.0122 c -0.0196,-2.3515 1.2531,-4.6597 3.2586,-5.8897 1.0773,-0.67541 2.3438,-1.0338 3.6145,-1.0348 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path209" + d="m 395.43,169 c 3.5166,0 6.3672,2.8719 6.3672,6.4161 0,3.543 -2.8505,6.4149 -6.3672,6.4149 -3.5166,0 -6.3672,-2.8719 -6.3672,-6.4149 0,-3.5442 2.8505,-6.4161 6.3672,-6.4161 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path211" + d="m 402.31,175.42 h -1.0123 c 0.0262,-2.1859 -1.2784,-4.3173 -3.2399,-5.2834 -0.80826,-0.41092 -1.7145,-0.62294 -2.6208,-0.62248 v -1.0198 c 2.3327,-0.0202 4.6104,1.261 5.8244,3.2492 0.68585,1.0969 1.048,2.3836 1.0486,3.6765 z m -6.8733,6.9249 v -1.0198 c 2.1692,0.0263 4.2688,-1.2868 5.2248,-3.2285 0.42041,-0.82501 0.63643,-1.7507 0.63599,-2.6761 h 1.0123 c 0.0196,2.3515 -1.2531,4.6597 -3.2586,5.8897 -1.0772,0.67541 -2.3438,1.0337 -3.6144,1.0348 z m -6.8733,-6.9249 h 1.0122 c -0.0267,2.1992 1.2956,4.3408 3.2748,5.3 0.79978,0.39879 1.6927,0.60526 2.5861,0.60464 v 1.0198 c -2.3326,0.0201 -4.6106,-1.2606 -5.8244,-3.2491 -0.68647,-1.0953 -1.047,-2.384 -1.0488,-3.6753 z m 6.8733,-6.9261 v 1.0198 c -2.1697,-0.0263 -4.2691,1.2876 -5.2253,3.2297 -0.41957,0.82525 -0.636,1.751 -0.63569,2.6764 h -1.0122 c -0.0201,-2.3519 1.2532,-4.6604 3.2586,-5.8909 1.0773,-0.6756 2.3441,-1.0335 3.6146,-1.035 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path213" + d="m 410.68,131.46 c 3.3913,0 6.1404,2.7685 6.1404,6.1852 0,3.4167 -2.7491,6.1864 -6.1404,6.1864 -3.3901,0 -6.1404,-2.7697 -6.1404,-6.1864 0,-3.4167 2.7491,-6.1852 6.1404,-6.1852 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path215" + d="m 417.32,137.65 h -1.0122 c 0.0249,-2.1141 -1.2455,-4.1742 -3.1497,-5.0944 -0.76829,-0.38324 -1.6262,-0.58096 -2.4844,-0.58064 v -1.0198 c 2.2555,-0.0199 4.4585,1.2189 5.6317,3.1418 0.66698,1.0577 1.0114,2.305 1.0146,3.5531 z m -6.6465,6.6964 v -1.0198 c 2.0858,0.0245 4.1056,-1.2375 5.0234,-3.106 0.40443,-0.79205 0.60972,-1.6817 0.61067,-2.5702 h 1.0122 c 0.0194,2.2741 -1.212,4.5064 -3.152,5.6948 -1.0403,0.65607 -2.266,0.99891 -3.4944,1.0012 z M 404.027,137.65 h 1.0122 c -0.0247,2.102 1.2305,4.1506 3.1171,5.0787 0.77624,0.39428 1.6468,0.59699 2.5169,0.59745 v 1.0198 c -2.2429,0.019 -4.4344,-1.2054 -5.6115,-3.1112 -0.68009,-1.0637 -1.0318,-2.3249 -1.0348,-3.5848 z m 6.6465,-6.6952 v 1.0198 c -2.0856,-0.0248 -4.1053,1.2367 -5.0235,3.1048 -0.40442,0.79205 -0.60978,1.6817 -0.61057,2.5702 h -1.0122 c -0.0193,-2.2614 1.198,-4.4816 3.1202,-5.6744 1.0485,-0.6675 2.2842,-1.0192 3.5261,-1.0205 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path217" + d="m 400.36,136.18 c 3.5166,0 6.3672,2.8719 6.3672,6.4149 0,3.5442 -2.8505,6.4161 -6.3672,6.4161 -3.5166,0 -6.3672,-2.8719 -6.3672,-6.4161 0,-3.543 2.8505,-6.4149 6.3672,-6.4149 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path219" + d="m 407.23,142.59 h -1.0123 c 0.0268,-2.1992 -1.2955,-4.3408 -3.2747,-5.3 -0.79978,-0.39882 -1.6927,-0.60543 -2.5861,-0.60474 v -1.0198 c 2.3326,-0.02 4.6106,1.2607 5.8244,3.2492 0.68638,1.0953 1.0472,2.3839 1.0487,3.6753 z m -6.8733,6.9261 v -1.0198 c 2.1564,0.0259 4.2443,-1.271 5.2076,-3.1947 0.43102,-0.83399 0.65397,-1.7727 0.65332,-2.7111 h 1.0122 c 0.0201,2.3519 -1.2532,4.6604 -3.2586,5.8909 -1.0772,0.67547 -2.3439,1.0336 -3.6145,1.0348 z m -6.8733,-6.9261 h 1.0122 c -0.0261,2.1859 1.2785,4.3173 3.24,5.2834 0.80829,0.41083 1.7145,0.62315 2.6208,0.62259 v 1.0198 c -2.3327,0.0202 -4.6104,-1.261 -5.8244,-3.2492 -0.68596,-1.0969 -1.0479,-2.3837 -1.0487,-3.6766 z m 6.8733,-6.9249 v 1.0198 c -2.1692,-0.0263 -4.2688,1.2869 -5.2248,3.2286 -0.42046,0.82498 -0.63626,1.7507 -0.6359,2.6761 h -1.0122 c -0.0196,-2.3515 1.2531,-4.6597 3.2586,-5.8897 1.0772,-0.67545 2.344,-1.0336 3.6143,-1.0349 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path221" + d="m 392.77,145.25 c 3.5166,0 6.3672,2.8719 6.3672,6.4161 0,3.543 -2.8505,6.4149 -6.3672,6.4149 -3.5166,0 -6.3672,-2.8719 -6.3672,-6.4149 0,-3.5442 2.8505,-6.4161 6.3672,-6.4161 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path223" + d="m 399.64,151.66 h -1.0122 c 0.0263,-2.1859 -1.2783,-4.3173 -3.2398,-5.2834 -0.80826,-0.41092 -1.7145,-0.62294 -2.6208,-0.62248 v -1.0198 c 2.3327,-0.0202 4.6104,1.261 5.8244,3.2492 0.68578,1.0969 1.0482,2.3835 1.0484,3.6764 z m -6.8733,6.9249 v -1.0198 c 2.1692,0.0263 4.2688,-1.2868 5.2248,-3.2285 0.42052,-0.82496 0.63592,-1.7507 0.63568,-2.6761 h 1.0122 c 0.0196,2.3515 -1.2531,4.6597 -3.2586,5.8897 -1.0771,0.6754 -2.3441,1.0337 -3.6141,1.0348 z m -6.8733,-6.9249 h 1.0122 c -0.0265,2.1857 1.2786,4.3162 3.2397,5.2822 0.80826,0.41089 1.7145,0.62292 2.6208,0.62246 v 1.0198 c -2.3326,0.0201 -4.6106,-1.2606 -5.8244,-3.2491 -0.68617,-1.0953 -1.0476,-2.3838 -1.0484,-3.6753 z m 6.8733,-6.9261 v 1.0198 c -2.1697,-0.0263 -4.2691,1.2876 -5.2254,3.2297 -0.4195,0.82525 -0.636,1.751 -0.63557,2.6764 h -1.0122 c -0.0201,-2.3519 1.2532,-4.6604 3.2586,-5.8909 1.0772,-0.67557 2.3441,-1.0335 3.6145,-1.035 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path225" + d="m 391.54,156.66 c 3.5178,0 6.3672,2.8719 6.3672,6.4149 0,3.543 -2.8494,6.4149 -6.3672,6.4149 -3.5166,0 -6.3672,-2.8719 -6.3672,-6.4149 0,-3.543 2.8505,-6.4149 6.3672,-6.4149 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path227" + d="m 398.41,163.08 h -1.0122 c 0.0261,-2.186 -1.2787,-4.316 -3.2396,-5.2828 -0.80866,-0.40993 -1.7148,-0.62273 -2.6212,-0.62192 v -1.0198 c 2.3462,-0.0205 4.6365,1.2759 5.8458,3.283 0.67214,1.0883 1.026,2.3634 1.0273,3.6415 z m -6.8733,6.9248 v -1.0198 c 2.1825,0.0271 4.2942,-1.303 5.2424,-3.2635 0.40884,-0.81623 0.61864,-1.7288 0.6183,-2.6412 h 1.0122 c 0.0214,2.4236 -1.3346,4.8012 -3.4437,5.9998 -1.0344,0.60654 -2.2316,0.92283 -3.4293,0.92471 z m -6.8733,-6.9248 h 1.0122 c -0.027,2.1992 1.2954,4.3408 3.2746,5.3 0.79978,0.39884 1.6927,0.60539 2.5861,0.60485 v 1.0198 c -2.3326,0.0201 -4.6106,-1.2606 -5.8244,-3.2491 -0.68648,-1.0953 -1.0471,-2.3841 -1.0486,-3.6756 z m 6.8733,-6.9249 v 1.0198 c -2.1692,-0.0262 -4.2688,1.2869 -5.2248,3.2286 -0.42041,0.82499 -0.6363,1.7507 -0.636,2.6761 h -1.0122 c -0.0196,-2.3515 1.2531,-4.6597 3.2586,-5.8897 1.0772,-0.67563 2.3442,-1.0333 3.6144,-1.0349 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path229" + d="m 474.41,198.02 c -2.7013,-5.0307 -5.5662,-8.2478 -8.5958,-9.6501 4.1756,-13.155 5.158,-30.146 2.7025,-51.096 -0.24828,-3.1305 -1.0206,-4.4787 -2.2131,-4.457 -1.0457,0.0193 -1.6783,1.6164 -1.781,5.2207 0.75919,11.525 1.6927,21.606 1.1698,30.165 -0.46792,7.6428 -2.262,13.996 -4.2376,21.155 -0.27335,0.99339 0.43093,1.7751 3.8688,3.7126 2.5366,1.4432 4.1338,3.2171 4.6662,5.0728 0.73531,-0.29585 1.2068,-0.20686 1.4718,-0.12989 2.5474,0.73843 3.6229,0.53758 2.9484,0.006 v 10e-4 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path231" + d="m 465.33,188.22 0.96212,0.31028 -0.26977,-0.61816 0.29842,0.14432 0.29604,0.15394 0.29484,0.16596 0.29246,0.17559 0.29244,0.18761 0.29008,0.19845 0.28887,0.20806 0.28768,0.21887 0.28649,0.22971 0.28291,0.24053 0.2829,0.25015 0.28171,0.26218 0.28052,0.27179 0.27814,0.28383 0.27692,0.29225 0.27576,0.30426 0.27454,0.31389 0.27336,0.32472 0.27097,0.33555 0.27096,0.34394 0.26978,0.3572 0.26739,0.36561 0.26739,0.37762 0.265,0.38847 0.2638,0.39687 0.26501,0.4089 0.26141,0.41972 0.26143,0.42814 0.25903,0.44018 0.25902,0.44979 0.25666,0.4606 0.25783,0.47144 -0.8905,0.48587 -0.25067,-0.46182 -0.25187,-0.45098 -0.25187,-0.44017 -0.25426,-0.42815 -0.25425,-0.41852 -0.25427,-0.40769 -0.25545,-0.39688 -0.25664,-0.38485 -0.25783,-0.37643 -0.25785,-0.3632 -0.25784,-0.35358 -0.26023,-0.34275 -0.25903,-0.33193 -0.26141,-0.32111 -0.26142,-0.31029 -0.26022,-0.29945 -0.26381,-0.28984 -0.26261,-0.27781 -0.26381,-0.267 -0.26381,-0.25736 -0.265,-0.24534 -0.26381,-0.23572 -0.2662,-0.2237 -0.26499,-0.21527 -0.2662,-0.20205 -0.26739,-0.19362 -0.26619,-0.18159 -0.26858,-0.17079 -0.26858,-0.16115 -0.26859,-0.15154 -0.26738,-0.13951 -0.26977,-0.12988 L 465.33,188.22 z m 0.26978,0.61816 -0.40587,-0.1876 0.13609,-0.43056 0.26978,0.61816 z m 2.4101,-51.518 1.0075,-0.0818 -10e-4,-0.0193 0.21964,1.9567 0.20054,1.9351 0.18144,1.911 0.15995,1.887 0.14086,1.8653 0.12056,1.8413 0.10025,1.8196 0.08,1.7956 0.0609,1.7739 0.0417,1.7498 0.0216,1.7282 0.001,1.7042 -0.0179,1.6825 -0.0394,1.6585 -0.0573,1.6368 -0.0764,1.614 -0.0955,1.5911 -0.11698,1.5683 -0.13489,1.5454 -0.15518,1.5238 -0.17428,1.4997 -0.19338,1.4793 -0.21247,1.4552 -0.23159,1.4336 -0.25305,1.4095 -0.26979,1.3878 -0.29006,1.3662 -0.30797,1.3434 -0.32826,1.3205 -0.34737,1.2989 -0.36527,1.2748 -0.38557,1.2544 -0.96212,-0.31028 0.3784,-1.2351 0.36051,-1.258 0.34258,-1.282 0.32349,-1.3013 0.30559,-1.3265 0.2853,-1.3494 0.26738,-1.371 0.24829,-1.3951 0.22919,-1.4167 0.21009,-1.4408 0.19339,-1.4624 0.17189,-1.4853 0.15279,-1.5093 0.13488,-1.531 0.1146,-1.5562 0.0955,-1.5767 0.0764,-1.6019 0.0573,-1.6224 0.0369,-1.6464 0.0179,-1.6705 -0.001,-1.6921 -0.0215,-1.7162 -0.0394,-1.7402 -0.0609,-1.7619 -0.08,-1.7859 -0.10025,-1.8076 -0.12056,-1.8316 -0.13847,-1.8557 -0.15996,-1.8773 -0.17905,-1.9014 -0.20054,-1.9254 -0.21964,-1.9471 -10e-4,-0.0193 z m 10e-4,0.0193 -10e-4,-0.0193 0.002,0.0277 -0.001,-0.008 z m -1.701,-4.0072 -0.0191,-1.0198 0.14803,0.004 0.14443,0.0132 0.14683,0.0253 0.14324,0.036 0.13848,0.0493 0.13607,0.059 0.13011,0.0709 0.12772,0.083 0.11819,0.0914 0.11459,0.0997 0.10982,0.11185 0.10385,0.12026 0.0955,0.12748 0.092,0.13469 0.0883,0.14433 0.0823,0.15153 0.0777,0.16115 0.074,0.16718 0.0692,0.17558 0.0657,0.18641 0.0621,0.19122 0.0585,0.20205 0.0548,0.21166 0.0513,0.21768 0.0477,0.22971 0.0454,0.23572 0.0417,0.24775 0.0382,0.25737 0.0346,0.26578 0.0323,0.27421 0.0286,0.28622 0.025,0.29465 -1.0075,0.0818 -0.025,-0.28261 -0.0263,-0.2694 -0.0298,-0.25978 -0.0323,-0.24894 -0.0357,-0.23814 -0.0394,-0.22609 -0.0406,-0.21887 -0.0429,-0.20566 -0.0466,-0.19603 -0.0478,-0.18521 -0.0513,-0.17318 -0.0525,-0.16477 -0.0537,-0.15273 -0.0573,-0.14191 -0.0573,-0.13349 -0.0585,-0.12027 -0.0609,-0.11065 -0.0596,-0.10096 -0.0633,-0.0914 -0.0621,-0.0818 -0.0609,-0.0697 -0.0597,-0.0613 -0.0621,-0.0541 -0.0609,-0.0481 -0.0585,-0.0372 -0.0609,-0.0325 -0.0597,-0.0277 -0.0621,-0.0205 -0.0621,-0.0167 -0.0656,-0.0108 -0.0704,-0.006 -0.074,-0.001 z m -1.2856,4.6771 -1.0099,0.0673 0,-0.0481 0.0107,-0.33674 0.0143,-0.32713 0.0179,-0.31508 0.0216,-0.30186 0.0226,-0.29466 0.0286,-0.28142 0.0286,-0.27059 0.0335,-0.26098 0.0382,-0.25136 0.0394,-0.23932 0.0429,-0.22971 0.0466,-0.21888 0.049,-0.21046 0.0549,-0.20085 0.0561,-0.19001 0.0609,-0.18039 0.0633,-0.17439 0.0704,-0.16477 0.074,-0.15514 0.0788,-0.14671 0.0823,-0.13712 0.0908,-0.13108 0.0955,-0.12026 0.10386,-0.11185 0.10981,-0.10096 0.1158,-0.0902 0.12534,-0.0806 0.1313,-0.0673 0.13847,-0.053 0.14205,-0.0397 0.14563,-0.0241 0.14324,-0.009 0.0191,1.0198 -0.0502,0.002 -0.043,0.007 -0.0417,0.0108 -0.0406,0.0168 -0.043,0.0217 -0.0442,0.0277 -0.0466,0.0372 -0.0502,0.0458 -0.0489,0.0541 -0.0525,0.0649 -0.0525,0.0758 -0.0537,0.089 -0.0549,0.10106 -0.0525,0.11185 -0.0513,0.12388 -0.0514,0.13589 -0.0489,0.14914 -0.049,0.16115 -0.0454,0.17199 -0.0442,0.18399 -0.0417,0.19483 -0.0382,0.20806 -0.0369,0.22009 -0.0335,0.23211 -0.031,0.24173 -0.0286,0.25618 -0.0263,0.26698 -0.0226,0.27781 -0.0191,0.29224 -0.0179,0.30307 -0.0143,0.31269 -0.0107,0.32712 0,-0.0481 z m -1.0099,0.0673 -0.001,-0.0145 0.001,-0.0337 0,0.0481 z m 2.1797,30.162 -1.0099,-0.0625 0.0454,-0.80096 0.0358,-0.8106 0.0286,-0.82019 0.0204,-0.82863 0.0131,-0.83825 0.007,-0.84666 0,-0.85509 -0.007,-0.8659 -0.0131,-0.87433 -0.0167,-0.88394 -0.0238,-0.89118 -0.0298,-0.90199 -0.0346,-0.91039 -0.0382,-0.91883 -0.0442,-0.92844 -0.0466,-0.93687 -0.0513,-0.94528 -0.0549,-0.9549 -0.0573,-0.96453 -0.0609,-0.97174 -0.0633,-0.98136 -0.0657,-0.99099 -0.0668,-0.9982 -0.0692,-1.0078 -0.0704,-1.015 -0.0717,-1.0259 -0.0716,-1.0331 -0.0728,-1.0427 -0.0728,-1.0523 -0.0728,-1.0583 -0.0728,-1.068 -0.0716,-1.0776 1.0099,-0.0673 0.0717,1.0752 0.0728,1.068 0.0728,1.0583 0.0728,1.0499 0.0728,1.0427 0.0716,1.0331 0.0717,1.0259 0.0704,1.0174 0.0692,1.0078 0.0668,1.0006 0.0656,0.99098 0.0633,0.98378 0.0609,0.97414 0.0573,0.96693 0.0549,0.9573 0.0514,0.95009 0.0466,0.93927 0.0442,0.93326 0.0382,0.92364 0.0347,0.91522 0.0298,0.9068 0.0238,0.89837 0.0191,0.88876 0.0131,0.88154 0.007,0.87313 0,0.86471 -0.007,0.85387 -0.0131,0.84788 -0.0226,0.83824 -0.0286,0.82983 -0.0358,0.8202 -0.0454,0.813 z m -4.2555,21.259 -0.97405,-0.2718 0.18502,-0.66867 0.18264,-0.66508 0.18263,-0.66024 0.18025,-0.65544 0.17666,-0.65425 0.17667,-0.64944 0.17309,-0.64702 0.17189,-0.64581 0.16711,-0.64222 0.16593,-0.64102 0.16114,-0.64101 0.15876,-0.6398 0.15399,-0.63861 0.15279,-0.64102 0.14564,-0.63861 0.14325,-0.64101 0.13846,-0.64221 0.13369,-0.64342 0.12773,-0.64583 0.12533,-0.64822 0.11818,-0.64943 0.11221,-0.65424 0.10863,-0.65785 0.10147,-0.66146 0.0943,-0.66386 0.0908,-0.67108 0.0823,-0.67589 0.0764,-0.6807 0.068,-0.68551 0.0633,-0.69513 0.0549,-0.69874 0.0466,-0.70716 1.0099,0.0625 -0.049,0.71919 -0.0549,0.71076 -0.0633,0.70475 -0.0704,0.69753 -0.0764,0.69274 -0.0848,0.68551 -0.0908,0.68069 -0.0967,0.67589 -0.10386,0.67108 -0.10862,0.66747 -0.1146,0.66145 -0.12056,0.66146 -0.12534,0.65545 -0.13011,0.65304 -0.13609,0.65064 -0.13846,0.64943 -0.14563,0.64821 -0.14802,0.64584 -0.15279,0.64582 -0.15637,0.64341 -0.15876,0.64463 -0.16354,0.64581 -0.16592,0.64583 -0.16951,0.64703 -0.17189,0.64823 -0.17309,0.64943 -0.17667,0.65183 -0.17906,0.65424 -0.18023,0.65786 -0.18264,0.66025 -0.18264,0.66506 -0.18502,0.66867 z m 3.63,3.1329 -0.49657,0.88756 0.001,10e-4 -0.31633,-0.17918 -0.302,-0.17439 -0.28649,-0.16717 -0.27217,-0.16116 -0.25664,-0.15635 -0.24351,-0.15031 -0.23038,-0.14674 -0.21845,-0.14311 -0.20174,-0.13589 -0.19099,-0.13231 -0.18144,-0.13228 -0.16712,-0.12628 -0.15757,-0.12388 -0.14563,-0.12267 -0.13608,-0.12026 -0.12414,-0.11786 -0.11818,-0.11906 -0.10624,-0.11906 -0.0955,-0.11665 -0.0896,-0.12268 -0.0777,-0.12147 -0.0704,-0.12508 -0.0585,-0.12748 -0.0477,-0.12627 -0.0382,-0.12868 -0.0275,-0.1311 -0.0156,-0.13349 -0.006,-0.13109 0.006,-0.13108 0.0144,-0.12629 0.0226,-0.12266 0.0298,-0.12147 0.97406,0.2718 -0.0156,0.0637 -0.0107,0.0602 -0.007,0.0565 -10e-4,0.0493 10e-4,0.0493 0.006,0.047 0.0107,0.0493 0.0143,0.0517 0.0216,0.0565 0.0275,0.0602 0.0347,0.0625 0.0442,0.0685 0.0536,0.0722 0.0668,0.0806 0.0752,0.0854 0.0871,0.0878 0.10025,0.0962 0.11221,0.0985 0.12414,0.10343 0.13848,0.10944 0.15041,0.11425 0.16233,0.11786 0.17906,0.12267 0.19219,0.13109 0.20412,0.1335 0.22083,0.1395 0.23396,0.14552 0.24949,0.15154 0.265,0.15634 0.27932,0.16476 0.29724,0.16958 0.31155,0.17679 0.001,0.001 z m -10e-4,-0.001 10e-4,0.001 -0.099,-0.0565 0.0978,0.0553 z m 4.2317,5.0451 0.37481,0.94527 -0.67324,-0.33072 -0.0477,-0.15755 -0.0536,-0.15634 -0.0597,-0.15755 -0.0657,-0.15755 -0.0717,-0.15754 -0.0752,-0.15515 -0.0848,-0.15755 -0.0871,-0.15514 -0.0955,-0.15633 -0.10025,-0.15515 -0.10624,-0.15514 -0.11341,-0.15394 -0.11698,-0.15514 -0.12414,-0.15394 -0.12892,-0.15274 -0.13728,-0.15153 -0.13967,-0.15034 -0.148,-0.14912 -0.15519,-0.15153 -0.15756,-0.14793 -0.16592,-0.14672 -0.17189,-0.14793 -0.17549,-0.14552 -0.18023,-0.14311 -0.18981,-0.14191 -0.19339,-0.14192 -0.20053,-0.1395 -0.20412,-0.13952 -0.21128,-0.13589 -0.21846,-0.13591 -0.22082,-0.1347 -0.228,-0.13108 0.49658,-0.88756 0.24232,0.14071 0.23755,0.14192 0.23037,0.14552 0.22561,0.14552 0.22085,0.14912 0.21485,0.15155 0.20771,0.15152 0.20411,0.15395 0.19935,0.15754 0.1922,0.15755 0.18621,0.15995 0.18024,0.16115 0.17667,0.16477 0.16712,0.16355 0.16473,0.16597 0.15876,0.16958 0.1516,0.17077 0.14562,0.17198 0.14086,0.17318 0.13371,0.17439 0.12771,0.17559 0.12295,0.17919 0.1146,0.17919 0.10982,0.18039 0.10385,0.18161 0.0967,0.184 0.092,0.18401 0.0836,0.18641 0.0777,0.18641 0.0716,0.18881 0.0657,0.19003 0.0573,0.18881 -0.67325,-0.33072 z m 0.37481,0.94527 -0.51807,0.20806 -0.15517,-0.53878 0.67324,0.33072 z m 1.4241,-1.092 -0.27933,0.97897 -0.0179,-0.005 -0.0226,-0.006 -0.025,-0.007 -0.0119,-0.002 -0.0275,-0.006 -0.0275,-0.006 -0.0191,-0.004 -0.025,-0.004 -0.0238,-0.004 -0.0263,-0.004 -0.0286,-0.002 -0.031,-0.004 -0.0238,-0.001 -0.0357,-0.001 -0.0286,0 -0.0323,0 -0.0394,0.001 -0.0357,0.002 -0.0323,0.002 -0.0406,0.005 -0.0417,0.005 -0.0394,0.006 -0.0466,0.008 -0.043,0.008 -0.0442,0.009 -0.0477,0.012 -0.0513,0.0145 -0.0536,0.0156 -0.0502,0.0156 -0.0549,0.0193 -0.0597,0.0217 -0.0573,0.0217 -0.37483,-0.94527 0.0788,-0.0313 0.074,-0.0265 0.074,-0.0265 0.0788,-0.0253 0.0704,-0.0205 0.0704,-0.0193 0.0692,-0.0169 0.0704,-0.0168 0.0692,-0.0132 0.0633,-0.0108 0.068,-0.0108 0.0609,-0.007 0.0621,-0.007 0.0657,-0.005 0.0598,-0.002 0.0513,-0.001 0.0585,-0.002 0.0573,0.002 0.0502,0.001 0.0573,0.004 0.0477,0.004 0.0478,0.005 0.0477,0.006 0.0454,0.006 0.0442,0.008 0.0477,0.008 0.0347,0.008 0.0346,0.006 0.0454,0.012 0.0298,0.007 0.0323,0.008 0.0323,0.009 z m 3.3149,0.4955 -1.0122,0 0.81768,-0.40168 0.0848,0.0721 0.0799,0.0782 0.0692,0.083 0.068,0.10224 0.0548,0.12987 0.0323,0.15394 -0.0119,0.18401 -0.0668,0.17679 -0.10385,0.13829 -0.10624,0.0878 -0.10862,0.0625 -0.10982,0.0432 -0.10744,0.03 -0.10743,0.0205 -0.10862,0.0132 -0.11102,0.007 -0.11817,0.005 -0.12773,-0.002 -0.13369,-0.005 -0.14086,-0.0108 -0.14802,-0.0144 -0.15636,-0.0193 -0.16354,-0.0228 -0.17309,-0.0277 -0.18144,-0.0337 -0.18862,-0.0372 -0.19815,-0.0409 -0.2065,-0.0481 -0.21726,-0.0517 -0.22202,-0.0577 -0.23158,-0.0637 -0.23993,-0.0673 0.27933,-0.97895 0.22799,0.0649 0.22202,0.059 0.2101,0.0553 0.20053,0.0493 0.1922,0.0433 0.18383,0.0385 0.17427,0.0349 0.16473,0.0288 0.15399,0.0253 0.14444,0.0205 0.13488,0.0168 0.12415,0.012 0.11458,0.008 0.10025,0.005 0.0896,0 0.08,-0.002 0.068,-0.005 0.0513,-0.006 0.0335,-0.006 0.0143,-0.004 -0.007,0.002 -0.025,0.0145 -0.0417,0.0349 -0.0585,0.0806 -0.0429,0.11185 -0.007,0.11424 0.0156,0.0794 0.0216,0.0505 0.0107,0.0181 -0.005,-0.006 -0.0156,-0.0156 -0.0323,-0.0265 0.81769,-0.40169 z m -1.0122,0 0,-1.0463 0.81768,0.64462 -0.81768,0.40167 z m 0,0.001 0,-0.001 1.0122,0 0,0.001 -0.95138,0.24292 -0.0609,-0.24292 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path233" + d="m 458.4,214.56 c 1.5649,-0.98617 1.8717,-0.724 2.3742,-1.371 0.64699,-0.83223 0.65534,-2.1984 0.45242,-3.5081 -0.81888,-5.2844 2.3349,-4.5472 5.8825,-2.2105 1.7738,1.169 3.5584,3.8822 5.0828,5.2989 1.5244,1.4155 2.7885,1.537 3.1681,2.0962 0.0477,2.0277 0.0573,3.7799 0.0429,4.5725 v 0.005 c 0.0144,0.79255 0.006,2.5424 -0.0429,4.5701 -0.38079,0.55924 -1.6449,0.6795 -3.1681,2.0962 -1.5244,1.4167 -3.3089,4.1299 -5.0828,5.2977 -3.5477,2.338 -6.7014,3.074 -5.8825,-2.2105 0.20172,-1.3097 0.19457,-2.6759 -0.45242,-3.5081 -0.50254,-0.64703 -0.80932,-0.38484 -2.3742,-1.371 -1.0158,-0.63861 -1.7774,-1.4083 -2.2847,-2.243 -0.50733,-0.83583 -0.23158,-1.7354 -0.23158,-2.635 0,-0.90078 -0.27575,-1.8004 0.23158,-2.635 0.50732,-0.83583 1.2689,-1.6055 2.2847,-2.2441 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path235" + d="m 460.37,212.87 0.795,0.62777 10e-4,0 -0.0573,0.071 -0.0561,0.0649 -0.0609,0.0661 -0.0597,0.059 -0.0609,0.0553 -0.0633,0.053 -0.0609,0.0458 -0.0656,0.047 -0.0633,0.0384 -0.0621,0.036 -0.068,0.0372 -0.0645,0.0312 -0.0621,0.0289 -0.0621,0.0277 -0.0644,0.0277 -0.0668,0.0277 -0.0609,0.024 -0.068,0.0288 -0.0704,0.0288 -0.0728,0.0312 -0.0728,0.0312 -0.0788,0.036 -0.0836,0.0385 -0.0883,0.042 -0.0942,0.0458 -0.0967,0.0481 -0.10147,0.0553 -0.11221,0.0613 -0.11698,0.0649 -0.12176,0.0721 -0.13011,0.0782 -0.13728,0.0854 -0.53715,-0.86349 0.1492,-0.0925 0.14206,-0.0854 0.13607,-0.0795 0.12892,-0.0721 0.11938,-0.0662 0.11817,-0.0625 0.11339,-0.0577 0.10387,-0.0505 0.0979,-0.047 0.0931,-0.0432 0.0908,-0.0409 0.0848,-0.036 0.08,-0.0337 0.0704,-0.0288 0.068,-0.0288 0.068,-0.0288 0.0573,-0.0228 0.0525,-0.0228 0.0478,-0.0205 0.0454,-0.0217 0.0406,-0.0193 0.0298,-0.0156 0.0357,-0.0217 0.0298,-0.0193 0.0275,-0.0181 0.0275,-0.0217 0.0275,-0.0217 0.0275,-0.0265 0.031,-0.03 0.0298,-0.0325 0.0347,-0.0409 0.0358,-0.0444 10e-4,0 z m 0.34975,-3.1161 1.0003,-0.15634 0.0179,0.12747 0.0191,0.12869 0.0156,0.12989 0.0156,0.13109 0.0131,0.12748 0.0119,0.12988 0.009,0.12989 0.008,0.12988 0.005,0.12868 0.005,0.1287 0.002,0.13108 0,0.12628 -0.004,0.12989 -0.005,0.12747 -0.008,0.12989 -0.0119,0.12508 -0.0119,0.12267 -0.0167,0.12387 -0.0179,0.12508 -0.0238,0.12387 -0.025,0.12147 -0.031,0.12026 -0.0323,0.11667 -0.0357,0.11666 -0.0417,0.11664 -0.0454,0.11546 -0.049,0.11065 -0.0537,0.10944 -0.0597,0.11064 -0.0645,0.10463 -0.0668,0.10096 -0.074,0.0998 -0.79499,-0.62778 0.0429,-0.059 0.043,-0.0649 0.0406,-0.0662 0.0358,-0.0649 0.0347,-0.0734 0.0346,-0.077 0.031,-0.077 0.0275,-0.0806 0.0263,-0.083 0.025,-0.0902 0.0216,-0.089 0.0204,-0.0925 0.0167,-0.0925 0.0156,-0.0962 0.0119,-0.0998 0.0119,-0.10584 0.009,-0.10342 0.006,-0.10343 0.005,-0.10582 0.001,-0.10825 0,-0.11184 0,-0.10944 -0.005,-0.11425 -0.005,-0.11426 -0.008,-0.11546 -0.007,-0.11545 -0.0119,-0.11545 -0.0107,-0.11786 -0.0131,-0.11666 -0.0156,-0.11545 -0.0167,-0.11907 -0.0179,-0.11786 z m 6.6596,-2.7144 -0.55387,0.85147 0,10e-4 -0.32469,-0.20926 -0.31991,-0.19964 -0.31513,-0.18761 -0.31036,-0.17559 -0.3044,-0.16236 -0.29723,-0.14912 -0.29006,-0.13471 -0.27932,-0.11905 -0.27217,-0.10343 -0.25784,-0.0866 -0.24709,-0.0685 -0.23277,-0.0505 -0.21964,-0.0337 -0.20055,-0.0168 -0.18263,0.002 -0.16711,0.0181 -0.14683,0.0325 -0.12892,0.047 -0.11579,0.059 -0.10385,0.0746 -0.0942,0.0925 -0.0908,0.11545 -0.0811,0.14072 -0.074,0.17318 -0.0645,0.20566 -0.0513,0.23932 -0.0357,0.2754 -0.0204,0.31269 -0.001,0.34757 0.0204,0.38485 0.0406,0.42332 0.0633,0.45821 -1.0003,0.15635 -0.068,-0.49669 -0.043,-0.46422 -0.0226,-0.43536 10e-4,-0.40529 0.0226,-0.37764 0.0454,-0.35238 0.0704,-0.32591 0.0955,-0.30187 0.11938,-0.2766 0.148,-0.25377 0.1743,-0.22369 0.19934,-0.19363 0.22323,-0.16115 0.23993,-0.12628 0.25306,-0.0902 0.2638,-0.0589 0.26978,-0.03 0.27812,-0.002 0.28172,0.0217 0.2865,0.0432 0.29244,0.0649 0.29723,0.083 0.3032,0.10096 0.30797,0.11786 0.31275,0.13109 0.31873,0.14913 0.32109,0.16115 0.32828,0.17438 0.32945,0.18762 0.33424,0.19723 0.33661,0.20927 0.33902,0.21888 0,0.001 z m 5.1484,5.3506 -0.68517,0.74806 -0.1516,-0.14433 -0.1516,-0.14912 -0.1528,-0.15635 -0.15279,-0.16115 -0.15399,-0.16597 -0.15398,-0.17197 -0.15399,-0.17319 -0.15517,-0.17799 -0.15518,-0.18039 -0.15638,-0.18281 -0.15757,-0.18401 -0.15757,-0.18641 -0.15876,-0.18881 -0.15756,-0.18641 -0.15877,-0.18762 -0.15996,-0.18641 -0.16115,-0.18642 -0.15876,-0.184 -0.15995,-0.18039 -0.15996,-0.17799 -0.16115,-0.1768 -0.15996,-0.17318 -0.15995,-0.16596 -0.15876,-0.16116 -0.15996,-0.15754 -0.15876,-0.14914 -0.15875,-0.14551 -0.15758,-0.13832 -0.15518,-0.12987 -0.15399,-0.12028 -0.15398,-0.11304 -0.1516,-0.10463 0.55387,-0.85147 0.18025,0.12387 0.18026,0.13229 0.17785,0.13951 0.17666,0.14672 0.17428,0.15273 0.17308,0.15756 0.1731,0.16356 0.17189,0.16956 0.1707,0.17319 0.16951,0.17798 0.16711,0.18041 0.16832,0.18159 0.16472,0.18521 0.16711,0.18763 0.16354,0.18881 0.16115,0.18881 0.16234,0.18881 0.16115,0.19003 0.15996,0.18881 0.15637,0.18641 0.15757,0.184 0.15518,0.18402 0.15399,0.1804 0.1528,0.17559 0.15039,0.17317 0.14922,0.16837 0.14682,0.16236 0.14444,0.15634 0.14324,0.15153 0.14086,0.14432 0.13966,0.1371 0.13489,0.12989 z m 3.3304,2.4582 -1.0099,0.024 0.0871,0.2754 -0.0119,-0.0168 -0.0131,-0.0145 -0.0263,-0.0253 -0.0335,-0.0288 -0.0335,-0.0265 -0.043,-0.0288 -0.0537,-0.0337 -0.0585,-0.0348 -0.0656,-0.036 -0.0728,-0.0385 -0.0788,-0.0409 -0.0823,-0.042 -0.0896,-0.0432 -0.0942,-0.047 -0.10265,-0.0493 -0.10266,-0.053 -0.10625,-0.053 -0.11578,-0.059 -0.11817,-0.0637 -0.11937,-0.0649 -0.12535,-0.0697 -0.12772,-0.0758 -0.13131,-0.0794 -0.1325,-0.0853 -0.13608,-0.089 -0.14086,-0.0974 -0.13965,-0.10096 -0.14325,-0.10704 -0.14802,-0.11665 -0.14682,-0.12267 -0.14803,-0.12869 -0.15159,-0.1371 0.68518,-0.74804 0.13251,0.12027 0.13368,0.11424 0.13011,0.10823 0.12654,0.0999 0.12653,0.095 0.12534,0.0914 0.11937,0.083 0.12175,0.0794 0.11818,0.0758 0.1146,0.0697 0.1134,0.0662 0.11102,0.0625 0.10981,0.0602 0.10624,0.0565 0.10147,0.0517 0.10625,0.053 0.10025,0.0505 0.0955,0.047 0.0967,0.047 0.0919,0.0458 0.0942,0.047 0.0883,0.0458 0.0848,0.0458 0.0871,0.0481 0.0823,0.0493 0.0799,0.0505 0.0836,0.0577 0.0811,0.0625 0.0716,0.0625 0.0717,0.0685 0.0728,0.0818 0.0645,0.0865 0.0871,0.27541 z m -0.0871,-0.2754 0.0836,0.12266 0.004,0.15274 -0.0871,-0.2754 z m 0.1313,4.8599 -1.0122,0 0,-0.009 10e-4,-0.0746 0.001,-0.083 10e-4,-0.0878 0.001,-0.089 0,-0.0985 10e-4,-0.10222 0,-0.10584 0,-0.11305 0,-0.11785 0,-0.12147 0,-0.12388 -10e-4,-0.13109 0,-0.1347 -0.001,-0.13709 -10e-4,-0.14192 -0.001,-0.14793 -10e-4,-0.15033 -0.001,-0.15273 -10e-4,-0.15515 -0.002,-0.15875 -0.002,-0.16356 -0.002,-0.16596 -0.002,-0.16837 -0.002,-0.17199 -0.002,-0.17317 -0.004,-0.17559 -0.004,-0.1816 -0.002,-0.1804 -0.004,-0.1804 -0.005,-0.18881 -0.002,-0.18641 -0.005,-0.18761 1.0099,-0.024 0.005,0.19001 0.005,0.18882 0.002,0.184 0.006,0.18521 0.002,0.18281 0.004,0.17679 0.004,0.1804 0.002,0.17559 0.002,0.17197 0.002,0.16837 0.002,0.16596 0.002,0.16356 0.002,0.16116 10e-4,0.15995 10e-4,0.15274 0.001,0.15033 10e-4,0.14553 0.001,0.14191 10e-4,0.14191 0,0.13469 0.001,0.13109 0,0.12869 0,0.12147 0,0.11785 0,0.11305 0,0.11064 -0.001,0.10463 0,0.0985 -10e-4,0.0962 -0.001,0.0878 -10e-4,0.083 -0.001,0.0795 0,-0.009 z m -1.0122,0 0,-0.009 0,0.009 z m 0,0.005 0,-0.005 1.0122,0 0,0.005 -1.0122,0.009 0,-0.009 z m 0,0.009 0,-0.009 0,0.009 z m 0.87976,4.8491 -0.8332,-0.57727 -0.0883,0.27661 0.005,-0.18761 0.004,-0.18882 0.005,-0.18641 0.002,-0.18039 0.004,-0.18161 0.004,-0.17799 0.002,-0.17679 0.004,-0.17439 0.002,-0.17077 0.002,-0.16957 0.002,-0.16597 0.002,-0.16236 10e-4,-0.15996 0.002,-0.15634 10e-4,-0.15032 0.001,-0.15033 10e-4,-0.14793 0.001,-0.13951 0,-0.13951 10e-4,-0.1347 0,-0.12748 0,-0.12627 0,-0.12267 0,-0.11666 0,-0.11306 0,-0.10582 -10e-4,-0.10224 0,-0.0985 -0.001,-0.089 -10e-4,-0.0878 -0.001,-0.083 -10e-4,-0.0746 1.0122,-0.0193 10e-4,0.0794 0.001,0.083 10e-4,0.0878 0.001,0.0962 0,0.0985 10e-4,0.10462 0,0.11064 0,0.11306 0,0.11665 0,0.12268 0,0.12627 0,0.13229 -10e-4,0.1347 0,0.1395 -0.001,0.14433 -10e-4,0.14551 -0.001,0.15034 -10e-4,0.15514 -0.002,0.15634 -10e-4,0.15996 -0.002,0.16475 -0.002,0.16598 -0.002,0.16957 -0.002,0.17318 -0.004,0.17439 -0.002,0.17679 -0.004,0.18039 -0.004,0.1816 -0.005,0.18521 -0.005,0.18641 -0.004,0.18641 -0.005,0.19003 -0.0883,0.2766 z m 0.0883,-0.2766 -0.004,0.15273 -0.0847,0.12387 0.0883,-0.2766 z m -3.3304,2.4582 -0.68518,-0.74806 0.1504,-0.13709 0.14922,-0.12989 0.14801,-0.12147 0.14325,-0.11425 0.14563,-0.11064 0.14205,-0.10223 0.13847,-0.0938 0.13488,-0.0914 0.13489,-0.0842 0.13251,-0.0818 0.12533,-0.0733 0.12415,-0.0709 0.12295,-0.0662 0.1146,-0.0613 0.11459,-0.059 0.10982,-0.0553 0.10385,-0.0517 0.10025,-0.0481 0.0931,-0.0458 0.0919,-0.0458 0.0836,-0.0409 0.0777,-0.0409 0.0728,-0.0385 0.0644,-0.036 0.0609,-0.036 0.0502,-0.0312 0.0442,-0.03 0.0369,-0.0288 0.031,-0.0265 0.0263,-0.0253 0.0131,-0.0144 0.0131,-0.0181 0.8332,0.57727 -0.0633,0.0854 -0.0728,0.0818 -0.0717,0.0685 -0.074,0.0649 -0.0799,0.0602 -0.08,0.0565 -0.0836,0.053 -0.0823,0.0481 -0.0859,0.0482 -0.0871,0.0458 -0.0896,0.0458 -0.0908,0.0458 -0.0919,0.0458 -0.0979,0.0481 -0.0979,0.0481 -0.099,0.0493 -0.10267,0.0505 -0.10265,0.0541 -0.10743,0.0565 -0.10862,0.059 -0.10982,0.0637 -0.11579,0.0662 -0.1158,0.0697 -0.11578,0.0746 -0.12056,0.0795 -0.12415,0.0865 -0.12295,0.0878 -0.12415,0.0938 -0.12892,0.10221 -0.12892,0.10704 -0.13249,0.11546 -0.1337,0.12026 z m -5.1484,5.3494 -0.55387,-0.85147 0,-10e-4 0.1516,-0.10342 0.15399,-0.11305 0.15397,-0.12027 0.15638,-0.13109 0.15638,-0.1359 0.15756,-0.14431 0.15995,-0.15154 0.15997,-0.15635 0.15876,-0.16236 0.15995,-0.16715 0.15995,-0.17199 0.16115,-0.17558 0.15996,-0.178 0.15996,-0.1804 0.15876,-0.184 0.16114,-0.18641 0.15996,-0.18642 0.15877,-0.1876 0.15757,-0.18642 0.15875,-0.18882 0.15757,-0.18641 0.15757,-0.184 0.15638,-0.1828 0.15518,-0.1804 0.15517,-0.17799 0.154,-0.17319 0.15398,-0.17197 0.15398,-0.16596 0.15279,-0.16117 0.1528,-0.15634 0.1516,-0.14913 0.1516,-0.14431 0.68518,0.74804 -0.13489,0.12989 -0.13966,0.1371 -0.14086,0.14432 -0.14324,0.15153 -0.14444,0.15634 -0.14682,0.16236 -0.14922,0.16838 -0.1504,0.17318 -0.15279,0.17559 -0.15399,0.1804 -0.15518,0.184 -0.15757,0.184 -0.15637,0.18642 -0.15996,0.18881 -0.16115,0.19002 -0.16234,0.18881 -0.16115,0.18881 -0.16354,0.18884 -0.1671,0.1876 -0.16474,0.18521 -0.16831,0.1828 -0.16711,0.1792 -0.16951,0.17679 -0.1707,0.17438 -0.17189,0.16838 -0.1719,0.16355 -0.17428,0.15875 -0.17547,0.15274 -0.17547,0.14551 -0.17786,0.13951 -0.18025,0.1323 -0.18025,0.12508 0,-0.001 z m -6.6596,-2.7144 1.0003,0.15633 -0.0633,0.45821 -0.0406,0.42334 -0.0204,0.38485 0.001,0.34757 0.0204,0.31269 0.0357,0.27541 0.0514,0.23932 0.0645,0.20565 0.074,0.17319 0.0811,0.14071 0.0908,0.11545 0.0942,0.0925 0.10385,0.0746 0.11698,0.0602 0.12892,0.047 0.14444,0.0325 0.16712,0.0169 0.18383,0.002 0.20054,-0.0169 0.21964,-0.0337 0.23276,-0.0505 0.2471,-0.0685 0.25903,-0.0866 0.27097,-0.10223 0.27933,-0.12027 0.29007,-0.13349 0.29603,-0.14913 0.30558,-0.16356 0.31037,-0.17439 0.31514,-0.1876 0.31989,-0.20085 0.32469,-0.20805 0.55389,0.85147 -0.33902,0.22009 -0.33662,0.20806 -0.33424,0.19964 -0.32945,0.1864 -0.32707,0.17558 -0.3223,0.16117 -0.31873,0.14793 -0.31273,0.13229 -0.30918,0.11666 -0.302,0.10096 -0.29723,0.083 -0.29245,0.0649 -0.2865,0.0433 -0.28171,0.0217 -0.27693,-0.002 -0.26977,-0.0289 -0.2662,-0.059 -0.25306,-0.0925 -0.23874,-0.12508 -0.22323,-0.16116 -0.19934,-0.19361 -0.17428,-0.2237 -0.14802,-0.25376 -0.11937,-0.27661 -0.0955,-0.30186 -0.0704,-0.32593 -0.0454,-0.35238 -0.0226,-0.37762 -0.001,-0.40529 0.0226,-0.43536 0.0429,-0.46423 0.068,-0.49669 z m -0.35095,-3.1161 0.7974,-0.62779 -0.001,0 0.074,0.0998 0.0668,0.10106 0.0644,0.10462 0.0597,0.11064 0.0537,0.10945 0.049,0.11064 0.0454,0.11546 0.0417,0.11666 0.0358,0.11664 0.0323,0.11667 0.031,0.12026 0.0263,0.12508 0.0216,0.12027 0.0191,0.12267 0.0167,0.12626 0.0131,0.12509 0.009,0.12507 0.008,0.12749 0.005,0.12748 0.004,0.12749 10e-4,0.12867 -0.004,0.13108 -0.004,0.12869 -0.006,0.12869 -0.007,0.12989 -0.0107,0.12988 -0.0107,0.12989 -0.0143,0.12747 -0.0131,0.12868 -0.0167,0.1323 -0.0191,0.12868 -0.0179,0.12748 -1.0003,-0.15634 0.0179,-0.11785 0.0167,-0.11907 0.0143,-0.11305 0.0131,-0.11907 0.0119,-0.11785 0.0107,-0.11546 0.008,-0.11545 0.007,-0.11545 0.006,-0.11427 0.004,-0.11424 10e-4,-0.10944 -10e-4,-0.10944 -0.001,-0.11065 -0.005,-0.10583 -0.006,-0.10584 -0.009,-0.10342 -0.0107,-0.10343 -0.0119,-0.0974 -0.0167,-0.0985 -0.0167,-0.0962 -0.0191,-0.089 -0.0216,-0.089 -0.025,-0.0902 -0.0263,-0.083 -0.0275,-0.0806 -0.031,-0.077 -0.0346,-0.077 -0.0347,-0.0733 -0.0357,-0.0649 -0.0406,-0.0662 -0.043,-0.0649 -0.043,-0.059 -10e-4,0 z m -2.243,-1.2532 0.53478,-0.8635 10e-4,0 0.13727,0.0854 0.13012,0.0782 0.12175,0.0721 0.11699,0.0649 0.11221,0.0613 0.10147,0.0553 0.0967,0.0481 0.0943,0.0458 0.0883,0.042 0.0836,0.0385 0.0787,0.036 0.0729,0.0312 0.0728,0.0313 0.0704,0.0288 0.068,0.0288 0.0609,0.024 0.0668,0.0277 0.0645,0.0277 0.0621,0.0277 0.0621,0.0288 0.0645,0.0312 0.068,0.0372 0.0621,0.036 0.0633,0.0385 0.0656,0.047 0.0609,0.0457 0.0633,0.053 0.0609,0.0553 0.0597,0.059 0.0609,0.0661 0.0561,0.0649 0.0573,0.071 -0.79739,0.62778 -0.0357,-0.0444 -0.0346,-0.0409 -0.0298,-0.0325 -0.031,-0.03 -0.0275,-0.0265 -0.0275,-0.0217 -0.0275,-0.0217 -0.0275,-0.0181 -0.0298,-0.0193 -0.0358,-0.0217 -0.0298,-0.0157 -0.0405,-0.0193 -0.0454,-0.0217 -0.0477,-0.0205 -0.0525,-0.0228 -0.0573,-0.0228 -0.068,-0.0288 -0.068,-0.0288 -0.0704,-0.0288 -0.08,-0.0337 -0.0848,-0.036 -0.0908,-0.0409 -0.0931,-0.0433 -0.0979,-0.047 -0.10385,-0.0505 -0.11341,-0.0577 -0.11816,-0.0625 -0.11938,-0.0662 -0.12892,-0.0721 -0.13609,-0.0795 -0.14204,-0.0854 -0.14921,-0.0925 0.001,0 z m 0.53478,-0.8635 10e-4,0 0.49539,0.31149 -0.49658,-0.31149 z m -2.983,-1.5454 0.86185,-0.53158 0.0429,0.071 0.0466,0.0697 0.0477,0.0735 0.0466,0.0673 0.0489,0.0673 0.0549,0.0746 0.0513,0.0697 0.0537,0.0673 0.0537,0.0685 0.0561,0.0661 0.0598,0.0697 0.0609,0.0673 0.0597,0.0662 0.0633,0.0673 0.0645,0.0673 0.0633,0.0637 0.068,0.0649 0.0692,0.0674 0.0692,0.0637 0.0692,0.0613 0.0728,0.0625 0.0752,0.0637 0.0764,0.0625 0.0777,0.0625 0.0777,0.0602 0.0811,0.0601 0.0823,0.0602 0.0836,0.0613 0.0823,0.0565 0.0859,0.0577 0.0883,0.059 0.0883,0.0565 -0.53477,0.8635 -0.10025,-0.0637 -0.0978,-0.0637 -0.0979,-0.0649 -0.0967,-0.0685 -0.0931,-0.0662 -0.092,-0.0673 -0.0908,-0.0697 -0.0896,-0.0697 -0.0871,-0.0697 -0.0859,-0.0697 -0.0848,-0.071 -0.0848,-0.0721 -0.0836,-0.0758 -0.0811,-0.0758 -0.0764,-0.0721 -0.0777,-0.0746 -0.0777,-0.0782 -0.074,-0.077 -0.0728,-0.077 -0.0716,-0.0782 -0.068,-0.0795 -0.0668,-0.077 -0.068,-0.0806 -0.0656,-0.0806 -0.0657,-0.0842 -0.0609,-0.0818 -0.0573,-0.077 -0.0609,-0.0842 -0.0585,-0.0865 -0.0549,-0.083 -0.0537,-0.0842 -0.0525,-0.0854 z m -0.30678,-2.9008 1.0122,0 -10e-4,0.0914 -0.002,0.0914 -0.004,0.095 -0.005,0.0914 -0.006,0.0878 -0.006,0.0842 -0.006,0.0842 -0.007,0.0878 -0.007,0.0878 -0.007,0.0806 -0.005,0.0795 -0.006,0.0806 -0.005,0.0758 -0.004,0.0794 -0.004,0.0758 0,0.0758 -0.001,0.0722 0.001,0.0721 0.002,0.0697 0.005,0.0685 0.006,0.0673 0.008,0.0662 0.0107,0.0661 0.0107,0.0602 0.0156,0.0625 0.0167,0.0637 0.0167,0.0565 0.0226,0.059 0.025,0.0613 0.0275,0.059 0.0298,0.0589 0.0335,0.0577 -0.86185,0.53157 -0.0573,-0.0985 -0.0513,-0.0998 -0.0466,-0.0997 -0.0394,-0.0974 -0.0369,-0.0998 -0.0335,-0.10463 -0.0263,-0.0974 -0.0226,-0.0986 -0.0204,-0.10341 -0.0131,-0.095 -0.0131,-0.0974 -0.008,-0.0962 -0.007,-0.0974 -0.002,-0.0937 -0.004,-0.0938 10e-4,-0.0938 0.002,-0.0902 0.004,-0.0902 0.004,-0.0866 0.005,-0.0902 0.006,-0.0878 0.007,-0.0865 0.007,-0.0878 0.007,-0.0806 0.005,-0.0806 0.006,-0.0842 0.006,-0.0842 0.006,-0.0806 0.005,-0.077 0.004,-0.0734 0,-0.077 0.001,-0.077 z m 0.30678,-2.9008 0.86185,0.53156 -0.0335,0.0577 -0.0298,0.059 -0.0275,0.059 -0.025,0.0613 -0.0226,0.059 -0.0167,0.0565 -0.0167,0.0637 -0.0156,0.0637 -0.0107,0.0577 -0.009,0.0673 -0.009,0.0662 -0.006,0.0673 -0.005,0.0673 -0.002,0.0697 -10e-4,0.0722 10e-4,0.0721 0,0.0758 0.004,0.0758 0.004,0.0794 0.005,0.077 0.006,0.0793 0.005,0.0806 0.007,0.0793 0.007,0.0878 0.007,0.0878 0.006,0.0842 0.006,0.0842 0.006,0.0878 0.005,0.0914 0.004,0.0962 0.002,0.0914 10e-4,0.0914 -1.0122,0 -0.001,-0.077 0,-0.077 -0.004,-0.0746 -0.005,-0.077 -0.006,-0.0806 -0.006,-0.0842 -0.006,-0.0842 -0.005,-0.0806 -0.007,-0.0806 -0.007,-0.0865 -0.007,-0.0878 -0.006,-0.0866 -0.005,-0.0914 -0.004,-0.0865 -0.004,-0.0902 -0.002,-0.0902 -10e-4,-0.0938 0.004,-0.0937 0.002,-0.0938 0.007,-0.0962 0.008,-0.0962 0.0119,-0.0974 0.0144,-0.0962 0.0204,-0.10342 0.0226,-0.0974 0.0263,-0.0974 0.0335,-0.10463 0.0369,-0.0998 0.0394,-0.0974 0.0466,-0.0997 0.0513,-0.0997 0.0573,-0.0986 z m 2.4471,-2.4101 0.53715,0.8635 -0.001,0 -0.0883,0.0565 -0.0883,0.059 -0.0859,0.0577 -0.0823,0.0565 -0.0836,0.0613 -0.0823,0.0602 -0.0811,0.0601 -0.0777,0.0602 -0.0777,0.0625 -0.0764,0.0625 -0.074,0.0625 -0.0728,0.0625 -0.0716,0.0649 -0.0692,0.0637 -0.068,0.0649 -0.068,0.0649 -0.0633,0.0637 -0.0645,0.0673 -0.0633,0.0673 -0.0597,0.0661 -0.0609,0.0673 -0.0585,0.0685 -0.0561,0.0673 -0.0561,0.071 -0.0536,0.0673 -0.0502,0.0673 -0.0537,0.0722 -0.0489,0.0697 -0.049,0.0697 -0.0466,0.071 -0.0454,0.0697 -0.0442,0.0722 -0.86186,-0.53158 0.0514,-0.0842 0.0549,-0.0865 0.0561,-0.083 0.0561,-0.0842 0.0609,-0.0842 0.0585,-0.0795 0.0621,-0.0842 0.0658,-0.0818 0.0633,-0.0782 0.068,-0.0818 0.068,-0.0782 0.068,-0.0794 0.0717,-0.0782 0.0728,-0.077 0.074,-0.077 0.0776,-0.0782 0.0777,-0.0746 0.0777,-0.0746 0.0811,-0.0733 0.0811,-0.0721 0.0848,-0.0746 0.0859,-0.0722 0.0859,-0.0697 0.0871,-0.0697 0.0896,-0.0697 0.0908,-0.0697 0.092,-0.0673 0.0931,-0.0662 0.0967,-0.0685 0.0979,-0.0649 0.0978,-0.0637 0.10025,-0.0637 -0.001,0 z m 0.53715,0.8635 -0.001,0 0.49658,-0.31149 -0.49539,0.31149 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path237" + d="m 475.52,220.24 -0.1313,0.88877 c -3.7518,0.47384 -6.8494,1.9856 -9.5543,4.356 1.7893,-2.6675 5.6283,-4.6531 9.6856,-5.2448 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path239" + d="m 475.52,218.64 -0.1313,-0.88877 c -3.7518,-0.47504 -6.8494,-1.9856 -9.5543,-4.356 1.7893,2.6663 5.6283,4.6518 9.6856,5.2448 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path241" + d="m 461.16,207.28 c 1.1412,0.46904 2.3838,0.97174 3.4366,1.994 1.5996,1.5526 0.56342,4.1299 -1.5041,6.6242 -0.65176,0.78653 -0.96689,2.1768 -0.96212,3.561 0.005,1.3842 0.33185,2.7625 0.96212,3.5238 2.0663,2.4943 3.1036,5.0716 1.5041,6.6242 -1.0516,1.0223 -2.2943,1.5226 -3.4355,1.9928 -0.10982,-0.60133 -0.0979,-1.3903 0.0585,-2.4017 0.20293,-1.3097 0.19577,-2.6759 -0.45121,-3.5081 -0.50374,-0.64703 -0.80933,-0.38485 -2.3754,-1.3698 -1.0146,-0.63982 -1.7762,-1.4095 -2.2847,-2.2442 -0.50732,-0.83463 -0.23159,-1.7342 -0.23159,-2.635 0,-0.90079 -0.27693,-1.8004 0.23159,-2.635 0.50851,-0.83584 1.2701,-1.6055 2.2847,-2.2442 1.5661,-0.98617 1.8717,-0.72398 2.3754,-1.371 0.64697,-0.83224 0.65414,-2.1984 0.45121,-3.5081 -0.15637,-1.0114 -0.16831,-1.8016 -0.0585,-2.4029 h -10e-4 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path243" + d="m 464.95,208.9 -0.7019,0.73362 0,0 -0.0908,-0.0866 -0.0931,-0.0842 -0.0931,-0.0818 -0.0943,-0.0782 -0.0967,-0.0782 -0.0955,-0.0746 -0.0967,-0.0722 -0.10025,-0.0709 -0.0978,-0.0685 -0.0979,-0.0649 -0.10147,-0.0637 -0.10148,-0.0625 -0.10147,-0.0613 -0.10266,-0.059 -0.10505,-0.059 -0.10266,-0.0553 -0.10385,-0.0541 -0.10743,-0.0553 -0.10265,-0.0517 -0.10506,-0.0505 -0.10862,-0.0505 -0.10504,-0.0493 -0.10743,-0.0481 -0.10863,-0.0482 -0.10504,-0.047 -0.10744,-0.0458 -0.10863,-0.047 -0.10504,-0.0433 -0.10744,-0.0446 -0.10863,-0.0444 -0.10862,-0.0444 -0.10623,-0.0446 0.38198,-0.94287 0.10863,0.0446 0.10624,0.0444 0.10862,0.0445 0.10982,0.0446 0.11221,0.0481 0.11102,0.047 0.1122,0.0481 0.1146,0.0493 0.11101,0.0505 0.11459,0.0505 0.1146,0.0542 0.11101,0.053 0.11698,0.0553 0.11698,0.059 0.11221,0.0577 0.1158,0.059 0.11698,0.0649 0.11459,0.0637 0.11459,0.0662 0.11579,0.0685 0.1134,0.0697 0.11341,0.0734 0.11699,0.077 0.1122,0.0782 0.1122,0.0806 0.11341,0.0842 0.1122,0.0865 0.10862,0.0878 0.11103,0.0925 0.10982,0.0962 0.10743,0.0985 0.10742,0.10096 0,0 z m -1.467,7.3169 -0.7759,-0.65183 0,-0.001 0.18502,-0.22729 0.17906,-0.2261 0.17189,-0.22729 0.16473,-0.22611 0.15757,-0.2261 0.15161,-0.22609 0.14204,-0.22129 0.1325,-0.22008 0.12533,-0.2213 0.11818,-0.21647 0.10624,-0.21407 0.099,-0.21287 0.0883,-0.20806 0.0788,-0.20445 0.0692,-0.19963 0.0585,-0.19724 0.0477,-0.19243 0.0382,-0.18641 0.0286,-0.184 0.0167,-0.17559 0.007,-0.16956 -0.004,-0.16599 -0.0131,-0.15994 -0.0238,-0.15034 -0.0347,-0.15153 -0.0442,-0.14432 -0.0536,-0.1371 -0.0656,-0.13349 -0.0777,-0.13109 -0.0896,-0.12748 -0.10266,-0.12507 -0.11698,-0.12147 0.70189,-0.73361 0.16712,0.17438 0.15279,0.18521 0.13488,0.19241 0.11818,0.19844 0.10147,0.20805 0.0848,0.21408 0.0657,0.21648 0.0514,0.21888 0.0357,0.22731 0.0179,0.2273 0.006,0.22849 -0.009,0.23212 -0.0238,0.23331 -0.0358,0.23452 -0.0477,0.23451 -0.0596,0.23573 -0.0704,0.23812 -0.0811,0.23812 -0.0931,0.24053 -0.10267,0.23933 -0.11101,0.23932 -0.12056,0.24294 -0.13011,0.24053 -0.13728,0.24053 -0.14681,0.24414 -0.15639,0.24294 -0.16115,0.24053 -0.16949,0.24293 -0.17667,0.24294 -0.18384,0.24173 -0.1886,0.24053 -0.19696,0.24173 0,-0.001 z m -0.84394,3.2339 -1.0122,0.002 0,-0.13589 0.004,-0.13951 0.005,-0.13591 0.006,-0.13709 0.008,-0.13591 0.0107,-0.1359 0.0119,-0.13468 0.0144,-0.13591 0.0179,-0.13349 0.0179,-0.13109 0.0204,-0.13349 0.0238,-0.1335 0.025,-0.12988 0.0263,-0.12508 0.0286,-0.13109 0.0323,-0.12748 0.0335,-0.12268 0.0347,-0.12266 0.0382,-0.12267 0.0406,-0.11906 0.0417,-0.11787 0.0466,-0.11785 0.0466,-0.11305 0.0502,-0.11065 0.0525,-0.11064 0.0561,-0.10823 0.0561,-0.10344 0.0609,-0.10342 0.0633,-0.0985 0.0668,-0.0986 0.0692,-0.0925 0.0717,-0.0902 0.77591,0.65183 -0.0477,0.0613 -0.0477,0.0637 -0.0454,0.0673 -0.0466,0.0722 -0.0417,0.0721 -0.0442,0.0795 -0.0417,0.0818 -0.0405,0.0842 -0.0382,0.089 -0.0394,0.0914 -0.0347,0.0914 -0.0347,0.0962 -0.0335,0.0998 -0.031,0.0985 -0.0298,0.10343 -0.0286,0.10824 -0.0275,0.10584 -0.0238,0.10704 -0.0238,0.11545 -0.0226,0.11305 -0.0191,0.11184 -0.0179,0.11425 -0.0156,0.11907 -0.0156,0.11906 -0.0119,0.11666 -0.0119,0.12026 -0.008,0.12146 -0.008,0.12147 -0.006,0.12267 -0.005,0.12147 -10e-4,0.12028 0,0.12386 z m 0.84394,3.199 -0.7759,0.65184 -0.0716,-0.089 -0.0668,-0.0914 -0.0633,-0.0925 -0.0621,-0.0985 -0.0609,-0.10097 -0.0561,-0.10342 -0.0537,-0.10464 -0.0513,-0.10702 -0.049,-0.11066 -0.0466,-0.11064 -0.0454,-0.11545 -0.0417,-0.11545 -0.0406,-0.11786 -0.0382,-0.12267 -0.0346,-0.11906 -0.0347,-0.12387 -0.0323,-0.12629 -0.0286,-0.12507 -0.0286,-0.12989 -0.0238,-0.12747 -0.0238,-0.12749 -0.0226,-0.1347 -0.0191,-0.13228 -0.0167,-0.13349 -0.0156,-0.13591 -0.0131,-0.13349 -0.0107,-0.13349 -0.0107,-0.13591 -0.007,-0.1383 -0.005,-0.13591 -0.005,-0.13709 -0.001,-0.13831 1.0122,-0.002 0.001,0.12146 0.002,0.12267 0.005,0.12147 0.007,0.11906 0.008,0.12147 0.0107,0.12386 0.0107,0.11907 0.0131,0.11666 0.0167,0.11907 0.0167,0.11545 0.0179,0.11304 0.0216,0.11546 0.0215,0.11305 0.0238,0.10823 0.0263,0.11066 0.025,0.10463 0.0298,0.10462 0.0298,0.10464 0.031,0.0986 0.0335,0.0962 0.0346,0.0962 0.0357,0.0914 0.037,0.089 0.0394,0.0865 0.0394,0.083 0.0417,0.0806 0.0417,0.077 0.0417,0.0722 0.043,0.0673 0.0466,0.0662 0.0454,0.0625 0.0454,0.0577 z m 1.467,7.3169 -0.7019,-0.73362 0.11699,-0.12146 0.10266,-0.12508 0.0896,-0.12749 0.0764,-0.12988 0.0657,-0.1347 0.0561,-0.13951 0.043,-0.14191 0.0347,-0.14913 0.0226,-0.15273 0.0143,-0.16116 0.004,-0.16476 -0.007,-0.16958 -0.0167,-0.17559 -0.0286,-0.184 -0.0382,-0.18641 -0.0478,-0.19121 -0.0597,-0.19724 -0.0692,-0.20205 -0.0777,-0.20445 -0.0883,-0.20686 -0.099,-0.21286 -0.10744,-0.21408 -0.11698,-0.21768 -0.12414,-0.21888 -0.13489,-0.22129 -0.14205,-0.22248 -0.15041,-0.2249 -0.15756,-0.2261 -0.16474,-0.22609 -0.17189,-0.2273 -0.17906,-0.2261 -0.18502,-0.22851 0.77591,-0.65184 0.19696,0.24053 0.18859,0.24053 0.18384,0.24175 0.17666,0.24292 0.16951,0.24294 0.16235,0.24172 0.15398,0.24175 0.14683,0.24293 0.13847,0.24293 0.12892,0.23934 0.12176,0.24293 0.111,0.23932 0.10267,0.24053 0.0919,0.24053 0.0811,0.23572 0.0716,0.23813 0.0597,0.23693 0.0477,0.23451 0.0358,0.23451 0.0238,0.23332 0.009,0.23211 -0.006,0.2297 -0.0191,0.2261 -0.0347,0.22491 -0.0513,0.22128 -0.0668,0.21888 -0.0848,0.21166 -0.099,0.20686 -0.11937,0.19965 -0.13488,0.19241 -0.15279,0.18521 -0.16713,0.17439 z m -4.2842,1.7186 0.99555,-0.1852 -0.68877,-0.37884 0.10625,-0.0444 0.10861,-0.0445 0.10744,-0.0444 0.10625,-0.0445 0.10981,-0.0458 0.10744,-0.0458 0.10624,-0.0444 0.10503,-0.047 0.10863,-0.0481 0.10743,-0.0481 0.10505,-0.0493 0.10862,-0.0505 0.10506,-0.0505 0.10503,-0.053 0.10505,-0.053 0.10265,-0.0542 0.10506,-0.0577 0.10147,-0.0565 0.10384,-0.0601 0.10266,-0.0602 0.10148,-0.0625 0.10025,-0.0637 0.10025,-0.0673 0.0978,-0.0673 0.0967,-0.0697 0.0978,-0.0721 0.0967,-0.0758 0.0967,-0.077 0.092,-0.077 0.0942,-0.083 0.0931,-0.0842 0.0908,-0.0866 0.70189,0.73362 -0.10742,0.10106 -0.10743,0.0985 -0.10863,0.095 -0.11103,0.0937 -0.11101,0.089 -0.111,0.0854 -0.11221,0.0842 -0.1134,0.0818 -0.11461,0.077 -0.11219,0.0746 -0.11461,0.0734 -0.11578,0.0722 -0.1146,0.0673 -0.1134,0.0673 -0.11578,0.0637 -0.1146,0.0625 -0.11699,0.0613 -0.11459,0.0577 -0.1146,0.0577 -0.11698,0.0553 -0.11101,0.053 -0.1146,0.0541 -0.11459,0.0505 -0.11101,0.0505 -0.1146,0.0493 -0.1134,0.0493 -0.11221,0.0458 -0.10743,0.0458 -0.11102,0.047 -0.10982,0.0446 -0.10623,0.0445 -0.10863,0.0444 -0.68877,-0.37884 z m 0.68877,0.37885 -0.57656,0.23691 -0.11221,-0.61576 0.68877,0.37885 z m -0.63267,-2.9513 1.0003,0.15633 -0.0143,0.0902 -0.0131,0.0914 -0.0119,0.0866 -0.0107,0.0878 -0.0119,0.0853 -0.008,0.0818 -0.009,0.0842 -0.007,0.0794 -0.007,0.0806 -0.007,0.0795 -0.005,0.0746 -0.005,0.0782 -0.005,0.0746 -0.004,0.0697 -0.002,0.0733 -0.002,0.0709 0,0.071 -0.001,0.0649 0.001,0.0625 10e-4,0.0709 0,0.0649 0.002,0.059 0.004,0.0613 0.004,0.0613 0.004,0.0542 0.006,0.0589 0.005,0.0565 0.006,0.0505 0.007,0.0541 0.008,0.053 0.008,0.0517 0.008,0.0481 -0.99554,0.1852 -0.0107,-0.0649 -0.0107,-0.0661 -0.008,-0.0649 -0.009,-0.0662 -0.008,-0.0721 -0.007,-0.0685 -0.006,-0.0685 -0.006,-0.0758 -0.004,-0.071 -0.004,-0.0709 -0.002,-0.0782 -0.002,-0.0746 -10e-4,-0.0709 -0.001,-0.0795 0.001,-0.0818 0.002,-0.0782 0.002,-0.0782 0.002,-0.0806 0.004,-0.0865 0.005,-0.0818 0.005,-0.083 0.007,-0.089 0.007,-0.0866 0.007,-0.0854 0.009,-0.0914 0.009,-0.089 0.0107,-0.0938 0.0119,-0.0925 0.0107,-0.0925 0.0144,-0.0962 0.0131,-0.0962 0.0144,-0.0974 z m -0.34855,-3.1161 0.795,-0.62779 0.074,0.0998 0.0668,0.10096 0.0645,0.10462 0.0597,0.11064 0.0537,0.10945 0.049,0.11064 0.0454,0.11546 0.0417,0.11665 0.0357,0.11665 0.0323,0.11667 0.031,0.12026 0.0263,0.12508 0.0216,0.12027 0.0191,0.12267 0.0167,0.12626 0.0131,0.12509 0.009,0.12507 0.008,0.12749 0.005,0.12748 0.004,0.12988 0,0.12628 -10e-4,0.12748 -0.005,0.13229 -0.006,0.12869 -0.007,0.12989 -0.0107,0.13228 -0.0119,0.12749 -0.0131,0.12747 -0.0156,0.13109 -0.0156,0.12989 -0.0191,0.12868 -0.0179,0.12748 -1.0003,-0.15634 0.0179,-0.11785 0.0167,-0.11907 0.0156,-0.11546 0.0131,-0.11666 0.0107,-0.11785 0.0119,-0.11786 0.008,-0.11305 0.007,-0.11545 0.006,-0.11427 0.002,-0.11064 0.001,-0.11304 0,-0.11184 -0.001,-0.10825 -0.005,-0.10583 -0.006,-0.10584 -0.009,-0.10342 -0.0107,-0.10343 -0.0119,-0.0974 -0.0167,-0.0985 -0.0167,-0.0962 -0.0191,-0.089 -0.0216,-0.089 -0.025,-0.0902 -0.0263,-0.083 -0.0275,-0.0806 -0.031,-0.077 -0.0347,-0.077 -0.0346,-0.0735 -0.0358,-0.0649 -0.0406,-0.0661 -0.043,-0.0649 -0.043,-0.059 z m -2.2465,-1.252 0.53717,-0.8635 -10e-4,0 0.13847,0.0853 0.12892,0.077 0.12295,0.0721 0.11937,0.0673 0.10743,0.059 0.10385,0.0541 0.099,0.0505 0.0931,0.0458 0.0871,0.0421 0.0836,0.0385 0.0764,0.0337 0.0764,0.0325 0.0752,0.0325 0.0668,0.0277 0.0657,0.0265 0.0668,0.0277 0.0645,0.0265 0.0609,0.0265 0.0633,0.0277 0.0657,0.0312 0.0621,0.03 0.0692,0.0372 0.0609,0.036 0.0645,0.0385 0.0645,0.047 0.0597,0.0433 0.0657,0.0553 0.0609,0.0553 0.0597,0.059 0.0609,0.0662 0.0561,0.0649 0.0561,0.0709 -0.79502,0.62779 -0.0369,-0.0444 -0.0346,-0.0409 -0.0298,-0.0325 -0.031,-0.03 -0.0275,-0.0265 -0.025,-0.0193 -0.031,-0.024 -0.0263,-0.0181 -0.031,-0.0193 -0.0346,-0.0217 -0.031,-0.0157 -0.0406,-0.0205 -0.0417,-0.0193 -0.049,-0.0205 -0.0561,-0.024 -0.0573,-0.0241 -0.0621,-0.0253 -0.0704,-0.0288 -0.0764,-0.0325 -0.0752,-0.0325 -0.0836,-0.0348 -0.0908,-0.0409 -0.0931,-0.0433 -0.10147,-0.047 -0.10505,-0.053 -0.10863,-0.0553 -0.11816,-0.0613 -0.12416,-0.0685 -0.12653,-0.0722 -0.13488,-0.077 -0.14324,-0.0865 -0.14802,-0.0925 -10e-4,0 z m 0.001,0 -0.001,0 -0.45361,-0.28623 0.45481,0.28623 z m -2.4483,-2.4101 0.86185,-0.53158 0,-0.001 0.0442,0.0721 0.0466,0.0722 0.0454,0.0685 0.0489,0.0698 0.049,0.0697 0.0514,0.0697 0.0549,0.0722 0.0525,0.0673 0.0549,0.0685 0.0561,0.0673 0.0573,0.0662 0.0609,0.0685 0.0621,0.0673 0.0633,0.0673 0.0645,0.0673 0.0645,0.0649 0.0657,0.0637 0.0692,0.0662 0.0704,0.0649 0.0692,0.0613 0.074,0.0637 0.0764,0.0649 0.0752,0.0625 0.074,0.0602 0.08,0.0613 0.0811,0.0613 0.0811,0.059 0.0823,0.0602 0.0847,0.0577 0.0859,0.059 0.0871,0.0577 0.0896,0.0565 -0.53716,0.86352 -0.099,-0.0637 -0.099,-0.0649 -0.0955,-0.0637 -0.0967,-0.0673 -0.0942,-0.0673 -0.0931,-0.0685 -0.0883,-0.0685 -0.0896,-0.0685 -0.0908,-0.0721 -0.0871,-0.0722 -0.0811,-0.0697 -0.0836,-0.0709 -0.0836,-0.0758 -0.08,-0.0746 -0.0788,-0.0733 -0.0777,-0.0758 -0.0764,-0.077 -0.074,-0.077 -0.0728,-0.077 -0.0692,-0.077 -0.0704,-0.0782 -0.0692,-0.0806 -0.0657,-0.0794 -0.0668,-0.0806 -0.0645,-0.0842 -0.0597,-0.0795 -0.0609,-0.0818 -0.0585,-0.0818 -0.0585,-0.0842 -0.0573,-0.0878 -0.0513,-0.0818 -0.0536,-0.0842 0,-0.001 z m 0,10e-4 0,-10e-4 0.31155,0.51232 -0.31155,-0.51112 z m -0.30678,-2.902 1.0122,0 -0.001,0.0914 -0.002,0.0914 -0.004,0.0962 -0.005,0.0914 -0.006,0.0878 -0.006,0.0842 -0.006,0.0842 -0.007,0.0878 -0.007,0.0878 -0.007,0.0795 -0.005,0.0806 -0.006,0.0795 -0.005,0.077 -0.004,0.0795 -0.004,0.0758 0,0.0758 -0.001,0.0722 0.001,0.0721 0.002,0.0697 0.005,0.0673 0.006,0.0673 0.009,0.0662 0.009,0.0673 0.0107,0.0577 0.0156,0.0637 0.0167,0.0637 0.0167,0.0565 0.0227,0.059 0.025,0.0613 0.0275,0.059 0.0298,0.0589 0.0335,0.0577 -0.86184,0.53158 -0.0573,-0.0985 -0.0513,-0.0997 -0.0466,-0.0997 -0.0394,-0.0974 -0.037,-0.0997 -0.0335,-0.10463 -0.0263,-0.0974 -0.0226,-0.0974 -0.0204,-0.10343 -0.0143,-0.0962 -0.0119,-0.0974 -0.008,-0.0962 -0.007,-0.0962 -0.002,-0.0938 -0.004,-0.0937 0.001,-0.0938 0.002,-0.0902 0.004,-0.0902 0.004,-0.0865 0.005,-0.0914 0.006,-0.0866 0.007,-0.0878 0.007,-0.0866 0.007,-0.0806 0.005,-0.0806 0.006,-0.0842 0.006,-0.0842 0.006,-0.0806 0.005,-0.077 0.004,-0.0746 0,-0.077 0.001,-0.077 z m 0.30678,-2.9008 0.86185,0.53159 0,0.001 -0.0335,0.0565 -0.0298,0.0589 -0.0286,0.0625 -0.025,0.0577 -0.0204,0.0565 -0.0179,0.059 -0.0167,0.0637 -0.0156,0.0637 -0.0119,0.0613 -0.009,0.0637 -0.008,0.0662 -0.007,0.0673 -0.004,0.0673 -0.004,0.0697 0,0.0721 0,0.0721 10e-4,0.0758 0.002,0.0758 0.005,0.0758 0.005,0.0806 0.006,0.0794 0.005,0.0806 0.007,0.083 0.006,0.0842 0.007,0.0842 0.007,0.0878 0.006,0.0842 0.006,0.0878 0.005,0.095 0.002,0.0926 0.004,0.0878 10e-4,0.095 -1.0123,0 -0.001,-0.0735 -10e-4,-0.0806 -0.002,-0.0782 -0.005,-0.0734 -0.006,-0.0806 -0.006,-0.0842 -0.005,-0.0806 -0.007,-0.0842 -0.006,-0.0842 -0.007,-0.083 -0.007,-0.0878 -0.006,-0.0865 -0.005,-0.0878 -0.005,-0.0902 -0.002,-0.0902 -0.004,-0.0902 0,-0.0937 0.002,-0.0938 0.004,-0.0938 0.006,-0.0962 0.009,-0.0962 0.0107,-0.0974 0.0167,-0.0997 0.0191,-0.0998 0.0226,-0.0974 0.0263,-0.0974 0.0323,-0.10223 0.0369,-0.10221 0.0417,-0.10097 0.0454,-0.0962 0.0513,-0.0998 0.0573,-0.0997 0,0.001 z m 2.4471,-2.4101 0.53716,0.8635 -0.001,0 -0.0883,0.0565 -0.0871,0.0577 -0.0859,0.0589 -0.0847,0.0577 -0.0823,0.0602 -0.0811,0.059 -0.0811,0.0613 -0.0799,0.0613 -0.0764,0.0613 -0.0752,0.0613 -0.0728,0.0625 -0.074,0.0637 -0.0716,0.0649 -0.0704,0.0649 -0.068,0.0637 -0.0656,0.0637 -0.0645,0.0649 -0.0644,0.0673 -0.0633,0.0673 -0.0621,0.0673 -0.0609,0.0685 -0.0561,0.0649 -0.0561,0.0685 -0.0573,0.071 -0.0525,0.0673 -0.0536,0.0697 -0.0501,0.0685 -0.049,0.0709 -0.0514,0.0721 -0.0442,0.0662 -0.0454,0.0721 -0.0454,0.0721 -0.86185,-0.53158 0.0525,-0.0842 0.0525,-0.0842 0.0585,-0.0878 0.0561,-0.0818 0.0585,-0.083 0.0621,-0.083 0.0609,-0.0818 0.0645,-0.0818 0.0645,-0.0782 0.0657,-0.0806 0.0704,-0.0818 0.0704,-0.0782 0.0692,-0.077 0.0728,-0.077 0.074,-0.077 0.0764,-0.077 0.0777,-0.0758 0.08,-0.0758 0.08,-0.0721 0.0811,-0.0722 0.0836,-0.0733 0.0848,-0.0721 0.0871,-0.0709 0.0883,-0.071 0.0896,-0.0685 0.0883,-0.0685 0.0931,-0.0685 0.0942,-0.0673 0.0967,-0.0673 0.0955,-0.0637 0.099,-0.0649 0.10025,-0.0637 -0.001,0 z m 2.2465,-1.2532 0.79502,0.62777 -0.0561,0.0709 -0.0561,0.0649 -0.0609,0.0662 -0.0598,0.059 -0.0609,0.0553 -0.0656,0.0553 -0.0596,0.0433 -0.0645,0.047 -0.0645,0.0385 -0.0609,0.036 -0.0692,0.0372 -0.0621,0.03 -0.0656,0.0312 -0.0633,0.0277 -0.0609,0.0265 -0.0645,0.0265 -0.0633,0.0253 -0.0692,0.03 -0.0704,0.0277 -0.0716,0.0312 -0.074,0.0312 -0.0764,0.0348 -0.0859,0.0397 -0.0896,0.0432 -0.0919,0.0445 -0.0967,0.0481 -0.10385,0.0553 -0.11102,0.0613 -0.11698,0.0649 -0.12176,0.0721 -0.13011,0.0782 -0.13728,0.0854 -0.53715,-0.86349 0.1492,-0.0925 0.14205,-0.0854 0.13608,-0.0794 0.12892,-0.0721 0.12057,-0.0661 0.11817,-0.0625 0.11101,-0.0577 0.10625,-0.0517 0.099,-0.0458 0.0908,-0.042 0.0908,-0.042 0.0859,-0.036 0.0789,-0.0337 0.0728,-0.03 0.0668,-0.0277 0.0657,-0.0277 0.0573,-0.0241 0.0561,-0.024 0.049,-0.0205 0.0417,-0.0193 0.0406,-0.0205 0.031,-0.0157 0.0346,-0.0217 0.031,-0.0193 0.0263,-0.0181 0.031,-0.024 0.025,-0.0193 0.0275,-0.0265 0.031,-0.03 0.0298,-0.0325 0.0346,-0.0409 0.0371,-0.0446 z m 0.34856,-3.1161 1.0003,-0.15634 0.0179,0.12748 0.0191,0.12869 0.0156,0.12988 0.0155,0.13109 0.0131,0.12749 0.0119,0.12747 0.0107,0.13229 0.007,0.12989 0.006,0.12868 0.005,0.13229 10e-4,0.12749 0,0.12627 -0.004,0.12988 -0.005,0.12749 -0.008,0.12748 -0.009,0.12507 -0.0131,0.12508 -0.0167,0.12628 -0.0191,0.12267 -0.0215,0.12027 -0.0263,0.12507 -0.031,0.12026 -0.0323,0.11666 -0.0358,0.11667 -0.0417,0.11665 -0.0454,0.11546 -0.049,0.11064 -0.0537,0.10943 -0.0597,0.11065 -0.0645,0.10464 -0.0668,0.10096 -0.074,0.0997 -0.79502,-0.62777 0.043,-0.059 0.043,-0.0649 0.0406,-0.0662 0.0357,-0.0649 0.0346,-0.0734 0.0347,-0.077 0.031,-0.077 0.0275,-0.0806 0.0263,-0.083 0.025,-0.0902 0.0216,-0.089 0.0191,-0.089 0.0167,-0.0962 0.0167,-0.0986 0.0119,-0.0974 0.0107,-0.10343 0.009,-0.10343 0.006,-0.10583 0.005,-0.10583 10e-4,-0.10824 0,-0.11186 -10e-4,-0.11304 -0.002,-0.11064 -0.006,-0.11426 -0.007,-0.11545 -0.008,-0.11305 -0.0119,-0.11785 -0.0107,-0.11786 -0.0131,-0.11666 -0.0156,-0.11546 -0.0167,-0.11905 -0.0179,-0.11787 z m 0.44167,-1.9711 0,-1.0198 0.49778,0.60253 -0.008,0.0481 -0.008,0.0517 -0.008,0.053 -0.007,0.0541 -0.006,0.0505 -0.005,0.0565 -0.006,0.059 -0.004,0.0541 -0.004,0.0613 -0.004,0.0625 -0.002,0.0577 0,0.0649 -10e-4,0.0709 -0.001,0.0637 0.001,0.0637 0,0.0709 0.002,0.0722 0.002,0.0721 0.004,0.0697 0.005,0.077 0.005,0.077 0.005,0.0746 0.007,0.0782 0.007,0.0818 0.007,0.0794 0.009,0.0842 0.008,0.0818 0.0119,0.0854 0.0107,0.0878 0.0119,0.0866 0.0131,0.0914 0.0144,0.0902 -1.0003,0.15635 -0.0144,-0.0974 -0.0131,-0.0962 -0.0144,-0.0962 -0.0107,-0.0925 -0.0119,-0.0925 -0.0107,-0.0937 -0.009,-0.089 -0.009,-0.0914 -0.007,-0.0865 -0.007,-0.0854 -0.007,-0.089 -0.005,-0.0842 -0.005,-0.0818 -0.004,-0.0842 -0.002,-0.0818 -0.002,-0.0793 -0.002,-0.0782 -10e-4,-0.0806 10e-4,-0.0806 0.001,-0.071 0.002,-0.0746 0.002,-0.077 0.004,-0.0722 0.004,-0.0709 0.006,-0.0758 0.006,-0.0685 0.007,-0.0685 0.008,-0.0721 0.009,-0.0662 0.008,-0.0649 0.0107,-0.0661 0.0107,-0.0649 0.49776,0.60253 z m 0,-1.0198 0.6076,0 -0.10982,0.60253 -0.49778,-0.60253 z m -0.001,0 0.001,0 0,1.0198 -0.001,0 -0.191,-0.0384 0.191,-0.98136 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path245" + d="m 361,226.26 0.67683,-0.29225 c -1.5399,-2.1515 -1.8729,-4.2081 -1.2832,-6.2658 -1.3119,1.6356 -0.99195,4.2117 0.6064,6.558 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path247" + d="m 410.74,199.91 c 1.3286,1.6861 1.1686,2.0902 1.8896,2.5737 0.94064,0.62418 2.2167,0.4065 3.4008,-0.0458 4.8583,-1.8593 4.8607,2.0048 3.4486,6.4282 -0.68399,2.1455 -2.7562,4.4714 -3.6802,6.2959 -0.90841,1.7871 -0.71265,3.1257 -1.1197,3.5827 -1.7619,0.29225 -3.2755,0.50632 -3.9643,0.5857 h -0.005 c -0.67444,0.10822 -2.1749,0.30186 -3.907,0.48826 -0.56701,-0.3235 -1.0051,-1.5935 -2.6118,-2.9874 -1.6127,-1.4011 -4.4024,-2.9176 -5.9028,-4.6302 -3.0439,-3.4732 -4.6626,-6.8106 0.12413,-6.694 1.1913,0.03 2.3826,-0.18761 2.9162,-1.0439 0.42256,-0.66868 0.10505,-0.97174 0.51568,-2.9285 0.26857,-1.2832 0.73889,-2.3067 1.3429,-3.0427 0.61355,-0.74924 1.5088,-0.58449 2.3337,-0.73843 0.832,-0.15635 1.5888,-0.64703 2.508,-0.18159 0.91794,0.46542 1.8454,1.2375 2.7109,2.3367 v 0.001 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path249" + d="m 412.91,202.06 -0.55627,0.85147 -0.002,-0.001 -0.0789,-0.0553 -0.0728,-0.0542 -0.0704,-0.0565 -0.068,-0.059 -0.0656,-0.0613 -0.0585,-0.0602 -0.0548,-0.0602 -0.0549,-0.0649 -0.049,-0.0637 -0.0477,-0.0637 -0.0454,-0.0662 -0.0429,-0.0649 -0.043,-0.0685 -0.0394,-0.0673 -0.0382,-0.0637 -0.0442,-0.0746 -0.0406,-0.0721 -0.0417,-0.071 -0.0477,-0.0806 -0.0466,-0.0806 -0.0514,-0.0842 -0.0549,-0.089 -0.0585,-0.0938 -0.0633,-0.0986 -0.068,-0.10343 -0.074,-0.11064 -0.0789,-0.11546 -0.0859,-0.12147 -0.0931,-0.12868 -0.10147,-0.1347 -0.10863,-0.14311 -0.11698,-0.15034 0.79261,-0.63259 0.12415,0.15755 0.11579,0.15274 0.10623,0.14432 0.10026,0.13829 0.0931,0.1311 0.0883,0.12748 0.0788,0.11786 0.0752,0.11304 0.068,0.10824 0.0657,0.10343 0.0573,0.0962 0.0561,0.0914 0.0513,0.0878 0.0454,0.0782 0.0466,0.0782 0.0406,0.0721 0.0371,0.0625 0.0382,0.0637 0.0347,0.0577 0.031,0.0493 0.031,0.0482 0.0286,0.042 0.0286,0.0397 0.0298,0.0372 0.0286,0.0337 0.031,0.0337 0.0323,0.0337 0.0323,0.03 0.0369,0.0325 0.0417,0.0325 0.0466,0.0348 0.0525,0.036 -0.002,-0.001 z m -0.55627,0.85147 -0.002,-0.001 -0.0549,-0.036 0.0573,0.0372 z m 3.4999,-0.94769 0.35811,0.9525 -0.11698,0.0444 -0.12057,0.042 -0.11579,0.0409 -0.11936,0.0397 -0.12057,0.0372 -0.12295,0.036 -0.11937,0.0325 -0.12056,0.0312 -0.12415,0.03 -0.12414,0.0253 -0.12176,0.024 -0.12176,0.0205 -0.12413,0.0193 -0.12416,0.0145 -0.12175,0.012 -0.12535,0.009 -0.12294,0.004 -0.12175,0.004 -0.12654,-0.004 -0.12176,-0.006 -0.12295,-0.0108 -0.12533,-0.0156 -0.12057,-0.0193 -0.12296,-0.0253 -0.12175,-0.03 -0.11699,-0.0337 -0.11817,-0.0397 -0.12056,-0.0458 -0.11698,-0.053 -0.11221,-0.0565 -0.11221,-0.0625 -0.11102,-0.0697 0.55628,-0.85148 0.068,0.0433 0.0692,0.0385 0.074,0.0372 0.0716,0.0312 0.0728,0.0288 0.0777,0.0253 0.0811,0.024 0.0788,0.0205 0.0823,0.0157 0.0848,0.0145 0.0848,0.0108 0.0871,0.006 0.0931,0.006 0.0883,0.001 0.0931,-0.001 0.0967,-0.004 0.0943,-0.007 0.10025,-0.009 0.0979,-0.012 0.0978,-0.0145 0.10266,-0.0181 0.10265,-0.0193 0.10267,-0.0228 0.10025,-0.0228 0.10624,-0.0288 0.10505,-0.0277 0.10384,-0.0312 0.10386,-0.0325 0.10504,-0.0348 0.10863,-0.036 0.10385,-0.0372 0.10504,-0.0397 z m 4.1087,7.0608 -0.96212,-0.31269 0.12533,-0.4041 0.11698,-0.40047 0.10624,-0.39448 0.0967,-0.38605 0.0871,-0.38004 0.074,-0.36921 0.0633,-0.35959 0.0502,-0.34635 0.0369,-0.33435 0.0238,-0.3223 0.009,-0.30547 -0.004,-0.28865 -0.0191,-0.26939 -0.0323,-0.25256 -0.0454,-0.2285 -0.0609,-0.20926 -0.0717,-0.18401 -0.0836,-0.16355 -0.0955,-0.14192 -0.10386,-0.12027 -0.11818,-0.10341 -0.13249,-0.0866 -0.15279,-0.0734 -0.17548,-0.0553 -0.20412,-0.0397 -0.23397,-0.0205 -0.26141,0.004 -0.29365,0.03 -0.32588,0.0565 -0.35691,0.0865 -0.38796,0.11666 -0.42019,0.15033 -0.3581,-0.9525 0.46316,-0.16476 0.43808,-0.13349 0.4166,-0.10096 0.39272,-0.0685 0.37483,-0.0372 0.35453,-0.004 0.33423,0.0277 0.31633,0.0613 0.29723,0.0962 0.27454,0.13109 0.24948,0.16355 0.22323,0.19484 0.19219,0.22129 0.16234,0.24294 0.13608,0.26217 0.10743,0.27781 0.0848,0.29345 0.0621,0.30547 0.0417,0.3175 0.0215,0.32953 0.006,0.33915 -0.0119,0.35117 -0.0263,0.3608 -0.0417,0.37041 -0.0548,0.38004 -0.068,0.38605 -0.0788,0.39568 -0.0919,0.40167 -0.10147,0.40771 -0.11339,0.41371 -0.12176,0.41732 -0.13011,0.42093 z m -3.7112,6.3716 -0.90005,-0.46422 0.0942,-0.18159 0.10147,-0.18401 0.10623,-0.18641 0.11102,-0.18641 0.11578,-0.18882 0.12058,-0.19122 0.12295,-0.19002 0.12534,-0.19242 0.12772,-0.19363 0.1313,-0.19604 0.1325,-0.19483 0.1337,-0.19843 0.13369,-0.19723 0.13489,-0.19964 0.13607,-0.19965 0.13252,-0.19843 0.13249,-0.20084 0.1325,-0.20205 0.12892,-0.19844 0.12773,-0.20203 0.12295,-0.19965 0.12175,-0.20084 0.11579,-0.19844 0.1122,-0.19964 0.10863,-0.19844 0.10266,-0.19483 0.0967,-0.19604 0.0919,-0.19482 0.0836,-0.19122 0.0777,-0.19123 0.0704,-0.1876 0.0633,-0.18521 0.96211,0.31269 -0.0728,0.21888 -0.0823,0.21648 -0.0871,0.21528 -0.0955,0.21768 -0.10147,0.21406 -0.10623,0.21528 -0.11221,0.21407 -0.1158,0.21287 -0.11936,0.21166 -0.12535,0.21288 -0.12652,0.21045 -0.13011,0.20926 -0.13251,0.20927 -0.13369,0.20806 -0.13489,0.20445 -0.13489,0.20565 -0.13728,0.20325 -0.13608,0.20204 -0.13488,0.19965 -0.1337,0.19723 -0.13368,0.19604 -0.13011,0.19482 -0.12892,0.19122 -0.12535,0.18881 -0.12295,0.18763 -0.11817,0.18279 -0.11341,0.1816 -0.10862,0.17679 -0.10386,0.17438 -0.0967,0.16959 -0.092,0.16715 -0.0847,0.16236 z m -1.4873,3.8533 -0.16473,-1.0054 -0.29365,0.16236 0.004,-0.005 0.008,-0.0145 0.0143,-0.024 0.0119,-0.0265 0.0156,-0.0397 0.0167,-0.0505 0.0155,-0.0565 0.0179,-0.0685 0.0179,-0.0721 0.0156,-0.0794 0.0179,-0.0878 0.0167,-0.0902 0.0179,-0.0997 0.0191,-0.10825 0.0204,-0.10822 0.0216,-0.11546 0.0238,-0.12387 0.025,-0.12509 0.0275,-0.12868 0.0298,-0.13589 0.0335,-0.1383 0.0369,-0.14432 0.0394,-0.14674 0.0429,-0.15032 0.0489,-0.15634 0.0536,-0.16115 0.0585,-0.15996 0.0621,-0.16476 0.0692,-0.16958 0.0752,-0.17077 0.08,-0.1756 0.0884,-0.17679 0.90003,0.46423 -0.0764,0.15515 -0.0704,0.15153 -0.0657,0.15153 -0.0597,0.14552 -0.0549,0.14552 -0.0514,0.14312 -0.0466,0.1371 -0.0417,0.13469 -0.0382,0.13351 -0.0371,0.13228 -0.0323,0.12748 -0.0286,0.12388 -0.0275,0.12147 -0.025,0.12146 -0.025,0.11786 -0.0216,0.10944 -0.0191,0.11305 -0.0204,0.10823 -0.0191,0.10344 -0.0179,0.10222 -0.0191,0.10463 -0.0204,0.0974 -0.0204,0.0962 -0.0226,0.0962 -0.0227,0.0902 -0.0275,0.0926 -0.031,0.0914 -0.0346,0.0902 -0.0429,0.0938 -0.0477,0.0865 -0.0561,0.0865 -0.0704,0.0866 -0.29365,0.16236 z m 0.29365,-0.16236 -0.11937,0.13349 -0.17428,0.0288 0.29365,-0.16236 z m -4.3403,0.75525 0,-1.0198 -0.0573,0.004 0.0633,-0.008 0.0752,-0.008 0.0728,-0.008 0.0777,-0.009 0.0836,-0.0108 0.0896,-0.012 0.0943,-0.012 0.0979,-0.0132 0.10025,-0.0132 0.10385,-0.0145 0.10744,-0.0156 0.11339,-0.0156 0.11698,-0.0156 0.11938,-0.0168 0.12295,-0.0181 0.12653,-0.0181 0.12892,-0.0193 0.13369,-0.0193 0.13131,-0.0205 0.14205,-0.0217 0.13965,-0.0205 0.14325,-0.0228 0.14683,-0.0217 0.14802,-0.024 0.15159,-0.0228 0.15161,-0.0228 0.15398,-0.0253 0.15876,-0.0253 0.15876,-0.0253 0.15996,-0.0265 0.16115,-0.0265 0.16473,-0.0277 0.16473,1.0054 -0.16473,0.0277 -0.16354,0.0265 -0.16234,0.0265 -0.16116,0.0253 -0.15636,0.0253 -0.15638,0.0253 -0.15637,0.0253 -0.14921,0.0228 -0.15041,0.0241 -0.14683,0.0217 -0.14563,0.0228 -0.14205,0.0205 -0.13727,0.0217 -0.13846,0.0205 -0.13371,0.0193 -0.1313,0.0193 -0.12652,0.0181 -0.12296,0.0181 -0.12176,0.0168 -0.11698,0.0181 -0.1134,0.0157 -0.10982,0.0157 -0.10862,0.0145 -0.10267,0.0132 -0.0979,0.0133 -0.0942,0.012 -0.0896,0.012 -0.0859,0.0108 -0.0848,0.012 -0.08,0.008 -0.068,0.008 -0.0704,0.008 -0.0573,0.004 z m 0.0573,-0.004 -0.031,0.004 -0.0263,0 0.0573,-0.004 z m 0.0179,-0.004 -0.15997,-1.0054 0.08,0.5027 0,-0.50992 0.001,0 10e-4,0 0.001,0 10e-4,0 0,1.0198 -10e-4,0 -0.001,0 -10e-4,0 -0.001,0 0,-0.50993 0.08,0.50271 z m -0.15997,-1.0054 0.0454,-0.007 0.0346,0 -0.08,0.007 z m -4.0765,1.4348 0.49897,-0.88756 -0.30321,-0.0625 0.16116,-0.0181 0.15995,-0.0168 0.15876,-0.0181 0.15518,-0.0169 0.15518,-0.0181 0.1516,-0.0168 0.1516,-0.0181 0.14921,-0.0169 0.14444,-0.0168 0.14324,-0.0181 0.14324,-0.0169 0.13848,-0.0168 0.13847,-0.0168 0.13249,-0.0145 0.13011,-0.0168 0.12773,-0.0156 0.12295,-0.0169 0.12534,-0.0156 0.11579,-0.0145 0.11459,-0.0156 0.11102,-0.0145 0.10624,-0.0144 0.10504,-0.0145 0.0979,-0.0133 0.0967,-0.0144 0.0919,-0.012 0.0848,-0.012 0.0848,-0.012 0.0777,-0.012 0.0752,-0.0108 0.0657,-0.009 0.0645,-0.0108 0.15996,1.0054 -0.0668,0.0108 -0.0752,0.0121 -0.0752,0.0108 -0.08,0.012 -0.0848,0.0121 -0.092,0.0144 -0.0919,0.012 -0.0967,0.0145 -0.10266,0.0132 -0.10266,0.0145 -0.11101,0.0145 -0.11102,0.0145 -0.11698,0.0157 -0.12057,0.0145 -0.11816,0.0157 -0.12774,0.0168 -0.13011,0.0156 -0.13249,0.0168 -0.1349,0.0168 -0.13608,0.0169 -0.14085,0.0168 -0.14086,0.0168 -0.14563,0.0181 -0.14921,0.0168 -0.14922,0.0168 -0.1516,0.0181 -0.15399,0.0169 -0.15517,0.0181 -0.15757,0.0168 -0.15876,0.0181 -0.16233,0.0169 -0.16116,0.0181 -0.30319,-0.0625 z m 0.3032,0.0625 -0.16235,0.0181 -0.14085,-0.0806 0.3032,0.0625 z m -2.9962,-3.1076 0.66131,-0.77211 -0.001,0 0.15518,0.13711 0.14802,0.1359 0.14085,0.1347 0.13489,0.13349 0.12892,0.13349 0.12295,0.13109 0.11579,0.12748 0.11102,0.12629 0.10862,0.12747 0.10025,0.12388 0.0931,0.11665 0.0931,0.11786 0.0896,0.11786 0.08,0.10824 0.0777,0.10584 0.0764,0.10582 0.0704,0.0985 0.068,0.095 0.0656,0.0925 0.0621,0.0878 0.0573,0.0818 0.0548,0.0746 0.0537,0.0709 0.0513,0.0685 0.0454,0.0565 0.043,0.0505 0.0417,0.0481 0.0369,0.0372 0.0335,0.0313 0.0263,0.0228 0.025,0.0168 0.0204,0.0132 -0.49896,0.88755 -0.0848,-0.0541 -0.0799,-0.0577 -0.0788,-0.0662 -0.0692,-0.0649 -0.068,-0.0709 -0.0633,-0.0697 -0.0645,-0.0746 -0.0621,-0.0806 -0.0585,-0.0758 -0.0609,-0.0806 -0.0621,-0.0866 -0.0621,-0.0865 -0.0621,-0.0878 -0.0633,-0.0902 -0.068,-0.095 -0.068,-0.0962 -0.0717,-0.0985 -0.0752,-0.10097 -0.0777,-0.10584 -0.0777,-0.10342 -0.0836,-0.10583 -0.0908,-0.11185 -0.0908,-0.11185 -0.0942,-0.11064 -0.10147,-0.11425 -0.10624,-0.11786 -0.11101,-0.11906 -0.1146,-0.11907 -0.12057,-0.11906 -0.12891,-0.12267 -0.1337,-0.12388 -0.13846,-0.12267 -10e-4,0 z m -5.9518,-4.6795 0.75919,-0.67347 0.13369,0.14911 0.14324,0.14914 0.14802,0.14793 0.15757,0.15033 0.16235,0.14913 0.16831,0.14793 0.17427,0.14792 0.17906,0.14673 0.18383,0.14792 0.18741,0.14672 0.191,0.14673 0.19457,0.14551 0.19577,0.14433 0.19934,0.14552 0.20054,0.14311 0.20173,0.14431 0.20173,0.14192 0.20294,0.14191 0.20292,0.14191 0.20293,0.14071 0.20055,0.14072 0.19934,0.1407 0.19696,0.13831 0.19576,0.1395 0.19218,0.13831 0.191,0.13831 0.18502,0.13829 0.18144,0.13711 0.17787,0.13831 0.17308,0.1359 0.16831,0.1395 0.16115,0.13711 -0.66131,0.7721 -0.14682,-0.12747 -0.15399,-0.12509 -0.16115,-0.12869 -0.1683,-0.13108 -0.17429,-0.12988 -0.17786,-0.1335 -0.18383,-0.1335 -0.18741,-0.13589 -0.19098,-0.1347 -0.19458,-0.1383 -0.19935,-0.13831 -0.20053,-0.14071 -0.20056,-0.14071 -0.20292,-0.14192 -0.20531,-0.1419 -0.20652,-0.14672 -0.20412,-0.14432 -0.20531,-0.14793 -0.20412,-0.14793 -0.20293,-0.14912 -0.20174,-0.15274 -0.19815,-0.15153 -0.19695,-0.15394 -0.19339,-0.15516 -0.191,-0.15634 -0.18621,-0.15995 -0.18264,-0.15995 -0.17665,-0.16355 -0.1719,-0.16236 -0.16711,-0.16717 -0.15996,-0.16838 -0.15519,-0.17078 z m 0.51687,-7.5394 -0.0263,1.0175 10e-4,0 -0.40705,-0.001 -0.36646,0.0181 -0.32826,0.0348 -0.2865,0.0505 -0.24829,0.0625 -0.2077,0.0746 -0.17308,0.083 -0.13967,0.089 -0.10743,0.0914 -0.0823,0.0938 -0.0621,0.0998 -0.0454,0.11064 -0.0335,0.12628 -0.0167,0.14191 -10e-4,0.16117 0.0191,0.18039 0.0382,0.19845 0.0585,0.21526 0.08,0.22971 0.10025,0.24414 0.11938,0.25615 0.13609,0.2646 0.15756,0.2742 0.17427,0.28502 0.18862,0.29105 0.20412,0.29826 0.21964,0.30186 0.23277,0.30788 0.2447,0.31148 0.25665,0.3151 0.2674,0.3187 0.27573,0.31991 -0.75919,0.67347 -0.28529,-0.32951 -0.27694,-0.33073 -0.26619,-0.32712 -0.25665,-0.32593 -0.24471,-0.32471 -0.23157,-0.3211 -0.21845,-0.31751 -0.20531,-0.31509 -0.18861,-0.30909 -0.17428,-0.30547 -0.15757,-0.30306 -0.13846,-0.29706 -0.11938,-0.29224 -0.099,-0.28984 -0.0776,-0.28503 -0.0549,-0.28022 -0.0286,-0.27901 0.001,-0.27661 0.0335,-0.2718 0.0692,-0.26338 0.10743,-0.25256 0.14802,-0.23692 0.18502,-0.21406 0.21726,-0.18521 0.24709,-0.15876 0.27574,-0.13349 0.3032,-0.10824 0.33185,-0.0842 0.35811,-0.0625 0.38795,-0.0397 0.42138,-0.0205 0.45241,0.001 0.001,0 z m 2.4769,-0.80938 0.85229,0.54841 0.002,-0.004 -0.068,0.10222 -0.0704,0.095 -0.0777,0.0938 -0.0823,0.089 -0.0859,0.0818 -0.0883,0.0782 -0.0908,0.0709 -0.0931,0.0685 -0.10025,0.0637 -0.099,0.059 -0.10025,0.0541 -0.10265,0.0493 -0.10743,0.0481 -0.10744,0.042 -0.10981,0.0409 -0.10982,0.0337 -0.10982,0.0325 -0.11341,0.03 -0.1134,0.0265 -0.1134,0.0228 -0.11698,0.0217 -0.11699,0.0167 -0.11459,0.0157 -0.11937,0.0145 -0.11699,0.009 -0.11698,0.009 -0.11817,0.006 -0.11938,0.005 -0.11936,0.004 -0.11697,0.001 -0.11938,0 -0.11936,-0.004 0.0262,-1.0174 0.10505,0.001 0.10265,0 0.10505,-0.001 0.10265,-0.001 0.10266,-0.005 0.10147,-0.006 0.10025,-0.007 0.10026,-0.009 0.0955,-0.009 0.0979,-0.0132 0.0931,-0.0145 0.0908,-0.0168 0.0896,-0.0181 0.0896,-0.0217 0.0848,-0.0205 0.0836,-0.0253 0.0811,-0.0265 0.0764,-0.0265 0.074,-0.03 0.0717,-0.0312 0.0692,-0.0349 0.0668,-0.0348 0.0633,-0.0372 0.0573,-0.0372 0.0573,-0.042 0.0549,-0.042 0.0502,-0.0445 0.0478,-0.0458 0.0417,-0.0458 0.0417,-0.0505 0.0394,-0.0541 0.0371,-0.0542 0.002,-0.004 z m -0.002,0.004 0.002,-0.004 -0.009,0.0157 0.007,-0.012 z m 0.45003,-2.7625 0.98838,0.20927 0,10e-4 -0.0357,0.17319 -0.031,0.16236 -0.0275,0.15394 -0.0238,0.14551 -0.0203,0.1359 -0.0179,0.13109 -0.0167,0.12388 -0.0131,0.11424 -0.0107,0.10704 -0.009,0.10224 -0.008,0.10222 -0.008,0.0914 -0.005,0.0842 -0.005,0.083 -0.005,0.0842 -0.005,0.0794 -0.005,0.0758 -0.006,0.0758 -0.006,0.0733 -0.007,0.077 -0.009,0.0734 -0.0107,0.0735 -0.0144,0.0818 -0.0167,0.0746 -0.0191,0.0722 -0.0238,0.0806 -0.0275,0.0782 -0.031,0.077 -0.0357,0.0782 -0.0394,0.077 -0.0417,0.077 -0.0478,0.0782 -0.85228,-0.54841 0.0263,-0.0445 0.025,-0.0433 0.0204,-0.0409 0.0167,-0.0372 0.0144,-0.036 0.0131,-0.0349 0.009,-0.0325 0.009,-0.0409 0.009,-0.0409 0.007,-0.036 0.006,-0.0493 0.007,-0.0517 0.005,-0.053 0.006,-0.0613 0.004,-0.0637 0.005,-0.0733 0.005,-0.0746 0.005,-0.0818 0.005,-0.0878 0.007,-0.0986 0.008,-0.10106 0.008,-0.10222 0.009,-0.11426 0.0131,-0.12146 0.0156,-0.12869 0.0167,-0.1335 0.0204,-0.1407 0.0226,-0.15034 0.0263,-0.15754 0.0298,-0.16838 0.0335,-0.17439 0.0382,-0.18521 0,0.001 z m 1.4468,-3.2628 0.78067,0.64944 -10e-4,0 -0.0502,0.0625 -0.0502,0.0649 -0.0466,0.0625 -0.0501,0.071 -0.0489,0.0685 -0.0442,0.0673 -0.0501,0.0782 -0.0454,0.0709 -0.043,0.0758 -0.0466,0.0793 -0.0429,0.0782 -0.0417,0.0794 -0.043,0.083 -0.0429,0.0866 -0.0405,0.0854 -0.0394,0.0866 -0.0369,0.0865 -0.0394,0.0937 -0.0382,0.095 -0.0358,0.0902 -0.0346,0.095 -0.0347,0.0998 -0.0335,0.0974 -0.0335,0.10344 -0.0323,0.10222 -0.0298,0.10096 -0.0298,0.10704 -0.0286,0.10704 -0.0275,0.10944 -0.0275,0.10824 -0.0238,0.11304 -0.0263,0.11306 -0.9884,-0.20927 0.0263,-0.12507 0.0286,-0.12508 0.0298,-0.12267 0.0298,-0.12147 0.0335,-0.11907 0.0323,-0.11664 0.0346,-0.12026 0.037,-0.11427 0.0357,-0.11304 0.0382,-0.11185 0.0394,-0.10944 0.0394,-0.10945 0.0429,-0.11184 0.043,-0.10221 0.0417,-0.10344 0.0466,-0.10584 0.0466,-0.10096 0.0477,-0.0999 0.0478,-0.0962 0.0477,-0.0974 0.0513,-0.0962 0.0525,-0.095 0.0513,-0.089 0.0549,-0.0925 0.0573,-0.0902 0.0525,-0.083 0.0585,-0.089 0.0585,-0.083 0.0573,-0.0806 0.0609,-0.0818 0.0621,-0.0794 0.0621,-0.077 -0.001,0 z m 0.78067,0.64944 -10e-4,0 0.56223,-0.68431 -0.56104,0.68431 z m 1.8502,-1.5634 0.18621,1.0006 -10e-4,0.001 -0.0884,0.0144 -0.0859,0.0133 -0.0859,0.012 -0.0859,0.0108 -0.0859,0.009 -0.0836,0.007 -0.0823,0.007 -0.0788,0.006 -0.0728,0.007 -0.08,0.007 -0.0776,0.007 -0.0704,0.006 -0.0692,0.008 -0.0716,0.009 -0.0692,0.009 -0.0645,0.009 -0.0585,0.012 -0.0633,0.0132 -0.0561,0.0145 -0.0585,0.0168 -0.0549,0.0181 -0.0489,0.0181 -0.0514,0.0217 -0.0466,0.0217 -0.0466,0.0265 -0.0466,0.0265 -0.0442,0.03 -0.0417,0.0312 -0.0406,0.0349 -0.0429,0.0397 -0.0417,0.0432 -0.0406,0.0481 -0.78067,-0.64943 0.0764,-0.0865 0.0777,-0.0818 0.0811,-0.0758 0.0836,-0.0709 0.0871,-0.0649 0.0871,-0.059 0.0871,-0.053 0.0896,-0.0481 0.0919,-0.0433 0.0896,-0.0385 0.0943,-0.0349 0.0883,-0.0277 0.0896,-0.0265 0.0896,-0.0217 0.0871,-0.0205 0.0919,-0.0168 0.0883,-0.0145 0.0836,-0.012 0.0811,-0.009 0.0859,-0.0108 0.0848,-0.008 0.08,-0.007 0.0777,-0.007 0.0823,-0.007 0.0788,-0.006 0.0752,-0.007 0.074,-0.007 0.0716,-0.007 0.0692,-0.008 0.0717,-0.009 0.0692,-0.0108 0.0668,-0.012 -10e-4,0.001 z m 0.18621,1.0006 -10e-4,0.001 -0.76158,0.14191 0.76277,-0.14311 z m 2.6417,-1.1365 -0.45361,0.90921 -0.0656,-0.03 -0.0621,-0.0265 -0.0573,-0.0217 -0.0597,-0.0168 -0.0597,-0.0156 -0.0585,-0.012 -0.0561,-0.008 -0.0585,-0.006 -0.0573,-0.004 -0.0561,0 -0.0597,10e-4 -0.0573,0.004 -0.0585,0.006 -0.0668,0.009 -0.0621,0.009 -0.0645,0.0132 -0.0644,0.0132 -0.0657,0.0168 -0.0704,0.0181 -0.0692,0.0181 -0.0716,0.0217 -0.074,0.0205 -0.0716,0.0217 -0.0764,0.0228 -0.0764,0.0228 -0.0788,0.024 -0.0836,0.024 -0.08,0.0205 -0.0811,0.0217 -0.0896,0.0228 -0.0883,0.0193 -0.0871,0.0169 -0.18621,-1.0006 0.068,-0.0145 0.0668,-0.0145 0.0657,-0.0156 0.0717,-0.0193 0.0729,-0.0205 0.0692,-0.0193 0.0717,-0.0217 0.0764,-0.0229 0.0764,-0.0228 0.0788,-0.0241 0.0788,-0.0228 0.0788,-0.0217 0.0836,-0.0228 0.0799,-0.0205 0.0871,-0.0217 0.0883,-0.0181 0.0883,-0.0181 0.0931,-0.0145 0.0883,-0.012 0.0967,-0.0108 0.0979,-0.006 0.0979,-0.004 0.10147,0.002 0.10265,0.006 0.10147,0.0108 0.10624,0.0157 0.10385,0.0217 0.10506,0.0253 0.10741,0.0337 0.10983,0.0385 0.10743,0.0458 0.10624,0.0517 z m 2.9902,2.7914 -1.0122,0 0.10982,0.3163 -0.0764,-0.0962 -0.08,-0.0962 -0.0777,-0.095 -0.0789,-0.0914 -0.0777,-0.0902 -0.0788,-0.0865 -0.0799,-0.0866 -0.08,-0.0854 -0.08,-0.083 -0.0777,-0.0794 -0.08,-0.0782 -0.0799,-0.077 -0.08,-0.0758 -0.08,-0.0721 -0.08,-0.0709 -0.0799,-0.0697 -0.0811,-0.0673 -0.0788,-0.0662 -0.08,-0.0637 -0.0811,-0.0613 -0.08,-0.0613 -0.08,-0.0577 -0.0811,-0.0577 -0.0777,-0.0541 -0.08,-0.0517 -0.0811,-0.053 -0.0799,-0.0505 -0.0752,-0.0444 -0.0811,-0.0458 -0.0823,-0.047 -0.0788,-0.042 -0.0764,-0.0409 0.45359,-0.90921 0.0955,0.0481 0.0931,0.0517 0.0896,0.0493 0.0931,0.053 0.0967,0.059 0.0919,0.0577 0.0908,0.0577 0.092,0.0613 0.0942,0.0637 0.0908,0.0649 0.092,0.0673 0.0919,0.0685 0.0908,0.071 0.092,0.0733 0.0908,0.0735 0.0908,0.077 0.0896,0.077 0.0919,0.0806 0.0896,0.0842 0.0896,0.083 0.0871,0.0842 0.0896,0.0878 0.0896,0.0914 0.0871,0.0902 0.0871,0.0925 0.0871,0.0938 0.0883,0.0986 0.0871,0.0997 0.0859,0.10096 0.0848,0.10222 0.0848,0.10344 0.0859,0.10823 0.10983,0.3163 z m -0.10982,-0.3163 0.10982,0.1395 0,0.1768 -0.10982,-0.3163 z m -0.90243,0.31751 0,-0.001 1.0122,0 0,0.001 -0.90243,0.31629 -0.10983,-0.31629 z m 0.10982,0.31629 -0.10982,-0.1395 0,-0.17679 0.10982,0.31629 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path251" + d="m 410.05,219.43 c -0.26381,-0.007 -0.52762,-0.0205 -0.79261,-0.0325 -1.368,-3.8364 -3.5011,-6.9321 -6.3063,-9.5358 2.8159,1.5731 5.5614,5.4155 7.0989,9.5695 v -10e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path253" + d="m 411.43,219.24 c 0.2471,-0.0806 0.493,-0.15995 0.74009,-0.24173 -0.50255,-3.9892 0.0668,-7.5358 1.5363,-10.88 -1.9612,2.3752 -2.7598,6.8058 -2.2764,11.122 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path255" + d="m 418.3,201.97 c -0.18025,1.4227 -0.36527,2.9537 -1.0719,4.3187 -1.0636,2.0541 -3.6838,1.2628 -6.483,-0.69874 -0.88094,-0.61817 -2.231,-0.76129 -3.4772,-0.5412 -1.2426,0.21888 -2.3826,0.79135 -2.8792,1.6128 -1.596,2.6386 -3.5118,4.1203 -5.3096,2.6134 -1.1913,-1.0006 -1.997,-2.291 -2.7515,-3.4769 0.48226,-0.21046 1.1651,-0.31509 2.0902,-0.29223 1.1913,0.03 2.3826,-0.18763 2.9162,-1.0439 0.42257,-0.66869 0.10743,-0.97174 0.51687,-2.9236 0.26978,-1.2868 0.7377,-2.3079 1.3417,-3.0475 0.61355,-0.74925 1.51,-0.57968 2.3349,-0.73482 0.832,-0.15515 1.5876,-0.65063 2.5068,-0.18402 0.91796,0.46423 1.8454,1.2375 2.7121,2.3368 1.3274,1.6861 1.1627,2.0902 1.8896,2.5773 0.93944,0.62055 2.2167,0.39927 3.3996,-0.0493 0.91555,-0.34637 1.6628,-0.49189 2.2644,-0.46663 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path257" + d="m 417.68,206.53 -0.89767,-0.47145 0,0 0.0598,-0.11906 0.0573,-0.11786 0.0537,-0.12147 0.0537,-0.12386 0.0502,-0.12269 0.0466,-0.12146 0.0454,-0.12387 0.0442,-0.12748 0.0394,-0.12507 0.0405,-0.12989 0.0369,-0.12628 0.0346,-0.12869 0.0346,-0.12989 0.031,-0.12987 0.031,-0.1311 0.0286,-0.13108 0.0275,-0.1335 0.0263,-0.13229 0.0263,-0.13349 0.0238,-0.12989 0.0215,-0.13229 0.0226,-0.1371 0.0204,-0.1335 0.0204,-0.13349 0.0204,-0.1347 0.0179,-0.13228 0.0179,-0.13471 0.0179,-0.1359 0.0179,-0.13469 0.0179,-0.13229 0.0167,-0.1335 0.0167,-0.13469 1.0027,0.12989 -0.0167,0.13228 -0.0167,0.13591 -0.0179,0.13709 -0.0179,0.1347 -0.0179,0.13591 -0.0179,0.1371 -0.0204,0.14191 -0.0204,0.1395 -0.0204,0.13831 -0.0228,0.14071 -0.0226,0.13951 -0.0238,0.14191 -0.0263,0.14432 -0.0263,0.14072 -0.0286,0.1419 -0.0298,0.14071 -0.031,0.14312 -0.0335,0.14312 -0.0358,0.1443 -0.0369,0.14192 -0.0394,0.14312 -0.0417,0.14311 -0.043,0.14191 -0.0466,0.14192 -0.0489,0.14191 -0.0502,0.14311 -0.0561,0.14312 -0.0573,0.13951 -0.0585,0.1383 -0.0633,0.14072 -0.0668,0.1395 -0.0692,0.13831 0,0 z m -7.2207,-0.51594 0.57774,-0.83705 0.25427,0.17559 0.25425,0.16837 0.25188,0.16115 0.24829,0.15274 0.24708,0.14552 0.24352,0.1371 0.23874,0.12628 0.23635,0.11787 0.23157,0.10823 0.22801,0.0997 0.22321,0.089 0.21845,0.0795 0.21009,0.0685 0.20652,0.0577 0.20054,0.0481 0.19218,0.036 0.18383,0.0253 0.17666,0.0145 0.16951,0.004 0.15875,-0.006 0.154,-0.0181 0.14324,-0.0265 0.1325,-0.036 0.12773,-0.0481 0.12056,-0.0565 0.11339,-0.0673 0.10744,-0.077 0.10385,-0.0914 0.099,-0.10343 0.0955,-0.11787 0.0896,-0.13469 0.0848,-0.15033 0.89766,0.47144 -0.12296,0.21768 -0.13726,0.20203 -0.14802,0.18522 -0.16115,0.16837 -0.17309,0.15154 -0.18383,0.13229 -0.19457,0.11546 -0.20173,0.095 -0.20891,0.077 -0.21605,0.0602 -0.21963,0.0409 -0.22323,0.0253 -0.22799,0.0108 -0.23158,-0.006 -0.23397,-0.0193 -0.23635,-0.0325 -0.23993,-0.0458 -0.24112,-0.0577 -0.24472,-0.0673 -0.24829,-0.0806 -0.24948,-0.0914 -0.25187,-0.10096 -0.25425,-0.10944 -0.25546,-0.12027 -0.26022,-0.12988 -0.26023,-0.13831 -0.2626,-0.14673 -0.26382,-0.15513 -0.265,-0.16236 -0.26619,-0.17078 -0.26859,-0.17799 -0.26857,-0.1852 z m -3.1012,-0.45821 -0.17427,-1.003 0.12533,-0.0205 0.12892,-0.0205 0.12773,-0.0156 0.12534,-0.0132 0.12892,-0.012 0.12533,-0.009 0.13011,-0.007 0.12773,-0.004 0.12892,-0.004 0.12772,0.001 0.12534,0.004 0.13011,0.005 0.12653,0.009 0.12295,0.009 0.12892,0.0132 0.12415,0.0181 0.12176,0.0181 0.12534,0.0217 0.12056,0.0253 0.12057,0.0265 0.12175,0.0312 0.11818,0.0337 0.11698,0.036 0.11459,0.0397 0.11459,0.042 0.1146,0.0481 0.10982,0.0493 0.10744,0.053 0.10503,0.0553 0.10506,0.059 0.10385,0.0649 0.099,0.0662 -0.57775,0.83704 -0.068,-0.047 -0.0704,-0.0432 -0.074,-0.042 -0.0764,-0.0409 -0.0811,-0.0385 -0.0811,-0.0372 -0.0836,-0.0337 -0.0859,-0.0325 -0.0883,-0.03 -0.0908,-0.0288 -0.0942,-0.0265 -0.0931,-0.024 -0.0967,-0.0217 -0.099,-0.0205 -0.0967,-0.0168 -0.10506,-0.0157 -0.10265,-0.0132 -0.10025,-0.0108 -0.10863,-0.009 -0.10505,-0.007 -0.10386,-0.005 -0.10862,-0.001 -0.10863,-0.001 -0.10743,0.001 -0.10862,0.004 -0.10863,0.007 -0.11101,0.007 -0.10744,0.009 -0.111,0.0132 -0.10863,0.0133 -0.10744,0.0156 -0.10863,0.0181 z m -2.5342,1.3758 -0.86423,-0.52917 0.0609,-0.0938 0.0621,-0.0926 0.0704,-0.0925 0.0717,-0.0854 0.0752,-0.0854 0.0777,-0.0818 0.0823,-0.0794 0.0848,-0.077 0.0859,-0.0733 0.0908,-0.0721 0.0942,-0.0697 0.092,-0.0649 0.0979,-0.0662 0.10147,-0.0637 0.10147,-0.0602 0.10265,-0.0577 0.10387,-0.0553 0.11101,-0.0553 0.10862,-0.0505 0.10982,-0.0493 0.1146,-0.0481 0.11458,-0.0445 0.1146,-0.0432 0.11938,-0.0409 0.11936,-0.0385 0.11818,-0.036 0.12175,-0.0337 0.12057,-0.0325 0.12415,-0.03 0.12294,-0.0265 0.12414,-0.0265 0.12535,-0.0228 0.17428,1.003 -0.10625,0.0205 -0.10743,0.0217 -0.10623,0.024 -0.10266,0.0253 -0.10624,0.0277 -0.10265,0.0289 -0.10147,0.0312 -0.10026,0.0312 -0.0955,0.0337 -0.0979,0.036 -0.0955,0.0372 -0.0908,0.0385 -0.0931,0.042 -0.0896,0.0409 -0.0848,0.0433 -0.0848,0.0458 -0.0836,0.0458 -0.08,0.0481 -0.0777,0.047 -0.0716,0.0493 -0.0752,0.053 -0.068,0.0505 -0.0645,0.053 -0.0645,0.0542 -0.0585,0.053 -0.0561,0.0553 -0.0537,0.0553 -0.0513,0.0565 -0.0454,0.0565 -0.0417,0.0541 -0.0406,0.0589 -0.0371,0.0577 z m -6.0652,2.7396 0.64698,-0.78173 0,-0.001 0.14205,0.11305 0.13967,0.095 0.13847,0.0793 0.13489,0.0649 0.13368,0.0517 0.12773,0.0372 0.1313,0.0265 0.12654,0.0145 0.12893,0.002 0.1313,-0.007 0.1313,-0.0181 0.1337,-0.0288 0.13488,-0.0409 0.13967,-0.053 0.14085,-0.0637 0.14324,-0.077 0.14803,-0.089 0.14681,-0.0985 0.14803,-0.11065 0.1504,-0.12387 0.1516,-0.1347 0.1516,-0.14432 0.15161,-0.15634 0.15398,-0.16717 0.15159,-0.17559 0.15041,-0.184 0.15161,-0.19724 0.1504,-0.20205 0.14801,-0.21406 0.14921,-0.22008 0.14684,-0.22851 0.14562,-0.23572 0.86423,0.52917 -0.15517,0.25255 -0.15877,0.24534 -0.15876,0.23692 -0.16235,0.23091 -0.16472,0.2237 -0.16592,0.21406 -0.16951,0.20806 -0.1707,0.19724 -0.17308,0.18882 -0.17548,0.18039 -0.17785,0.17078 -0.18025,0.15876 -0.18383,0.15031 -0.18621,0.13951 -0.18981,0.12749 -0.19098,0.11545 -0.19577,0.10343 -0.19816,0.0902 -0.20173,0.077 -0.2065,0.0625 -0.2101,0.0458 -0.21009,0.03 -0.21248,0.012 -0.21485,-0.005 -0.21488,-0.0265 -0.21248,-0.0409 -0.21367,-0.0637 -0.20771,-0.0806 -0.2065,-0.0985 -0.20294,-0.11787 -0.19934,-0.1359 -0.19457,-0.15153 0,-0.001 z m -2.6285,-4.3356 0.40108,0.93565 0.22561,-0.74324 0.0704,0.11306 0.0704,0.10944 0.0717,0.11184 0.0728,0.11426 0.0716,0.11184 0.0717,0.11185 0.074,0.11305 0.0716,0.11064 0.0752,0.10945 0.0764,0.11424 0.074,0.11064 0.0764,0.11064 0.0764,0.10945 0.0788,0.10944 0.0788,0.10944 0.0789,0.10704 0.0823,0.10824 0.0823,0.10704 0.0823,0.10583 0.0848,0.10462 0.0859,0.10344 0.0859,0.10222 0.0883,0.10096 0.092,0.10096 0.0896,0.0997 0.0931,0.0962 0.0955,0.0974 0.0942,0.0925 0.099,0.0938 0.10025,0.0925 0.10147,0.0902 0.10265,0.089 -0.64696,0.78172 -0.11938,-0.10096 -0.1134,-0.10223 -0.11221,-0.10223 -0.11101,-0.10583 -0.10862,-0.10703 -0.10505,-0.10704 -0.10505,-0.11064 -0.10148,-0.10944 -0.099,-0.11064 -0.0979,-0.11306 -0.0955,-0.11185 -0.0931,-0.11304 -0.0919,-0.11425 -0.092,-0.11547 -0.0871,-0.11424 -0.0871,-0.11546 -0.0859,-0.11665 -0.0836,-0.11426 -0.0836,-0.11666 -0.0811,-0.11665 -0.0811,-0.11786 -0.0789,-0.11545 -0.0764,-0.11425 -0.0777,-0.11666 -0.0764,-0.11787 -0.074,-0.11304 -0.0764,-0.11666 -0.0717,-0.11424 -0.0729,-0.11186 -0.0717,-0.11184 -0.0728,-0.11425 -0.0704,-0.11064 0.22561,-0.74325 z m -0.22561,0.74323 -0.32111,-0.50512 0.54672,-0.23811 -0.22561,0.74323 z m 2.5294,-1.0764 -0.0263,1.0174 10e-4,0 -0.0811,0 -0.0847,-0.001 -0.0764,-0.001 -0.074,0.001 -0.0811,0.001 -0.0704,0 -0.074,0.004 -0.0716,0.002 -0.0668,0.005 -0.0716,0.005 -0.068,0.004 -0.0609,0.006 -0.0645,0.006 -0.0645,0.007 -0.0561,0.007 -0.0597,0.008 -0.0633,0.009 -0.0561,0.008 -0.0514,0.009 -0.0537,0.009 -0.0513,0.0108 -0.0466,0.0108 -0.049,0.0121 -0.0537,0.0144 -0.0466,0.012 -0.0454,0.0132 -0.0382,0.012 -0.0429,0.0145 -0.043,0.0157 -0.0358,0.0132 -0.0382,0.0157 -0.0369,0.0157 -0.40108,-0.93566 0.0536,-0.0228 0.0573,-0.0228 0.0597,-0.0228 0.0548,-0.0181 0.0598,-0.0217 0.0645,-0.0193 0.0621,-0.0181 0.0609,-0.0167 0.0585,-0.0145 0.0633,-0.0168 0.0704,-0.0156 0.0657,-0.0132 0.068,-0.0145 0.0729,-0.012 0.068,-0.0108 0.0656,-0.009 0.0717,-0.0108 0.0777,-0.009 0.074,-0.007 0.074,-0.008 0.08,-0.006 0.0777,-0.006 0.074,-0.005 0.0836,-0.005 0.0811,-0.002 0.0811,-0.004 0.0871,-0.002 0.0811,-0.001 0.0883,-0.001 0.0908,0.001 0.0848,0.001 0.0908,0.002 10e-4,0 z m 2.4769,-0.80938 0.85229,0.5484 0.002,-0.004 -0.068,0.10222 -0.0704,0.095 -0.0777,0.0938 -0.0823,0.089 -0.0859,0.0818 -0.0883,0.0782 -0.0908,0.0709 -0.0931,0.0685 -0.10025,0.0637 -0.099,0.059 -0.10025,0.0542 -0.10266,0.0493 -0.10744,0.0481 -0.10741,0.042 -0.10983,0.0409 -0.10983,0.0337 -0.10982,0.0325 -0.11339,0.03 -0.11341,0.0265 -0.11339,0.0228 -0.11698,0.0217 -0.11699,0.0167 -0.11458,0.0157 -0.11938,0.0145 -0.11698,0.009 -0.11698,0.009 -0.11818,0.006 -0.11937,0.005 -0.11937,0.004 -0.11698,0.001 -0.11938,0 -0.11936,-0.004 0.0263,-1.0174 0.10504,0.001 0.10267,0 0.10504,-0.001 0.10265,-0.001 0.10267,-0.005 0.10147,-0.006 0.10025,-0.007 0.10025,-0.009 0.0955,-0.009 0.0979,-0.0132 0.0931,-0.0145 0.0908,-0.0168 0.0896,-0.0181 0.0896,-0.0217 0.0848,-0.0205 0.0836,-0.0253 0.0811,-0.0265 0.0764,-0.0265 0.074,-0.03 0.0717,-0.0312 0.0692,-0.0348 0.0668,-0.0349 0.0633,-0.0372 0.0573,-0.0372 0.0573,-0.042 0.0549,-0.042 0.0502,-0.0446 0.0477,-0.0458 0.0417,-0.0458 0.0417,-0.0505 0.0394,-0.0541 0.0369,-0.0542 0.002,-0.004 z m -0.002,0.004 0.002,-0.004 -0.009,0.0155 0.007,-0.012 z m 0.45122,-2.7589 0.98839,0.21166 -0.0335,0.17078 -0.0323,0.16476 -0.0275,0.15514 -0.025,0.14433 -0.0204,0.13589 -0.0179,0.12868 -0.0167,0.12388 -0.0131,0.11305 -0.0107,0.10703 -0.009,0.10223 -0.008,0.0985 -0.007,0.095 -0.006,0.0878 -0.005,0.0794 -0.005,0.083 -0.005,0.0806 -0.006,0.0794 -0.006,0.0722 -0.005,0.0746 -0.008,0.0746 -0.008,0.0734 -0.0119,0.0782 -0.0131,0.0709 -0.0167,0.0806 -0.0215,0.077 -0.0226,0.0758 -0.0275,0.0782 -0.031,0.077 -0.0357,0.0782 -0.0394,0.077 -0.0417,0.077 -0.0477,0.0782 -0.8523,-0.5484 0.0263,-0.0444 0.025,-0.0433 0.0204,-0.0409 0.0167,-0.0372 0.0144,-0.036 0.0131,-0.0349 0.0107,-0.0372 0.009,-0.036 0.007,-0.0348 0.008,-0.047 0.007,-0.0445 0.006,-0.0517 0.006,-0.053 0.005,-0.0602 0.006,-0.0697 0.004,-0.0673 0.005,-0.0758 0.005,-0.0806 0.005,-0.0914 0.008,-0.095 0.007,-0.0974 0.008,-0.10585 0.009,-0.11425 0.0131,-0.12147 0.0156,-0.12747 0.0167,-0.1335 0.0203,-0.14072 0.0226,-0.15031 0.0275,-0.15876 0.0298,-0.16476 0.0323,-0.17439 0.0382,-0.18521 z m 1.4456,-3.2664 0.78067,0.64943 0,-0.001 -0.0514,0.0637 -0.049,0.0625 -0.0466,0.0649 -0.0513,0.0721 -0.0477,0.0673 -0.0454,0.0697 -0.0478,0.0746 -0.0466,0.0746 -0.0442,0.0746 -0.043,0.077 -0.0454,0.0818 -0.043,0.0806 -0.0429,0.083 -0.0406,0.0818 -0.0406,0.089 -0.0406,0.0865 -0.037,0.0866 -0.0394,0.0937 -0.0371,0.0925 -0.0357,0.0925 -0.0357,0.0974 -0.0347,0.0962 -0.0335,0.0999 -0.0323,0.0997 -0.0323,0.10463 -0.031,0.10463 -0.0298,0.10463 -0.0287,0.10704 -0.0275,0.10825 -0.0275,0.11064 -0.0238,0.11183 -0.0263,0.11547 -0.98838,-0.21168 0.0263,-0.12507 0.0286,-0.12388 0.0298,-0.12266 0.0298,-0.12267 0.0335,-0.11906 0.0323,-0.11906 0.0357,-0.11666 0.0347,-0.11426 0.0369,-0.11424 0.0382,-0.11186 0.0394,-0.11304 0.0406,-0.10704 0.0405,-0.10945 0.0442,-0.10463 0.0417,-0.10342 0.0466,-0.10584 0.0454,-0.10096 0.0477,-0.0986 0.0478,-0.0985 0.0502,-0.0974 0.0501,-0.095 0.0502,-0.0914 0.0525,-0.0937 0.0561,-0.0914 0.0536,-0.089 0.0548,-0.0842 0.0573,-0.089 0.0597,-0.0842 0.0561,-0.0794 0.0609,-0.0818 0.0633,-0.0818 0.0609,-0.0758 0,-10e-4 z m 0,0.001 0,-0.001 0.35572,-0.43535 -0.35572,0.43655 z m 2.6333,-0.91281 0.18383,1.003 10e-4,-0.001 -0.0896,0.0157 -0.0859,0.0132 -0.0859,0.012 -0.0859,0.0108 -0.0859,0.009 -0.0836,0.007 -0.0823,0.007 -0.0787,0.006 -0.0789,0.007 -0.0777,0.006 -0.0704,0.007 -0.074,0.007 -0.0728,0.008 -0.0704,0.008 -0.0668,0.009 -0.0645,0.009 -0.0645,0.012 -0.0573,0.012 -0.0573,0.0156 -0.0609,0.0168 -0.0537,0.0169 -0.0477,0.0181 -0.0513,0.0217 -0.0502,0.024 -0.0466,0.024 -0.043,0.0253 -0.0442,0.03 -0.0417,0.0312 -0.0406,0.0349 -0.0429,0.0397 -0.0417,0.0432 -0.0405,0.0481 -0.78068,-0.64942 0.0764,-0.0866 0.0777,-0.0818 0.0811,-0.0758 0.0836,-0.0709 0.0871,-0.0649 0.0871,-0.059 0.0908,-0.0541 0.0896,-0.0481 0.0883,-0.0409 0.0896,-0.0385 0.0955,-0.0348 0.0919,-0.0289 0.0848,-0.0241 0.0908,-0.0228 0.0908,-0.0193 0.0883,-0.0168 0.0859,-0.0145 0.0859,-0.012 0.0848,-0.0108 0.0823,-0.008 0.0811,-0.009 0.0871,-0.007 0.0777,-0.006 0.0788,-0.007 0.0788,-0.006 0.0752,-0.007 0.074,-0.007 0.0717,-0.007 0.0692,-0.008 0.0717,-0.009 0.0692,-0.0108 0.0657,-0.0108 10e-4,-0.001 z m -10e-4,0.001 10e-4,-0.001 0.604,-0.11304 -0.60519,0.11424 z m 2.8267,-0.1395 -0.4536,0.9116 -10e-4,-10e-4 -0.0645,-0.03 -0.0621,-0.0265 -0.0573,-0.0217 -0.0597,-0.0168 -0.0597,-0.0156 -0.0585,-0.012 -0.0561,-0.008 -0.0585,-0.006 -0.0536,-0.004 -0.0598,0.001 -0.0597,0 -0.0537,0.005 -0.0657,0.007 -0.0621,0.007 -0.0573,0.009 -0.0657,0.0132 -0.068,0.0157 -0.0692,0.0168 -0.0644,0.0157 -0.068,0.0205 -0.0764,0.0217 -0.0728,0.0205 -0.0728,0.0217 -0.0752,0.0228 -0.0764,0.0228 -0.0788,0.024 -0.0836,0.0241 -0.0799,0.0205 -0.0811,0.0217 -0.0896,0.0228 -0.0883,0.0193 -0.0883,0.0181 -0.18383,-1.003 0.0668,-0.0132 0.0668,-0.0145 0.0657,-0.0156 0.0716,-0.0193 0.0728,-0.0205 0.0692,-0.0193 0.0717,-0.0217 0.0764,-0.0228 0.0752,-0.0228 0.08,-0.024 0.0777,-0.0228 0.0764,-0.0217 0.0823,-0.0228 0.0883,-0.0228 0.0836,-0.0193 0.0848,-0.0181 0.0871,-0.0181 0.0955,-0.0169 0.0931,-0.012 0.0896,-0.009 0.10147,-0.007 0.0979,-0.002 0.0979,0.001 0.10623,0.006 0.10147,0.0108 0.10624,0.0156 0.10385,0.0217 0.10504,0.0253 0.10744,0.0337 0.10982,0.0384 0.10743,0.0458 0.10743,0.0517 -10e-4,-0.001 z m -0.4536,0.9116 -10e-4,-10e-4 0.30558,0.15514 -0.30438,-0.15394 z m 3.3352,1.5646 -0.79263,0.63259 -0.0764,-0.0962 -0.08,-0.0962 -0.0764,-0.0938 -0.08,-0.0914 -0.08,-0.0926 -0.0777,-0.0866 -0.0788,-0.0854 -0.08,-0.0854 -0.0788,-0.0818 -0.0799,-0.0806 -0.08,-0.0794 -0.08,-0.077 -0.0788,-0.0746 -0.08,-0.0721 -0.0811,-0.0721 -0.08,-0.0697 -0.0799,-0.0661 -0.0788,-0.0662 -0.0811,-0.0637 -0.0811,-0.0625 -0.0788,-0.059 -0.0811,-0.0589 -0.0811,-0.0577 -0.08,-0.0553 -0.08,-0.053 -0.0777,-0.0505 -0.0787,-0.0481 -0.08,-0.0493 -0.0811,-0.0457 -0.0777,-0.0445 -0.0788,-0.0409 -0.0788,-0.0409 0.4536,-0.91161 0.0931,0.0482 0.0931,0.0505 0.0942,0.0517 0.0931,0.0553 0.0919,0.0541 0.0931,0.0577 0.0942,0.0602 0.0919,0.0625 0.0919,0.0625 0.0908,0.0649 0.0908,0.0662 0.0931,0.0685 0.0908,0.0722 0.0908,0.0709 0.0931,0.0758 0.0896,0.0758 0.0919,0.0795 0.0883,0.0794 0.0896,0.0818 0.0908,0.0842 0.0896,0.0866 0.0871,0.0866 0.0896,0.0902 0.0883,0.0914 0.0871,0.0925 0.0883,0.095 0.0871,0.0985 0.0848,0.0974 0.0871,0.10096 0.0859,0.10344 0.0848,0.10342 0.0859,0.10824 z m 1.7702,2.4678 -0.55387,0.85147 -0.004,-10e-4 -0.0777,-0.0541 -0.0752,-0.0565 -0.074,-0.0589 -0.0645,-0.0565 -0.0633,-0.059 -0.0621,-0.0625 -0.0573,-0.0637 -0.0525,-0.0625 -0.0489,-0.0637 -0.0477,-0.0637 -0.0454,-0.0662 -0.0442,-0.0673 -0.0394,-0.0649 -0.0417,-0.0662 -0.043,-0.0722 -0.0382,-0.0685 -0.043,-0.0722 -0.043,-0.0758 -0.0454,-0.077 -0.0477,-0.083 -0.049,-0.0818 -0.0561,-0.089 -0.0585,-0.0962 -0.0621,-0.0962 -0.068,-0.10342 -0.074,-0.11065 -0.0788,-0.11545 -0.0859,-0.12147 -0.093,-0.12869 -0.10147,-0.13589 -0.10744,-0.14312 -0.11698,-0.14913 0.79261,-0.63259 0.12415,0.15875 0.11459,0.15274 0.10624,0.14311 0.10026,0.1383 0.0931,0.13109 0.0883,0.12748 0.0788,0.11787 0.0752,0.11304 0.0692,0.11064 0.0633,0.10106 0.0585,0.0962 0.0561,0.0937 0.0502,0.0854 0.0477,0.0818 0.043,0.0758 0.0406,0.0697 0.0406,0.0685 0.0335,0.0577 0.0346,0.0565 0.0347,0.0553 0.0298,0.0458 0.0287,0.042 0.0286,0.0397 0.0298,0.0372 0.031,0.036 0.0286,0.0325 0.031,0.0312 0.0347,0.0325 0.0406,0.0348 0.0382,0.0325 0.0466,0.0325 0.0537,0.0372 -0.004,-0.001 z m -0.55387,0.85147 -0.004,-10e-4 -0.12295,-0.083 0.12653,0.0842 z m 3.4987,-0.95249 0.35571,0.9549 0,-10e-4 -0.11578,0.0432 -0.11817,0.0433 -0.12057,0.0409 -0.11936,0.0384 -0.11699,0.036 -0.12294,0.0372 -0.12296,0.0325 -0.11938,0.0313 -0.12056,0.0277 -0.12175,0.0277 -0.12535,0.024 -0.12175,0.0205 -0.12534,0.0193 -0.12295,0.0145 -0.12175,0.012 -0.12415,0.009 -0.12414,0.005 -0.12296,0.002 -0.12414,-0.002 -0.12294,-0.006 -0.12415,-0.0108 -0.12176,-0.0145 -0.12175,-0.0193 -0.12415,-0.0253 -0.11938,-0.0289 -0.11817,-0.0337 -0.12176,-0.0397 -0.11817,-0.047 -0.11459,-0.0505 -0.1146,-0.0565 -0.1122,-0.0637 -0.10983,-0.0685 0.55388,-0.85148 0.0692,0.042 0.0692,0.0397 0.0716,0.0349 0.074,0.0337 0.0728,0.0277 0.074,0.0253 0.08,0.0217 0.0836,0.0217 0.0789,0.0156 0.0859,0.012 0.0859,0.012 0.0883,0.006 0.0896,0.006 0.0908,0 0.0942,0 0.0931,-0.005 0.0979,-0.007 0.0978,-0.009 0.099,-0.012 0.099,-0.0145 0.10266,-0.0181 0.099,-0.0193 0.10266,-0.0228 0.10623,-0.0253 0.10506,-0.0265 0.10384,-0.0277 0.10147,-0.03 0.10743,-0.0337 0.10504,-0.0337 0.10386,-0.036 0.10624,-0.0385 0.10624,-0.0385 0,-0.001 z m 2.9437,0.0758 -1.0027,-0.12989 0.47986,0.57367 -0.0466,-0.001 -0.0466,0 -0.0537,0 -0.0489,0 -0.0549,0.002 -0.0514,0.002 -0.0536,0.004 -0.0549,0.005 -0.0549,0.006 -0.0609,0.007 -0.0573,0.007 -0.0621,0.008 -0.0609,0.008 -0.0561,0.0108 -0.0668,0.012 -0.0633,0.012 -0.0633,0.0145 -0.0704,0.0156 -0.0668,0.0145 -0.0668,0.0169 -0.0692,0.0181 -0.0704,0.0193 -0.0704,0.0193 -0.0728,0.0217 -0.0764,0.0228 -0.074,0.0228 -0.074,0.024 -0.0788,0.0277 -0.0788,0.0253 -0.0789,0.0288 -0.0799,0.0289 -0.0811,0.0312 -0.35572,-0.95489 0.0883,-0.0337 0.0896,-0.0312 0.0883,-0.0313 0.0859,-0.03 0.0836,-0.0277 0.0883,-0.0288 0.0836,-0.0253 0.0811,-0.0253 0.0823,-0.024 0.0823,-0.024 0.0823,-0.0217 0.0788,-0.0205 0.0811,-0.0193 0.0789,-0.0193 0.0752,-0.0157 0.0777,-0.0167 0.0777,-0.0145 0.0716,-0.0144 0.0799,-0.0133 0.0752,-0.0108 0.0692,-0.0108 0.074,-0.009 0.068,-0.007 0.074,-0.008 0.0717,-0.005 0.0704,-0.006 0.0704,-0.002 0.0645,-0.002 0.0704,-0.002 0.0633,0 0.068,0 0.068,0.004 0.47987,0.57366 z m -0.47988,-0.57367 0.54911,0.0228 -0.0692,0.55082 -0.47988,-0.57367 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path259" + d="m 391.76,221.18 c 0.7747,-0.94167 1.0827,-0.73241 1.2247,-1.3241 0.17906,-0.76489 -0.27097,-1.9627 -0.8535,-3.104 -2.3313,-4.5701 0.14922,-4.1852 3.5118,-2.3825 0.85231,0.45702 1.8419,1.2676 2.8243,2.1034 0.99077,0.84306 1.9744,1.7258 2.798,2.3175 1.6664,1.199 2.6954,1.2351 3.1812,1.7198 0.74009,1.8569 1.3489,3.4636 1.6055,4.1864 10e-4,0.004 10e-4,0.004 0.006,0.007 0.28409,0.724 0.88214,2.3283 1.541,4.178 -0.10623,0.51594 -1.0648,0.65906 -1.781,1.9784 -0.70428,1.3001 -1.2582,3.6584 -2.12,4.795 -1.2641,1.6657 -2.4196,2.6578 -3.3197,2.4943 -0.89766,-0.16357 -1.5375,-1.4769 -1.7774,-4.3813 -0.0942,-1.1281 -0.7389,-2.3223 -1.4826,-3.0295 -0.58014,-0.55203 -0.70906,-0.31992 -2.1439,-1.1281 -0.92751,-0.52195 -1.7165,-1.1654 -2.3456,-1.8653 -0.6267,-0.69754 -0.72338,-1.4781 -1.0146,-2.2478 -0.29246,-0.77331 -0.77829,-1.5334 -0.70309,-2.267 0.0752,-0.74323 0.35214,-1.4456 0.84991,-2.0505 h -10e-4 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path261" + d="m 392.49,219.74 0.98361,0.23332 0,0.004 -0.0191,0.0709 -0.0204,0.0662 -0.0263,0.0758 -0.0275,0.0649 -0.0275,0.059 -0.0382,0.0685 -0.0382,0.0577 -0.0369,0.053 -0.043,0.0505 -0.0442,0.0493 -0.0466,0.0458 -0.0406,0.036 -0.0429,0.0349 -0.0417,0.0325 -0.0394,0.03 -0.0347,0.0265 -0.0417,0.03 -0.0394,0.0277 -0.0382,0.0277 -0.0357,0.0265 -0.0358,0.0277 -0.0454,0.0372 -0.043,0.0337 -0.0394,0.0349 -0.0477,0.0432 -0.0478,0.0433 -0.049,0.0481 -0.0561,0.0565 -0.0561,0.059 -0.0585,0.0637 -0.0609,0.0697 -0.0657,0.0782 -0.77829,-0.64943 0.0777,-0.0925 0.0752,-0.0866 0.0729,-0.0806 0.0728,-0.0758 0.0657,-0.0661 0.0656,-0.0649 0.0644,-0.0602 0.0597,-0.053 0.0633,-0.0541 0.0573,-0.0458 0.0477,-0.0372 0.0525,-0.042 0.0502,-0.036 0.0429,-0.0325 0.0394,-0.0277 0.0323,-0.0253 0.0346,-0.0241 0.0275,-0.0205 0.0204,-0.0157 0.0167,-0.0156 0.0167,-0.0145 0.006,-0.005 0.006,-0.006 0.005,-0.007 0.006,-0.007 0.005,-0.007 0,-0.001 0.008,-0.0181 0.008,-0.0169 0.005,-0.0132 0.008,-0.0325 0.009,-0.0348 0,0.004 z m 0.98361,0.23332 0,0.004 -0.0335,0.14192 0.0335,-0.14553 z m -1.7953,-2.9874 0.90004,-0.46662 0.0549,0.11064 0.0549,0.10944 0.0549,0.11305 0.0537,0.11064 0.0514,0.11306 0.0513,0.11064 0.049,0.11064 0.0502,0.11425 0.0466,0.11185 0.0442,0.11064 0.0442,0.11185 0.0417,0.11064 0.0394,0.10944 0.0394,0.11184 0.0357,0.11066 0.0346,0.10823 0.0323,0.11065 0.0286,0.10583 0.0286,0.10943 0.0238,0.10704 0.0226,0.10584 0.0191,0.10704 0.0167,0.10702 0.0119,0.10465 0.009,0.10096 0.007,0.10703 0.002,0.10585 -0.002,0.0974 -0.005,0.10342 -0.0107,0.10344 -0.0143,0.10096 -0.0216,0.0997 -0.98361,-0.23331 0.009,-0.047 0.007,-0.0481 0.006,-0.053 0.002,-0.0577 0,-0.0662 0,-0.0625 -0.005,-0.0662 -0.007,-0.0746 -0.009,-0.0758 -0.0119,-0.0758 -0.0143,-0.0806 -0.0179,-0.0842 -0.0191,-0.0854 -0.0216,-0.0854 -0.0263,-0.0937 -0.025,-0.089 -0.0298,-0.0938 -0.031,-0.0962 -0.0323,-0.0925 -0.0369,-0.0997 -0.0369,-0.0985 -0.0394,-0.0997 -0.0417,-0.10096 -0.0417,-0.10223 -0.043,-0.0997 -0.0466,-0.10344 -0.0466,-0.10342 -0.049,-0.10343 -0.0489,-0.10343 -0.0501,-0.10343 -0.0525,-0.10462 -0.0525,-0.10344 z m 4.1994,-3.0656 -0.4751,0.89958 -0.30677,-0.16115 -0.29962,-0.15274 -0.29127,-0.14191 -0.2829,-0.13109 -0.27454,-0.12147 -0.26501,-0.10823 -0.25306,-0.0974 -0.23994,-0.0818 -0.2268,-0.0697 -0.21009,-0.0542 -0.19577,-0.0408 -0.17666,-0.0265 -0.15518,-0.012 -0.13132,0.002 -0.10622,0.012 -0.08,0.0193 -0.0513,0.0228 -0.037,0.0228 -0.0238,0.0228 -0.0216,0.0337 -0.0226,0.053 -0.0191,0.0842 -0.0119,0.11546 0.005,0.15031 0.0226,0.18643 0.043,0.21888 0.0668,0.24774 0.0908,0.28143 0.11699,0.31029 0.14324,0.34154 0.17189,0.37161 0.19815,0.4017 -0.90005,0.46663 -0.21008,-0.42574 -0.18383,-0.40049 -0.15757,-0.37523 -0.13131,-0.35117 -0.10743,-0.32712 -0.0811,-0.30787 -0.0573,-0.28864 -0.0323,-0.2706 -0.007,-0.26097 0.0238,-0.24776 0.0549,-0.23571 0.0942,-0.22129 0.13369,-0.19964 0.1695,-0.16717 0.19218,-0.12868 0.21129,-0.0902 0.21844,-0.0553 0.22323,-0.0265 0.22679,-0.002 0.23397,0.0169 0.24113,0.036 0.2459,0.0505 0.25784,0.0662 0.26261,0.0818 0.27336,0.0938 0.27932,0.10704 0.2865,0.11786 0.29603,0.12868 0.302,0.14071 0.30797,0.14913 0.31394,0.15995 0.31873,0.16838 z m 2.9126,2.1636 -0.65175,0.77933 -0.0919,-0.0782 -0.0908,-0.077 -0.092,-0.077 -0.0919,-0.077 -0.092,-0.077 -0.0908,-0.0758 -0.0908,-0.0758 -0.0896,-0.0745 -0.0896,-0.0722 -0.0908,-0.0746 -0.0908,-0.0733 -0.0871,-0.071 -0.0883,-0.0673 -0.0896,-0.0709 -0.0896,-0.0697 -0.0859,-0.0673 -0.0859,-0.0637 -0.0883,-0.0662 -0.0848,-0.0637 -0.0836,-0.0602 -0.0848,-0.0613 -0.0848,-0.059 -0.0811,-0.0577 -0.0811,-0.0541 -0.0823,-0.0553 -0.0799,-0.0517 -0.0789,-0.0493 -0.0799,-0.0505 -0.074,-0.0458 -0.0776,-0.0433 -0.0764,-0.0444 -0.0716,-0.0385 0.47509,-0.89959 0.0883,0.0481 0.0859,0.0493 0.0871,0.0505 0.0908,0.0553 0.0871,0.053 0.0883,0.0565 0.0896,0.0589 0.0871,0.0577 0.0908,0.0613 0.0908,0.0625 0.0896,0.0637 0.0896,0.0637 0.0931,0.0673 0.0919,0.0685 0.0883,0.0662 0.0931,0.071 0.0931,0.0722 0.0896,0.0697 0.0919,0.0709 0.0931,0.0746 0.0942,0.0758 0.0908,0.0733 0.0931,0.0746 0.0942,0.077 0.092,0.077 0.0931,0.0758 0.0931,0.0782 0.0919,0.077 0.0919,0.077 0.0942,0.0795 0.0931,0.0794 0.0919,0.0782 z m 2.7658,2.2922 -0.58729,0.82982 -0.0811,-0.0589 -0.0836,-0.0613 -0.0788,-0.0613 -0.0823,-0.0602 -0.0871,-0.0673 -0.0836,-0.0649 -0.0848,-0.0673 -0.0848,-0.0673 -0.0871,-0.0709 -0.0859,-0.0697 -0.0859,-0.0697 -0.0883,-0.0733 -0.0883,-0.0735 -0.0896,-0.0746 -0.0859,-0.0721 -0.0908,-0.0758 -0.0908,-0.0782 -0.0896,-0.0758 -0.0896,-0.077 -0.0919,-0.0782 -0.0896,-0.0782 -0.0908,-0.077 -0.0908,-0.0782 -0.092,-0.0782 -0.0943,-0.0806 -0.092,-0.0795 -0.0919,-0.0794 -0.0908,-0.0795 -0.0931,-0.0794 -0.0919,-0.0795 -0.0919,-0.0782 -0.0919,-0.0782 0.65175,-0.77933 0.0943,0.0806 0.0942,0.0806 0.0919,0.0794 0.0931,0.0795 0.0931,0.0794 0.092,0.0794 0.0919,0.0795 0.0896,0.0782 0.0919,0.0782 0.0908,0.0782 0.0931,0.0795 0.0896,0.0782 0.0896,0.0758 0.0896,0.077 0.0896,0.0758 0.0859,0.0734 0.0883,0.0735 0.0883,0.0746 0.0847,0.0721 0.0859,0.0709 0.0836,0.0685 0.0859,0.0697 0.0836,0.0697 0.08,0.0637 0.0823,0.0649 0.0823,0.0649 0.0788,0.0625 0.0752,0.0577 0.0799,0.0602 0.0788,0.0589 0.074,0.0541 0.074,0.0541 z m 3.3567,1.9447 -0.93824,0.38004 0.1134,0.17198 -0.0238,-0.0241 -0.0275,-0.0217 -0.0335,-0.0241 -0.0394,-0.0265 -0.0417,-0.0265 -0.0466,-0.0253 -0.0537,-0.0277 -0.0597,-0.0289 -0.0656,-0.03 -0.0716,-0.0325 -0.0752,-0.0325 -0.0764,-0.0313 -0.0871,-0.0349 -0.0919,-0.0385 -0.0908,-0.0384 -0.10025,-0.0397 -0.10386,-0.0445 -0.10982,-0.047 -0.11219,-0.0493 -0.11461,-0.053 -0.12056,-0.0553 -0.12295,-0.0602 -0.12892,-0.0637 -0.1337,-0.0709 -0.13249,-0.0722 -0.14086,-0.0782 -0.14443,-0.0842 -0.14564,-0.089 -0.1504,-0.095 -0.1528,-0.0997 -0.15994,-0.10824 -0.16116,-0.11426 0.5873,-0.82983 0.14683,0.10464 0.14323,0.0962 0.14086,0.0925 0.13608,0.0854 0.13371,0.0818 0.12532,0.0746 0.12415,0.0685 0.12533,0.0673 0.11699,0.0613 0.1146,0.0565 0.1134,0.0553 0.10623,0.0505 0.10744,0.0481 0.10265,0.047 0.0979,0.042 0.0967,0.0397 0.0955,0.0397 0.0955,0.0384 0.0871,0.036 0.0871,0.0348 0.0908,0.0385 0.0848,0.0372 0.0811,0.0349 0.0799,0.0372 0.0811,0.0385 0.08,0.042 0.08,0.0444 0.0777,0.0481 0.0728,0.0482 0.074,0.0553 0.0752,0.0625 0.0692,0.0649 0.11339,0.17198 z m -0.11341,-0.17197 0.074,0.0746 0.0394,0.0974 -0.11341,-0.17197 z m 1.7297,4.3873 -0.95973,0.3223 0.004,0.0108 -0.0238,-0.0673 -0.0275,-0.077 -0.0286,-0.0806 -0.0298,-0.0818 -0.0335,-0.089 -0.0346,-0.0925 -0.0369,-0.0985 -0.0382,-0.10584 -0.0394,-0.10703 -0.0406,-0.10824 -0.0429,-0.11426 -0.0466,-0.12026 -0.0466,-0.12507 -0.0477,-0.12508 -0.0489,-0.12869 -0.0513,-0.13589 -0.0525,-0.13712 -0.0537,-0.14069 -0.0549,-0.14313 -0.0573,-0.14552 -0.0573,-0.14913 -0.0585,-0.15152 -0.0597,-0.15395 -0.0621,-0.15754 -0.0621,-0.15996 -0.0633,-0.16114 -0.0645,-0.16357 -0.0656,-0.16597 -0.0657,-0.16836 -0.068,-0.16959 -0.0668,-0.17076 -0.0692,-0.17318 0.93825,-0.38004 0.0692,0.17318 0.0692,0.17318 0.0657,0.16957 0.068,0.16838 0.0656,0.16836 0.0645,0.16356 0.0633,0.16357 0.0621,0.15995 0.0621,0.15754 0.0598,0.15394 0.0609,0.15394 0.0573,0.14913 0.0573,0.14793 0.0549,0.14552 0.0537,0.1407 0.0525,0.13712 0.0513,0.13349 0.0514,0.13109 0.0477,0.12989 0.0466,0.12266 0.0442,0.11786 0.0454,0.11665 0.043,0.11545 0.0394,0.10945 0.0382,0.10096 0.0371,0.0985 0.0347,0.095 0.0335,0.0914 0.0323,0.089 0.0286,0.0806 0.0275,0.0746 0.0263,0.0721 0.004,0.0108 z m -0.004,-0.0108 0.004,0.0108 -0.004,-0.0108 z m 0,-0.008 -0.94063,0.37523 0.16711,0.22009 -0.0549,-0.047 -0.001,-0.001 0.35811,0.14914 -10e-4,0 -0.50612,-0.50993 0,-0.001 0.50612,0.50992 -0.001,0 -0.50613,-0.50992 0,-0.001 0.50613,0.50993 -10e-4,0 -0.50612,-0.50993 0,-10e-4 0.14802,0.36079 -0.001,-0.001 -0.14802,-0.3608 0,-0.001 0.0263,0.16116 0.95972,-0.32231 0.0263,0.16116 0,0.001 -0.14803,-0.36079 10e-4,0.001 0.14801,0.3608 0,0.001 -0.50613,-0.50993 0.001,0 0.50613,0.50993 0,0.001 -0.50613,-0.50992 10e-4,0 0.50613,0.50992 0,0.001 -0.50613,-0.50993 10e-4,0 0.35812,0.14913 10e-4,0.001 -0.0549,-0.047 0.16711,0.22007 z m -0.16711,-0.22007 0.11459,0.0865 0.0525,0.13349 -0.16711,-0.22007 z m 1.7332,4.6891 -0.99077,-0.20685 0.0191,0.27541 -0.0621,-0.17198 -0.0609,-0.17078 -0.0597,-0.16958 -0.0597,-0.16715 -0.0598,-0.16478 -0.0597,-0.16357 -0.0585,-0.16234 -0.0573,-0.15875 -0.0573,-0.15634 -0.0549,-0.15274 -0.0573,-0.15274 -0.0537,-0.14913 -0.0525,-0.14552 -0.0525,-0.14191 -0.0525,-0.14072 -0.0501,-0.1371 -0.0502,-0.13349 -0.0477,-0.13109 -0.0477,-0.12508 -0.0442,-0.12387 -0.0454,-0.11786 -0.0442,-0.11665 -0.0406,-0.10944 -0.0417,-0.10824 -0.0382,-0.10223 -0.0369,-0.0986 -0.0358,-0.0938 -0.0358,-0.0902 -0.031,-0.0854 -0.0298,-0.0758 -0.0298,-0.0746 -0.0275,-0.0709 0.94063,-0.37523 0.0275,0.071 0.0298,0.0746 0.0323,0.0854 0.0335,0.0854 0.0335,0.0902 0.0358,0.0937 0.0394,0.10096 0.0382,0.10222 0.0417,0.10824 0.043,0.11426 0.0417,0.11424 0.0454,0.12027 0.0466,0.12388 0.0477,0.12747 0.0478,0.13109 0.0502,0.1335 0.0502,0.1371 0.0525,0.14071 0.0525,0.14432 0.0549,0.14793 0.0537,0.14913 0.0549,0.15032 0.0573,0.15516 0.0573,0.15873 0.0573,0.15876 0.0585,0.16236 0.0597,0.16357 0.0596,0.16715 0.0598,0.16717 0.0621,0.16958 0.0609,0.17077 0.0621,0.17438 0.0191,0.27542 z m -0.0191,-0.27541 0.0477,0.13471 -0.0286,0.1407 -0.0191,-0.27541 z m -1.8132,2.3945 -0.88811,-0.48828 0.0764,-0.1347 0.0777,-0.12747 0.0788,-0.12268 0.0811,-0.11425 0.0811,-0.10824 0.0811,-0.10106 0.08,-0.0962 0.0848,-0.0938 0.0811,-0.0842 0.08,-0.0794 0.08,-0.0758 0.0799,-0.0709 0.0752,-0.0662 0.0752,-0.0613 0.074,-0.0602 0.0716,-0.0553 0.0633,-0.0481 0.0609,-0.047 0.0597,-0.0458 0.0549,-0.042 0.0489,-0.0372 0.0442,-0.036 0.0405,-0.0337 0.0335,-0.0288 0.0226,-0.0228 0.0167,-0.0168 0.0167,-0.0205 0.0119,-0.0157 0,0.001 0,-0.002 0,0.002 -0.002,0.007 0.99076,0.20685 -0.0263,0.10096 -0.0358,0.0938 -0.0429,0.0865 -0.0525,0.0854 -0.0502,0.0662 -0.0501,0.0613 -0.0597,0.0649 -0.0609,0.0565 -0.0573,0.0505 -0.0573,0.0481 -0.0585,0.0458 -0.0585,0.047 -0.0598,0.0445 -0.0573,0.0433 -0.0609,0.047 -0.0633,0.0481 -0.0597,0.0458 -0.0597,0.0482 -0.0609,0.0518 -0.0633,0.0541 -0.0609,0.0541 -0.0609,0.059 -0.0633,0.0625 -0.0621,0.0649 -0.0609,0.0673 -0.0633,0.0746 -0.0621,0.077 -0.0621,0.0842 -0.0621,0.0878 -0.0597,0.0914 -0.0609,0.10096 -0.0597,0.10584 z m -2.1618,4.8599 -0.80455,-0.61815 0.068,-0.0938 0.068,-0.10342 0.0692,-0.10824 0.0656,-0.11546 0.0692,-0.12387 0.0656,-0.12988 0.068,-0.1347 0.0656,-0.14191 0.0657,-0.14433 0.0633,-0.15032 0.0656,-0.15395 0.0633,-0.15634 0.0633,-0.15995 0.0633,-0.16235 0.0621,-0.16116 0.0621,-0.16718 0.0633,-0.16716 0.0609,-0.16717 0.0621,-0.16596 0.0609,-0.16838 0.0621,-0.16596 0.0621,-0.16597 0.0633,-0.16356 0.0621,-0.16235 0.0633,-0.16117 0.0633,-0.15873 0.0657,-0.15516 0.0657,-0.15153 0.0668,-0.14912 0.068,-0.14312 0.0692,-0.1407 0.0717,-0.13712 0.88811,0.48829 -0.0598,0.11304 -0.0597,0.12147 -0.0609,0.12868 -0.0597,0.1323 -0.0609,0.1395 -0.0585,0.14311 -0.0609,0.14913 -0.0609,0.15155 -0.0597,0.15753 -0.0609,0.15876 -0.0598,0.16356 -0.0621,0.16356 -0.0609,0.16597 -0.0621,0.16836 -0.0633,0.16958 -0.0633,0.16716 -0.0621,0.16958 -0.0645,0.17077 -0.0657,0.16718 -0.0656,0.16717 -0.068,0.16596 -0.068,0.16355 -0.0704,0.16236 -0.0728,0.15876 -0.0729,0.15634 -0.0752,0.15394 -0.0777,0.14913 -0.0789,0.14551 -0.0823,0.14192 -0.0859,0.13711 -0.0871,0.12988 -0.0919,0.12747 z m -3.8115,2.6867 0.17906,-1.003 0.0442,0.006 0.049,0.002 0.0537,0 0.0537,-0.005 0.0561,-0.008 0.0598,-0.0132 0.0668,-0.0205 0.0728,-0.024 0.0704,-0.0288 0.0764,-0.036 0.0811,-0.0409 0.0836,-0.0481 0.0836,-0.0517 0.0883,-0.0589 0.092,-0.0649 0.0919,-0.0697 0.0979,-0.0782 0.0978,-0.0818 0.0967,-0.0866 0.10025,-0.0914 0.10267,-0.0997 0.10505,-0.10465 0.10385,-0.10582 0.10623,-0.11425 0.10863,-0.11906 0.11102,-0.12508 0.10862,-0.12508 0.10982,-0.1335 0.11459,-0.1395 0.1134,-0.1395 0.11341,-0.14553 0.11459,-0.15033 0.80456,0.61816 -0.12176,0.15756 -0.12056,0.15514 -0.12057,0.15153 -0.11938,0.14432 -0.11936,0.14311 -0.12057,0.13951 -0.11817,0.13229 -0.11578,0.12868 -0.11818,0.12628 -0.11817,0.12266 -0.11699,0.11427 -0.11458,0.11183 -0.11699,0.10825 -0.11818,0.10343 -0.11698,0.0962 -0.1122,0.0902 -0.1158,0.089 -0.11579,0.0818 -0.11459,0.0782 -0.11936,0.0734 -0.117,0.0649 -0.11459,0.0602 -0.11937,0.0553 -0.12056,0.0481 -0.11818,0.0409 -0.11937,0.0349 -0.12413,0.0277 -0.12535,0.0205 -0.12533,0.009 -0.12296,0.002 -0.12533,-0.007 -0.12535,-0.0181 z m -2.1916,-4.8395 1.0075,-0.0866 0,0.001 0.0238,0.26097 0.025,0.25256 0.0275,0.24292 0.0298,0.23211 0.031,0.22491 0.0347,0.21286 0.0358,0.20565 0.0369,0.19604 0.0382,0.1864 0.0417,0.1768 0.043,0.16717 0.0442,0.15874 0.0466,0.15033 0.0466,0.14072 0.0477,0.12989 0.0501,0.12146 0.0514,0.11426 0.0501,0.10342 0.0514,0.095 0.0513,0.0854 0.0514,0.077 0.0513,0.0697 0.0502,0.0613 0.049,0.0517 0.0466,0.0446 0.0477,0.0397 0.0466,0.0325 0.0417,0.0253 0.043,0.0217 0.0429,0.0181 0.0442,0.0132 0.0417,0.009 -0.17907,1.003 -0.12533,-0.0288 -0.11817,-0.0372 -0.11937,-0.047 -0.1146,-0.0577 -0.11101,-0.0662 -0.10386,-0.0758 -0.10025,-0.0806 -0.099,-0.0925 -0.092,-0.0997 -0.0859,-0.10464 -0.0823,-0.11064 -0.08,-0.12026 -0.0752,-0.12629 -0.0704,-0.13108 -0.0692,-0.13951 -0.0633,-0.14552 -0.0621,-0.15274 -0.0598,-0.16115 -0.0561,-0.16717 -0.0537,-0.17438 -0.0514,-0.18281 -0.0478,-0.18881 -0.0466,-0.19844 -0.0429,-0.20565 -0.0417,-0.21287 -0.0382,-0.22249 -0.0369,-0.22971 -0.0335,-0.23932 -0.0323,-0.24655 -0.0275,-0.25736 -0.0275,-0.26217 -0.0238,-0.27542 0,0.001 z m -1.3262,-2.7024 0.69472,-0.74081 0.0777,0.0758 0.0788,0.0806 0.0764,0.083 0.074,0.083 0.0728,0.0865 0.0728,0.0878 0.0716,0.0925 0.068,0.0925 0.0692,0.0962 0.0657,0.0974 0.0644,0.0974 0.0633,0.10343 0.0621,0.10343 0.0585,0.10463 0.0561,0.10342 0.0561,0.10825 0.0549,0.11064 0.0502,0.10944 0.0489,0.10944 0.049,0.11667 0.0442,0.11424 0.0406,0.11304 0.0394,0.11426 0.0371,0.11546 0.0346,0.12027 0.031,0.11784 0.0287,0.11546 0.0263,0.12388 0.0216,0.11906 0.0179,0.12147 0.0156,0.11906 0.0119,0.12026 -1.0075,0.0866 -0.009,-0.0914 -0.0107,-0.0925 -0.0155,-0.0925 -0.0167,-0.0925 -0.0191,-0.0902 -0.0238,-0.0962 -0.0238,-0.0962 -0.0275,-0.0914 -0.0298,-0.0938 -0.0323,-0.095 -0.0358,-0.0962 -0.0346,-0.0925 -0.0369,-0.0902 -0.0417,-0.0925 -0.0429,-0.0926 -0.043,-0.089 -0.0466,-0.089 -0.049,-0.089 -0.0489,-0.0878 -0.0501,-0.0842 -0.0514,-0.0818 -0.0549,-0.083 -0.0537,-0.0806 -0.0549,-0.077 -0.0585,-0.0782 -0.0573,-0.0733 -0.0561,-0.0709 -0.0609,-0.0697 -0.0597,-0.0685 -0.0597,-0.0637 -0.0597,-0.0613 -0.0609,-0.059 z m -2.0436,-1.0535 0.49418,-0.88996 0.12653,0.071 0.11699,0.0637 0.1122,0.059 0.10386,0.0542 0.10147,0.0493 0.092,0.0458 0.0848,0.0409 0.0788,0.036 0.0764,0.0325 0.0729,0.0325 0.068,0.0277 0.0621,0.0265 0.0609,0.0228 0.0621,0.0253 0.0597,0.0228 0.0513,0.0217 0.0536,0.0205 0.0573,0.0241 0.0536,0.0228 0.0513,0.0217 0.0549,0.0253 0.0621,0.03 0.0561,0.0313 0.0514,0.0288 0.0633,0.0372 0.0597,0.0409 0.0501,0.036 0.0621,0.0445 0.0609,0.0493 0.0585,0.0493 0.0585,0.053 0.0609,0.0565 -0.69472,0.74083 -0.0466,-0.042 -0.0417,-0.0385 -0.0394,-0.0325 -0.0323,-0.0277 -0.031,-0.0228 -0.0382,-0.0265 -0.0286,-0.0193 -0.025,-0.0156 -0.0346,-0.0193 -0.0323,-0.0169 -0.0263,-0.0132 -0.0358,-0.0156 -0.0417,-0.0193 -0.0417,-0.0181 -0.0429,-0.0169 -0.0514,-0.0205 -0.0561,-0.0217 -0.0548,-0.0228 -0.0598,-0.0228 -0.068,-0.0277 -0.0717,-0.0288 -0.0777,-0.0325 -0.08,-0.0349 -0.0859,-0.0372 -0.0931,-0.0433 -0.099,-0.0458 -0.10148,-0.0505 -0.10623,-0.0541 -0.11579,-0.059 -0.11938,-0.0637 -0.12892,-0.0685 -0.13608,-0.0758 z m -2.4733,-1.9687 0.74963,-0.68311 0.0573,0.0625 0.0549,0.0602 0.0573,0.059 0.0596,0.0625 0.0609,0.0602 0.0597,0.0613 0.0598,0.059 0.0633,0.059 0.0609,0.0577 0.0645,0.0577 0.0668,0.0602 0.0645,0.0565 0.0656,0.0565 0.068,0.0565 0.0692,0.0577 0.0692,0.0565 0.0704,0.0553 0.0692,0.0542 0.0704,0.0541 0.0728,0.0541 0.074,0.053 0.074,0.053 0.074,0.0517 0.0752,0.0517 0.08,0.053 0.0752,0.0505 0.0777,0.0481 0.0788,0.0493 0.0788,0.047 0.0848,0.0505 0.0799,0.0481 0.0811,0.0458 -0.49419,0.88997 -0.0931,-0.053 -0.0896,-0.053 -0.0848,-0.0505 -0.0908,-0.0542 -0.0883,-0.0565 -0.0871,-0.0553 -0.0871,-0.0577 -0.0823,-0.0553 -0.0848,-0.0565 -0.0836,-0.0589 -0.0811,-0.0577 -0.0811,-0.0602 -0.0799,-0.0589 -0.0823,-0.0613 -0.0789,-0.0613 -0.0777,-0.0625 -0.0764,-0.0613 -0.0764,-0.0625 -0.0752,-0.0637 -0.0752,-0.0637 -0.074,-0.0662 -0.0692,-0.0625 -0.0716,-0.0649 -0.0728,-0.0673 -0.068,-0.0662 -0.0717,-0.0685 -0.0668,-0.0662 -0.0656,-0.0673 -0.0645,-0.0673 -0.0668,-0.0685 -0.0645,-0.0721 -0.0621,-0.0673 z m -1.1125,-2.4077 0.9454,-0.3632 0.0286,0.0782 0.0275,0.0758 0.0275,0.0795 0.025,0.0758 0.025,0.0758 0.0238,0.0758 0.0227,0.0721 0.0226,0.0722 0.0226,0.0721 0.0238,0.0758 0.0204,0.0685 0.0226,0.0673 0.0226,0.0709 0.0204,0.0649 0.0226,0.0625 0.025,0.0673 0.025,0.0673 0.0238,0.0625 0.025,0.0601 0.0275,0.0637 0.0263,0.0602 0.0275,0.0553 0.031,0.0613 0.031,0.0577 0.0335,0.0565 0.0357,0.059 0.0346,0.0541 0.0382,0.0553 0.0405,0.0553 0.043,0.0553 0.0442,0.0565 0.0466,0.053 -0.74965,0.6831 -0.068,-0.0793 -0.0633,-0.0758 -0.0597,-0.077 -0.0573,-0.0795 -0.0549,-0.0793 -0.0513,-0.0806 -0.0478,-0.0782 -0.0454,-0.0806 -0.0429,-0.0795 -0.0406,-0.0782 -0.0394,-0.0818 -0.0357,-0.0795 -0.0347,-0.0782 -0.0323,-0.0795 -0.031,-0.0794 -0.0275,-0.0746 -0.0275,-0.0746 -0.0275,-0.0794 -0.0275,-0.0794 -0.0226,-0.0709 -0.025,-0.077 -0.0226,-0.0758 -0.0216,-0.0685 -0.0226,-0.0722 -0.0226,-0.0721 -0.0227,-0.0721 -0.0215,-0.0685 -0.0226,-0.0685 -0.0226,-0.0685 -0.0226,-0.0649 -0.025,-0.0685 -0.0238,-0.0662 z m -0.73293,-2.5003 1.0051,0.10344 0,0.001 -0.004,0.042 0,0.0481 -0.001,0.0505 0.004,0.0481 0.004,0.047 0.007,0.047 0.009,0.059 0.0107,0.0577 0.0119,0.0541 0.0131,0.053 0.0179,0.0602 0.0179,0.0602 0.0215,0.0625 0.0215,0.0625 0.0227,0.0613 0.025,0.0637 0.0263,0.0673 0.0275,0.0662 0.0286,0.0685 0.0286,0.0662 0.031,0.0697 0.031,0.0722 0.031,0.0673 0.0323,0.0734 0.0335,0.0758 0.031,0.0709 0.0323,0.071 0.0347,0.0794 0.031,0.077 0.0298,0.0733 0.0323,0.0782 0.031,0.0794 -0.9454,0.36321 -0.0238,-0.0649 -0.0275,-0.0662 -0.0298,-0.0734 -0.0286,-0.0673 -0.0275,-0.0649 -0.0323,-0.0709 -0.031,-0.0733 -0.031,-0.0685 -0.0323,-0.071 -0.0335,-0.0746 -0.031,-0.0721 -0.0335,-0.0722 -0.031,-0.0758 -0.0335,-0.0758 -0.0298,-0.0758 -0.031,-0.0746 -0.0298,-0.0782 -0.0298,-0.0806 -0.0263,-0.077 -0.0263,-0.0795 -0.025,-0.0818 -0.0226,-0.0794 -0.0226,-0.0866 -0.0191,-0.0878 -0.0155,-0.0818 -0.0144,-0.0806 -0.0119,-0.0902 -0.008,-0.0925 -0.004,-0.0914 -0.001,-0.0866 0.002,-0.0914 0.008,-0.095 0,0.001 z m 1.0051,0.10344 0,0.001 -0.009,0.0914 0.009,-0.0925 z m 0.34737,-1.5923 0,-1.0198 0.38913,0.83463 -0.0406,0.0505 -0.0358,0.0458 -0.0406,0.0553 -0.0369,0.0505 -0.0335,0.0493 -0.0357,0.053 -0.0323,0.0505 -0.031,0.053 -0.0323,0.0553 -0.0298,0.053 -0.0298,0.0542 -0.0287,0.0553 -0.025,0.0505 -0.0238,0.0553 -0.0275,0.0602 -0.0215,0.0505 -0.0215,0.0565 -0.0216,0.0553 -0.0204,0.0565 -0.0191,0.0589 -0.0179,0.0577 -0.0179,0.0565 -0.0156,0.059 -0.0156,0.0589 -0.0131,0.059 -0.0143,0.0577 -0.009,0.0553 -0.0119,0.0637 -0.009,0.0602 -0.008,0.0601 -0.009,0.0602 -0.006,0.0601 -1.0051,-0.10342 0.008,-0.0794 0.009,-0.077 0.0107,-0.0794 0.0144,-0.077 0.0119,-0.0734 0.0167,-0.0818 0.0167,-0.077 0.0179,-0.0758 0.0204,-0.0758 0.0204,-0.0758 0.0226,-0.0758 0.0226,-0.0746 0.0263,-0.0733 0.025,-0.0758 0.0286,-0.0746 0.0286,-0.0733 0.0335,-0.077 0.0298,-0.0673 0.0335,-0.0721 0.037,-0.0746 0.0357,-0.0697 0.0371,-0.071 0.0394,-0.0697 0.0394,-0.0673 0.043,-0.0697 0.0442,-0.0697 0.043,-0.0649 0.0478,-0.0709 0.049,-0.0649 0.0454,-0.0625 0.0525,-0.0697 0.0525,-0.0625 0.38915,0.83464 z m 0,-1.0198 1.0755,0 -0.68638,0.83463 -0.38913,-0.83463 z m -10e-4,0 10e-4,0 0,1.0198 -10e-4,0 -0.38915,-0.83465 0.38915,-0.1852 z m 0,1.0198 -1.0755,0 0.68636,-0.83465 0.38915,0.83465 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path263" + d="m 406.51,226.13 c 0.0692,0.32111 0.14802,0.63621 0.22203,0.94408 -1.4456,0.33916 -2.6428,0.93446 -3.6408,1.7523 -0.99554,0.81781 -1.7941,1.8677 -2.4256,3.1281 0.22083,-1.3951 0.91437,-2.6434 1.9338,-3.6452 1.017,-1.0018 2.3659,-1.7643 3.9094,-2.1792 h 0.001 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path265" + d="m 405.92,224.45 c -0.13966,-0.31028 -0.28528,-0.62178 -0.43212,-0.93206 -1.6091,-0.1335 -3.1645,-0.54479 -4.6864,-1.205 -1.5088,-0.65545 -2.9854,-1.555 -4.4465,-2.6711 1.1579,1.2977 2.6643,2.4017 4.3188,3.2279 1.6688,0.83463 3.4904,1.3854 5.2451,1.5803 h 10e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path267" + d="m 391.36,213.8 c 0.99315,0.3656 1.6592,0.82141 2.8016,1.7667 0.8702,0.72038 1.3441,1.7607 1.5136,2.9477 0.1707,1.193 0.0394,2.5448 -0.29365,3.8846 -0.20532,0.83104 0.0466,2.2478 0.53597,3.644 0.48702,1.3878 1.2176,2.7613 1.9565,3.5009 2.4435,2.4498 4.16,5.0391 3.4772,6.6422 -0.44644,1.0499 -0.78426,1.3217 -1.4838,1.798 -0.29127,-0.59891 -0.98599,-1.1353 -1.2212,-2.1527 -0.30319,-1.3121 -0.79142,-2.6711 -1.5661,-3.4865 -0.59923,-0.63861 -0.73173,-1.3518 -2.2203,-2.279 -0.96332,-0.60252 -1.7822,-0.34396 -2.4375,-1.1497 -1.2689,-1.5598 -2.9329,-5.3758 -1.3059,-7.1173 1.6031,-1.7186 2.1773,-2.6891 0.82366,-5.6488 -0.46077,-1.0066 -0.44883,-1.7402 -0.58133,-2.35 h 0.001 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path269" + d="m 394.49,215.17 -0.6422,0.78653 0,0 -0.10506,-0.0865 -0.10147,-0.083 -0.0979,-0.0795 -0.0955,-0.077 -0.0942,-0.0746 -0.0931,-0.0722 -0.0896,-0.0709 -0.0859,-0.0662 -0.0871,-0.0649 -0.0836,-0.0625 -0.0811,-0.059 -0.0811,-0.0577 -0.0811,-0.0565 -0.0752,-0.053 -0.0777,-0.0505 -0.0777,-0.0505 -0.0752,-0.0482 -0.074,-0.0445 -0.0777,-0.0458 -0.0728,-0.0433 -0.074,-0.0409 -0.0764,-0.042 -0.0752,-0.0385 -0.0752,-0.0385 -0.0764,-0.036 -0.0764,-0.0372 -0.0788,-0.0348 -0.0789,-0.0349 -0.0823,-0.0337 -0.0823,-0.0337 -0.0848,-0.0325 -0.0859,-0.0325 0.34617,-0.95731 0.0979,0.0372 0.0967,0.0372 0.0942,0.0384 0.092,0.0385 0.0931,0.0397 0.0931,0.042 0.0908,0.042 0.0883,0.0433 0.0896,0.0458 0.0871,0.0458 0.0859,0.047 0.0883,0.0481 0.0871,0.0505 0.0848,0.0505 0.0884,0.0541 0.0871,0.0553 0.0848,0.0553 0.0871,0.0577 0.0896,0.0602 0.0859,0.0613 0.0884,0.0625 0.0908,0.0662 0.0908,0.0673 0.0919,0.0697 0.0931,0.0709 0.0942,0.0735 0.0955,0.0746 0.099,0.0793 0.10025,0.0795 0.10267,0.0842 0.10384,0.0854 0.10744,0.089 0,0 z m 1.6926,3.2688 -1.0003,0.14431 -0.0156,-0.10096 -0.0179,-0.10096 -0.0191,-0.10223 -0.0191,-0.0974 -0.0226,-0.0974 -0.0226,-0.0974 -0.0263,-0.0937 -0.0275,-0.0974 -0.0286,-0.0938 -0.0286,-0.089 -0.0335,-0.0914 -0.0335,-0.089 -0.0346,-0.0865 -0.0358,-0.0842 -0.0406,-0.0865 -0.0394,-0.0842 -0.043,-0.083 -0.0429,-0.0795 -0.0466,-0.0794 -0.0466,-0.0782 -0.0502,-0.077 -0.0502,-0.0746 -0.0514,-0.0722 -0.0549,-0.0709 -0.0561,-0.071 -0.0573,-0.0685 -0.0597,-0.0662 -0.0633,-0.0662 -0.0656,-0.0661 -0.0633,-0.0601 -0.068,-0.0613 -0.0704,-0.0602 0.64222,-0.78653 0.0896,0.077 0.0896,0.0782 0.0871,0.0842 0.0823,0.083 0.0799,0.0854 0.0789,0.0878 0.0764,0.0902 0.0728,0.0902 0.0692,0.0925 0.0704,0.0962 0.0645,0.0962 0.0621,0.0962 0.0609,0.0997 0.0585,0.10096 0.0549,0.10343 0.0525,0.10223 0.0513,0.10341 0.0477,0.10584 0.0477,0.10824 0.0442,0.11064 0.0406,0.10825 0.0382,0.11064 0.0382,0.11304 0.0335,0.11306 0.0323,0.10944 0.031,0.11785 0.0275,0.11426 0.0275,0.11666 0.0238,0.11905 0.0216,0.11426 0.0204,0.12027 0.0179,0.12026 z m -0.30319,4.0794 -0.98123,-0.24535 0,-0.001 0.0298,-0.12028 0.0275,-0.12146 0.0286,-0.12267 0.025,-0.11906 0.025,-0.12026 0.0238,-0.12268 0.0216,-0.11785 0.0204,-0.12027 0.0204,-0.12026 0.0179,-0.12027 0.0167,-0.12147 0.0167,-0.11906 0.0143,-0.11666 0.0131,-0.11665 0.0107,-0.11906 0.0107,-0.11786 0.008,-0.11547 0.007,-0.11664 0.007,-0.11666 0.005,-0.11185 10e-4,-0.11425 0.002,-0.11305 -0.001,-0.11185 -10e-4,-0.11184 -0.002,-0.11185 -0.005,-0.11064 -0.006,-0.10945 -0.007,-0.10703 -0.009,-0.10703 -0.0107,-0.10463 -0.0119,-0.10584 -0.0144,-0.10463 1.0003,-0.14432 0.0167,0.11906 0.0144,0.12268 0.0131,0.12146 0.009,0.12388 0.009,0.12387 0.006,0.12388 0.005,0.12266 0.005,0.12627 0.001,0.12388 10e-4,0.12628 -0.002,0.12749 -0.004,0.12627 -0.005,0.13109 -0.007,0.12628 -0.007,0.12627 -0.0107,0.12989 -0.0107,0.12748 -0.0131,0.12869 -0.0131,0.13109 -0.0167,0.13108 -0.0167,0.12869 -0.0191,0.12869 -0.0204,0.12988 -0.0204,0.12989 -0.0226,0.12989 -0.0238,0.13229 -0.0263,0.12988 -0.025,0.12988 -0.0298,0.1335 -0.0286,0.12747 -0.0298,0.13109 -0.0323,0.12989 0,-0.001 z m -0.98123,-0.24535 0,-0.001 0.049,-0.19483 -0.049,0.19602 z m 1.5029,3.5971 -0.95257,0.33915 -0.0477,-0.1371 -0.0442,-0.1347 -0.0442,-0.1347 -0.043,-0.13589 -0.0406,-0.13711 -0.0382,-0.13349 -0.0382,-0.13349 -0.0358,-0.1347 -0.0346,-0.1335 -0.031,-0.13349 -0.031,-0.12988 -0.0286,-0.13349 -0.0275,-0.1311 -0.0238,-0.12868 -0.0216,-0.12507 -0.0215,-0.12749 -0.0191,-0.12748 -0.0156,-0.12267 -0.0144,-0.12146 -0.0131,-0.12147 -0.009,-0.12027 -0.007,-0.11906 -0.004,-0.11666 -0.004,-0.11064 0,-0.11305 0.004,-0.11425 0.006,-0.10825 0.008,-0.10703 0.0131,-0.10463 0.0143,-0.10222 0.0191,-0.10463 0.0226,-0.0986 0.98121,0.24535 -0.0131,0.0602 -0.0119,0.0613 -0.009,0.0709 -0.008,0.0733 -0.006,0.0782 -0.006,0.0818 -0.001,0.0806 0,0.089 0.001,0.0938 0.004,0.095 0.007,0.0974 0.007,0.0985 0.0107,0.10223 0.0119,0.10704 0.0156,0.11064 0.0143,0.10823 0.0191,0.11064 0.0215,0.11787 0.0215,0.11424 0.0226,0.11667 0.0263,0.11665 0.0286,0.12267 0.0287,0.12147 0.0323,0.12147 0.031,0.12266 0.0357,0.12387 0.0358,0.12628 0.0382,0.12508 0.0382,0.12387 0.0417,0.12749 0.0417,0.12747 0.0429,0.12508 z m 1.8371,3.3097 -0.71381,0.7216 -0.0777,-0.0795 -0.0777,-0.083 -0.0777,-0.089 -0.0752,-0.0902 -0.0752,-0.0925 -0.074,-0.0962 -0.0728,-0.0974 -0.074,-0.10223 -0.0717,-0.10342 -0.0704,-0.10343 -0.0717,-0.10944 -0.0692,-0.11064 -0.0692,-0.11426 -0.068,-0.11425 -0.0668,-0.11545 -0.068,-0.12027 -0.0644,-0.12026 -0.0645,-0.12147 -0.0644,-0.12508 -0.0609,-0.12387 -0.0621,-0.12508 -0.0609,-0.12988 -0.0598,-0.12989 -0.0585,-0.12989 -0.0573,-0.13109 -0.0549,-0.12989 -0.0561,-0.13228 -0.0536,-0.13591 -0.0513,-0.13229 -0.0514,-0.13469 -0.0489,-0.13349 -0.0477,-0.13591 0.95256,-0.33914 0.0454,0.12387 0.0466,0.12628 0.0466,0.12509 0.049,0.12507 0.0489,0.12146 0.0513,0.12267 0.0525,0.12508 0.0525,0.12147 0.0537,0.12026 0.0549,0.12027 0.0561,0.11546 0.0573,0.11784 0.0585,0.11666 0.0573,0.11304 0.0597,0.11186 0.0597,0.11064 0.0585,0.10585 0.0621,0.10582 0.0609,0.10463 0.0621,0.0999 0.0621,0.0985 0.0621,0.095 0.0633,0.0938 0.0621,0.0914 0.0621,0.0854 0.0633,0.0854 0.0621,0.0795 0.0633,0.0782 0.0609,0.0734 0.0609,0.0673 0.0609,0.0662 0.0609,0.0625 z m 3.5847,7.2039 -0.92868,-0.40169 0.0405,-0.10944 0.031,-0.11426 0.0227,-0.12267 0.0119,-0.12748 0.002,-0.13709 -0.006,-0.14432 -0.0179,-0.15274 -0.0275,-0.15996 -0.0382,-0.16355 -0.049,-0.17198 -0.0597,-0.17919 -0.0716,-0.18521 -0.08,-0.19003 -0.0896,-0.19362 -0.10147,-0.19845 -0.10863,-0.20203 -0.12057,-0.20446 -0.12772,-0.21046 -0.13846,-0.21287 -0.14564,-0.21407 -0.15399,-0.21768 -0.16234,-0.21888 -0.1695,-0.22129 -0.17668,-0.22249 -0.18383,-0.2237 -0.18978,-0.22489 -0.19577,-0.2261 -0.20294,-0.2273 -0.2065,-0.22489 -0.21367,-0.2261 -0.21845,-0.2273 -0.22323,-0.2261 0.71384,-0.7216 0.23038,0.23333 0.2256,0.23451 0.22323,0.23572 0.21606,0.23692 0.21248,0.23692 0.20532,0.23572 0.19934,0.23693 0.19338,0.23571 0.18621,0.23452 0.18145,0.23572 0.17189,0.23572 0.16592,0.23211 0.15757,0.23332 0.15041,0.23211 0.14205,0.2297 0.1325,0.22851 0.12534,0.2285 0.1134,0.2273 0.10624,0.2249 0.0942,0.22369 0.0836,0.22128 0.074,0.22009 0.0633,0.22008 0.0502,0.21889 0.0369,0.21527 0.025,0.21528 0.0107,0.21407 -0.005,0.21167 -0.0215,0.20926 -0.0371,0.20685 -0.0548,0.20325 -0.074,0.19604 z m -2.4017,1.8208 0.90721,-0.44739 -0.73651,-0.19844 0.0633,-0.0432 0.0597,-0.0408 0.0573,-0.0409 0.0585,-0.0409 0.0514,-0.036 0.0477,-0.036 0.0502,-0.0385 0.0454,-0.0348 0.0454,-0.0372 0.043,-0.0349 0.0358,-0.0312 0.0417,-0.0385 0.0357,-0.0337 0.0357,-0.0372 0.037,-0.0372 0.031,-0.036 0.0358,-0.042 0.0346,-0.042 0.0323,-0.0421 0.0346,-0.0457 0.0323,-0.047 0.031,-0.0481 0.0346,-0.0541 0.0357,-0.0613 0.0357,-0.059 0.0323,-0.0613 0.0357,-0.0685 0.0358,-0.0722 0.0369,-0.0782 0.0382,-0.0806 0.0382,-0.0854 0.0394,-0.0914 0.92869,0.4017 -0.0442,0.10096 -0.043,0.0974 -0.043,0.095 -0.0442,0.0902 -0.043,0.0866 -0.043,0.083 -0.0466,0.0854 -0.0454,0.0782 -0.043,0.071 -0.0442,0.0733 -0.0477,0.0722 -0.049,0.0685 -0.0466,0.0649 -0.0514,0.0662 -0.049,0.059 -0.0477,0.0565 -0.0549,0.0601 -0.0514,0.0542 -0.0525,0.0541 -0.0573,0.053 -0.0513,0.0481 -0.0597,0.053 -0.0573,0.047 -0.0549,0.0446 -0.0597,0.047 -0.0573,0.0433 -0.0621,0.0458 -0.0633,0.0458 -0.0585,0.0409 -0.0645,0.0458 -0.0645,0.0432 -0.0657,0.0458 -0.7365,-0.19844 z m 0.73651,0.19843 -0.48105,0.32713 -0.25546,-0.52556 0.73651,0.19843 z m -1.997,-2.4594 0.986,-0.2309 0.0191,0.0782 0.0216,0.0758 0.0215,0.0697 0.0275,0.0721 0.0275,0.0721 0.0275,0.0662 0.0298,0.0662 0.0335,0.0673 0.0323,0.0637 0.0335,0.0602 0.0357,0.0602 0.0382,0.0625 0.0394,0.0613 0.0394,0.0613 0.0382,0.0542 0.0406,0.0565 0.0454,0.0637 0.043,0.059 0.043,0.0577 0.0429,0.0577 0.0442,0.059 0.043,0.0565 0.0429,0.0577 0.0454,0.0613 0.0442,0.0601 0.0429,0.0613 0.0442,0.0661 0.0417,0.0625 0.0406,0.0662 0.0382,0.0661 0.0382,0.0673 0.0369,0.0746 -0.90721,0.44739 -0.0204,-0.0385 -0.0238,-0.0432 -0.0263,-0.0446 -0.0286,-0.0444 -0.0298,-0.0481 -0.0323,-0.047 -0.0357,-0.0493 -0.0369,-0.053 -0.0382,-0.0517 -0.043,-0.0553 -0.0429,-0.059 -0.0442,-0.059 -0.0454,-0.0602 -0.0477,-0.0649 -0.0454,-0.0637 -0.0454,-0.0613 -0.0501,-0.0685 -0.0501,-0.0758 -0.049,-0.0733 -0.0466,-0.0733 -0.0477,-0.077 -0.0477,-0.0818 -0.0477,-0.0866 -0.0442,-0.0854 -0.043,-0.089 -0.0417,-0.0902 -0.0417,-0.0974 -0.0369,-0.0962 -0.0346,-0.0985 -0.0357,-0.10824 -0.0286,-0.10703 -0.0286,-0.10944 z m -1.4408,-3.252 0.73532,-0.69994 -0.002,-0.002 0.0823,0.089 0.08,0.0925 0.0777,0.0962 0.0752,0.0974 0.074,0.10223 0.0704,0.10221 0.068,0.10464 0.0656,0.10463 0.0657,0.10945 0.0633,0.11183 0.0621,0.11426 0.0573,0.11425 0.0573,0.11305 0.0561,0.11906 0.0525,0.11906 0.0513,0.11906 0.0502,0.12027 0.0502,0.12387 0.0477,0.12388 0.0442,0.12266 0.0454,0.12388 0.043,0.12748 0.0405,0.12628 0.0406,0.12628 0.0382,0.12748 0.037,0.12629 0.0357,0.12988 0.0347,0.12627 0.0335,0.12628 0.0335,0.12747 0.031,0.1311 0.0298,0.12508 -0.98599,0.2309 -0.0275,-0.12026 -0.0286,-0.11666 -0.031,-0.11785 -0.031,-0.12147 -0.0323,-0.11906 -0.0335,-0.11787 -0.0346,-0.11665 -0.0358,-0.11786 -0.0358,-0.11666 -0.0382,-0.11425 -0.0382,-0.11305 -0.0406,-0.11425 -0.0417,-0.11305 -0.0406,-0.10944 -0.0429,-0.10704 -0.0454,-0.10823 -0.0466,-0.10704 -0.0477,-0.10463 -0.0466,-0.0998 -0.0501,-0.10096 -0.0502,-0.0997 -0.0502,-0.0925 -0.0513,-0.0925 -0.0537,-0.0878 -0.0561,-0.0902 -0.0561,-0.0854 -0.0561,-0.083 -0.0573,-0.0782 -0.0585,-0.0758 -0.0585,-0.0721 -0.0609,-0.0685 -0.0609,-0.0673 -0.002,-0.002 z m 0.002,0.002 -0.0107,-0.0108 0.008,0.008 0.002,0.002 z m -2.1212,-2.1984 0.53238,-0.86591 0.14444,0.0914 0.13608,0.0914 0.12892,0.089 0.12295,0.0902 0.11579,0.0878 0.11101,0.0878 0.10267,0.0866 0.0967,0.0854 0.0942,0.0842 0.0896,0.0865 0.0811,0.083 0.0764,0.0793 0.0764,0.0842 0.0704,0.0818 0.0645,0.0782 0.0597,0.0746 0.0621,0.0782 0.0573,0.0782 0.0502,0.0685 0.0525,0.0723 0.0489,0.0709 0.0454,0.0662 0.0442,0.0637 0.043,0.0602 0.0454,0.0637 0.043,0.059 0.0429,0.059 0.0417,0.0553 0.0417,0.053 0.043,0.0517 0.043,0.0505 0.0466,0.0505 -0.73532,0.69994 -0.0633,-0.0697 -0.0621,-0.0697 -0.0573,-0.071 -0.0561,-0.0697 -0.0513,-0.0697 -0.0502,-0.0661 -0.0477,-0.0685 -0.0454,-0.0637 -0.0477,-0.0673 -0.0466,-0.0685 -0.0454,-0.0637 -0.0442,-0.0637 -0.0454,-0.0625 -0.0477,-0.0662 -0.0454,-0.0613 -0.0478,-0.0613 -0.0525,-0.0649 -0.0549,-0.0662 -0.0537,-0.0625 -0.0573,-0.0625 -0.0645,-0.0673 -0.0668,-0.0685 -0.068,-0.0649 -0.0752,-0.0697 -0.0823,-0.071 -0.0859,-0.0721 -0.0919,-0.0733 -0.099,-0.0758 -0.10386,-0.0758 -0.11221,-0.077 -0.11936,-0.0794 -0.12773,-0.0818 z m -2.5629,-1.2592 0.78306,-0.64702 0,0.001 0.0454,0.053 0.0466,0.0481 0.0454,0.0432 0.0442,0.0397 0.0442,0.0337 0.0454,0.0325 0.0502,0.03 0.0489,0.0288 0.0478,0.024 0.0513,0.0241 0.0549,0.0217 0.0621,0.0241 0.0573,0.0193 0.0644,0.0205 0.0668,0.0205 0.0704,0.0181 0.0752,0.0217 0.074,0.0193 0.0764,0.0205 0.0811,0.0205 0.0859,0.0228 0.0896,0.0253 0.0871,0.0277 0.0919,0.0277 0.0979,0.0337 0.0942,0.0349 0.10147,0.0397 0.10025,0.0445 0.0978,0.047 0.10266,0.0517 0.10744,0.059 0.10384,0.0625 -0.53238,0.86591 -0.0752,-0.0458 -0.0716,-0.0397 -0.074,-0.0372 -0.0764,-0.0349 -0.0716,-0.0325 -0.0704,-0.0277 -0.0752,-0.0277 -0.0692,-0.0241 -0.0752,-0.0228 -0.0777,-0.0229 -0.0728,-0.0205 -0.074,-0.0205 -0.0789,-0.0205 -0.0788,-0.0205 -0.0811,-0.0217 -0.08,-0.0217 -0.0799,-0.0228 -0.0836,-0.0253 -0.0836,-0.0253 -0.0883,-0.0312 -0.0836,-0.0312 -0.0883,-0.036 -0.0896,-0.0408 -0.0908,-0.0458 -0.0871,-0.0505 -0.0859,-0.0541 -0.0883,-0.0613 -0.0871,-0.0673 -0.0848,-0.0733 -0.0811,-0.077 -0.08,-0.0866 -0.0788,-0.0914 0,0.001 z m -1.2832,-7.7896 0.7377,0.69754 -0.001,0 -0.10981,0.13109 -0.0967,0.13951 -0.0836,0.15032 -0.0717,0.16115 -0.0585,0.16838 -0.0454,0.1816 -0.0357,0.19123 -0.0238,0.19843 -0.0107,0.20806 0,0.21768 0.0107,0.22008 0.0226,0.22851 0.0335,0.23211 0.0429,0.23572 0.0525,0.23932 0.0609,0.24174 0.0692,0.23932 0.0764,0.24053 0.0848,0.23933 0.0908,0.23692 0.0955,0.23451 0.10147,0.22971 0.10504,0.2261 0.10862,0.21889 0.11222,0.21166 0.11459,0.20565 0.1146,0.19724 0.11698,0.18641 0.11459,0.17679 0.11579,0.16596 0.11101,0.15274 0.11103,0.13832 -0.78308,0.64702 -0.13011,-0.16717 -0.13011,-0.1768 -0.13011,-0.18761 -0.13131,-0.19844 -0.12892,-0.21046 -0.12653,-0.21647 -0.12653,-0.22491 -0.12175,-0.2333 -0.12057,-0.24053 -0.11459,-0.24776 -0.11102,-0.25134 -0.10742,-0.25857 -0.0978,-0.26097 -0.0942,-0.2658 -0.0859,-0.26939 -0.0788,-0.27059 -0.068,-0.273 -0.0598,-0.273 -0.0502,-0.27421 -0.0382,-0.273 -0.0275,-0.27421 -0.0131,-0.273 0,-0.26819 0.0131,-0.2682 0.031,-0.26577 0.0477,-0.25857 0.0668,-0.25617 0.0871,-0.25015 0.10744,-0.24053 0.12891,-0.23211 0.15161,-0.22129 0.17666,-0.20806 -0.001,0 z m 0.73293,-5.0872 0.91914,-0.42574 0.12534,0.28023 0.11459,0.27058 0.10266,0.26098 0.0931,0.25255 0.0823,0.24295 0.0728,0.23692 0.0609,0.23091 0.0513,0.22249 0.0406,0.21768 0.0298,0.21046 0.0216,0.20927 0.008,0.20444 -0.002,0.19723 -0.0119,0.19484 -0.0226,0.19002 -0.0346,0.18641 -0.0429,0.18159 -0.0536,0.178 -0.0633,0.17438 -0.074,0.17198 -0.08,0.16478 -0.0883,0.16233 -0.0979,0.15997 -0.10147,0.15634 -0.10982,0.15634 -0.11698,0.15515 -0.12176,0.15393 -0.12892,0.15514 -0.13369,0.15514 -0.13847,0.15636 -0.14563,0.15994 -0.14921,0.16116 -0.73771,-0.69754 0.14444,-0.15634 0.13847,-0.15034 0.12892,-0.14671 0.12414,-0.14312 0.1146,-0.1383 0.10743,-0.1347 0.0978,-0.13109 0.0908,-0.12989 0.0848,-0.12748 0.074,-0.12386 0.0668,-0.12389 0.0609,-0.12146 0.0501,-0.11907 0.0442,-0.12146 0.0369,-0.12267 0.031,-0.12629 0.0226,-0.12626 0.0156,-0.1323 0.009,-0.1371 0,-0.14432 -0.006,-0.14913 -0.0143,-0.15634 -0.025,-0.16717 -0.0335,-0.1768 -0.0417,-0.1864 -0.0513,-0.19242 -0.0633,-0.20565 -0.0728,-0.21648 -0.0836,-0.22851 -0.0955,-0.23692 -0.10505,-0.25136 -0.11817,-0.26338 z m -0.12176,-3.0728 0,1.0198 0.49419,-0.61936 0.0131,0.0637 0.0131,0.0685 0.0107,0.0649 0.0119,0.0625 0.009,0.0662 0.0107,0.0625 0.009,0.0637 0.009,0.0685 0.009,0.0662 0.008,0.0565 0.0107,0.0673 0.009,0.0685 0.009,0.0613 0.0119,0.0673 0.0119,0.0709 0.0107,0.0649 0.0131,0.0662 0.0131,0.0673 0.0144,0.0673 0.0167,0.0735 0.0167,0.0722 0.0179,0.0674 0.0204,0.0721 0.0226,0.0782 0.0226,0.0746 0.0238,0.0746 0.0275,0.0782 0.0286,0.0806 0.031,0.0794 0.0323,0.0818 0.037,0.083 0.0382,0.0865 -0.91914,0.42574 -0.0454,-0.10106 -0.0417,-0.0998 -0.0417,-0.10106 -0.0358,-0.0962 -0.0358,-0.095 -0.0323,-0.095 -0.031,-0.0938 -0.0275,-0.0914 -0.025,-0.0854 -0.025,-0.089 -0.0226,-0.0914 -0.0191,-0.0818 -0.0191,-0.0806 -0.0191,-0.0842 -0.0155,-0.0795 -0.0156,-0.0806 -0.0131,-0.077 -0.0119,-0.0709 -0.0119,-0.0722 -0.0119,-0.0758 -0.009,-0.0662 -0.0107,-0.0649 -0.0107,-0.0734 -0.007,-0.0637 -0.009,-0.0565 -0.009,-0.0613 -0.008,-0.0602 -0.009,-0.0565 -0.009,-0.0577 -0.008,-0.053 -0.0107,-0.047 -0.0107,-0.0517 0.49419,-0.61937 z m -0.49418,0.61936 -0.13489,-0.61936 0.62907,0 -0.49418,0.61936 z m 0.49537,0.40048 -10e-4,0 0,-1.0198 10e-4,0 0.17309,0.0313 -0.17309,0.98857 z m 0,-1.0198 0.0883,0 0.0848,0.0313 -0.17309,-0.0313 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path271" + d="m 434.07,226.22 c -1.2772,1.1016 -1.5996,0.88394 -1.9565,1.549 -0.45243,0.84546 -0.24114,2.1287 0.14801,3.3337 1.5375,4.7529 -1.3608,4.3356 -4.8416,2.5172 -1.7321,-0.9044 -3.7542,-3.2171 -5.3251,-4.3788 -1.5781,-1.1594 -2.6858,-1.1509 -3.1179,-1.6308 -0.44166,-1.8773 -0.79619,-3.525 -0.93825,-4.2778 -0.005,0 -0.005,0 -0.005,-0.005 -0.1707,-0.74925 -0.51925,-2.4306 -0.89051,-4.4077 0.21727,-0.58931 1.3047,-0.8611 2.3731,-2.4594 1.0851,-1.6176 2.1654,-4.6362 3.5692,-6.1058 2.8768,-3.0126 5.7655,-4.3067 5.9255,1.4793 0.0394,1.4023 0.28649,2.8202 1.0373,3.5863 0.58849,0.60253 0.83199,0.29224 2.4709,1.1016 1.0684,0.52675 1.9218,1.2159 2.5342,2.0036 0.61476,0.78894 0.48823,1.7294 0.62431,2.6302 0.13489,0.89718 0.53358,1.7643 0.17786,2.6434 -0.35095,0.86952 -0.94541,1.6981 -1.7858,2.4209 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path273" + d="m 432.56,228.01 -0.8905,-0.48347 0,0 0.0417,-0.0746 0.0442,-0.0722 0.0442,-0.0673 0.0477,-0.0673 0.0513,-0.0625 0.0489,-0.0553 0.0525,-0.0553 0.0561,-0.053 0.0536,-0.0458 0.0561,-0.0444 0.0537,-0.0385 0.0549,-0.0385 0.0537,-0.0337 0.0561,-0.036 0.0548,-0.0325 0.0525,-0.0325 0.0609,-0.0337 0.0525,-0.03 0.0561,-0.0349 0.0633,-0.0372 0.0633,-0.0385 0.0668,-0.042 0.0704,-0.0444 0.0716,-0.047 0.0752,-0.053 0.0811,-0.0565 0.0859,-0.0625 0.0896,-0.0673 0.0942,-0.0745 0.10384,-0.0818 0.10386,-0.0866 0.11221,-0.095 0.65653,0.77451 -0.12175,0.10463 -0.11818,0.0962 -0.11102,0.089 -0.10623,0.0842 -0.10386,0.077 -0.0978,0.0722 -0.0931,0.0662 -0.0896,0.0602 -0.0859,0.0565 -0.08,0.0517 -0.0764,0.047 -0.0704,0.0432 -0.0656,0.0397 -0.0633,0.0372 -0.0645,0.0372 -0.049,0.0288 -0.0501,0.03 -0.0454,0.0253 -0.0369,0.024 -0.0369,0.024 -0.031,0.0217 -0.0298,0.0217 -0.0226,0.0181 -0.0226,0.0193 -0.0179,0.0169 -0.0191,0.0193 -0.0226,0.0265 -0.0179,0.0217 -0.0191,0.0265 -0.0227,0.0337 -0.0226,0.0385 -0.025,0.0458 0,0 z m -0.8905,-0.48347 z m 1.0743,3.4179 -0.96212,0.31509 -0.0369,-0.11906 -0.037,-0.11906 -0.0346,-0.11787 -0.0335,-0.11906 -0.0323,-0.11906 -0.0323,-0.12147 -0.0286,-0.12026 -0.0275,-0.11906 -0.0263,-0.12027 -0.025,-0.12267 -0.0226,-0.12387 -0.0191,-0.11906 -0.0167,-0.11906 -0.0167,-0.12027 -0.0131,-0.12027 -0.009,-0.11906 -0.008,-0.11906 -0.005,-0.11786 -0.004,-0.12027 0.002,-0.11786 0.004,-0.11424 0.007,-0.11666 0.0107,-0.11907 0.0156,-0.11304 0.0179,-0.11306 0.0238,-0.11545 0.0275,-0.10823 0.0298,-0.11185 0.0382,-0.10944 0.0405,-0.10703 0.0478,-0.10825 0.0513,-0.10222 0.89049,0.48347 -0.0298,0.0589 -0.0263,0.0577 -0.0238,0.0637 -0.0216,0.0661 -0.0204,0.0685 -0.0179,0.0746 -0.0144,0.0721 -0.0131,0.0795 -0.0107,0.0818 -0.008,0.0806 -0.005,0.0854 -0.004,0.0902 0,0.089 10e-4,0.0914 0.005,0.0937 0.006,0.0974 0.009,0.0974 0.0107,0.0986 0.0119,0.10096 0.0167,0.10463 0.0167,0.10464 0.0179,0.10222 0.0204,0.10342 0.0238,0.10585 0.025,0.10944 0.0263,0.10582 0.0275,0.10704 0.0298,0.10944 0.031,0.10944 0.0323,0.10824 0.0323,0.10945 0.0347,0.10703 z m -5.5555,3.1269 0.46555,-0.90439 0.31751,0.16236 0.31156,0.15394 0.30797,0.14311 0.29842,0.13229 0.29365,0.12267 0.28529,0.11064 0.27456,0.0962 0.2638,0.0854 0.25307,0.0709 0.23874,0.0553 0.2256,0.0408 0.21129,0.0265 0.19338,0.0132 0.17548,-0.004 0.15278,-0.0157 0.1325,-0.0288 0.11699,-0.0385 0.0931,-0.0458 0.08,-0.0565 0.068,-0.0637 0.0597,-0.0794 0.0549,-0.10222 0.0477,-0.12749 0.0369,-0.15513 0.025,-0.18642 0.007,-0.22008 -0.009,-0.25135 -0.031,-0.28502 -0.0536,-0.31751 -0.0764,-0.34997 -0.10025,-0.38004 -0.12654,-0.41371 0.96212,-0.3151 0.13608,0.44739 0.11222,0.42094 0.0859,0.39566 0.0609,0.37042 0.0382,0.34756 0.0143,0.32593 -0.0119,0.30668 -0.0369,0.28982 -0.0656,0.2706 -0.0955,0.25015 -0.12415,0.22971 -0.15518,0.20686 -0.18502,0.17678 -0.20412,0.14312 -0.22442,0.11065 -0.23158,0.0794 -0.2447,0.053 -0.25068,0.0253 -0.25664,0.004 -0.265,-0.0157 -0.26859,-0.0337 -0.27812,-0.0505 -0.28411,-0.0673 -0.29126,-0.0806 -0.29722,-0.095 -0.3032,-0.10825 -0.30918,-0.12026 -0.31513,-0.12989 -0.31991,-0.14191 -0.32468,-0.15274 -0.32826,-0.16115 -0.33186,-0.16957 z m -5.3907,-4.4197 0.59685,-0.82262 10e-4,10e-4 0.15518,0.11787 0.15758,0.12266 0.16115,0.12989 0.15995,0.13471 0.16116,0.13709 0.16353,0.14071 0.16473,0.14673 0.16473,0.14792 0.16592,0.15034 0.16951,0.15273 0.16831,0.15514 0.1683,0.15634 0.16951,0.15636 0.17071,0.15634 0.17069,0.15754 0.1707,0.15635 0.1707,0.15514 0.16951,0.15154 0.17069,0.15153 0.17189,0.14912 0.16951,0.14673 0.16711,0.14191 0.16832,0.1371 0.16711,0.1347 0.16474,0.12869 0.16353,0.12266 0.15995,0.11665 0.16115,0.11065 0.15876,0.10463 0.15399,0.0974 0.15041,0.0878 0.14921,0.0818 -0.46554,0.90437 -0.17785,-0.0962 -0.17907,-0.10463 -0.17786,-0.11184 -0.17547,-0.11667 -0.17786,-0.12266 -0.17905,-0.12868 -0.17787,-0.1347 -0.17665,-0.1383 -0.17667,-0.14192 -0.17787,-0.14672 -0.17666,-0.14913 -0.17667,-0.15154 -0.17429,-0.15394 -0.17546,-0.15394 -0.17667,-0.15875 -0.17308,-0.15754 -0.1731,-0.15876 -0.17308,-0.15754 -0.1707,-0.15876 -0.16951,-0.15634 -0.1683,-0.15393 -0.16593,-0.15273 -0.16473,-0.15034 -0.16354,-0.14793 -0.16233,-0.14552 -0.15758,-0.1395 -0.15637,-0.1359 -0.15399,-0.13229 -0.1504,-0.12508 -0.14682,-0.11787 -0.14564,-0.11544 -0.14085,-0.10584 0.001,0.001 z m 0.59685,-0.82262 10e-4,10e-4 -0.0668,-0.0493 0.0657,0.0481 z m -3.9082,-1.1016 0.9836,-0.23571 -0.11698,-0.22491 0.0156,0.0157 0.0204,0.0193 0.0238,0.0181 0.0335,0.0217 0.0369,0.024 0.0394,0.0205 0.0525,0.0265 0.0561,0.0265 0.0621,0.0265 0.068,0.0277 0.0764,0.03 0.0823,0.0325 0.0836,0.0313 0.0883,0.0337 0.0955,0.0348 0.10147,0.0397 0.10267,0.0397 0.10981,0.0432 0.1122,0.047 0.11461,0.0481 0.12056,0.053 0.12415,0.0577 0.12891,0.0602 0.13131,0.0662 0.1337,0.0685 0.13847,0.077 0.14085,0.0806 0.14324,0.0854 0.14802,0.0925 0.14921,0.0985 0.15279,0.10464 0.15519,0.11184 -0.59685,0.82262 -0.13847,-0.0998 -0.13369,-0.0925 -0.13251,-0.0865 -0.12891,-0.0806 -0.12653,-0.0758 -0.12415,-0.071 -0.11938,-0.0649 -0.11936,-0.0613 -0.11459,-0.059 -0.11221,-0.053 -0.10982,-0.0505 -0.10625,-0.0458 -0.10743,-0.0458 -0.10025,-0.042 -0.10025,-0.0385 -0.0978,-0.0397 -0.0942,-0.0349 -0.0908,-0.0348 -0.0931,-0.0337 -0.0908,-0.036 -0.0848,-0.0325 -0.0836,-0.0325 -0.0848,-0.0348 -0.0836,-0.036 -0.0823,-0.0385 -0.0787,-0.0385 -0.0848,-0.047 -0.0777,-0.0481 -0.074,-0.0505 -0.0787,-0.0613 -0.0704,-0.0625 -0.0704,-0.0709 -0.11698,-0.22491 z m 0.11698,0.2249 -0.0871,-0.0962 -0.0298,-0.12869 0.11698,0.2249 z m -0.56342,-4.1107 0,-1.0198 0.49657,0.41491 0.0144,0.0733 0.0143,0.0758 0.0156,0.0794 0.0179,0.0902 0.0179,0.0914 0.0191,0.0938 0.0226,0.10343 0.0215,0.10703 0.0216,0.10703 0.025,0.11427 0.0263,0.12146 0.0238,0.12146 0.0275,0.12268 0.0286,0.13228 0.0287,0.13349 0.0298,0.13591 0.031,0.14072 0.031,0.14311 0.031,0.14551 0.0335,0.14793 0.0346,0.15153 0.0358,0.15755 0.0335,0.15635 0.0369,0.15874 0.0369,0.16357 0.0369,0.16356 0.0382,0.16476 0.0382,0.16837 0.0394,0.16957 0.0406,0.17319 0.0406,0.17318 0.0406,0.17438 -0.9836,0.23572 -0.0406,-0.17679 -0.0405,-0.17318 -0.0406,-0.17318 -0.0394,-0.16958 -0.0406,-0.17078 -0.0382,-0.16716 -0.0369,-0.16596 -0.0369,-0.16116 -0.0369,-0.16115 -0.0358,-0.16116 -0.0335,-0.15274 -0.0346,-0.15154 -0.0335,-0.15274 -0.0335,-0.14792 -0.031,-0.14311 -0.031,-0.1407 -0.0298,-0.13831 -0.0286,-0.1335 -0.0286,-0.12989 -0.0275,-0.12988 -0.0263,-0.12387 -0.0238,-0.11666 -0.025,-0.11666 -0.0238,-0.11425 -0.0215,-0.10463 -0.0204,-0.10106 -0.0215,-0.10096 -0.0179,-0.0938 -0.0179,-0.0878 -0.0179,-0.0865 -0.0143,-0.0806 -0.0143,-0.0733 0.49658,0.41492 z m 0,-1.0198 0.41779,0 0.0788,0.41491 -0.49657,-0.41491 z m -0.49777,0.61937 0.98599,-0.22851 0.0131,0.11425 0,0.001 0,0.001 0,10e-4 -0.14801,-0.36079 10e-4,0.001 -0.35812,-0.14913 10e-4,0 0.001,0 10e-4,0 0,1.0198 -10e-4,0 -0.001,0 -10e-4,0 -0.3581,-0.14912 -0.001,-0.001 -0.14802,-0.3608 0,-0.001 0,-0.001 0,-0.001 0.0131,0.11424 z m 0.98599,-0.22851 0.0131,0.0577 0,0.0565 -0.0131,-0.11425 z m -1.8574,-4.4702 0.94779,0.35357 0.0226,-0.27179 0.0347,0.184 0.0346,0.18161 0.0346,0.18158 0.0335,0.17801 0.0346,0.17558 0.0335,0.17319 0.0335,0.17077 0.0335,0.16957 0.0323,0.16597 0.031,0.16236 0.0323,0.16115 0.031,0.15754 0.031,0.15394 0.0298,0.15154 0.0298,0.14552 0.0298,0.14433 0.0286,0.1407 0.0287,0.1359 0.0275,0.13349 0.0263,0.12989 0.0263,0.12388 0.0238,0.12026 0.025,0.11545 0.0238,0.11426 0.0226,0.10462 0.0226,0.10224 0.0215,0.0986 0.0204,0.095 0.0191,0.089 0.0167,0.0794 0.0179,0.0758 0.0167,0.0734 -0.98599,0.22849 -0.0167,-0.0733 -0.0179,-0.0806 -0.0191,-0.0865 -0.0191,-0.089 -0.0204,-0.0925 -0.0215,-0.0985 -0.0226,-0.10463 -0.0226,-0.10945 -0.0238,-0.11184 -0.025,-0.11786 -0.0263,-0.12267 -0.0263,-0.12628 -0.0263,-0.12989 -0.0275,-0.13109 -0.0287,-0.13829 -0.0286,-0.14312 -0.0298,-0.14433 -0.0298,-0.15032 -0.0298,-0.15154 -0.031,-0.15394 -0.031,-0.15754 -0.0323,-0.16117 -0.0335,-0.16475 -0.0323,-0.16597 -0.0335,-0.16957 -0.0335,-0.17318 -0.0335,-0.17318 -0.0347,-0.178 -0.0335,-0.18039 -0.0347,-0.17919 -0.0346,-0.18401 -0.0346,-0.18401 0.0226,-0.27179 z m -0.0226,0.2718 -0.0263,-0.13951 0.049,-0.13229 -0.0226,0.2718 z m 2.4507,-2.8395 0.83797,0.57006 -0.10624,0.15514 -0.10863,0.14913 -0.10743,0.14192 -0.10623,0.13349 -0.10624,0.12627 -0.10624,0.12028 -0.10624,0.11545 -0.10385,0.10702 -0.10025,0.10096 -0.10384,0.0985 -0.0979,0.0914 -0.099,0.0866 -0.0943,0.0806 -0.0883,0.0746 -0.0908,0.0746 -0.0883,0.0685 -0.0811,0.0637 -0.0777,0.0601 -0.074,0.059 -0.0704,0.053 -0.0657,0.053 -0.0597,0.047 -0.0502,0.042 -0.0525,0.047 -0.0442,0.0397 -0.0335,0.0325 -0.0275,0.03 -0.0238,0.0289 -0.0191,0.0265 -0.0131,0.0181 -0.006,0.0133 -0.006,0.0132 -0.94778,-0.35357 0.0394,-0.095 0.049,-0.0925 0.0537,-0.0854 0.0549,-0.0745 0.0598,-0.0723 0.0633,-0.0685 0.0668,-0.0662 0.0656,-0.0589 0.0621,-0.0542 0.0716,-0.0613 0.0717,-0.0565 0.0704,-0.0553 0.0728,-0.0577 0.074,-0.0565 0.0777,-0.0602 0.0788,-0.0613 0.0764,-0.0613 0.0788,-0.0649 0.0836,-0.0697 0.0848,-0.071 0.0823,-0.0745 0.0859,-0.077 0.0848,-0.0818 0.0884,-0.089 0.0896,-0.0925 0.0896,-0.0962 0.0896,-0.10341 0.092,-0.10945 0.0919,-0.11426 0.0931,-0.12026 0.0919,-0.12989 0.0942,-0.13589 z m 3.6241,-6.1744 0.72816,0.70714 -0.11579,0.12748 -0.11938,0.13831 -0.11817,0.14792 -0.11579,0.15275 -0.11579,0.16477 -0.11817,0.17076 -0.1134,0.17439 -0.11341,0.184 -0.11459,0.18882 -0.11221,0.19363 -0.11339,0.19843 -0.11103,0.20205 -0.11101,0.20566 -0.10863,0.20565 -0.10862,0.21046 -0.10862,0.21166 -0.10744,0.21167 -0.10743,0.21407 -0.10744,0.21167 -0.10624,0.21167 -0.10504,0.21167 -0.10624,0.21045 -0.10385,0.20566 -0.10504,0.20324 -0.10386,0.20205 -0.10504,0.19844 -0.10624,0.19363 -0.10504,0.18761 -0.10506,0.184 -0.10742,0.178 -0.10625,0.17198 -0.10862,0.16476 -0.83797,-0.57006 0.0942,-0.14552 0.0967,-0.15514 0.0979,-0.16356 0.0979,-0.16957 0.10025,-0.178 0.099,-0.184 0.10025,-0.18882 0.10147,-0.19483 0.10265,-0.20083 0.10386,-0.20326 0.10384,-0.20565 0.10505,-0.20927 0.10624,-0.21405 0.10743,-0.21408 0.10744,-0.21408 0.10982,-0.21647 0.11101,-0.21407 0.11101,-0.21528 0.11341,-0.21527 0.11579,-0.21287 0.11578,-0.21166 0.11817,-0.20806 0.11938,-0.20566 0.12175,-0.20084 0.12295,-0.19844 0.12773,-0.19603 0.12772,-0.18762 0.13012,-0.18159 0.13488,-0.1792 0.13729,-0.16958 0.13846,-0.16475 0.14444,-0.15634 z m 6.7945,1.8184 -1.0099,0.0288 -0.0226,-0.50511 -0.0357,-0.46181 -0.0514,-0.41973 -0.0644,-0.37882 -0.074,-0.33674 -0.0859,-0.29586 -0.0955,-0.25737 -0.10147,-0.21648 -0.10504,-0.18039 -0.10982,-0.14553 -0.10743,-0.11304 -0.10983,-0.0854 -0.10982,-0.0637 -0.11459,-0.0432 -0.12654,-0.0288 -0.13727,-0.0132 -0.14921,0.007 -0.16593,0.0253 -0.18143,0.0458 -0.19457,0.0673 -0.20532,0.0878 -0.21606,0.10943 -0.22561,0.13109 -0.23516,0.14914 -0.23874,0.16717 -0.24471,0.1864 -0.25068,0.20204 -0.25425,0.21769 -0.25903,0.23331 -0.26023,0.24654 -0.26022,0.25737 -0.26381,0.2718 -0.72816,-0.70716 0.27575,-0.28382 0.27694,-0.27421 0.27693,-0.26098 0.27576,-0.25015 0.27573,-0.23691 0.27455,-0.2213 0.27336,-0.20565 0.27217,-0.19122 0.27097,-0.17318 0.26858,-0.15514 0.27097,-0.1359 0.26738,-0.11425 0.26858,-0.0937 0.26978,-0.0673 0.26858,-0.042 0.27096,-0.009 0.2686,0.0228 0.2626,0.0602 0.25545,0.0985 0.24113,0.13831 0.22202,0.17438 0.20293,0.20926 0.17905,0.24173 0.15996,0.2694 0.13966,0.30066 0.12176,0.32953 0.10504,0.3632 0.0883,0.39447 0.0716,0.42694 0.0561,0.46542 0.0406,0.50031 0.0226,0.53878 z m 0.89288,3.2435 -0.72099,0.71436 0.001,10e-4 -0.0859,-0.0914 -0.0811,-0.0962 -0.074,-0.095 -0.074,-0.10222 -0.0692,-0.10584 -0.0645,-0.10582 -0.0609,-0.10825 -0.0585,-0.11425 -0.0525,-0.11425 -0.0514,-0.11546 -0.0478,-0.11786 -0.0454,-0.12147 -0.0406,-0.12147 -0.0394,-0.12386 -0.0369,-0.12508 -0.0335,-0.12869 -0.031,-0.12627 -0.0298,-0.12869 -0.0275,-0.13228 -0.0238,-0.13109 -0.0226,-0.12989 -0.0216,-0.1359 -0.0179,-0.13469 -0.0179,-0.13351 -0.0144,-0.1383 -0.0131,-0.13349 -0.0119,-0.1359 -0.0107,-0.1371 -0.008,-0.13591 -0.007,-0.1383 -0.005,-0.1371 -0.005,-0.1347 1.0099,-0.0288 0.005,0.12749 0.005,0.12748 0.007,0.12388 0.008,0.12628 0.008,0.12267 0.0119,0.12626 0.0107,0.12389 0.0143,0.11906 0.0156,0.12387 0.0156,0.11787 0.0191,0.11666 0.0204,0.11784 0.0216,0.11426 0.0226,0.11064 0.025,0.11185 0.0263,0.10944 0.0286,0.10463 0.0298,0.10343 0.0323,0.10223 0.0335,0.0974 0.0358,0.095 0.0357,0.0914 0.0394,0.089 0.0406,0.0854 0.0417,0.0806 0.0442,0.0795 0.0454,0.077 0.0454,0.0697 0.0478,0.0662 0.0525,0.0662 0.0501,0.0602 0.0525,0.0553 10e-4,0.001 z m -0.001,-0.001 0.006,0.006 -0.005,-0.005 -0.001,-0.001 z m 2.3337,1.003 -0.44406,0.91402 -0.14443,-0.0685 -0.13489,-0.0649 -0.12772,-0.0565 -0.12176,-0.053 -0.1134,-0.0481 -0.10624,-0.0433 -0.099,-0.0372 -0.0955,-0.0348 -0.0871,-0.0312 -0.0848,-0.0277 -0.0788,-0.0253 -0.0788,-0.0241 -0.0716,-0.0228 -0.0692,-0.0193 -0.0717,-0.0217 -0.0633,-0.0181 -0.0645,-0.0193 -0.0657,-0.0193 -0.0621,-0.0205 -0.068,-0.0217 -0.068,-0.0265 -0.0656,-0.0265 -0.0657,-0.03 -0.0656,-0.0312 -0.0728,-0.0385 -0.068,-0.042 -0.0668,-0.0445 -0.0692,-0.0517 -0.0656,-0.053 -0.0621,-0.0541 -0.0668,-0.0613 -0.0645,-0.0649 0.721,-0.71436 0.0429,0.0432 0.0382,0.0348 0.0406,0.0349 0.0346,0.0288 0.0287,0.0205 0.031,0.0205 0.0298,0.0181 0.025,0.0144 0.0346,0.0168 0.0346,0.0157 0.0369,0.0145 0.0394,0.0145 0.0417,0.0144 0.0501,0.0157 0.0537,0.0167 0.0597,0.0168 0.068,0.0205 0.0645,0.0193 0.0764,0.0217 0.0811,0.0253 0.0811,0.0241 0.0931,0.03 0.0967,0.0325 0.10385,0.036 0.10744,0.0397 0.11339,0.0444 0.12056,0.0481 0.12773,0.053 0.13131,0.0577 0.14205,0.0637 0.14921,0.0697 0.15398,0.0758 z m 2.7097,2.1455 -0.795,0.63019 0,-0.001 -0.0536,-0.0662 -0.0549,-0.0685 -0.0561,-0.0661 -0.0585,-0.0673 -0.0549,-0.0625 -0.0633,-0.0662 -0.0609,-0.0662 -0.0597,-0.0602 -0.0645,-0.0637 -0.0645,-0.0613 -0.068,-0.0637 -0.068,-0.0613 -0.0704,-0.0625 -0.0704,-0.0602 -0.0692,-0.059 -0.074,-0.059 -0.074,-0.0589 -0.0764,-0.0553 -0.0788,-0.0589 -0.0777,-0.0565 -0.0788,-0.0553 -0.0811,-0.0541 -0.0823,-0.0553 -0.0836,-0.0517 -0.0859,-0.0542 -0.0848,-0.0517 -0.0896,-0.0517 -0.0871,-0.0493 -0.0896,-0.0481 -0.0931,-0.0505 -0.092,-0.0481 -0.0931,-0.047 0.44406,-0.91401 0.10504,0.0517 0.10624,0.0553 0.10025,0.053 0.10147,0.0553 0.10147,0.059 0.0967,0.0565 0.099,0.059 0.0955,0.059 0.0955,0.0613 0.0942,0.0625 0.0908,0.0613 0.0931,0.0649 0.0896,0.0637 0.0859,0.0637 0.0883,0.0673 0.0859,0.0685 0.0836,0.0662 0.0859,0.0709 0.0799,0.0697 0.0799,0.0697 0.0777,0.071 0.0777,0.0709 0.0764,0.0735 0.074,0.0733 0.0764,0.077 0.0704,0.0758 0.068,0.0733 0.0716,0.0795 0.0657,0.077 0.0657,0.0782 0.0645,0.0782 0.0633,0.0806 0,-0.001 z m -0.795,0.63019 0,-0.001 0.39511,0.50872 -0.39511,-0.50752 z m 1.522,2.2393 -1.0003,0.15153 0,10e-4 -0.0131,-0.0925 -0.0119,-0.0925 -0.009,-0.0914 -0.009,-0.089 -0.008,-0.0925 -0.006,-0.089 -0.007,-0.0854 -0.006,-0.0842 -0.007,-0.0854 -0.006,-0.0854 -0.007,-0.0818 -0.007,-0.0842 -0.007,-0.0782 -0.008,-0.077 -0.008,-0.0806 -0.009,-0.0722 -0.0119,-0.077 -0.0119,-0.0746 -0.0131,-0.0685 -0.0143,-0.0673 -0.0179,-0.0709 -0.0179,-0.0674 -0.0191,-0.0637 -0.0226,-0.0662 -0.0238,-0.0625 -0.025,-0.0602 -0.0286,-0.0613 -0.031,-0.059 -0.0335,-0.0589 -0.0371,-0.059 -0.0394,-0.0577 -0.0417,-0.0565 0.795,-0.63019 0.068,0.0925 0.0633,0.0914 0.0585,0.095 0.0549,0.095 0.0478,0.095 0.0454,0.095 0.0417,0.0985 0.0358,0.0962 0.0323,0.095 0.031,0.0974 0.025,0.0962 0.0226,0.0925 0.0216,0.0962 0.0179,0.0974 0.0144,0.0914 0.0144,0.0914 0.0119,0.0938 0.0107,0.0878 0.0107,0.0914 0.007,0.0925 0.007,0.0842 0.007,0.089 0.006,0.0854 0.007,0.0854 0.006,0.0842 0.007,0.0854 0.006,0.0818 0.008,0.0782 0.007,0.0818 0.009,0.077 0.009,0.0782 0.0107,0.0758 0,0.001 z m 0.14562,2.9116 -0.93585,-0.38484 0.0227,-0.0625 0.0204,-0.0602 0.0167,-0.0577 0.0144,-0.0625 0.0107,-0.0613 0.009,-0.059 0.006,-0.0613 0.004,-0.0637 10e-4,-0.0661 0,-0.0673 -10e-4,-0.0673 -0.004,-0.0637 -0.007,-0.071 -0.007,-0.0721 -0.0107,-0.0697 -0.0107,-0.0758 -0.0131,-0.0721 -0.0143,-0.0746 -0.0144,-0.0758 -0.0179,-0.0782 -0.0179,-0.0842 -0.0167,-0.0794 -0.0191,-0.0795 -0.0191,-0.083 -0.0191,-0.083 -0.0191,-0.0865 -0.0191,-0.0866 -0.0191,-0.0866 -0.0179,-0.0914 -0.0156,-0.0865 -0.0179,-0.0914 -0.0144,-0.095 1.0003,-0.15154 0.0119,0.0735 0.0131,0.077 0.0156,0.0793 0.0156,0.077 0.0167,0.0794 0.0167,0.0794 0.0191,0.0793 0.0191,0.083 0.0191,0.083 0.0191,0.0866 0.0191,0.0865 0.0179,0.0818 0.0179,0.0854 0.0191,0.0902 0.0167,0.089 0.0156,0.0938 0.0131,0.0878 0.0131,0.0938 0.009,0.0937 0.009,0.0925 0.006,0.0997 0.004,0.0986 0,0.0962 -0.004,0.0974 -0.006,0.0998 -0.0107,0.10462 -0.0143,0.10463 -0.0202,0.10223 -0.0238,0.10343 -0.0287,0.10583 -0.0346,0.10343 -0.0394,0.10342 z m -1.9254,2.6158 -0.65654,-0.7745 0.0728,-0.0637 0.074,-0.0661 0.068,-0.0625 0.0668,-0.0637 0.068,-0.0662 0.0657,-0.0661 0.0645,-0.0662 0.0621,-0.0662 0.0633,-0.0685 0.0609,-0.0685 0.0585,-0.0673 0.0573,-0.0685 0.0561,-0.0673 0.0537,-0.0685 0.0536,-0.0721 0.0537,-0.0709 0.0502,-0.0685 0.049,-0.0709 0.0477,-0.0685 0.0442,-0.0697 0.0478,-0.0758 0.0442,-0.0709 0.0406,-0.0697 0.043,-0.0746 0.0394,-0.0721 0.0369,-0.0697 0.0369,-0.0733 0.0369,-0.0758 0.0347,-0.0721 0.0323,-0.0746 0.0335,-0.0735 0.0298,-0.0734 0.93586,0.38486 -0.037,0.0902 -0.0382,0.0878 -0.0394,0.0865 -0.0417,0.089 -0.0417,0.0854 -0.0442,0.0878 -0.0466,0.089 -0.049,0.0866 -0.0478,0.0842 -0.0501,0.0866 -0.0537,0.0854 -0.0502,0.0806 -0.0561,0.0865 -0.0573,0.0854 -0.0585,0.083 -0.0597,0.083 -0.0609,0.0806 -0.0609,0.0794 -0.0657,0.083 -0.0657,0.0818 -0.0668,0.0782 -0.068,0.0794 -0.0704,0.0782 -0.0704,0.0782 -0.074,0.0782 -0.074,0.0758 -0.0752,0.0758 -0.0777,0.0758 -0.0787,0.0758 -0.0823,0.0746 -0.0811,0.071 -0.0823,0.0733 z m -0.65654,-0.7745 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path275" + d="m 417.9,222.59 c -0.0238,-0.28503 -0.0501,-0.57487 -0.068,-0.86711 3.2063,-0.87794 5.6927,-2.7252 7.722,-5.4348 -1.1412,2.8948 -4.2078,5.2832 -7.654,6.3019 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path277" + d="m 418.22,224.11 c 0.099,0.27661 0.19338,0.55323 0.29127,0.82502 3.359,0.0637 6.3719,1.1774 9.1902,3.1437 -2.0579,-2.3416 -5.8216,-3.8304 -9.4815,-3.9688 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path279" + d="m 432.69,233.31 c -1.0851,-0.33555 -2.2716,-0.68792 -3.3638,-1.531 -1.664,-1.2868 -1.1806,-3.7799 0.24828,-6.3536 0.45838,-0.82503 0.5121,-2.2093 0.27455,-3.5659 -0.23874,-1.3638 -0.77232,-2.6999 -1.4897,-3.3866 -2.3456,-2.2622 -3.7804,-4.7565 -2.5891,-6.5857 0.79621,-1.2207 1.8813,-1.9326 2.8744,-2.6037 0.21129,0.62899 0.35095,1.4696 0.3796,2.5544 0.0369,1.4023 0.28171,2.819 1.0325,3.5863 0.5885,0.60252 0.832,0.29224 2.471,1.1016 1.0684,0.52676 1.9218,1.2159 2.5342,2.0036 0.61476,0.78893 0.48823,1.7294 0.62431,2.6302 0.13489,0.89718 0.53357,1.7643 0.17786,2.6434 -0.35095,0.86833 -0.94541,1.6982 -1.7858,2.4209 -1.2773,1.1016 -1.5996,0.88395 -1.9565,1.549 -0.45241,0.84547 -0.23994,2.1275 0.148,3.3338 0.29605,0.91522 0.43094,1.6416 0.42019,2.2033 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path281" + d="m 429.01,232.18 0.61595,-0.80818 0,0 0.0955,0.0721 0.0931,0.0685 0.0955,0.0662 0.0967,0.0637 0.0967,0.0613 0.099,0.0613 0.0955,0.0577 0.0967,0.0541 0.10025,0.0542 0.099,0.053 0.0979,0.0481 0.10266,0.0505 0.0979,0.047 0.099,0.0445 0.10267,0.0432 0.10148,0.0445 0.10025,0.0397 0.10266,0.0409 0.099,0.0385 0.10147,0.036 0.10387,0.0385 0.10384,0.036 0.10266,0.036 0.10147,0.0337 0.10267,0.0337 0.10265,0.0337 0.10266,0.0325 0.10147,0.0312 0.10025,0.0325 0.10505,0.0312 0.10385,0.0325 0.10025,0.0312 -0.29604,0.97415 -0.10266,-0.0313 -0.10147,-0.0325 -0.10266,-0.0312 -0.10743,-0.0325 -0.10624,-0.0337 -0.10504,-0.0348 -0.10744,-0.0337 -0.10743,-0.036 -0.10863,-0.036 -0.10982,-0.0384 -0.10862,-0.0385 -0.10863,-0.0385 -0.11101,-0.0409 -0.1134,-0.0432 -0.10982,-0.0433 -0.11459,-0.047 -0.11102,-0.047 -0.10983,-0.0481 -0.11578,-0.0517 -0.11459,-0.0542 -0.10982,-0.053 -0.1146,-0.0577 -0.1134,-0.0602 -0.11221,-0.0613 -0.1134,-0.0637 -0.11459,-0.0673 -0.11102,-0.0685 -0.11101,-0.071 -0.11341,-0.0758 -0.1122,-0.0782 -0.11221,-0.0806 -0.10982,-0.0842 0,0 z m 0.11459,-7.0066 0.88334,0.49789 -0.12773,0.23332 -0.12057,0.23211 -0.11578,0.2297 -0.10863,0.2297 -0.10147,0.22851 -0.0967,0.22489 -0.0883,0.22371 -0.0836,0.22008 -0.074,0.21527 -0.0657,0.21528 -0.0609,0.21045 -0.0514,0.20686 -0.0442,0.20325 -0.0357,0.19724 -0.0275,0.19483 -0.0204,0.18761 -0.0107,0.18281 -0.002,0.17798 0.005,0.17078 0.0143,0.16717 0.0215,0.16115 0.0298,0.15274 0.0382,0.14673 0.0466,0.14191 0.0561,0.1371 0.0633,0.13109 0.0704,0.12387 0.0811,0.11906 0.0931,0.11666 0.099,0.11064 0.11221,0.10584 0.12295,0.10222 -0.61595,0.80818 -0.17547,-0.14552 -0.16473,-0.15634 -0.14921,-0.16596 -0.13369,-0.16958 -0.12415,-0.1816 -0.10863,-0.18881 -0.0943,-0.19363 -0.08,-0.19964 -0.068,-0.20444 -0.0549,-0.20927 -0.0417,-0.21528 -0.0287,-0.21647 -0.0191,-0.21768 -0.007,-0.22369 0.005,-0.2237 0.0131,-0.2285 0.025,-0.23091 0.0323,-0.23092 0.043,-0.23571 0.0514,-0.23452 0.0585,-0.23812 0.068,-0.23932 0.0752,-0.23933 0.0836,-0.24415 0.0908,-0.24413 0.0978,-0.24293 0.10385,-0.24655 0.11102,-0.24533 0.11817,-0.24895 0.12295,-0.24895 0.13011,-0.24896 0.1349,-0.24774 z m 0.21844,-3.2279 0.99555,-0.17799 0.0226,0.1359 0.0204,0.13349 0.0191,0.13108 0.0167,0.13471 0.0156,0.13469 0.0143,0.13349 0.0107,0.1347 0.009,0.1335 0.007,0.12989 0.005,0.13229 0.005,0.13108 0.001,0.1311 -0.001,0.12747 -0.004,0.12869 -0.005,0.12627 -0.006,0.12628 -0.0107,0.12749 -0.0119,0.11906 -0.0131,0.12266 -0.0167,0.12268 -0.0179,0.11785 -0.0215,0.11907 -0.025,0.11665 -0.0263,0.11545 -0.0298,0.10945 -0.031,0.10823 -0.0347,0.11186 -0.0394,0.10703 -0.0406,0.10223 -0.0442,0.10222 -0.0477,0.0998 -0.0514,0.0974 -0.88332,-0.49788 0.0323,-0.0613 0.031,-0.0637 0.0298,-0.0685 0.0286,-0.0733 0.0275,-0.0758 0.025,-0.0758 0.0238,-0.0842 0.0226,-0.0878 0.0215,-0.0865 0.0179,-0.0902 0.0167,-0.0925 0.0156,-0.0986 0.0144,-0.0985 0.0107,-0.10106 0.009,-0.10704 0.008,-0.10343 0.006,-0.10704 0.005,-0.10944 0.001,-0.11184 10e-4,-0.11304 -10e-4,-0.11186 -0.002,-0.11665 -0.005,-0.11546 -0.007,-0.11787 -0.007,-0.11906 -0.0107,-0.11544 -0.0119,-0.11906 -0.0131,-0.12027 -0.0167,-0.12026 -0.0167,-0.12147 -0.0179,-0.12147 -0.0204,-0.11906 z m -1.3417,-3.1076 0.6995,-0.73602 -10e-4,-0.001 0.0789,0.0782 0.0777,0.083 0.0764,0.0865 0.074,0.089 0.0717,0.0925 0.068,0.095 0.0668,0.0962 0.0645,0.0998 0.0645,0.10463 0.0621,0.10463 0.0597,0.10583 0.0585,0.11185 0.0561,0.11064 0.0573,0.11425 0.0537,0.11906 0.049,0.11426 0.0525,0.12147 0.0477,0.12147 0.0454,0.12026 0.0466,0.12627 0.043,0.12628 0.0417,0.12508 0.0406,0.12988 0.0382,0.13109 0.0357,0.12868 0.0347,0.12869 0.0346,0.13349 0.0323,0.13591 0.0286,0.13109 0.0286,0.13229 0.0263,0.13589 0.0238,0.1335 -0.99555,0.17799 -0.0216,-0.12146 -0.0238,-0.11907 -0.0263,-0.12266 -0.0263,-0.12147 -0.0275,-0.11667 -0.0298,-0.11665 -0.0323,-0.11907 -0.0335,-0.11906 -0.0335,-0.11424 -0.0357,-0.11306 -0.0369,-0.11304 -0.0382,-0.11185 -0.0394,-0.10704 -0.043,-0.11064 -0.0405,-0.10464 -0.0429,-0.10221 -0.0466,-0.10464 -0.0442,-0.0974 -0.0454,-0.095 -0.049,-0.0962 -0.049,-0.0902 -0.0501,-0.089 -0.0502,-0.0878 -0.0502,-0.0806 -0.0525,-0.0782 -0.0525,-0.077 -0.0536,-0.0733 -0.0525,-0.0685 -0.0525,-0.0649 -0.0525,-0.0602 -0.0537,-0.0565 -0.0549,-0.0542 -10e-4,-0.001 z m 10e-4,0.001 0.007,0.007 -0.008,-0.008 10e-4,0.001 z m -2.6631,-7.2351 0.84513,0.56045 0,-0.001 -0.0848,0.14192 -0.0716,0.14191 -0.0597,0.14433 -0.0477,0.14792 -0.0358,0.15153 -0.0263,0.15274 -0.0144,0.15754 -0.004,0.16236 0.006,0.16718 0.0167,0.16956 0.0275,0.17319 0.0394,0.17919 0.0502,0.1852 0.0597,0.18521 0.0717,0.19123 0.08,0.19243 0.0919,0.19603 0.10147,0.20083 0.11102,0.19964 0.12056,0.20325 0.13011,0.20446 0.13847,0.20565 0.14802,0.20806 0.15638,0.20806 0.16353,0.20806 0.17309,0.20926 0.17785,0.20925 0.18622,0.20926 0.19457,0.20927 0.19936,0.20927 0.20531,0.20805 0.21128,0.20686 -0.69951,0.73601 -0.22321,-0.21888 -0.21726,-0.22008 -0.21128,-0.22128 -0.20412,-0.2213 -0.20054,-0.22369 -0.19219,-0.2261 -0.18502,-0.22369 -0.17786,-0.2273 -0.1707,-0.2273 -0.16234,-0.22731 -0.15518,-0.2297 -0.14444,-0.22851 -0.13727,-0.2297 -0.12773,-0.23091 -0.1158,-0.2297 -0.10862,-0.22971 -0.0967,-0.23091 -0.0859,-0.23212 -0.074,-0.2309 -0.0621,-0.23091 -0.0514,-0.23211 -0.0369,-0.23331 -0.0238,-0.23211 -0.008,-0.22972 0.006,-0.2297 0.0216,-0.2297 0.0382,-0.2273 0.0549,-0.2237 0.0717,-0.22008 0.0883,-0.21889 0.10744,-0.21166 0.12295,-0.20445 0,-0.001 z m 3.7757,-2.4871 -0.95734,0.32713 0.76038,0.25977 -0.0942,0.0625 -0.0931,0.0637 -0.0919,0.0625 -0.0931,0.0637 -0.0955,0.0649 -0.0955,0.0649 -0.0908,0.0625 -0.0908,0.0649 -0.0942,0.0685 -0.0931,0.0662 -0.0896,0.0662 -0.0919,0.0697 -0.0908,0.0697 -0.0883,0.0685 -0.0883,0.0721 -0.0883,0.0733 -0.0859,0.0733 -0.0883,0.077 -0.0848,0.0758 -0.0836,0.0782 -0.0859,0.0818 -0.0811,0.0806 -0.0788,0.0806 -0.0811,0.0866 -0.08,0.089 -0.0777,0.089 -0.0764,0.0925 -0.0752,0.0914 -0.0717,0.095 -0.074,0.10096 -0.0716,0.10106 -0.068,0.10342 -0.84513,-0.56043 0.0823,-0.12266 0.0836,-0.11787 0.0836,-0.11545 0.0883,-0.11425 0.0871,-0.11064 0.0908,-0.10704 0.0896,-0.10343 0.092,-0.10096 0.0908,-0.0985 0.0955,-0.0998 0.0979,-0.095 0.0931,-0.089 0.0955,-0.0902 0.099,-0.0878 0.0955,-0.0842 0.0979,-0.083 0.0979,-0.0806 0.0978,-0.0793 0.10025,-0.0782 0.0979,-0.0746 0.099,-0.0746 0.099,-0.0735 0.0979,-0.0709 0.0967,-0.0685 0.0979,-0.0697 0.10025,-0.0697 0.0955,-0.0649 0.0931,-0.0649 0.0955,-0.0661 0.0967,-0.0649 0.0955,-0.0637 0.092,-0.0625 0.76039,0.25978 z m -0.76038,-0.25977 0.54909,-0.37041 0.21129,0.63018 -0.76038,-0.25977 z m 1.1662,2.9645 -1.0099,0.0265 -0.004,-0.0962 -0.004,-0.0997 -0.004,-0.0938 -0.005,-0.0902 -0.006,-0.0914 -0.006,-0.0902 -0.006,-0.089 -0.007,-0.0865 -0.008,-0.0854 -0.008,-0.089 -0.007,-0.0818 -0.009,-0.0795 -0.009,-0.0795 -0.0107,-0.077 -0.0107,-0.0758 -0.0119,-0.0806 -0.0107,-0.0733 -0.0119,-0.0721 -0.0131,-0.0722 -0.0131,-0.0685 -0.0131,-0.0673 -0.0143,-0.0673 -0.0156,-0.0685 -0.0131,-0.0637 -0.0155,-0.0625 -0.0156,-0.0613 -0.0155,-0.0602 -0.0179,-0.0613 -0.0155,-0.0553 -0.0167,-0.0553 -0.0179,-0.0577 -0.0167,-0.0518 0.95734,-0.32712 0.0215,0.0685 0.0204,0.0625 0.0215,0.0697 0.0204,0.0697 0.0179,0.0685 0.0204,0.0722 0.0179,0.0735 0.0179,0.0746 0.0179,0.0758 0.0156,0.0733 0.0167,0.077 0.0156,0.0795 0.0155,0.0806 0.0131,0.0818 0.0143,0.0818 0.0131,0.0854 0.0119,0.0806 0.0131,0.0854 0.0107,0.089 0.0119,0.089 0.009,0.0937 0.009,0.0914 0.008,0.089 0.008,0.0925 0.007,0.0962 0.008,0.0962 0.006,0.0974 0.006,0.0985 0.005,0.10462 0.004,0.10096 0.004,0.0999 0.004,0.10582 z m 0.88811,3.2423 -0.72099,0.71438 -0.0848,-0.0902 -0.0811,-0.0962 -0.0764,-0.0962 -0.0716,-0.10223 -0.068,-0.10343 -0.0645,-0.10583 -0.0633,-0.11185 -0.0561,-0.11183 -0.0536,-0.11427 -0.0501,-0.11545 -0.0489,-0.11906 -0.0442,-0.12267 -0.0406,-0.12026 -0.0394,-0.12147 -0.0371,-0.12628 -0.0335,-0.12868 -0.0323,-0.12869 -0.0275,-0.12869 -0.0263,-0.12747 -0.0263,-0.1335 -0.0215,-0.1359 -0.0204,-0.12989 -0.0191,-0.13588 -0.0167,-0.13471 -0.0143,-0.13349 -0.0143,-0.1359 -0.0107,-0.1383 -0.0107,-0.13712 -0.007,-0.13589 -0.007,-0.13349 -0.006,-0.13951 -0.004,-0.13591 1.0099,-0.0265 0.004,0.12628 0.006,0.12508 0.007,0.12868 0.007,0.12627 0.008,0.12268 0.0107,0.12387 0.0119,0.12147 0.0144,0.12386 0.0143,0.12027 0.0167,0.11906 0.0179,0.12026 0.0191,0.11427 0.0215,0.11184 0.0238,0.11546 0.025,0.11185 0.025,0.10703 0.0287,0.10463 0.0298,0.10223 0.0323,0.10222 0.0335,0.10096 0.0347,0.0914 0.0369,0.0925 0.0382,0.089 0.0417,0.0853 0.0417,0.083 0.0417,0.0758 0.0454,0.0746 0.049,0.0746 0.0478,0.0661 0.0502,0.0649 0.0501,0.0601 0.0537,0.0565 z m 2.3325,1.0018 -0.44405,0.91401 -0.14445,-0.0685 -0.13488,-0.0649 -0.12773,-0.0565 -0.12176,-0.053 -0.1134,-0.0481 -0.10623,-0.0432 -0.099,-0.0372 -0.0955,-0.0349 -0.0871,-0.0312 -0.0848,-0.0277 -0.0789,-0.0253 -0.0788,-0.024 -0.0716,-0.0228 -0.0692,-0.0193 -0.0717,-0.0217 -0.0633,-0.0181 -0.0644,-0.0193 -0.0656,-0.0193 -0.0621,-0.0205 -0.068,-0.0217 -0.068,-0.0265 -0.0656,-0.0265 -0.0657,-0.03 -0.0656,-0.0312 -0.0728,-0.0385 -0.068,-0.042 -0.0668,-0.0445 -0.0692,-0.0517 -0.0656,-0.053 -0.0621,-0.0542 -0.0668,-0.0613 -0.0644,-0.0649 0.72098,-0.71438 0.043,0.0433 0.0382,0.0349 0.0406,0.0349 0.0346,0.0288 0.0286,0.0205 0.031,0.0205 0.0298,0.0181 0.025,0.0145 0.0347,0.0168 0.0346,0.0157 0.0371,0.0144 0.0394,0.0145 0.0417,0.0145 0.0502,0.0157 0.0536,0.0168 0.0597,0.0168 0.068,0.0205 0.0645,0.0193 0.0764,0.0217 0.0811,0.0253 0.0811,0.0241 0.0931,0.03 0.0967,0.0325 0.10384,0.036 0.10744,0.0397 0.1134,0.0445 0.12057,0.0481 0.12773,0.053 0.1313,0.0577 0.14205,0.0637 0.14921,0.0697 0.15399,0.0758 z m 2.7097,2.1455 -0.795,0.6302 0,-0.001 -0.0537,-0.0661 -0.0549,-0.0685 -0.0561,-0.0662 -0.0585,-0.0673 -0.0549,-0.0625 -0.0633,-0.0662 -0.0609,-0.0661 -0.0597,-0.0601 -0.0645,-0.0637 -0.0644,-0.0613 -0.068,-0.0637 -0.068,-0.0613 -0.0704,-0.0625 -0.0704,-0.0601 -0.0692,-0.059 -0.074,-0.059 -0.074,-0.0589 -0.0764,-0.0553 -0.0788,-0.059 -0.0777,-0.0565 -0.0788,-0.0553 -0.0811,-0.0542 -0.0823,-0.0553 -0.0836,-0.0517 -0.0859,-0.0541 -0.0848,-0.0517 -0.0896,-0.0517 -0.0871,-0.0493 -0.0896,-0.0481 -0.0931,-0.0505 -0.092,-0.0481 -0.0931,-0.047 0.44405,-0.91401 0.10505,0.0517 0.10624,0.0553 0.10025,0.053 0.10147,0.0553 0.10148,0.059 0.0967,0.0565 0.099,0.059 0.0955,0.059 0.0955,0.0613 0.0942,0.0625 0.0908,0.0613 0.093,0.0649 0.0896,0.0637 0.0859,0.0637 0.0883,0.0673 0.0859,0.0685 0.0836,0.0662 0.0859,0.071 0.0799,0.0697 0.08,0.0697 0.0777,0.0709 0.0777,0.071 0.0764,0.0733 0.074,0.0733 0.0764,0.077 0.0704,0.0758 0.068,0.0735 0.0717,0.0794 0.0656,0.077 0.0657,0.0782 0.0644,0.0782 0.0633,0.0806 0,-10e-4 z m -0.795,0.6302 0,-0.001 0.39512,0.50873 -0.39512,-0.50752 z m 1.522,2.2393 -1.0003,0.15153 0,0.001 -0.0131,-0.0926 -0.0119,-0.0925 -0.009,-0.0914 -0.009,-0.089 -0.008,-0.0925 -0.006,-0.089 -0.007,-0.0854 -0.006,-0.0842 -0.007,-0.0854 -0.006,-0.0854 -0.007,-0.0818 -0.007,-0.0842 -0.007,-0.0782 -0.008,-0.077 -0.008,-0.0806 -0.009,-0.0721 -0.0119,-0.077 -0.0119,-0.0746 -0.0131,-0.0685 -0.0144,-0.0673 -0.0179,-0.071 -0.0179,-0.0673 -0.0191,-0.0637 -0.0226,-0.0662 -0.0238,-0.0625 -0.025,-0.0601 -0.0286,-0.0613 -0.031,-0.0589 -0.0335,-0.059 -0.0369,-0.059 -0.0394,-0.0577 -0.0417,-0.0565 0.79501,-0.63019 0.068,0.0925 0.0633,0.0914 0.0585,0.095 0.0549,0.095 0.0477,0.095 0.0454,0.095 0.0417,0.0986 0.0357,0.0962 0.0323,0.095 0.031,0.0974 0.025,0.0962 0.0226,0.0925 0.0215,0.0962 0.0179,0.0974 0.0143,0.0914 0.0144,0.0914 0.0119,0.0937 0.0107,0.0878 0.0107,0.0914 0.007,0.0925 0.007,0.0842 0.007,0.089 0.006,0.0854 0.007,0.0854 0.006,0.0842 0.007,0.0853 0.006,0.0818 0.008,0.0782 0.007,0.0818 0.009,0.077 0.009,0.0782 0.0107,0.0758 0,0.001 z m 0.14563,2.9116 -0.93586,-0.38484 0.0226,-0.0625 0.0204,-0.0602 0.0167,-0.0577 0.0144,-0.0625 0.0107,-0.0613 0.009,-0.0589 0.006,-0.0613 0.004,-0.0637 0.001,-0.0662 0,-0.0673 -0.001,-0.0673 -0.004,-0.0637 -0.007,-0.0709 -0.007,-0.0721 -0.0107,-0.0697 -0.0107,-0.0758 -0.0131,-0.0722 -0.0144,-0.0746 -0.0143,-0.0758 -0.0179,-0.0782 -0.0179,-0.0842 -0.0167,-0.0795 -0.0191,-0.0794 -0.0191,-0.083 -0.0191,-0.083 -0.0191,-0.0866 -0.0191,-0.0865 -0.0191,-0.0866 -0.0179,-0.0914 -0.0156,-0.0865 -0.0179,-0.0914 -0.0143,-0.095 1.0003,-0.15154 0.0119,0.0733 0.0131,0.077 0.0156,0.0794 0.0156,0.077 0.0167,0.0795 0.0167,0.0795 0.0191,0.0794 0.0191,0.083 0.0191,0.083 0.0191,0.0865 0.0191,0.0866 0.0179,0.0818 0.0179,0.0853 0.0191,0.0902 0.0167,0.089 0.0156,0.0937 0.0131,0.0878 0.0131,0.0938 0.009,0.0938 0.009,0.0925 0.006,0.0997 0.004,0.0985 0,0.0962 -0.004,0.0974 -0.006,0.0997 -0.0107,0.10464 -0.0143,0.10463 -0.0204,0.10223 -0.0238,0.10342 -0.0286,0.10583 -0.0347,0.10344 -0.0394,0.10342 z m -1.9254,2.6158 -0.65654,-0.77451 0.0728,-0.0637 0.074,-0.0662 0.068,-0.0625 0.0668,-0.0637 0.068,-0.0661 0.0645,-0.0649 0.0645,-0.0673 0.0656,-0.0685 0.0621,-0.0673 0.0597,-0.0673 0.0573,-0.0662 0.0573,-0.0697 0.0585,-0.0709 0.0537,-0.0661 0.0525,-0.0709 0.0536,-0.0697 0.049,-0.0685 0.0502,-0.0733 0.0478,-0.0697 0.0454,-0.0685 0.0466,-0.0746 0.043,-0.0697 0.0417,-0.0721 0.0429,-0.0746 0.0382,-0.0697 0.0382,-0.0722 0.0382,-0.0746 0.0357,-0.0734 0.0346,-0.0721 0.0323,-0.0746 0.0335,-0.0733 0.0298,-0.0733 0.93586,0.38484 -0.0369,0.0902 -0.0382,0.0878 -0.0394,0.0866 -0.0417,0.089 -0.043,0.0878 -0.043,0.0842 -0.0454,0.089 -0.0502,0.089 -0.0477,0.0818 -0.049,0.0866 -0.0548,0.0865 -0.0513,0.0818 -0.0549,0.0853 -0.0573,0.0842 -0.0573,0.0806 -0.0609,0.0854 -0.0609,0.0818 -0.0621,0.0806 -0.0656,0.083 -0.0633,0.0782 -0.0668,0.0795 -0.0692,0.0806 -0.0716,0.0794 -0.0717,0.077 -0.0704,0.0758 -0.074,0.077 -0.0764,0.077 -0.0777,0.0758 -0.0789,0.0758 -0.0823,0.0746 -0.0811,0.071 -0.0823,0.0733 z m -0.65654,-0.77451 z m -1.183,2.178 -0.89049,-0.48346 0.0417,-0.0746 0.0442,-0.0722 0.0442,-0.0673 0.0477,-0.0673 0.0513,-0.0625 0.049,-0.0553 0.0525,-0.0553 0.0561,-0.053 0.0537,-0.0458 0.0561,-0.0445 0.0537,-0.0385 0.0549,-0.0384 0.0537,-0.0337 0.0561,-0.036 0.0548,-0.0325 0.0525,-0.0325 0.0609,-0.0337 0.0525,-0.03 0.0561,-0.0349 0.0633,-0.0372 0.0633,-0.0385 0.0668,-0.042 0.0704,-0.0446 0.0717,-0.047 0.0752,-0.053 0.0811,-0.0565 0.0859,-0.0625 0.0896,-0.0673 0.0943,-0.0746 0.10385,-0.0818 0.10386,-0.0865 0.1122,-0.095 0.65653,0.77451 -0.12176,0.10463 -0.11817,0.0962 -0.11101,0.089 -0.10624,0.0842 -0.10386,0.077 -0.0978,0.0722 -0.0931,0.0662 -0.0896,0.0602 -0.0859,0.0565 -0.0799,0.0517 -0.0764,0.047 -0.0704,0.0433 -0.0656,0.0397 -0.0633,0.0372 -0.0645,0.0372 -0.049,0.0288 -0.0502,0.03 -0.0454,0.0253 -0.0371,0.024 -0.0369,0.0241 -0.031,0.0217 -0.0298,0.0217 -0.0226,0.0181 -0.0226,0.0193 -0.0179,0.0169 -0.0191,0.0193 -0.0226,0.0265 -0.0179,0.0217 -0.0191,0.0265 -0.0226,0.0337 -0.0226,0.0385 -0.025,0.0458 z m -0.89049,-0.48346 z m 1.0743,3.4179 -0.96212,0.31509 -0.0369,-0.11906 -0.0369,-0.11906 -0.0347,-0.11786 -0.0335,-0.11906 -0.0323,-0.11907 -0.0323,-0.12146 -0.0287,-0.12147 -0.0286,-0.12027 -0.025,-0.12147 -0.0238,-0.12026 -0.0216,-0.11906 -0.0204,-0.12027 -0.0179,-0.12146 -0.0167,-0.12027 -0.0131,-0.12026 -0.009,-0.12027 -0.008,-0.11785 -0.005,-0.11907 -0.004,-0.11907 0.002,-0.11785 0.004,-0.11546 0.007,-0.11665 0.0107,-0.11787 0.0156,-0.11304 0.0179,-0.11305 0.0238,-0.11425 0.0275,-0.11064 0.031,-0.11185 0.0369,-0.10824 0.0406,-0.10704 0.0477,-0.10823 0.0514,-0.10223 0.89049,0.48346 -0.0298,0.059 -0.0263,0.0577 -0.0238,0.0637 -0.0226,0.0673 -0.0191,0.0661 -0.0179,0.0746 -0.0143,0.0735 -0.0131,0.0793 -0.0107,0.0818 -0.008,0.0794 -0.005,0.0854 -0.004,0.0914 0,0.089 10e-4,0.0902 0.005,0.095 0.006,0.0962 0.009,0.0985 0.0107,0.0986 0.0119,0.10096 0.0156,0.10222 0.0179,0.10343 0.0191,0.10463 0.0215,0.10583 0.0226,0.10704 0.0238,0.10583 0.0263,0.10703 0.0275,0.10703 0.0298,0.10945 0.031,0.10944 0.0323,0.10824 0.0323,0.10944 0.0346,0.10704 z m -0.96212,0.31509 z m 0.75322,2.5328 0.29604,-0.97416 -0.65414,0.47745 0,-0.0432 0,-0.0481 -0.001,-0.0505 0,-0.0458 -0.004,-0.0458 -0.002,-0.0541 -0.005,-0.0542 -0.005,-0.0505 -0.006,-0.053 -0.007,-0.0625 -0.006,-0.0541 -0.008,-0.0553 -0.009,-0.0625 -0.009,-0.059 -0.009,-0.0601 -0.0131,-0.0649 -0.0131,-0.0662 -0.0119,-0.0637 -0.0155,-0.0685 -0.0143,-0.0662 -0.0167,-0.0673 -0.0179,-0.0758 -0.0167,-0.0697 -0.0179,-0.0697 -0.0191,-0.0735 -0.0216,-0.0734 -0.0238,-0.0818 -0.0204,-0.0758 -0.0238,-0.077 -0.025,-0.0818 -0.025,-0.0794 -0.0263,-0.083 0.96212,-0.31508 0.0286,0.0878 0.0275,0.089 0.025,0.0842 0.0263,0.0865 0.025,0.0854 0.0215,0.0795 0.0238,0.083 0.0215,0.083 0.0227,0.0818 0.0191,0.0818 0.0179,0.0733 0.0191,0.0795 0.0167,0.0782 0.0156,0.0733 0.0167,0.0782 0.0131,0.0709 0.0131,0.0722 0.0143,0.0746 0.0119,0.0734 0.009,0.0673 0.0107,0.0721 0.008,0.071 0.007,0.0625 0.008,0.0697 0.005,0.0697 0.005,0.0637 0.005,0.0613 0.004,0.0673 0.002,0.0673 10e-4,0.0602 0,0.0601 0,0.0625 -0.65415,0.47745 z m 0.65415,-0.47746 -0.0131,0.67589 -0.64102,-0.19843 0.65415,-0.47746 z m -0.50613,-0.009 -0.14802,0.48706 0.14802,-0.48706 z m 0.50613,0.009 -0.0131,0.67589 -0.64102,-0.19843 0.65415,-0.47746 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path283" + d="m 410.55,216.45 c 4.0263,-0.19844 7.9142,3.3241 8.486,7.6344 0.57059,4.3103 -2.2441,7.6561 -6.1034,7.7018 -3.8592,0.0458 -7.4451,-3.1136 -8.1828,-7.2736 -0.73769,-4.16 1.7738,-7.8641 5.8002,-8.0626 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path285" + d="m 419.54,224.02 -1.0027,0.13469 0,0 -0.0598,-0.37641 -0.0764,-0.37404 -0.0955,-0.3668 -0.11101,-0.3632 -0.12653,-0.35599 -0.14324,-0.34876 -0.15757,-0.34156 -0.17309,-0.33433 -0.18622,-0.32713 -0.20173,-0.31749 -0.21248,-0.30908 -0.22441,-0.29706 -0.23874,-0.28743 -0.24829,-0.27781 -0.26023,-0.2658 -0.26858,-0.25375 -0.27813,-0.24053 -0.28649,-0.2261 -0.29603,-0.21407 -0.30319,-0.19965 -0.31156,-0.1852 -0.31633,-0.17078 -0.32111,-0.15273 -0.32826,-0.1395 -0.33185,-0.12027 -0.33424,-0.10464 -0.34139,-0.0865 -0.34141,-0.0697 -0.34377,-0.0493 -0.34618,-0.0312 -0.34735,-0.0121 -0.34857,0.006 -0.0502,-1.0174 0.40585,-0.008 0.40228,0.0145 0.40107,0.036 0.39871,0.059 0.39391,0.0793 0.38914,0.0986 0.38437,0.11906 0.37722,0.13951 0.37123,0.15634 0.36646,0.17439 0.35693,0.19242 0.34736,0.20686 0.3414,0.22369 0.33184,0.24053 0.3223,0.25497 0.31156,0.2694 0.29961,0.28261 0.28888,0.29465 0.27693,0.30908 0.265,0.32111 0.25068,0.33314 0.23874,0.34275 0.22323,0.35599 0.20769,0.36319 0.19457,0.37522 0.17667,0.38245 0.15996,0.39206 0.14324,0.39929 0.12534,0.40649 0.10505,0.41491 0.0883,0.41973 0.0668,0.42694 0,0 z m -6.5988,8.279 -0.0119,-1.0198 0.33064,-0.0132 0.32589,-0.03 0.31871,-0.0458 0.31037,-0.0649 0.302,-0.0794 0.29485,-0.095 0.28767,-0.11184 0.27814,-0.12629 0.27097,-0.13951 0.25902,-0.15393 0.25068,-0.16837 0.24112,-0.18161 0.23039,-0.19483 0.21964,-0.20685 0.2089,-0.22008 0.19696,-0.23091 0.18622,-0.24415 0.17427,-0.25496 0.16116,-0.26457 0.14801,-0.27662 0.13489,-0.28623 0.12056,-0.29705 0.10744,-0.30667 0.0919,-0.3151 0.0777,-0.32472 0.0621,-0.33192 0.0454,-0.34157 0.0286,-0.34876 0.0119,-0.3584 -0.004,-0.36319 -0.0226,-0.37042 -0.0417,-0.37763 1.0027,-0.13469 0.0466,0.42574 0.025,0.41852 0.006,0.41372 -0.0144,0.40649 -0.0335,0.39927 -0.0525,0.39207 -0.0716,0.38485 -0.0896,0.37282 -0.10622,0.3656 -0.12415,0.35719 -0.14205,0.34516 -0.15637,0.33433 -0.17429,0.32472 -0.18979,0.31269 -0.20293,0.29826 -0.21964,0.28743 -0.23277,0.27419 -0.24709,0.25859 -0.26023,0.24534 -0.27335,0.23091 -0.28649,0.21527 -0.29604,0.19964 -0.30917,0.18281 -0.31872,0.16596 -0.32827,0.14792 -0.34019,0.13108 -0.34737,0.11427 -0.35691,0.0937 -0.36528,0.0746 -0.37362,0.0553 -0.3784,0.0349 -0.38557,0.0156 z m -8.6865,-7.6933 0.99554,-0.1804 0.0728,0.36561 0.0883,0.35838 0.10384,0.35358 0.11699,0.34636 0.1313,0.33795 0.14563,0.33313 0.15876,0.32351 0.17071,0.31751 0.18262,0.30547 0.19577,0.29946 0.20651,0.28983 0.21606,0.27903 0.22799,0.26939 0.23755,0.25857 0.2471,0.24774 0.25545,0.23572 0.26381,0.22609 0.27216,0.21168 0.28052,0.19964 0.28529,0.18761 0.29485,0.17318 0.29842,0.16116 0.30439,0.14432 0.31156,0.13228 0.31513,0.11787 0.31872,0.10096 0.32349,0.0878 0.32468,0.0709 0.32946,0.0541 0.33066,0.0384 0.33423,0.0228 0.33424,0.004 0.0119,1.0198 -0.38675,-0.006 -0.38437,-0.0253 -0.38079,-0.0432 -0.37721,-0.0637 -0.37482,-0.0806 -0.36885,-0.0998 -0.36407,-0.11546 -0.35812,-0.13469 -0.35214,-0.14913 -0.34498,-0.16596 -0.339,-0.18041 -0.33067,-0.19724 -0.32347,-0.20926 -0.31395,-0.2261 -0.30559,-0.23812 -0.29722,-0.25256 -0.2865,-0.26457 -0.27574,-0.27662 -0.2662,-0.28983 -0.25425,-0.30067 -0.24232,-0.31268 -0.23039,-0.32352 -0.21725,-0.33313 -0.20651,-0.34396 -0.1898,-0.35358 -0.17786,-0.36201 -0.16233,-0.37161 -0.14803,-0.37882 -0.1313,-0.38967 -0.11578,-0.39447 -0.0979,-0.40168 -0.0823,-0.40891 z m 6.2729,-8.6615 0.0502,1.0174 -0.34498,0.0265 -0.33662,0.0445 -0.32469,0.0637 -0.31753,0.0806 -0.30677,0.095 -0.29603,0.11425 -0.2865,0.12748 -0.27574,0.14431 -0.2662,0.15876 -0.25544,0.17077 -0.24352,0.18521 -0.23158,0.20085 -0.22203,0.21166 -0.21008,0.2249 -0.19576,0.23571 -0.18624,0.24775 -0.17188,0.25978 -0.16114,0.26939 -0.14684,0.27901 -0.13249,0.28864 -0.11818,0.29706 -0.10505,0.30907 -0.0908,0.3151 -0.0752,0.32111 -0.0609,0.32952 -0.0442,0.33675 -0.0286,0.34154 -0.0119,0.34878 0.004,0.35237 0.0215,0.35719 0.0382,0.362 0.0561,0.36441 -0.99553,0.18039 -0.0633,-0.41251 -0.0429,-0.4101 -0.0238,-0.4053 -0.006,-0.40048 0.0143,-0.39688 0.0335,-0.39206 0.0513,-0.38485 0.068,-0.38004 0.0871,-0.37161 0.10505,-0.36321 0.12175,-0.35477 0.13729,-0.34757 0.15636,-0.33674 0.1707,-0.32712 0.18742,-0.31509 0.20292,-0.30308 0.21725,-0.29344 0.23398,-0.27901 0.24828,-0.2658 0.26023,-0.25015 0.27692,-0.23691 0.29127,-0.2213 0.30081,-0.20444 0.31633,-0.18762 0.32827,-0.17077 0.33901,-0.15153 0.35094,-0.13349 0.3617,-0.11427 0.37243,-0.095 0.38437,-0.0734 0.39153,-0.0517 0.39989,-0.0312 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path287" + d="m 410.89,218.57 c 2.9448,-0.12868 5.7691,2.4221 6.2024,5.5743 0.43451,3.1522 -1.5864,5.6476 -4.4584,5.6958 -2.8338,0.0505 -5.5208,-2.3379 -6.0389,-5.377 -0.53358,-3.1064 1.3513,-5.7643 4.2949,-5.893 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path289" + d="m 417.59,224.07 -1.0027,0.13951 0,0 -0.043,-0.2694 -0.0561,-0.26698 -0.068,-0.26217 -0.0799,-0.25738 -0.0931,-0.25376 -0.10266,-0.25015 -0.1134,-0.24414 -0.12295,-0.23931 -0.13369,-0.23213 -0.14324,-0.2273 -0.15279,-0.21888 -0.16116,-0.21406 -0.1707,-0.20446 -0.17666,-0.19724 -0.18621,-0.19001 -0.19219,-0.1804 -0.19815,-0.17078 -0.20413,-0.16236 -0.21129,-0.15152 -0.21725,-0.14313 -0.21964,-0.13109 -0.22561,-0.12026 -0.23157,-0.11184 -0.23039,-0.0974 -0.23634,-0.0854 -0.24113,-0.077 -0.23874,-0.0613 -0.24351,-0.0493 -0.24472,-0.036 -0.24709,-0.0228 -0.24709,-0.0108 -0.24709,0.004 -0.043,-1.0174 0.30439,-0.006 0.30201,0.0132 0.29962,0.0277 0.29722,0.0458 0.29365,0.0589 0.29127,0.0758 0.28649,0.089 0.28171,0.10222 0.27813,0.11906 0.26977,0.12868 0.2662,0.14192 0.26022,0.15514 0.25306,0.16717 0.24711,0.17799 0.23993,0.18882 0.23158,0.19964 0.22321,0.21167 0.21487,0.21888 0.20532,0.2285 0.19696,0.23812 0.1874,0.24775 0.17667,0.25495 0.16711,0.26339 0.15518,0.2706 0.14444,0.27781 0.13251,0.28503 0.11936,0.29104 0.10744,0.29705 0.0942,0.30307 0.0799,0.31028 0.0657,0.3127 0.0525,0.31749 0,0 z m -4.9514,6.2754 -0.0167,-1.0198 0.23874,-0.0108 0.23516,-0.0217 0.22918,-0.036 0.22204,-0.0458 0.21606,-0.059 0.21127,-0.0697 0.20533,-0.0806 0.19695,-0.0902 0.19218,-0.10222 0.18503,-0.11186 0.17548,-0.12026 0.17069,-0.13108 0.16353,-0.1395 0.154,-0.14793 0.14682,-0.15755 0.13967,-0.16717 0.13011,-0.17438 0.12174,-0.18282 0.11342,-0.19121 0.10504,-0.19723 0.0931,-0.20446 0.0848,-0.21286 0.0728,-0.21888 0.0645,-0.2273 0.0536,-0.23212 0.0417,-0.23692 0.031,-0.24534 0.0191,-0.25016 0.006,-0.25375 -0.005,-0.26098 -0.0179,-0.26698 -0.031,-0.2694 1.0027,-0.13951 0.0358,0.3175 0.0204,0.31269 0.007,0.30908 -0.008,0.30428 -0.0238,0.30066 -0.0357,0.29344 -0.0514,0.28984 -0.0656,0.28263 -0.0764,0.2754 -0.0919,0.2694 -0.10385,0.26097 -0.11699,0.25495 -0.12892,0.24535 -0.13966,0.23693 -0.1528,0.2285 -0.16353,0.21768 -0.17308,0.20806 -0.18503,0.19844 -0.19696,0.18881 -0.20412,0.17558 -0.21367,0.16477 -0.22561,0.15393 -0.23277,0.13831 -0.23993,0.12869 -0.24948,0.11425 -0.25785,0.10223 -0.26379,0.0865 -0.27098,0.0733 -0.27693,0.0577 -0.2841,0.0432 -0.28769,0.0288 -0.29365,0.0132 z m -0.0167,-1.0198 z m -6.5283,-4.7805 0.99555,-0.17319 0.0514,0.26098 0.0609,0.25616 0.074,0.25136 0.0836,0.25014 0.0942,0.24295 0.10385,0.23932 0.1134,0.23451 0.12415,0.22851 0.1313,0.22128 0.14205,0.21648 0.14922,0.21167 0.15637,0.20084 0.16592,0.19604 0.17189,0.19001 0.18026,0.1792 0.18502,0.17198 0.19218,0.16356 0.19934,0.15635 0.20175,0.14551 0.20769,0.13591 0.21247,0.12747 0.21607,0.11666 0.22083,0.10583 0.22441,0.0962 0.2268,0.0854 0.22921,0.0746 0.23276,0.0613 0.23397,0.0517 0.23276,0.0385 0.23755,0.0265 0.23874,0.0155 0.23874,0.001 0.0167,1.0198 -0.29126,-0.004 -0.28888,-0.0181 -0.28768,-0.0312 -0.28768,-0.0481 -0.28171,-0.0613 -0.27813,-0.0758 -0.27693,-0.089 -0.26978,-0.10222 -0.26501,-0.11306 -0.26142,-0.12506 -0.25664,-0.13832 -0.25068,-0.14912 -0.24351,-0.15995 -0.23755,-0.17198 -0.23037,-0.18041 -0.22323,-0.19001 -0.21606,-0.20083 -0.20889,-0.21048 -0.20054,-0.21887 -0.1922,-0.22731 -0.18262,-0.23691 -0.17309,-0.24295 -0.16355,-0.25015 -0.15517,-0.25976 -0.14324,-0.267 -0.1325,-0.27059 -0.12296,-0.28022 -0.10863,-0.28624 -0.0979,-0.28862 -0.0859,-0.29706 -0.0728,-0.30187 -0.0585,-0.30427 z m 0.99555,-0.17319 z m 3.7756,-6.3151 0.043,1.0174 -0.24589,0.0181 -0.23755,0.03 -0.23158,0.042 -0.2256,0.0553 -0.21727,0.0673 -0.21128,0.0782 -0.20411,0.0878 -0.19577,0.0997 -0.1898,0.10945 -0.18143,0.11906 -0.17429,0.13108 -0.16712,0.13832 -0.15756,0.14792 -0.1504,0.15635 -0.14205,0.16717 -0.13132,0.17198 -0.12534,0.184 -0.11579,0.18881 -0.10504,0.19723 -0.0967,0.20566 -0.0859,0.21046 -0.0764,0.21888 -0.0668,0.22371 -0.0549,0.2297 -0.0442,0.23692 -0.0335,0.24053 -0.0216,0.24654 -0.0107,0.25016 0.001,0.25496 0.0144,0.25976 0.0263,0.2634 0.0394,0.26698 -0.99554,0.17318 -0.0466,-0.31269 -0.031,-0.31149 -0.0167,-0.30547 -0.004,-0.30547 0.0131,-0.30067 0.0263,-0.29464 0.0406,-0.29105 0.0537,-0.28503 0.0668,-0.28021 0.0811,-0.27421 0.0931,-0.26698 0.10744,-0.26098 0.11817,-0.25135 0.13131,-0.24533 0.14444,-0.23693 0.15399,-0.22731 0.16712,-0.21768 0.17785,-0.20805 0.18861,-0.19723 0.20054,-0.18882 0.21009,-0.17439 0.21963,-0.16236 0.2292,-0.15273 0.23993,-0.13831 0.24828,-0.12628 0.25666,-0.11184 0.2638,-0.0974 0.27456,-0.0842 0.28052,-0.0673 0.28648,-0.0542 0.29484,-0.0372 0.30081,-0.0205 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path291" + d="m 411.22,220.72 c 1.8419,-0.0685 3.6026,1.5141 3.8879,3.4889 0.28529,1.9748 -0.98599,3.5682 -2.7885,3.6067 -1.8037,0.0372 -3.5011,-1.4636 -3.8222,-3.4059 -0.32111,-1.9435 0.88215,-3.6188 2.7228,-3.6885 v -0.001 z" + inkscape:connector-curvature="0" + style="fill:#0c4076" /> + <path + id="path293" + d="m 415.6,224.13 -1.0003,0.14671 0,0 -0.0275,-0.15994 -0.0346,-0.15876 -0.0417,-0.15513 -0.0477,-0.15394 -0.0549,-0.15154 -0.0621,-0.14673 -0.068,-0.14672 -0.074,-0.14191 -0.0799,-0.1383 -0.0871,-0.1347 -0.0908,-0.13109 -0.0967,-0.12629 -0.10025,-0.12145 -0.10625,-0.11666 -0.111,-0.11306 -0.1158,-0.10943 -0.11579,-0.0999 -0.12295,-0.0962 -0.12533,-0.0914 -0.12774,-0.083 -0.13011,-0.0794 -0.13488,-0.071 -0.13609,-0.0662 -0.13607,-0.0565 -0.13847,-0.0518 -0.14205,-0.0444 -0.14205,-0.036 -0.14325,-0.03 -0.14324,-0.0228 -0.14205,-0.0132 -0.14562,-0.006 -0.14445,0 -0.0382,-1.0174 0.19934,-0.002 0.19816,0.008 0.19934,0.0205 0.19577,0.03 0.19338,0.0397 0.1898,0.0505 0.1874,0.059 0.18383,0.0662 0.18384,0.0782 0.17666,0.0854 0.17308,0.0925 0.1707,0.10096 0.16593,0.10944 0.15876,0.11547 0.15638,0.12266 0.15159,0.1311 0.14445,0.13588 0.13966,0.14192 0.13488,0.14793 0.12892,0.15514 0.12295,0.16236 0.1146,0.16476 0.10863,0.17078 0.10147,0.17678 0.0955,0.1804 0.0871,0.1852 0.0789,0.19003 0.0716,0.19483 0.0621,0.19724 0.0537,0.20083 0.0442,0.20446 0.0346,0.20806 0,0 z m -3.2779,4.19 -0.0215,-1.0198 0.13967,-0.006 0.13847,-0.0145 0.1313,-0.0205 0.13011,-0.0288 0.12654,-0.0349 0.12176,-0.042 0.11817,-0.047 0.11459,-0.0542 0.10982,-0.059 0.10863,-0.0662 0.10266,-0.0721 0.0979,-0.0758 0.0931,-0.083 0.092,-0.089 0.0859,-0.0926 0.0799,-0.0974 0.0752,-0.10222 0.0717,-0.10704 0.0656,-0.11185 0.0597,-0.11785 0.0549,-0.12147 0.049,-0.12388 0.043,-0.13109 0.0382,-0.13349 0.031,-0.1371 0.0238,-0.1395 0.0167,-0.14312 0.0107,-0.14913 0.004,-0.15153 -0.004,-0.15395 -0.0119,-0.15633 -0.0191,-0.16116 1.0003,-0.14674 0.0263,0.20687 0.0144,0.20685 0.006,0.20446 -0.006,0.19963 -0.0131,0.19723 -0.0238,0.19604 -0.0335,0.19242 -0.043,0.18762 -0.0501,0.1816 -0.0597,0.17919 -0.068,0.17438 -0.0764,0.16958 -0.0859,0.16356 -0.0919,0.15755 -0.10025,0.15513 -0.10862,0.14553 -0.11579,0.14072 -0.12415,0.13349 -0.12772,0.12507 -0.13608,0.11906 -0.14325,0.11185 -0.1504,0.10342 -0.15399,0.095 -0.15996,0.0878 -0.16711,0.0782 -0.1707,0.0685 -0.17666,0.0589 -0.17907,0.0493 -0.18502,0.0409 -0.18859,0.03 -0.191,0.0193 -0.19458,0.0108 z m -4.3319,-3.8316 0.99794,-0.16836 0.0298,0.15754 0.0369,0.15755 0.043,0.15273 0.0501,0.15154 0.0549,0.14672 0.0633,0.14432 0.068,0.14191 0.0729,0.1371 0.0799,0.1335 0.0859,0.13229 0.0896,0.12627 0.0942,0.12269 0.099,0.11784 0.10266,0.11306 0.10863,0.10823 0.1122,0.10464 0.1146,0.0974 0.11936,0.0937 0.12057,0.0866 0.12653,0.0818 0.12772,0.0758 0.12892,0.0685 0.1337,0.0649 0.1325,0.0565 0.13608,0.0493 0.13727,0.0444 0.13609,0.036 0.14324,0.03 0.13966,0.0228 0.14086,0.0157 0.14324,0.008 0.14085,0 0.0216,1.0198 -0.19576,-0.002 -0.19338,-0.0108 -0.19338,-0.0205 -0.1898,-0.0325 -0.18622,-0.0397 -0.18859,-0.0481 -0.18264,-0.059 -0.17905,-0.0661 -0.17787,-0.0758 -0.1719,-0.0818 -0.16949,-0.0902 -0.16594,-0.0997 -0.15994,-0.10343 -0.15876,-0.11306 -0.1528,-0.12026 -0.14802,-0.12627 -0.14086,-0.13109 -0.13727,-0.1371 -0.1337,-0.14673 -0.12534,-0.14912 -0.12055,-0.15635 -0.1134,-0.15995 -0.10744,-0.16596 -0.10147,-0.17199 -0.0943,-0.17558 -0.0871,-0.1804 -0.08,-0.18521 -0.0717,-0.19002 -0.0645,-0.19242 -0.0549,-0.19843 -0.0466,-0.19845 -0.0394,-0.20325 z m 2.7157,-3.7727 1.0122,0 -0.48703,0.50873 -0.14324,0.009 -0.13728,0.0168 -0.13608,0.0253 -0.13131,0.03 -0.12534,0.0385 -0.12295,0.0444 -0.11937,0.0517 -0.11221,0.0565 -0.10982,0.0625 -0.10623,0.071 -0.10147,0.0735 -0.0967,0.0806 -0.0931,0.0866 -0.0871,0.0914 -0.0848,0.0962 -0.0777,0.0997 -0.0728,0.10583 -0.068,0.11185 -0.0621,0.11425 -0.0585,0.12147 -0.0525,0.12387 -0.0454,0.12508 -0.0394,0.1323 -0.0346,0.13709 -0.0275,0.1383 -0.0204,0.14072 -0.0131,0.14432 -0.008,0.15153 0,0.14913 0.007,0.15274 0.0144,0.15514 0.0226,0.15754 -0.99793,0.16838 -0.0298,-0.20566 -0.0191,-0.20325 -0.009,-0.20324 0.002,-0.19965 0.008,-0.19482 0.0179,-0.19483 0.0298,-0.19363 0.0369,-0.18881 0.0466,-0.18281 0.0536,-0.1804 0.0644,-0.17799 0.0716,-0.17198 0.0799,-0.16717 0.0883,-0.16236 0.0967,-0.15513 0.10386,-0.15153 0.11339,-0.14553 0.11818,-0.1371 0.12773,-0.13229 0.13369,-0.12267 0.13966,-0.11666 0.14683,-0.10944 0.15398,-0.0998 0.15997,-0.0937 0.1671,-0.083 0.1719,-0.0733 0.17547,-0.0637 0.18264,-0.0553 0.18622,-0.0445 0.1886,-0.0349 0.19696,-0.024 0.19815,-0.012 -0.48703,0.50872 z m 1.0122,0 0,0.49069 -0.48703,0.0181 0.48703,-0.50873 z m 0,-0.001 0,0.001 -1.0122,0 0,-0.001 0.48702,-0.50872 0.52523,0.50872 z m -1.0122,0 0,-0.49068 0.48702,-0.0181 -0.48702,0.50872 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + </g> + <g + id="g295"> + <path + id="path297" + d="m 482.14,182.98 c 3.7685,0 6.822,3.0764 6.822,6.8731 0,3.7968 -3.0535,6.8732 -6.822,6.8732 -3.7673,0 -6.822,-3.0764 -6.822,-6.8732 0,-3.7956 3.0547,-6.8731 6.822,-6.8731 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path299" + d="m 489.47,189.85 h -1.0122 c 0.0279,-2.3407 -1.3595,-4.6239 -3.4526,-5.6729 -0.88056,-0.45505 -1.8722,-0.69026 -2.8629,-0.68985 v -1.0198 c 2.501,-0.0218 4.943,1.3598 6.2325,3.4992 0.71532,1.1614 1.0948,2.5201 1.0952,3.8834 z m -7.3281,7.3831 v -1.0198 c 2.323,0.0279 4.5733,-1.3682 5.6113,-3.4409 0.46533,-0.89843 0.70433,-1.9109 0.70411,-2.922 h 1.0122 c 0.0234,2.5978 -1.4383,5.1464 -3.7072,6.4175 -1.0946,0.63293 -2.3573,0.96382 -3.6205,0.96528 z m -7.3281,-7.3831 h 1.0122 c -0.0268,2.3405 1.3593,4.6252 3.454,5.6726 0.87994,0.45554 1.8713,0.69068 2.8616,0.69019 v 1.0198 c -2.4871,0.0217 -4.9154,-1.3449 -6.2102,-3.4642 -0.731,-1.1677 -1.116,-2.5423 -1.1177,-3.9184 z m 7.3281,-7.3831 v 1.0198 c -2.3367,-0.0273 -4.5998,1.3859 -5.6293,3.4784 -0.45424,0.88884 -0.68579,1.8872 -0.68622,2.8845 h -1.0122 c -0.0207,-2.5072 1.3361,-4.969 3.4752,-6.2798 1.1483,-0.71991 2.4984,-1.1014 3.8526,-1.103 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path301" + d="m 482.14,171.07 c 3.7685,0 6.822,3.0776 6.822,6.8731 0,3.7968 -3.0535,6.8732 -6.822,6.8732 -3.7673,0 -6.822,-3.0764 -6.822,-6.8732 0,-3.7956 3.0547,-6.8731 6.822,-6.8731 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path303" + d="m 489.47,177.94 h -1.0122 c 0.0283,-2.3684 -1.3939,-4.6771 -3.5264,-5.7102 -0.86217,-0.43085 -1.8258,-0.65232 -2.7891,-0.65277 v -1.0198 c 2.4873,-0.0212 4.9167,1.3441 6.2102,3.4654 0.73156,1.1663 1.1164,2.542 1.1176,3.9174 z m -7.3281,7.3831 v -1.0198 c 2.323,0.0279 4.5733,-1.368 5.6113,-3.4408 0.46534,-0.89842 0.70433,-1.9109 0.70411,-2.922 h 1.0122 c 0.0234,2.5978 -1.4383,5.1464 -3.7072,6.4175 -1.0946,0.63293 -2.3572,0.96371 -3.6205,0.96519 z m -7.3281,-7.3831 h 1.0122 c -0.0268,2.3405 1.3593,4.6252 3.454,5.6726 0.87994,0.45558 1.8712,0.69084 2.8616,0.6903 v 1.0198 c -2.4871,0.0218 -4.9154,-1.3447 -6.2102,-3.4641 -0.73103,-1.1678 -1.116,-2.5422 -1.1177,-3.9186 z m 7.3281,-7.3831 v 1.0198 c -2.3367,-0.0273 -4.5998,1.3859 -5.6293,3.4784 -0.45424,0.88884 -0.68579,1.8872 -0.68622,2.8845 h -1.0122 c -0.0207,-2.5072 1.3361,-4.969 3.4752,-6.2798 1.1483,-0.71976 2.4982,-1.1017 3.8526,-1.103 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path305" + d="m 482.14,159.61 c 3.7685,0 6.822,3.0776 6.822,6.8732 0,3.7956 -3.0535,6.8731 -6.822,6.8731 -3.7673,0 -6.822,-3.0776 -6.822,-6.8731 0,-3.7956 3.0547,-6.8732 6.822,-6.8732 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path307" + d="m 489.47,166.49 h -1.0122 c 0.0283,-2.3684 -1.3939,-4.6771 -3.5264,-5.7102 -0.8622,-0.43079 -1.8258,-0.65248 -2.7891,-0.65287 v -1.0198 c 2.4872,-0.0211 4.9167,1.3442 6.2102,3.4654 0.73156,1.1663 1.1164,2.542 1.1176,3.9174 z m -7.3281,7.3831 v -1.0198 c 2.3229,0.0267 4.5746,-1.3678 5.6111,-3.4422 0.46571,-0.89789 0.70461,-1.91 0.7043,-2.9208 h 1.0122 c 0.0215,2.5073 -1.3364,4.9677 -3.474,6.2798 -1.1492,0.71924 -2.499,1.1017 -3.8537,1.103 z m -7.3281,-7.3831 h 1.0122 c -0.0281,2.3687 1.3947,4.6769 3.5273,5.7098 0.86177,0.43137 1.8252,0.6527 2.7883,0.65312 v 1.0198 c -2.5015,0.0216 -4.9429,-1.3608 -6.2325,-3.5004 -0.71673,-1.1606 -1.0934,-2.5196 -1.0953,-3.8823 z m 7.3281,-7.3831 v 1.0198 c -2.3367,-0.0272 -4.5998,1.386 -5.6293,3.4785 -0.45424,0.88884 -0.68579,1.8872 -0.68622,2.8845 h -1.0122 c -0.0207,-2.5072 1.3361,-4.969 3.4752,-6.2798 1.1483,-0.71998 2.4986,-1.1013 3.8526,-1.1031 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path309" + d="m 482.14,127.08 c 3.7685,0 6.822,3.0776 6.822,6.8731 0,3.7968 -3.0535,6.8744 -6.822,6.8744 -3.7673,0 -6.822,-3.0776 -6.822,-6.8744 0,-3.7956 3.0547,-6.8731 6.822,-6.8731 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path311" + d="m 489.47,133.95 h -1.0122 c 0.0283,-2.3684 -1.3939,-4.6771 -3.5264,-5.7102 -0.86217,-0.43085 -1.8258,-0.6523 -2.7891,-0.65276 v -1.0198 c 2.4873,-0.0212 4.9168,1.3441 6.2102,3.4654 0.73156,1.1663 1.1164,2.542 1.1176,3.9174 z m -7.3281,7.3843 v -1.0198 c 2.3228,0.0272 4.5728,-1.3687 5.6107,-3.4413 0.4656,-0.89881 0.70527,-1.9113 0.70469,-2.9229 h 1.0122 c 0.0236,2.5845 -1.4229,5.1189 -3.6708,6.3984 -1.1035,0.64565 -2.3797,0.98346 -3.6568,0.98567 z m -7.3281,-7.3843 h 1.0122 c -0.0273,2.3546 1.3765,4.6517 3.4903,5.692 0.87087,0.44417 1.8485,0.67153 2.8254,0.67208 v 1.0198 c -2.4732,0.021 -4.8893,-1.3292 -6.1878,-3.4303 -0.7467,-1.1744 -1.1379,-2.5639 -1.1401,-3.9537 z m 7.3281,-7.3831 v 1.0198 c -2.3367,-0.0271 -4.5998,1.3859 -5.6293,3.4785 -0.45424,0.88884 -0.68579,1.8872 -0.68622,2.8845 h -1.0122 c -0.0207,-2.5072 1.3361,-4.969 3.4752,-6.2798 1.1483,-0.71996 2.4986,-1.1013 3.8526,-1.1031 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path313" + d="m 482.14,137.16 c 3.7685,0 6.822,3.0764 6.822,6.8719 0,3.7968 -3.0535,6.8743 -6.822,6.8743 -3.7673,0 -6.822,-3.0776 -6.822,-6.8743 0,-3.7956 3.0547,-6.8719 6.822,-6.8719 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path315" + d="m 489.47,144.03 h -1.0122 c 0.0283,-2.3546 -1.3775,-4.6491 -3.4895,-5.6909 -0.87167,-0.44187 -1.849,-0.67136 -2.826,-0.67081 v -1.0198 c 2.5647,-0.0233 5.0658,1.4324 6.3285,3.6617 0.65615,1.1223 0.99754,2.4212 0.99923,3.7199 z m -7.3281,7.3843 v -1.0198 c 2.3228,0.027 4.5728,-1.3686 5.6107,-3.4413 0.46559,-0.89882 0.70527,-1.9113 0.70469,-2.923 h 1.0122 c 0.0236,2.5845 -1.4229,5.1189 -3.6708,6.3984 -1.1035,0.64578 -2.3799,0.98315 -3.6568,0.98567 z m -7.3281,-7.3843 h 1.0122 c -0.0273,2.3545 1.3765,4.6517 3.4903,5.692 0.87087,0.44419 1.8485,0.67155 2.8254,0.6721 v 1.0198 c -2.4875,0.0215 -4.9157,-1.3454 -6.2102,-3.4654 -0.73184,-1.1671 -1.1157,-2.5427 -1.1177,-3.9185 z m 7.3281,-7.3819 v 1.0198 c -2.3643,-0.0284 -4.6529,1.4195 -5.666,3.5512 -0.43071,0.86977 -0.64884,1.8407 -0.64952,2.8104 h -1.0122 c -0.021,-2.5072 1.3361,-4.9682 3.4752,-6.2786 1.1475,-0.71967 2.499,-1.1022 3.8526,-1.1029 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path317" + d="m 482.14,148.16 c 3.7685,0 6.822,3.0776 6.822,6.8732 0,3.7968 -3.0535,6.8744 -6.822,6.8744 -3.7673,0 -6.822,-3.0776 -6.822,-6.8744 0,-3.7956 3.0547,-6.8732 6.822,-6.8732 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path319" + d="m 489.47,155.03 h -1.0122 c 0.0283,-2.3684 -1.3939,-4.6771 -3.5264,-5.7102 -0.86219,-0.43078 -1.8258,-0.65246 -2.7891,-0.65286 v -1.0198 c 2.4873,-0.0211 4.9167,1.3443 6.2102,3.4654 0.73156,1.1663 1.1164,2.542 1.1176,3.9174 z m -7.3281,7.3843 v -1.0198 c 2.3228,0.0272 4.5728,-1.3686 5.6107,-3.4412 0.46559,-0.89882 0.70528,-1.9113 0.70469,-2.923 h 1.0122 c 0.0236,2.5845 -1.4229,5.1189 -3.6708,6.3984 -1.1035,0.64568 -2.3797,0.98331 -3.6568,0.98556 z m -7.3281,-7.3843 h 1.0122 c -0.0273,2.3545 1.3765,4.6517 3.4903,5.692 0.87087,0.44418 1.8485,0.67154 2.8254,0.67209 v 1.0198 c -2.4732,0.021 -4.8893,-1.3292 -6.1878,-3.4303 -0.7467,-1.1744 -1.1379,-2.5638 -1.1401,-3.9537 z m 7.3281,-7.3831 v 1.0198 c -2.3367,-0.0272 -4.5998,1.386 -5.6293,3.4785 -0.45425,0.88883 -0.68579,1.8872 -0.68622,2.8845 h -1.0122 c -0.0207,-2.5072 1.3361,-4.969 3.4752,-6.2798 1.1483,-0.71984 2.4984,-1.1016 3.8526,-1.1031 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path321" + d="m 486.99,195.51 c 0.97764,1.5779 0.7186,1.8858 1.3596,2.3933 0.82602,0.65184 2.1821,0.65905 3.482,0.45581 5.2451,-0.82502 4.5134,2.3512 2.194,5.9267 -1.1591,1.7871 -3.8521,3.5851 -5.2582,5.1209 -1.405,1.5358 -1.5256,2.8094 -2.0806,3.193 -2.0126,0.0481 -3.7506,0.0577 -4.5384,0.0433 h -0.004 c -0.78784,0.0145 -2.5247,0.006 -4.5372,-0.0433 -0.55387,-0.38364 -0.67445,-1.6572 -2.0806,-3.193 -1.405,-1.5358 -4.0992,-3.3338 -5.2582,-5.1209 -2.3194,-3.5743 -3.0499,-6.7517 2.194,-5.9267 1.2999,0.20324 2.6572,0.19603 3.482,-0.45581 0.64221,-0.50753 0.38317,-0.8154 1.3608,-2.3933 0.63504,-1.0222 1.3978,-1.7895 2.2274,-2.3019 0.82841,-0.51113 1.7213,-0.2321 2.6154,-0.2321 0.89288,0 1.7858,-0.27903 2.6154,0.2321 0.82841,0.51233 1.5924,1.2796 2.2274,2.3019 h -10e-4 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path323" + d="m 488.66,197.51 -0.62311,0.80096 -0.001,0 -0.0692,-0.0565 -0.0645,-0.0565 -0.0657,-0.0613 -0.0609,-0.0625 -0.0537,-0.0613 -0.0489,-0.0613 -0.0477,-0.0625 -0.0454,-0.0649 -0.0394,-0.0649 -0.037,-0.0649 -0.0346,-0.0662 -0.0298,-0.0625 -0.0286,-0.0613 -0.031,-0.0685 -0.025,-0.0613 -0.0263,-0.0613 -0.0286,-0.0709 -0.0263,-0.0662 -0.0286,-0.0709 -0.0298,-0.0721 -0.0323,-0.0746 -0.0347,-0.0794 -0.0382,-0.0842 -0.0417,-0.0878 -0.0454,-0.0937 -0.0502,-0.0998 -0.0536,-0.10463 -0.0598,-0.11065 -0.0645,-0.11786 -0.0717,-0.12267 -0.0777,-0.13109 -0.0848,-0.13951 0.85708,-0.53878 0.0919,0.14913 0.0848,0.14312 0.0788,0.13709 0.0716,0.12989 0.0668,0.12266 0.0609,0.11908 0.0548,0.10943 0.0525,0.10584 0.0466,0.10222 0.0429,0.0938 0.0394,0.089 0.0369,0.0866 0.0323,0.0793 0.031,0.0733 0.0286,0.071 0.0238,0.059 0.0263,0.0613 0.0226,0.0565 0.0191,0.0444 0.0216,0.047 0.0204,0.0409 0.0179,0.0349 0.0179,0.0312 0.0204,0.0312 0.0167,0.0265 0.0216,0.0288 0.025,0.03 0.025,0.0277 0.0275,0.0288 0.0323,0.03 0.0406,0.0349 0.0454,0.0372 -10e-4,0 z m -0.62311,0.80096 -0.001,0 -0.35811,-0.28382 0.35931,0.28382 z m 3.716,-0.44858 0.15519,1.0078 -0.12653,0.0181 -0.12773,0.0193 -0.1313,0.0169 -0.12774,0.0132 -0.12651,0.0144 -0.12893,0.0108 -0.12892,0.0108 -0.12892,0.007 -0.12773,0.006 -0.12772,0.004 -0.13011,0.004 -0.12772,-10e-4 -0.12654,-0.004 -0.12653,-0.005 -0.12654,-0.008 -0.12414,-0.009 -0.12415,-0.0132 -0.12533,-0.0169 -0.12175,-0.0193 -0.11938,-0.0217 -0.12415,-0.0265 -0.11936,-0.0312 -0.11579,-0.0325 -0.11578,-0.036 -0.1158,-0.042 -0.1146,-0.0458 -0.10982,-0.0493 -0.10862,-0.0541 -0.10982,-0.0602 -0.10384,-0.0649 -0.10026,-0.0673 -0.099,-0.0746 0.62311,-0.80096 0.0585,0.0432 0.0645,0.0432 0.0656,0.041 0.0645,0.036 0.0728,0.0349 0.0764,0.0348 0.0764,0.0312 0.08,0.0277 0.0823,0.0265 0.0896,0.0253 0.0883,0.0217 0.0883,0.0193 0.0955,0.0168 0.0978,0.0168 0.0967,0.012 0.10266,0.0108 0.10265,0.009 0.10505,0.006 0.10505,0.005 0.10982,0.001 0.10863,0.001 0.10862,-0.001 0.1134,-0.004 0.11341,-0.006 0.11459,-0.007 0.11459,-0.008 0.1146,-0.0108 0.11697,-0.012 0.11819,-0.0132 0.11221,-0.0145 0.11817,-0.0168 0.11697,-0.0181 z m 2.6954,6.7096 -0.84752,-0.55802 0.2077,-0.32713 0.19816,-0.3223 0.18621,-0.3175 0.17428,-0.3127 0.16116,-0.30666 0.14801,-0.30068 0.1337,-0.29104 0.11817,-0.28262 0.10265,-0.273 0.0859,-0.26097 0.068,-0.24895 0.0513,-0.23453 0.0323,-0.22007 0.0167,-0.20324 -0.002,-0.18282 -0.0179,-0.16837 -0.0323,-0.14912 -0.0466,-0.13109 -0.0585,-0.11426 -0.074,-0.10462 -0.0919,-0.0962 -0.11341,-0.089 -0.14085,-0.083 -0.1719,-0.0746 -0.20411,-0.0649 -0.23755,-0.0517 -0.27335,-0.036 -0.31037,-0.0205 -0.34498,-0.001 -0.38198,0.0205 -0.42019,0.0409 -0.45479,0.0637 -0.15518,-1.0078 0.49299,-0.0685 0.46078,-0.0432 0.43211,-0.0228 0.40228,10e-4 0.37481,0.0228 0.34976,0.0457 0.32348,0.071 0.29962,0.0962 0.27456,0.12027 0.25068,0.14791 0.22322,0.17559 0.19218,0.20206 0.15996,0.22248 0.12532,0.24415 0.0896,0.25615 0.0585,0.26458 0.0298,0.2718 0.002,0.27902 -0.0215,0.28503 -0.0442,0.28742 -0.0633,0.29466 -0.0823,0.29946 -0.10025,0.30668 -0.117,0.30907 -0.13011,0.31631 -0.148,0.3199 -0.15997,0.32471 -0.17308,0.33074 -0.18621,0.33192 -0.19577,0.33674 -0.20771,0.33915 -0.21725,0.34155 z m -5.3108,5.187 -0.74247,-0.69032 0.14324,-0.15273 0.14802,-0.15274 0.15517,-0.15393 0.15997,-0.15394 0.16472,-0.15515 0.17071,-0.15514 0.17189,-0.15515 0.17666,-0.15634 0.17906,-0.15633 0.18144,-0.15756 0.18263,-0.15875 0.18502,-0.15874 0.18742,-0.15996 0.18502,-0.15874 0.18622,-0.15996 0.18502,-0.16116 0.18502,-0.16236 0.18264,-0.15994 0.17905,-0.16117 0.17667,-0.16115 0.17428,-0.16236 0.1707,-0.16116 0.16592,-0.16114 0.16115,-0.15995 0.15518,-0.16117 0.1504,-0.16115 0.14324,-0.15874 0.1349,-0.15755 0.13011,-0.15755 0.11937,-0.15514 0.11221,-0.15515 0.10266,-0.15273 0.84752,0.55803 -0.12414,0.1816 -0.13132,0.1816 -0.13846,0.17919 -0.14444,0.17679 -0.1516,0.17679 -0.15756,0.17559 -0.16235,0.17318 -0.16711,0.17318 -0.1731,0.17198 -0.17546,0.17078 -0.17786,0.16836 -0.18145,0.16958 -0.18383,0.16597 -0.18621,0.16836 -0.18742,0.16478 -0.1874,0.16235 -0.18741,0.16355 -0.18861,0.16236 -0.1874,0.16115 -0.18503,0.15756 -0.18263,0.15874 -0.18264,0.15634 -0.17905,0.15516 -0.17428,0.15393 -0.1719,0.15154 -0.16712,0.15032 -0.16115,0.14793 -0.15518,0.14552 -0.15041,0.14433 -0.14323,0.14191 -0.13608,0.1407 -0.12892,0.1359 z m -2.4399,3.3566 -0.0238,-1.0174 -0.27455,0.089 0.0179,-0.0132 0.0144,-0.0132 0.025,-0.0265 0.0263,-0.0312 0.0286,-0.0372 0.0298,-0.0445 0.031,-0.0505 0.0358,-0.0613 0.0357,-0.0649 0.0382,-0.0733 0.0394,-0.077 0.0417,-0.0866 0.0454,-0.0914 0.0454,-0.0938 0.0477,-0.10096 0.0525,-0.10584 0.0549,-0.10943 0.0573,-0.11426 0.0633,-0.11906 0.0645,-0.12026 0.0692,-0.12629 0.0752,-0.12868 0.0777,-0.13109 0.0848,-0.1347 0.0908,-0.1383 0.0955,-0.14071 0.10025,-0.14072 0.10624,-0.14431 0.1158,-0.14912 0.12174,-0.14793 0.12773,-0.14913 0.13608,-0.15274 0.74249,0.69033 -0.11938,0.13349 -0.1134,0.1347 -0.10744,0.13108 -0.099,0.12749 -0.0942,0.12747 -0.0908,0.12628 -0.0836,0.12147 -0.0788,0.12146 -0.0728,0.11787 -0.0704,0.11666 -0.0657,0.11424 -0.0621,0.11186 -0.0596,0.11064 -0.0561,0.10703 -0.0525,0.10463 -0.0525,0.10464 -0.0477,0.0985 -0.0477,0.0985 -0.0477,0.0986 -0.0454,0.0914 -0.0442,0.0914 -0.0466,0.0914 -0.0454,0.0878 -0.0477,0.0866 -0.0477,0.083 -0.0525,0.0842 -0.0561,0.0806 -0.0598,0.0806 -0.0645,0.0746 -0.068,0.0722 -0.0811,0.0735 -0.0848,0.0637 -0.27455,0.089 z m 0.27456,-0.089 -0.12296,0.0854 -0.1516,0.004 0.27456,-0.089 z m -4.8249,0.13349 0,-1.0198 0.009,0 0.074,0.001 0.0823,0.001 0.0871,0.001 0.0896,0.001 0.0979,0 0.10025,0.001 0.10506,0 0.1122,0 0.11698,0 0.12176,0 0.12294,0 0.12893,-0.001 0.13489,0 0.13488,-0.001 0.14205,-0.001 0.14563,-0.001 0.14922,-0.001 0.1528,-10e-4 0.15278,-0.001 0.15757,-0.002 0.16234,-0.002 0.16474,-0.002 0.16831,-0.002 0.1695,-0.002 0.17309,-0.002 0.17308,-0.004 0.18024,-0.004 0.17907,-0.002 0.17904,-0.004 0.18742,-0.005 0.18502,-0.002 0.18622,-0.005 0.0238,1.0174 -0.18861,0.005 -0.18741,0.005 -0.18263,0.002 -0.18383,0.006 -0.18144,0.002 -0.17547,0.004 -0.17787,0.004 -0.17547,0.002 -0.1695,0.002 -0.16831,0.002 -0.16473,0.002 -0.16235,0.002 -0.15995,0.002 -0.15757,0.001 -0.1528,0.001 -0.1492,0.001 -0.14325,10e-4 -0.14205,0.001 -0.13967,0.001 -0.13487,0 -0.12892,0.001 -0.12773,0 -0.12176,0 -0.11698,0 -0.11221,0 -0.10982,0 -0.10265,-0.001 -0.0979,0 -0.0967,-0.001 -0.0871,-0.001 -0.0823,-10e-4 -0.0787,-0.001 0.009,0 z m 0,-1.0198 0.009,0 -0.009,0 z m -0.004,0 0.004,0 0,1.0198 -0.004,0 -0.009,-1.0198 0.009,0 z m -0.009,0 0.009,0 -0.009,0 z m -4.8142,0.88636 0.57298,-0.83945 -0.27456,-0.089 0.18622,0.005 0.18742,0.004 0.18502,0.005 0.17905,0.002 0.18025,0.004 0.17666,0.004 0.17547,0.002 0.17309,0.004 0.16951,0.002 0.16832,0.002 0.16472,0.002 0.16115,0.002 0.15876,0.001 0.15518,0.002 0.15041,10e-4 0.14801,0.001 0.14684,0.001 0.13846,0.001 0.13846,0 0.13371,0.001 0.12652,0 0.12654,0 0.12055,0 0.11699,0 0.11221,0 0.10504,0 0.10147,-0.001 0.0967,0 0.0896,-0.001 0.0871,-0.001 0.0823,-0.001 0.074,-10e-4 0.0191,1.0198 -0.0788,10e-4 -0.0823,0.001 -0.0871,0.001 -0.0967,0.001 -0.0967,0 -0.10385,0.001 -0.10981,0 -0.11222,0 -0.11699,0 -0.12055,0 -0.12653,0 -0.13131,0 -0.1337,-0.001 -0.13847,0 -0.14324,-0.001 -0.14443,-0.001 -0.14803,-0.001 -0.15517,-10e-4 -0.15518,-0.002 -0.15876,-0.001 -0.16353,-0.002 -0.16473,-0.002 -0.16832,-0.002 -0.17189,-0.002 -0.17309,-0.004 -0.17547,-0.002 -0.17906,-0.004 -0.18024,-0.004 -0.18384,-0.005 -0.18502,-0.005 -0.18502,-0.004 -0.1886,-0.005 -0.27456,-0.089 z m 0.27456,0.089 -0.15161,-0.004 -0.12295,-0.0853 0.27456,0.089 z m -2.4399,-3.3566 0.74247,-0.69033 0.13608,0.15154 0.12892,0.15033 0.12176,0.14914 0.1134,0.14671 0.10743,0.14432 0.10148,0.14191 0.0967,0.14192 0.0896,0.13831 0.0823,0.13228 0.08,0.13109 0.0752,0.12989 0.0692,0.12629 0.0656,0.12146 0.0609,0.11786 0.0585,0.11425 0.0549,0.11064 0.0502,0.10223 0.049,0.10096 0.0477,0.0974 0.0429,0.0902 0.043,0.0866 0.0382,0.077 0.0382,0.0709 0.037,0.0673 0.0357,0.0613 0.031,0.0505 0.0323,0.047 0.0263,0.0372 0.025,0.0288 0.0226,0.024 0.0179,0.0157 0.0167,0.0132 -0.57296,0.83946 -0.0836,-0.0637 -0.0799,-0.0709 -0.0704,-0.0746 -0.0656,-0.077 -0.0598,-0.0806 -0.0537,-0.0782 -0.0525,-0.0842 -0.0477,-0.083 -0.0466,-0.0842 -0.0477,-0.0902 -0.0454,-0.0914 -0.0454,-0.0914 -0.0454,-0.0925 -0.0454,-0.095 -0.049,-0.0985 -0.0501,-0.10222 -0.0502,-0.10343 -0.0536,-0.10464 -0.0561,-0.10822 -0.0585,-0.10945 -0.0621,-0.11186 -0.0658,-0.11304 -0.0704,-0.11666 -0.0752,-0.12026 -0.0777,-0.12147 -0.0823,-0.12027 -0.0896,-0.12507 -0.0955,-0.12748 -0.10147,-0.12989 -0.10505,-0.12988 -0.1146,-0.13349 -0.11936,-0.1347 z m -5.3108,-5.187 0.84752,-0.55802 0.10267,0.15273 0.11219,0.15514 0.11937,0.15514 0.13011,0.15755 0.1349,0.15755 0.14324,0.15874 0.15041,0.16115 0.15518,0.16117 0.16114,0.15995 0.16593,0.16114 0.1707,0.16116 0.17427,0.16236 0.17668,0.15996 0.18024,0.16236 0.18144,0.16116 0.18503,0.15994 0.18621,0.16236 0.18502,0.15996 0.18502,0.15874 0.18742,0.15996 0.18502,0.15874 0.18264,0.15875 0.18144,0.15635 0.18025,0.15754 0.17546,0.15635 0.1731,0.15515 0.1695,0.15513 0.16592,0.15515 0.15877,0.15394 0.15518,0.15274 0.14921,0.15393 0.14204,0.15273 -0.74246,0.69032 -0.12773,-0.13589 -0.13728,-0.13951 -0.14324,-0.14311 -0.14922,-0.14432 -0.15637,-0.14552 -0.15995,-0.14793 -0.16832,-0.15033 -0.17069,-0.15154 -0.17548,-0.15274 -0.17905,-0.15634 -0.18263,-0.15634 -0.18264,-0.15875 -0.18502,-0.15755 -0.18742,-0.16115 -0.18741,-0.16236 -0.1886,-0.16236 -0.18741,-0.16476 -0.18621,-0.16356 -0.18742,-0.16717 -0.18383,-0.16717 -0.18144,-0.16957 -0.17786,-0.16837 -0.17547,-0.17077 -0.17308,-0.17198 -0.16713,-0.17319 -0.16234,-0.17318 -0.15757,-0.17558 -0.1516,-0.17679 -0.14443,-0.17679 -0.13847,-0.1792 -0.1313,-0.18159 -0.12415,-0.18161 z m 2.6954,-6.7096 -0.15518,1.0078 -0.45479,-0.0637 -0.42019,-0.0409 -0.38198,-0.0205 -0.34497,0.001 -0.31037,0.0205 -0.27216,0.036 -0.23874,0.0517 -0.20412,0.0649 -0.17189,0.0746 -0.13848,0.0818 -0.11458,0.0914 -0.0919,0.095 -0.074,0.10584 -0.0609,0.11665 -0.0454,0.12868 -0.0323,0.14793 -0.0179,0.16717 -10e-4,0.18521 0.0155,0.20325 0.0335,0.22009 0.0502,0.2333 0.0692,0.25015 0.0848,0.26098 0.10267,0.27301 0.11817,0.28142 0.13369,0.29224 0.14803,0.29946 0.16114,0.30667 0.17429,0.31269 0.18621,0.31751 0.19815,0.32231 0.2077,0.32711 -0.84752,0.55804 -0.21725,-0.34156 -0.20771,-0.33915 -0.19576,-0.33674 -0.18623,-0.33193 -0.17308,-0.33072 -0.15994,-0.32352 -0.14803,-0.32111 -0.13011,-0.31509 -0.11698,-0.31149 -0.099,-0.30428 -0.0836,-0.29824 -0.0644,-0.29585 -0.043,-0.28985 -0.0203,-0.28263 10e-4,-0.279 0.0298,-0.273 0.0585,-0.2658 0.0908,-0.25615 0.12534,-0.24173 0.15997,-0.2237 0.19217,-0.20084 0.22203,-0.17559 0.25068,-0.14913 0.27454,-0.12026 0.29962,-0.0962 0.32468,-0.0709 0.34856,-0.0458 0.37483,-0.0228 0.40227,-0.001 0.43212,0.0228 0.46077,0.0433 0.493,0.0685 z m 3.0929,-0.35239 0.62311,0.80097 -0.099,0.0746 -0.10025,0.0673 -0.10385,0.0649 -0.10982,0.0602 -0.10743,0.053 -0.10862,0.0505 -0.11579,0.0458 -0.11698,0.042 -0.11579,0.036 -0.1146,0.0325 -0.12056,0.0312 -0.12296,0.0265 -0.12055,0.0217 -0.12176,0.0193 -0.12535,0.0168 -0.12295,0.0132 -0.12533,0.009 -0.12533,0.008 -0.12773,0.005 -0.12653,0.004 -0.12773,10e-4 -0.13012,-0.004 -0.12772,-0.004 -0.12773,-0.006 -0.12891,-0.007 -0.12892,-0.0108 -0.12892,-0.0108 -0.12654,-0.0145 -0.12771,-0.0132 -0.13132,-0.0168 -0.12772,-0.0193 -0.12654,-0.0181 0.15518,-1.0078 0.11699,0.0181 0.11817,0.0167 0.11221,0.0145 0.11817,0.0132 0.11699,0.012 0.1146,0.0108 0.11459,0.008 0.11459,0.007 0.1134,0.006 0.11341,0.004 0.10863,0.001 0.10862,-0.001 0.10981,-0.001 0.10625,-0.005 0.10384,-0.006 0.10386,-0.009 0.10147,-0.0108 0.0967,-0.012 0.0979,-0.0167 0.0967,-0.0169 0.0871,-0.0193 0.0896,-0.0217 0.0883,-0.0253 0.0848,-0.0265 0.0788,-0.0277 0.0752,-0.0312 0.0752,-0.0337 0.074,-0.036 0.0645,-0.036 0.0656,-0.0409 0.0645,-0.0433 0.0585,-0.0433 z m 1.2438,-2.2634 0.85707,0.5412 0,-10e-4 -0.0848,0.13951 -0.0777,0.13108 -0.0717,0.12268 -0.0645,0.11785 -0.0597,0.11066 -0.0537,0.10462 -0.0502,0.0997 -0.0454,0.0938 -0.0417,0.0878 -0.0382,0.0842 -0.0347,0.0795 -0.0323,0.0746 -0.0298,0.0721 -0.0286,0.0709 -0.0263,0.0662 -0.0286,0.0709 -0.0263,0.0613 -0.025,0.0613 -0.031,0.0685 -0.0287,0.0613 -0.0298,0.0625 -0.0347,0.0661 -0.0369,0.0649 -0.043,0.0685 -0.043,0.0613 -0.0429,0.0602 -0.0549,0.0662 -0.0549,0.0613 -0.0585,0.0602 -0.0657,0.0613 -0.0645,0.0565 -0.0704,0.0565 -0.62311,-0.80096 0.0442,-0.0372 0.0406,-0.0349 0.0323,-0.03 0.0298,-0.0312 0.0263,-0.0277 0.0191,-0.0253 0.0238,-0.0312 0.0215,-0.03 0.0167,-0.0277 0.0179,-0.0312 0.0179,-0.0349 0.0203,-0.0409 0.0215,-0.047 0.0191,-0.0444 0.0226,-0.0565 0.0263,-0.0613 0.0238,-0.059 0.0286,-0.0709 0.031,-0.0734 0.0323,-0.0794 0.0369,-0.0865 0.0394,-0.089 0.043,-0.0938 0.0466,-0.10223 0.0525,-0.10583 0.0549,-0.10943 0.0609,-0.11906 0.0668,-0.12268 0.0717,-0.12989 0.0789,-0.1371 0.0848,-0.14311 0.0919,-0.14914 0,-0.001 z m 0,10e-4 0,-10e-4 0.28409,-0.457 -0.28409,0.45821 z m 2.3922,-2.4666 0.52762,0.8683 -0.0717,0.0458 -0.0716,0.0458 -0.0657,0.0444 -0.0704,0.0505 -0.0704,0.0505 -0.0704,0.0517 -0.068,0.053 -0.0668,0.053 -0.0704,0.0577 -0.068,0.0565 -0.0645,0.0565 -0.068,0.0613 -0.0668,0.0625 -0.0657,0.0625 -0.0656,0.0649 -0.0668,0.0673 -0.0645,0.0662 -0.0621,0.0673 -0.0645,0.0709 -0.0645,0.0722 -0.0621,0.0734 -0.0621,0.0745 -0.0633,0.0782 -0.0596,0.0746 -0.0609,0.0806 -0.0609,0.0818 -0.0585,0.0818 -0.0597,0.083 -0.0573,0.0854 -0.0585,0.0866 -0.0573,0.0878 -0.0561,0.0902 -0.85707,-0.54119 0.0633,-0.0997 0.0645,-0.0998 0.0633,-0.0962 0.0668,-0.0974 0.0668,-0.095 0.068,-0.0938 0.068,-0.089 0.068,-0.0902 0.0717,-0.0914 0.0704,-0.0854 0.0692,-0.0842 0.074,-0.0854 0.0717,-0.0818 0.0716,-0.0806 0.0764,-0.0818 0.0764,-0.0782 0.074,-0.0746 0.0752,-0.0746 0.0777,-0.0745 0.0764,-0.0697 0.0777,-0.0709 0.0811,-0.0709 0.0799,-0.0662 0.0777,-0.0649 0.0811,-0.0649 0.0823,-0.0625 0.0823,-0.0613 0.0799,-0.0577 0.0823,-0.0577 0.0871,-0.059 0.0836,-0.053 0.0836,-0.053 z m 2.8792,-0.30789 0,1.0198 -0.0943,-0.001 -0.0871,-0.004 -0.0919,-0.002 -0.0942,-0.005 -0.0871,-0.006 -0.0836,-0.006 -0.0871,-0.007 -0.0836,-0.007 -0.0836,-0.006 -0.0823,-0.007 -0.08,-0.005 -0.0788,-0.006 -0.08,-0.005 -0.0752,-0.005 -0.0752,-0.002 -0.0752,-0.001 -0.0716,0 -0.0717,0 -0.0692,0.004 -0.0668,0.004 -0.0668,0.007 -0.0657,0.008 -0.0633,0.009 -0.0644,0.0133 -0.0633,0.0132 -0.0561,0.0157 -0.0597,0.0193 -0.0609,0.0228 -0.0585,0.024 -0.0585,0.0277 -0.0585,0.03 -0.0573,0.0337 -0.52761,-0.86831 0.0979,-0.0577 0.099,-0.0517 0.099,-0.047 0.099,-0.0409 0.0967,-0.0349 0.10025,-0.0337 0.10386,-0.0277 0.0967,-0.0228 0.0955,-0.0181 0.099,-0.0167 0.0967,-0.0108 0.0955,-0.009 0.0955,-0.006 0.0931,-0.004 0.0931,-0.002 0.0931,0 0.0896,0.004 0.0896,0.002 0.0896,0.005 0.0871,0.005 0.0859,0.006 0.0871,0.007 0.0823,0.007 0.0836,0.006 0.0836,0.007 0.08,0.005 0.0836,0.006 0.08,0.006 0.0728,0.005 0.0777,0.002 0.0799,0.001 0.0728,0.001 z m 2.8804,0.30789 -0.53,0.8683 10e-4,0 -0.0573,-0.0337 -0.0585,-0.03 -0.0585,-0.0277 -0.0585,-0.024 -0.0609,-0.0228 -0.0597,-0.0193 -0.0561,-0.0156 -0.0621,-0.0132 -0.0668,-0.0133 -0.0621,-0.0108 -0.0656,-0.007 -0.0668,-0.007 -0.068,-0.004 -0.0692,-0.004 -0.0717,0 -0.0716,0 -0.0752,10e-4 -0.0752,0.002 -0.074,0.005 -0.08,0.005 -0.08,0.006 -0.0787,0.005 -0.0836,0.007 -0.0836,0.006 -0.0836,0.007 -0.0871,0.007 -0.0836,0.006 -0.0871,0.006 -0.0942,0.005 -0.0908,0.002 -0.0871,0.004 -0.0942,0.001 0,-1.0198 0.0729,-0.001 0.0799,-0.001 0.0764,-0.002 0.0728,-0.005 0.08,-0.006 0.0836,-0.006 0.08,-0.005 0.0836,-0.007 0.0836,-0.006 0.0836,-0.007 0.0859,-0.007 0.0871,-0.006 0.0848,-0.005 0.0908,-0.005 0.0896,-0.002 0.0896,-0.004 0.0931,0 0.0931,0.002 0.0931,0.004 0.0967,0.006 0.0955,0.009 0.0967,0.012 0.0979,0.0155 0.0955,0.0181 0.0979,0.0228 0.10384,0.0277 0.10025,0.0337 0.0967,0.0348 0.099,0.0409 0.099,0.047 0.099,0.0517 0.0979,0.0577 0.001,0 z m -10e-4,0 10e-4,0 0.31394,0.19482 -0.31513,-0.19482 z m 1.9636,3.246 0,-1.0198 -0.42853,0.78051 -0.0561,-0.0902 -0.0573,-0.0878 -0.0585,-0.0866 -0.0573,-0.0854 -0.0596,-0.083 -0.0585,-0.0818 -0.0609,-0.0818 -0.0609,-0.0806 -0.0598,-0.0746 -0.0621,-0.0758 -0.0644,-0.077 -0.0633,-0.0746 -0.0609,-0.0697 -0.0645,-0.071 -0.0656,-0.0697 -0.0633,-0.0662 -0.0644,-0.0649 -0.0668,-0.0649 -0.0668,-0.0637 -0.0668,-0.0625 -0.068,-0.0613 -0.0657,-0.0577 -0.0668,-0.0565 -0.068,-0.0553 -0.0668,-0.053 -0.0717,-0.0553 -0.0692,-0.0517 -0.0692,-0.0493 -0.0692,-0.0493 -0.068,-0.0458 -0.0717,-0.047 -0.0717,-0.0445 0.53,-0.86832 0.0836,0.0542 0.0811,0.0517 0.0871,0.0577 0.0836,0.059 0.0811,0.0589 0.0811,0.0613 0.0788,0.0601 0.0836,0.0649 0.0799,0.0673 0.0788,0.0662 0.08,0.0697 0.0777,0.071 0.0764,0.0697 0.0764,0.0733 0.0764,0.0746 0.0764,0.077 0.0752,0.0782 0.0728,0.0794 0.074,0.0806 0.0752,0.0842 0.0704,0.0842 0.0692,0.0818 0.0717,0.0878 0.0716,0.0914 0.068,0.0902 0.068,0.089 0.068,0.0937 0.0668,0.095 0.0668,0.0974 0.0633,0.0962 0.0645,0.0998 0.0633,0.0998 -0.42854,0.78052 z m 0.42855,-0.78052 0.48463,0.78052 -0.91318,0 0.42855,-0.78052 z m -0.42974,-0.23933 0.001,0 0,1.0198 -0.001,0 -0.42854,-0.24053 0.42854,-0.77931 z m -0.42854,0.77932 -0.48343,-0.77932 0.91197,0 -0.42854,0.77932 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path325" + d="m 481.35,212.77 -0.88335,-0.13228 c -0.4703,-3.7799 -1.9696,-6.9008 -4.3236,-9.6272 2.6476,1.8028 4.6184,5.6705 5.2069,9.7595 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path327" + d="m 494.21,198.3 c -0.46674,1.1485 -0.96451,2.4017 -1.9792,3.4624 -1.5422,1.6104 -4.0991,0.56644 -6.5749,-1.5166 -0.78067,-0.65544 -2.1606,-0.97293 -3.5345,-0.96812 -1.3739,0.005 -2.7419,0.33313 -3.4975,0.96812 -2.4757,2.083 -5.0326,3.1269 -6.5749,1.5166 -1.0146,-1.0595 -1.5112,-2.3127 -1.9768,-3.4624 0.59565,-0.11064 1.3799,-0.0974 2.3826,0.0602 1.2999,0.20324 2.656,0.19604 3.482,-0.45461 0.6422,-0.50752 0.38317,-0.81659 1.3608,-2.3933 0.63385,-1.0235 1.3978,-1.7907 2.2274,-2.3031 0.82842,-0.51113 1.7213,-0.23211 2.6142,-0.23211 0.89408,0 1.787,-0.27902 2.6166,0.23211 0.82842,0.51233 1.5924,1.2796 2.2274,2.3031 0.97763,1.5767 0.7186,1.8858 1.3596,2.3933 0.82603,0.65184 2.1821,0.65785 3.482,0.45461 1.0039,-0.15755 1.7894,-0.17078 2.385,-0.0602 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path329" + d="m 492.6,202.12 -0.72816,-0.70716 0,0 0.0859,-0.0914 0.0836,-0.0938 0.0811,-0.0938 0.0777,-0.095 0.0776,-0.0974 0.074,-0.0962 0.0717,-0.0974 0.0692,-0.0986 0.0668,-0.0998 0.0668,-0.10342 0.0644,-0.0986 0.0609,-0.10222 0.0609,-0.10342 0.0585,-0.10463 0.0573,-0.10223 0.0549,-0.10464 0.0561,-0.10583 0.0525,-0.10462 0.0513,-0.10704 0.0525,-0.10824 0.0477,-0.10343 0.049,-0.10945 0.0501,-0.10944 0.0466,-0.10462 0.0454,-0.10824 0.0466,-0.10824 0.0442,-0.10704 0.0454,-0.11064 0.0442,-0.10704 0.0442,-0.10824 0.0442,-0.10944 0.0442,-0.10823 0.93586,0.38725 -0.0442,0.10824 -0.0442,0.10704 -0.0442,0.11064 -0.0466,0.11185 -0.0454,0.10823 -0.0466,0.11427 -0.0489,0.11304 -0.0477,0.11305 -0.0513,0.11665 -0.0502,0.11184 -0.0514,0.11427 -0.0549,0.11785 -0.0548,0.11305 -0.0561,0.11665 -0.0598,0.11666 -0.0585,0.11546 -0.0621,0.11666 -0.0645,0.11665 -0.0657,0.11425 -0.068,0.11546 -0.0704,0.11665 -0.074,0.11787 -0.074,0.11064 -0.0764,0.11426 -0.0811,0.11544 -0.0836,0.11426 -0.0859,0.11305 -0.0871,0.10943 -0.092,0.11185 -0.0955,0.11065 -0.0978,0.10823 -0.10025,0.10824 0,0 z m -7.2624,-1.4793 0.64699,-0.78173 10e-4,0 0.22561,0.18642 0.22441,0.1804 0.22561,0.17317 0.22442,0.16597 0.2244,0.15875 0.22441,0.15274 0.21965,0.14311 0.21844,0.13349 0.21965,0.12628 0.21486,0.11906 0.21247,0.10704 0.21129,0.0997 0.20651,0.089 0.20174,0.0794 0.19934,0.0697 0.19457,0.0589 0.19219,0.0481 0.18503,0.0397 0.18024,0.0277 0.17548,0.0167 0.17069,0.007 0.16355,-0.002 0.15636,-0.0132 0.15399,-0.0253 0.14802,-0.0337 0.14085,-0.0444 0.13728,-0.0553 0.1337,-0.0673 0.1313,-0.077 0.12534,-0.089 0.12294,-0.10342 0.12176,-0.11787 0.72816,0.70717 -0.17429,0.16836 -0.18263,0.15394 -0.19218,0.1371 -0.19816,0.11786 -0.20292,0.10096 -0.21129,0.0842 -0.21725,0.0685 -0.21964,0.0505 -0.22083,0.0348 -0.228,0.0205 -0.228,0.005 -0.23038,-0.009 -0.23038,-0.024 -0.23278,-0.0349 -0.23515,-0.0493 -0.23277,-0.0602 -0.23517,-0.0709 -0.23753,-0.0818 -0.23755,-0.0937 -0.23755,-0.10343 -0.23754,-0.11185 -0.24113,-0.12146 -0.23874,-0.13109 -0.23874,-0.13831 -0.24231,-0.14792 -0.24112,-0.15755 -0.23874,-0.16236 -0.24114,-0.17077 -0.24112,-0.178 -0.23993,-0.18521 -0.23874,-0.19001 -0.23993,-0.19844 10e-4,0 z m 0.64699,-0.78173 10e-4,0 0.56223,0.47385 -0.56342,-0.47385 z m -3.8568,-0.0673 -0.002,-1.0198 0.13488,0 0.13848,0.004 0.13488,0.005 0.13609,0.006 0.13488,0.008 0.1349,0.0108 0.13368,0.012 0.1349,0.0145 0.13249,0.0181 0.13011,0.0181 0.13251,0.0205 0.13249,0.024 0.12892,0.0253 0.12415,0.0265 0.13011,0.0288 0.12414,0.0325 0.12416,0.0325 0.12414,0.0372 0.11936,0.0372 0.11819,0.0409 0.11698,0.042 0.11698,0.047 0.1122,0.047 0.10982,0.0505 0.10863,0.0517 0.10624,0.0553 0.10743,0.059 0.10025,0.0613 0.0967,0.0613 0.099,0.0685 0.0919,0.0697 0.0896,0.0721 -0.64698,0.78172 -0.0609,-0.0481 -0.0633,-0.0481 -0.0657,-0.0445 -0.0728,-0.047 -0.074,-0.0444 -0.074,-0.042 -0.0823,-0.0409 -0.0848,-0.042 -0.0883,-0.0385 -0.0908,-0.0397 -0.0908,-0.0349 -0.0955,-0.0348 -0.099,-0.0337 -0.10025,-0.0325 -0.10025,-0.03 -0.10506,-0.0277 -0.10742,-0.0277 -0.10625,-0.024 -0.11459,-0.0241 -0.11221,-0.0228 -0.11101,-0.0193 -0.11341,-0.0181 -0.11817,-0.0156 -0.11817,-0.0157 -0.11579,-0.012 -0.11937,-0.012 -0.12056,-0.008 -0.12057,-0.008 -0.12176,-0.006 -0.12057,-0.005 -0.11936,-0.001 -0.12295,0 z m -3.174,0.84908 -0.64937,-0.78173 0.001,0 0.0883,-0.0721 0.0908,-0.0673 0.092,-0.0637 0.0979,-0.0625 0.10025,-0.0613 0.10266,-0.0565 0.10384,-0.0541 0.10624,-0.0517 0.10982,-0.0493 0.10982,-0.047 0.1146,-0.0458 0.11698,-0.0432 0.11698,-0.0397 0.11698,-0.0372 0.12056,-0.036 0.12535,-0.0349 0.12295,-0.0312 0.12414,-0.0288 0.12653,-0.0277 0.12892,-0.0265 0.12892,-0.0228 0.1313,-0.0228 0.13131,-0.0193 0.13251,-0.0168 0.13488,-0.0156 0.1325,-0.0132 0.1325,-0.0108 0.13489,-0.0108 0.13727,-0.007 0.13489,-0.005 0.13609,-0.005 0.13727,-10e-4 0.002,1.0198 -0.12057,0.001 -0.12175,0.002 -0.12058,0.005 -0.11816,0.007 -0.12058,0.008 -0.12294,0.0108 -0.11818,0.0108 -0.11579,0.0132 -0.11816,0.0168 -0.11461,0.0168 -0.1146,0.0181 -0.1122,0.0205 -0.10981,0.0217 -0.10982,0.0253 -0.10982,0.0265 -0.10625,0.0265 -0.10147,0.0277 -0.10147,0.0312 -0.10265,0.0325 -0.0955,0.0325 -0.0931,0.0337 -0.0908,0.036 -0.0883,0.0372 -0.0859,0.0397 -0.0823,0.0397 -0.08,0.042 -0.0764,0.042 -0.0717,0.042 -0.0668,0.0432 -0.0657,0.047 -0.0621,0.0458 -0.0573,0.0458 10e-4,0 z m -7.2636,1.4793 0.72815,-0.70716 0.12176,0.11787 0.12294,0.10341 0.12535,0.089 0.13131,0.077 0.13368,0.0673 0.13728,0.0553 0.14086,0.0444 0.14802,0.0337 0.15398,0.0253 0.15637,0.0132 0.16355,0.002 0.17069,-0.007 0.17548,-0.0168 0.18024,-0.0277 0.18502,-0.0397 0.19219,-0.0481 0.19458,-0.059 0.19934,-0.0697 0.20173,-0.0794 0.20652,-0.089 0.21129,-0.0997 0.21247,-0.10704 0.21486,-0.11906 0.21964,-0.12629 0.21844,-0.13349 0.21965,-0.14311 0.22441,-0.15274 0.22442,-0.15875 0.22441,-0.16597 0.22561,-0.17318 0.22441,-0.18039 0.22561,-0.18641 0.64937,0.78172 -0.23993,0.19844 -0.23874,0.19002 -0.23993,0.18521 -0.24114,0.17798 -0.24112,0.17078 -0.23874,0.16236 -0.24112,0.15754 -0.24233,0.14793 -0.23874,0.13831 -0.23873,0.13109 -0.24113,0.12147 -0.23755,0.11184 -0.23754,0.10343 -0.23754,0.0938 -0.23754,0.0818 -0.23516,0.0709 -0.23277,0.0602 -0.23516,0.0493 -0.23278,0.0349 -0.23037,0.024 -0.23038,0.009 -0.22802,-0.005 -0.22799,-0.0205 -0.22082,-0.0348 -0.21964,-0.0505 -0.21725,-0.0685 -0.21129,-0.0842 -0.20294,-0.10096 -0.19815,-0.11786 -0.19218,-0.1371 -0.18264,-0.15393 -0.17428,-0.16838 z m -1.7046,-4.3175 0.18384,1.003 0.376,-0.69393 0.0442,0.10703 0.0442,0.10945 0.0442,0.10943 0.0442,0.10825 0.043,0.10583 0.0466,0.10944 0.0454,0.10824 0.0478,0.10944 0.0454,0.10703 0.0477,0.10583 0.0501,0.10945 0.049,0.10583 0.0514,0.10583 0.0513,0.10704 0.0549,0.10823 0.0514,0.10344 0.0573,0.10342 0.0561,0.10464 0.0598,0.10342 0.0597,0.10223 0.0621,0.10096 0.0644,0.10342 0.0668,0.10096 0.0656,0.0985 0.0692,0.0974 0.0716,0.0985 0.0752,0.0974 0.0764,0.0974 0.0764,0.0925 0.0823,0.095 0.0836,0.0937 0.0859,0.0914 -0.72814,0.70715 -0.10025,-0.10824 -0.0978,-0.10824 -0.0942,-0.10944 -0.0931,-0.11185 -0.0883,-0.11185 -0.0847,-0.11183 -0.0836,-0.11306 -0.0811,-0.11425 -0.0777,-0.11545 -0.074,-0.11545 -0.0716,-0.11306 -0.0717,-0.11545 -0.0668,-0.11666 -0.0668,-0.11546 -0.0633,-0.11665 -0.0621,-0.11546 -0.0609,-0.11786 -0.0573,-0.11544 -0.0561,-0.11427 -0.0561,-0.11545 -0.0536,-0.11785 -0.0502,-0.11185 -0.0525,-0.11546 -0.0502,-0.11666 -0.0478,-0.11184 -0.0477,-0.11304 -0.0466,-0.11186 -0.0478,-0.11305 -0.0442,-0.11064 -0.0442,-0.10944 -0.0442,-0.10704 -0.0442,-0.10943 0.37602,-0.69394 z m -0.37601,0.69394 -0.23516,-0.58089 0.61117,-0.11305 -0.37601,0.69394 z m 2.9281,-0.63621 -0.15518,1.0078 -0.0896,-0.0145 -0.0896,-0.0132 -0.0883,-0.012 -0.0848,-0.012 -0.0823,-0.009 -0.0836,-0.009 -0.0836,-0.009 -0.0787,-0.007 -0.08,-0.007 -0.08,-0.007 -0.0777,-0.006 -0.0716,-0.005 -0.0717,-0.004 -0.0788,-0.004 -0.0716,-0.004 -0.0668,-0.002 -0.0656,0 -0.068,0 -0.0668,0 -0.0668,0.001 -0.0633,0 -0.0585,0.002 -0.0573,0.004 -0.0609,0.004 -0.0633,0.005 -0.0561,0.005 -0.0525,0.005 -0.0502,0.006 -0.0537,0.008 -0.0536,0.007 -0.0502,0.008 -0.0478,0.008 -0.18382,-1.003 0.0645,-0.0108 0.0644,-0.0108 0.0656,-0.009 0.0657,-0.008 0.0716,-0.008 0.0717,-0.007 0.068,-0.005 0.0657,-0.005 0.0704,-0.006 0.0764,-0.004 0.0777,-0.002 0.0728,-0.002 0.074,-10e-4 0.0764,0 0.0752,0 0.0823,0.002 0.0836,0.002 0.0787,0.004 0.0764,0.004 0.0859,0.004 0.0883,0.007 0.0823,0.006 0.0848,0.007 0.0871,0.007 0.0908,0.009 0.0883,0.009 0.0908,0.009 0.0942,0.012 0.0942,0.012 0.0931,0.0145 0.0942,0.0132 0.0967,0.0144 z m 3.0929,-0.35117 0.6231,0.80096 0,0.001 -0.099,0.0733 -0.10265,0.0685 -0.10267,0.0637 -0.10622,0.0577 -0.11103,0.0565 -0.1122,0.0493 -0.11222,0.0444 -0.11339,0.0409 -0.11817,0.0385 -0.11819,0.0325 -0.11698,0.03 -0.12056,0.0253 -0.12294,0.024 -0.12416,0.0181 -0.12295,0.0169 -0.12415,0.0133 -0.12413,0.009 -0.12653,0.008 -0.12653,0.005 -0.12653,0.004 -0.12773,0.001 -0.13012,-0.004 -0.12773,-0.004 -0.12773,-0.006 -0.1289,-0.007 -0.12892,-0.0108 -0.12892,-0.0108 -0.12654,-0.0145 -0.12772,-0.0132 -0.13131,-0.0168 -0.12773,-0.0193 -0.12652,-0.0181 0.15518,-1.0078 0.11698,0.0181 0.11817,0.0168 0.11221,0.0145 0.11818,0.0132 0.11698,0.012 0.11459,0.0108 0.1146,0.008 0.11459,0.007 0.1134,0.006 0.11341,0.004 0.10863,0.001 0.10862,-0.001 0.10982,-10e-4 0.10504,-0.005 0.10504,-0.006 0.10267,-0.009 0.10265,-0.0107 0.099,-0.012 0.0955,-0.0157 0.0919,-0.0167 0.0919,-0.0205 0.0908,-0.0228 0.0871,-0.0228 0.0799,-0.0265 0.0823,-0.0289 0.0788,-0.0325 0.074,-0.0325 0.0704,-0.0349 0.068,-0.0385 0.0668,-0.0397 0.0621,-0.042 0.0585,-0.0445 0,0.001 z m 0.6231,0.80096 0,0.001 -0.45958,0.36199 0.45958,-0.36321 z m 0.62073,-3.0632 0.85707,0.53879 -0.0848,0.13951 -0.0777,0.13109 -0.0717,0.12267 -0.0645,0.11786 -0.0597,0.11185 -0.0536,0.10221 -0.0502,0.10107 -0.0466,0.095 -0.0406,0.0865 -0.037,0.0818 -0.0357,0.0806 -0.0323,0.0758 -0.0298,0.0721 -0.0298,0.0721 -0.0263,0.0649 -0.0275,0.0673 -0.0263,0.0637 -0.025,0.0625 -0.031,0.0685 -0.0286,0.0613 -0.0298,0.0625 -0.0346,0.0662 -0.0382,0.0673 -0.0417,0.0649 -0.0405,0.0601 -0.0454,0.0625 -0.0549,0.0662 -0.0549,0.0613 -0.0585,0.0602 -0.0656,0.0613 -0.0645,0.0565 -0.0704,0.0565 -0.62311,-0.80096 0.0442,-0.0372 0.0406,-0.0349 0.0323,-0.03 0.0298,-0.0312 0.0263,-0.0277 0.0191,-0.0253 0.0216,-0.0289 0.0238,-0.0337 0.0179,-0.0288 0.0167,-0.0288 0.0179,-0.0349 0.0204,-0.0408 0.0216,-0.047 0.0191,-0.0444 0.0226,-0.0553 0.0263,-0.0613 0.025,-0.0625 0.0286,-0.0697 0.0298,-0.0722 0.0323,-0.0793 0.0369,-0.0854 0.0382,-0.0902 0.0442,-0.0962 0.0477,-0.10096 0.0514,-0.10462 0.0549,-0.11065 0.0609,-0.11906 0.0668,-0.12147 0.0716,-0.12988 0.0788,-0.13711 0.0848,-0.14311 0.0919,-0.14914 z m 2.3922,-2.4678 0.5276,0.86832 -0.0716,0.0458 -0.0716,0.0458 -0.0657,0.0445 -0.0717,0.0517 -0.0704,0.0493 -0.068,0.0505 -0.0692,0.0542 -0.0668,0.053 -0.068,0.0565 -0.0692,0.0577 -0.068,0.059 -0.0668,0.0613 -0.0657,0.0602 -0.0668,0.0637 -0.0668,0.0649 -0.0633,0.0637 -0.0645,0.0685 -0.0645,0.0685 -0.0633,0.0697 -0.0645,0.0721 -0.0621,0.0733 -0.0633,0.0758 -0.0609,0.0746 -0.0609,0.0782 -0.0609,0.0795 -0.0597,0.0818 -0.0596,0.083 -0.0609,0.0842 -0.0561,0.083 -0.0573,0.0865 -0.0585,0.089 -0.0561,0.089 -0.85708,-0.53879 0.0633,-0.10096 0.0633,-0.0985 0.0645,-0.0985 0.068,-0.0974 0.0656,-0.0938 0.0668,-0.0925 0.0692,-0.0914 0.068,-0.089 0.0704,-0.0902 0.0704,-0.0866 0.0704,-0.0854 0.074,-0.0854 0.0716,-0.0818 0.0728,-0.0818 0.074,-0.0782 0.074,-0.0782 0.0777,-0.0782 0.0764,-0.0746 0.0764,-0.0734 0.0777,-0.0721 0.0788,-0.0685 0.0777,-0.0685 0.0789,-0.0673 0.08,-0.0662 0.0811,-0.0649 0.0811,-0.0613 0.0823,-0.0625 0.0823,-0.059 0.0811,-0.0565 0.0871,-0.0589 0.0836,-0.053 0.0836,-0.053 z m 2.878,-0.30788 0,1.0198 -0.0942,-0.001 -0.0871,-0.004 -0.0908,-0.002 -0.0942,-0.005 -0.0871,-0.006 -0.0836,-0.006 -0.0871,-0.007 -0.0836,-0.007 -0.0836,-0.006 -0.0836,-0.007 -0.0788,-0.005 -0.0799,-0.006 -0.0799,-0.005 -0.074,-0.005 -0.0752,-0.002 -0.0752,-0.001 -0.0716,0 -0.0717,0 -0.0692,0.004 -0.0668,0.004 -0.0668,0.007 -0.0657,0.008 -0.0633,0.009 -0.0644,0.0132 -0.0633,0.0133 -0.0561,0.0156 -0.0598,0.0193 -0.0609,0.0228 -0.0585,0.024 -0.0585,0.0277 -0.0585,0.03 -0.0573,0.0337 -0.52761,-0.86833 0.0978,-0.0577 0.099,-0.0517 0.099,-0.047 0.099,-0.0409 0.0967,-0.0349 0.10025,-0.0337 0.10384,-0.0277 0.0967,-0.0228 0.0955,-0.0181 0.099,-0.0168 0.0967,-0.0108 0.0955,-0.009 0.0955,-0.006 0.0931,-0.004 0.0931,-0.002 0.0931,0 0.0896,0.004 0.0896,0.002 0.0908,0.005 0.0847,0.005 0.0871,0.006 0.0859,0.007 0.0836,0.007 0.0836,0.006 0.0836,0.007 0.08,0.005 0.0836,0.006 0.08,0.006 0.0728,0.005 0.0764,0.002 0.08,0.001 0.0729,0.001 z m 2.8816,0.30788 -0.53,0.86832 10e-4,0 -0.0573,-0.0337 -0.0585,-0.03 -0.0585,-0.0277 -0.0585,-0.0241 -0.0609,-0.0228 -0.0597,-0.0193 -0.0561,-0.0156 -0.0621,-0.0132 -0.0668,-0.0132 -0.0633,-0.0108 -0.0656,-0.007 -0.0657,-0.007 -0.068,-0.004 -0.0692,-0.004 -0.0716,0 -0.0717,0 -0.0752,0.001 -0.0752,0.002 -0.0752,0.005 -0.08,0.005 -0.0788,0.006 -0.08,0.005 -0.0823,0.007 -0.0836,0.006 -0.0836,0.007 -0.0871,0.007 -0.0836,0.006 -0.0871,0.006 -0.0942,0.005 -0.0919,0.002 -0.0871,0.004 -0.0942,0.001 0,-1.0198 0.0728,-0.001 0.0799,-0.001 0.0777,-0.002 0.0728,-0.005 0.08,-0.006 0.0836,-0.006 0.08,-0.005 0.0836,-0.007 0.0836,-0.006 0.0823,-0.007 0.0871,-0.007 0.0859,-0.006 0.0871,-0.005 0.0896,-0.005 0.0896,-0.002 0.0896,-0.004 0.0931,0 0.0931,0.002 0.0931,0.004 0.0967,0.006 0.0967,0.009 0.0942,0.012 0.099,0.0156 0.0955,0.0181 0.0979,0.0228 0.10385,0.0277 0.10025,0.0337 0.0967,0.0349 0.099,0.0409 0.099,0.047 0.099,0.0517 0.0979,0.0577 10e-4,0 z m -10e-4,0 10e-4,0 0.31394,0.19484 -0.31513,-0.19484 z m 2.3922,2.4678 -0.85707,0.53879 0,0.001 -0.0561,-0.0902 -0.0585,-0.089 -0.0573,-0.0865 -0.0561,-0.083 -0.0609,-0.0842 -0.0598,-0.083 -0.0597,-0.0818 -0.0609,-0.0794 -0.0598,-0.0758 -0.0621,-0.0746 -0.0657,-0.0794 -0.0621,-0.0735 -0.0609,-0.0697 -0.0633,-0.0697 -0.0668,-0.0697 -0.0645,-0.0685 -0.0633,-0.0637 -0.0668,-0.0649 -0.0668,-0.0637 -0.0656,-0.0602 -0.0668,-0.0613 -0.0692,-0.0602 -0.068,-0.0577 -0.0657,-0.0542 -0.0668,-0.053 -0.0717,-0.0553 -0.0692,-0.0517 -0.0692,-0.0493 -0.0692,-0.0493 -0.068,-0.0458 -0.0717,-0.047 -0.0716,-0.0444 0.53,-0.86833 0.0836,0.0542 0.0811,0.0517 0.0871,0.0577 0.0836,0.059 0.0811,0.059 0.0811,0.0613 0.0789,0.0602 0.0836,0.0649 0.0823,0.0685 0.0777,0.0673 0.0764,0.0673 0.0788,0.0685 0.0777,0.0722 0.0764,0.0733 0.0764,0.0746 0.0777,0.0782 0.074,0.0782 0.0717,0.077 0.0752,0.0818 0.0752,0.0842 0.0717,0.0854 0.068,0.0818 0.0716,0.0865 0.0716,0.0925 0.068,0.089 0.0692,0.0914 0.0668,0.0925 0.0657,0.0937 0.068,0.0974 0.0645,0.0985 0.0633,0.0985 0.0633,0.0998 0,0.001 z m 1.2426,2.2622 -0.62311,0.80097 -10e-4,0 -0.0692,-0.0565 -0.0645,-0.0565 -0.0656,-0.0613 -0.0609,-0.0625 -0.0537,-0.0613 -0.049,-0.0613 -0.0502,-0.0649 -0.0429,-0.0637 -0.0382,-0.0613 -0.0382,-0.0673 -0.0346,-0.0662 -0.0298,-0.0625 -0.0286,-0.0613 -0.031,-0.0685 -0.025,-0.0625 -0.0263,-0.0637 -0.0275,-0.0673 -0.0263,-0.0649 -0.0298,-0.0721 -0.0298,-0.0722 -0.0323,-0.0758 -0.0357,-0.0806 -0.0369,-0.0818 -0.0406,-0.0865 -0.0466,-0.095 -0.0501,-0.10096 -0.0537,-0.10222 -0.0597,-0.11185 -0.0645,-0.11786 -0.0716,-0.12267 -0.0777,-0.13109 -0.0848,-0.13951 0.85707,-0.53878 0.0919,0.14913 0.0848,0.14311 0.0788,0.1371 0.0716,0.12989 0.0668,0.12146 0.0609,0.11907 0.0549,0.11064 0.0513,0.10463 0.0477,0.10096 0.0442,0.0962 0.0382,0.0902 0.0369,0.0854 0.0323,0.0795 0.0298,0.0721 0.0286,0.0697 0.025,0.0625 0.0263,0.0613 0.0226,0.0553 0.0191,0.0444 0.0215,0.047 0.0204,0.0409 0.0179,0.0349 0.0167,0.0288 0.0215,0.0325 0.0191,0.03 0.0191,0.0265 0.025,0.03 0.025,0.0277 0.0275,0.0288 0.0323,0.03 0.0406,0.0349 0.0454,0.0372 -10e-4,0 z m -0.62311,0.80097 -10e-4,0 -0.3581,-0.28383 0.3593,0.28383 z m 3.716,-0.44979 0.15518,1.0078 -0.12652,0.0181 -0.12773,0.0193 -0.12892,0.0156 -0.13011,0.0157 -0.12892,0.0132 -0.12653,0.0108 -0.12891,0.0108 -0.12892,0.007 -0.12774,0.006 -0.12772,0.004 -0.12773,0.004 -0.13011,0 -0.12653,-0.005 -0.12415,-0.004 -0.12892,-0.008 -0.12414,-0.009 -0.12653,-0.0144 -0.12294,-0.0169 -0.12177,-0.0181 -0.12295,-0.0241 -0.11817,-0.0253 -0.11938,-0.0288 -0.12056,-0.0337 -0.11579,-0.0384 -0.11101,-0.0397 -0.1146,-0.0444 -0.1122,-0.0505 -0.10863,-0.0541 -0.10982,-0.0602 -0.10385,-0.0649 -0.10025,-0.0673 -0.099,-0.0746 0.6231,-0.80097 0.0585,0.0432 0.0645,0.0433 0.0657,0.0409 0.0645,0.036 0.0728,0.0349 0.074,0.0337 0.0764,0.03 0.0848,0.03 0.0823,0.0265 0.0848,0.024 0.0883,0.0217 0.0943,0.0205 0.0919,0.0169 0.0979,0.0157 0.099,0.0144 0.10025,0.009 0.10267,0.009 0.10265,0.006 0.10744,0.004 0.10981,0.002 0.10624,0 0.11103,-0.001 0.11339,-0.004 0.11341,-0.006 0.11459,-0.007 0.11459,-0.008 0.11699,-0.0108 0.11459,-0.0108 0.11579,-0.0132 0.11459,-0.0156 0.11817,-0.0167 0.11699,-0.0181 z m 2.9305,0.6374 -0.93585,-0.38725 0.376,0.69513 -0.0477,-0.008 -0.0502,-0.008 -0.0536,-0.007 -0.0536,-0.008 -0.0501,-0.006 -0.0514,-0.005 -0.0585,-0.005 -0.0621,-0.005 -0.0609,-0.004 -0.0573,-0.004 -0.0585,-0.002 -0.0645,0 -0.0657,-0.001 -0.0668,0 -0.0692,0 -0.0657,0 -0.0668,0.002 -0.0717,0.004 -0.0788,0.004 -0.0716,0.004 -0.0717,0.005 -0.0777,0.006 -0.0799,0.007 -0.08,0.007 -0.0788,0.007 -0.0836,0.009 -0.0836,0.009 -0.0823,0.009 -0.0848,0.012 -0.0883,0.012 -0.0908,0.0132 -0.0896,0.0145 -0.15518,-1.0078 0.0967,-0.0145 0.0955,-0.0133 0.0931,-0.0144 0.0942,-0.012 0.0942,-0.012 0.0908,-0.009 0.0884,-0.009 0.0908,-0.009 0.0871,-0.007 0.0848,-0.007 0.0823,-0.006 0.0883,-0.007 0.0859,-0.004 0.0764,-0.004 0.0788,-0.004 0.0836,-0.002 0.0823,-0.002 0.0764,0 0.0764,0 0.0728,0.001 0.074,0.002 0.0777,0.002 0.0764,0.004 0.0704,0.006 0.0645,0.005 0.068,0.005 0.0728,0.007 0.0717,0.008 0.0657,0.008 0.0656,0.009 0.0645,0.0108 0.0645,0.0107 0.376,0.69514 z m -0.37602,-0.69514 0.61238,0.11427 -0.23636,0.58087 -0.37601,-0.69514 z m -0.0919,0.50151 0.46792,0.19363 -0.46792,-0.19363 z m 0.0919,-0.50151 0.61238,0.11427 -0.23636,0.58087 -0.37601,-0.69514 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path331" + d="m 482.14,211.65 c 4.2698,0 7.7316,3.4877 7.7316,7.7896 0,4.3019 -3.4617,7.7896 -7.7316,7.7896 -4.2698,0 -7.7304,-3.4877 -7.7304,-7.7896 0,-4.3019 3.4605,-7.7896 7.7304,-7.7896 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path333" + d="m 482.94,212.77 0.88214,-0.13228 c 0.47032,-3.7799 1.9696,-6.9008 4.3236,-9.6272 -2.6476,1.8028 -4.6184,5.6705 -5.2057,9.7595 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + </g> + <use + id="use335" + x="0" + y="0" + width="1350" + height="900" + transform="matrix(-1,0,0,1,964.28557,0)" + xlink:href="#g3987" /> + <g + id="g337"> + <path + id="path339" + d="m 576.93,293.58 c 2.0018,0.30308 3.0618,1.5683 2.9914,2.8611 0.0692,1.294 -0.99197,2.5592 -2.9962,2.8623 -0.45479,0.12386 -0.96331,0.21647 -1.5291,0.26578 -60.788,5.2363 -125.72,5.2375 -186.51,0 -0.56461,-0.0493 -1.0731,-0.14192 -1.5291,-0.26578 -2.0042,-0.30307 -3.0654,-1.5683 -2.995,-2.8623 -0.0692,-1.2929 0.98957,-2.558 2.9902,-2.8611 0.456,-0.12508 0.96689,-0.21647 1.5339,-0.26578 60.789,-5.2375 125.72,-5.2351 186.51,0 0.5682,0.0493 1.0779,0.1407 1.5339,0.26578 z" + inkscape:connector-curvature="0" + style="fill:#edb92e;stroke:#21231e;stroke-width:1.01444578" /> + <path + id="path341" + d="m 412.13,298.41 -0.031,-0.002 -0.0298,-0.004 -0.0298,-0.006 -0.0298,-0.007 -0.0286,-0.008 -0.0275,-0.009 -0.0275,-0.012 -0.0275,-0.012 -0.0263,-0.0145 -0.025,-0.0145 -0.0238,-0.0168 -0.0238,-0.0168 -0.0226,-0.0193 -0.0216,-0.0181 -0.0204,-0.0205 -0.0204,-0.0217 -0.0179,-0.0228 -0.0179,-0.0228 -0.0167,-0.024 -0.0156,-0.0253 -0.0144,-0.0253 -0.0131,-0.0265 -0.0119,-0.0277 -0.0107,-0.0277 -0.008,-0.0277 -0.008,-0.0288 -0.006,-0.03 -0.005,-0.0288 -0.004,-0.03 -0.001,-0.03 -10e-4,-0.0312 10e-4,-0.0312 0.004,-0.0313 0.002,-0.0205 -0.002,-0.0205 -0.004,-0.0312 -10e-4,-0.0312 10e-4,-0.0313 0.001,-0.03 0.004,-0.03 0.005,-0.0288 0.006,-0.03 0.008,-0.0289 0.008,-0.0277 0.0107,-0.0277 0.0119,-0.0277 0.0131,-0.0265 0.0144,-0.0253 0.0156,-0.0253 0.0167,-0.024 0.0179,-0.0228 0.0179,-0.0228 0.0204,-0.0217 0.0204,-0.0205 0.0216,-0.0193 0.0226,-0.0181 0.0238,-0.0181 0.0238,-0.0156 0.025,-0.0157 0.0263,-0.0132 0.0275,-0.0133 0.0275,-0.0108 0.0275,-0.009 0.0286,-0.009 0.0298,-0.006 0.0298,-0.006 0.0298,-0.004 0.031,-0.004 0,0.001 0.0107,0.17799 -0.004,0 -0.0107,-0.17921 0.72934,-0.0458 0.72816,-0.0445 0.72935,-0.0445 0.72815,-0.0445 0.72816,-0.0445 0.72814,-0.0432 0.72936,-0.042 0.72935,-0.0432 0.72814,-0.0409 0.72816,-0.0408 0.72935,-0.0409 0.72815,-0.0409 0.72935,-0.0397 0.72816,-0.0385 0.72935,-0.0385 0.72815,-0.0397 0.73054,-0.0372 0.72816,-0.0372 0.72934,-0.0372 0.72816,-0.0349 0.72935,-0.036 0.72815,-0.036 0.72935,-0.0348 0.72935,-0.0337 0.72815,-0.0337 0.72935,-0.0337 0.72935,-0.0337 0.72935,-0.0325 0.72934,-0.0312 0.72935,-0.0312 0.72936,-0.0312 0.72814,-0.03 0,0 10e-4,0.001 0.0501,1.2111 0,0 -0.72936,0.03 -0.72815,0.0313 -0.72815,0.0312 -0.72815,0.0312 -0.72817,0.0325 -0.72814,0.0337 -0.72935,0.0337 -0.72816,0.0337 -0.72815,0.0337 -0.72816,0.0348 -0.72815,0.0349 -0.72815,0.036 -0.72696,0.036 -0.72935,0.0372 -0.72816,0.0372 -0.72815,0.0372 -0.72815,0.0385 -0.72816,0.0385 -0.72697,0.0397 -0.72814,0.0397 0.72814,0.0397 0.72936,0.0385 0.72697,0.0385 0.72814,0.0385 0.72816,0.0372 0.72815,0.0385 0.72816,0.036 0.72815,0.036 0.72815,0.036 0.72815,0.0349 0.72816,0.0348 0.72815,0.0337 0.72816,0.0337 0.72816,0.0337 0.72814,0.0337 0.72816,0.0325 0.72816,0.0312 0.72934,0.0312 0.72815,0.0313 0.72816,0.03 -0.0502,1.2111 0,10e-4 -0.72936,-0.03 -0.72935,-0.0312 -0.72933,-0.0312 -0.72936,-0.0312 -0.72816,-0.0325 -0.72933,-0.0337 -0.72936,-0.0337 -0.72935,-0.0337 -0.72814,-0.0337 -0.72936,-0.0349 -0.72935,-0.0348 -0.72814,-0.036 -0.72936,-0.036 -0.72816,-0.0372 -0.72934,-0.0372 -0.72935,-0.0372 -0.72816,-0.0385 -0.72934,-0.0385 -0.72816,-0.0397 -0.72935,-0.0397 -0.72815,-0.0397 -0.72935,-0.0409 -0.72816,-0.0409 -0.72934,-0.0409 -0.72815,-0.0432 -0.72816,-0.042 -0.72816,-0.0432 -0.72934,-0.0433 -0.72815,-0.0444 -0.72817,-0.0445 -0.72933,-0.0458 -0.72816,-0.0458 0.0107,-0.18039 10e-4,0 -0.0107,0.17799 0,0.001 z m 0.0429,-0.69634 -0.001,0.024 0,-0.008 0.001,-0.0228 0,0.007 z m 46.617,-2.629 0.0238,1.2123 -0.72935,0.0157 -0.72815,0.0145 -0.72935,0.0168 -0.72935,0.0156 -0.72815,0.0168 -0.72935,0.0181 -0.72816,0.0181 -0.72934,0.0181 -0.72816,0.0193 -0.72935,0.0193 -0.72815,0.0193 -0.72935,0.0205 -0.72815,0.0205 -0.72935,0.0217 -0.72815,0.0217 -0.72816,0.0228 -0.72816,0.0228 -0.72934,0.0228 -0.72815,0.0228 -0.72936,0.0253 -0.72814,0.024 -0.72935,0.024 -0.72817,0.0253 -0.72814,0.0265 -0.72935,0.0265 -0.72815,0.0277 -0.72816,0.0277 -0.72935,0.0277 -0.72815,0.0288 -0.72815,0.0289 -0.72816,0.0288 -0.72816,0.03 -0.0502,-1.2111 0.72814,-0.03 0.72935,-0.03 0.72936,-0.0288 0.72934,-0.0288 0.72934,-0.0277 0.72936,-0.0277 0.72935,-0.0265 0.72934,-0.0277 0.72935,-0.0265 0.72935,-0.0253 0.72936,-0.024 0.72933,-0.0241 0.72936,-0.0253 0.72935,-0.0228 0.72933,-0.0228 0.72936,-0.0228 0.72935,-0.0228 0.72936,-0.0217 0.72933,-0.0217 0.72935,-0.0205 0.72936,-0.0205 0.72934,-0.0193 0.72935,-0.0193 0.72935,-0.0193 0.73054,-0.0181 0.72936,-0.0181 0.72933,-0.0181 0.72936,-0.0168 0.72935,-0.0156 0.73054,-0.0168 0.72934,-0.0145 0.72935,-0.0157 0.002,0 z m 23.348,-0.22608 -10e-4,1.2135 -0.72815,-0.001 -0.72935,0.001 -0.72815,0 -0.72935,10e-4 -0.72816,0.002 -0.72934,10e-4 -0.72816,0.004 -0.72935,0.002 -0.72934,0.004 -0.72935,0.004 -0.72816,0.005 -0.72934,0.004 -0.72935,0.006 -0.72816,0.006 -0.72934,0.006 -0.72816,0.007 -0.72936,0.007 -0.72933,0.008 -0.72935,0.007 -0.72817,0.009 -0.72933,0.008 -0.72816,0.009 -0.72936,0.0107 -0.72814,0.0108 -0.72935,0.0108 -0.72815,0.0108 -0.72935,0.012 -0.72935,0.0132 -0.72815,0.0132 -0.72935,0.0133 -0.72816,0.0132 -0.72934,0.0145 -0.0238,-1.2123 0.72935,-0.0145 0.72935,-0.0132 0.73054,-0.0133 0.72935,-0.0132 0.72935,-0.0132 0.72935,-0.012 0.72934,-0.012 0.72935,-0.0108 0.73054,-0.0108 0.72936,-0.009 0.72934,-0.009 0.72934,-0.009 0.72936,-0.008 0.73054,-0.008 0.72935,-0.007 0.73053,-0.007 0.72936,-0.007 0.72935,-0.006 0.72935,-0.006 0.73053,-0.006 0.72935,-0.005 0.72936,-0.004 0.72935,-0.005 0.72934,-0.002 0.73054,-0.004 0.72935,-0.002 0.72936,-0.002 0.72933,-10e-4 0.72936,-10e-4 0.73054,-0.001 0.72936,0 0.72933,0 10e-4,0 z m 23.348,0.26096 -0.0263,1.2123 -0.72816,-0.0156 -0.72935,-0.0145 -0.72815,-0.0145 -0.72935,-0.0145 -0.72816,-0.0132 -0.72934,-0.012 -0.72935,-0.0132 -0.72816,-0.012 -0.72935,-0.0107 -0.72814,-0.012 -0.72936,-0.0108 -0.72814,-0.009 -0.72935,-0.009 -0.72936,-0.009 -0.72934,-0.008 -0.72815,-0.009 -0.72936,-0.007 -0.72815,-0.007 -0.72934,-0.007 -0.72817,-0.007 -0.72934,-0.006 -0.72815,-0.006 -0.72936,-0.004 -0.72934,-0.005 -0.72935,-0.005 -0.72816,-0.004 -0.72934,-0.002 -0.72935,-0.002 -0.72816,-0.002 -0.72934,-0.002 -0.72935,-0.001 -0.72816,-10e-4 0.001,-1.2123 0.72935,0.001 0.72935,10e-4 0.72936,0.001 0.73053,0.002 0.72936,0.004 0.72934,0.002 0.73054,0.004 0.72935,0.004 0.72935,0.005 0.72935,0.005 0.73054,0.006 0.72935,0.006 0.72935,0.006 0.72934,0.007 0.72936,0.007 0.73053,0.008 0.72936,0.008 0.72934,0.008 0.73055,0.009 0.72934,0.009 0.72935,0.0107 0.72936,0.0108 0.72933,0.0107 0.73055,0.012 0.72935,0.012 0.72935,0.0121 0.72934,0.0132 0.72935,0.0133 0.72936,0.0145 0.72934,0.0144 0.72934,0.0145 0.73055,0.0157 10e-4,0 z m 23.342,0.73843 -0.0514,1.2111 -0.72815,-0.03 -0.72815,-0.0288 -0.72936,-0.03 -0.72815,-0.0288 -0.72815,-0.0277 -0.72815,-0.0277 -0.72936,-0.0277 -0.72815,-0.0277 -0.72934,-0.0265 -0.72816,-0.0253 -0.72935,-0.0265 -0.72815,-0.0253 -0.72935,-0.024 -0.72815,-0.024 -0.72816,-0.024 -0.72935,-0.0228 -0.72814,-0.0228 -0.72936,-0.0228 -0.72816,-0.0217 -0.72933,-0.0217 -0.72817,-0.0217 -0.72935,-0.0193 -0.72933,-0.0205 -0.72817,-0.0193 -0.72935,-0.0193 -0.72814,-0.0181 -0.72936,-0.0193 -0.72815,-0.0167 -0.72935,-0.0181 -0.72935,-0.0168 -0.72815,-0.0157 -0.72935,-0.0169 0.0263,-1.2123 0.72935,0.0168 0.73054,0.0157 0.72935,0.0168 0.72935,0.0181 0.72935,0.0181 0.72935,0.0181 0.72934,0.0181 0.73055,0.0193 0.72935,0.0193 0.72934,0.0205 0.72935,0.0205 0.72935,0.0205 0.72936,0.0217 0.72933,0.0217 0.73055,0.0228 0.72935,0.0228 0.72935,0.0228 0.72934,0.024 0.72935,0.024 0.72936,0.024 0.72934,0.0253 0.72934,0.0265 0.72936,0.0253 0.72935,0.0277 0.72934,0.0265 0.72935,0.0277 0.72935,0.0277 0.72936,0.0288 0.72933,0.0288 0.72936,0.0288 0.72935,0.03 0.72933,0.03 10e-4,0 z m 23.322,1.2087 -0.005,0.0854 0.005,-0.0854 0.031,0.004 0.031,0.004 0.0298,0.006 0.0287,0.007 0.0287,0.008 0.0286,0.0107 0.0275,0.0108 0.0263,0.0132 0.0263,0.0133 0.025,0.0156 0.025,0.0156 0.0227,0.0181 0.0226,0.0181 0.0216,0.0193 0.0216,0.0205 0.0191,0.0217 0.0191,0.0228 0.0179,0.0228 0.0167,0.0228 0.0144,0.0253 0.0144,0.0253 0.0143,0.0265 0.0107,0.0277 0.0107,0.0277 0.009,0.0277 0.008,0.0288 0.006,0.03 0.005,0.0289 0.004,0.03 10e-4,0.0312 10e-4,0.03 -10e-4,0.0313 0,0.004 0,0.005 10e-4,0.0312 -10e-4,0.03 -10e-4,0.0313 -0.004,0.03 -0.005,0.0289 -0.006,0.03 -0.008,0.0288 -0.009,0.0277 -0.0107,0.0277 -0.0107,0.0277 -0.0143,0.0265 -0.0144,0.0253 -0.0144,0.0253 -0.0167,0.0228 -0.0179,0.0228 -0.0191,0.0228 -0.0191,0.0217 -0.0216,0.0205 -0.0216,0.0193 -0.0226,0.0181 -0.0227,0.0181 -0.025,0.0157 -0.025,0.0156 -0.0263,0.0133 -0.0263,0.0132 -0.0275,0.0108 -0.0286,0.0108 -0.0287,0.008 -0.0287,0.007 -0.0298,0.006 -0.031,0.004 -0.031,0.004 -0.005,-0.0854 10e-4,0 0.005,0.0842 -10e-4,-0.001 -0.72814,0.0458 -0.72936,0.0432 -0.72814,0.0445 -0.72935,0.0432 -0.72816,0.0432 -0.72935,0.042 -0.72934,0.0432 -0.72816,0.042 -0.72935,0.0409 -0.72934,0.0397 -0.72816,0.0409 -0.72816,0.0397 -0.72934,0.0397 -0.72816,0.0385 -0.72935,0.0385 -0.72934,0.0385 -0.72816,0.0372 -0.72935,0.0372 -0.72934,0.0372 -0.72816,0.0348 -0.72935,0.036 -0.72815,0.036 -0.72935,0.0348 -0.72935,0.0337 -0.72935,0.0337 -0.72934,0.0337 -0.72816,0.0337 -0.72935,0.0325 -0.72934,0.0312 -0.72935,0.0325 -0.72935,0.0312 -0.72936,0.03 -0.0502,-1.2111 0.72814,-0.0312 0.72935,-0.0312 0.72817,-0.0312 0.72814,-0.0325 0.72816,-0.0325 0.72934,-0.0325 0.72816,-0.0337 0.72816,-0.0337 0.72815,-0.0348 0.72815,-0.0349 0.72815,-0.0349 0.72817,-0.036 0.72814,-0.0348 0.72816,-0.0372 0.72935,-0.0372 0.72815,-0.0372 0.72816,-0.0385 0.72814,-0.0385 0.44287,-0.0228 -0.44406,-0.024 -0.72815,-0.0385 -0.72816,-0.0385 -0.72816,-0.0372 -0.72814,-0.0372 -0.72935,-0.0372 -0.72816,-0.036 -0.72815,-0.036 -0.72816,-0.0337 -0.72814,-0.0348 -0.72816,-0.0349 -0.72935,-0.0337 -0.72815,-0.0337 -0.72815,-0.0337 -0.72816,-0.0313 -0.72816,-0.0325 -0.72815,-0.0325 -0.72816,-0.0312 -0.72933,-0.03 0.0502,-1.2123 0.72936,0.0312 0.72934,0.0312 0.72934,0.0312 0.72936,0.0325 0.72815,0.0325 0.72935,0.0325 0.72935,0.0337 0.72935,0.0337 0.72935,0.0348 0.72815,0.0348 0.72935,0.0349 0.72935,0.036 0.72935,0.036 0.72815,0.0372 0.72935,0.0372 0.72935,0.0372 0.72934,0.0385 0.72935,0.0385 0.72816,0.0385 0.72934,0.0397 0.72816,0.0397 0.72935,0.0409 0.72815,0.0409 0.72935,0.0409 0.72816,0.042 0.72934,0.042 0.72935,0.0432 0.72816,0.0432 0.72935,0.0433 0.72814,0.0444 0.72817,0.0433 0.72933,0.0458 0,-10e-4 z m -0.0394,0.64342 0,0.005 0,-0.005 z m -116.61,0.70476 0.0298,0.002 0.031,0.004 0.0298,0.005 0.0298,0.007 0.0286,0.007 0.0286,0.009 0.0275,0.0107 0.0263,0.012 0.0263,0.0133 0.0263,0.0145 0.0238,0.0168 0.0238,0.0168 0.0238,0.0181 0.0216,0.0181 0.0215,0.0205 0.0204,0.0205 0.0191,0.0228 0.0179,0.0228 0.0167,0.0241 0.0167,0.024 0.0143,0.0253 0.0131,0.0253 0.0131,0.0277 0.0107,0.0277 0.009,0.0277 0.008,0.0288 0.007,0.0288 0.006,0.0288 0.004,0.03 0.004,0.03 10e-4,0.0312 -10e-4,0.0312 -0.002,0.0313 -0.004,0.03 -0.004,0.03 -0.007,0.03 -0.008,0.0288 -0.009,0.0277 -0.0107,0.0277 -0.0119,0.0277 -0.0131,0.0265 -0.0143,0.0253 -0.0156,0.0253 -0.0167,0.024 -0.0179,0.0228 -0.0179,0.0217 -0.0203,0.0217 -0.0216,0.0205 -0.0215,0.0193 -0.0226,0.0168 -0.0238,0.0181 -0.025,0.0157 -0.025,0.0145 -0.025,0.0145 -0.0275,0.012 -0.0275,0.0108 -0.0286,0.009 -0.0286,0.008 -0.0286,0.007 -0.0286,0.005 -0.0298,0.005 -0.031,0.002 -0.0298,0.001 -0.0323,-0.001 0.0502,-1.2111 10e-4,-10e-4 z m 93.325,1.1569 -0.0323,0 -0.0298,-0.001 -0.031,-0.002 -0.0298,-0.004 -0.0298,-0.006 -0.0286,-0.007 -0.0287,-0.007 -0.0275,-0.0108 -0.0275,-0.0107 -0.0275,-0.0121 -0.025,-0.0132 -0.025,-0.0145 -0.025,-0.0168 -0.0238,-0.0168 -0.0226,-0.0181 -0.0216,-0.0193 -0.0215,-0.0205 -0.0191,-0.0205 -0.0191,-0.0228 -0.0179,-0.0228 -0.0167,-0.0228 -0.0156,-0.0253 -0.0144,-0.0253 -0.0131,-0.0265 -0.0131,-0.0277 -0.0107,-0.0277 -0.008,-0.0277 -0.008,-0.0288 -0.007,-0.03 -0.005,-0.03 -0.004,-0.03 -0.001,-0.0312 -10e-4,-0.0312 10e-4,-0.0312 0.002,-0.03 0.005,-0.03 0.006,-0.0288 0.006,-0.0288 0.009,-0.0288 0.009,-0.0288 0.0107,-0.0277 0.0119,-0.0265 0.0131,-0.0253 0.0156,-0.0253 0.0156,-0.0253 0.0179,-0.0228 0.0179,-0.0228 0.0191,-0.0217 0.0204,-0.0205 0.0215,-0.0205 0.0216,-0.0193 0.0226,-0.0181 0.025,-0.0168 0.0238,-0.0156 0.025,-0.0145 0.0263,-0.0133 0.0275,-0.012 0.0275,-0.0108 0.0287,-0.009 0.0286,-0.007 0.0298,-0.007 0.0298,-0.005 0.0298,-0.004 0.031,-0.002 0.0514,1.2123 0,-10e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path343" + d="m 478.54,263.38 -0.005,-1.0198 10e-4,0 0.11102,0 0.11339,-0.001 0.1146,0 0.1122,0 0.11103,0 0.1122,-10e-4 0.1146,0 0.11339,0 0.11222,0 0.10982,0 0.1134,-0.001 0.11459,0 0.11221,0 0.1134,0 0.10981,0 0.11221,-10e-4 0.1158,0 0.1122,0 0.11222,0 0.11339,0 0.11222,0 0.111,0 0.1122,-10e-4 0.11461,0 0.1134,0 0.11221,0 0.1134,0 0.11221,0 0.1134,0 0.11221,0 0.1134,0 0.11221,0 0,1.0198 -0.11221,0 -0.1134,0 -0.11221,0 -0.1134,0 -0.11221,0 -0.1134,0 -0.11221,0 -0.1134,0 -0.10982,0 -0.11221,10e-4 -0.11578,0 -0.11222,0 -0.11339,0 -0.11222,0 -0.1122,0 -0.11101,0 -0.11222,0.001 -0.11459,0 -0.1134,0 -0.11221,0 -0.10982,0 -0.1134,10e-4 -0.11459,0 -0.11222,0 -0.11339,0 -0.10982,0 -0.11222,0.001 -0.11578,0 -0.11221,0 -0.10982,0 -0.1134,10e-4 -0.1134,0 0.001,0 z m -0.005,-1.0198 -0.002,0 0.004,0 -10e-4,0 z m -1.2009,0.006 1.2009,-0.006 0.005,1.0198 -1.2009,0.006 -0.005,-1.0198 z m 0.005,1.0198 z m -0.61953,-1.0174 0.61475,-0.002 0.005,1.0198 -0.61475,0.002 -0.005,-1.0198 z m -1.1149,0.006 1.1149,-0.006 0.005,1.0198 -1.1149,0.006 -0.006,-1.0198 10e-4,0 z m -10e-4,0 -0.004,0 0.005,0 -10e-4,0 z m -0.66966,0.005 0.66966,-0.005 0.007,1.0198 -0.66965,0.005 -10e-4,0 -0.006,-1.0198 z m 0.007,1.0198 0.004,0 -0.005,0 0.001,0 z m -0.43928,-1.0174 0.43331,-0.002 0.005,1.0198 -0.43331,0.002 -0.006,-1.0198 0.001,0 z m -0.001,0 -0.002,0 0.004,0 -10e-4,0 z m -0.76516,0.006 0.76516,-0.006 0.007,1.0198 -0.76515,0.006 -0.008,-1.0198 0.001,0 z m -10e-4,0 -0.005,0 0.006,0 -10e-4,0 z m -1.1985,0.012 1.1985,-0.012 0.009,1.0198 -1.1985,0.012 -0.009,-1.0198 z m -1.054,0.009 1.054,-0.009 0.009,1.0198 -1.054,0.009 -0.0107,-1.0198 0.001,0 z m -0.001,0 -0.007,0 0.008,0 -0.001,0 z m -0.22442,0.002 0.22442,-0.002 0.0119,1.0198 -0.22442,0.002 -0.0119,-1.0198 z m -0.88214,0.009 0.88214,-0.009 0.0119,1.0198 -0.88213,0.009 -0.0119,-1.0198 z m -2.6094,1.0535 -0.0167,-1.0198 0.001,0 0.0823,-0.001 0.0811,-10e-4 0.0823,-0.001 0.0823,-10e-4 0.0811,-0.001 0.0823,-10e-4 0.0848,-10e-4 0.0823,0 0.0787,-0.001 0.0811,-10e-4 0.0823,-0.001 0.0823,-10e-4 0.0811,-10e-4 0.0823,-0.001 0.0823,-10e-4 0.0811,-0.001 0.0823,-10e-4 0.0859,-0.001 0.0811,0 0.0788,-10e-4 0.0823,-10e-4 0.0811,-0.001 0.0823,-10e-4 0.0859,-0.001 0.0823,0 0.0777,-10e-4 0.0823,-10e-4 0.0823,-0.001 0.0859,-10e-4 0.0811,0 0.0788,-0.001 0.0836,-10e-4 0.0119,1.0198 -0.0811,0.001 -0.0859,10e-4 -0.0811,0 -0.0789,0.001 -0.0823,10e-4 -0.0823,10e-4 -0.0848,0.001 -0.0823,0 -0.0788,10e-4 -0.0823,0.001 -0.0811,10e-4 -0.0823,10e-4 -0.0859,0.001 -0.0811,0 -0.0789,10e-4 -0.0823,0.001 -0.0811,10e-4 -0.0823,0.001 -0.0823,10e-4 -0.0811,10e-4 -0.0823,0.001 -0.0823,10e-4 -0.0811,0.001 -0.0859,10e-4 -0.0823,0 -0.0777,10e-4 -0.0823,0.001 -0.0811,10e-4 -0.0823,0.001 -0.0823,10e-4 -0.0811,0.001 -0.0823,10e-4 10e-4,0 z m -0.0167,-1.0198 -0.006,0 0.007,0 -0.001,0 z m -0.29007,0.005 0.29007,-0.005 0.0167,1.0198 -0.29007,0.005 -10e-4,0 -0.0156,-1.0198 z m 0.0167,1.0198 0.008,0 -0.009,0 10e-4,0 z m -0.18144,-1.0174 0.16592,-0.002 0.0144,1.0198 -0.16592,0.002 -0.0156,-1.0198 0.001,0 z m -0.001,0 -0.0107,0 0.0119,0 -10e-4,0 z m -1.1161,0.0181 1.1161,-0.0181 0.0167,1.0198 -1.1161,0.0181 -0.004,0 -0.0131,-1.0198 z m 0.0167,1.0198 0.007,0 -0.0107,0 0.004,0 z m -0.35572,-1.0162 0.34258,-0.004 0.009,1.0198 -0.34258,0.004 -0.0131,-1.0198 0.004,0 z m -0.004,0 -0.005,0 0.008,0 -0.004,0 z m -0.4727,0.008 0.4727,-0.008 0.0167,1.0198 -0.47272,0.008 -0.0167,-1.0198 z m 0.0167,1.0198 z m -1.1662,-1.0006 1.1495,-0.0193 0.0167,1.0198 -1.1495,0.0193 -0.0215,-1.0186 0.005,-10e-4 z m -0.005,0.001 0.005,-0.001 0.10267,-10e-4 -0.10744,0.002 z m -0.0442,10e-4 0.0442,-10e-4 0.0263,1.0174 -0.0442,0.001 -0.004,10e-4 -0.0226,-1.0186 z m 0.0263,1.0174 -0.004,10e-4 -0.13728,0.002 0.14086,-0.004 z m -1.2152,-0.99579 1.1925,-0.0228 0.0191,1.0198 -1.1925,0.0228 -0.0191,-1.0198 z m -0.38557,0.007 0.38557,-0.007 0.0191,1.0198 -0.38558,0.007 -0.0191,-1.0198 z m -0.80454,0.0157 0.80454,-0.0157 0.0191,1.0198 -0.80455,0.0156 -0.0216,-1.0186 0.002,-10e-4 z m -0.002,10e-4 0.002,-10e-4 0.3414,-0.007 -0.34379,0.008 z m -0.26381,0.006 0.26381,-0.006 0.0238,1.0174 -0.26381,0.006 -0.001,10e-4 -0.0226,-1.0186 z m 0.0238,1.0174 -0.001,10e-4 -0.57416,0.012 0.57535,-0.0132 z m -0.95018,-0.99941 0.9275,-0.0193 0.0215,1.0198 -0.92751,0.0193 -0.0216,-1.0198 z m -1.1889,0.0253 1.1889,-0.0253 0.0216,1.0198 -1.1889,0.0253 -0.0335,-1.0186 0.0119,-10e-4 z m -0.0119,10e-4 0.0119,-10e-4 0.0286,-0.001 -0.0406,0.002 z m -0.0537,0.002 0.0537,-0.002 0.0454,1.0174 -0.0536,0.002 -0.0107,0 -0.0347,-1.0174 z m 0.0454,1.0174 0.0119,0 -0.0226,0 0.0107,0 z m -1.171,-0.99099 1.1364,-0.0265 0.0238,1.0174 -1.1364,0.0265 -10e-4,0 -0.0226,-1.0174 z m -0.47987,0.0108 0.48106,-0.0108 0.0216,1.0174 -0.48106,0.0108 -0.0275,-1.0174 0.006,0 z m -0.006,0 -0.0119,0 0.0179,0 -0.006,0 z m -0.0358,10e-4 0.0358,-10e-4 0.0335,1.0174 -0.0357,10e-4 -0.005,0 -0.0286,-1.0174 z m 0.0335,1.0174 0.0131,0 -0.0179,0 0.005,0 z m -4.2352,0.11185 -0.0286,-1.0174 0.1337,-0.004 0.13131,-0.004 0.13249,-0.004 0.1325,-0.004 0.1325,-0.004 0.13131,-0.004 0.13251,-0.004 0.13249,-0.004 0.1325,-0.004 0.13131,-0.004 0.13249,-0.004 0.13252,-0.004 0.13249,-0.004 0.13249,-0.004 0.13132,-0.004 0.13249,-0.004 0.1325,-0.004 0.13251,-0.004 0.13249,-0.004 0.1337,-0.004 0.1313,-0.002 0.1313,-0.004 0.13251,-0.004 0.1325,-0.004 0.13369,-0.004 0.1325,-0.002 0.1313,-0.004 0.13132,-0.004 0.1325,-0.004 0.13368,-0.004 0.13251,-0.002 0.13249,-0.004 0.0238,1.0174 -0.13251,0.004 -0.13249,0.002 -0.13131,0.004 -0.1325,0.004 -0.1313,0.004 -0.13369,0.004 -0.13251,0.002 -0.1313,0.004 -0.13251,0.004 -0.13249,0.004 -0.13369,0.004 -0.13132,0.002 -0.1313,0.004 -0.13249,0.004 -0.13251,0.004 -0.13249,0.004 -0.13251,0.004 -0.13131,0.004 -0.13249,0.004 -0.13251,0.004 -0.13249,0.004 -0.1325,0.004 -0.13131,0.004 -0.1325,0.004 -0.1325,0.004 -0.1325,0.004 -0.1313,0.004 -0.1325,0.004 -0.13251,0.004 -0.1325,0.004 -0.1313,0.004 -0.13131,0.004 z m -0.0286,-1.0174 z m -0.57536,0.0168 0.57536,-0.0168 0.0286,1.0174 -0.57536,0.0168 -0.0298,-1.0174 10e-4,0 z m -10e-4,0 10e-4,0 -0.0275,0.001 0.0263,-0.001 z m -1.6115,0.0493 1.6115,-0.0493 0.031,1.0174 -1.6115,0.0493 -0.002,0 -0.0286,-1.0174 z m 0.031,1.0174 0.0143,0 -0.0167,0 0.002,0 z m -0.21127,-1.0126 0.18263,-0.005 0.0263,1.0174 -0.18264,0.005 -0.0286,-1.0174 0.002,0 z m -0.002,0 -0.0107,0 0.0131,0 -0.002,0 z m -1.4277,0.0458 1.4277,-0.0458 0.031,1.0174 -1.4276,0.0458 -0.031,-1.0174 z m -0.93943,0.03 0.93943,-0.03 0.031,1.0174 -0.93945,0.03 -0.0323,-1.0174 10e-4,0 z m -0.66967,0.0217 0.66846,-0.0217 0.0335,1.0174 -0.66847,0.0217 -0.0357,-1.0174 0.002,0 z m -0.002,0 -0.0119,0 0.0144,0 -0.002,0 z m -0.18622,0.007 0.18622,-0.007 0.0382,1.0174 -0.18623,0.007 -0.001,0 -0.0369,-1.0174 z m 0.0382,1.0174 0.0107,0 -0.0119,0 10e-4,0 z m -1.4587,-0.96814 1.4217,-0.0493 0.0357,1.0174 -1.4217,0.0493 -0.004,0 -0.0323,-1.0174 z m 0.0357,1.0174 0.0156,0 -0.0191,0 0.004,0 z m -0.11817,-1.015 0.0859,-0.002 0.0286,1.0174 -0.0859,0.002 -0.0323,-1.0174 0.004,0 z m -0.004,0 -0.0119,0 0.0156,0 -0.004,0 z m -1.1806,0.0432 1.1806,-0.0432 0.0357,1.0174 -1.1806,0.0432 -0.0406,-1.0174 0.005,0 z m -0.005,0 0.005,0 -0.0238,10e-4 0.0191,-10e-4 z m -0.0525,0.002 0.0525,-0.002 0.0454,1.0174 -0.0525,0.002 -0.004,0 -0.0417,-1.0174 z m 0.0454,1.0174 -0.004,0 0.0226,-0.001 -0.0191,0.001 z m -1.1698,-0.97413 1.128,-0.0433 0.0382,1.0174 -1.128,0.0432 -0.0382,-1.0174 z m -0.76277,0.0288 0.76277,-0.0288 0.0382,1.0174 -0.76277,0.0288 -0.0394,-1.0174 0.001,0 z m -0.001,0 0.001,0 -0.0226,10e-4 0.0215,-10e-4 z m -1.5936,0.0637 1.5936,-0.0637 0.0406,1.0174 -1.5936,0.0637 -0.0204,10e-4 -0.0204,-1.0186 z m 0.0406,1.0174 -0.0204,10e-4 -0.009,0 0.0298,-10e-4 z m -0.0298,-1.0186 0.009,0 0,1.0198 -0.009,0 -0.0204,-1.0186 0.0204,-10e-4 z m -0.0204,10e-4 0.0204,-10e-4 0.009,0 -0.0298,10e-4 z m -6.2347,1.2916 -0.0454,-1.0174 -0.001,0 0.19696,-0.009 0.19577,-0.008 0.19578,-0.009 0.19576,-0.008 0.19696,-0.009 0.19696,-0.008 0.19456,-0.008 0.19577,-0.009 0.19696,-0.008 0.19576,-0.008 0.19578,-0.009 0.19696,-0.008 0.19576,-0.008 0.19577,-0.008 0.19577,-0.009 0.19696,-0.008 0.19695,-0.008 0.19577,-0.008 0.19577,-0.008 0.19696,-0.008 0.19576,-0.008 0.19696,-0.008 0.19577,-0.008 0.19695,-0.008 0.19578,-0.008 0.19815,-0.008 0.19577,-0.007 0.19576,-0.008 0.19577,-0.008 0.19815,-0.008 0.19578,-0.007 0.19696,-0.008 0.0406,1.0174 -0.19696,0.008 -0.19576,0.007 -0.19577,0.008 -0.19576,0.008 -0.19815,0.008 -0.19577,0.007 -0.19577,0.008 -0.19577,0.008 -0.19696,0.008 -0.19577,0.008 -0.19696,0.008 -0.19576,0.008 -0.19696,0.008 -0.19576,0.008 -0.19577,0.008 -0.19696,0.008 -0.19458,0.008 -0.19576,0.009 -0.19815,0.008 -0.19577,0.008 -0.19457,0.008 -0.19577,0.009 -0.19816,0.008 -0.19456,0.008 -0.19577,0.009 -0.19696,0.008 -0.19457,0.008 -0.19696,0.009 -0.19577,0.008 -0.19577,0.009 -0.19576,0.008 -0.19457,0.009 -0.001,0 z m 0.001,0 -0.001,0 0.0238,-10e-4 -0.0226,10e-4 z m -0.34499,-1.0042 0.29843,-0.0133 0.0454,1.0174 -0.29841,0.0132 -0.0466,-1.0174 0.001,0 z m -0.001,0 0.001,0 -0.0191,0.001 0.0179,-0.001 z m -9.1413,1.4937 -0.0549,-1.0174 -0.001,0 0.28649,-0.0157 0.28649,-0.0168 0.28768,-0.0157 0.28649,-0.0156 0.28649,-0.0157 0.28649,-0.0155 0.28647,-0.0157 0.2877,-0.0156 0.28648,-0.0156 0.28648,-0.0157 0.28888,-0.0156 0.28649,-0.0144 0.28767,-0.0157 0.2865,-0.0145 0.28768,-0.0156 0.28648,-0.0145 0.28769,-0.0156 0.28886,-0.0145 0.28769,-0.0145 0.28648,-0.0145 0.28768,-0.0145 0.28769,-0.0145 0.28767,-0.0145 0.28769,-0.0145 0.28768,-0.0144 0.28888,-0.0145 0.28887,-0.0133 0.28648,-0.0145 0.28888,-0.0144 0.28768,-0.0133 0.28888,-0.0145 0.28768,-0.0133 0.0477,1.0174 -0.28767,0.0133 -0.28888,0.0145 -0.28769,0.0132 -0.28648,0.0145 -0.28888,0.0145 -0.28886,0.0132 -0.28649,0.0145 -0.28769,0.0145 -0.28767,0.0145 -0.28769,0.0145 -0.28768,0.0145 -0.28768,0.0145 -0.28649,0.0145 -0.28768,0.0145 -0.28649,0.0145 -0.28768,0.0156 -0.28649,0.0145 -0.28768,0.0156 -0.28649,0.0145 -0.28767,0.0157 -0.2865,0.0145 -0.28648,0.0155 -0.28648,0.0157 -0.28649,0.0156 -0.28768,0.0156 -0.28648,0.0156 -0.2865,0.0157 -0.28648,0.0157 -0.28649,0.0157 -0.28529,0.0156 -0.2865,0.0168 -0.28648,0.0157 -0.001,0 z m 0.001,0 -0.001,0 0.0454,-0.002 -0.0442,0.002 z m -0.23158,-1.0078 0.17547,-0.009 0.0549,1.0174 -0.17547,0.009 -0.0561,-1.0175 0.001,0 z m -0.001,0 0.001,0 -0.0204,0.001 0.0191,-0.001 z m -0.45479,0.0265 0.45479,-0.0265 0.0573,1.0175 -0.4548,0.0265 -0.0573,-1.0174 z m -18.181,2.2297 -0.074,-1.015 -10e-4,0 0.56702,-0.0433 0.56819,-0.042 0.56701,-0.042 0.56819,-0.042 0.56701,-0.0409 0.56821,-0.042 0.56939,-0.042 0.56939,-0.0397 0.5682,-0.0409 0.56939,-0.0397 0.5694,-0.0397 0.56938,-0.0397 0.56941,-0.0385 0.56939,-0.0397 0.57177,-0.0385 0.5694,-0.0372 0.57058,-0.0384 0.57179,-0.0372 0.57058,-0.0372 0.57178,-0.036 0.57059,-0.0372 0.57298,-0.036 0.57176,-0.036 0.57179,-0.0349 0.57179,-0.0349 0.57177,-0.0348 0.57298,-0.0348 0.57297,-0.0348 0.57298,-0.0337 0.57297,-0.0337 0.57536,-0.0337 0.57297,-0.0325 0.0573,1.0174 -0.57298,0.0325 -0.57297,0.0337 -0.57297,0.0337 -0.57297,0.0337 -0.5706,0.0349 -0.57296,0.0348 -0.57178,0.0348 -0.57179,0.0349 -0.57178,0.0348 -0.57178,0.036 -0.57058,0.036 -0.57059,0.0372 -0.57178,0.036 -0.57059,0.0372 -0.56939,0.0372 -0.57058,0.0384 -0.5694,0.0372 -0.56939,0.0385 -0.5694,0.0397 -0.56939,0.0385 -0.56939,0.0397 -0.56939,0.0397 -0.56701,0.0397 -0.56819,0.0408 -0.56941,0.0397 -0.567,0.0397 -0.5682,0.042 -0.567,0.0408 -0.56821,0.042 -0.567,0.042 -0.56581,0.042 -0.56701,0.0432 -10e-4,0 z m 10e-4,0 -10e-4,0 0.0585,-0.005 -0.0573,0.005 z m -0.302,-0.9982 0.2268,-0.0168 0.074,1.015 -0.22681,0.0168 -0.0848,-1.015 0.0107,0 z m -0.0107,0 0.0107,0 -0.0477,0.004 0.0369,-0.004 z m -0.0752,0.007 0.0752,-0.007 0.0955,1.015 -0.0752,0.007 -0.009,0 -0.0859,-1.015 z m 0.0955,1.015 -0.009,0 0.0466,-0.004 -0.0369,0.004 z m -26.329,2.3692 -0.0931,-1.015 -0.005,10e-4 0.8153,-0.0842 0.8153,-0.0842 0.81767,-0.083 0.81649,-0.083 0.81648,-0.0818 0.81888,-0.0806 0.81887,-0.0806 0.81769,-0.0795 0.82127,-0.0795 0.81887,-0.0782 0.82007,-0.0782 0.82245,-0.077 0.82007,-0.077 0.82365,-0.0758 0.82127,-0.0746 0.82245,-0.0746 0.82485,-0.0733 0.82364,-0.0733 0.82366,-0.0721 0.82603,-0.0721 0.82484,-0.071 0.82604,-0.0709 0.82723,-0.0697 0.82604,-0.0685 0.82842,-0.0685 0.82723,-0.0673 0.82724,-0.0673 0.82961,-0.0661 0.82962,-0.0662 0.82842,-0.0649 0.83082,-0.0637 0.83081,-0.0637 0.0764,1.015 -0.83082,0.0637 -0.82841,0.0637 -0.82843,0.0649 -0.82962,0.0661 -0.82724,0.0662 -0.82722,0.0673 -0.82724,0.0673 -0.82603,0.0685 -0.82604,0.0685 -0.82484,0.0697 -0.82604,0.0709 -0.82485,0.0709 -0.82364,0.0722 -0.82365,0.0721 -0.82365,0.0734 -0.82246,0.0733 -0.82245,0.0746 -0.82127,0.0745 -0.82127,0.0758 -0.82006,0.077 -0.82007,0.077 -0.82006,0.0782 -0.81887,0.0782 -0.81889,0.0795 -0.81769,0.0795 -0.81887,0.0806 -0.81648,0.0806 -0.81649,0.0818 -0.81648,0.0806 -0.8153,0.083 -0.8153,0.0842 -0.81529,0.0842 -0.005,10e-4 z m 0.005,-10e-4 -0.005,10e-4 -0.0728,0.007 0.0777,-0.008 z m -0.10266,-6.9682 0.10266,1.0126 -0.005,10e-4 -0.50015,0.0613 -0.45837,0.0902 -0.4178,0.11304 -0.37721,0.13349 -0.33901,0.15274 -0.30081,0.16838 -0.26261,0.18159 -0.228,0.19243 -0.19338,0.20084 -0.16234,0.20806 -0.13011,0.21167 -0.10148,0.21768 -0.074,0.21768 -0.0454,0.22009 -0.0216,0.22128 0.005,0.21887 0.031,0.21768 0.0549,0.21529 0.0788,0.20805 0.10386,0.20325 0.12891,0.19604 0.15518,0.1864 0.17906,0.17559 0.20651,0.16236 0.23038,0.14912 0.25546,0.12989 0.2829,0.10944 0.30916,0.0902 0.33424,0.0649 0.36169,0.0372 0.38795,0.008 0.41421,-0.0228 0.0931,1.015 -0.49061,0.0277 -0.46673,-0.0107 -0.44525,-0.047 -0.42257,-0.0818 -0.3975,-0.11424 -0.37123,-0.14552 -0.3438,-0.17559 -0.31632,-0.20204 -0.28529,-0.22731 -0.25545,-0.24773 -0.22442,-0.2706 -0.19099,-0.28984 -0.15638,-0.30427 -0.11936,-0.3163 -0.0836,-0.32593 -0.0454,-0.33313 -0.007,-0.33913 0.031,-0.33676 0.0717,-0.33553 0.10982,-0.33073 0.1516,-0.32111 0.1898,-0.31028 0.22919,-0.29466 0.26739,-0.27781 0.30439,-0.25736 0.34378,-0.23693 0.3796,-0.21166 0.41541,-0.18882 0.4536,-0.15995 0.48942,-0.13229 0.52761,-0.10223 0.56461,-0.0709 -0.005,10e-4 z m 0.10266,1.0126 -0.005,10e-4 -0.0645,0.006 0.0692,-0.007 z m 26.236,-3.3818 0.0811,1.015 -0.002,0 -0.83081,0.0637 -0.82843,0.0637 -0.82843,0.0649 -0.8296,0.0662 -0.82724,0.0661 -0.82723,0.0673 -0.82722,0.0673 -0.82605,0.0685 -0.82604,0.0685 -0.82603,0.0697 -0.82486,0.0697 -0.82483,0.0721 -0.82485,0.071 -0.82246,0.0721 -0.82364,0.0734 -0.82246,0.0733 -0.82246,0.0746 -0.82126,0.0745 -0.82126,0.0758 -0.82007,0.077 -0.82007,0.077 -0.82007,0.0782 -0.81887,0.0782 -0.81888,0.0782 -0.81767,0.0806 -0.81888,0.0794 -0.81649,0.0818 -0.81649,0.0818 -0.81649,0.0806 -0.8153,0.083 -0.81528,0.0842 -0.8153,0.0842 -0.10267,-1.0126 0.81531,-0.0842 0.81529,-0.0842 0.81768,-0.083 0.81649,-0.083 0.81649,-0.0818 0.81887,-0.0818 0.81887,-0.0795 0.81769,-0.0806 0.82126,-0.0782 0.81887,-0.0782 0.82007,-0.0782 0.82246,-0.077 0.82007,-0.077 0.82365,-0.0758 0.82127,-0.0745 0.82245,-0.0746 0.82484,-0.0733 0.82366,-0.0734 0.82483,-0.0722 0.82485,-0.071 0.82485,-0.0722 0.82723,-0.0697 0.82604,-0.0697 0.82603,-0.0685 0.82843,-0.0685 0.82722,-0.0673 0.82724,-0.0673 0.82961,-0.0661 0.82963,-0.0662 0.82843,-0.0649 0.83079,-0.0637 0.83082,-0.0637 -0.002,0 z m 0.0811,1.015 -0.002,0 0.0502,-0.004 -0.0478,0.004 z m 0.0752,-0.006 -0.0752,0.006 -0.0811,-1.015 0.0752,-0.006 0.002,0 0.0788,1.015 z m -0.0811,-1.015 0.002,0 -0.049,0.004 0.0466,-0.004 z m 36.919,-2.1106 0.0382,1.0174 -1.1651,0.0458 -1.1638,0.047 -1.1638,0.0481 -1.1627,0.0493 -1.1626,0.0505 -1.1603,0.0517 -1.1603,0.0541 -1.1603,0.0542 -1.1579,0.0565 -1.1579,0.0577 -1.1567,0.059 -1.1567,0.0602 -1.1555,0.0613 -1.1543,0.0625 -1.1555,0.0637 -1.1519,0.0649 -1.1519,0.0673 -1.1519,0.0673 -1.1495,0.0698 -1.1495,0.0709 -1.1495,0.0722 -1.1472,0.0722 -1.1483,0.0745 -1.1459,0.0758 -1.1448,0.077 -1.1448,0.0795 -1.1448,0.0794 -1.1424,0.0806 -1.1424,0.0818 -1.14,0.083 -1.1412,0.0842 -1.1388,0.0865 -0.0764,-1.015 1.1412,-0.0865 1.1412,-0.0842 1.1424,-0.0854 1.1424,-0.0818 1.1448,-0.0806 1.1448,-0.0794 1.1448,-0.0794 1.1472,-0.077 1.1483,-0.0758 1.1483,-0.0746 1.1495,-0.0722 1.1495,-0.0721 1.1495,-0.0709 1.1519,-0.0697 1.1519,-0.0673 1.1543,-0.0673 1.1543,-0.0649 1.1555,-0.0637 1.1543,-0.0625 1.1579,-0.0613 1.1567,-0.0602 1.1591,-0.059 1.1579,-0.0577 1.1603,-0.0565 1.1603,-0.0542 1.1626,-0.0541 1.1627,-0.0518 1.1626,-0.0505 1.1627,-0.0493 1.1662,-0.0481 1.1638,-0.047 1.1674,-0.0458 z m 1.0648,0.97896 -1.0266,0.0385 -0.0382,-1.0174 1.0266,-0.0385 0.0417,1.0174 -0.004,0 z m 0.004,0 -0.004,0 0.0191,-10e-4 -0.0155,10e-4 z m 0.15637,-0.007 -0.15637,0.007 -0.0454,-1.0175 0.15637,-0.007 0.005,0 0.0406,1.0174 z m -0.0454,-1.0174 0.005,0 -0.0204,0.001 0.0156,-0.001 z m 0.3796,1.0054 -0.33901,0.012 -0.0358,-1.0174 0.33901,-0.012 0.0357,1.0174 z m 1.1806,-0.0433 -1.1806,0.0433 -0.0357,-1.0174 1.1806,-0.0432 0.0382,1.0174 -0.002,0 z m 0.002,0 -0.002,0 0.0216,-10e-4 -0.0191,10e-4 z m 0.0871,-0.004 -0.0871,0.004 -0.0406,-1.0174 0.0871,-0.004 0.002,0 0.0382,1.0174 z m -0.0406,-1.0174 -0.0143,0 0.0167,0 -0.002,0 z m 15.341,-0.42814 0.0215,1.0198 -10e-4,0 -0.47987,0.009 -0.48106,0.0108 -0.48105,0.009 -0.47987,0.009 -0.48106,0.0107 -0.47986,0.0108 -0.47987,0.0108 -0.47986,0.012 -0.47987,0.0107 -0.47867,0.012 -0.47987,0.012 -0.47986,0.0132 -0.47986,0.012 -0.47988,0.0132 -0.47867,0.012 -0.47867,0.0132 -0.47867,0.0145 -0.47867,0.0132 -0.47868,0.0145 -0.47867,0.0132 -0.47748,0.0145 -0.47867,0.0157 -0.47867,0.0145 -0.47748,0.0144 -0.47748,0.0157 -0.47747,0.0155 -0.47748,0.0157 -0.47748,0.0155 -0.47867,0.0168 -0.47629,0.0157 -0.47628,0.0168 -0.47747,0.0169 -0.0358,-1.0174 0.47749,-0.0168 0.47867,-0.0168 0.47629,-0.0156 0.47867,-0.0168 0.47748,-0.0157 0.47747,-0.0157 0.47748,-0.0157 0.47987,-0.0156 0.47748,-0.0145 0.47867,-0.0145 0.47867,-0.0157 0.47986,-0.0145 0.47868,-0.0132 0.47867,-0.0145 0.47867,-0.0132 0.47867,-0.0145 0.48106,-0.0132 0.47868,-0.012 0.47986,-0.0132 0.47986,-0.012 0.47987,-0.0133 0.47986,-0.012 0.48106,-0.012 0.47987,-0.0108 0.47986,-0.012 0.48225,-0.0108 0.47987,-0.0108 0.48105,-0.0108 0.47988,-0.012 0.48106,-0.009 0.48105,-0.0108 0.48226,-0.009 -10e-4,0 z m 0.82722,1.003 -0.80574,0.0167 -0.0215,-1.0198 0.80574,-0.0168 0.0263,1.0186 -0.005,10e-4 z m 0.005,-0.001 -0.005,0.001 -0.10982,0.002 0.11461,-0.004 z m 0.0394,-10e-4 -0.0394,10e-4 -0.031,-1.0174 0.0394,-10e-4 0.006,-0.001 0.025,1.0186 z m -0.031,-1.0174 0.006,-0.001 0.0848,-10e-4 -0.0908,0.002 z m 1.3906,0.99339 -1.3656,0.0253 -0.0191,-1.0198 1.3656,-0.0253 0.0204,1.0198 -10e-4,0 z m 0.001,0 0.009,0 -0.0107,0 0.001,0 z m 0.17308,-0.004 -0.17308,0.004 -0.0216,-1.0198 0.1731,-0.004 0.025,1.0186 -0.004,0.001 z m 0.004,-0.001 -0.004,0.001 -0.154,0.004 0.15758,-0.005 z m 0.0429,-10e-4 -0.0429,10e-4 -0.0286,-1.0174 0.043,-10e-4 0.006,-10e-4 0.0226,1.0186 z m -0.0286,-1.0174 0.006,-10e-4 0.0919,-0.001 -0.0979,0.002 z m 1.1722,0.99939 -1.1495,0.0193 -0.0167,-1.0198 1.1495,-0.0193 0.0167,1.0198 z m 0.47389,-0.008 -0.47389,0.008 -0.0167,-1.0198 0.4739,-0.008 10e-4,0 0.0156,1.0198 z m -0.0167,-1.0198 -0.007,0 0.008,0 -0.001,0 z m 0.73531,1.009 -0.71979,0.0108 -0.0144,-1.0198 0.71979,-0.0108 0.0143,1.0198 z m 0.90363,-0.0132 -0.90363,0.0132 -0.0143,-1.0198 0.90362,-0.0132 0.0156,1.0198 -0.001,0 z m 0.001,0 0.009,0 -0.0107,0 0.001,0 z m 0.29007,-0.005 -0.29007,0.005 -0.0167,-1.0198 0.29007,-0.005 10e-4,0 0.0156,1.0198 z m -0.0167,-1.0198 -0.007,0 0.008,0 -10e-4,0 z m 0.44048,1.0138 -0.42495,0.006 -0.0144,-1.0198 0.42496,-0.006 0.0144,1.0198 z m 3.149,-1.0583 0.0119,1.0198 -0.001,0 -0.0979,10e-4 -0.099,0.001 -0.10025,10e-4 -0.099,0 -0.0967,0.001 -0.099,10e-4 -0.099,10e-4 -0.0979,0.001 -0.099,10e-4 -0.099,0.001 -0.099,10e-4 -0.099,0.001 -0.0979,10e-4 -0.099,10e-4 -0.099,0.001 -0.099,10e-4 -0.099,0.001 -0.0979,10e-4 -0.099,10e-4 -0.099,0.001 -0.099,10e-4 -0.099,0.001 -0.0978,10e-4 -0.099,0.001 -0.099,10e-4 -0.099,10e-4 -0.0942,0.001 -0.099,0.002 -0.10266,10e-4 -0.099,10e-4 -0.0979,0.001 -0.0978,10e-4 -0.0143,-1.0198 0.10025,-0.001 0.0979,-10e-4 0.099,-10e-4 0.0955,-0.001 0.099,-0.002 0.10148,-10e-4 0.099,-10e-4 0.099,-0.001 0.099,-10e-4 0.0979,-0.001 0.099,-10e-4 0.099,-0.001 0.099,-10e-4 0.099,-10e-4 0.0978,-0.001 0.099,-10e-4 0.099,-0.001 0.099,-10e-4 0.099,-10e-4 0.0979,-0.001 0.099,-10e-4 0.099,-0.001 0.099,-10e-4 0.099,-0.001 0.0979,-10e-4 0.099,-10e-4 0.099,-0.001 0.10148,-10e-4 0.099,0 0.0955,-0.001 0.099,-10e-4 0.10025,-10e-4 -0.001,0 z m 1.0146,1.009 -1.0027,0.0107 -0.0119,-1.0198 1.0027,-0.0108 0.0119,1.0198 z m 0.19458,-0.002 -0.19458,0.002 -0.0119,-1.0198 0.19457,-0.002 0.002,0 0.009,1.0198 z m -0.0119,-1.0198 -0.005,0 0.007,0 -0.002,0 z m 1.208,1.0102 -1.1985,0.009 -0.007,-1.0198 1.1985,-0.009 0.007,1.0198 z m 3.4963,-1.0439 0,1.0198 0.002,0 -0.10982,0 -0.10862,10e-4 -0.10982,0 -0.10982,10e-4 -0.10863,0 -0.10624,0.001 -0.1134,10e-4 -0.10863,0 -0.10982,0.001 -0.10982,0 -0.10862,10e-4 -0.10982,0 -0.10625,0.001 -0.11219,10e-4 -0.10982,0 -0.10625,10e-4 -0.1122,0.001 -0.10983,0 -0.10981,10e-4 -0.10863,0 -0.10624,0.001 -0.10862,10e-4 -0.1134,10e-4 -0.10982,0 -0.10506,0.001 -0.11339,10e-4 -0.10862,0 -0.10625,0.001 -0.10863,10e-4 -0.1134,0.001 -0.10862,0 -0.10863,10e-4 -0.007,-1.0198 0.111,-0.001 0.10863,0 0.10625,-10e-4 0.10862,-0.001 0.11339,-10e-4 0.10863,0 0.10625,-0.001 0.11221,-10e-4 0.10981,0 0.10624,-10e-4 0.10862,-0.001 0.11341,-10e-4 0.10862,0 0.10982,-0.001 0.10982,0 0.10504,-10e-4 0.1134,-10e-4 0.10982,0 0.10506,-0.001 0.1134,-10e-4 0.10981,0 0.10863,-0.001 0.10982,0 0.10982,-10e-4 0.10862,0 0.10625,-0.001 0.11339,-10e-4 0.10863,0 0.10982,-10e-4 0.10981,0 0.10863,-0.001 0.10983,0 0.002,0 z m -0.002,0 0.002,0 -0.002,0 z m 0.10025,1.0198 -0.0978,0 0,-1.0198 0.0978,0 0.002,1.0198 -0.002,0 z m 0.002,0 -0.002,0 0.002,0 z m 1.2009,-0.005 -1.2009,0.005 -0.005,-1.0198 1.2008,-0.005 10e-4,0 0.004,1.0198 z m 3.6026,-1.0271 0,1.0198 -0.1122,0 -0.11341,0 -0.1122,0 -0.11341,0 -0.1122,0 -0.11222,0 -0.11101,0 -0.11221,0.001 -0.11579,0 -0.1122,0 -0.11221,0 -0.1134,0 -0.11221,0 -0.11102,0 -0.11219,10e-4 -0.11461,0 -0.11339,0 -0.10982,0 -0.1134,0.001 -0.11461,0 -0.1122,0 -0.111,0 -0.11222,10e-4 -0.11459,0 -0.11341,0 -0.10981,0 -0.11221,10e-4 -0.11579,0 -0.1122,0 -0.10983,0 -0.1134,0.001 -0.1134,0 -0.002,-1.0198 0.11101,0 0.11341,-10e-4 0.1146,0 0.1122,0 0.11101,0 0.11222,-10e-4 0.11458,0 0.11341,0 0.10982,0 0.11221,-0.001 0.11579,0 0.1122,0 0.10982,0 0.11341,-10e-4 0.11459,0 0.1134,0 0.10982,0 0.11221,-0.001 0.11578,0 0.11222,0 0.11339,0 0.11222,0 0.1122,0 0.11101,0 0.11222,-10e-4 0.11578,0 0.11221,0 0.11221,0 0.1134,0 0.11221,0 0.1134,0 0.11221,0 z m 3.6074,0.007 -0.005,1.0198 -0.11221,0 -0.11221,-10e-4 -0.11102,0 -0.11459,0 -0.11221,-0.001 -0.11101,0 -0.11459,0 -0.11221,-10e-4 -0.10981,0 -0.1134,0 -0.11461,0 -0.1122,-10e-4 -0.11101,0 -0.11221,0 -0.11461,0 -0.11339,-0.001 -0.10981,0 -0.11341,0 -0.1122,0 -0.11222,0 -0.11339,0 -0.1146,0 -0.11341,-10e-4 -0.10981,0 -0.1134,0 -0.11221,0 -0.1134,0 -0.11221,0 -0.1134,0 -0.11221,0 -0.1134,0 -0.11221,0 0,-1.0198 0.11221,0 0.1134,0 0.11221,0 0.1134,0 0.11221,0 0.1134,0 0.11221,0 0.1134,0 0.11459,0 0.11341,0.001 0.10982,0 0.11339,0 0.11222,0 0.1122,0 0.11341,0 0.11458,0 0.11341,10e-4 0.10982,0 0.11221,0 0.11578,0 0.11221,0.001 0.10981,0 0.11342,0 0.11459,0 0.11221,10e-4 0.10981,0 0.1158,0 0.1122,10e-4 0.10981,0 0.1158,0 0.11221,0.001 0.1122,0 z m 1.1973,1.0246 -1.202,-0.005 0.005,-1.0198 1.202,0.005 -0.002,1.0198 -0.002,0 z m 0.002,0 -0.002,0 0.002,0 z m 0.0967,0 -0.0967,0 0,-1.0198 0.0967,0 0.002,0 -0.002,1.0198 z m 0,-1.0198 0.002,0 -0.002,0 z m 3.5047,0.024 -0.007,1.0198 -0.10861,-10e-4 -0.10863,0 -0.1134,-10e-4 -0.10863,-0.001 -0.10623,-10e-4 -0.10982,0 -0.11221,-0.001 -0.10623,-10e-4 -0.10982,0 -0.11222,-0.001 -0.10982,-10e-4 -0.10503,-10e-4 -0.10983,0 -0.10982,-0.001 -0.10863,0 -0.1134,-10e-4 -0.10624,-0.001 -0.10862,0 -0.1134,-10e-4 -0.10625,-10e-4 -0.10861,0 -0.10983,-0.001 -0.10982,0 -0.10983,-10e-4 -0.10862,0 -0.11339,-0.001 -0.10625,-10e-4 -0.10863,0 -0.10981,-10e-4 -0.10982,0 -0.10863,-0.001 -0.10982,0 0.005,-1.0198 0.10982,0 0.10863,10e-4 0.10982,0 0.10982,10e-4 0.10863,0 0.11339,0.001 0.10625,10e-4 0.10862,0 0.10982,0.001 0.10982,0 0.10982,10e-4 0.10862,0 0.11341,0.001 0.10624,10e-4 0.10863,0 0.1134,10e-4 0.10623,0.001 0.10863,0 0.10982,10e-4 0.10981,0 0.11221,0.001 0.10983,10e-4 0.10504,10e-4 0.10981,0 0.11341,0.001 0.10505,10e-4 0.10982,0 0.1134,0.001 0.10862,10e-4 0.10624,0.001 0.10863,0 0.11101,10e-4 z m 1.1913,1.0295 -1.1985,-0.009 0.007,-1.0198 1.1985,0.009 0.002,0 -0.009,1.0198 z m 0.007,-1.0198 0.007,0 -0.005,0 -0.002,0 z m 0.18383,1.0222 -0.19338,-0.002 0.0119,-1.0198 0.19339,0.002 -0.0119,1.0198 z m 1.0027,0.0108 -1.0027,-0.0108 0.0119,-1.0198 1.0027,0.0107 -0.0119,1.0198 z m 3.1752,-0.98136 -0.0143,1.0198 -0.0979,-0.001 -0.0979,-10e-4 -0.099,-10e-4 -0.099,-0.001 -0.10266,-10e-4 -0.0978,-0.002 -0.0955,-10e-4 -0.099,-0.001 -0.0979,-10e-4 -0.099,-0.001 -0.099,-10e-4 -0.099,-0.001 -0.0979,-10e-4 -0.099,-10e-4 -0.099,-0.001 -0.099,-10e-4 -0.099,-0.001 -0.0979,-10e-4 -0.099,-10e-4 -0.099,-0.001 -0.099,-10e-4 -0.099,-0.001 -0.0955,-10e-4 -0.099,0 -0.10147,-0.001 -0.099,-10e-4 -0.099,-10e-4 -0.099,-0.001 -0.0978,-10e-4 -0.099,-0.001 -0.099,-10e-4 -0.099,-10e-4 0.0119,-1.0198 0.099,0.001 0.099,10e-4 0.099,10e-4 0.0979,0.001 0.099,10e-4 0.099,0.001 0.099,10e-4 0.0967,10e-4 0.099,0 0.10025,0.001 0.099,10e-4 0.099,0.001 0.099,10e-4 0.099,0.001 0.0979,10e-4 0.099,10e-4 0.099,0.001 0.099,10e-4 0.099,0.001 0.0979,10e-4 0.099,10e-4 0.099,0.001 0.099,10e-4 0.0979,0.001 0.099,10e-4 0.10267,0.001 0.0979,0.002 0.0955,0.001 0.099,10e-4 0.099,0.001 0.0978,10e-4 0.10025,10e-4 z m 0.41183,1.0259 -0.42615,-0.006 0.0144,-1.0198 0.42616,0.006 10e-4,0 -0.0156,1.0198 z m 0.0143,-1.0198 0.008,0 -0.007,0 -10e-4,0 z m 0.27336,1.0246 -0.28889,-0.005 0.0167,-1.0198 0.28887,0.005 -0.0156,1.0198 -0.001,0 z m 10e-4,0 -0.009,0 0.008,0 10e-4,0 z m 0.90363,0.0132 -0.90363,-0.0132 0.0144,-1.0198 0.90363,0.0132 -0.0143,1.0198 z m 0.721,0.0108 -0.721,-0.0108 0.0143,-1.0198 0.72099,0.0107 0.001,0 -0.0156,1.0198 z m 0.0143,-1.0198 0.007,0 -0.006,0 -10e-4,0 z m 0.45719,1.0283 -0.47271,-0.008 0.0167,-1.0198 0.4727,0.008 -0.0167,1.0198 z m 1.1495,0.0193 -1.1495,-0.0193 0.0167,-1.0198 1.1495,0.0193 0.005,0.001 -0.0215,1.0186 z m 0.0167,-1.0198 0.005,0.001 -0.10744,-0.002 0.10265,10e-4 z m 0.0226,1.0198 -0.0442,-0.001 0.0263,-1.0174 0.0442,10e-4 -0.0238,1.0186 -0.002,-10e-4 z m 0.002,10e-4 -0.002,-10e-4 0.18502,0.005 -0.18264,-0.004 z m 0.17189,0.004 -0.17189,-0.004 0.0215,-1.0198 0.1719,0.004 -0.0203,1.0198 -10e-4,0 z m 0.001,0 -0.009,0 0.008,0 0.001,0 z m 1.3656,0.0253 -1.3656,-0.0253 0.0191,-1.0198 1.3656,0.0253 0.005,0.001 -0.0238,1.0186 z m 0.0191,-1.0198 0.005,0.001 -0.10025,-0.002 0.0955,10e-4 z m 0.0167,1.0198 -0.0406,-0.001 0.0286,-1.0174 0.0406,0.001 -0.025,1.0186 -0.004,-0.001 z m 0.004,10e-4 -0.004,-10e-4 0.13011,0.004 -0.12654,-0.002 z m 0.80455,0.0168 -0.80455,-0.0168 0.0215,-1.0198 0.80455,0.0168 -0.0204,1.0198 -0.001,0 z m 15.365,-0.5917 -0.043,1.0174 0.004,0 -0.47748,-0.0167 -0.47629,-0.0168 -0.47747,-0.0157 -0.47748,-0.0167 -0.47748,-0.0157 -0.47748,-0.0156 -0.47867,-0.0157 -0.47629,-0.0156 -0.47867,-0.0145 -0.47867,-0.0145 -0.47748,-0.0156 -0.47748,-0.0145 -0.47867,-0.0132 -0.47867,-0.0145 -0.47986,-0.0132 -0.47867,-0.0144 -0.47749,-0.0133 -0.47986,-0.012 -0.47986,-0.0133 -0.47867,-0.012 -0.47988,-0.0132 -0.47986,-0.0121 -0.47867,-0.012 -0.48106,-0.0108 -0.47986,-0.012 -0.47867,-0.0108 -0.48106,-0.0108 -0.47987,-0.0108 -0.48105,-0.009 -0.48108,-0.009 -0.48105,-0.0108 -0.47986,-0.009 0.0191,-1.0198 0.48226,0.009 0.48105,0.0108 0.48107,0.009 0.48105,0.012 0.47986,0.0108 0.48107,0.0108 0.48105,0.0108 0.47988,0.012 0.48106,0.0108 0.48105,0.012 0.47987,0.012 0.47987,0.0132 0.47867,0.0121 0.47986,0.0132 0.47987,0.012 0.47986,0.0132 0.47867,0.0145 0.47987,0.0132 0.47868,0.0145 0.47867,0.0132 0.47986,0.0145 0.47748,0.0157 0.47868,0.0145 0.47866,0.0144 0.47867,0.0157 0.47867,0.0156 0.47748,0.0157 0.47748,0.0156 0.47747,0.0168 0.47749,0.0156 0.47867,0.0168 0.47748,0.0168 0.004,0 z m -0.004,0 0.004,0 0.0191,0.001 -0.0226,-0.001 z m 0.0466,1.021 -0.0859,-0.004 0.043,-1.0174 0.0859,0.004 -0.0394,1.0174 -0.004,0 z m 0.004,0 -0.004,0 -0.025,-10e-4 0.0287,10e-4 z m 1.1806,0.0433 -1.1806,-0.0433 0.0358,-1.0174 1.1806,0.0432 -0.0358,1.0175 z m 0.339,0.012 -0.339,-0.012 0.0358,-1.0174 0.339,0.012 0.005,0 -0.0406,1.0174 z m 0.0358,-1.0174 0.005,0 0.0155,0.001 -0.0204,-0.001 z m 0.11579,1.0247 -0.15636,-0.007 0.0454,-1.0174 0.15637,0.007 -0.0417,1.0175 -0.004,0 z m 0.004,0 -0.004,0 -0.0156,-10e-4 0.0191,10e-4 z m 1.0278,0.0385 -1.0278,-0.0385 0.0382,-1.0175 1.0278,0.0385 -0.0382,1.0174 z m 36.957,1.0932 -0.0811,1.015 0.002,0 -1.1388,-0.0866 -1.1412,-0.0842 -1.14,-0.083 -1.1424,-0.0818 -1.1424,-0.0806 -1.1448,-0.0794 -1.1448,-0.0795 -1.1448,-0.077 -1.1459,-0.0758 -1.1483,-0.0745 -1.1471,-0.0722 -1.1495,-0.0722 -1.1495,-0.0709 -1.1507,-0.0698 -1.1519,-0.0673 -1.1519,-0.0673 -1.1519,-0.0649 -1.1543,-0.0637 -1.1555,-0.0625 -1.1543,-0.0613 -1.1567,-0.0602 -1.1567,-0.0589 -1.1591,-0.0577 -1.1579,-0.0565 -1.1603,-0.0541 -1.1591,-0.0542 -1.1603,-0.0517 -1.1627,-0.0505 -1.1638,-0.0493 -1.1627,-0.0482 -1.165,-0.047 -1.1639,-0.0458 0.0382,-1.0174 1.1662,0.0458 1.165,0.047 1.165,0.0481 1.1638,0.0493 1.1627,0.0505 1.1626,0.0518 1.1615,0.0541 1.1603,0.0542 1.1603,0.0565 1.1591,0.0577 1.1591,0.059 1.1567,0.0602 1.1567,0.0613 1.1555,0.0625 1.1543,0.0637 1.1543,0.0649 1.1543,0.0673 1.1519,0.0673 1.1531,0.0697 1.1495,0.0709 1.1495,0.0722 1.1495,0.0721 1.1483,0.0746 1.1483,0.0758 1.1471,0.077 1.1448,0.0795 1.1448,0.0795 1.1448,0.0806 1.1424,0.0818 1.1424,0.0854 1.1412,0.0842 1.1412,0.0865 0.002,0 z m -0.002,0 0.002,0 0.0466,0.004 -0.049,-0.004 z m -0.004,1.021 -0.0752,-0.006 0.0811,-1.015 0.0752,0.006 -0.0788,1.015 -0.002,0 z m 0.002,0 -0.002,0 -0.0477,-0.004 0.0502,0.004 z m 26.412,1.353 -0.0931,1.015 -0.005,-0.001 -0.81529,-0.0842 -0.8153,-0.0842 -0.8153,-0.083 -0.81648,-0.0806 -0.8165,-0.0818 -0.81648,-0.0818 -0.81888,-0.0795 -0.81768,-0.0806 -0.81887,-0.0782 -0.81887,-0.0782 -0.82007,-0.0782 -0.82007,-0.077 -0.82007,-0.077 -0.82125,-0.0758 -0.82128,-0.0745 -0.82245,-0.0746 -0.82245,-0.0733 -0.82366,-0.0735 -0.82245,-0.0721 -0.82484,-0.0709 -0.82486,-0.0721 -0.82364,-0.0697 -0.82604,-0.0697 -0.82604,-0.0685 -0.82604,-0.0685 -0.82723,-0.0673 -0.82843,-0.0673 -0.82722,-0.0661 -0.82842,-0.0662 -0.82963,-0.0649 -0.82843,-0.0637 -0.8296,-0.0637 0.0764,-1.015 0.82961,0.0637 0.83082,0.0637 0.82962,0.0649 0.82842,0.0662 0.82962,0.0662 0.82842,0.0673 0.82724,0.0673 0.82841,0.0685 0.82605,0.0685 0.82604,0.0697 0.82603,0.0697 0.82485,0.0722 0.82484,0.0709 0.82485,0.0721 0.82365,0.0734 0.82484,0.0734 0.82246,0.0746 0.82126,0.0745 0.82364,0.0758 0.82008,0.077 0.82246,0.077 0.82006,0.0782 0.81888,0.0782 0.82126,0.0782 0.81767,0.0806 0.81888,0.0795 0.81888,0.0818 0.81649,0.0818 0.81648,0.083 0.81769,0.083 0.81529,0.0842 0.81529,0.0842 -0.005,-0.001 z m -0.0931,1.015 -0.005,-0.001 0.068,0.007 -0.0633,-0.006 z m -0.005,5.9543 0.10265,-1.0126 -0.005,-10e-4 0.4142,0.0228 0.38796,-0.008 0.36168,-0.0372 0.33424,-0.0649 0.30917,-0.089 0.28291,-0.11064 0.25664,-0.13109 0.23039,-0.14673 0.20412,-0.16235 0.18144,-0.17559 0.15399,-0.18641 0.12892,-0.19603 0.10505,-0.20325 0.0799,-0.21047 0.0537,-0.21286 0.0298,-0.21889 0.006,-0.21887 -0.0215,-0.22009 -0.0466,-0.22009 -0.074,-0.22009 -0.10026,-0.21647 -0.1313,-0.21166 -0.16114,-0.20926 -0.19339,-0.19965 -0.22799,-0.19242 -0.26382,-0.18281 -0.29961,-0.16716 -0.33901,-0.15274 -0.3784,-0.13349 -0.4178,-0.11305 -0.45837,-0.0902 -0.50017,-0.0613 0.0931,-1.015 0.56461,0.0709 0.52763,0.10223 0.4894,0.13229 0.45241,0.15995 0.4178,0.18882 0.3784,0.21287 0.34259,0.23571 0.30678,0.25738 0.26739,0.27901 0.22799,0.29345 0.19099,0.31028 0.15041,0.3223 0.10982,0.32834 0.0728,0.33553 0.031,0.34036 -0.008,0.33674 -0.0442,0.33193 -0.0847,0.32832 -0.12057,0.3163 -0.15518,0.30427 -0.19098,0.28743 -0.22323,0.2706 -0.25545,0.25015 -0.28529,0.2273 -0.31633,0.20204 -0.34498,0.17439 -0.37123,0.14673 -0.39751,0.11305 -0.42257,0.0818 -0.44524,0.047 -0.46673,0.0107 -0.49062,-0.0277 -0.005,-0.001 z m 0.005,10e-4 -0.005,-10e-4 0.0799,0.008 -0.0752,-0.007 z m -26.328,-2.3692 0.0955,-1.015 -0.009,0 0.82963,0.0637 0.83081,0.0637 0.82962,0.0649 0.82843,0.0662 0.8296,0.0661 0.82844,0.0673 0.82723,0.0673 0.82843,0.0685 0.82603,0.0685 0.82723,0.0697 0.82485,0.0709 0.82484,0.071 0.82603,0.0721 0.82366,0.0722 0.82364,0.0734 0.82486,0.0733 0.82245,0.0746 0.82125,0.0746 0.82366,0.0758 0.82007,0.077 0.82245,0.077 0.82007,0.0782 0.81887,0.0782 0.82127,0.0795 0.81769,0.0795 0.81887,0.0806 0.81888,0.0806 0.81648,0.0818 0.81648,0.083 0.81768,0.083 0.8153,0.0842 0.8153,0.0842 -0.10266,1.0126 -0.8153,-0.0842 -0.81529,-0.0842 -0.8153,-0.083 -0.81649,-0.0806 -0.81647,-0.0818 -0.8165,-0.0806 -0.81886,-0.0806 -0.81769,-0.0795 -0.81887,-0.0795 -0.81889,-0.0782 -0.82007,-0.0782 -0.82006,-0.077 -0.82007,-0.077 -0.82126,-0.0758 -0.82126,-0.0746 -0.82246,-0.0746 -0.82246,-0.0733 -0.82365,-0.0733 -0.82365,-0.0721 -0.82364,-0.0721 -0.82485,-0.071 -0.82484,-0.0709 -0.82485,-0.0697 -0.82603,-0.0685 -0.82604,-0.0685 -0.82724,-0.0673 -0.82841,-0.0673 -0.82724,-0.0662 -0.82843,-0.0662 -0.82962,-0.0649 -0.82841,-0.0637 -0.82963,-0.0637 -0.009,0 z m 0.009,0 -0.009,0 -0.037,-0.004 0.0466,0.004 z m 0.0107,-1.0222 0.0752,0.007 -0.0955,1.015 -0.0752,-0.007 0.0848,-1.015 0.0107,0 z m -0.0107,0 0.0107,0 0.037,0.004 -0.0477,-0.004 z m -0.22681,-0.0168 0.22681,0.0168 -0.074,1.015 -0.22679,-0.0168 -10e-4,0 0.0752,-1.015 z m -0.074,1.015 -10e-4,0 -0.0573,-0.005 0.0585,0.005 z m -18.239,-1.2123 0.0573,-1.0174 0.57298,0.0325 0.57536,0.0337 0.57297,0.0337 0.57298,0.0337 0.57177,0.0337 0.57417,0.0348 0.57178,0.0348 0.57178,0.0348 0.57179,0.036 0.57178,0.036 0.57297,0.036 0.57058,0.036 0.57179,0.0372 0.57058,0.0372 0.57059,0.0372 0.57058,0.0372 0.5706,0.0385 0.57058,0.0385 0.57058,0.0385 0.5694,0.0397 0.56938,0.0397 0.5694,0.0397 0.56821,0.0397 0.56938,0.0397 0.5694,0.0409 0.56939,0.042 0.5682,0.042 0.567,0.0408 0.56821,0.042 0.567,0.042 0.5682,0.042 0.567,0.0433 -0.0764,1.015 -0.567,-0.0432 -0.56582,-0.042 -0.56701,-0.042 -0.5682,-0.042 -0.567,-0.0408 -0.5682,-0.042 -0.56701,-0.0397 -0.5694,-0.0409 -0.567,-0.0397 -0.56819,-0.0397 -0.5694,-0.0397 -0.56939,-0.0397 -0.5694,-0.0397 -0.5682,-0.0385 -0.57057,-0.0385 -0.5706,-0.0385 -0.5682,-0.0372 -0.57057,-0.0372 -0.5706,-0.0372 -0.57179,-0.0372 -0.57058,-0.036 -0.57058,-0.036 -0.57178,-0.036 -0.57179,-0.036 -0.57178,-0.0349 -0.57177,-0.0348 -0.57178,-0.0348 -0.57179,-0.0337 -0.57296,-0.0337 -0.57298,-0.0337 -0.57298,-0.0337 -0.57297,-0.0325 z m -0.3975,-1.0439 0.4548,0.0265 -0.0573,1.0174 -0.45479,-0.0265 0.0561,-1.0174 10e-4,0 z m -10e-4,0 10e-4,0 0.0191,10e-4 -0.0204,-10e-4 z m -0.17548,-0.009 0.17548,0.009 -0.0549,1.0174 -0.17548,-0.009 -0.001,0 0.0561,-1.0174 z m -0.0548,1.0174 -10e-4,0 -0.0454,-0.002 0.0466,0.002 z m -9.1879,-0.47626 0.0454,-1.0174 10e-4,0 0.28769,0.0132 0.28887,0.0145 0.28768,0.0133 0.28887,0.0145 0.28649,0.0145 0.28768,0.0132 0.28887,0.0145 0.2877,0.0145 0.28767,0.0145 0.28768,0.0145 0.28769,0.0144 0.28767,0.0145 0.28769,0.0145 0.28648,0.0145 0.28887,0.0145 0.28769,0.0157 0.28648,0.0145 0.28768,0.0156 0.28768,0.0145 0.28649,0.0156 0.28768,0.0145 0.28769,0.0156 0.28647,0.0157 0.2877,0.0155 0.28648,0.0157 0.28648,0.0156 0.2865,0.0157 0.28767,0.0157 0.28649,0.0156 0.28768,0.0157 0.28649,0.0168 0.28648,0.0156 -0.0573,1.0174 -0.28649,-0.0157 -0.28648,-0.0167 -0.2853,-0.0156 -0.28649,-0.0156 -0.28767,-0.0156 -0.2865,-0.0157 -0.28648,-0.0155 -0.28649,-0.0157 -0.28769,-0.0156 -0.28648,-0.0156 -0.28528,-0.0157 -0.28769,-0.0145 -0.28648,-0.0156 -0.28768,-0.0145 -0.28769,-0.0157 -0.28648,-0.0145 -0.28768,-0.0157 -0.28649,-0.0144 -0.28649,-0.0145 -0.28767,-0.0145 -0.2877,-0.0145 -0.28768,-0.0145 -0.28768,-0.0145 -0.28768,-0.0145 -0.28767,-0.0145 -0.2865,-0.0145 -0.28767,-0.0132 -0.28888,-0.0145 -0.28649,-0.0145 -0.28767,-0.0133 -0.28888,-0.0145 -0.28769,-0.0132 10e-4,0 z m 0.0454,-1.0174 10e-4,0 0.0167,0.001 -0.0179,-0.001 z m -0.29962,-0.0133 0.29962,0.0133 -0.0454,1.0174 -0.2996,-0.0132 -10e-4,0 0.0466,-1.0174 z m -0.0454,1.0174 -10e-4,0 -0.0216,-10e-4 0.0226,10e-4 z m -6.255,-0.273 0,-1.0198 0.0204,0.001 0.19696,0.008 0.19577,0.007 0.19815,0.008 0.19576,0.008 0.19577,0.008 0.19697,0.007 0.19695,0.008 0.19696,0.008 0.19576,0.008 0.19696,0.008 0.19577,0.008 0.19577,0.008 0.19696,0.008 0.19577,0.008 0.19696,0.008 0.19576,0.008 0.19696,0.008 0.19697,0.009 0.19456,0.008 0.19577,0.008 0.19815,0.008 0.19577,0.009 0.19457,0.008 0.19696,0.008 0.19696,0.009 0.19457,0.008 0.19697,0.008 0.19577,0.009 0.19576,0.008 0.19576,0.009 0.19577,0.008 0.19695,0.009 -0.0477,1.0174 -0.19457,-0.009 -0.19577,-0.008 -0.19576,-0.009 -0.19578,-0.008 -0.19576,-0.009 -0.19457,-0.008 -0.19696,-0.008 -0.19696,-0.009 -0.19457,-0.008 -0.19696,-0.008 -0.19577,-0.009 -0.19576,-0.008 -0.19578,-0.008 -0.19696,-0.008 -0.19695,-0.009 -0.19457,-0.008 -0.19577,-0.008 -0.19696,-0.008 -0.19576,-0.008 -0.19697,-0.008 -0.19577,-0.008 -0.19576,-0.008 -0.19696,-0.008 -0.19577,-0.008 -0.19696,-0.008 -0.19456,-0.008 -0.19696,-0.007 -0.19816,-0.008 -0.19577,-0.008 -0.19576,-0.008 -0.19577,-0.007 -0.19696,-0.008 0.0204,10e-4 z m 0,-1.0198 0.0204,0.001 -0.0298,-0.001 0.009,0 z m -0.009,0 0.009,0 0,1.0198 -0.009,0 -0.0204,-0.001 0.0204,-1.0186 z m 0,1.0198 -0.0204,-0.001 0.0298,0.001 -0.009,0 z m -1.5721,-1.0824 1.5924,0.0637 -0.0406,1.0174 -1.5924,-0.0637 0.0394,-1.0174 10e-4,0 z m -10e-4,0 10e-4,0 0.0204,10e-4 -0.0216,-10e-4 z m -0.76396,-0.0288 0.76396,0.0288 -0.0382,1.0174 -0.76396,-0.0288 0.0382,-1.0174 z m -1.128,-0.0432 1.128,0.0432 -0.0382,1.0174 -1.128,-0.0433 -0.005,0 0.043,-1.0174 z m -0.0382,1.0174 -0.005,0 -0.0216,-0.001 0.0263,0.001 z m -0.008,-1.0198 0.0513,0.002 -0.0478,1.0174 -0.0513,-0.002 0.0417,-1.0174 0.006,0 z m -0.006,0 0.006,0 0.0216,0.001 -0.0275,-0.001 z m -1.1806,-0.0433 1.1806,0.0433 -0.0358,1.0174 -1.1806,-0.0432 0.0323,-1.0174 0.004,0 z m -0.004,0 0.0144,0 -0.0107,0 -0.004,0 z m -0.0871,-0.002 0.0871,0.002 -0.0287,1.0174 -0.0871,-0.002 -0.004,0 0.0323,-1.0174 z m -0.0287,1.0174 -0.0179,0 0.0144,0 0.004,0 z m -1.3895,-1.0668 1.4217,0.0493 -0.0358,1.0174 -1.4217,-0.0493 -10e-4,0 0.037,-1.0174 z m -0.0358,1.0174 -0.0119,0 0.0107,0 10e-4,0 z m -0.14921,-1.0247 0.18622,0.007 -0.0382,1.0174 -0.18621,-0.007 0.0357,-1.0175 0.002,0 z m -0.002,0 0.0144,0 -0.0119,0 -0.002,0 z m -0.66847,-0.0217 0.66847,0.0217 -0.0335,1.0175 -0.66848,-0.0217 0.0323,-1.0174 10e-4,0 z m -0.94064,-0.03 0.93945,0.03 -0.0311,1.0174 -0.93943,-0.03 0.031,-1.0174 z m -1.4277,-0.0458 1.4277,0.0458 -0.031,1.0174 -1.4277,-0.0458 0.0286,-1.0174 0.002,0 z m -0.002,0 0.0144,0 -0.0119,0 -0.002,0 z m -0.18145,-0.005 0.18145,0.005 -0.0263,1.0174 -0.18145,-0.005 -0.002,0 0.0286,-1.0174 z m -0.0263,1.0174 -0.0179,0 0.0156,0 0.002,0 z m -1.584,-1.0668 1.6127,0.0493 -0.031,1.0174 -1.6127,-0.0493 0.0298,-1.0174 0.001,0 z m -10e-4,0 10e-4,0 0.0263,0.001 -0.0275,-0.001 z m -0.57536,-0.0168 0.57536,0.0168 -0.0286,1.0174 -0.57535,-0.0169 0.0286,-1.0174 z m -4.2627,0.9056 0.0335,-1.0174 -0.005,0 0.1325,0.004 0.13251,0.002 0.13368,0.004 0.13249,0.004 0.13132,0.004 0.1313,0.004 0.1325,0.002 0.1337,0.004 0.13249,0.004 0.13251,0.004 0.1313,0.004 0.13131,0.002 0.1337,0.004 0.13249,0.004 0.1325,0.004 0.1325,0.004 0.13131,0.004 0.1325,0.004 0.1325,0.004 0.1325,0.004 0.1313,0.004 0.1325,0.004 0.13251,0.004 0.1325,0.004 0.1313,0.004 0.1325,0.004 0.1325,0.004 0.1313,0.004 0.13251,0.004 0.1325,0.004 0.13131,0.004 0.13368,0.004 -0.0286,1.0174 -0.13131,-0.004 -0.13131,-0.004 -0.1325,-0.004 -0.13249,-0.004 -0.13131,-0.004 -0.1325,-0.004 -0.1325,-0.004 -0.13131,-0.004 -0.1325,-0.004 -0.1325,-0.004 -0.13249,-0.004 -0.13131,-0.004 -0.13251,-0.004 -0.13249,-0.004 -0.1325,-0.004 -0.13131,-0.004 -0.13249,-0.004 -0.13251,-0.004 -0.1325,-0.004 -0.1313,-0.004 -0.13132,-0.002 -0.13368,-0.004 -0.1325,-0.004 -0.13251,-0.004 -0.1313,-0.004 -0.13251,-0.002 -0.13368,-0.004 -0.1313,-0.004 -0.13251,-0.004 -0.13131,-0.004 -0.13249,-0.002 -0.13251,-0.004 -0.005,0 z m 0.005,0 -0.0179,0 0.0131,0 0.005,0 z m -0.007,-1.0186 0.0358,10e-4 -0.0335,1.0174 -0.0357,-10e-4 0.0275,-1.0174 0.006,0 z m -0.006,0 0.0179,0 -0.0119,0 -0.006,0 z m -0.48106,-0.0108 0.48106,0.0108 -0.0216,1.0174 -0.48106,-0.0108 -10e-4,0 0.0226,-1.0174 z m -1.1352,-0.0265 1.1364,0.0265 -0.0238,1.0174 -1.1364,-0.0265 -0.0107,0 0.0347,-1.0174 z m -0.0238,1.0174 -0.0226,0 0.0119,0 0.0107,0 z m -0.0191,-1.0198 0.0536,0.002 -0.0454,1.0174 -0.0537,-0.002 0.0335,-1.0186 0.0119,0.001 z m -0.0119,-0.001 0.0119,0.001 -0.0406,-0.002 0.0286,10e-4 z m -1.1901,-0.0253 1.1901,0.0253 -0.0215,1.0198 -1.1901,-0.0253 0.0215,-1.0198 z m -0.92749,-0.0193 0.92749,0.0193 -0.0215,1.0198 -0.9275,-0.0193 -10e-4,-0.001 0.0226,-1.0186 z m -0.0216,1.0198 -10e-4,-0.001 0.5479,0.012 -0.54671,-0.0107 z m -0.23993,-1.0246 0.26261,0.006 -0.0238,1.0174 -0.26262,-0.006 0.0215,-1.0186 0.002,10e-4 z m -0.002,-10e-4 0.002,10e-4 -0.33066,-0.007 0.32827,0.006 z m -0.80574,-0.0156 0.80574,0.0156 -0.0191,1.0198 -0.80575,-0.0157 0.0191,-1.0198 z m -0.38557,-0.007 0.38557,0.007 -0.0191,1.0198 -0.38556,-0.007 0.0191,-1.0198 z m -1.1925,-0.0228 1.1925,0.0228 -0.0191,1.0198 -1.1925,-0.0228 -0.005,-0.001 0.0238,-1.0186 z m -0.0191,1.0198 -0.005,-0.001 0.12534,0.004 -0.12057,-0.002 z m -0.0191,-1.0198 0.0429,0.001 -0.0286,1.0174 -0.043,-0.001 0.0226,-1.0186 0.006,10e-4 z m -0.006,-10e-4 0.006,10e-4 -0.0979,-0.002 0.0919,0.001 z m -1.1495,-0.0193 1.1495,0.0193 -0.0167,1.0198 -1.1495,-0.0193 0.0167,-1.0198 z m -0.0167,1.0198 z m -0.45718,-1.0282 0.47388,0.008 -0.0167,1.0198 -0.47391,-0.008 0.0131,-1.0198 0.004,0 z m -0.004,0 0.008,0 -0.005,0 -0.004,0 z m -0.34139,-0.004 0.34139,0.004 -0.009,1.0198 -0.34139,-0.004 -0.004,0 0.0131,-1.0198 z m -0.009,1.0198 -0.0107,0 0.007,0 0.004,0 z m -1.103,-1.0379 1.1161,0.0181 -0.0167,1.0198 -1.1161,-0.0181 0.0156,-1.0198 10e-4,0 z m -0.001,0 0.0107,0 -0.009,0 -10e-4,0 z m -0.16712,-0.002 0.16712,0.002 -0.0143,1.0198 -0.16711,-0.002 -10e-4,0 0.0155,-1.0198 z m -0.0143,1.0198 -0.008,0 0.007,0 10e-4,0 z m -0.27335,-1.0246 0.28886,0.005 -0.0167,1.0198 -0.28888,-0.005 0.0156,-1.0198 10e-4,0 z m -10e-4,0 0.007,0 -0.006,0 -10e-4,0 z m -2.6369,0.98617 0.0119,-1.0198 0.0836,0.001 0.0777,10e-4 0.0823,0 0.0859,10e-4 0.0823,0.001 0.0811,10e-4 0.0788,0.001 0.0823,0 0.0848,10e-4 0.0823,0.001 0.0823,10e-4 0.0811,10e-4 0.0789,0.001 0.0823,0 0.0848,10e-4 0.0823,0.001 0.0823,10e-4 0.0811,10e-4 0.0823,0.001 0.0823,10e-4 0.0811,0.001 0.0823,10e-4 0.0823,0.001 0.0777,10e-4 0.0823,0 0.0859,10e-4 0.0811,0.001 0.0823,10e-4 0.0823,0.001 0.0823,10e-4 0.0811,10e-4 0.0823,0.001 -0.0144,1.0198 -0.0823,-10e-4 -0.0811,-0.001 -0.0823,-10e-4 -0.0823,-10e-4 -0.0823,-0.001 -0.0811,-10e-4 -0.0788,-0.001 -0.0823,0 -0.0848,-10e-4 -0.0823,-10e-4 -0.0823,-0.001 -0.0811,-10e-4 -0.0823,-0.001 -0.0823,-10e-4 -0.0811,-0.001 -0.0823,-10e-4 -0.0823,-10e-4 -0.0777,-0.001 -0.0823,0 -0.0859,-10e-4 -0.0811,-0.001 -0.0823,-10e-4 -0.0823,-10e-4 -0.0777,-0.001 -0.0823,0 -0.0859,-10e-4 -0.0811,-0.001 -0.0823,-10e-4 -0.0788,-0.001 -0.0823,0 -0.0848,-10e-4 -0.0811,-10e-4 z m -0.87141,-1.0295 0.88334,0.009 -0.0119,1.0198 -0.88334,-0.009 0.0119,-1.0198 z m -0.2232,-0.002 0.2232,0.002 -0.0119,1.0198 -0.22322,-0.002 0.0107,-1.0198 10e-4,0 z m -10e-4,0 0.008,0 -0.007,0 -10e-4,0 z m -1.054,-0.009 1.054,0.009 -0.009,1.0198 -1.054,-0.009 0.009,-1.0198 z m -1.1997,-0.012 1.1997,0.012 -0.009,1.0198 -1.1997,-0.012 0.008,-1.0198 10e-4,0 z m -10e-4,0 0.006,0 -0.005,0 -10e-4,0 z m -0.76396,-0.006 0.76396,0.006 -0.007,1.0198 -0.76397,-0.006 0.006,-1.0198 0.001,0 z m -10e-4,0 0.004,0 -0.002,0 -10e-4,0 z m -0.4345,-0.002 0.4345,0.002 -0.005,1.0198 -0.4345,-0.002 -0.001,0 0.006,-1.0198 z m -0.005,1.0198 -0.005,0 0.004,0 0.001,0 z m -0.6625,-1.0247 0.66847,0.005 -0.007,1.0198 -0.66848,-0.005 0.006,-1.0198 0.001,0 z m -10e-4,0 0.005,0 -0.004,0 -10e-4,0 z m -1.1149,-0.006 1.1149,0.006 -0.005,1.0198 -1.1149,-0.006 0.005,-1.0198 z m -0.61476,-0.002 0.61476,0.002 -0.005,1.0198 -0.61475,-0.002 0.005,-1.0198 z m -0.005,1.0198 z m -1.1973,-1.0259 1.2021,0.006 -0.005,1.0198 -1.202,-0.006 0.004,-1.0198 10e-4,0 z m -0.001,0 0.004,0 -0.002,0 -10e-4,0 z m -3.6062,1.0138 0,-1.0198 0.11221,0 0.1134,0 0.11221,0 0.1134,0 0.11221,0 0.1134,0 0.11221,0 0.1134,0 0.1146,0 0.1122,10e-4 0.11101,0 0.11222,0 0.11339,0 0.11222,0 0.1122,0 0.11579,0 0.11221,0.001 0.10982,0 0.1134,0 0.11221,0 0.11459,0 0.1134,10e-4 0.10982,0 0.11222,0 0.11339,0 0.1146,0 0.1122,0.001 0.11103,0 0.1122,0 0.1146,0 0.11339,10e-4 0.11102,0 -0.002,1.0198 -0.1134,0 -0.1134,-0.001 -0.10982,0 -0.11221,0 -0.11579,0 -0.1122,-10e-4 -0.10983,0 -0.1134,0 -0.1122,0 -0.1146,0 -0.1134,-0.001 -0.10983,0 -0.1122,0 -0.11341,0 -0.11458,0 -0.11222,-10e-4 -0.11101,0 -0.11219,0 -0.11222,0 -0.11339,0 -0.11222,0 -0.11579,0 -0.11221,-10e-4 -0.10981,0 -0.1134,0 -0.11221,0 -0.1134,0 -0.11221,0 -0.1134,0 -0.1122,0 -0.11341,0 -0.1122,0 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path345" + d="m 482.37,265.18 -22.74,11.455 -0.45122,-0.91161 22.74,-11.455 0.45122,0 0,0.91162 z m -0.45122,-0.91162 0.22561,-0.11305 0.22561,0.11305 -0.45122,0 z m 22.74,12.367 -22.74,-11.455 0.45122,-0.91161 22.74,11.455 0,0.9116 -0.45122,0 z m 0.45122,-0.9116 0.90483,0.45581 -0.90483,0.45579 0,-0.9116 z m -23.191,11.455 22.74,-11.455 0.45122,0.9116 -22.74,11.455 -0.45122,0 0,-0.9116 z m 0.45122,0.9116 -0.22561,0.11306 -0.22561,-0.11306 0.45122,0 z m -22.74,-12.367 22.74,11.455 -0.45122,0.91161 -22.74,-11.455 0,-0.91161 0.45122,0 z m -0.45122,0.91161 -0.90483,-0.4558 0.90483,-0.45581 0,0.91161 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path347" + d="m 482.14,269.15 c 5.651,0 10.234,3.0776 10.234,6.8731 0,3.7968 -4.5826,6.8732 -10.234,6.8732 -5.651,0 -10.232,-3.0764 -10.232,-6.8732 0,-3.7956 4.5814,-6.8731 10.232,-6.8731 z" + inkscape:connector-curvature="0" + style="fill:#0c4076" /> + <path + id="path349" + d="m 492.88,276.02 -1.0122,0 0,0 -0.0107,-0.31509 -0.0358,-0.31028 -0.0585,-0.30668 -0.08,-0.30427 -0.10266,-0.29827 -0.12414,-0.29343 -0.14562,-0.28985 -0.16832,-0.28382 -0.18742,-0.28022 -0.20769,-0.2718 -0.228,-0.26698 -0.24829,-0.25978 -0.2662,-0.25135 -0.28528,-0.24413 -0.30321,-0.23573 -0.3199,-0.22369 -0.33782,-0.21647 -0.35214,-0.20565 -0.36885,-0.19483 -0.38318,-0.18281 -0.39751,-0.17078 -0.41063,-0.15875 -0.42495,-0.14552 -0.43451,-0.1323 -0.44763,-0.11784 -0.45838,-0.10465 -0.46912,-0.0902 -0.47628,-0.0733 -0.48823,-0.0589 -0.49538,-0.0409 -0.50135,-0.0277 -0.50971,-0.007 0,-1.0198 0.54313,0.009 0.53717,0.0277 0.52881,0.0458 0.52164,0.0613 0.51209,0.0806 0.50255,0.095 0.4918,0.11184 0.48345,0.12749 0.47031,0.14431 0.45839,0.15756 0.44643,0.17077 0.43331,0.1876 0.419,0.19965 0.40465,0.21407 0.39034,0.2273 0.37363,0.23812 0.35811,0.25256 0.33901,0.26459 0.32349,0.27541 0.30438,0.28743 0.28412,0.29825 0.2638,0.30788 0.24351,0.31991 0.22322,0.33072 0.19935,0.33915 0.17667,0.34997 0.15041,0.35839 0.12653,0.36561 0.099,0.37402 0.0729,0.38125 0.0429,0.38724 0.0156,0.39206 0,0 z m -10.74,7.3831 0,-1.0198 0.50971,-0.007 0.50135,-0.0265 0.49538,-0.042 0.48823,-0.0589 0.47628,-0.0733 0.46912,-0.0902 0.45838,-0.10464 0.44764,-0.11785 0.4345,-0.13109 0.42495,-0.14672 0.41063,-0.15876 0.39751,-0.17077 0.38318,-0.18281 0.36885,-0.19483 0.35214,-0.20444 0.33782,-0.21649 0.3211,-0.22609 0.30201,-0.23452 0.28529,-0.24294 0.26619,-0.25134 0.2483,-0.25978 0.2268,-0.26698 0.20889,-0.273 0.18741,-0.27902 0.16832,-0.28502 0.14562,-0.28865 0.12414,-0.29464 0.10266,-0.29826 0.08,-0.30427 0.0585,-0.30668 0.0358,-0.31028 0.0107,-0.3151 1.0122,0 -0.0156,0.39207 -0.043,0.38725 -0.0728,0.38124 -0.099,0.37403 -0.12654,0.36561 -0.15041,0.35959 -0.17666,0.34876 -0.19935,0.34035 -0.22322,0.32953 -0.24232,0.3187 -0.265,0.31029 -0.28409,0.29824 -0.3044,0.28744 -0.32349,0.27661 -0.34021,0.26339 -0.35691,0.25014 -0.37363,0.24054 -0.39034,0.2261 -0.40465,0.21406 -0.419,0.19963 -0.43331,0.18763 -0.44643,0.17077 -0.45839,0.15876 -0.47031,0.14311 -0.48346,0.12748 -0.49179,0.11185 -0.50254,0.095 -0.5121,0.0806 -0.52165,0.0613 -0.52881,0.047 -0.53716,0.0265 -0.54313,0.009 z m -10.738,-7.3831 1.0123,0 0.0107,0.3151 0.0358,0.31028 0.0585,0.30667 0.0799,0.30428 0.10266,0.29825 0.12414,0.29466 0.14562,0.28863 0.16832,0.28503 0.18621,0.27901 0.2089,0.27181 0.228,0.26818 0.24828,0.25977 0.2662,0.25135 0.2841,0.24294 0.30319,0.23452 0.32111,0.2261 0.33662,0.21647 0.35215,0.20445 0.36885,0.19483 0.38317,0.18281 0.3975,0.17077 0.41064,0.15875 0.42495,0.14672 0.43451,0.13109 0.44763,0.11786 0.45839,0.10463 0.46911,0.0902 0.47629,0.0734 0.48821,0.059 0.4954,0.042 0.50134,0.0265 0.50971,0.007 0,1.0198 -0.54313,-0.009 -0.53716,-0.0265 -0.52882,-0.047 -0.52164,-0.0613 -0.51209,-0.0806 -0.50254,-0.095 -0.49181,-0.11185 -0.48344,-0.12748 -0.47032,-0.14311 -0.45838,-0.15876 -0.44643,-0.17077 -0.43332,-0.18762 -0.41899,-0.19963 -0.40466,-0.21408 -0.39033,-0.22609 -0.37245,-0.24053 -0.35691,-0.25015 -0.34139,-0.26338 -0.3223,-0.27662 -0.3044,-0.28744 -0.28409,-0.29824 -0.26381,-0.30909 -0.24471,-0.3199 -0.22203,-0.32953 -0.19934,-0.34034 -0.17667,-0.34877 -0.15041,-0.35959 -0.12653,-0.36561 -0.099,-0.37402 -0.0728,-0.38125 -0.043,-0.38724 -0.0156,-0.39207 z m 10.738,-7.3831 0,1.0198 -0.50971,0.007 -0.50134,0.0277 -0.49539,0.0409 -0.48822,0.059 -0.47629,0.0733 -0.46911,0.0902 -0.4584,0.10465 -0.44762,0.11785 -0.43451,0.1323 -0.42495,0.14551 -0.41063,0.15876 -0.39751,0.17077 -0.38317,0.1828 -0.36885,0.19483 -0.35215,0.20566 -0.33662,0.21647 -0.3211,0.22489 -0.3032,0.23453 -0.2841,0.24413 -0.2662,0.25135 -0.24829,0.25978 -0.22799,0.26699 -0.2089,0.2718 -0.18621,0.28021 -0.16832,0.28382 -0.14562,0.28985 -0.12415,0.29344 -0.10265,0.29826 -0.08,0.30427 -0.0585,0.30668 -0.0357,0.31028 -0.0107,0.31509 -1.0123,0 0.0156,-0.39207 0.0429,-0.38724 0.0728,-0.38125 0.099,-0.37402 0.12654,-0.36561 0.15041,-0.35838 0.17667,-0.34998 0.19934,-0.33914 0.22202,-0.33073 0.24472,-0.3199 0.2638,-0.30788 0.2841,-0.29826 0.30439,-0.28743 0.3223,-0.2754 0.3414,-0.2658 0.35692,-0.25134 0.37243,-0.23814 0.39034,-0.22729 0.40465,-0.21408 0.41899,-0.19963 0.43332,-0.18762 0.44643,-0.17077 0.45839,-0.15755 0.47031,-0.14432 0.48346,-0.12748 0.49178,-0.11185 0.50255,-0.095 0.5121,-0.0806 0.52164,-0.0613 0.52882,-0.0458 0.53715,-0.0277 0.54314,-0.009 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path351" + d="m 482.14,211.65 c 4.2698,0 7.7316,3.4877 7.7316,7.7896 0,4.3019 -3.4617,7.7896 -7.7316,7.7896 -4.2698,0 -7.7304,-3.4877 -7.7304,-7.7896 0,-4.3019 3.4605,-7.7896 7.7304,-7.7896 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path353" + d="m 490.38,219.44 -1.0122,0 0,0 -0.008,-0.37523 -0.0275,-0.36922 -0.0478,-0.3644 -0.0633,-0.35839 -0.08,-0.35358 -0.0979,-0.34396 -0.1134,-0.33794 -0.12892,-0.33073 -0.14563,-0.32231 -0.15876,-0.31389 -0.17429,-0.30427 -0.1874,-0.29585 -0.20174,-0.28503 -0.21486,-0.2754 -0.2268,-0.2646 -0.23993,-0.25255 -0.25068,-0.24173 -0.26262,-0.22851 -0.27336,-0.21648 -0.2829,-0.20324 -0.29365,-0.18881 -0.302,-0.17559 -0.31156,-0.15995 -0.31991,-0.14673 -0.32827,-0.12989 -0.33543,-0.11424 -0.34139,-0.0985 -0.35095,-0.0806 -0.35571,-0.0637 -0.3617,-0.0481 -0.36647,-0.0277 -0.37242,-0.008 0,-1.0198 0.42257,0.0108 0.41898,0.0325 0.41183,0.053 0.40585,0.0733 0.3987,0.0925 0.39152,0.11064 0.38319,0.13108 0.37362,0.14914 0.36528,0.16596 0.35451,0.18401 0.34499,0.19963 0.33423,0.21528 0.32349,0.23211 0.31156,0.24535 0.29843,0.26217 0.28648,0.27301 0.27097,0.28863 0.26023,0.30067 0.24352,0.31389 0.23037,0.3259 0.21368,0.33675 0.19815,0.34757 0.18263,0.35718 0.16473,0.36802 0.14802,0.37643 0.13012,0.38605 0.10981,0.39447 0.0919,0.40169 0.0728,0.4089 0.0525,0.41491 0.0323,0.42213 0.0107,0.42574 0,0 z m -8.2377,8.2995 0,-1.0198 0.37243,-0.008 0.36646,-0.0277 0.3617,-0.0481 0.35571,-0.0637 0.35095,-0.0806 0.34139,-0.0986 0.33544,-0.11426 0.32827,-0.12988 0.3199,-0.14673 0.31156,-0.15994 0.302,-0.17561 0.29365,-0.18881 0.28291,-0.20324 0.27336,-0.21647 0.26261,-0.22851 0.25068,-0.24172 0.23993,-0.25257 0.2268,-0.26459 0.21486,-0.2754 0.20174,-0.28503 0.1874,-0.29585 0.17429,-0.30427 0.15876,-0.31389 0.14563,-0.3223 0.12892,-0.33074 0.1134,-0.33795 0.0978,-0.34395 0.08,-0.35358 0.0633,-0.35839 0.0478,-0.3644 0.0275,-0.36922 0.008,-0.37522 1.0122,0 -0.0107,0.42574 -0.0323,0.42213 -0.0525,0.41491 -0.0728,0.4089 -0.092,0.40169 -0.10983,0.39447 -0.13011,0.38605 -0.14801,0.37643 -0.16473,0.368 -0.18264,0.35719 -0.19815,0.34756 -0.21367,0.33675 -0.23038,0.32592 -0.24353,0.31389 -0.26022,0.30067 -0.27096,0.28863 -0.28649,0.273 -0.29843,0.26218 -0.31156,0.24534 -0.32348,0.23211 -0.33424,0.21528 -0.34497,0.19963 -0.35453,0.18401 -0.36528,0.16597 -0.37362,0.14913 -0.38318,0.13109 -0.39154,0.11064 -0.39869,0.0925 -0.40585,0.0733 -0.41183,0.053 -0.41899,0.0325 -0.42257,0.0108 z m -8.2365,-8.2995 1.0122,0 0.008,0.37521 0.0275,0.36922 0.0477,0.36441 0.0633,0.35838 0.0799,0.35359 0.0979,0.34395 0.11339,0.33795 0.12892,0.33073 0.14564,0.32231 0.15876,0.31389 0.17308,0.30427 0.18862,0.29585 0.20053,0.28502 0.21606,0.27541 0.22561,0.26459 0.23993,0.25255 0.25187,0.24174 0.26142,0.2297 0.27336,0.21528 0.2829,0.20324 0.29365,0.18882 0.302,0.17559 0.31156,0.15995 0.31991,0.14673 0.32827,0.12988 0.33543,0.11425 0.34139,0.0986 0.35095,0.0806 0.35571,0.0637 0.3617,0.0481 0.36647,0.0277 0.37242,0.008 0,1.0198 -0.42257,-0.0108 -0.41898,-0.0325 -0.41183,-0.053 -0.40585,-0.0733 -0.3987,-0.0925 -0.39152,-0.11065 -0.38319,-0.13109 -0.37362,-0.14913 -0.36527,-0.16596 -0.35452,-0.18401 -0.34499,-0.19964 -0.33423,-0.21528 -0.32349,-0.23211 -0.31156,-0.24654 -0.29722,-0.26098 -0.28531,-0.273 -0.27335,-0.28863 -0.25903,-0.30067 -0.24471,-0.31388 -0.22919,-0.32592 -0.21486,-0.33675 -0.19696,-0.34756 -0.18263,-0.35719 -0.16474,-0.36802 -0.14801,-0.37641 -0.13011,-0.38605 -0.10982,-0.39448 -0.092,-0.40168 -0.0728,-0.40891 -0.0525,-0.41491 -0.0323,-0.42213 -0.0107,-0.42574 z m 8.2365,-8.2995 0,1.0198 -0.37243,0.008 -0.36647,0.0277 -0.36169,0.0481 -0.35572,0.0637 -0.35094,0.0806 -0.3414,0.0986 -0.33542,0.11425 -0.32828,0.12989 -0.3199,0.14673 -0.31156,0.15994 -0.30201,0.1756 -0.29365,0.18881 -0.2829,0.20324 -0.27335,0.21528 -0.26143,0.22971 -0.25188,0.24172 -0.23993,0.25257 -0.22561,0.26458 -0.21605,0.2754 -0.20054,0.28504 -0.1886,0.29585 -0.1731,0.30427 -0.15875,0.31389 -0.14563,0.3223 -0.12892,0.33074 -0.1134,0.33794 -0.0979,0.34396 -0.08,0.35358 -0.0633,0.35839 -0.0478,0.3644 -0.0275,0.36921 -0.008,0.37523 -1.0122,0 0.0107,-0.42574 0.0323,-0.42214 0.0525,-0.41491 0.0728,-0.4089 0.092,-0.40168 0.10982,-0.39447 0.13011,-0.38604 0.14803,-0.37644 0.16472,-0.36801 0.18263,-0.35718 0.19696,-0.34757 0.21488,-0.33674 0.22918,-0.32592 0.24471,-0.31389 0.25904,-0.30066 0.27335,-0.28865 0.28529,-0.273 0.29722,-0.26097 0.31156,-0.24654 0.32349,-0.23212 0.33424,-0.21526 0.34497,-0.19965 0.35454,-0.184 0.36526,-0.16597 0.37363,-0.14913 0.38317,-0.13109 0.39154,-0.11064 0.39869,-0.0925 0.40587,-0.0733 0.41182,-0.053 0.41898,-0.0325 0.42257,-0.0108 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path355" + d="m 482.14,213.71 c 3.1394,0 5.6844,2.564 5.6844,5.727 0,3.1642 -2.545,5.7282 -5.6844,5.7282 -3.1394,0 -5.6844,-2.564 -5.6844,-5.7282 0,-3.163 2.545,-5.727 5.6844,-5.727 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path357" + d="m 488.33,219.44 -1.0122,0 0,0 -0.006,-0.26821 -0.0204,-0.26577 -0.0335,-0.26098 -0.0454,-0.25737 -0.0573,-0.25256 -0.0692,-0.24653 -0.0823,-0.24295 -0.0919,-0.23691 -0.10386,-0.23091 -0.1146,-0.2249 -0.12413,-0.21768 -0.1349,-0.21166 -0.14443,-0.20566 -0.15398,-0.19723 -0.16235,-0.18882 -0.17309,-0.18039 -0.17906,-0.17439 -0.1874,-0.16355 -0.19577,-0.15515 -0.20412,-0.14552 -0.21008,-0.1359 -0.21607,-0.12508 -0.22322,-0.11545 -0.22919,-0.10463 -0.23516,-0.0925 -0.24112,-0.083 -0.24472,-0.0697 -0.25067,-0.0577 -0.25545,-0.0458 -0.25903,-0.0337 -0.26381,-0.0205 -0.26619,-0.006 0,-1.0198 0.31871,0.008 0.31394,0.0253 0.30918,0.0385 0.30558,0.0553 0.29842,0.0697 0.29485,0.0842 0.28648,0.0974 0.2829,0.11186 0.27457,0.12626 0.26619,0.13711 0.25902,0.14913 0.25068,0.16235 0.24233,0.17439 0.23396,0.184 0.22561,0.19723 0.21486,0.20566 0.20412,0.21648 0.19577,0.2273 0.18263,0.23573 0.17309,0.24413 0.16115,0.25256 0.14801,0.26097 0.13609,0.26819 0.12534,0.27662 0.11102,0.28502 0.0967,0.28864 0.0836,0.29705 0.0692,0.30065 0.0549,0.3079 0.0382,0.31148 0.025,0.31629 0.008,0.32112 0,0 z m -6.1905,6.2381 0,-1.0198 0.2662,-0.006 0.26379,-0.0205 0.25904,-0.0337 0.25544,-0.0458 0.25069,-0.0577 0.2447,-0.0697 0.24113,-0.083 0.23516,-0.0925 0.22918,-0.10463 0.22323,-0.11546 0.21605,-0.12507 0.21009,-0.13591 0.20413,-0.14552 0.19576,-0.15514 0.18742,-0.16356 0.17904,-0.17438 0.1731,-0.1804 0.16233,-0.18881 0.15399,-0.19724 0.14444,-0.20565 0.13489,-0.21166 0.12296,-0.21649 0.11459,-0.22729 0.10504,-0.23092 0.0919,-0.23692 0.0823,-0.24173 0.0692,-0.24655 0.0573,-0.25375 0.0454,-0.25737 0.0335,-0.26097 0.0203,-0.2658 0.006,-0.26818 1.0122,0 -0.008,0.3211 -0.025,0.31631 -0.0382,0.31148 -0.0548,0.30788 -0.0692,0.30186 -0.0836,0.29706 -0.0967,0.28983 -0.11102,0.28263 -0.12414,0.27661 -0.13608,0.26819 -0.14922,0.26217 -0.16114,0.25256 -0.17309,0.24414 -0.18264,0.23572 -0.19575,0.2273 -0.20413,0.21648 -0.21487,0.20566 -0.22561,0.19723 -0.23397,0.184 -0.24231,0.17439 -0.25068,0.16235 -0.25903,0.14912 -0.2662,0.13712 -0.27454,0.12627 -0.28291,0.11185 -0.28649,0.0974 -0.29484,0.0842 -0.29842,0.0697 -0.3056,0.0553 -0.30915,0.0384 -0.31395,0.0253 -0.31872,0.008 z m -6.1905,-6.2381 1.0122,0 0.006,0.26819 0.0204,0.26578 0.0335,0.26098 0.0454,0.25736 0.0573,0.25376 0.0692,0.24654 0.0823,0.24174 0.0919,0.23692 0.10505,0.23092 0.11459,0.22729 0.12295,0.21648 0.1349,0.21167 0.14443,0.20565 0.15399,0.19724 0.16234,0.18881 0.17309,0.18039 0.17905,0.17438 0.18741,0.16356 0.19576,0.15516 0.20413,0.14551 0.21009,0.1359 0.21605,0.12508 0.22323,0.11545 0.22919,0.10463 0.23516,0.0925 0.24112,0.083 0.24471,0.0697 0.25068,0.0577 0.25544,0.0458 0.25904,0.0337 0.26381,0.0205 0.26619,0.006 0,1.0198 -0.31871,-0.008 -0.31395,-0.0253 -0.30917,-0.0385 -0.30558,-0.0553 -0.29842,-0.0697 -0.29485,-0.0842 -0.28649,-0.0974 -0.2829,-0.11186 -0.27455,-0.12627 -0.26619,-0.1371 -0.25903,-0.14913 -0.25068,-0.16236 -0.24232,-0.17438 -0.23397,-0.184 -0.22561,-0.19724 -0.21486,-0.20565 -0.20413,-0.21648 -0.19576,-0.2273 -0.18263,-0.23571 -0.1731,-0.24415 -0.16114,-0.25256 -0.14921,-0.26217 -0.13608,-0.2682 -0.12415,-0.27661 -0.11101,-0.28261 -0.0967,-0.28984 -0.0836,-0.29707 -0.0692,-0.30185 -0.0549,-0.30789 -0.0382,-0.31148 -0.025,-0.31629 -0.008,-0.32112 z m 6.1905,-6.237 0,1.0198 -0.2662,0.006 -0.26381,0.0205 -0.25903,0.0337 -0.25545,0.0458 -0.25068,0.0577 -0.2447,0.0697 -0.24114,0.083 -0.23514,0.0925 -0.22919,0.10463 -0.22323,0.11546 -0.21606,0.12507 -0.21008,0.13591 -0.20413,0.14551 -0.19576,0.15515 -0.18742,0.16355 -0.17905,0.17439 -0.17308,0.1804 -0.16235,0.18881 -0.15399,0.19723 -0.14444,0.20566 -0.13488,0.21166 -0.12415,0.21768 -0.11459,0.22491 -0.10386,0.23091 -0.0919,0.23691 -0.0823,0.24294 -0.0692,0.24655 -0.0573,0.25255 -0.0454,0.25736 -0.0335,0.26098 -0.0204,0.26579 -0.006,0.26819 -1.0122,0 0.008,-0.32111 0.025,-0.3163 0.0382,-0.31148 0.0549,-0.30788 0.0692,-0.30066 0.0836,-0.29706 0.0967,-0.28863 0.11102,-0.28503 0.12534,-0.27662 0.13609,-0.26818 0.14801,-0.26097 0.16115,-0.25256 0.17308,-0.24414 0.18264,-0.23572 0.19577,-0.2273 0.20411,-0.21648 0.21488,-0.20565 0.22561,-0.19723 0.23396,-0.18401 0.24232,-0.17439 0.25067,-0.16236 0.25904,-0.14911 0.26619,-0.13712 0.27455,-0.12628 0.28291,-0.11184 0.28649,-0.0974 0.29484,-0.0842 0.29841,-0.0697 0.3056,-0.0553 0.30916,-0.0385 0.31394,-0.0253 0.31873,-0.008 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path359" + d="m 482.14,215.83 c 1.9768,0 3.5787,1.614 3.5787,3.6055 0,1.9916 -1.6019,3.6055 -3.5787,3.6055 -1.9756,0 -3.5787,-1.6152 -3.5787,-3.6055 0,-1.9916 1.6031,-3.6055 3.5787,-3.6055 z" + inkscape:connector-curvature="0" + style="fill:#0c4076" /> + <path + id="path361" + d="m 486.23,219.44 -1.0122,0 0,0 -0.004,-0.15995 -0.0107,-0.15754 -0.0215,-0.15394 -0.0263,-0.15394 -0.0335,-0.14914 -0.0417,-0.14671 -0.0489,-0.14312 -0.0549,-0.14071 -0.0621,-0.13711 -0.068,-0.13349 -0.0728,-0.12988 -0.08,-0.12387 -0.0859,-0.12268 -0.092,-0.11785 -0.0967,-0.11306 -0.10147,-0.10583 -0.10504,-0.10223 -0.11221,-0.0974 -0.11698,-0.0925 -0.12176,-0.0865 -0.12296,-0.0806 -0.12891,-0.0733 -0.1325,-0.0685 -0.13608,-0.0625 -0.13966,-0.0553 -0.14205,-0.0493 -0.14563,-0.042 -0.14802,-0.0337 -0.1528,-0.0265 -0.15279,-0.0217 -0.15638,-0.0108 -0.15876,-0.004 0,-1.0198 0.20891,0.006 0.20889,0.0156 0.20531,0.0265 0.19815,0.036 0.19815,0.0458 0.19578,0.0565 0.1898,0.0637 0.18502,0.0746 0.18144,0.0818 0.17547,0.0902 0.17189,0.0997 0.16593,0.10704 0.15996,0.11545 0.15278,0.12146 0.14803,0.12869 0.14324,0.13591 0.1349,0.14431 0.12771,0.14913 0.12057,0.15394 0.11459,0.16115 0.10624,0.16717 0.099,0.17319 0.0896,0.17679 0.0811,0.1828 0.074,0.18641 0.0633,0.19121 0.0561,0.19724 0.0454,0.19965 0.0358,0.19964 0.0263,0.20685 0.0155,0.21046 0.006,0.21047 0,0 z m -4.0848,4.1155 0,-1.0198 0.15876,-0.004 0.15637,-0.0108 0.15279,-0.0217 0.1528,-0.0265 0.14801,-0.0337 0.14564,-0.042 0.14206,-0.0493 0.13965,-0.0553 0.13608,-0.0625 0.1325,-0.0685 0.12892,-0.0733 0.12296,-0.0806 0.12175,-0.0866 0.11699,-0.0926 0.1122,-0.0974 0.10505,-0.10222 0.10147,-0.10584 0.0967,-0.11305 0.0919,-0.11785 0.0859,-0.12268 0.08,-0.12387 0.0728,-0.12989 0.068,-0.13349 0.0621,-0.1371 0.0549,-0.14071 0.049,-0.14311 0.0417,-0.14674 0.0335,-0.14911 0.0263,-0.15395 0.0216,-0.15394 0.0107,-0.15755 0.004,-0.15995 1.0123,0 -0.006,0.21047 -0.0156,0.21046 -0.0263,0.20685 -0.0358,0.19964 -0.0454,0.19964 -0.0561,0.19724 -0.0633,0.19122 -0.074,0.18641 -0.0811,0.1828 -0.0896,0.17679 -0.099,0.17318 -0.10625,0.16717 -0.11458,0.16115 -0.12056,0.15394 -0.12773,0.14914 -0.13489,0.14431 -0.14324,0.1359 -0.14803,0.12869 -0.15278,0.12147 -0.15997,0.11544 -0.16592,0.10704 -0.17189,0.0999 -0.17547,0.0902 -0.18144,0.0818 -0.18503,0.0746 -0.18979,0.0637 -0.19576,0.0565 -0.19817,0.0458 -0.19815,0.036 -0.20531,0.0265 -0.2089,0.0157 -0.2089,0.006 z m -4.0848,-4.1155 1.0122,0 0.004,0.15995 0.0107,0.15635 0.0216,0.15393 0.0263,0.15515 0.0335,0.14793 0.0417,0.14671 0.0489,0.14432 0.0549,0.13951 0.0621,0.1371 0.068,0.1347 0.0728,0.12868 0.08,0.12508 0.0859,0.12147 0.092,0.11906 0.0967,0.11185 0.10148,0.10704 0.10623,0.10222 0.11102,0.0974 0.11817,0.0925 0.12057,0.0865 0.12415,0.0806 0.12772,0.0733 0.13369,0.0685 0.13608,0.0625 0.13847,0.0553 0.14324,0.0493 0.14563,0.042 0.14683,0.0337 0.15399,0.0265 0.15279,0.0217 0.15518,0.0108 0.15877,0.004 0,1.0198 -0.20891,-0.006 -0.2077,-0.0157 -0.20531,-0.0265 -0.19935,-0.036 -0.19936,-0.0458 -0.19336,-0.0565 -0.191,-0.0637 -0.18621,-0.0746 -0.17906,-0.0818 -0.17666,-0.0902 -0.1707,-0.0998 -0.16712,-0.10702 -0.15877,-0.11545 -0.15397,-0.12147 -0.14684,-0.12869 -0.14443,-0.1359 -0.1349,-0.14553 -0.12771,-0.14793 -0.12056,-0.15513 -0.1146,-0.15996 -0.10624,-0.16836 -0.099,-0.17199 -0.0896,-0.17799 -0.0811,-0.1804 -0.074,-0.18761 -0.0633,-0.19241 -0.0561,-0.19483 -0.0454,-0.20086 -0.0357,-0.20083 -0.0263,-0.20686 -0.0155,-0.20926 -0.006,-0.21047 z m 4.0848,-4.1155 0,1.0198 -0.15876,0.004 -0.15518,0.0108 -0.15279,0.0217 -0.15399,0.0265 -0.14683,0.0337 -0.14563,0.042 -0.14324,0.0493 -0.13847,0.0553 -0.13609,0.0625 -0.13368,0.0685 -0.12773,0.0733 -0.12414,0.0806 -0.12057,0.0865 -0.11817,0.0925 -0.11102,0.0974 -0.10743,0.10223 -0.10025,0.10583 -0.0967,0.11305 -0.0919,0.11786 -0.0859,0.12267 -0.08,0.12388 -0.0728,0.12989 -0.068,0.13349 -0.0621,0.13709 -0.0548,0.14071 -0.049,0.14312 -0.0417,0.14672 -0.0335,0.14913 -0.0263,0.15395 -0.0216,0.15394 -0.0107,0.15754 -0.004,0.15995 -1.0122,0 0.006,-0.21046 0.0156,-0.21047 0.0263,-0.20685 0.0358,-0.19964 0.0454,-0.19964 0.0561,-0.19724 0.0633,-0.19122 0.074,-0.18641 0.0811,-0.1828 0.0896,-0.17679 0.099,-0.17319 0.10624,-0.16715 0.11459,-0.16117 0.12056,-0.15393 0.12773,-0.14913 0.13609,-0.14432 0.14324,-0.13591 0.14682,-0.12867 0.15399,-0.12148 0.15877,-0.11545 0.1671,-0.10703 0.1707,-0.0998 0.17667,-0.0902 0.17906,-0.0818 0.18622,-0.0746 0.19097,-0.0637 0.19339,-0.0565 0.19935,-0.0458 0.19934,-0.036 0.20532,-0.0265 0.20771,-0.0155 0.2089,-0.006 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + </g> + </g> + <path + id="path363" + d="m 314.58,301.17 0,271.32 0,0.004 c 9.9e-4,48.555 18.82,92.636 49.174,124.58 30.354,31.944 72.248,51.749 118.39,51.749 h 0.006 c 46.145,-9.9e-4 88.036,-19.805 118.39,-51.747 30.356,-31.943 49.174,-76.026 49.175,-124.58 v -271.31 c -111.71,-0.0105 -223.43,0.0152 -335.14,-9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#c6363c" /> + <path + id="path365" + d="m 313.39,300 0,1.1813 0,271.32 0.0621,4.5696 0.15516,4.5386 0.27928,4.5075 0.37238,4.4764 0.49651,4.4453 0.5896,4.4142 0.68269,4.3831 0.80683,4.352 0.89991,4.2899 0.99302,4.2588 1.0861,4.2277 1.1792,4.1966 1.2723,4.1344 1.3964,4.1033 1.4585,4.0412 1.5516,4.0101 1.6447,3.9479 1.7378,3.9168 1.8309,3.8546 1.924,3.7925 1.986,3.7303 2.0791,3.6992 2.1412,3.637 2.2343,3.5749 2.3274,3.5127 2.3894,3.4505 2.4825,3.3884 2.5446,3.2951 2.6067,3.264 2.6998,3.2018 2.7618,3.1086 2.8239,3.0464 1.7067,-1.6165 -2.7928,-3.0153 -2.6998,-3.0775 -2.6687,-3.1397 -2.5756,-3.2018 -2.5136,-3.2951 -2.4515,-3.3262 -2.3584,-3.4194 -2.2653,-3.4505 -2.2343,-3.5438 -2.1102,-3.5749 -2.0481,-3.6371 -1.986,-3.6992 -1.8619,-3.7614 -1.7998,-3.7925 -1.7378,-3.8546 -1.6136,-3.8857 -1.5516,-3.979 -1.4275,-3.979 -1.3654,-4.0412 -1.2723,-4.1033 -1.1792,-4.1344 -1.0551,-4.1655 -0.99302,-4.1966 -0.86888,-4.2588 -0.80682,-4.2899 -0.6827,-4.321 -0.55857,-4.352 -0.49651,-4.4142 -0.37238,-4.4142 -0.27928,-4.4453 -0.15516,-4.4764 -0.0621,-4.5074 0,-270.14 332.78,0 0,270.14 -0.0621,4.5074 -0.15516,4.4764 -0.27928,4.4453 -0.37238,4.4142 -0.46547,4.4142 -0.58961,4.352 -0.68269,4.321 -0.77579,4.2899 -0.89992,4.2588 -0.96198,4.1966 -1.0861,4.1655 -1.1792,4.1344 -1.2723,4.1033 -1.3344,4.0412 -1.4585,3.979 -1.5516,3.979 -1.6136,3.8857 -1.7067,3.8546 -1.7998,3.7925 -1.8929,3.7614 -1.986,3.6992 -2.0481,3.6371 -2.1102,3.5749 -2.2032,3.5438 -2.2963,3.4505 -2.3584,3.4194 -2.4515,3.3262 -2.5136,3.2951 -2.5756,3.2018 -2.6377,3.1397 -2.7308,3.0775 -2.7928,3.0153 -2.8549,2.9221 -2.948,2.891 -2.979,2.7977 -3.0411,2.7045 -3.1342,2.6423 -3.1652,2.549 -3.2273,2.4869 -3.2894,2.4247 -3.3514,2.3314 -3.4135,2.2382 -3.4445,2.1449 -3.5066,2.0517 -3.5686,1.9895 -3.5997,1.8962 -3.6617,1.803 -3.7238,1.7097 -3.7548,1.6165 -3.7859,1.5232 -3.8479,1.43 -3.879,1.3367 -3.91,1.2434 -3.972,1.1191 -4.0031,1.0258 -4.0341,0.93258 -4.0652,0.83932 -4.0962,0.71497 -4.1582,0.59064 -4.1582,0.52846 -4.1893,0.37303 -4.2513,0.27977 -4.2513,0.18652 -4.2824,0.0621 0,2.3625 4.3444,-0.0622 4.3444,-0.18652 4.2824,-0.27976 4.2513,-0.40412 4.2513,-0.49738 4.1893,-0.62172 4.1582,-0.74606 4.1272,-0.83933 4.0962,-0.93257 4.0651,-1.0569 4.0341,-1.1502 3.972,-1.2434 3.941,-1.3367 3.879,-1.461 3.879,-1.5543 3.7859,-1.6165 3.7548,-1.7408 3.7238,-1.8341 3.6617,-1.9273 3.5997,-2.0206 3.5686,-2.0828 3.5066,-2.176 3.4445,-2.2693 3.4135,-2.3625 3.3204,-2.4558 3.2894,-2.518 3.2273,-2.5801 3.1652,-2.7045 3.0721,-2.7356 3.0411,-2.8288 2.979,-2.9221 2.8859,-2.9842 2.8239,-3.0464 2.7618,-3.1086 2.6998,-3.2018 2.6067,-3.2329 2.5446,-3.3262 2.4825,-3.3884 2.3894,-3.4505 2.3274,-3.5127 2.2343,-3.5749 2.1412,-3.637 2.0791,-3.6992 2.0171,-3.7303 1.8929,-3.7925 1.8309,-3.8546 1.7378,-3.9168 1.6447,-3.9479 1.5516,-4.0101 1.4895,-4.0412 1.3654,-4.1033 1.2723,-4.1344 1.1792,-4.1966 1.1171,-4.2277 0.99301,-4.2588 0.89992,-4.3209 0.77579,-4.3209 0.6827,-4.3831 0.5896,-4.4142 0.4965,-4.4453 0.37238,-4.4764 0.27929,-4.5075 0.15516,-4.5696 0.0621,-4.5385 0,-271.32 0,-1.1813 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <g + id="g367"> + <g + id="g369" + style="fill:#ffffff;stroke:#21231e;stroke-width:0.99388075"> + <path + id="path371" + d="m 483.67,734.79 c 1.4555,-0.23969 3.9126,0.0669 5.7692,-1.3934 2.47,-1.9421 1.4907,-9.7869 1.2678,-14.751 -1.1353,-25.354 -2.1733,-68.034 -3.4634,-127.97 -2.1123,-0.28786 -3.6499,-0.13982 -5.0949,0.0787 -1.4438,-0.21853 -2.9814,-0.36657 -5.0937,-0.0787 -1.2901,59.939 -2.3281,102.62 -3.4646,127.97 -0.22167,4.964 -1.2022,12.809 1.269,14.751 1.8566,1.4604 4.3137,1.1526 5.7692,1.3934 h 3.0412 z" + inkscape:connector-curvature="0" /> + <path + id="path373" + d="m 499.55,734.06 c -1.4719,-0.10574 -3.8903,0.42296 -5.8724,-0.86238 -2.6354,-1.7095 -2.8524,-9.7329 -3.0799,-14.696 -1.1623,-25.353 -3.508,-67.829 -7.6458,-127.64 2.0771,-0.47819 3.6229,-0.46996 5.0808,-0.38419 0.22753,-0.0564 0.45858,-0.10927 0.69315,-0.16096 9.527,59.168 13.124,101.14 19.648,126.46 0.90075,3.4953 2.8348,12.254 -0.17592,15.099 -1.717,1.6225 -4.1918,1.5403 -5.6191,1.9104 l -3.0283,0.27611 v -10e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path375" + d="m 518.2,731.39 c -1.4754,0.0271 -3.8364,0.77426 -5.9264,-0.32662 -2.7796,-1.4639 -2.6671,-9.4721 -3.9056,-14.28 -6.5246,-25.321 -10.122,-67.309 -19.653,-126.5 2.0255,-0.66617 3.5643,-0.79777 5.0245,-0.84475 l 0.20641,-0.0681 c 15.15,57.536 19.692,98.095 31.451,123.15 1.0884,3.4718 4.0522,12.691 1.2186,15.903 -1.5646,1.7729 -4.0358,1.9139 -5.4244,2.4132 l -2.9908,0.54985 z" + inkscape:connector-curvature="0" /> + <path + id="path377" + d="m 536.98,726.08 c -1.4649,0.17387 -3.9349,1.5391 -6.1234,0.65089 -2.911,-1.1808 -3.3661,-9.747 -5.4608,-14.209 -11.813,-25.169 -16.342,-65.982 -31.66,-123.94 1.9504,-0.86239 3.4693,-1.1455 4.9178,-1.337 1.3277,-0.60976 1.0755,-0.92347 3.1854,-1.2325 17.797,57.241 23.578,97.056 40.366,121.76 2.7104,3.9876 4.6937,11.975 2.8559,14.525 -1.3816,1.9186 -3.827,2.304 -5.1594,2.9384 l -2.9228,0.8424 h 10e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path379" + d="m 464.75,734.06 c 1.4719,-0.10574 3.8904,0.42296 5.8725,-0.86238 2.6366,-1.7095 2.8524,-9.7329 3.0799,-14.696 1.1635,-25.353 3.508,-67.829 7.6458,-127.64 -2.0771,-0.47819 -3.6218,-0.46996 -5.0808,-0.38419 -0.22753,-0.0564 -0.45741,-0.10927 -0.69315,-0.16096 -9.527,59.168 -13.124,101.14 -19.648,126.46 -0.89958,3.4953 -2.8336,12.254 0.17593,15.099 1.7182,1.6225 4.1918,1.5403 5.6203,1.9104 l 3.0283,0.27611 -0.001,-10e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path381" + d="m 446.09,731.39 c 1.4743,0.0271 3.8364,0.77426 5.9264,-0.32662 2.7785,-1.4639 2.6659,-9.4721 3.9044,-14.28 6.5246,-25.321 10.122,-67.309 19.655,-126.5 -2.0255,-0.66617 -3.5655,-0.79777 -5.0257,-0.84475 l -0.20524,-0.0681 c -15.151,57.536 -19.693,98.095 -31.451,123.15 -1.0884,3.4718 -4.0534,12.691 -1.2186,15.903 1.5634,1.7729 4.0358,1.9139 5.4244,2.4132 l 2.9908,0.54985 z" + inkscape:connector-curvature="0" /> + <path + id="path383" + d="m 427.31,726.08 c 1.4649,0.17387 3.9349,1.5391 6.1234,0.65089 2.911,-1.1808 3.3661,-9.747 5.462,-14.209 11.812,-25.169 16.341,-65.982 31.659,-123.94 -1.9504,-0.86239 -3.4693,-1.1455 -4.9178,-1.337 -1.3277,-0.60976 -1.0755,-0.92347 -3.1854,-1.2325 -17.797,57.241 -23.578,97.056 -40.366,121.76 -2.7093,3.9876 -4.6937,11.975 -2.8559,14.525 1.3816,1.9186 3.827,2.304 5.1594,2.9384 l 2.9227,0.8424 h -9.9e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path385" + d="m 527.05,682.84 c -1.3406,0.0811 -3.3602,0.89879 -5.4643,-0.10457 -2.7984,-1.3347 -4.6257,-9.0667 -6.1258,-13.873 -11.915,-23.54 -22.791,-65.347 -40.632,-123.45 1.7276,-0.72844 3.108,-0.91407 4.4322,-1.0128 1.1752,-0.51695 2.4536,-0.98809 4.3782,-1.162 19.215,57.497 27.843,99.074 46.623,121.97 3.101,3.7796 5.4068,12.025 3.9314,14.414 -1.1072,1.7976 -3.3368,2.0267 -4.5143,2.5672 l -2.6295,0.64855 h 9.9e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path387" + d="m 511.85,685.82 c -1.3441,-0.0271 -3.4494,0.62739 -5.4268,-0.54046 -2.6319,-1.5521 -3.5619,-9.3945 -4.5014,-14.299 -4.8016,-25.052 -13.658,-67.097 -26.244,-126.12 1.8038,-0.58628 3.1995,-0.6603 4.5284,-0.65442 1.2292,-0.42063 2.5556,-0.78719 4.492,-0.80716 14.871,58.657 18.311,102.58 32.376,125.13 2.5627,4.1086 3.9982,12.402 2.2566,14.663 -1.3101,1.7001 -3.5561,1.7506 -4.7899,2.1947 l -2.6917,0.4359 z" + inkscape:connector-curvature="0" /> + <path + id="path389" + d="m 496.38,687.58 c -1.3347,-0.13394 -3.5045,0.34894 -5.34,-0.97048 -2.4407,-1.7565 -2.4642,-9.6354 -2.8348,-14.592 -1.8977,-25.321 -5.876,-67.88 -11.614,-127.64 1.8625,-0.43942 3.2605,-0.403 4.5823,-0.28902 1.2726,-0.32076 2.6342,-0.58041 4.5636,-0.4453 8.0551,59.573 12.736,102.71 17.833,127.14 1.0169,4.8723 2.5521,12.664 0.55829,14.776 -1.4989,1.5873 -3.7402,1.458 -5.0186,1.8023 l -2.7304,0.21854 z" + inkscape:connector-curvature="0" /> + <path + id="path391" + d="m 437.24,682.84 c 1.3406,0.0811 3.3602,0.89879 5.4643,-0.10457 2.7984,-1.3347 4.6257,-9.0667 6.1258,-13.873 11.915,-23.54 22.791,-65.347 40.632,-123.45 -1.7276,-0.72844 -3.108,-0.91407 -4.4322,-1.0128 -1.174,-0.51695 -2.4536,-0.98809 -4.3782,-1.162 -19.215,57.497 -27.843,99.074 -46.623,121.97 -3.0998,3.7796 -5.4068,12.025 -3.9314,14.414 1.1072,1.7976 3.3368,2.0267 4.5143,2.5672 l 2.6295,0.64855 h -9.9e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path393" + d="m 452.44,685.82 c 1.3429,-0.0271 3.4482,0.62739 5.4268,-0.54046 2.6319,-1.5521 3.5608,-9.3945 4.5002,-14.299 4.8016,-25.052 13.659,-67.097 26.245,-126.12 -1.805,-0.58628 -3.1995,-0.6603 -4.5296,-0.65442 -1.228,-0.42063 -2.5545,-0.78719 -4.4908,-0.80716 -14.871,58.657 -18.311,102.58 -32.378,125.13 -2.5627,4.1086 -3.9982,12.402 -2.2554,14.663 1.3101,1.7001 3.5549,1.7506 4.7887,2.1947 l 2.6929,0.4359 z" + inkscape:connector-curvature="0" /> + <path + id="path395" + d="m 467.92,687.58 c 1.3347,-0.13394 3.5045,0.34894 5.34,-0.97048 2.4407,-1.7565 2.4642,-9.6354 2.836,-14.592 1.8977,-25.321 5.876,-67.88 11.614,-127.64 -1.8636,-0.43942 -3.2605,-0.403 -4.5823,-0.28902 -1.2726,-0.32076 -2.6342,-0.58041 -4.5647,-0.4453 -8.054,59.573 -12.735,102.71 -17.832,127.14 -1.0169,4.8723 -2.5533,12.664 -0.55945,14.776 1.5001,1.5873 3.7402,1.458 5.0198,1.8023 l 2.7304,0.21854 h -9.9e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path397" + d="m 483.52,688.09 c 1.3124,-0.23967 3.5279,0.0682 5.2028,-1.3923 2.2284,-1.9421 1.3441,-9.7881 1.1435,-14.752 -1.0239,-25.356 -1.9598,-68.036 -3.1233,-127.98 -1.9059,-0.28784 -3.2922,-0.13981 -4.5952,0.0787 -1.303,-0.21736 -2.6882,-0.36656 -4.594,-0.0787 -1.1635,59.942 -2.0994,102.62 -3.1233,127.98 -0.20055,4.964 -1.0849,12.81 1.1424,14.752 1.676,1.4604 3.8915,1.1526 5.2039,1.3923 h 2.7433 z" + inkscape:connector-curvature="0" /> + <path + id="path399" + d="m 516.54,647.97 c -1.0274,0.0811 -2.5744,0.89997 -4.1859,-0.1034 -2.1428,-1.3358 -3.542,-9.0667 -4.6914,-13.873 -9.1259,-23.54 -17.457,-65.347 -31.123,-123.45 1.3241,-0.72726 2.3809,-0.91289 3.3942,-1.0128 0.90075,-0.51696 1.8801,-0.98692 3.3543,-1.162 14.718,57.497 21.327,99.074 35.711,121.97 2.375,3.7797 4.1413,12.025 3.0119,14.415 -0.84914,1.7964 -2.5568,2.0267 -3.4576,2.566 l -2.015,0.64971 h 9.9e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path401" + d="m 504.9,650.96 c -1.0298,-0.0271 -2.6413,0.62623 -4.1566,-0.54046 -2.0161,-1.552 -2.728,-9.3945 -3.4482,-14.299 -3.6769,-25.054 -10.461,-67.099 -20.101,-126.12 1.3828,-0.58628 2.4512,-0.6603 3.4681,-0.65442 0.94179,-0.42062 1.9575,-0.78719 3.4411,-0.80716 11.391,58.657 14.025,102.58 24.799,125.13 1.9634,4.1086 3.0623,12.402 1.7288,14.663 -1.004,1.7001 -2.7234,1.7506 -3.6687,2.1947 l -2.0619,0.43589 z" + inkscape:connector-curvature="0" /> + <path + id="path403" + d="m 493.05,652.72 c -1.0216,-0.13511 -2.6835,0.34896 -4.0897,-0.97164 -1.8695,-1.7553 -1.8871,-9.6354 -2.1721,-14.592 -1.452,-25.32 -4.5002,-67.88 -8.8949,-127.64 1.4274,-0.43824 2.4982,-0.40182 3.5103,-0.28902 0.97464,-0.32076 2.0185,-0.57924 3.4963,-0.44412 6.1692,59.573 9.7546,102.71 13.659,127.14 0.77877,4.8723 1.9551,12.664 0.42808,14.776 -1.1482,1.5873 -2.8653,1.4581 -3.8446,1.8011 l -2.0912,0.21971 h -9.9e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path405" + d="m 447.75,647.97 c 1.0274,0.0811 2.5744,0.89997 4.1859,-0.1034 2.1428,-1.3358 3.542,-9.0667 4.6914,-13.873 9.1259,-23.54 17.457,-65.347 31.123,-123.45 -1.3241,-0.72726 -2.3809,-0.91289 -3.3942,-1.0128 -0.90075,-0.51696 -1.8789,-0.98692 -3.3543,-1.162 -14.718,57.497 -21.327,99.074 -35.711,121.97 -2.375,3.7797 -4.1413,12.025 -3.0119,14.415 0.84914,1.7964 2.5568,2.0267 3.4576,2.566 l 2.015,0.64971 h -9.9e-4 z" + inkscape:connector-curvature="0" /> + <path + id="path407" + d="m 459.39,650.96 c 1.0286,-0.0271 2.6413,0.62623 4.1566,-0.54046 2.015,-1.552 2.728,-9.3945 3.447,-14.299 3.678,-25.054 10.462,-67.099 20.101,-126.12 -1.3816,-0.58628 -2.4501,-0.6603 -3.4681,-0.65442 -0.94062,-0.42062 -1.9575,-0.78719 -3.44,-0.80716 -11.391,58.657 -14.025,102.58 -24.8,125.13 -1.9622,4.1086 -3.0623,12.402 -1.7276,14.663 1.0028,1.7001 2.7234,1.7506 3.6675,2.1947 l 2.063,0.43589 z" + inkscape:connector-curvature="0" /> + <path + id="path409" + d="m 471.25,652.72 c 1.0227,-0.13511 2.6846,0.34896 4.0897,-0.97164 1.8707,-1.7553 1.8883,-9.6354 2.1721,-14.592 1.4532,-25.32 4.5002,-67.88 8.8949,-127.64 -1.4274,-0.43824 -2.497,-0.40182 -3.5103,-0.28902 -0.97464,-0.32076 -2.0173,-0.57924 -3.4951,-0.44412 -6.1704,59.573 -9.7558,102.71 -13.66,127.14 -0.77877,4.8723 -1.9551,12.664 -0.42692,14.776 1.1482,1.5873 2.8641,1.4581 3.8434,1.8011 l 2.0924,0.21971 z" + inkscape:connector-curvature="0" /> + <path + id="path411" + d="m 483.2,653.23 c 1.0063,-0.23967 2.7034,0.0681 3.9865,-1.3923 1.7065,-1.9421 1.0298,-9.7869 0.87611,-14.751 -0.78463,-25.357 -1.5024,-68.037 -2.3938,-127.98 -1.459,-0.28785 -2.5216,-0.13981 -3.5197,0.0787 -0.99809,-0.21852 -2.0595,-0.36656 -3.5186,-0.0787 -0.89136,59.942 -1.6091,102.62 -2.3938,127.98 -0.15364,4.964 -0.83038,12.809 0.87612,14.751 1.2831,1.4604 2.9802,1.1526 3.9865,1.3923 h 2.1006 z" + inkscape:connector-curvature="0" /> + <path + id="path413" + d="m 474.88,559.13 c -0.0786,4.2484 -0.13019,9.015 -0.16185,13.914 l -0.047,0.0154 -10.59,2.2006 c -0.0234,4.8312 11.917,55.429 18.064,55.429 6.1539,0 18.088,-50.631 18.064,-55.462 l -10.588,-2.1677 -0.0481,-0.0153 c -0.0329,-4.8993 -0.0833,-9.6659 -0.16185,-13.914 -2.2249,1.847 -4.6808,5.0709 -7.2658,7.9823 -2.5861,-2.9114 -5.0386,-6.1353 -7.2635,-7.9823 h -0.002 z" + inkscape:connector-curvature="0" /> + </g> + <g + id="g415"> + <g + id="g3464"> + <path + id="path418" + d="m 412.13,584.52 c -3.2019,0.13746 -7.1298,1.9703 -18.607,11.936 -5.0092,10.24 -10.058,20.537 -17.019,29.416 -2.3762,1.5708 -4.2387,2.6658 -6.1223,3.2886 -1.9645,0.64854 -16.435,0.17036 -16.788,-0.43589 -4.5026,-4.0898 -11.384,-1.1749 -9.0872,3.1382 -1.7839,1.6942 2.144,7.8883 5.3013,5.3188 2.8981,-2.3592 12.985,-0.13158 16.346,-1.3523 -1.2714,3.0312 -10.384,5.0051 -16.755,5.468 -5.822,0.2479 -5.435,6.0637 -3.0342,10.524 2.7269,1.7412 0.48791,-0.45703 1.4778,0.81539 2.6061,3.869 8.1818,3.3661 8.3683,-0.41591 0.19469,-3.916 13.787,-9.0115 15.825,-12.016 -2.4923,5.9438 -8.2393,11.489 -11.094,17.31 -3.0646,3.0818 -4.9283,3.6974 -0.96525,9.9115 4.3982,-0.50287 4.6562,-1.6719 7.3631,0.89057 6.012,-0.65794 6.9843,-2.445 6.0108,-7.2104 -1.0298,-5.0333 3.1772,-14.139 4.5765,-16.711 1.2913,-2.3733 1.6068,-4.8382 2.8618,-6.3245 2.1803,-2.5824 12.571,-7.7508 15.232,-6.3315 4.8966,2.6118 8.6345,1.0316 9.2514,-3.7174 -1.5775,-1.2231 -0.39407,-7.9682 -3.7824,-8.2537 -2.7703,-0.2338 -4.4123,0.62035 -6.9573,2.7023 -4.0112,3.2792 -6.0695,5.025 -7.3901,4.6608 -3.1268,-0.86121 5.6649,-5.1802 13.66,-15.683 11.081,-14.553 11.841,-21.948 11.327,-26.928 l 9.9e-4,-9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#edb92e;stroke:#21231e;stroke-width:0.99388075" /> + <use + id="use420" + x="0" + y="0" + width="1350" + height="900" + transform="matrix(-1,0,0,1,801.63351,0)" + xlink:href="#path1214" /> + <path + id="path422" + d="m 345.18,634.54 c -4.0123,-2.3522 -6.3181,-2.2593 -7.8745,-0.50873 -0.85501,0.96225 -1.9481,0.4641 -1.3089,-1.0468 2.6682,-6.3139 6.9233,-7.0999 10.741,-4.1403 1.0696,0.99044 1.9282,1.8422 2.7879,2.6917 -0.64038,0.94815 -3.8282,2.277 -4.3454,3.0042 z" + inkscape:connector-curvature="0" + style="fill:#edb92e;stroke:#21231e;stroke-width:0.99388075" /> + <path + id="path424" + d="m 402.64,628.89 c 4.2586,-2.9008 8.2498,-3.4683 10.436,-1.8387 1.2022,0.89528 2.3903,0.25262 1.3324,-1.236 -4.417,-6.2199 -9.5939,-6.536 -13.5,-3.0289 -1.0603,1.1491 -1.9035,2.1301 -2.7456,3.1088 1.337,1.4663 4.2914,3.1194 4.4768,2.9948 z" + inkscape:connector-curvature="0" + style="fill:#edb92e;stroke:#21231e;stroke-width:0.99388075" /> + <path + id="path426" + d="m 369.09,664.55 c 0.12901,-0.25729 -0.97815,-5.4398 -2.7116,-7.0588 -1.3488,1.0809 -2.8629,2.0349 -4.2868,3.5224 -4.2598,4.4517 -4.241,11.011 2.4137,16.728 1.6432,1.4122 2.3926,-0.0764 1.7288,-1.7001 -1.1353,-2.7763 0.24395,-6.3186 2.8559,-11.492 z" + inkscape:connector-curvature="0" + style="fill:#edb92e;stroke:#21231e;stroke-width:0.99388075" /> + <path + id="path428" + d="m 352.47,650.93 c -3.956,1.6437 -5.3212,3.7268 -5.177,6.4631 0.0786,1.505 -0.90895,2.0655 -1.4672,0.31605 -4.8368,-11.243 0.18062,-13.347 7.43,-12.938 0.41636,1.9586 -0.61457,6.0872 -0.78698,6.1588 h 0.001 z" + inkscape:connector-curvature="0" + style="fill:#edb92e;stroke:#21231e;stroke-width:0.99388075" /> + <path + id="path430" + d="m 383.95,621.26 1.0122,0.61329 0,0 -0.0481,0.0835 -0.0434,0.0835 -0.0375,0.0869 -0.034,0.0881 -0.0293,0.0893 -0.0246,0.0904 -0.0188,0.0905 -0.0129,0.094 -0.009,0.094 -0.002,0.0952 0.002,0.0974 0.009,0.0987 0.0153,0.10103 0.0222,0.1034 0.0282,0.10574 0.0363,0.10809 0.0446,0.10927 0.0539,0.11279 0.0622,0.11632 0.0727,0.11748 0.0821,0.11985 0.0927,0.12219 0.10321,0.1257 0.11494,0.12572 0.12784,0.12807 0.13957,0.13041 0.15364,0.13042 0.16537,0.13275 0.17945,0.13159 0.19352,0.13394 0.2076,0.13278 0.22166,0.13393 -0.59463,1.0245 -0.25099,-0.15156 -0.23809,-0.15391 -0.22519,-0.15509 -0.21229,-0.15626 -0.19938,-0.15862 -0.18531,-0.16096 -0.17475,-0.16095 -0.16185,-0.16331 -0.15131,-0.16568 -0.1384,-0.16565 -0.12665,-0.16801 -0.11612,-0.16919 -0.10321,-0.17036 -0.0926,-0.17154 -0.0809,-0.17153 -0.0704,-0.1727 -0.0587,-0.17389 -0.047,-0.17154 -0.0363,-0.17271 -0.0258,-0.17154 -0.0164,-0.16918 -0.005,-0.16919 0.005,-0.16565 0.0152,-0.16332 0.0234,-0.16097 0.0329,-0.15742 0.0399,-0.15274 0.0492,-0.15039 0.0563,-0.14451 0.0622,-0.14217 0.0704,-0.13629 0.0751,-0.13276 0,0 10e-4,-9.9e-4 z m 6.5058,0.81656 -0.74359,0.91995 -0.25217,-0.20326 -0.24277,-0.19621 -0.23575,-0.18797 -0.2287,-0.18094 -0.21933,-0.17154 -0.21346,-0.16214 -0.20524,-0.15274 -0.19704,-0.14216 -0.19118,-0.13041 -0.18179,-0.11984 -0.17475,-0.10692 -0.16772,-0.0952 -0.15951,-0.0835 -0.15012,-0.0705 -0.14191,-0.0576 -0.13137,-0.0435 -0.12197,-0.0329 -0.11377,-0.0212 -0.10438,-0.009 -0.0973,9.9e-4 -0.0892,0.008 -0.088,0.0188 -0.088,0.0283 -0.0892,0.0399 -0.0926,0.0528 -0.0973,0.0682 -0.10204,0.0869 -0.1079,0.10575 -0.11142,0.12571 -0.11494,0.14687 -0.11963,0.17036 -0.12081,0.1915 -1.0122,-0.61212 0.14895,-0.23616 0.15247,-0.21852 0.15834,-0.20091 0.16185,-0.18329 0.16889,-0.16566 0.17592,-0.14921 0.18532,-0.12924 0.19118,-0.11043 0.20055,-0.0893 0.20525,-0.0669 0.21111,-0.0447 0.21229,-0.0212 0.2111,-9.9e-4 0.21112,0.02 0.2076,0.0364 0.20524,0.054 0.20408,0.0693 0.20173,0.0823 0.2029,0.094 0.2029,0.10456 0.20291,0.11632 0.20525,0.12688 0.20876,0.13628 0.20994,0.1457 0.21463,0.15392 0.21933,0.16331 0.22401,0.17036 0.22871,0.17739 0.23457,0.18565 0.23926,0.19268 0.24747,0.19856 0.25216,0.20561 0.001,-9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path432" + d="m 387.33,617.58 1.0122,0.6133 0,0 -0.0481,0.0823 -0.0422,0.0846 -0.0387,0.0857 -0.034,0.0881 -0.0281,0.0893 -0.0246,0.0904 -0.0188,0.0916 -0.0141,0.0928 -0.008,0.094 -0.004,0.0964 0.004,0.0974 0.009,0.0987 0.0141,0.10104 0.0222,0.10339 0.0293,0.10574 0.0363,0.10809 0.0446,0.10926 0.0527,0.1128 0.0634,0.11631 0.0715,0.1175 0.0821,0.11983 0.0926,0.12338 0.10438,0.12452 0.11494,0.12572 0.12667,0.12806 0.14074,0.13042 0.15247,0.1316 0.16537,0.13158 0.17945,0.13277 0.19352,0.13276 0.2076,0.13394 0.22166,0.13393 -0.59463,1.0233 -0.25099,-0.15156 -0.23809,-0.15273 -0.22519,-0.1551 -0.21229,-0.15743 -0.19938,-0.15861 -0.18531,-0.1598 -0.17475,-0.16096 -0.16185,-0.1633 -0.15131,-0.16566 -0.1384,-0.16566 -0.12665,-0.16801 -0.11612,-0.16919 -0.10321,-0.17036 -0.0927,-0.17036 -0.0809,-0.17271 -0.0704,-0.17271 -0.0587,-0.17389 -0.047,-0.17153 -0.0375,-0.17272 -0.0258,-0.17154 -0.0153,-0.16918 -0.006,-0.16801 0.006,-0.16683 0.0141,-0.1645 0.0234,-0.15978 0.0329,-0.15743 0.041,-0.15392 0.0493,-0.14921 0.0551,-0.14568 0.0634,-0.141 0.0692,-0.13746 0.0763,-0.13276 0,0 10e-4,-9.9e-4 z m 6.5058,0.81656 -0.74358,0.92111 -0.25217,-0.20443 -0.24277,-0.19622 -0.23575,-0.18797 -0.2287,-0.18094 -0.21933,-0.17036 -0.21346,-0.1633 -0.20524,-0.15158 -0.19705,-0.14215 -0.19117,-0.13159 -0.18179,-0.11866 -0.17475,-0.1081 -0.16772,-0.0952 -0.15951,-0.0835 -0.15012,-0.0693 -0.14191,-0.0576 -0.13137,-0.0447 -0.12197,-0.0329 -0.11377,-0.02 -0.10439,-0.009 -0.0973,0 -0.0892,0.009 -0.088,0.0188 -0.088,0.0282 -0.0892,0.0388 -0.0926,0.0529 -0.0973,0.0681 -0.10204,0.0869 -0.1079,0.10573 -0.11142,0.12573 -0.11494,0.14685 -0.11963,0.17036 -0.12081,0.19269 -1.0122,-0.6133 0.14895,-0.23615 0.15248,-0.21853 0.15834,-0.20091 0.16185,-0.18328 0.16889,-0.16567 0.17592,-0.14804 0.18532,-0.13041 0.19117,-0.10926 0.20056,-0.0905 0.20525,-0.0657 0.21111,-0.0447 0.21229,-0.0223 0.2111,0 0.21112,0.0188 0.2076,0.0376 0.20524,0.054 0.20408,0.0681 0.20173,0.0823 0.2029,0.094 0.2029,0.10574 0.20291,0.11632 0.20525,0.12572 0.20876,0.13628 0.20994,0.14568 0.21463,0.15393 0.21933,0.1633 0.22401,0.17036 0.22871,0.17859 0.23457,0.18446 0.23926,0.19269 0.24747,0.19856 0.25216,0.2056 9.9e-4,-9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path434" + d="m 390.88,612.83 1.0591,0.54633 0,0 -0.0563,0.11632 -0.0516,0.12102 -0.047,0.12219 -0.041,0.12571 -0.0351,0.12806 -0.0293,0.13159 -0.0234,0.13276 -0.0164,0.1363 -0.0117,0.13745 -0.002,0.141 0.002,0.14099 0.0117,0.14451 0.0188,0.14685 0.027,0.14922 0.0352,0.15156 0.0446,0.15392 0.0528,0.15508 0.0634,0.15744 0.0727,0.15979 0.0844,0.16331 0.0938,0.16331 0.1079,0.16565 0.11728,0.16919 0.13136,0.16919 0.14426,0.17036 0.15717,0.17153 0.17123,0.1739 0.18414,0.17388 0.20056,0.17388 0.21463,0.17507 0.23105,0.17506 0.24513,0.17505 -0.67205,0.98692 -0.27562,-0.1962 -0.26155,-0.19856 -0.24629,-0.20091 -0.23223,-0.20091 -0.21697,-0.20443 -0.2029,-0.20561 -0.19001,-0.20796 -0.17475,-0.20796 -0.16303,-0.21031 -0.14778,-0.2103 -0.13604,-0.21149 -0.12316,-0.21266 -0.10907,-0.21266 -0.0985,-0.21382 -0.0844,-0.21266 -0.0727,-0.21266 -0.061,-0.21147 -0.0493,-0.21148 -0.0375,-0.20914 -0.0258,-0.20796 -0.0164,-0.20561 -0.005,-0.20326 0.006,-0.20091 0.0141,-0.19738 0.0246,-0.19502 0.0341,-0.19035 0.0422,-0.18563 0.0505,-0.18329 0.0575,-0.17859 0.0656,-0.1727 0.0727,-0.16918 0.0797,-0.16449 0,0 -10e-4,10e-4 z m 7.145,1.1032 -0.821,0.86707 -0.27796,-0.26551 -0.26858,-0.25613 -0.26038,-0.24555 -0.25216,-0.23498 -0.24277,-0.22443 -0.23576,-0.21146 -0.22635,-0.19856 -0.21933,-0.18564 -0.2111,-0.17153 -0.20292,-0.15744 -0.19351,-0.141 -0.18531,-0.12453 -0.17593,-0.10809 -0.16654,-0.0928 -0.15716,-0.074 -0.14427,-0.0576 -0.1337,-0.041 -0.12315,-0.0271 -0.11025,-0.0117 -0.10087,0 -0.0961,0.0117 -0.0926,0.0235 -0.095,0.0364 -0.0985,0.0517 -0.10555,0.0717 -0.11259,0.094 -0.11846,0.11749 -0.12432,0.14335 -0.12901,0.17152 -0.13136,0.19974 -0.13605,0.22911 -0.1384,0.2573 -1.0591,-0.54633 0.16185,-0.30077 0.16303,-0.27611 0.16889,-0.25377 0.17358,-0.23146 0.18062,-0.20913 0.18883,-0.18682 0.19821,-0.16565 0.20876,-0.141 0.21933,-0.11513 0.2287,-0.0869 0.23457,-0.0587 0.2381,-0.0293 0.23808,-9.9e-4 0.23692,0.0259 0.23222,0.0506 0.22871,0.0705 0.22518,0.0881 0.22285,0.10692 0.22167,0.12219 0.22284,0.13628 0.22284,0.15158 0.22519,0.1633 0.22752,0.17623 0.23106,0.18799 0.23574,0.19973 0.24161,0.21148 0.24512,0.22088 0.25216,0.23263 0.25686,0.24086 0.26389,0.24908 0.2721,0.25847 0.27796,0.2667 10e-4,-0.002 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path436" + d="m 394.82,607.72 1.0743,0.52283 0,0 -0.0622,0.13629 -0.0563,0.13863 -0.0504,0.14334 -0.0446,0.14569 -0.0387,0.15039 -0.0329,0.15273 -0.0258,0.15626 -0.0199,0.15862 -0.0105,0.15979 -0.005,0.16448 0.005,0.16684 0.0117,0.16918 0.0212,0.17036 0.0282,0.17389 0.0387,0.17741 0.0481,0.17742 0.0586,0.18092 0.068,0.18212 0.0809,0.18563 0.0903,0.18682 0.10204,0.18914 0.11494,0.19034 0.12784,0.19268 0.14074,0.19386 0.15482,0.19621 0.16889,0.19621 0.18296,0.19622 0.19822,0.19855 0.21228,0.19738 0.22987,0.19855 0.24513,0.19857 0.26272,0.19856 -0.70254,0.97282 -0.29203,-0.22206 -0.27679,-0.22323 -0.26038,-0.22558 -0.24395,-0.22676 -0.2287,-0.22911 -0.21463,-0.23145 -0.19939,-0.23263 -0.18532,-0.23263 -0.17123,-0.23498 -0.15598,-0.23615 -0.14193,-0.23499 -0.12901,-0.23733 -0.11494,-0.23616 -0.10203,-0.23615 -0.0892,-0.23733 -0.0751,-0.23498 -0.0634,-0.23498 -0.0504,-0.23263 -0.0387,-0.23146 -0.0281,-0.22909 -0.0164,-0.22676 -0.006,-0.22442 0.006,-0.22087 0.0164,-0.21854 0.0258,-0.21383 0.034,-0.20913 0.0434,-0.20678 0.0528,-0.20208 0.0598,-0.19622 0.068,-0.19269 0.0763,-0.18679 0.0833,-0.18094 0,0 9.9e-4,0 z m 7.552,1.2666 -0.84914,0.84475 -0.29439,-0.2996 -0.28617,-0.28903 -0.27679,-0.27845 -0.26742,-0.26553 -0.25802,-0.25378 -0.25098,-0.24084 -0.24161,-0.2256 -0.2334,-0.21029 -0.22401,-0.19387 -0.21698,-0.1774 -0.20643,-0.16097 -0.19821,-0.14215 -0.18882,-0.12338 -0.17711,-0.10457 -0.16772,-0.0846 -0.15481,-0.0646 -0.14192,-0.047 -0.13018,-0.0293 -0.11729,-0.0141 -0.1079,9.9e-4 -0.10203,0.013 -0.0985,0.0259 -0.1032,0.0422 -0.10673,0.0599 -0.11494,0.0835 -0.12198,0.10809 -0.12901,0.13629 -0.13487,0.16683 -0.13958,0.19739 -0.14308,0.2291 -0.14544,0.26083 -0.14778,0.29491 -1.0755,-0.52284 0.17006,-0.33602 0.17242,-0.309 0.17592,-0.28316 0.18179,-0.2573 0.18883,-0.2338 0.19703,-0.20796 0.2076,-0.18327 0.21815,-0.15745 0.22988,-0.12924 0.24161,-0.0986 0.24864,-0.0657 0.25334,-0.0329 0.25334,-9.9e-4 0.25098,0.0293 0.2463,0.0564 0.24278,0.0799 0.23809,0.0999 0.23574,0.11983 0.23457,0.13747 0.23457,0.15275 0.23574,0.17036 0.23809,0.18445 0.24161,0.19738 0.24512,0.21266 0.24982,0.22558 0.25451,0.23733 0.26037,0.25025 0.26741,0.26083 0.27328,0.27259 0.2803,0.28197 0.28735,0.29254 0.29556,0.30078 0.001,-0.002 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path438" + d="m 399.15,602.61 1.0016,0.63327 0,0 -0.0985,0.16684 -0.088,0.16801 -0.0751,0.16684 -0.0656,0.16566 -0.0528,0.16684 -0.0434,0.16684 -0.0329,0.16683 -0.0212,0.16919 -0.0117,0.16918 -0.002,0.17036 0.008,0.17271 0.0188,0.17506 0.0305,0.17741 0.0399,0.17976 0.0505,0.18211 0.0634,0.18447 0.0727,0.18798 0.0856,0.19033 0.0961,0.19268 0.1079,0.19503 0.11963,0.1974 0.13135,0.19973 0.14427,0.20208 0.15481,0.20326 0.16772,0.20561 0.18062,0.20678 0.19117,0.20795 0.20408,0.21031 0.21581,0.21148 0.22753,0.21149 0.23926,0.21382 0.25099,0.21383 -0.75766,0.91291 -0.26975,-0.23028 -0.25921,-0.23028 -0.24864,-0.23263 -0.23692,-0.23147 -0.22519,-0.23262 -0.21346,-0.23263 -0.2029,-0.23263 -0.19117,-0.23381 -0.17945,-0.23497 -0.16655,-0.23498 -0.15598,-0.23616 -0.14426,-0.23615 -0.13136,-0.23734 -0.11963,-0.23967 -0.1079,-0.23969 -0.0938,-0.23968 -0.0797,-0.24203 -0.068,-0.24085 -0.0551,-0.24321 -0.041,-0.2432 -0.0258,-0.2432 -0.0129,-0.24203 0.002,-0.24203 0.0176,-0.24204 0.0317,-0.23967 0.0458,-0.23851 0.0598,-0.23616 0.0763,-0.2338 0.0892,-0.23028 0.10321,-0.22793 0.11728,-0.22324 0.13018,-0.22205 0,9.9e-4 0.002,0 z m 7.525,1.4299 -0.86908,0.80716 -0.29204,-0.31606 -0.28266,-0.30312 -0.27092,-0.28784 -0.26155,-0.27376 -0.25098,-0.25731 -0.24279,-0.24202 -0.23222,-0.22559 -0.22284,-0.20796 -0.21346,-0.19151 -0.20407,-0.17153 -0.19469,-0.15391 -0.18532,-0.13394 -0.17709,-0.11514 -0.16421,-0.0952 -0.15481,-0.0764 -0.14309,-0.0576 -0.13253,-0.0399 -0.12198,-0.0235 -0.11259,-0.0105 -0.10791,0.004 -0.10438,0.0165 -0.10908,0.0293 -0.11259,0.0459 -0.12081,0.0646 -0.12901,0.0869 -0.13839,0.10927 -0.14543,0.13511 -0.15248,0.16213 -0.15951,0.19034 -0.16653,0.21619 -0.17125,0.24438 -0.17709,0.27257 -1.0028,-0.63326 0.19939,-0.30548 0.19703,-0.28198 0.19822,-0.25848 0.19938,-0.23615 0.20173,-0.21384 0.20642,-0.1915 0.21112,-0.16919 0.21814,-0.14569 0.22753,-0.12102 0.23457,-0.0952 0.24161,-0.0681 0.24747,-0.0376 0.24631,-0.007 0.24629,0.02 0.2416,0.0482 0.2381,0.0717 0.2334,0.0928 0.22987,0.11397 0.22754,0.13158 0.22635,0.14687 0.22753,0.16566 0.22871,0.17976 0.23223,0.19621 0.23691,0.21031 0.24161,0.22441 0.2463,0.23967 0.25334,0.25378 0.26036,0.26788 0.26858,0.27962 0.2768,0.29374 0.285,0.30782 0.29556,0.3184 9.9e-4,9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path440" + d="m 462.62,580.6 -9.4895,-5.3752 c -3.9924,2.8668 -6.9456,13.516 -0.12315,22.215 8.5032,10.843 11.947,18.704 14.025,27.481 6.1891,-7.9294 8.3178,-16.27 4.3876,-24.406 -5.3024,-10.976 -8.753,-17.165 -8.7999,-19.915 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;stroke:#21231e;stroke-width:0.99388075" /> + <path + id="path442" + d="m 470.37,573.01 -9.4895,-5.3752 c -3.9924,2.8679 -12.335,13.179 -5.5136,21.877 8.5032,10.843 17.338,19.044 19.415,27.819 6.1903,-7.9282 8.8233,-16.271 4.8943,-24.407 -5.3024,-10.975 -9.2585,-17.164 -9.3066,-19.913 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;stroke:#21231e;stroke-width:0.99388075" /> + <path + id="path444" + d="m 449.43,569.16 -9.4895,-5.3752 c -3.9924,2.8668 -6.9456,13.515 -0.12315,22.214 8.5043,10.844 11.947,18.706 14.025,27.482 6.1903,-7.9294 8.319,-16.271 4.3888,-24.407 -5.3036,-10.975 -8.753,-17.164 -8.8011,-19.913 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;stroke:#21231e;stroke-width:0.99388075" /> + <path + id="path446" + d="m 405.49,468.99 c 0.18179,8.6778 -1.3558,66.559 -1.8402,74.738 -0.48321,8.1444 -4.0921,13.695 -7.9378,16.877 -3.5268,-4.8488 -5.632,-11.392 -6.134,-19.156 -0.25451,-3.9582 0.47382,-58.733 0.77759,-69.991 6.4812,-17.161 11.29,-17.811 15.134,-2.4685 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path448" + d="m 404.14,543.76 -0.99222,-0.0588 0,0 0.0481,-0.90466 0.0539,-1.1784 0.0598,-1.4369 0.0634,-1.6731 0.068,-1.8916 0.0715,-2.0925 0.0751,-2.277 0.0774,-2.4391 0.0797,-2.5871 0.0809,-2.7152 0.0821,-2.8256 0.0833,-2.9173 0.0821,-2.9913 0.0833,-3.0465 0.0809,-3.0841 0.0797,-3.1053 0.0785,-3.1053 0.0763,-3.0888 0.0727,-3.0547 0.0692,-3.0007 0.0645,-2.9302 0.0598,-2.8409 0.0551,-2.734 0.0504,-2.6094 0.0446,-2.4638 0.0375,-2.304 0.0305,-2.1242 0.0234,-1.9257 0.0153,-1.7083 0.006,-1.4745 -0.002,-1.2195 -0.0117,-0.94815 0.99457,-0.0212 0.0117,0.96224 0.002,1.229 -0.006,1.4792 -0.0153,1.713 -0.0234,1.928 -0.0305,2.1266 -0.0375,2.304 -0.0446,2.4661 -0.0504,2.6094 -0.0551,2.7364 -0.0622,2.8409 -0.0645,2.9326 -0.0692,3.0007 -0.0727,3.0548 -0.0763,3.0912 -0.0785,3.1053 -0.0797,3.1053 -0.0809,3.0841 -0.0833,3.0489 -0.0821,2.9913 -0.0833,2.9173 -0.0821,2.8256 -0.0809,2.7175 -0.0797,2.5871 -0.0774,2.4414 -0.0751,2.277 -0.0716,2.0948 -0.068,1.894 -0.0633,1.6754 -0.0598,1.4393 -0.0539,1.1855 -0.0481,0.91408 0,0 z m -8.8351,17.141 0.80222,-0.5851 -0.71778,-0.0916 0.35068,-0.29724 0.34834,-0.31136 0.34716,-0.32426 0.34247,-0.33838 0.34131,-0.35247 0.3366,-0.36656 0.33191,-0.3795 0.32723,-0.39477 0.32136,-0.40769 0.31667,-0.42179 0.30963,-0.43589 0.3026,-0.44998 0.29438,-0.46409 0.28618,-0.47819 0.27913,-0.49346 0.26977,-0.50637 0.26036,-0.52049 0.24865,-0.53575 0.23926,-0.55104 0.22754,-0.56395 0.2158,-0.57922 0.20525,-0.5945 0.19117,-0.6086 0.17828,-0.62269 0.16419,-0.63798 0.15013,-0.65325 0.13605,-0.66851 0.11963,-0.68262 0.10438,-0.69672 0.088,-0.71434 0.0715,-0.72844 0.0528,-0.74254 0.99223,0.0588 -0.0551,0.76838 -0.0739,0.75429 -0.0903,0.73784 -0.10908,0.72256 -0.12432,0.70847 -0.14074,0.69436 -0.15482,0.67674 -0.17124,0.66382 -0.1853,0.64855 -0.20056,0.63445 -0.21229,0.618 -0.22518,0.60271 -0.23692,0.58981 -0.25099,0.57452 -0.26038,0.55926 -0.27209,0.54398 -0.28149,0.52988 -0.29086,0.51461 -0.30025,0.50168 -0.30846,0.48523 -0.31667,0.47115 -0.32371,0.45703 -0.33075,0.44293 -0.33777,0.42649 -0.34365,0.41357 -0.34833,0.39828 -0.35304,0.38538 -0.35771,0.36891 -0.36124,0.35718 -0.36358,0.34073 -0.3671,0.32779 -0.36945,0.3137 -0.71778,-0.0916 z m 0.71778,0.0916 -0.40698,0.33602 -0.3108,-0.42767 0.71778,0.0916 z m -6.9468,-19.508 0.99224,-0.0634 0.0504,0.71669 0.061,0.71082 0.0692,0.70258 0.0797,0.69554 0.088,0.68732 0.0973,0.68027 0.10556,0.67204 0.1161,0.66381 0.12433,0.65678 0.13253,0.64738 0.14309,0.64149 0.15012,0.63092 0.15951,0.62388 0.17006,0.61564 0.17593,0.60625 0.18648,0.59921 0.19469,0.5898 0.20291,0.5804 0.21346,0.57217 0.22049,0.56395 0.22871,0.55339 0.23809,0.54633 0.24512,0.53693 0.25451,0.52635 0.26272,0.51695 0.26975,0.50756 0.28032,0.49934 0.28735,0.49111 0.29555,0.47818 0.30377,0.46996 0.31315,0.46056 0.31901,0.45117 -0.80222,0.58509 -0.33309,-0.4676 -0.32488,-0.47936 -0.3155,-0.48641 -0.30728,-0.49934 -0.29673,-0.50756 -0.2897,-0.51577 -0.28148,-0.52636 -0.27211,-0.53576 -0.26154,-0.54516 -0.25451,-0.55337 -0.24512,-0.56278 -0.23574,-0.57218 -0.22754,-0.5804 -0.21815,-0.58862 -0.20994,-0.59921 -0.19939,-0.60624 -0.19117,-0.6133 -0.18296,-0.6227 -0.17241,-0.6321 -0.16419,-0.64032 -0.15483,-0.64737 -0.14543,-0.65559 -0.13723,-0.66383 -0.12666,-0.67087 -0.11846,-0.68026 -0.1079,-0.68614 -0.0997,-0.69437 -0.0904,-0.70141 -0.0797,-0.70964 -0.0715,-0.7167 -0.061,-0.72491 -0.0527,-0.73078 z m 0.80928,-70.199 0.92889,0.35247 0.0317,-0.16332 -0.0293,1.1784 -0.0329,1.4169 -0.0317,1.6366 -0.0364,1.8423 -0.0363,2.0267 -0.0387,2.1947 -0.0387,2.3475 -0.0399,2.4814 -0.041,2.5966 -0.0398,2.6976 -0.041,2.7798 -0.0399,2.8444 -0.0387,2.8926 -0.0387,2.9232 -0.0375,2.9349 -0.0363,2.9326 -0.0341,2.9102 -0.0329,2.8726 -0.0305,2.8151 -0.0282,2.7422 -0.0246,2.6529 -0.0234,2.5437 -0.0188,2.4191 -0.0153,2.277 -0.0129,2.1172 -0.008,1.9386 -0.004,1.7459 10e-4,1.5344 0.005,1.3041 0.0105,1.0574 0.0141,0.79072 0.0211,0.49933 -0.99224,0.0634 -0.0211,-0.53458 -0.0164,-0.80481 -0.0105,-1.0645 -0.005,-1.3088 -9.9e-4,-1.5368 0.004,-1.7482 0.008,-1.9409 0.0129,-2.1195 0.0153,-2.277 0.0188,-2.4215 0.0234,-2.5437 0.0246,-2.6529 0.0281,-2.7422 0.0305,-2.8174 0.0329,-2.8726 0.0341,-2.9102 0.0363,-2.9326 0.0375,-2.9373 0.0387,-2.9232 0.0387,-2.8926 0.0399,-2.8444 0.041,-2.7798 0.0399,-2.6976 0.041,-2.5989 0.0398,-2.4814 0.0387,-2.3475 0.0387,-2.1971 0.0363,-2.0267 0.0364,-1.8422 0.034,-1.639 0.0329,-1.4193 0.0293,-1.1808 0.0317,-0.16332 z m -0.0317,0.16331 0.002,-0.0858 0.0293,-0.0775 -0.0317,0.16331 z m 16.128,-2.4661 -0.99457,0.0212 0.0152,0.11044 -0.36124,-1.3817 -0.36475,-1.2865 -0.3718,-1.1914 -0.3753,-1.095 -0.38118,-0.99866 -0.38588,-0.90232 -0.38821,-0.80364 -0.39173,-0.70729 -0.39173,-0.60625 -0.39173,-0.50756 -0.38821,-0.40886 -0.38001,-0.31017 -0.37061,-0.21737 -0.3589,-0.13276 -0.35655,-0.0552 -0.36123,0.02 -0.38353,0.0986 -0.4058,0.18446 -0.43277,0.27611 -0.4539,0.37244 -0.47266,0.47348 -0.48908,0.57101 -0.50198,0.67087 -0.51605,0.76955 -0.52779,0.86827 -0.53833,0.96693 -0.54889,1.0656 -0.55829,1.1631 -0.56999,1.2595 -0.5794,1.3594 -0.58994,1.4557 -0.60049,1.5532 -0.9289,-0.35247 0.60519,-1.5673 0.59698,-1.4722 0.58642,-1.3758 0.57939,-1.2806 0.57,-1.1866 0.56297,-1.0915 0.55476,-0.99749 0.54889,-0.90351 0.54186,-0.8095 0.53716,-0.71787 0.536,-0.62504 0.53364,-0.53223 0.53599,-0.44059 0.54303,-0.34659 0.55124,-0.24791 0.55945,-0.14334 0.56532,-0.0317 0.55592,0.0858 0.53717,0.1962 0.51371,0.30196 0.48791,0.39711 0.46562,0.49111 0.44803,0.58041 0.43395,0.66968 0.41988,0.759 0.41167,0.85061 0.40229,0.93994 0.39291,1.0339 0.38703,1.1232 0.37884,1.2172 0.37178,1.31 0.36593,1.4005 0.0152,0.11044 z m -0.0153,-0.11044 0.0141,0.0564 9.9e-4,0.054 -0.0153,-0.11045 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path450" + d="m 367.87,454.83 -2.456,79.583 c -0.77525,7.06 8.4175,49.073 13.442,57.361 12.436,-5.3176 15.062,-33.821 12.721,-61.594 -2.3398,-27.775 0.39173,-51.76 2.2882,-56.751 0.16537,-6.2822 -0.8902,-12.835 -0.95235,-19.378 -7.9179,0.47349 -17.125,0.30431 -25.043,0.77896 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path452" + d="m 364.91,534.4 2.4559,-79.583 0.99223,0.0305 -2.456,79.583 -0.002,0.0388 -0.98989,-0.0694 z m 0.99222,0.0305 -9.9e-4,0.0247 -9.9e-4,0.0142 0.002,-0.0388 z m 12.751,56.888 0.38939,0.91642 -0.61926,-0.19974 -0.5008,-0.90585 -0.51489,-1.0809 -0.5313,-1.2477 -0.54655,-1.4052 -0.5571,-1.5473 -0.56883,-1.6813 -0.57704,-1.8023 -0.58408,-1.9116 -0.58643,-2.0067 -0.58759,-2.0913 -0.58525,-2.163 -0.58174,-2.2206 -0.57587,-2.2676 -0.56531,-2.3016 -0.55358,-2.324 -0.53952,-2.3322 -0.52308,-2.3275 -0.50198,-2.3122 -0.48088,-2.284 -0.45506,-2.2429 -0.42809,-2.1877 -0.39994,-2.123 -0.36475,-2.0443 -0.33193,-1.9515 -0.2932,-1.8505 -0.25334,-1.7342 -0.20877,-1.6049 -0.16537,-1.4651 -0.11728,-1.3159 -0.0656,-1.1526 -0.0129,-0.98105 0.047,-0.80716 0.98754,0.10811 -0.0399,0.71786 0.0105,0.92699 0.0634,1.115 0.11494,1.2877 0.16303,1.4463 0.20877,1.5885 0.25098,1.72 0.29086,1.8387 0.32957,1.9421 0.36477,2.0349 0.39759,2.116 0.42574,2.1806 0.45507,2.2358 0.47852,2.277 0.50198,2.3052 0.52075,2.3228 0.53717,2.3251 0.55358,2.3169 0.56296,2.2946 0.57352,2.2605 0.5794,2.2135 0.5829,2.1536 0.58526,2.0819 0.58408,1.9973 0.57938,1.8975 0.57235,1.7882 0.56414,1.6648 0.55007,1.5286 0.53482,1.377 0.51722,1.2148 0.49377,1.0363 0.46563,0.8424 -0.61928,-0.19973 z m 0.38939,0.91642 -0.39524,0.16919 -0.22402,-0.36893 0.61926,0.19974 z m 12.031,-62.01 0.98989,-0.0846 0.20524,2.6106 0.17593,2.6118 0.14309,2.6059 0.1126,2.5977 0.0797,2.586 0.047,2.566 0.0117,2.546 -0.0246,2.5202 -0.061,2.4884 -0.0962,2.4544 -0.13605,2.4156 -0.17476,2.3721 -0.21463,2.3251 -0.25568,2.2722 -0.29673,2.2159 -0.33896,2.156 -0.38469,2.0913 -0.42926,2.022 -0.47384,1.948 -0.52073,1.8704 -0.57001,1.7906 -0.61809,1.7036 -0.6697,1.612 -0.72013,1.518 -0.77408,1.4204 -0.8292,1.3171 -0.88434,1.209 -0.94296,1.0962 -1.0028,0.97986 -1.0638,0.85532 -1.1259,0.72492 -1.1881,0.59215 -0.38939,-0.91641 1.0872,-0.54046 1.0344,-0.66853 0.98637,-0.79187 0.93711,-0.91643 0.88902,-1.0327 0.84211,-1.1502 0.79401,-1.2607 0.74593,-1.3688 0.69668,-1.471 0.65093,-1.5697 0.60402,-1.6637 0.55827,-1.753 0.51137,-1.8375 0.46679,-1.9174 0.42222,-1.9938 0.38001,-2.0655 0.3366,-2.1324 0.29439,-2.1947 0.25334,-2.2511 0.21228,-2.3063 0.17241,-2.3533 0.13605,-2.3992 0.0961,-2.4379 0.0587,-2.4744 0.0246,-2.5061 -0.0117,-2.5319 -0.0446,-2.5542 -0.0797,-2.5719 -0.1126,-2.586 -0.14308,-2.5942 -0.17358,-2.6001 -0.20526,-2.5989 z m 2.2871,-56.806 0.99223,0.0259 -0.0317,0.16449 -0.17124,0.49462 -0.17709,0.61331 -0.18297,0.72138 -0.18648,0.82948 -0.18649,0.92935 -0.18648,1.0292 -0.18648,1.1256 -0.18297,1.2172 -0.17827,1.3077 -0.17475,1.3934 -0.16889,1.478 -0.16185,1.5591 -0.15482,1.6366 -0.14426,1.7118 -0.13488,1.7847 -0.12315,1.854 -0.11142,1.921 -0.0973,1.9844 -0.0833,2.0455 -0.068,2.1054 -0.0493,2.1595 -0.0329,2.2124 -0.0141,2.264 0.006,2.3099 0.027,2.3545 0.0481,2.3956 0.0715,2.4344 0.0973,2.4708 0.12197,2.5049 0.14778,2.5343 0.17476,2.5636 0.20525,2.586 -0.98989,0.0846 -0.20524,-2.5977 -0.17711,-2.573 -0.14778,-2.5437 -0.12197,-2.5143 -0.0973,-2.4802 -0.0715,-2.4438 -0.0504,-2.405 -0.027,-2.3639 -0.006,-2.3193 0.0141,-2.2711 0.0329,-2.2217 0.0516,-2.1689 0.068,-2.1125 0.0832,-2.0549 0.0973,-1.9938 0.11142,-1.928 0.12315,-1.8634 0.13723,-1.7941 0.14425,-1.7212 0.15482,-1.646 0.1642,-1.5685 0.16889,-1.4874 0.1771,-1.4052 0.18062,-1.3194 0.18531,-1.2313 0.18883,-1.1397 0.18883,-1.0457 0.19117,-0.95049 0.19118,-0.85298 0.18999,-0.75194 0.18883,-0.65089 0.19001,-0.55103 -0.0317,0.16448 z m 0.99223,0.0259 -0.002,0.0869 -0.0293,0.0776 0.0317,-0.16449 z m -1.4192,-18.894 -0.0586,-0.99397 0.5266,0.49229 0.008,0.6086 0.0129,0.60859 0.02,0.60979 0.0234,0.60977 0.0281,0.60977 0.0317,0.61094 0.0351,0.60978 0.0375,0.61094 0.041,0.6086 0.0422,0.61095 0.0434,0.60977 0.0458,0.60978 0.0469,0.6086 0.0481,0.60977 0.0469,0.6086 0.0481,0.6086 0.0469,0.60859 0.0446,0.60743 0.0458,0.60626 0.0422,0.60625 0.0398,0.60625 0.0375,0.60507 0.034,0.60389 0.0305,0.6039 0.027,0.60391 0.0222,0.60155 0.0176,0.60037 0.0141,0.60038 0.007,0.59802 9.9e-4,0.5992 -0.006,0.59567 -0.0129,0.59569 -0.99223,-0.0259 0.0105,-0.58391 0.006,-0.58628 -9.9e-4,-0.58745 -0.007,-0.58863 -0.0117,-0.59097 -0.0176,-0.59333 -0.0222,-0.5945 -0.027,-0.59685 -0.0305,-0.59686 -0.034,-0.59919 -0.0375,-0.60037 -0.0399,-0.60154 -0.0422,-0.6039 -0.0434,-0.60391 -0.0446,-0.60508 -0.0469,-0.60625 -0.0481,-0.6086 -0.0469,-0.6086 -0.0481,-0.60977 -0.0469,-0.61094 -0.0458,-0.61213 -0.0458,-0.61212 -0.0422,-0.61331 -0.041,-0.61328 -0.0375,-0.61565 -0.0352,-0.61448 -0.0317,-0.61565 -0.0281,-0.61682 -0.0234,-0.61682 -0.02,-0.61683 -0.0153,-0.618 -0.008,-0.618 0.5266,0.49229 z m -0.0586,-0.99397 0.52191,-0.0317 0.005,0.52401 -0.52661,-0.49229 z m -24.517,1.2912 -0.99224,-0.0305 0.4668,-0.48171 0.74828,-0.0422 0.75532,-0.04 0.76234,-0.0352 0.76822,-0.0329 0.77291,-0.0293 0.77877,-0.0282 0.78229,-0.0247 0.78699,-0.0223 0.79049,-0.0212 0.79403,-0.02 0.79636,-0.0188 0.79988,-0.0165 0.79988,-0.0153 0.80106,-0.0154 0.80223,-0.0153 0.8034,-0.0142 0.80223,-0.0142 0.80106,-0.0142 0.80105,-0.0153 0.79871,-0.0164 0.79871,-0.0165 0.79402,-0.0165 0.79167,-0.0188 0.78815,-0.0212 0.78464,-0.0235 0.77994,-0.0247 0.77526,-0.0271 0.76939,-0.0293 0.76352,-0.0329 0.75767,-0.0364 0.75062,-0.0388 0.74359,-0.0422 0.0587,0.99397 -0.74828,0.0422 -0.75532,0.0388 -0.76234,0.0364 -0.76822,0.0329 -0.77408,0.0293 -0.7776,0.0271 -0.78229,0.0247 -0.78698,0.0235 -0.7905,0.0212 -0.79402,0.0188 -0.79637,0.0188 -0.79871,0.0163 -0.80105,0.0165 -0.80106,0.0154 -0.8034,0.0142 -0.80223,0.0142 -0.80106,0.0142 -0.80222,0.0153 -0.80106,0.0153 -0.79989,0.0154 -0.79754,0.0165 -0.79401,0.0164 -0.79167,0.02 -0.78816,0.0212 -0.78463,0.0223 -0.77995,0.0247 -0.77407,0.0282 -0.77057,0.0293 -0.76353,0.0329 -0.75766,0.0352 -0.75062,0.0399 -0.74358,0.0423 0.46679,-0.48171 z m -0.99224,-0.0305 0.0141,-0.45469 0.45271,-0.0271 -0.4668,0.48171 z m 0.49612,0.0153 0.49612,0.0154 -0.49612,-0.0154 z m -0.49612,-0.0153 0.0141,-0.45469 0.45271,-0.0271 -0.4668,0.48171 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path454" + d="m 353.13,467.85 1.6889,79.603 c -0.4058,7.094 10.96,48.541 16.409,56.542 12.613,-9.7893 10.075,-49.808 8.1419,-61.917 -3.8516,-24.13 -3.1972,-52.079 -1.8684,-56.621 -0.16068,-6.2822 -0.32136,-13.805 -0.72364,-20.334 -7.8827,0.9082 -15.764,1.8188 -23.647,2.727 h -9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path456" + d="m 354.32,547.47 -1.6889,-79.603 0.99457,-0.0212 1.6889,79.603 -9.9e-4,0.0388 -0.9934,-0.0177 z m 0.99457,-0.0212 0,0.013 -9.9e-4,0.0259 9.9e-4,-0.0388 z m 15.608,56.159 0.60753,0.78719 -0.71426,-0.1128 -0.54655,-0.87648 -0.57235,-1.0515 -0.59463,-1.2172 -0.61692,-1.3723 -0.6392,-1.5156 -0.65563,-1.6496 -0.6697,-1.7671 -0.68259,-1.8752 -0.69081,-1.9726 -0.69433,-2.0561 -0.69785,-2.1266 -0.69666,-2.1877 -0.69198,-2.2323 -0.68495,-2.2676 -0.67439,-2.2899 -0.65914,-2.2981 -0.64272,-2.2969 -0.62279,-2.2816 -0.59815,-2.2535 -0.57118,-2.2135 -0.54185,-2.1618 -0.50902,-2.0984 -0.47266,-2.0208 -0.43161,-1.9327 -0.38938,-1.8293 -0.34247,-1.7177 -0.29439,-1.592 -0.24161,-1.4545 -0.18413,-1.3065 -0.12667,-1.1467 -0.0622,-0.98104 0.004,-0.80833 0.99223,0.0564 -0.004,0.71902 0.0598,0.92466 0.12199,1.1114 0.18179,1.2783 0.23691,1.4357 0.29204,1.5756 0.34012,1.7036 0.38705,1.8199 0.42926,1.921 0.47031,2.0138 0.50667,2.089 0.53952,2.1548 0.57117,2.2088 0.5958,2.2464 0.62045,2.2746 0.64037,2.2899 0.65914,2.2934 0.67204,2.2828 0.6826,2.2605 0.68964,2.2253 0.69432,2.1782 0.69551,2.1195 0.69198,2.0467 0.68611,1.9609 0.67791,1.8634 0.665,1.7553 0.64859,1.6308 0.62982,1.4968 0.60754,1.3464 0.57821,1.1843 0.54654,1.0069 0.50902,0.81538 -0.71426,-0.11279 z m 0.60753,0.78719 -0.41753,0.32309 -0.29673,-0.43589 0.71426,0.1128 z m 7.3479,-62.232 0.9805,-0.15744 0.18414,1.2231 0.18413,1.377 0.18179,1.5156 0.17593,1.6484 0.16889,1.7682 0.15716,1.8798 0.14427,1.9785 0.12667,2.0666 0.10672,2.1466 0.0844,2.2135 0.061,2.2723 0.0305,2.3169 0,2.3545 -0.0352,2.3792 -0.0704,2.3956 -0.11024,2.3992 -0.15482,2.3933 -0.19821,2.3768 -0.24865,2.3498 -0.30025,2.3122 -0.35537,2.264 -0.41167,2.2053 -0.47265,2.136 -0.53835,2.0584 -0.60401,1.968 -0.67556,1.8681 -0.74946,1.7588 -0.82802,1.6366 -0.91014,1.5074 -0.99809,1.364 -1.0884,1.2113 -1.1846,1.0445 -0.60753,-0.78719 1.0931,-0.9646 1.0157,-1.1314 0.94179,-1.2889 0.86791,-1.4369 0.79754,-1.5755 0.72599,-1.7024 0.6568,-1.8188 0.59229,-1.9257 0.52661,-2.0185 0.46562,-2.1031 0.40698,-2.1747 0.35068,-2.2358 0.29556,-2.2887 0.2463,-2.3263 0.19821,-2.3557 0.15247,-2.3745 0.11024,-2.3827 0.0704,-2.3792 0.0329,-2.3651 0,-2.3404 -0.0305,-2.3052 -0.0587,-2.2582 -0.0844,-2.2018 -0.10673,-2.1348 -0.12667,-2.0572 -0.14191,-1.9668 -0.15717,-1.8681 -0.16654,-1.7565 -0.17593,-1.6366 -0.17944,-1.5039 -0.18179,-1.3606 -0.18179,-1.2066 z m -1.8742,-56.687 0.99223,-0.0259 -0.0188,0.15275 -0.11377,0.4582 -0.11376,0.60389 -0.11025,0.73786 -0.10556,0.86237 -0.0985,0.98339 -0.0915,1.0962 -0.0833,1.2054 -0.0751,1.3088 -0.0656,1.4064 -0.0551,1.4992 -0.0446,1.5861 -0.0317,1.6695 -0.02,1.7459 -0.007,1.8188 0.006,1.8869 0.0212,1.9492 0.0351,2.0067 0.0516,2.0584 0.0692,2.1066 0.0856,2.1477 0.10439,2.1853 0.12198,2.2194 0.14191,2.2452 0.16068,2.2676 0.18296,2.2852 0.20407,2.2969 0.22637,2.3063 0.24864,2.3063 0.27211,2.3052 0.29673,2.2969 0.32136,2.284 0.34715,2.2664 -0.9805,0.15744 -0.34951,-2.2781 -0.3237,-2.2958 -0.29673,-2.3087 -0.27445,-2.3146 -0.24864,-2.3181 -0.22871,-2.3134 -0.20407,-2.3063 -0.18297,-2.2946 -0.16302,-2.277 -0.14192,-2.2523 -0.12197,-2.2264 -0.10439,-2.1924 -0.0856,-2.1571 -0.0692,-2.1136 -0.0516,-2.0655 -0.0375,-2.0138 -0.0211,-1.9562 -0.006,-1.8939 0.007,-1.8258 0.02,-1.7553 0.034,-1.6766 0.0446,-1.5955 0.0551,-1.5086 0.0656,-1.4158 0.0751,-1.3206 0.0856,-1.2172 0.0915,-1.1126 0.10086,-1.0022 0.1079,-0.88587 0.11495,-0.7684 0.12315,-0.64854 0.13018,-0.5287 -0.0188,0.15273 z m 0.99223,-0.0259 0.002,0.0811 -0.0211,0.0717 0.0188,-0.15274 z m -1.1635,-19.826 -0.11259,-0.98926 0.55241,0.46408 0.0375,0.61565 0.0351,0.62152 0.034,0.6274 0.0329,0.63092 0.0317,0.63562 0.0317,0.63915 0.0293,0.64149 0.0281,0.6462 0.027,0.64737 0.0258,0.64855 0.0258,0.65207 0.0246,0.65207 0.0234,0.65442 0.0222,0.65443 0.0223,0.65323 0.0211,0.65442 0.02,0.65326 0.02,0.65089 0.0188,0.65089 0.0188,0.64737 0.0176,0.6462 0.0176,0.64267 0.0176,0.64032 0.0164,0.63562 0.0164,0.6321 0.0164,0.62739 0.0153,0.62506 0.0153,0.61564 0.0153,0.61212 0.0153,0.60625 0.0153,0.59921 0.0153,0.59215 -0.99224,0.0259 -0.0153,-0.59214 -0.0153,-0.59921 -0.0153,-0.60624 -0.0153,-0.61213 -0.0153,-0.618 -0.0153,-0.62269 -0.0164,-0.6274 -0.0164,-0.6321 -0.0164,-0.63562 -0.0176,-0.63797 -0.0176,-0.64267 -0.0176,-0.6462 -0.0188,-0.64738 -0.0188,-0.64854 -0.02,-0.65089 -0.02,-0.65325 -0.0212,-0.65207 -0.0222,-0.65323 -0.0223,-0.65209 -0.0234,-0.65207 -0.0246,-0.65207 -0.0258,-0.64972 -0.0258,-0.64854 -0.027,-0.64502 -0.0281,-0.64385 -0.0293,-0.63914 -0.0317,-0.6368 -0.0317,-0.63328 -0.0329,-0.62856 -0.034,-0.62505 -0.0352,-0.61918 -0.0375,-0.61329 0.55241,0.46408 z m -0.11259,-0.98926 0.51958,-0.0599 0.0329,0.524 -0.55241,-0.46408 z m -23.591,3.7197 0,-0.9963 -0.0563,0.004 0.7389,-0.0845 0.73889,-0.0858 0.7389,-0.0845 0.73889,-0.0858 0.7389,-0.0845 0.73772,-0.0858 0.74124,-0.0857 0.73889,-0.0846 0.73889,-0.0857 0.7389,-0.0846 0.73889,-0.0857 0.7389,-0.0846 0.73889,-0.0857 0.73889,-0.0846 0.7389,-0.0857 0.73889,-0.0846 0.73772,-0.0857 0.74007,-0.0858 0.73889,-0.0846 0.7389,-0.0857 0.7389,-0.0846 0.7389,-0.0857 0.73889,-0.0846 0.73889,-0.0857 0.7389,-0.0846 0.73889,-0.0857 0.74007,-0.0858 0.73889,-0.0845 0.7389,-0.0858 0.73889,-0.0845 0.73889,-0.0858 0.7389,-0.0845 0.11259,0.98927 -0.73889,0.0845 -0.73889,0.0858 -0.7389,0.0845 -0.73889,0.0858 -0.7389,0.0846 -0.73772,0.0857 -0.74125,0.0857 -0.73889,0.0846 -0.73889,0.0857 -0.7389,0.0846 -0.73889,0.0857 -0.7389,0.0846 -0.73889,0.0857 -0.73889,0.0846 -0.73773,0.0857 -0.74006,0.0857 -0.7389,0.0846 -0.73889,0.0857 -0.73889,0.0846 -0.7389,0.0857 -0.73889,0.0846 -0.7389,0.0857 -0.73889,0.0846 -0.73889,0.0857 -0.7389,0.0846 -0.73889,0.0858 -0.74008,0.0857 -0.73889,0.0846 -0.7389,0.0857 -0.73889,0.0846 -0.73889,0.0857 -0.7389,0.0846 -0.0563,0.004 z m 0.0563,-0.004 -0.0305,0.004 -0.0258,0 0.0563,-0.004 z m -0.0575,-0.99279 9.9e-4,0 0,0.99631 -9.9e-4,0 -0.49729,-0.48758 0.49729,-0.50873 z m -0.49729,0.50873 -0.0105,-0.50873 0.50785,0 -0.49729,0.50873 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path458" + d="m 342.19,486.7 20.911,-0.53341 c -1.7769,8.6837 -0.35537,35.655 3.2523,56.214 3.3825,19.277 8.1067,69.272 -11.96,81.276 -12.444,-26.379 -2.9696,-52.014 -9.2409,-74.92 -4.8931,-24.344 -5.8584,-44.679 -2.9626,-62.037 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path460" + d="m 363.12,486.66 -20.911,0.53341 -0.0258,-0.99396 20.911,-0.53341 0.49963,0.59685 -0.47384,0.39711 z m -0.0258,-0.99396 0.62512,-0.0164 -0.12549,0.6133 -0.49963,-0.59685 z m 3.7543,56.626 -0.97816,0.17153 -0.3331,-1.9503 -0.31901,-1.982 -0.30611,-2.0114 -0.29204,-2.0349 -0.28031,-2.0537 -0.26506,-2.0702 -0.25217,-2.0796 -0.23691,-2.0843 -0.22284,-2.0866 -0.20877,-2.0843 -0.19352,-2.0749 -0.17945,-2.0643 -0.16302,-2.0467 -0.15013,-2.0255 -0.13253,-1.9997 -0.11729,-1.9691 -0.10203,-1.9351 -0.0856,-1.8963 -0.0692,-1.8528 -0.0528,-1.8035 -0.0387,-1.7518 -0.02,-1.6942 -0.002,-1.6343 0.0141,-1.5661 0.0317,-1.4968 0.0492,-1.4228 0.0656,-1.3429 0.0856,-1.2595 0.10321,-1.1714 0.12198,-1.0821 0.14074,-0.98458 0.16068,-0.88821 0.97347,0.19973 -0.15365,0.84593 -0.13604,0.95402 -0.11964,1.0539 -0.10086,1.1502 -0.0833,1.2407 -0.0656,1.3265 -0.0493,1.4087 -0.0293,1.4827 -0.0141,1.5567 0.002,1.6225 0.02,1.6848 0.0363,1.7424 0.0528,1.7964 0.0692,1.8434 0.0856,1.8892 0.10204,1.928 0.11728,1.9621 0.13253,1.9926 0.14778,2.0208 0.16302,2.0396 0.17945,2.0572 0.19353,2.0678 0.20642,2.0772 0.22284,2.0796 0.23691,2.0796 0.24982,2.0725 0.26507,2.0608 0.27796,2.0467 0.29204,2.0279 0.30377,2.002 0.31902,1.975 0.33074,1.9409 z m -12.898,81.575 0.8984,-0.42531 -0.70371,-0.21501 1.7616,-1.2019 1.6267,-1.4075 1.4989,-1.6061 1.3746,-1.7906 1.2538,-1.9644 1.1377,-2.1278 1.0262,-2.277 0.916,-2.4144 0.81278,-2.539 0.71075,-2.6494 0.61574,-2.7504 0.52309,-2.835 0.43748,-2.909 0.35537,-2.969 0.2768,-3.0172 0.20407,-3.0524 0.13605,-3.0735 0.0704,-3.0853 0.0129,-3.0806 -0.041,-3.0653 -0.0892,-3.036 -0.13604,-2.996 -0.17593,-2.942 -0.20994,-2.875 -0.24043,-2.7974 -0.26624,-2.7046 -0.28735,-2.6 -0.3026,-2.4838 -0.31549,-2.3545 -0.32018,-2.2123 -0.32254,-2.0561 -0.31902,-1.8892 0.97816,-0.17153 0.32136,1.901 0.32488,2.0678 0.32253,2.2241 0.3155,2.3639 0.30494,2.4955 0.28735,2.6118 0.26858,2.7164 0.24043,2.8092 0.21229,2.8891 0.17593,2.9561 0.13605,3.0101 0.0915,3.0524 0.041,3.0818 -0.0129,3.0994 -0.0727,3.1041 -0.13605,3.097 -0.20642,3.0759 -0.27914,3.043 -0.35772,2.9972 -0.44217,2.9396 -0.53012,2.8703 -0.62513,2.788 -0.72247,2.694 -0.82686,2.586 -0.93711,2.4661 -1.052,2.3357 -1.1705,2.1912 -1.2983,2.0326 -1.4309,1.8634 -1.5669,1.679 -1.7112,1.4804 -1.8578,1.2677 -0.70371,-0.21502 z m 0.70371,0.21501 -0.46914,0.28079 -0.23457,-0.4958 0.70371,0.21501 z m -9.9822,-75.249 0.97346,-0.1974 -0.007,-0.0329 0.54772,2.1747 0.46092,2.1888 0.38118,2.2029 0.3108,2.217 0.24513,2.2288 0.18531,2.2429 0.13487,2.2546 0.0903,2.2664 0.0539,2.277 0.0234,2.2887 -9.9e-4,2.3005 -0.0164,2.3099 -0.0258,2.3204 -0.0293,2.3298 -0.0246,2.338 -0.0129,2.3498 0.005,2.3568 0.0293,2.3663 0.061,2.3733 0.0997,2.3815 0.14661,2.3886 0.19703,2.3956 0.25686,2.4027 0.32253,2.4097 0.39525,2.4144 0.47383,2.4215 0.56179,2.4262 0.65446,2.432 0.75297,2.4379 0.86086,2.4426 0.97464,2.4473 1.0954,2.452 -0.89839,0.42531 -1.1119,-2.4896 -0.98871,-2.4849 -0.87495,-2.4802 -0.76469,-2.4732 -0.66384,-2.4673 -0.56883,-2.4591 -0.48087,-2.4544 -0.39994,-2.445 -0.32723,-2.4356 -0.2592,-2.4285 -0.19938,-2.4191 -0.14661,-2.4074 -0.0997,-2.4003 -0.0634,-2.3874 -0.0293,-2.378 -0.005,-2.3662 0.0129,-2.3545 0.0246,-2.3428 0.0293,-2.3298 0.0258,-2.3181 0.0164,-2.3052 9.9e-4,-2.2911 -0.0234,-2.277 -0.0516,-2.2628 -0.0903,-2.2476 -0.13488,-2.2335 -0.18297,-2.217 -0.24043,-2.2006 -0.30612,-2.1865 -0.37648,-2.17 -0.4539,-2.1512 -0.53833,-2.1371 -0.007,-0.0329 z m 0.007,0.0329 -0.007,-0.0329 0.006,0.0271 9.9e-4,0.006 z m -2.4958,-62.666 0.0258,0.99396 0.47735,-0.41474 -0.2592,1.6284 -0.23574,1.646 -0.21463,1.6648 -0.19118,1.6825 -0.16889,1.7001 -0.14661,1.7189 -0.12314,1.7377 -0.10204,1.7576 -0.0786,1.7753 -0.0551,1.7952 -0.0329,1.8152 -0.0105,1.834 0.0129,1.854 0.034,1.874 0.0575,1.8951 0.0809,1.9139 0.1032,1.9351 0.12667,1.9562 0.14778,1.9774 0.17124,1.9973 0.1947,2.0196 0.21697,2.042 0.24044,2.0631 0.26271,2.0843 0.285,2.1066 0.30964,2.1289 0.33074,2.1524 0.35538,2.1736 0.37765,2.1971 0.40112,2.2206 0.4234,2.2429 0.44568,2.2664 -0.97347,0.1974 -0.44803,-2.2758 -0.42574,-2.2499 -0.40112,-2.2276 -0.37999,-2.2065 -0.35538,-2.183 -0.33309,-2.1595 -0.30963,-2.1383 -0.28735,-2.116 -0.26506,-2.0937 -0.24044,-2.0725 -0.21697,-2.0514 -0.19705,-2.029 -0.17123,-2.0091 -0.15013,-1.9868 -0.12666,-1.968 -0.10321,-1.9468 -0.0809,-1.9257 -0.0575,-1.9069 -0.0363,-1.8857 -0.0129,-1.8657 0.0105,-1.8458 0.0351,-1.827 0.0551,-1.8094 0.0786,-1.7894 0.10203,-1.7694 0.1255,-1.7518 0.14661,-1.733 0.17123,-1.7142 0.19118,-1.6966 0.21698,-1.6789 0.23809,-1.6601 0.26154,-1.6449 0.47735,-0.41473 z m -0.47736,0.41473 0.068,-0.40417 0.40932,-0.0105 -0.47736,0.41473 z m 0.49026,0.0823 -0.0129,-0.49698 0.0129,0.49698 z m -0.49026,-0.0823 0.068,-0.40417 0.40932,-0.0105 -0.47736,0.41473 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path462" + d="m 422.15,454.38 c -0.0809,8.6802 -3.3708,66.485 -4.1026,74.644 -0.72951,8.1244 -4.5037,13.556 -8.4445,16.614 -3.379,-4.9592 -5.2849,-11.567 -5.5499,-19.342 -0.13605,-3.9641 2.2519,-58.69 2.8958,-69.933 6.9972,-16.946 11.824,-17.441 15.201,-1.9832 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path464" + d="m 418.54,529.07 -0.98989,-0.0893 0,0 0.0763,-0.90232 0.0892,-1.1772 0.10203,-1.4334 0.11494,-1.6695 0.12433,-1.8892 0.13604,-2.0901 0.14309,-2.2711 0.1513,-2.4368 0.15833,-2.5836 0.16303,-2.7105 0.16772,-2.8221 0.17123,-2.9126 0.17358,-2.9866 0.17476,-3.043 0.17475,-3.0818 0.17359,-3.0994 0.1724,-3.1017 0.1689,-3.0853 0.16536,-3.0512 0.15951,-2.996 0.15482,-2.9279 0.14661,-2.8386 0.13839,-2.7293 0.12902,-2.6071 0.11845,-2.4614 0.1079,-2.3016 0.095,-2.1207 0.0809,-1.9245 0.068,-1.7083 0.0504,-1.4722 0.0351,-1.2207 0.0152,-0.94815 0.99457,0.009 -0.0176,0.96225 -0.0351,1.2278 -0.0504,1.4792 -0.068,1.7107 -0.0809,1.9268 -0.095,2.123 -0.1079,2.304 -0.11846,2.4638 -0.12902,2.6071 -0.13839,2.7316 -0.1466,2.8386 -0.15482,2.9279 -0.15951,2.9983 -0.16538,3.0512 -0.16888,3.0853 -0.17241,3.1041 -0.17358,3.0994 -0.17475,3.0818 -0.17476,3.043 -0.17358,2.9889 -0.17124,2.9126 -0.16772,2.8221 -0.16302,2.7128 -0.15834,2.5836 -0.15129,2.4368 -0.14309,2.2734 -0.13606,2.0925 -0.12431,1.8892 -0.11494,1.6742 -0.10439,1.4357 -0.0892,1.1843 -0.0763,0.91172 0,0 z m -9.35,16.85 0.82099,-0.56161 -0.71426,-0.11278 0.35889,-0.28551 0.35772,-0.29959 0.35655,-0.31489 0.3542,-0.32661 0.34951,-0.34072 0.34834,-0.356 0.34247,-0.36892 0.33895,-0.38301 0.33543,-0.3983 0.3284,-0.41003 0.32137,-0.42532 0.31666,-0.44176 0.30846,-0.45469 0.30143,-0.46878 0.2932,-0.48289 0.28501,-0.49699 0.27445,-0.5146 0.26506,-0.52636 0.25685,-0.54281 0.24396,-0.55689 0.23457,-0.57101 0.22167,-0.58745 0.20993,-0.60155 0.19704,-0.618 0.18414,-0.63209 0.17006,-0.64737 0.15482,-0.66265 0.14074,-0.68027 0.1255,-0.69319 0.11024,-0.70964 0.0915,-0.72492 0.0763,-0.74253 0.98989,0.0893 -0.0785,0.76603 -0.0962,0.75076 -0.11259,0.73548 -0.13019,0.71905 -0.14543,0.70376 -0.16185,0.68849 -0.17711,0.67323 -0.19117,0.65793 -0.20408,0.64151 -0.21932,0.62739 -0.23105,0.61096 -0.24395,0.59684 -0.25568,0.5804 -0.26624,0.5663 -0.27679,0.54986 -0.28852,0.53575 -0.29673,0.52049 -0.30729,0.50638 -0.3155,0.48993 -0.32253,0.47583 -0.33074,0.46057 -0.33778,0.44646 -0.34482,0.4312 -0.34951,0.41708 -0.35538,0.40182 -0.36124,0.38771 -0.36475,0.37245 -0.36828,0.35953 -0.37296,0.34306 -0.37297,0.32898 -0.37648,0.31603 -0.38001,0.30196 -0.71426,-0.11279 z m 0.71426,0.11279 -0.41753,0.3231 -0.29673,-0.43589 0.71426,0.11279 z m -6.3498,-19.718 0.99223,-0.0352 0,9.9e-4 0.0293,0.71905 0.0399,0.71082 0.0469,0.70494 0.0587,0.6967 0.0668,0.69085 0.0774,0.68262 0.0856,0.67439 0.095,0.66852 0.10321,0.6603 0.11377,0.65206 0.12198,0.64385 0.13253,0.63563 0.14191,0.62974 0.14896,0.62035 0.15833,0.61213 0.16772,0.6039 0.1771,0.59685 0.18648,0.58628 0.19352,0.57805 0.20407,0.57099 0.21229,0.56043 0.2205,0.55338 0.2287,0.54398 0.23927,0.53458 0.24629,0.52635 0.25686,0.51578 0.26389,0.50756 0.2721,0.49816 0.28148,0.48993 0.28969,0.47936 0.29791,0.46996 0.30611,0.46056 -0.82099,0.56161 -0.31784,-0.47936 -0.30963,-0.48877 -0.30142,-0.49814 -0.29088,-0.50639 -0.28382,-0.51696 -0.27327,-0.52635 -0.2639,-0.53458 -0.25568,-0.54281 -0.2463,-0.55338 -0.23808,-0.56277 -0.22754,-0.56983 -0.21932,-0.57922 -0.20877,-0.58746 -0.20056,-0.59449 -0.19117,-0.60509 -0.18179,-0.61329 -0.17241,-0.62035 -0.16303,-0.62858 -0.15364,-0.63679 -0.14426,-0.64385 -0.13487,-0.65206 -0.12667,-0.6603 -0.11612,-0.66852 -0.10555,-0.67439 -0.0973,-0.68262 -0.088,-0.69084 -0.0774,-0.69671 -0.0692,-0.70494 -0.0587,-0.71082 -0.0493,-0.71905 -0.0399,-0.72492 -0.0293,-0.73312 0,9.9e-4 z m 2.9333,-70.14 0.91716,0.38067 0.0375,-0.16214 -0.0656,1.1772 -0.0739,1.4146 -0.0844,1.6355 -0.0903,1.8399 -0.0985,2.0244 -0.10555,2.1924 -0.11025,2.3451 -0.11494,2.4779 -0.11846,2.5954 -0.12198,2.6952 -0.12431,2.7775 -0.12667,2.8421 -0.12667,2.8891 -0.12784,2.9196 -0.1255,2.9337 -0.12549,2.929 -0.12198,2.9079 -0.11962,2.8703 -0.11612,2.8127 -0.11142,2.7399 -0.10556,2.6506 -0.0985,2.5413 -0.0926,2.418 -0.0844,2.2758 -0.0763,2.1148 -0.0668,1.9386 -0.0575,1.7447 -0.0458,1.5333 -0.034,1.3041 -0.02,1.0574 -0.009,0.79071 0.005,0.49816 -0.99224,0.0352 -0.007,-0.53575 0.009,-0.8048 0.0222,-1.0645 0.0341,-1.3088 0.0458,-1.5356 0.0575,-1.7471 0.0668,-1.9409 0.0763,-2.1172 0.0844,-2.2758 0.0926,-2.418 0.0985,-2.5437 0.10556,-2.6506 0.11141,-2.7399 0.11612,-2.8151 0.11962,-2.8703 0.12198,-2.9079 0.1255,-2.929 0.1255,-2.9337 0.12784,-2.922 0.12666,-2.8891 0.12667,-2.8421 0.12432,-2.7775 0.12198,-2.6952 0.11846,-2.5954 0.11493,-2.4802 0.11025,-2.3451 0.10556,-2.1947 0.0985,-2.0244 0.0903,-1.8399 0.0844,-1.6378 0.0739,-1.4169 0.0656,-1.1796 0.0375,-0.16215 z m -0.0375,0.16214 0.005,-0.0823 0.0329,-0.0799 -0.0375,0.16214 z m 16.195,-1.9503 -0.99457,-0.009 0.0117,0.11161 -0.31902,-1.3934 -0.32606,-1.2983 -0.33425,-1.2019 -0.34248,-1.1068 -0.35069,-1.0104 -0.35771,-0.91406 -0.36475,-0.81656 -0.36945,-0.71787 -0.37414,-0.618 -0.37649,-0.52165 -0.37531,-0.41945 -0.37179,-0.32426 -0.36241,-0.22911 -0.35537,-0.14334 -0.35421,-0.0669 -0.36241,0.008 -0.38469,0.0869 -0.41285,0.17036 -0.43981,0.26317 -0.46562,0.35836 -0.48674,0.45585 -0.50549,0.55574 -0.52309,0.65442 -0.53834,0.7531 -0.55242,0.85063 -0.56765,0.9505 -0.58174,1.0457 -0.59346,1.1455 -0.60754,1.2407 -0.62043,1.3406 -0.63334,1.4357 -0.64742,1.5332 -0.91716,-0.38066 0.65211,-1.5474 0.64037,-1.4522 0.62982,-1.357 0.61692,-1.2618 0.60519,-1.1667 0.59581,-1.0739 0.58408,-0.97869 0.57586,-0.88588 0.56649,-0.79071 0.56062,-0.70141 0.55242,-0.60743 0.55005,-0.5146 0.55007,-0.42414 0.55242,-0.32898 0.55827,-0.23145 0.56532,-0.12454 0.56414,-0.0129 0.55358,0.10221 0.5313,0.21383 0.50316,0.31839 0.47499,0.41357 0.45038,0.50403 0.43043,0.59451 0.41402,0.68379 0.39759,0.77192 0.38588,0.86355 0.37179,0.95401 0.36241,1.0433 0.35186,1.1373 0.34129,1.2278 0.33309,1.3194 0.32371,1.4122 0.0117,0.11161 z m -0.0117,-0.11162 0.0117,0.0564 0,0.0552 -0.0117,-0.11162 z m -0.48555,0.10692 0.49729,0.005 -0.49729,-0.005 z m 0.48555,-0.10692 0.0117,0.0564 0,0.0552 -0.0117,-0.11162 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path466" + d="m 384.99,407.23 c -0.5571,18.646 -0.87495,59.108 -0.75883,62.547 0.26506,7.7755 3.3309,17.672 6.7087,22.631 3.9408,-3.0583 7.7162,-8.4898 8.4457,-16.615 0.59933,-6.6793 0.81044,-39.483 0.9113,-55.923 -4.2176,-2.7164 -8.5665,-6.1095 -12.081,-9.7211 9.9e-4,0 -3.0963,-2.754 -3.2253,-2.9184 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path468" + d="m 384.72,469.76 -0.99223,0.0329 0,0 -0.0105,-0.43706 -0.007,-0.64032 -0.005,-0.83183 -0.002,-1.0175 0,-1.189 0.002,-1.3535 0.005,-1.505 0.008,-1.646 0.009,-1.7765 0.0117,-1.8986 0.0129,-2.0056 0.0164,-2.1042 0.0176,-2.1935 0.0212,-2.2687 0.0222,-2.3345 0.0234,-2.3898 0.027,-2.4368 0.0282,-2.4685 0.0293,-2.4908 0.0317,-2.5049 0.0341,-2.5061 0.0363,-2.4955 0.0363,-2.4767 0.0399,-2.445 0.0399,-2.4039 0.0422,-2.3522 0.0446,-2.2887 0.0458,-2.2135 0.0481,-2.1301 0.0481,-2.0349 0.0505,-1.928 0.0516,-1.8117 0.99223,0.0305 -0.0516,1.8094 -0.0504,1.9257 -0.0481,2.0326 -0.0458,2.1278 -0.0458,2.2135 -0.0446,2.2864 -0.0422,2.3498 -0.0398,2.4039 -0.0399,2.445 -0.0363,2.4744 -0.0364,2.4955 -0.0341,2.5061 -0.0317,2.5025 -0.0293,2.4908 -0.0281,2.4685 -0.027,2.4344 -0.0234,2.3897 -0.0222,2.3345 -0.0212,2.2687 -0.0176,2.1912 -0.0164,2.1042 -0.0129,2.0056 -0.0117,1.8963 -0.009,1.7765 -0.008,1.646 -0.005,1.5027 -0.002,1.3511 0,1.189 0.002,1.0128 0.005,0.82947 0.007,0.63093 0.008,0.42061 0,0 z m 5.9088,22.254 0.60753,0.78719 -0.71426,-0.1128 -0.3237,-0.49229 -0.3202,-0.51813 -0.31666,-0.54398 -0.31316,-0.56864 -0.30846,-0.59098 -0.30493,-0.6133 -0.30026,-0.63444 -0.29321,-0.65443 -0.28852,-0.67087 -0.28031,-0.68849 -0.2768,-0.70494 -0.2674,-0.72021 -0.26037,-0.73197 -0.25334,-0.74488 -0.24395,-0.75429 -0.23574,-0.76486 -0.22636,-0.7719 -0.21698,-0.78015 -0.20525,-0.786 -0.19704,-0.78954 -0.18531,-0.79423 -0.17241,-0.79542 -0.16303,-0.7954 -0.14895,-0.79541 -0.13604,-0.79305 -0.12316,-0.79071 -0.10907,-0.78602 -0.095,-0.77895 -0.0809,-0.77427 -0.0645,-0.76486 -0.0504,-0.75664 -0.0329,-0.74606 0.99224,-0.0329 0.0329,0.72492 0.0481,0.73549 0.0645,0.74606 0.0786,0.75547 0.0926,0.76251 0.10673,0.76955 0.12081,0.77428 0.1337,0.77896 0.14661,0.7813 0.15833,0.7813 0.17006,0.78132 0.18297,0.77778 0.19234,0.77779 0.20292,0.77191 0.21228,0.76603 0.22402,0.76017 0.23104,0.75076 0.23927,0.74253 0.24864,0.7308 0.25568,0.71786 0.26272,0.70612 0.26975,0.68848 0.27562,0.6744 0.28149,0.65677 0.28618,0.63797 0.29086,0.61565 0.29556,0.59685 0.29907,0.57218 0.30142,0.5475 0.30495,0.52284 0.30611,0.49462 0.30729,0.46645 -0.71427,-0.11279 z m 0.60753,0.78719 -0.41753,0.32309 -0.29673,-0.43589 0.71426,0.1128 z m 7.647,-17.054 0.98988,0.0893 -0.0785,0.76603 -0.0962,0.75077 -0.11259,0.73549 -0.13019,0.72021 -0.14543,0.70376 -0.16303,0.68733 -0.17593,0.67321 -0.19117,0.65795 -0.20408,0.6415 -0.21931,0.62739 -0.23106,0.61095 -0.24395,0.59802 -0.25568,0.58041 -0.26624,0.56512 -0.27796,0.55103 -0.28852,0.53457 -0.29673,0.52167 -0.30729,0.50521 -0.31433,0.49111 -0.3237,0.47582 -0.33074,0.4594 -0.33779,0.44764 -0.34481,0.43118 -0.34951,0.4171 -0.35537,0.40181 -0.36124,0.38771 -0.36476,0.37245 -0.36827,0.35952 -0.37297,0.34308 -0.37297,0.32897 -0.37648,0.31605 -0.38001,0.30195 -0.60753,-0.78719 0.35889,-0.28551 0.35772,-0.2996 0.35655,-0.31487 0.35419,-0.32662 0.34951,-0.34072 0.34834,-0.35599 0.34247,-0.36892 0.33896,-0.38302 0.33544,-0.39829 0.32839,-0.41004 0.32136,-0.4265 0.31667,-0.44058 0.30964,-0.45469 0.30024,-0.46761 0.29321,-0.48406 0.28501,-0.49816 0.27444,-0.51343 0.26624,-0.52753 0.25685,-0.54163 0.24396,-0.55691 0.23457,-0.57216 0.22167,-0.58746 0.20993,-0.60155 0.19704,-0.618 0.18414,-0.63209 0.16889,-0.64738 0.15599,-0.66381 0.14074,-0.67792 0.1255,-0.69437 0.11024,-0.70964 0.0915,-0.72491 0.0763,-0.74255 z m 1.1377,-55.46 0.53717,-0.83654 0.22871,0.4218 -0.009,1.5885 -0.0105,1.6754 -0.0117,1.7565 -0.0117,1.8293 -0.0129,1.8928 -0.0141,1.9515 -0.0141,1.9997 -0.0164,2.0408 -0.0164,2.0749 -0.0176,2.1019 -0.02,2.1184 -0.02,2.1301 -0.0211,2.1313 -0.0234,2.1278 -0.0234,2.1125 -0.0258,2.0937 -0.027,2.0643 -0.0293,2.0279 -0.0293,1.9844 -0.0317,1.9315 -0.034,1.8728 -0.0352,1.8058 -0.0375,1.7283 -0.0387,1.6484 -0.041,1.5568 -0.0422,1.4569 -0.0446,1.3535 -0.0458,1.2372 -0.0493,1.1185 -0.0504,0.9881 -0.0527,0.85298 -0.0563,0.71199 -0.98988,-0.0893 0.0539,-0.69083 0.0528,-0.84123 0.0505,-0.97869 0.0493,-1.1115 0.0458,-1.2325 0.0446,-1.3488 0.0422,-1.4545 0.041,-1.5544 0.0387,-1.6437 0.0351,-1.7283 0.0351,-1.8035 0.0341,-1.8704 0.0317,-1.9315 0.0293,-1.9821 0.0293,-2.0279 0.027,-2.062 0.0258,-2.0937 0.0234,-2.1125 0.0234,-2.1254 0.0211,-2.1313 0.02,-2.1301 0.02,-2.1183 0.0176,-2.0996 0.0164,-2.0749 0.0164,-2.0408 0.0141,-1.9997 0.0141,-1.9515 0.0129,-1.8928 0.0117,-1.8293 0.0117,-1.7565 0.0105,-1.6754 0.009,-1.5885 0.2287,0.42178 z m 0.53717,-0.83654 0.22988,0.14804 -10e-4,0.27376 -0.2287,-0.4218 z m -12.35,-9.801 0,0.99632 0.35537,-0.84593 0.32957,0.33603 0.33309,0.33249 0.33778,0.33132 0.34364,0.33132 0.346,0.33015 0.35068,0.32663 0.3542,0.32661 0.35772,0.3231 0.36241,0.32193 0.36593,0.31958 0.36827,0.31839 0.37063,0.31605 0.37413,0.3137 0.37766,0.31134 0.37766,0.31018 0.38235,0.30665 0.38352,0.30312 0.38586,0.30077 0.38704,0.29961 0.38822,0.29607 0.38938,0.29138 0.39173,0.29138 0.39173,0.2855 0.39408,0.28432 0.39291,0.27963 0.39524,0.27727 0.39291,0.27375 0.39525,0.26905 0.39408,0.2667 0.39407,0.26319 0.39408,0.25847 0.3929,0.25495 -0.53717,0.83654 -0.39759,-0.2573 -0.39876,-0.26318 -0.40112,-0.26553 -0.39877,-0.26905 -0.39994,-0.27376 -0.39994,-0.27845 -0.3976,-0.27962 -0.39994,-0.28433 -0.39642,-0.28668 -0.39878,-0.29019 -0.39642,-0.29372 -0.39407,-0.29609 -0.39525,-0.30077 -0.39174,-0.30195 -0.39056,-0.30547 -0.38821,-0.30783 -0.38703,-0.31136 -0.3847,-0.31251 -0.38235,-0.31605 -0.37883,-0.3184 -0.37766,-0.32075 -0.37297,-0.3231 -0.37062,-0.32426 -0.36709,-0.32663 -0.36476,-0.33015 -0.36124,-0.33132 -0.35538,-0.33367 -0.35302,-0.33485 -0.34834,-0.33602 -0.34481,-0.33837 -0.34013,-0.33955 -0.33426,-0.34072 0.35537,-0.84593 z m -0.35538,0.84594 -0.82333,-0.84594 1.1787,0 -0.35538,0.84594 z m -2.3738,-3.251 -0.99223,-0.0305 0.88667,-0.29254 -0.0117,-0.0142 0.0305,0.0293 0.0422,0.0423 0.0633,0.0599 0.0763,0.0716 0.0915,0.0823 0.0997,0.094 0.11025,0.0986 0.11846,0.10927 0.12784,0.11396 0.1337,0.12102 0.1384,0.12571 0.14074,0.12806 0.14661,0.13042 0.14661,0.13277 0.14778,0.13159 0.14895,0.13394 0.14425,0.13041 0.14427,0.12806 0.13957,0.12572 0.13605,0.11984 0.12901,0.11631 0.12315,0.10926 0.11142,0.10105 0.10556,0.0928 0.095,0.0858 0.0821,0.0729 0.0704,0.0623 0.0598,0.054 0.0363,0.0329 0.0234,0.02 -0.31667,0.88235 0,-0.99632 -0.33309,0.86591 -0.0305,-0.0247 -0.0458,-0.0423 -0.0528,-0.047 -0.0704,-0.0622 -0.0844,-0.0752 -0.0926,-0.0835 -0.10556,-0.0928 -0.11611,-0.10339 -0.1208,-0.10926 -0.12902,-0.11397 -0.13605,-0.12218 -0.13957,-0.12573 -0.14426,-0.12806 -0.14661,-0.13276 -0.1466,-0.13159 -0.15012,-0.13393 -0.14661,-0.13277 -0.14661,-0.13041 -0.14308,-0.13042 -0.1384,-0.12337 -0.13371,-0.12101 -0.12784,-0.11632 -0.1208,-0.10926 -0.1126,-0.1034 -0.10204,-0.094 -0.0915,-0.0846 -0.0809,-0.0764 -0.0704,-0.0646 -0.061,-0.0588 -0.0422,-0.0459 -0.0539,-0.0588 0.88667,-0.29256 z m -0.99223,-0.0305 0.041,-1.3711 0.84562,1.0786 -0.88667,0.29254 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path470" + d="m 399.93,419.25 c -0.37063,20.09 -0.15364,51.736 -0.0656,54.309 0.26506,7.7755 2.1721,14.383 5.5499,19.344 3.9408,-3.0594 8.1032,-8.6849 8.8316,-16.809 0.44802,-5.0016 1.8378,-26.451 1.968,-42.913 -5.3013,-1.6707 -11.99,-10.366 -16.284,-13.93 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path472" + d="m 400.36,473.54 -0.99222,0.0329 0,0 -0.008,-0.33133 -0.0105,-0.48993 -0.009,-0.64502 -0.0105,-0.79306 -0.0105,-0.93286 -0.0105,-1.0656 -0.0105,-1.1914 -0.009,-1.31 -0.0105,-1.4204 -0.009,-1.5227 -0.009,-1.6214 -0.008,-1.7071 -0.007,-1.7906 -0.006,-1.8634 -0.006,-1.928 -0.005,-1.9879 -0.002,-2.0408 -0.001,-2.0819 0,-2.1195 0.002,-2.1501 0.004,-2.17 0.006,-2.183 0.008,-2.1924 0.009,-2.19 0.0129,-2.183 0.0153,-2.1653 0.0176,-2.1442 0.0212,-2.1136 0.0234,-2.0749 0.0258,-2.0302 0.0305,-1.9774 0.0329,-1.9174 0.99457,0.0188 -0.0329,1.9151 -0.0305,1.975 -0.0258,2.0279 -0.0234,2.0749 -0.0211,2.1113 -0.0176,2.1418 -0.0153,2.1653 -0.0129,2.1806 -0.009,2.19 -0.008,2.19 -0.006,2.183 -0.004,2.17 -0.002,2.1477 0,2.1195 10e-4,2.0819 0.002,2.0384 0.005,1.988 0.006,1.928 0.006,1.8634 0.007,1.7882 0.008,1.7071 0.009,1.619 0.009,1.5227 0.0105,1.4205 0.009,1.31 0.0105,1.189 0.0105,1.0656 0.0105,0.93054 0.0105,0.7907 0.009,0.64267 0.008,0.48524 0.008,0.31958 0,0 z m 4.75,18.966 0.60753,0.78719 -0.71426,-0.1128 -0.31784,-0.47935 -0.30964,-0.48877 -0.30141,-0.49815 -0.29088,-0.50638 -0.28382,-0.51696 -0.27328,-0.52753 -0.26272,-0.53459 -0.25685,-0.5428 -0.2463,-0.55337 -0.23691,-0.56043 -0.22871,-0.57101 -0.21815,-0.5804 -0.20877,-0.58626 -0.20173,-0.59569 -0.19,-0.60507 -0.18179,-0.61213 -0.17241,-0.62152 -0.16419,-0.62857 -0.15365,-0.6368 -0.14426,-0.64384 -0.13488,-0.65325 -0.12549,-0.65911 -0.11612,-0.66736 -0.10673,-0.67556 -0.0973,-0.68261 -0.088,-0.69085 -0.0775,-0.69671 -0.0692,-0.70495 -0.0587,-0.71082 -0.0492,-0.71903 -0.0399,-0.72492 -0.0293,-0.73313 0.99223,-0.0329 0.0293,0.71902 0.0399,0.71082 0.0469,0.70495 0.0587,0.69671 0.0668,0.69085 0.0775,0.6826 0.0856,0.6744 0.095,0.66852 0.10437,0.65912 0.11377,0.65325 0.12081,0.64502 0.13253,0.63444 0.14191,0.62975 0.14895,0.62034 0.15951,0.61213 0.16772,0.60508 0.1771,0.59568 0.18531,0.58627 0.19469,0.57922 0.20408,0.56983 0.21111,0.56161 0.22167,0.5522 0.22988,0.54398 0.23691,0.53458 0.24747,0.52635 0.25568,0.51814 0.2639,0.50638 0.2721,0.49815 0.28148,0.48994 0.2897,0.47936 0.29791,0.46996 0.3061,0.46057 -0.71426,-0.1128 z m 0.60753,0.78719 -0.41753,0.32427 -0.29673,-0.43707 0.71426,0.1128 z m 8.0328,-17.248 0.98988,0.0893 -0.0797,0.76839 -0.0997,0.75311 -0.11845,0.73901 -0.13723,0.72375 -0.15599,0.70847 -0.17124,0.69553 -0.18765,0.6791 -0.20525,0.66499 -0.21932,0.64972 -0.23457,0.63446 -0.24747,0.62034 -0.26037,0.60391 -0.27328,0.58979 -0.28382,0.57453 -0.29556,0.55925 -0.30729,0.54398 -0.31432,0.52988 -0.32488,0.5146 -0.33309,0.49934 -0.3413,0.48288 -0.34716,0.46879 -0.35303,0.45468 -0.35889,0.43824 -0.36359,0.42179 -0.36827,0.40887 -0.37297,0.39241 -0.37414,0.37833 -0.37648,0.36186 -0.38,0.34777 -0.37884,0.33132 -0.37882,0.31606 -0.38001,0.30312 -0.60753,-0.78719 0.35889,-0.28666 0.36241,-0.30196 0.36241,-0.31723 0.36124,-0.33132 0.36007,-0.34542 0.35771,-0.36186 0.35655,-0.37597 0.35185,-0.39008 0.34951,-0.40534 0.34247,-0.41943 0.33896,-0.43354 0.33308,-0.44999 0.32723,-0.46408 0.31902,-0.47819 0.3108,-0.49346 0.3026,-0.50638 0.29321,-0.52283 0.28383,-0.53576 0.2721,-0.55103 0.26154,-0.5663 0.251,-0.5804 0.23808,-0.5945 0.22519,-0.6086 0.20994,-0.62387 0.19586,-0.63915 0.18062,-0.65324 0.16655,-0.66734 0.14895,-0.68262 0.13253,-0.69555 0.11377,-0.71081 0.095,-0.72727 0.0774,-0.74018 z m 2.314,-42.394 0.29791,-0.94932 0.34833,0.47819 -0.0153,1.5603 -0.0234,1.585 -0.0293,1.6049 -0.0363,1.6237 -0.0422,1.6354 -0.0458,1.6472 -0.0516,1.6519 -0.0563,1.6531 -0.061,1.6507 -0.0634,1.6449 -0.068,1.6343 -0.0704,1.6214 -0.0727,1.6026 -0.0751,1.5814 -0.0774,1.5544 -0.0774,1.5262 -0.0797,1.4921 -0.0797,1.4545 -0.0797,1.4122 -0.0786,1.3676 -0.0797,1.3182 -0.0773,1.2654 -0.0763,1.2078 -0.0739,1.1467 -0.0727,1.0833 -0.0692,1.0116 -0.0656,0.9411 -0.0645,0.86354 -0.0587,0.78366 -0.0539,0.69907 -0.0504,0.61094 -0.0446,0.51931 -0.98988,-0.0893 0.0446,-0.51462 0.0505,-0.60624 0.0539,-0.69438 0.0587,-0.7813 0.0622,-0.8612 0.0656,-0.93875 0.0692,-1.0116 0.0727,-1.0809 0.0739,-1.1444 0.0763,-1.2054 0.0774,-1.2654 0.0797,-1.3159 0.0786,-1.3652 0.0797,-1.4122 0.0797,-1.4522 0.0797,-1.4898 0.0774,-1.5238 0.0775,-1.5544 0.0751,-1.5791 0.0727,-1.6002 0.0704,-1.619 0.068,-1.6319 0.0634,-1.6425 0.061,-1.6484 0.0563,-1.6507 0.0516,-1.6496 0.0458,-1.6425 0.0422,-1.6331 0.0341,-1.619 0.0293,-1.6026 0.0234,-1.5802 0.0153,-1.5556 0.34834,0.47819 z m 0.29791,-0.94932 0.35068,0.11044 -0.002,0.36775 -0.34834,-0.47819 z m -15.935,-13.446 -0.99457,-0.0188 0.81396,-0.37361 0.41871,0.35598 0.43043,0.38302 0.44217,0.40888 0.45154,0.43 0.46211,0.44999 0.47148,0.46879 0.48204,0.48406 0.48908,0.49815 0.49846,0.50991 0.5055,0.52049 0.51136,0.52752 0.51723,0.53105 0.52309,0.53459 0.52778,0.53694 0.53013,0.5334 0.53481,0.52987 0.536,0.52402 0.53833,0.51578 0.53952,0.5052 0.53951,0.49346 0.53834,0.47583 0.53716,0.46174 0.53482,0.44059 0.53247,0.41826 0.52896,0.39476 0.52192,0.36893 0.51723,0.33954 0.51019,0.30901 0.5008,0.2761 0.4926,0.24202 0.48203,0.20326 0.47033,0.16684 -0.29791,0.94932 -0.5313,-0.18797 -0.536,-0.22677 -0.53716,-0.26317 -0.54068,-0.29725 -0.54303,-0.33015 -0.54537,-0.35835 -0.54773,-0.38537 -0.54772,-0.41121 -0.55124,-0.43237 -0.55124,-0.45468 -0.55124,-0.47114 -0.55006,-0.48759 -0.5489,-0.50285 -0.54889,-0.51226 -0.54537,-0.52282 -0.54303,-0.53107 -0.53952,-0.53457 -0.53481,-0.53811 -0.53013,-0.53928 -0.52544,-0.53693 -0.51957,-0.5334 -0.51136,-0.52754 -0.50315,-0.51813 -0.49612,-0.50757 -0.48673,-0.49579 -0.47735,-0.47937 -0.46679,-0.46408 -0.45507,-0.44294 -0.44217,-0.42062 -0.42808,-0.39711 -0.41636,-0.36893 -0.39995,-0.34189 0.81396,-0.37362 z m -0.99457,-0.0188 0.0188,-1.0327 0.79519,0.65913 -0.81396,0.37361 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path474" + d="m 387.08,405.55 -14.24,-20.52 c -2.8782,10.123 -6.3873,82.767 -2.2683,88.725 0.26506,7.7755 3.0717,14.355 6.4507,19.314 3.9408,-3.0583 9.8226,-8.5556 8.1231,-16.78 -1.6983,-8.2243 0.20642,-62.257 1.9317,-70.731 h -9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path476" + d="m 373.25,384.74 14.236,20.528 -0.81631,0.56865 -14.236,-20.528 -0.0692,-0.42061 0.8855,-0.14804 z m -0.88549,0.14804 0.28734,-1.0104 0.59815,0.86238 -0.88549,0.14804 z m -1.2948,88.845 -0.99224,0.0329 0.088,0.26671 -0.42223,-0.8612 -0.33895,-1.1761 -0.28501,-1.4945 -0.24277,-1.8023 -0.20173,-2.0925 -0.1642,-2.3604 -0.12784,-2.6071 -0.0938,-2.8292 -0.061,-3.0301 -0.0305,-3.2075 0,-3.3602 0.0281,-3.4906 0.0539,-3.5964 0.0809,-3.6798 0.10205,-3.7397 0.12548,-3.7738 0.14544,-3.7867 0.1642,-3.7761 0.18179,-3.7397 0.19821,-3.6821 0.21229,-3.5987 0.22518,-3.493 0.23692,-3.3638 0.24747,-3.211 0.25451,-3.0336 0.26155,-2.8339 0.26858,-2.6106 0.2721,-2.3639 0.27444,-2.0937 0.27563,-1.8035 0.27796,-1.491 0.28031,-1.162 0.9547,0.27258 -0.26154,1.0938 -0.27093,1.451 -0.27328,1.7776 -0.2721,2.0772 -0.26976,2.3498 -0.26624,2.5989 -0.26153,2.8245 -0.25451,3.0265 -0.24747,3.204 -0.23457,3.3567 -0.2252,3.4883 -0.21228,3.594 -0.19821,3.6774 -0.18179,3.735 -0.1642,3.7691 -0.14543,3.782 -0.1255,3.7691 -0.10204,3.7327 -0.0786,3.6751 -0.0539,3.5893 -0.0281,3.4836 0,3.3508 0.0305,3.1981 0.0586,3.0183 0.0938,2.8151 0.12784,2.5883 0.16186,2.3369 0.19938,2.0619 0.23574,1.7577 0.27328,1.4263 0.30377,1.0586 0.30494,0.63797 0.088,0.2667 z m -0.088,-0.2667 0.0832,0.11983 0.005,0.14687 -0.088,-0.2667 z m 5.7387,19.204 0.60754,0.78719 -0.71427,-0.1128 -0.31901,-0.47583 -0.3155,-0.48642 -0.3108,-0.49345 -0.30612,-0.50404 -0.3026,-0.51343 -0.29672,-0.52166 -0.29087,-0.53223 -0.28501,-0.54162 -0.27914,-0.54986 -0.27209,-0.55807 -0.26507,-0.56866 -0.25803,-0.5757 -0.24981,-0.58628 -0.24161,-0.59332 -0.2334,-0.60273 -0.22518,-0.61094 -0.21463,-0.61917 -0.20642,-0.62858 -0.1947,-0.63562 -0.18531,-0.64267 -0.17476,-0.65325 -0.16419,-0.66029 -0.1513,-0.66852 -0.14074,-0.67558 -0.12784,-0.68378 -0.11494,-0.69085 -0.10438,-0.69906 -0.0892,-0.70729 -0.0763,-0.71317 -0.061,-0.72138 -0.0481,-0.72963 -0.0317,-0.73549 0.99224,-0.0329 0.0317,0.71434 0.0458,0.70847 0.061,0.70023 0.0739,0.69437 0.0868,0.68615 0.0997,0.68027 0.1126,0.67204 0.12549,0.66499 0.13605,0.65678 0.14661,0.64972 0.1595,0.6415 0.17007,0.63444 0.18062,0.62622 0.19,0.61917 0.19939,0.60977 0.20993,0.60273 0.21815,0.59451 0.22871,0.58627 0.23456,0.57922 0.24279,0.56983 0.25099,0.5616 0.25802,0.5522 0.26507,0.54398 0.2721,0.53576 0.27797,0.52753 0.28382,0.51814 0.2897,0.5099 0.29321,0.49933 0.29907,0.49228 0.30378,0.48172 0.30611,0.47231 0.31198,0.46408 -0.71427,-0.11278 z m 0.60754,0.78719 -0.41754,0.32309 -0.29673,-0.43589 0.71427,0.1128 z m 7.3326,-17.072 0.97346,-0.20209 0.14191,0.78719 0.0973,0.77308 0.0563,0.75898 0.0153,0.74136 -0.0234,0.7261 -0.061,0.70964 -0.0962,0.69436 -0.12901,0.67791 -0.16185,0.66149 -0.19118,0.64384 -0.21697,0.62739 -0.24512,0.61212 -0.26859,0.59451 -0.29087,0.57805 -0.30963,0.5616 -0.32957,0.54516 -0.34598,0.52988 -0.36124,0.51226 -0.3718,0.49697 -0.3847,0.48055 -0.39408,0.46526 -0.4011,0.4488 -0.40699,0.43472 -0.41049,0.41709 -0.41285,0.40299 -0.41401,0.38654 -0.41167,0.37245 -0.40815,0.35599 -0.40464,0.34308 -0.39759,0.32661 -0.38822,0.31136 -0.38,0.29725 -0.60754,-0.78718 0.37063,-0.29022 0.37883,-0.30429 0.38821,-0.31957 0.3929,-0.33132 0.39642,-0.3466 0.39995,-0.3607 0.39994,-0.37479 0.39642,-0.38654 0.39643,-0.40299 0.39056,-0.41592 0.38469,-0.43001 0.37531,-0.44411 0.36593,-0.45939 0.35537,-0.47114 0.34247,-0.48641 0.32489,-0.49933 0.3108,-0.5146 0.29322,-0.52872 0.27209,-0.54045 0.24982,-0.5569 0.2287,-0.56982 0.20291,-0.58511 0.1771,-0.59919 0.15012,-0.61213 0.11963,-0.62858 0.0892,-0.64267 0.0563,-0.65794 0.0211,-0.67204 -0.0129,-0.68967 -0.0516,-0.70494 -0.0926,-0.72139 -0.13253,-0.73783 z m 2.4184,-70.334 0,-0.99631 0.48673,0.59802 -0.15716,0.90116 -0.16186,1.162 -0.16068,1.3993 -0.15951,1.619 -0.1595,1.8199 -0.15717,2.0056 -0.15364,2.1724 -0.15012,2.3216 -0.14544,2.4567 -0.13957,2.5719 -0.13488,2.6729 -0.12784,2.7552 -0.1208,2.8221 -0.11259,2.8715 -0.10438,2.9044 -0.095,2.9196 -0.0844,2.9196 -0.0751,2.9008 -0.061,2.8679 -0.0504,2.8162 -0.0375,2.7493 -0.0246,2.6635 -0.009,2.5624 0.005,2.445 0.02,2.3087 0.0352,2.1571 0.0539,1.9879 0.0715,1.8011 0.0892,1.5979 0.1079,1.377 0.1255,1.1326 0.14309,0.86825 -0.97347,0.20209 -0.15482,-0.93641 -0.13018,-1.1749 -0.11024,-1.4028 -0.0892,-1.6167 -0.0715,-1.8152 -0.0539,-1.9997 -0.0375,-2.1665 -0.02,-2.3157 -0.005,-2.4497 0.009,-2.5695 0.0246,-2.6682 0.0375,-2.754 0.0505,-2.8186 0.0634,-2.8726 0.0751,-2.9055 0.0844,-2.922 0.095,-2.9243 0.10439,-2.9067 0.1126,-2.8738 0.1208,-2.8268 0.12784,-2.7598 0.13488,-2.6752 0.13957,-2.5766 0.14543,-2.4614 0.15013,-2.3286 0.15598,-2.1794 0.15716,-2.0126 0.15951,-1.8293 0.16185,-1.6331 0.16303,-1.4181 0.1642,-1.1902 0.16655,-0.94815 0.48672,0.59803 z m 0,-0.99631 0.60871,0 -0.12198,0.59802 -0.48673,-0.59802 z m -9.9e-4,0 9.9e-4,0 0,0.99631 -9.9e-4,0 -0.40816,-0.21383 0.40816,-0.78249 z m 0,0.99631 -0.26038,0 -0.14778,-0.21383 0.40816,0.21383 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path478" + d="m 357.88,451.24 c -0.64507,11.241 -1.1013,18.85 -0.96642,22.814 0.26623,7.7767 2.1721,14.383 5.5499,19.344 3.942,-3.0583 8.9606,-8.4746 8.4457,-16.615 -1.9903,-31.459 1.4473,-61.093 5.4526,-89.577 -3.3778,-2.4802 -9.072,-5.1531 -12.451,-7.6333 -6.7556,38.356 -9.0087,62.162 -6.032,71.669 l 10e-4,-9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path480" + d="m 357.41,474.03 -0.99223,0.0352 0,-9.9e-4 -0.0105,-0.38653 -0.009,-0.40888 -0.004,-0.43001 -9.9e-4,-0.44998 0.002,-0.46996 0.005,-0.49111 0.008,-0.51344 0.0129,-0.53458 0.0141,-0.55456 0.0164,-0.57687 0.02,-0.59803 0.0222,-0.618 0.0246,-0.63914 0.0281,-0.66147 0.0293,-0.68144 0.0329,-0.70376 0.0341,-0.72375 0.0363,-0.74606 0.0387,-0.76838 0.041,-0.78719 0.0434,-0.80951 0.0446,-0.83066 0.0469,-0.85179 0.0481,-0.87413 0.0505,-0.8941 0.0516,-0.91525 0.0528,-0.93756 0.0551,-0.95755 0.0563,-0.97987 0.0575,-0.99985 0.0587,-1.0222 0.0598,-1.0433 0.99223,0.0564 -0.0598,1.0433 -0.0587,1.0222 -0.0575,0.99984 -0.0563,0.97987 -0.0551,0.95755 -0.0528,0.93756 -0.0516,0.91525 -0.0504,0.89411 -0.0481,0.87178 -0.0469,0.85179 -0.0446,0.83065 -0.0434,0.80716 -0.041,0.78719 -0.0387,0.76604 -0.0363,0.74372 -0.0341,0.72373 -0.0329,0.70142 -0.0293,0.67908 -0.0281,0.65913 -0.0246,0.6368 -0.0222,0.61564 -0.02,0.59332 -0.0164,0.57219 -0.0141,0.5522 -0.0105,0.52988 -0.008,0.50639 -0.005,0.48639 -0.002,0.46528 10e-4,0.44293 0.004,0.42061 0.007,0.39947 0.0105,0.37714 0,-9.9e-4 z m 4.75,18.968 0.60754,0.78719 -0.71427,-0.1128 -0.31784,-0.47936 -0.30963,-0.48876 -0.30142,-0.49816 -0.29087,-0.50638 -0.28383,-0.51695 -0.27327,-0.52754 -0.2639,-0.53458 -0.25451,-0.5428 -0.24629,-0.55339 -0.23809,-0.56159 -0.22754,-0.56983 -0.21931,-0.57922 -0.20877,-0.58746 -0.20056,-0.59567 -0.19118,-0.6039 -0.18179,-0.61329 -0.1724,-0.62036 -0.16303,-0.62857 -0.15482,-0.6368 -0.14308,-0.64501 -0.13488,-0.65208 -0.12667,-0.6603 -0.11611,-0.66734 -0.10673,-0.67556 -0.0973,-0.68262 -0.088,-0.69084 -0.0774,-0.69672 -0.0692,-0.70376 -0.0575,-0.712 -0.0505,-0.71904 -0.0399,-0.72491 -0.0293,-0.73197 0.99224,-0.0352 0.0293,0.72022 0.0399,0.71082 0.0481,0.70494 0.0575,0.69789 0.0668,0.68966 0.0774,0.68262 0.0856,0.67439 0.095,0.66852 0.10438,0.65913 0.11377,0.65324 0.12198,0.64385 0.13253,0.63797 0.14074,0.62857 0.15012,0.62036 0.15833,0.61212 0.16772,0.6039 0.17711,0.59448 0.18648,0.58747 0.19351,0.57922 0.20409,0.571 0.21228,0.56042 0.22049,0.55339 0.22871,0.5428 0.23926,0.53458 0.24748,0.52636 0.25451,0.51813 0.26388,0.50638 0.27211,0.49816 0.28147,0.48993 0.28971,0.47936 0.2979,0.46996 0.30611,0.46058 -0.71427,-0.1128 z m 0.60754,0.78719 -0.41754,0.32309 -0.29673,-0.43589 0.71427,0.1128 z m 7.6458,-16.977 0.99223,-0.0634 0.0329,0.77661 9.9e-4,0.75899 -0.0293,0.74489 -0.061,0.72725 -0.0868,0.712 -0.11611,0.69789 -0.13957,0.68026 -0.16538,0.66501 -0.18999,0.64854 -0.21112,0.63209 -0.23105,0.61566 -0.25099,0.60154 -0.27093,0.58393 -0.28617,0.56982 -0.30259,0.55338 -0.31785,0.53694 -0.32957,0.52165 -0.34247,0.50638 -0.35186,0.49111 -0.36124,0.47467 -0.36944,0.46173 -0.37884,0.44411 -0.38234,0.43001 -0.38704,0.41592 -0.39056,0.39946 -0.39174,0.38419 -0.39407,0.37127 -0.39291,0.356 -0.38938,0.3419 -0.38822,0.32545 -0.38352,0.31369 -0.37999,0.29844 -0.60754,-0.78719 0.36593,-0.28903 0.37179,-0.30196 0.37414,-0.31603 0.37766,-0.33016 0.37882,-0.34189 0.37767,-0.35718 0.37765,-0.37244 0.37649,-0.38302 0.37061,-0.39711 0.36828,-0.41357 0.36007,-0.42531 0.35302,-0.44059 0.34717,-0.45352 0.33543,-0.46761 0.32605,-0.48288 0.31315,-0.4958 0.30142,-0.51109 0.28618,-0.52282 0.2721,-0.53928 0.25451,-0.55339 0.23691,-0.5663 0.21933,-0.58275 0.19938,-0.59686 0.17827,-0.61094 0.15599,-0.62505 0.13253,-0.64267 0.10908,-0.65559 0.0821,-0.67205 0.0563,-0.68731 0.027,-0.7026 9.9e-4,-0.71903 -0.0329,-0.73432 z m 5.6555,-89.207 0.58642,-0.80364 0.19821,0.47115 -0.37296,2.6729 -0.36945,2.6788 -0.36358,2.687 -0.3589,2.6929 -0.35185,2.7011 -0.34364,2.7082 -0.3331,2.7152 -0.32605,2.7211 -0.31432,2.7316 -0.30377,2.7375 -0.29204,2.7458 -0.27679,2.7528 -0.26507,2.761 -0.24864,2.7704 -0.2334,2.7775 -0.21814,2.7869 -0.19822,2.7951 -0.18061,2.8045 -0.16186,2.8127 -0.14074,2.8209 -0.12081,2.8303 -0.0985,2.8397 -0.0751,2.8491 -0.0504,2.8585 -0.027,2.8679 -9.9e-4,2.8785 0.0258,2.8867 0.0504,2.8985 0.0809,2.9079 0.11026,2.9184 0.13956,2.9279 0.17124,2.9384 -0.99223,0.0634 -0.17124,-2.9502 -0.13957,-2.9373 -0.11025,-2.9278 -0.0809,-2.9173 -0.0528,-2.9079 -0.0258,-2.8962 9.9e-4,-2.8879 0.027,-2.8773 0.0528,-2.8656 0.0751,-2.8585 0.0985,-2.8468 0.1208,-2.8397 0.14074,-2.828 0.16186,-2.8198 0.18062,-2.8115 0.20056,-2.8022 0.21814,-2.7916 0.2334,-2.7845 0.24864,-2.7751 0.26506,-2.7681 0.27914,-2.7575 0.29204,-2.7504 0.30377,-2.7422 0.31432,-2.734 0.32606,-2.7258 0.33543,-2.7199 0.34364,-2.7105 0.35186,-2.7034 0.35889,-2.6952 0.36358,-2.6894 0.36945,-2.6811 0.37531,-2.6752 0.19822,0.47113 z m 0.58642,-0.80364 0.23927,0.17624 -0.041,0.29491 -0.19821,-0.47115 z m -12.255,-7.1446 -0.97816,-0.17388 0.7823,-0.31487 0.31784,0.22793 0.32957,0.23146 0.34247,0.23027 0.35303,0.23263 0.36592,0.2338 0.37415,0.23617 0.38352,0.23498 0.39172,0.23851 0.39878,0.23732 0.4058,0.2385 0.4105,0.24086 0.41519,0.23967 0.4187,0.23969 0.42223,0.24086 0.4234,0.24202 0.42457,0.23969 0.42574,0.24321 0.42574,0.24202 0.42223,0.24085 0.42106,0.24204 0.4187,0.24202 0.41402,0.24086 0.40933,0.24203 0.40345,0.24085 0.3976,0.24086 0.39174,0.23968 0.38116,0.24085 0.37298,0.2385 0.36475,0.23969 0.3542,0.23967 0.3413,0.23852 0.32957,0.23732 -0.58642,0.80363 -0.31785,-0.22793 -0.32957,-0.23145 -0.34247,-0.23028 -0.35302,-0.23263 -0.36594,-0.2338 -0.37414,-0.23615 -0.38235,-0.23499 -0.3929,-0.23851 -0.39877,-0.2385 -0.40463,-0.23732 -0.41167,-0.24086 -0.41402,-0.23968 -0.4187,-0.23969 -0.42223,-0.24085 -0.4234,-0.24203 -0.42574,-0.24086 -0.42457,-0.24202 -0.42574,-0.24203 -0.42223,-0.24086 -0.42106,-0.24203 -0.41987,-0.24203 -0.41285,-0.24086 -0.4105,-0.24085 -0.40346,-0.24203 -0.39642,-0.24086 -0.39055,-0.23967 -0.38352,-0.24086 -0.37298,-0.2385 -0.36475,-0.23968 -0.3542,-0.23968 -0.3413,-0.23851 -0.32957,-0.23733 0.78229,-0.31487 z m -0.97816,-0.17388 0.1384,-0.78718 0.6439,0.47231 -0.7823,0.31487 z m -5.8947,71.403 0.70371,0.70494 -0.82568,-0.20326 -0.27093,-0.95871 -0.23926,-1.0398 -0.20643,-1.1209 -0.17475,-1.2019 -0.14426,-1.2842 -0.11376,-1.3664 -0.0833,-1.4487 -0.0528,-1.5321 -0.0246,-1.6143 0.006,-1.6977 0.0363,-1.7823 0.0645,-1.8646 0.0938,-1.948 0.12198,-2.0326 0.15247,-2.1172 0.18061,-2.1994 0.2076,-2.284 0.23809,-2.3686 0.26506,-2.4532 0.29322,-2.5366 0.32253,-2.6224 0.34951,-2.707 0.37648,-2.7904 0.40463,-2.875 0.43279,-2.9608 0.45858,-3.0442 0.48791,-3.13 0.51253,-3.2157 0.54069,-3.2991 0.56648,-3.3849 0.59464,-3.4695 0.62043,-3.5552 0.97816,0.17388 -0.62044,3.5506 -0.59229,3.4671 -0.56648,3.3802 -0.54069,3.2968 -0.51253,3.211 -0.48556,3.1252 -0.45859,3.0395 -0.43277,2.956 -0.40229,2.8703 -0.37649,2.7857 -0.3495,2.6999 -0.3202,2.6153 -0.29321,2.5296 -0.26506,2.4461 -0.23574,2.3592 -0.2076,2.277 -0.18062,2.19 -0.15012,2.1054 -0.12198,2.0208 -0.0938,1.9362 -0.0646,1.8505 -0.034,1.7659 -0.006,1.6813 0.0222,1.5955 0.0528,1.5086 0.0833,1.4252 0.11141,1.3406 0.13957,1.2536 0.17006,1.1667 0.19939,1.0809 0.22754,0.99515 0.25685,0.90703 -0.82569,-0.20327 z m 0.70371,0.70494 -0.58056,0.58158 -0.24512,-0.78484 0.82568,0.20326 z m 9.9e-4,-9.9e-4 -9.9e-4,9.9e-4 -0.70371,-0.70494 9.9e-4,-9.9e-4 0.84798,0.38067 -0.14426,0.32426 z m -0.70372,-0.70493 0.92304,-0.92466 -0.0751,1.3053 -0.84798,-0.38066 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path482" + d="m 343.64,471.82 3.861,14.631 c 0.26624,7.7755 5.0667,14.196 8.4457,19.156 3.9408,-3.0583 7.5203,-8.088 6.5152,-16.18 -5.7786,-46.464 -3.7132,-77.204 6.0331,-115.07 -22.039,15.045 -32.255,46.787 -24.855,97.459 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path484" + d="m 347.02,486.58 -3.861,-14.631 0.96173,-0.25379 3.861,14.631 0.0153,0.10927 -0.97699,0.1445 z m 0.96173,-0.25377 0.0129,0.0505 0.002,0.0588 -0.0153,-0.10926 z m 7.661,18.889 0.60754,0.78719 -0.71426,-0.11279 -0.31902,-0.46761 -0.3284,-0.47818 -0.33426,-0.48642 -0.33895,-0.49462 -0.34482,-0.50522 -0.34833,-0.5146 -0.34834,-0.52166 -0.35068,-0.53223 -0.34952,-0.54045 -0.3495,-0.54869 -0.34716,-0.55807 -0.34364,-0.56748 -0.33896,-0.57687 -0.33427,-0.58511 -0.32604,-0.59332 -0.31902,-0.60273 -0.30963,-0.61212 -0.29907,-0.62034 -0.28971,-0.62858 -0.27562,-0.63914 -0.26271,-0.64738 -0.24865,-0.65559 -0.23221,-0.66617 -0.21464,-0.67204 -0.19821,-0.68262 -0.17827,-0.69202 -0.15834,-0.70025 -0.13605,-0.70846 -0.11259,-0.71786 -0.0904,-0.72609 -0.0668,-0.73431 -0.0375,-0.74253 0.99224,-0.0352 0.0375,0.7073 0.0622,0.69905 0.0856,0.6932 0.1079,0.68496 0.13137,0.67557 0.1513,0.66971 0.17123,0.66381 0.18883,0.65442 0.20759,0.64854 0.22284,0.64033 0.23926,0.6321 0.25568,0.62621 0.26624,0.618 0.28031,0.60978 0.29204,0.60389 0.30025,0.59568 0.31198,0.58862 0.31902,0.57923 0.32487,0.57336 0.33191,0.56277 0.33896,0.55808 0.34013,0.54868 0.34482,0.54163 0.34481,0.5334 0.34834,0.52519 0.34599,0.5193 0.34365,0.50991 0.34247,0.5005 0.33895,0.49464 0.33426,0.48641 0.3284,0.47818 0.32136,0.46996 -0.71427,-0.11278 z m 0.60754,0.78719 -0.41753,0.32309 -0.29673,-0.43589 0.71426,0.1128 z m 5.7188,-16.512 0.98519,-0.12218 0.0833,0.76485 0.0563,0.74842 0.0293,0.73196 0.006,0.71317 -0.02,0.69789 -0.0422,0.68026 -0.0656,0.665 -0.088,0.64738 -0.10907,0.63091 -0.13019,0.61447 -0.15012,0.59922 -0.16772,0.58273 -0.18766,0.56749 -0.2029,0.55102 -0.22167,0.53694 -0.23691,0.52048 -0.251,0.5052 -0.26505,0.48994 -0.27915,0.47702 -0.29203,0.45938 -0.30259,0.44646 -0.31316,0.43236 -0.3237,0.41709 -0.33427,0.40417 -0.34013,0.38889 -0.34951,0.37597 -0.35537,0.36305 -0.36123,0.34894 -0.36593,0.33837 -0.37062,0.3231 -0.37531,0.31252 -0.37766,0.2996 -0.60754,-0.78719 0.3589,-0.28549 0.35654,-0.29608 0.35185,-0.309 0.34951,-0.31957 0.34247,-0.3325 0.33661,-0.3419 0.3284,-0.35717 0.32371,-0.36774 0.31315,-0.38067 0.30494,-0.39359 0.29673,-0.40651 0.28383,-0.41827 0.27328,-0.43354 0.26271,-0.44646 0.24865,-0.45938 0.23691,-0.47467 0.2205,-0.48758 0.20759,-0.50404 0.19117,-0.51813 0.17594,-0.53222 0.15833,-0.54752 0.14074,-0.56394 0.12315,-0.57923 0.10204,-0.59567 0.0833,-0.61212 0.0634,-0.62741 0.0399,-0.64501 0.0176,-0.66265 -0.004,-0.68026 -0.0293,-0.69672 -0.0539,-0.71552 -0.0785,-0.73432 z m 6.806,-114.72 -0.56061,-0.82242 0.76117,0.53575 -0.89019,3.5247 -0.84445,3.4871 -0.79988,3.4542 -0.75532,3.4237 -0.70958,3.3978 -0.665,3.3778 -0.61926,3.3614 -0.57352,3.3485 -0.52896,3.3402 -0.48439,3.3344 -0.43864,3.3356 -0.39408,3.3402 -0.34716,3.3485 -0.30377,3.3602 -0.25685,3.3778 -0.21229,3.3978 -0.16655,3.4248 -0.12197,3.453 -0.0751,3.4871 -0.0305,3.5247 0.0153,3.567 0.0598,3.6128 0.10672,3.6633 0.15247,3.7186 0.19704,3.7785 0.24396,3.8396 0.28852,3.9077 0.33543,3.9782 0.38117,4.0546 0.42575,4.1356 0.47265,4.2179 0.51723,4.3072 -0.98519,0.1222 -0.51957,-4.3142 -0.47266,-4.2273 -0.42809,-4.1427 -0.38118,-4.064 -0.33543,-3.99 -0.29087,-3.9171 -0.24394,-3.8513 -0.19705,-3.7879 -0.15246,-3.7303 -0.10673,-3.6751 -0.0622,-3.6269 -0.0153,-3.5788 0.0305,-3.5364 0.0774,-3.5012 0.12197,-3.4671 0.16655,-3.4366 0.21229,-3.4119 0.25919,-3.3919 0.30378,-3.3743 0.34951,-3.3626 0.39642,-3.352 0.43864,-3.3496 0.48674,-3.3485 0.5313,-3.352 0.57587,-3.3602 0.6216,-3.3731 0.66735,-3.3896 0.71192,-3.4096 0.75766,-3.4354 0.80223,-3.4636 0.8468,-3.4965 0.89254,-3.5341 0.76117,0.53575 z m -0.56061,-0.82242 1.0908,-0.74489 -0.32957,1.2806 -0.76118,-0.53575 z m -24.094,97.744 -0.96174,0.25379 -0.0105,-0.0552 -0.64389,-4.7031 -0.54069,-4.5939 -0.43981,-4.4858 -0.3413,-4.3753 -0.23927,-4.2661 -0.14191,-4.1568 -0.047,-4.0499 0.0516,-3.943 0.14543,-3.8361 0.24044,-3.728 0.33192,-3.6222 0.42457,-3.5165 0.51605,-3.4119 0.60636,-3.305 0.69551,-3.2016 0.78111,-3.097 0.87143,-2.9936 0.9547,-2.8903 1.0415,-2.7857 1.1248,-2.6835 1.208,-2.5824 1.2913,-2.479 1.3699,-2.3768 1.4508,-2.2758 1.5294,-2.1747 1.6091,-2.0737 1.6842,-1.9715 1.7604,-1.8728 1.8332,-1.7718 1.9082,-1.6719 1.9798,-1.5732 2.0502,-1.4733 0.56061,0.82242 -2.0126,1.4451 -1.9422,1.5426 -1.8707,1.6413 -1.8003,1.7388 -1.7276,1.8375 -1.6537,1.9362 -1.5786,2.0361 -1.5036,2.1372 -1.4274,2.2382 -1.3488,2.3392 -1.2702,2.4414 -1.1916,2.5448 -1.1083,2.6459 -1.0274,2.7504 -0.94532,2.855 -0.85969,2.9584 -0.77408,3.0641 -0.68847,3.1687 -0.59932,3.2744 -0.51136,3.3814 -0.42223,3.4883 -0.32957,3.594 -0.23809,3.7021 -0.14543,3.8102 -0.0493,3.9171 0.0446,4.0264 0.14191,4.1357 0.23926,4.2449 0.33895,4.3542 0.43747,4.4646 0.53834,4.5751 0.64155,4.6867 -0.0105,-0.0552 z m -0.96174,0.25379 -0.006,-0.0212 -0.005,-0.034 0.0105,0.0552 z m 0.48088,-0.12689 0.48086,-0.1269 -0.48086,0.1269 z m -0.48088,0.12689 -0.006,-0.0212 -0.005,-0.034 0.0105,0.0552 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path486" + d="m 344.77,486.22 -20.223,-6.7169 c -2.5768,20.221 1.384,45.621 6.8295,79.114 4.6762,28.76 2.2178,51.522 -1.357,66.121 21.575,-2.9549 30.695,-30.772 19.88,-83.093 -2.8312,-13.695 -5.6766,-31.201 -5.1289,-55.426 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path488" + d="m 324.71,479.03 20.223,6.7169 -0.31197,0.94462 -20.223,-6.7169 -0.33661,-0.53576 0.64859,-0.40887 z m -0.64859,0.40887 0.0763,-0.5992 0.57236,0.19033 -0.64859,0.40888 z m 7.8123,79.098 -0.9805,0.1598 -0.5055,-3.1158 -0.49728,-3.07 -0.48556,-3.0242 -0.47383,-2.9784 -0.46211,-2.9326 -0.45037,-2.8879 -0.43395,-2.8456 -0.41988,-2.7998 -0.40229,-2.7575 -0.38587,-2.7164 -0.36944,-2.6741 -0.34951,-2.6318 -0.32957,-2.593 -0.30963,-2.5507 -0.28735,-2.512 -0.26507,-2.472 -0.24161,-2.4356 -0.21697,-2.3968 -0.19117,-2.358 -0.16538,-2.3216 -0.1384,-2.2864 -0.10907,-2.2499 -0.0809,-2.2135 -0.0516,-2.1794 -0.02,-2.1466 0.0129,-2.1125 0.0458,-2.0784 0.0786,-2.0455 0.11377,-2.015 0.14895,-1.9832 0.18649,-1.9515 0.22401,-1.9221 0.98519,0.12688 -0.22166,1.901 -0.18415,1.9304 -0.14661,1.9644 -0.11375,1.9962 -0.0786,2.029 -0.0434,2.062 -0.0129,2.096 0.02,2.1324 0.0493,2.1653 0.0809,2.2018 0.10908,2.2382 0.13839,2.2746 0.16303,2.3122 0.19117,2.3486 0.21698,2.3874 0.23926,2.4262 0.26507,2.4649 0.28735,2.5049 0.30727,2.546 0.32957,2.586 0.34952,2.6271 0.3671,2.6694 0.38587,2.7117 0.40229,2.7552 0.41988,2.7974 0.43395,2.8409 0.44802,2.8856 0.46211,2.9326 0.47383,2.976 0.48556,3.0218 0.49729,3.07 0.50549,3.1158 z m -1.9141,65.708 0.13371,0.98692 -0.54889,-0.61212 0.32957,-1.3864 0.32253,-1.4346 0.31433,-1.4792 0.30376,-1.5285 0.29321,-1.5732 0.28148,-1.6202 0.26859,-1.666 0.25451,-1.7095 0.23926,-1.7553 0.22167,-1.7976 0.20524,-1.8434 0.18649,-1.8869 0.16654,-1.9292 0.14544,-1.9727 0.12432,-2.0138 0.10203,-2.0561 0.0763,-2.0984 0.0516,-2.1383 0.0246,-2.1794 -9.9e-4,-2.2194 -0.0305,-2.2605 -0.0598,-2.2981 -0.0903,-2.338 -0.12316,-2.3768 -0.15599,-2.4156 -0.18882,-2.4532 -0.22519,-2.4896 -0.26037,-2.5284 -0.29791,-2.5636 -0.33661,-2.6012 -0.37648,-2.6365 -0.41636,-2.6729 0.9805,-0.1598 0.41871,2.6847 0.37883,2.6506 0.33661,2.613 0.30025,2.5777 0.26272,2.5401 0.22519,2.5037 0.19117,2.4649 0.15598,2.4274 0.12316,2.3909 0.0904,2.3498 0.0622,2.3122 0.0305,2.2722 9.9e-4,2.2311 -0.0246,2.1935 -0.0539,2.1501 -0.0763,2.1101 -0.10204,2.0678 -0.12433,2.0279 -0.14777,1.9844 -0.16654,1.9409 -0.18884,1.8986 -0.20524,1.8552 -0.22402,1.8117 -0.24161,1.767 -0.2545,1.7212 -0.27093,1.6778 -0.28383,1.6319 -0.29556,1.5849 -0.30612,1.5403 -0.31666,1.4933 -0.32488,1.4463 -0.33426,1.3981 -0.5489,-0.61213 z m 0.13371,0.98692 -0.72247,0.0987 0.17358,-0.71081 0.54889,0.61212 z m 19.326,-83.485 0.97346,-0.20208 0.95704,4.8418 0.8421,4.6984 0.72717,4.5551 0.61574,4.4129 0.50316,4.2696 0.39291,4.1262 0.28499,3.9817 0.17594,3.8396 0.0727,3.6962 -0.0351,3.5517 -0.13721,3.4107 -0.24044,3.2662 -0.3413,3.1241 -0.43981,2.9807 -0.54069,2.8362 -0.63686,2.6941 -0.7342,2.5507 -0.82803,2.4086 -0.92421,2.264 -1.0169,2.1195 -1.1095,1.9774 -1.1986,1.8328 -1.2913,1.6872 -1.3781,1.5426 -1.4661,1.3958 -1.5528,1.2478 -1.635,1.1009 -1.7182,0.95402 -1.798,0.80364 -1.8742,0.65442 -1.9504,0.50521 -2.0243,0.35716 -0.1337,-0.98691 1.9469,-0.34307 1.873,-0.48406 1.7968,-0.62858 1.7206,-0.76838 1.6432,-0.91173 1.5646,-1.0539 1.4872,-1.196 1.4074,-1.3394 1.3265,-1.4839 1.2444,-1.6284 1.1611,-1.7741 1.0767,-1.9186 0.99106,-2.0655 0.90074,-2.21 0.81162,-2.3568 0.72012,-2.5037 0.62747,-2.6494 0.53131,-2.7963 0.43512,-2.9408 0.33661,-3.0865 0.23809,-3.2333 0.13722,-3.3778 0.0329,-3.5235 -0.0704,-3.668 -0.17592,-3.8137 -0.28266,-3.9582 -0.39056,-4.1028 -0.5008,-4.2484 -0.61341,-4.3918 -0.72482,-4.5363 -0.83741,-4.6796 -0.9547,-4.8253 z m -4.7981,-55.055 0.31197,-0.94462 0.34013,0.48405 -0.0399,2.2464 -0.0222,2.2088 -0.004,2.17 0.0141,2.1324 0.0317,2.096 0.0469,2.0572 0.0645,2.0232 0.0809,1.9868 0.095,1.9515 0.10907,1.9163 0.12316,1.8846 0.13488,1.8481 0.14778,1.8176 0.16068,1.7835 0.17006,1.753 0.18179,1.7212 0.19235,1.6895 0.19939,1.6601 0.20993,1.6308 0.21698,1.6014 0.22401,1.572 0.23223,1.545 0.23691,1.5156 0.24396,1.4898 0.24629,1.4639 0.25334,1.4369 0.25685,1.4122 0.25803,1.3876 0.26155,1.3629 0.26271,1.3394 0.26506,1.3171 0.26507,1.2924 -0.97346,0.20208 -0.26507,-1.2971 -0.26506,-1.3194 -0.26507,-1.3441 -0.26155,-1.3676 -0.26036,-1.3923 -0.25686,-1.4169 -0.25333,-1.4439 -0.24864,-1.4686 -0.24396,-1.4968 -0.23926,-1.5227 -0.23223,-1.552 -0.22636,-1.5791 -0.21697,-1.6084 -0.20994,-1.6378 -0.20173,-1.6672 -0.19235,-1.6966 -0.18179,-1.7283 -0.17241,-1.76 -0.16069,-1.7929 -0.14777,-1.8246 -0.13722,-1.8575 -0.12315,-1.8916 -0.10908,-1.9257 -0.095,-1.9586 -0.0809,-1.9962 -0.0645,-2.0302 -0.0493,-2.0667 -0.0317,-2.1031 -0.0141,-2.1418 0.004,-2.1771 0.0222,-2.2182 0.0422,-2.2558 0.34013,0.48406 z m 0.31197,-0.94462 0.34834,0.11631 -0.008,0.36774 -0.34013,-0.48405 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path490" + d="m 343.56,584.05 1.181,0.0423 -9.9e-4,0.0305 -0.004,0.0293 -0.005,0.0293 -0.006,0.0293 -0.008,0.0283 -0.008,0.0271 -0.0105,0.0271 -0.0117,0.0271 -0.0129,0.0259 -0.0141,0.0247 -0.0153,0.0247 -0.0164,0.0235 -0.0164,0.0223 -0.0188,0.0223 -0.0188,0.02 -0.02,0.02 -0.0224,0.0188 -0.0222,0.0176 -0.0234,0.0177 -0.0234,0.0153 -0.0246,0.0154 -0.0246,0.0129 -0.0258,0.0117 -0.027,0.0117 -0.027,0.009 -0.0281,0.008 -0.0281,0.007 -0.0281,0.006 -0.0293,0.005 -0.0305,0.002 -0.0293,9.9e-4 -0.0305,0 -0.0305,-0.002 -0.0293,-0.004 -0.0293,-0.005 -0.0293,-0.006 -0.0281,-0.008 -0.027,-0.008 -0.027,-0.0105 -0.027,-0.0117 -0.0258,-0.0129 -0.0246,-0.0141 -0.0246,-0.0154 -0.0234,-0.0153 -0.0222,-0.0177 -0.0222,-0.0188 -0.02,-0.0188 -0.02,-0.02 -0.02,-0.0223 -0.0164,-0.0223 -0.0176,-0.0223 -0.0153,-0.0247 -0.0153,-0.0247 -0.0129,-0.0247 -0.0117,-0.0259 -0.0117,-0.0271 -0.009,-0.0271 -0.008,-0.0281 -0.008,-0.0282 -0.005,-0.0282 -0.005,-0.0293 -0.002,-0.0293 -9.9e-4,-0.0305 0,-0.0305 0,0 z m -4.302,-40.199 1.1576,-0.23967 0.23809,1.1631 0.23575,1.1772 0.23339,1.189 0.23105,1.2008 0.22636,1.2113 0.22284,1.2219 0.21815,1.2325 0.21346,1.2407 0.20759,1.2489 0.20291,1.2572 0.19587,1.2642 0.19,1.2712 0.18179,1.2771 0.17475,1.283 0.16772,1.2865 0.15833,1.29 0.14896,1.2936 0.14074,1.2971 0.13018,1.2983 0.12081,1.3006 0.10907,1.3018 0.0985,1.3006 0.088,1.3006 0.0751,1.2994 0.0622,1.2971 0.0505,1.2947 0.0363,1.2924 0.0222,1.2877 0.009,1.2842 -0.007,1.2783 -0.02,1.2724 -0.0375,1.2666 -1.1811,-0.041 0.0363,-1.2524 0.02,-1.2583 0.007,-1.2642 -0.009,-1.2712 -0.0222,-1.2748 -0.0363,-1.2795 -0.0493,-1.283 -0.0622,-1.2865 -0.0751,-1.2877 -0.0856,-1.29 -0.0985,-1.2912 -0.10908,-1.2912 -0.11962,-1.2912 -0.12902,-1.29 -0.13956,-1.2877 -0.14896,-1.2853 -0.15716,-1.283 -0.16538,-1.2783 -0.17475,-1.2748 -0.18062,-1.2701 -0.18883,-1.2642 -0.19469,-1.2572 -0.20056,-1.2513 -0.20758,-1.243 -0.21229,-1.2348 -0.21698,-1.2266 -0.22167,-1.216 -0.22636,-1.2066 -0.2287,-1.196 -0.23223,-1.1831 -0.23574,-1.1726 -0.23692,-1.1584 0,9.9e-4 z m -5.4127,-50.215 1.1822,-0.008 0.0153,1.5885 0.0246,1.5849 0.0351,1.5802 0.0446,1.5756 0.0551,1.5732 0.0645,1.5685 0.0739,1.5661 0.0844,1.5626 0.095,1.5603 0.10322,1.5579 0.11494,1.5568 0.12314,1.5544 0.13488,1.552 0.14308,1.5509 0.15365,1.5509 0.16303,1.5509 0.17357,1.5497 0.18298,1.5497 0.19234,1.5497 0.20408,1.5509 0.21228,1.552 0.22285,1.5509 0.23339,1.5544 0.24278,1.5556 0.25216,1.5579 0.26155,1.5591 0.27328,1.5626 0.28148,1.565 0.29203,1.5673 0.3026,1.5708 0.31198,1.5755 0.32253,1.5791 -1.1576,0.23968 -0.3237,-1.5849 -0.31315,-1.5814 -0.30377,-1.5779 -0.29322,-1.5755 -0.28265,-1.572 -0.27445,-1.5685 -0.26272,-1.5662 -0.25332,-1.5638 -0.24396,-1.5638 -0.23339,-1.5603 -0.22402,-1.5603 -0.21464,-1.5591 -0.20407,-1.5567 -0.19352,-1.5579 -0.18413,-1.5568 -0.17359,-1.5579 -0.1642,-1.5579 -0.15482,-1.5579 -0.14425,-1.5591 -0.13488,-1.5603 -0.12433,-1.5626 -0.11493,-1.5638 -0.10439,-1.5662 -0.0938,-1.5673 -0.0856,-1.5708 -0.0751,-1.5732 -0.0645,-1.5756 -0.0551,-1.5802 -0.0446,-1.5838 -0.0352,-1.5873 -0.0258,-1.592 -0.0141,-1.5967 -9.9e-4,0.002 z m 1.1811,-0.008 -1.1822,0.008 9.9e-4,-0.0305 9.9e-4,-0.0305 0.004,-0.0293 0.006,-0.0294 0.006,-0.0283 0.008,-0.0281 0.008,-0.0281 0.0105,-0.0271 0.0129,-0.0259 0.0129,-0.0259 0.0141,-0.0259 0.0153,-0.0235 0.0153,-0.0235 0.0176,-0.0223 0.0188,-0.0212 0.02,-0.0212 0.02,-0.02 0.0222,-0.0188 0.0222,-0.0177 0.0222,-0.0165 0.0246,-0.0165 0.0246,-0.0142 0.0246,-0.0129 0.027,-0.0117 0.027,-0.0118 0.027,-0.009 0.0281,-0.007 0.0293,-0.007 0.0281,-0.006 0.0293,-0.004 0.0305,-0.004 0.0305,-9.9e-4 0.0305,9.9e-4 0.0293,0.002 0.0293,0.004 0.0293,0.005 0.0281,0.006 0.0282,0.008 0.0281,0.009 0.027,0.0105 0.027,0.0117 0.0258,0.013 0.0246,0.0142 0.0234,0.0153 0.0234,0.0165 0.0222,0.0176 0.0222,0.0177 0.02,0.02 0.02,0.02 0.0188,0.0223 0.0176,0.0212 0.0164,0.0235 0.0164,0.0235 0.0141,0.0247 0.0129,0.0259 0.0117,0.0271 0.0105,0.0259 0.0105,0.0281 0.007,0.0281 0.007,0.0282 0.006,0.0293 0.004,0.0293 0.004,0.0293 9.9e-4,0.0305 -0.002,9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path492" + d="m 343.96,367.25 13.271,2.2323 c -0.64976,2.848 -4.0205,20.313 -4.6304,23.295 -4.9635,24.275 -8.2358,52.876 -4.4838,84.249 1.3922,11.641 3.861,21.161 7.4804,28.518 -14.559,-1.6531 -23.89,-15.872 -22.683,-40.67 -2.5298,-28.961 -1.4191,-51.991 3.2699,-69.313 1.3734,-5.0744 5.7904,-24.209 7.776,-28.31 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path494" + d="m 357.15,369.98 -13.271,-2.2323 0.16419,-0.98222 13.271,2.2323 0.40229,0.60155 L 357.15,369.98 z m 0.16419,-0.98222 0.51958,0.0869 -0.11729,0.5146 -0.40229,-0.60155 z m -4.2258,23.886 -0.97346,-0.19973 0.0656,-0.31958 0.0797,-0.39946 0.0927,-0.47349 0.1079,-0.54398 0.11964,-0.60742 0.13135,-0.66499 0.14074,-0.71905 0.15012,-0.76604 0.15834,-0.80832 0.16655,-0.84476 0.17123,-0.8753 0.1771,-0.90468 0.18062,-0.92346 0.18414,-0.93875 0.18648,-0.9505 0.18649,-0.95402 0.18764,-0.95402 0.18649,-0.94933 0.18531,-0.93756 0.18062,-0.92112 0.17944,-0.89997 0.17358,-0.87295 0.16655,-0.83889 0.16068,-0.80245 0.1513,-0.76017 0.14309,-0.71198 0.1337,-0.65795 0.12315,-0.5992 0.11025,-0.53458 0.0985,-0.46644 0.0833,-0.39241 0.0704,-0.31253 0.96877,0.22088 -0.068,0.30548 -0.0833,0.38536 -0.0962,0.46174 -0.11025,0.53459 -0.12315,0.59684 -0.13371,0.6556 -0.14308,0.70964 -0.1513,0.76015 -0.16068,0.80247 -0.16655,0.83888 -0.17358,0.87295 -0.1771,0.89763 -0.18062,0.92112 -0.1853,0.93757 -0.18649,0.94933 -0.18765,0.954 -0.18649,0.95403 -0.18648,0.95049 -0.18414,0.93875 -0.18062,0.92347 -0.17709,0.90233 -0.17124,0.87766 -0.16655,0.84475 -0.15833,0.80833 -0.15013,0.76603 -0.14074,0.71904 -0.13136,0.66499 -0.11963,0.60742 -0.1079,0.54398 -0.095,0.47584 -0.0797,0.40182 -0.0656,0.32192 z m -4.4768,84.09 -0.98753,0.11749 -0.33075,-2.9384 -0.29321,-2.9232 -0.25216,-2.9067 -0.21463,-2.8879 -0.17593,-2.8726 -0.14074,-2.8526 -0.10439,-2.8362 -0.0715,-2.8174 -0.0375,-2.7986 -0.005,-2.7798 0.0258,-2.7598 0.0587,-2.741 0.0868,-2.7222 0.11494,-2.6999 0.14191,-2.6823 0.16889,-2.66 0.19586,-2.6388 0.21816,-2.6189 0.24278,-2.5977 0.26624,-2.5742 0.28735,-2.5531 0.30845,-2.5307 0.32722,-2.5084 0.346,-2.4837 0.36358,-2.4626 0.38235,-2.4379 0.39525,-2.4144 0.41167,-2.3921 0.42574,-2.3663 0.43865,-2.3404 0.4492,-2.3169 0.46093,-2.2922 0.97346,0.19972 -0.45858,2.2852 -0.4492,2.3099 -0.4363,2.3357 -0.42574,2.3592 -0.40933,2.3827 -0.39525,2.4074 -0.38001,2.4309 -0.36358,2.4532 -0.34364,2.4767 -0.32723,2.499 -0.30611,2.5213 -0.28735,2.546 -0.26389,2.5648 -0.24278,2.586 -0.21815,2.6095 -0.19352,2.6294 -0.16889,2.6506 -0.14191,2.6706 -0.11494,2.6905 -0.0868,2.7105 -0.0563,2.7293 -0.0258,2.7504 0.005,2.7681 0.0375,2.7869 0.0692,2.8057 0.10437,2.8245 0.14075,2.8409 0.17593,2.8585 0.21228,2.8762 0.25217,2.8926 0.29086,2.9114 0.33074,2.9267 z m 6.9304,29.072 0.11259,-0.98928 -0.50197,0.71435 -0.33896,-0.70259 -0.33191,-0.71552 -0.32606,-0.72843 -0.31784,-0.73903 -0.31198,-0.7531 -0.30494,-0.76604 -0.29791,-0.77778 -0.29203,-0.7907 -0.28383,-0.80365 -0.27914,-0.81538 -0.26976,-0.8283 -0.26505,-0.84006 -0.25804,-0.85298 -0.24981,-0.86473 -0.2463,-0.87764 -0.23692,-0.89058 -0.23105,-0.90232 -0.22519,-0.91525 -0.21815,-0.92817 -0.21111,-0.93992 -0.20525,-0.95285 -0.19704,-0.96342 -0.19235,-0.97752 -0.18647,-0.98927 -0.17828,-1.0022 -0.17241,-1.0151 -0.16537,-1.0269 -0.16068,-1.0386 -0.15247,-1.0515 -0.14778,-1.0645 -0.13957,-1.0762 -0.13488,-1.0891 0.98754,-0.11749 0.13253,1.0821 0.13958,1.0692 0.14543,1.0551 0.15247,1.0445 0.15833,1.0316 0.16537,1.0198 0.17007,1.0057 0.17827,0.99279 0.18414,0.98222 0.19,0.96812 0.19703,0.95637 0.20292,0.94344 0.20876,0.93053 0.2158,0.91877 0.22284,0.90584 0.22871,0.89294 0.23457,0.87882 0.24161,0.86825 0.24747,0.85533 0.25568,0.84123 0.26037,0.83066 0.26741,0.81655 0.27444,0.80364 0.27914,0.79188 0.28736,0.77896 0.2932,0.76603 0.30025,0.75195 0.30729,0.74135 0.31316,0.72726 0.31901,0.71434 0.32722,0.70377 0.33192,0.68849 -0.50198,0.71435 z m 0.50198,-0.71435 0.40228,0.81656 -0.90426,-0.10221 0.50198,-0.71435 z m -23.624,-40.407 0.98989,-0.0869 9.9e-4,0.0681 -0.0821,2.2805 -0.0212,2.2182 0.0375,2.1559 0.0962,2.0902 0.15364,2.0267 0.20995,1.9633 0.26506,1.8975 0.32019,1.8328 0.37296,1.7682 0.42457,1.7001 0.47617,1.6355 0.52662,1.5685 0.57469,1.5015 0.62396,1.4346 0.66852,1.3676 0.71544,1.2983 0.76001,1.2313 0.80339,1.1632 0.8468,1.0927 0.88667,1.0269 0.92891,0.95638 0.96877,0.88822 1.0063,0.8189 1.045,0.75076 1.0814,0.68145 1.1189,0.61094 1.1541,0.54163 1.1893,0.47114 1.2233,0.40181 1.2561,0.32897 1.289,0.25966 1.323,0.18798 -0.11259,0.98928 -1.3769,-0.19503 -1.3453,-0.27141 -1.3148,-0.34542 -1.2796,-0.42062 -1.2456,-0.49228 -1.208,-0.56747 -1.1728,-0.6415 -1.133,-0.71199 -1.0943,-0.78601 -1.0532,-0.85651 -1.011,-0.92816 -0.96878,-0.99868 -0.9242,-1.0668 -0.87964,-1.1373 -0.83155,-1.2054 -0.78815,-1.2736 -0.73889,-1.3429 -0.68964,-1.4075 -0.64038,-1.4769 -0.59112,-1.5415 -0.53833,-1.6061 -0.4879,-1.673 -0.43396,-1.7377 -0.38001,-1.8035 -0.32487,-1.8657 -0.26976,-1.9304 -0.21463,-1.9938 -0.15599,-2.0572 -0.0962,-2.1207 -0.0398,-2.1818 0.0234,-2.2464 0.0821,-2.3063 9.9e-4,0.0681 z m 0.98989,-0.0869 0.002,0.0329 -9.9e-4,0.0352 -9.9e-4,-0.0681 z m 2.2953,-69.4 0.95939,0.26083 -0.42691,1.6319 -0.40699,1.666 -0.38469,1.7001 -0.36476,1.7342 -0.34364,1.7682 -0.32371,1.8011 -0.30142,1.8352 -0.28149,1.8693 -0.25919,1.9034 -0.23927,1.9362 -0.21814,1.9715 -0.19705,2.0056 -0.17592,2.0396 -0.15482,2.0737 -0.13487,2.1078 -0.1126,2.1418 -0.0926,2.1759 -0.0704,2.21 -0.0493,2.2452 -0.0282,2.2793 -0.007,2.3134 0.0141,2.3486 0.034,2.3815 0.0551,2.4168 0.0785,2.452 0.0985,2.4873 0.11963,2.519 0.14192,2.5566 0.16185,2.5895 0.18296,2.6247 0.20525,2.66 0.22637,2.694 -0.98989,0.0869 -0.22637,-2.7011 -0.20524,-2.667 -0.18531,-2.6318 -0.16186,-2.5965 -0.14191,-2.5636 -0.11963,-2.5284 -0.0985,-2.4943 -0.0785,-2.4591 -0.0575,-2.4262 -0.0341,-2.3909 -0.0141,-2.3557 0.007,-2.3228 0.0281,-2.2887 0.0516,-2.2546 0.0704,-2.2217 0.0926,-2.1853 0.11259,-2.1536 0.13488,-2.1172 0.15717,-2.0855 0.17592,-2.0514 0.19939,-2.0173 0.21815,-1.9832 0.2416,-1.9503 0.26155,-1.9151 0.28383,-1.8834 0.30377,-1.8493 0.32605,-1.8152 0.34599,-1.7823 0.3671,-1.7483 0.38938,-1.7165 0.40933,-1.6825 0.43161,-1.6484 z m 8.3378,-28.671 -0.1642,0.98222 0.52895,-0.27376 -0.18296,0.40534 -0.20056,0.49465 -0.21346,0.57688 -0.22753,0.65206 -0.23809,0.71903 -0.2463,0.78367 -0.25685,0.84005 -0.26389,0.89058 -0.27093,0.93757 -0.27444,0.97869 -0.28032,1.0128 -0.28265,1.0422 -0.28618,1.068 -0.28617,1.0856 -0.28618,1.102 -0.28735,1.1079 -0.28383,1.1114 -0.28148,1.1091 -0.27796,1.1021 -0.27328,1.088 -0.26741,1.0715 -0.26038,1.0457 -0.25332,1.0175 -0.24396,0.98339 -0.23457,0.94345 -0.22284,0.89996 -0.21228,0.84711 -0.19822,0.79424 -0.18648,0.73196 -0.17006,0.66617 -0.15482,0.59567 -0.1384,0.51931 -0.95939,-0.26083 0.13606,-0.51226 0.15481,-0.59097 0.17006,-0.66381 0.18414,-0.72963 0.19821,-0.79188 0.21229,-0.84711 0.22284,-0.89762 0.23457,-0.94344 0.24395,-0.9834 0.25334,-1.0175 0.26037,-1.048 0.2674,-1.0715 0.27328,-1.0903 0.27796,-1.1021 0.28384,-1.1114 0.28383,-1.1138 0.28735,-1.1103 0.28616,-1.1021 0.28853,-1.0903 0.28617,-1.0703 0.285,-1.0468 0.28032,-1.0175 0.27679,-0.98339 0.27093,-0.94461 0.26623,-0.89763 0.2592,-0.84945 0.25099,-0.79306 0.24279,-0.73314 0.23222,-0.66851 0.22284,-0.60039 0.21229,-0.52517 0.20407,-0.44999 0.52895,-0.27376 z m -0.52896,0.27375 0.16185,-0.33484 0.36711,0.0611 -0.52896,0.27375 z m 0.44686,0.21737 0.0821,-0.49112 -0.0821,0.49112 z m -0.44686,-0.21737 0.16185,-0.33484 0.36711,0.0611 -0.52896,0.27375 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path496" + d="m 335.92,370.39 6.5152,7.4407 c -1.8496,1.3218 1.2878,7.0259 -0.40112,18.103 -1.0896,6.2892 -4.831,13.704 -5.605,21.729 -2.5662,26.596 -2.5756,59.898 5.4162,81.186 -14.559,-1.6531 -19.556,-14.853 -20.028,-39.678 -0.38938,-20.523 -0.45624,-44.72 4.6926,-72.661 1.045,-6.5301 4.1824,-11.737 9.4098,-16.12 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path498" + d="m 342.06,378.16 -6.5152,-7.4406 0.74593,-0.6556 6.5152,7.4406 -0.0844,0.73314 -0.66148,-0.0775 z m 0.74593,-0.6556 0.36241,0.41357 -0.44686,0.31957 0.0844,-0.73314 z m -0.28501,18.515 -0.97815,-0.16917 -0.002,0.009 0.14309,-1.0128 0.11729,-0.97986 0.0915,-0.94933 0.0692,-0.91994 0.0504,-0.88823 0.0293,-0.85767 0.0117,-0.82713 -0.004,-0.80011 -0.0152,-0.76721 -0.0293,-0.7402 -0.0399,-0.7108 -0.0469,-0.68145 -0.0539,-0.65324 -0.0587,-0.62388 -0.0634,-0.59684 -0.0633,-0.56984 -0.0645,-0.54045 -0.061,-0.51578 -0.0575,-0.48877 -0.0516,-0.4629 -0.0446,-0.43824 -0.0341,-0.41356 -0.0246,-0.39008 -0.0105,-0.36774 0.006,-0.34541 0.0234,-0.3278 0.0458,-0.31018 0.0751,-0.2949 0.10556,-0.2761 0.14427,-0.25613 0.18647,-0.23146 0.22754,-0.19503 0.57704,0.81068 -0.0915,0.0775 -0.0763,0.0952 -0.0668,0.11985 -0.0587,0.1539 -0.047,0.18917 -0.034,0.22558 -0.0188,0.26199 -0.004,0.29609 0.008,0.33014 0.0222,0.36187 0.034,0.39476 0.0422,0.42415 0.0516,0.45352 0.0575,0.48639 0.061,0.5158 0.0645,0.54515 0.0634,0.57453 0.0634,0.60625 0.061,0.63561 0.0539,0.66501 0.0492,0.69553 0.0399,0.72492 0.0293,0.75663 0.0176,0.78601 0.004,0.81655 -0.0141,0.84829 -0.0293,0.87647 -0.0504,0.90937 -0.0715,0.93874 -0.0938,0.97284 -0.11962,1.001 -0.14544,1.0339 -0.002,0.009 z m 0.002,-0.009 -0.002,0.009 0.007,-0.0435 -0.005,0.0341 z m -5.6015,21.702 -0.98989,-0.0964 0.0821,-0.76134 0.0997,-0.75664 0.11376,-0.75428 0.12901,-0.74841 0.14193,-0.74372 0.15481,-0.73902 0.1642,-0.73431 0.17709,-0.7296 0.18415,-0.72492 0.19235,-0.72022 0.20055,-0.71433 0.20525,-0.70966 0.21111,-0.70376 0.21346,-0.69906 0.21698,-0.69202 0.22049,-0.68849 0.21933,-0.68145 0.21932,-0.67556 0.21815,-0.66969 0.2158,-0.665 0.21229,-0.65794 0.20759,-0.6509 0.20173,-0.6462 0.19704,-0.63796 0.18883,-0.63211 0.17945,-0.62622 0.17006,-0.618 0.15951,-0.61212 0.14895,-0.6039 0.13487,-0.59685 0.12199,-0.5898 0.10907,-0.58158 0.97816,0.16918 -0.11143,0.60509 -0.12666,0.6086 -0.13958,0.61329 -0.15129,0.62035 -0.1642,0.62623 -0.1724,0.62974 -0.18415,0.63562 -0.19117,0.6415 -0.19704,0.64502 -0.20407,0.65089 -0.20994,0.65561 -0.21229,0.66029 -0.2158,0.66498 -0.21816,0.66971 -0.21931,0.67556 -0.21933,0.6791 -0.21815,0.68378 -0.21463,0.68733 -0.21346,0.69202 -0.20876,0.69671 -0.20291,0.70024 -0.19587,0.70495 -0.19,0.70846 -0.18179,0.71316 -0.17241,0.71552 -0.16185,0.72021 -0.15247,0.72257 -0.13723,0.72726 -0.12666,0.72961 -0.11142,0.73314 -0.095,0.73548 -0.0797,0.74021 z m 4.865,81.632 0.11259,-0.98927 -0.52075,0.6697 -0.73186,-2.0443 -0.68494,-2.1113 -0.63803,-2.1736 -0.5958,-2.2335 -0.55007,-2.2875 -0.50901,-2.3416 -0.4668,-2.3921 -0.42809,-2.4356 -0.38821,-2.479 -0.34951,-2.5178 -0.31315,-2.5542 -0.27679,-2.5848 -0.24161,-2.6153 -0.2076,-2.6388 -0.17475,-2.6635 -0.14308,-2.6811 -0.11143,-2.6964 -0.0809,-2.7082 -0.0539,-2.7164 -0.0246,-2.7211 0.002,-2.7234 0.0282,-2.7211 0.0539,-2.7164 0.0774,-2.7081 0.10087,-2.6964 0.12197,-2.6799 0.14309,-2.6623 0.16302,-2.6388 0.18297,-2.613 0.19938,-2.5848 0.21698,-2.5531 0.2334,-2.5155 0.98988,0.0964 -0.2334,2.5084 -0.21697,2.5437 -0.19939,2.5777 -0.18062,2.6059 -0.16302,2.6318 -0.14308,2.6529 -0.12199,2.6729 -0.10086,2.687 -0.0774,2.6988 -0.0516,2.707 -0.0281,2.7117 -0.002,2.714 0.0246,2.7117 0.0516,2.707 0.0809,2.6964 0.11142,2.6846 0.14309,2.6694 0.1724,2.6494 0.2076,2.6271 0.23926,2.6012 0.27679,2.5707 0.31082,2.5378 0.34715,2.5014 0.38588,2.4626 0.42339,2.4168 0.46445,2.3709 0.50432,2.3204 0.54538,2.2664 0.58877,2.21 0.63099,2.1477 0.67556,2.0831 0.72014,2.0161 -0.52075,0.66968 z m 0.52074,-0.66969 0.28617,0.76132 -0.80691,-0.0916 0.52074,-0.66969 z m -20.989,-39.493 0.99457,-0.0188 0.0563,2.2875 0.0856,2.2182 0.11259,2.1489 0.14192,2.0819 0.17241,2.0114 0.2029,1.9433 0.23574,1.874 0.26624,1.8058 0.30024,1.7353 0.33544,1.6672 0.37063,1.599 0.4058,1.5286 0.44216,1.4592 0.47969,1.3899 0.5184,1.3218 0.55711,1.2513 0.59581,1.1843 0.63568,1.1138 0.67674,1.0457 0.71895,0.97635 0.76235,0.91054 0.80341,0.8424 0.84913,0.77426 0.8949,0.70964 0.94062,0.64268 0.98988,0.57805 1.0403,0.51108 1.0908,0.44764 1.1435,0.38066 1.1975,0.31605 1.2538,0.25026 1.3101,0.18563 -0.1126,0.98927 -1.364,-0.19268 -1.3101,-0.26201 -1.2585,-0.33249 -1.2045,-0.40183 -1.1541,-0.47348 -1.1013,-0.54163 -1.0509,-0.61329 -0.99927,-0.68261 -0.94883,-0.75195 -0.90076,-0.82126 -0.8503,-0.89175 -0.80224,-0.95754 -0.75414,-1.0257 -0.70957,-1.095 -0.66149,-1.1608 -0.61926,-1.2266 -0.57587,-1.2936 -0.53247,-1.3617 -0.49377,-1.4275 -0.45155,-1.4945 -0.41519,-1.5614 -0.37765,-1.6272 -0.34013,-1.6954 -0.30494,-1.7612 -0.27093,-1.8293 -0.23809,-1.8951 -0.20525,-1.9621 -0.1724,-2.0302 -0.14427,-2.096 -0.1126,-2.1654 -0.0856,-2.2323 -0.0587,-2.2993 z m 4.6996,-72.749 0.98051,0.15744 -10e-4,0.0117 -0.46796,2.6036 -0.4363,2.5824 -0.40816,2.5589 -0.38118,2.539 -0.35302,2.5155 -0.3284,2.4943 -0.30142,2.4743 -0.27914,2.4497 -0.25568,2.4297 -0.23105,2.4074 -0.21112,2.3862 -0.19117,2.3639 -0.16889,2.3428 -0.15247,2.3204 -0.13371,2.2993 -0.1161,2.277 -0.10087,2.2558 -0.0844,2.2358 -0.0715,2.2123 -0.0563,2.1912 -0.0434,2.17 -0.0329,2.1477 -0.0222,2.1266 -0.0117,2.1066 -0.004,2.0831 0.006,2.0619 0.0117,2.042 0.02,2.0185 0.0234,1.9985 0.0293,1.9762 0.0329,1.9562 0.0351,1.9339 -0.99457,0.0188 -0.0351,-1.9362 -0.0329,-1.9562 -0.0293,-1.9786 -0.0234,-2.0009 -0.02,-2.0232 -0.0117,-2.0443 -0.006,-2.0667 0.004,-2.0878 0.0117,-2.109 0.0222,-2.1313 0.0329,-2.1548 0.0458,-2.1748 0.0563,-2.1959 0.0715,-2.2194 0.0844,-2.2405 0.10087,-2.2629 0.11611,-2.284 0.1337,-2.3063 0.15248,-2.3275 0.17123,-2.3498 0.19118,-2.3733 0.2111,-2.3933 0.2334,-2.4168 0.25568,-2.4368 0.27915,-2.4591 0.30376,-2.4814 0.3284,-2.5037 0.35537,-2.5249 0.38118,-2.5484 0.4105,-2.5683 0.43864,-2.5918 0.46797,-2.613 -0.001,0.0117 z m 0.98051,0.15744 -10e-4,0.0117 -0.006,0.0293 0.007,-0.041 z m 9.2925,-16.526 -0.74593,0.6556 0.69198,0.054 -0.47735,0.40769 -0.46446,0.41239 -0.45272,0.41592 -0.43982,0.42061 -0.42808,0.4265 -0.41519,0.43236 -0.40346,0.43706 -0.39174,0.44177 -0.37882,0.44646 -0.36593,0.45116 -0.3542,0.45939 -0.34364,0.4629 -0.33076,0.46878 -0.31783,0.47467 -0.30612,0.48171 -0.29438,0.48524 -0.28148,0.49345 -0.26977,0.49934 -0.25919,0.50403 -0.24513,0.51225 -0.23457,0.51814 -0.22167,0.52518 -0.20994,0.53106 -0.1982,0.53927 -0.18649,0.54516 -0.17475,0.55338 -0.16185,0.55925 -0.14895,0.56747 -0.1384,0.57453 -0.12667,0.58158 -0.11377,0.58981 -0.10321,0.59802 -0.9805,-0.15744 0.10555,-0.61918 0.11846,-0.61094 0.13136,-0.60508 0.14309,-0.59568 0.15598,-0.58862 0.16889,-0.58275 0.18179,-0.57453 0.19353,-0.56865 0.20525,-0.56043 0.21932,-0.55455 0.23105,-0.54633 0.24395,-0.53928 0.25685,-0.53341 0.26858,-0.52753 0.28149,-0.51813 0.29322,-0.5146 0.30611,-0.50638 0.32018,-0.50051 0.32957,-0.49347 0.34483,-0.48758 0.35537,-0.48171 0.36828,-0.47583 0.38,-0.46995 0.3929,-0.46293 0.40581,-0.45821 0.41753,-0.45116 0.42926,-0.44646 0.44217,-0.44059 0.45389,-0.43471 0.46679,-0.43001 0.47852,-0.42415 0.49143,-0.41944 0.69198,0.054 z m -0.69198,-0.054 0.37179,-0.31135 0.32019,0.36539 -0.69198,-0.054 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path500" + d="m 372.29,389.97 -13.435,-1.5673 c -2.4688,12.704 -4.3571,21.686 -4.8146,26.212 -0.8984,8.8764 1.7921,17.014 4.8673,23.075 4.9541,-2.9866 7.2552,-9.5108 9.3394,-18.659 2.0912,-9.1866 2.6119,-19.201 4.044,-29.061 h -9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path502" + d="m 358.91,387.91 13.435,1.5673 -0.11494,0.98927 -13.435,-1.5673 -0.43043,-0.58981 L 358.91,387.91 z m -0.54537,0.39946 0.088,-0.45233 0.45741,0.0528 -0.54537,0.39947 z m -3.8329,26.358 -0.98754,-0.10104 0.0469,-0.44294 0.0563,-0.46879 0.0634,-0.49463 0.0727,-0.51813 0.0786,-0.54398 0.0868,-0.56866 0.095,-0.59449 0.10203,-0.618 0.10909,-0.64385 0.11611,-0.66734 0.12197,-0.6932 0.12901,-0.71785 0.13606,-0.74137 0.14308,-0.76487 0.14778,-0.78953 0.15365,-0.8142 0.16068,-0.83771 0.16536,-0.86002 0.17124,-0.88588 0.1771,-0.9082 0.18179,-0.93287 0.18766,-0.95403 0.19235,-0.97751 0.19586,-1.001 0.20173,-1.0233 0.20643,-1.0468 0.20993,-1.0692 0.21464,-1.0915 0.21932,-1.1138 0.22167,-1.135 0.22635,-1.1585 0.22989,-1.1796 0.97581,0.19033 -0.22988,1.1796 -0.22636,1.1584 -0.22167,1.1373 -0.21933,1.1138 -0.21463,1.0915 -0.20994,1.0692 -0.20642,1.0468 -0.20173,1.0233 -0.19586,1.001 -0.19235,0.97752 -0.18765,0.95403 -0.18179,0.93051 -0.17711,0.9082 -0.17123,0.88353 -0.16537,0.86003 -0.16069,0.83535 -0.15364,0.81185 -0.14778,0.78954 -0.14074,0.76251 -0.13605,0.73901 -0.12901,0.71317 -0.12197,0.69084 -0.11612,0.66499 -0.10673,0.63915 -0.10204,0.6133 -0.0926,0.58745 -0.0868,0.56395 -0.0785,0.53693 -0.0704,0.51108 -0.0633,0.4829 -0.0539,0.45938 -0.0469,0.43119 z m 4.1179,22.598 0.51136,0.85298 -0.69902,-0.2009 -0.28969,-0.58041 -0.28618,-0.59096 -0.28383,-0.60392 -0.28031,-0.61446 -0.27445,-0.62623 -0.26858,-0.63915 -0.26389,-0.64736 -0.25802,-0.65913 -0.251,-0.66969 -0.24277,-0.68027 -0.23457,-0.68966 -0.22519,-0.69908 -0.21698,-0.70846 -0.20641,-0.71903 -0.19705,-0.7261 -0.1853,-0.73783 -0.17124,-0.74371 -0.16186,-0.75195 -0.14895,-0.76016 -0.1337,-0.76838 -0.11963,-0.77544 -0.10555,-0.78365 -0.0904,-0.78953 -0.0739,-0.79659 -0.0587,-0.80364 -0.0399,-0.81068 -0.0234,-0.81538 -0.005,-0.82125 0.0153,-0.82713 0.034,-0.83184 0.0539,-0.8377 0.0751,-0.8424 0.98754,0.10104 -0.0727,0.81656 -0.0516,0.8142 -0.0341,0.80834 -0.0129,0.80362 0.005,0.80011 0.0211,0.79424 0.0399,0.78719 0.0563,0.78247 0.0715,0.77544 0.088,0.77073 0.10322,0.76252 0.11728,0.75664 0.13136,0.74958 0.14426,0.74137 0.15717,0.73548 0.16888,0.72727 0.18062,0.71903 0.19235,0.70964 0.20173,0.7026 0.21229,0.69436 0.22049,0.68497 0.22988,0.67321 0.23809,0.66618 0.24629,0.6556 0.251,0.64736 0.25919,0.63563 0.26389,0.62504 0.26977,0.61448 0.27326,0.60273 0.27914,0.59214 0.28149,0.58158 0.285,0.56865 -0.69902,-0.20091 z m 0.51136,0.85298 -0.45741,0.2761 -0.24161,-0.477 0.69902,0.2009 z m 8.5993,-19.196 0.96877,0.22089 -0.19704,0.85297 -0.19821,0.83771 -0.20056,0.82125 -0.20407,0.80833 -0.20643,0.78954 -0.21111,0.77544 -0.21346,0.76016 -0.22049,0.74371 -0.22284,0.72609 -0.23105,0.70963 -0.23457,0.69555 -0.24396,0.67792 -0.24864,0.65911 -0.25568,0.64503 -0.26623,0.62739 -0.27328,0.60861 -0.28148,0.59214 -0.29204,0.57453 -0.3026,0.5569 -0.31197,0.53811 -0.32254,0.52166 -0.33543,0.50168 -0.34834,0.48405 -0.35889,0.4641 -0.37297,0.44529 -0.38586,0.42649 -0.40112,0.40651 -0.41519,0.38655 -0.42926,0.36538 -0.44451,0.34543 -0.4621,0.32427 -0.47618,0.30312 -0.51136,-0.85298 0.4363,-0.27728 0.42223,-0.29842 0.40932,-0.31721 0.39642,-0.3372 0.38235,-0.356 0.37062,-0.37598 0.36007,-0.39593 0.34715,-0.4171 0.33779,-0.43588 0.32722,-0.45586 0.31668,-0.47348 0.3061,-0.49347 0.29791,-0.51461 0.28853,-0.53105 0.2803,-0.55103 0.2721,-0.57101 0.26389,-0.58979 0.25685,-0.60626 0.24865,-0.62622 0.24396,-0.64501 0.23691,-0.66147 0.22988,-0.67909 0.22636,-0.6979 0.2205,-0.71434 0.2158,-0.73196 0.21111,-0.74841 0.20876,-0.76603 0.20408,-0.7825 0.20173,-0.79894 0.19821,-0.8142 0.19822,-0.833 0.19469,-0.84593 z m 4.5284,-28.453 0,-0.99632 0.49143,0.56983 -0.13019,0.9223 -0.12667,0.92347 -0.12315,0.92347 -0.11846,0.92465 -0.11494,0.92348 -0.11024,0.92581 -0.10908,0.92466 -0.10672,0.92582 -0.10556,0.92464 -0.10439,0.92465 -0.10321,0.92348 -0.10203,0.92347 -0.10322,0.92229 -0.10438,0.91995 -0.10439,0.91877 -0.10554,0.91761 -0.10791,0.91642 -0.11142,0.91524 -0.11377,0.91173 -0.11611,0.90937 -0.1208,0.9082 -0.1255,0.90467 -0.12901,0.90233 -0.13488,0.89879 -0.14074,0.89528 -0.14544,0.89292 -0.15364,0.88941 -0.16068,0.88471 -0.16655,0.88234 -0.17592,0.87766 -0.18414,0.87412 -0.19235,0.86826 -0.96877,-0.22089 0.19,-0.85885 0.18179,-0.86238 0.17359,-0.86825 0.16654,-0.87295 0.15834,-0.87766 0.15129,-0.88 0.14544,-0.88587 0.13839,-0.88823 0.13488,-0.8941 0.12902,-0.89527 0.12314,-0.89998 0.12081,-0.9035 0.11611,-0.90467 0.11376,-0.90938 0.10908,-0.91054 0.10791,-0.91408 0.10555,-0.91525 0.10439,-0.91876 0.10437,-0.91996 0.10322,-0.91994 0.10204,-0.92348 0.1032,-0.92347 0.10439,-0.92699 0.10556,-0.92465 0.10672,-0.92817 0.10908,-0.927 0.11259,-0.92818 0.11495,-0.92816 0.11845,-0.92935 0.12315,-0.92818 0.12666,-0.92817 0.13254,-0.927 0.49142,0.56984 z m 0,-0.99632 0.5747,0 -0.0833,0.56983 -0.49143,-0.56983 z m -9.9e-4,0 9.9e-4,0 0,0.99632 -9.9e-4,0 -0.0575,-0.004 0.0575,-0.99279 z m 0,0.99632 -0.027,0 -0.0305,-0.004 0.0575,0.004 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path504" + d="m 407.15,418.58 -11.924,0.12454 c -0.40815,10.961 -0.70371,18.379 -0.50902,22.241 0.38235,7.5758 2.2718,13.994 5.5065,18.795 3.6218,-3.0195 7.0488,-8.3488 7.5895,-16.274 0.54303,-7.9576 -0.58876,-16.429 -0.66265,-24.887 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path506" + d="m 395.23,418.2 11.924,-0.12455 0.009,0.99632 -11.924,0.12454 -0.50081,-0.51696 0.49142,-0.47936 z m -0.49142,0.47935 0.0176,-0.47466 0.47383,-0.005 -0.49142,0.47936 z m 0.48321,22.235 -0.99223,0.0494 -0.0164,-0.37715 -0.0141,-0.39711 -0.0117,-0.41826 -0.009,-0.43824 -0.006,-0.45938 -0.004,-0.47936 -9.9e-4,-0.50051 9.9e-4,-0.52049 0.004,-0.54045 0.006,-0.56161 0.008,-0.58274 0.0105,-0.60273 0.0117,-0.62387 0.0153,-0.64385 0.0164,-0.66499 0.0176,-0.68498 0.02,-0.70728 0.0212,-0.72727 0.0234,-0.74724 0.0246,-0.76838 0.0258,-0.78954 0.0281,-0.81069 0.0281,-0.82946 0.0305,-0.85181 0.0317,-0.87178 0.0317,-0.89293 0.0341,-0.91407 0.0351,-0.93404 0.0351,-0.9552 0.0364,-0.97516 0.0375,-0.99632 0.0375,-1.0175 0.99223,0.0376 -0.0375,1.0175 -0.0375,0.99632 -0.0363,0.97517 -0.0351,0.95519 -0.0351,0.93405 -0.034,0.91172 -0.0317,0.89293 -0.0317,0.87177 -0.0305,0.85181 -0.0281,0.82948 -0.0281,0.80833 -0.0258,0.78954 -0.0246,0.76603 -0.0234,0.74724 -0.0211,0.72492 -0.02,0.70493 -0.0176,0.68497 -0.0164,0.66264 -0.0129,0.6415 -0.0117,0.62153 -0.0105,0.60037 -0.008,0.57804 -0.006,0.55927 -0.004,0.53575 -9.9e-4,0.51578 9.9e-4,0.49581 0.004,0.47465 0.006,0.45235 0.007,0.43118 0.0117,0.40888 0.0141,0.39005 0.0164,0.36776 z m 4.6926,18.437 0.63568,0.76604 -0.72951,-0.10457 -0.30494,-0.46408 -0.2979,-0.47232 -0.28853,-0.48288 -0.28031,-0.49228 -0.27209,-0.50051 -0.2639,-0.50873 -0.25685,-0.51931 -0.24629,-0.5287 -0.23927,-0.53577 -0.23106,-0.54398 -0.22166,-0.55336 -0.21463,-0.56279 -0.20525,-0.56983 -0.19703,-0.57922 -0.18766,-0.58627 -0.18062,-0.59451 -0.17124,-0.60272 -0.16302,-0.61095 -0.15482,-0.61918 -0.14427,-0.62622 -0.13839,-0.63561 -0.12784,-0.6415 -0.11963,-0.64854 -0.11142,-0.65678 -0.10204,-0.66381 -0.0938,-0.67087 -0.0856,-0.6791 -0.0751,-0.68614 -0.068,-0.6932 -0.0575,-0.70024 -0.0505,-0.70494 -0.0399,-0.71434 0.99223,-0.0494 0.0399,0.70025 0.0481,0.69319 0.0575,0.68614 0.0656,0.6791 0.0751,0.67204 0.0833,0.665 0.0915,0.65676 0.0997,0.64972 0.10908,0.64268 0.11728,0.63444 0.1255,0.62741 0.13371,0.61916 0.14191,0.61212 0.15012,0.60273 0.15834,0.59451 0.16655,0.58627 0.17592,0.58039 0.18296,0.56984 0.19235,0.56278 0.19821,0.55338 0.2076,0.54398 0.21697,0.53693 0.22167,0.52752 0.23223,0.51931 0.23926,0.50991 0.24747,0.50051 0.2545,0.49227 0.26273,0.48407 0.27092,0.47348 0.27679,0.46408 0.28618,0.45587 0.29321,0.44529 -0.72951,-0.10457 z m 0.63568,0.76604 -0.42222,0.3513 -0.30729,-0.45587 0.72951,0.10457 z m 6.7756,-16.691 0.99223,0.0682 -0.0598,0.74723 -0.0774,0.73314 -0.0938,0.71669 -0.1079,0.70142 -0.12432,0.68732 -0.13839,0.67322 -0.15365,0.65676 -0.16537,0.64268 -0.18062,0.6274 -0.19352,0.61446 -0.20525,0.59803 -0.21697,0.58275 -0.22754,0.56867 -0.23926,0.55454 -0.24982,0.53928 -0.2592,0.52518 -0.26858,0.50991 -0.27796,0.49698 -0.28618,0.48054 -0.29204,0.46761 -0.30259,0.45234 -0.30612,0.43823 -0.31432,0.42414 -0.31901,0.41005 -0.32489,0.39593 -0.33074,0.38067 -0.33309,0.36775 -0.33895,0.35482 -0.34247,0.33955 -0.34365,0.32544 -0.34599,0.31135 -0.34834,0.29843 -0.63567,-0.76604 0.32957,-0.28198 0.32722,-0.29489 0.32722,-0.309 0.32372,-0.32076 0.32018,-0.33602 0.31666,-0.34894 0.31433,-0.36188 0.30846,-0.37714 0.30495,-0.38888 0.2979,-0.40534 0.29438,-0.41711 0.28617,-0.43118 0.28032,-0.44646 0.2721,-0.45938 0.26623,-0.47348 0.25686,-0.48877 0.24747,-0.50168 0.23809,-0.51579 0.22988,-0.53105 0.21815,-0.54516 0.20759,-0.55924 0.19821,-0.57453 0.18413,-0.58863 0.17359,-0.6039 0.16068,-0.61682 0.14661,-0.63327 0.1337,-0.64737 0.11963,-0.66383 0.10555,-0.67792 0.0892,-0.69319 0.0751,-0.70728 0.0575,-0.72375 z m -0.16185,-24.355 -0.009,-0.99632 0.50197,0.49346 0.009,0.78953 0.0153,0.78953 0.0211,0.79073 0.0246,0.78835 0.0305,0.79071 0.0329,0.78953 0.0363,0.78953 0.0399,0.78836 0.041,0.78954 0.0434,0.78835 0.0446,0.78836 0.0458,0.78719 0.0446,0.78601 0.0458,0.78482 0.0434,0.78602 0.0434,0.78248 0.041,0.78249 0.0387,0.78131 0.0351,0.77896 0.0329,0.77896 0.0293,0.77661 0.0246,0.77543 0.02,0.77427 0.0153,0.77073 0.008,0.76956 0.002,0.76838 -0.005,0.76604 -0.0117,0.76369 -0.0212,0.76015 -0.027,0.75899 -0.0375,0.75781 -0.0458,0.75311 -0.99223,-0.0681 0.0458,-0.74136 0.0375,-0.74372 0.027,-0.74723 0.0188,-0.75076 0.0117,-0.75428 0.005,-0.75664 -0.002,-0.75899 -0.008,-0.76251 -0.0129,-0.76369 -0.02,-0.76721 -0.0246,-0.76838 -0.0293,-0.77191 -0.0329,-0.77426 -0.0352,-0.77662 -0.0387,-0.77661 -0.041,-0.78013 -0.0434,-0.78248 -0.0434,-0.78366 -0.0458,-0.78484 -0.0446,-0.78601 -0.0458,-0.78719 -0.0446,-0.78835 -0.0434,-0.79071 -0.041,-0.79189 -0.0398,-0.79304 -0.0363,-0.7919 -0.0329,-0.79422 -0.0305,-0.79542 -0.0246,-0.7954 -0.0211,-0.79541 -0.0176,-0.79658 -0.009,-0.79658 0.50199,0.49346 z m -0.009,-0.99632 0.49729,-0.005 0.005,0.49817 -0.50198,-0.49346 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path508" + d="m 419.99,424.24 -11.913,0.54164 c -0.027,10.969 -0.0645,18.392 0.26389,22.246 0.64507,7.557 2.7574,13.906 6.1563,18.59 3.5162,-3.144 6.7544,-8.5897 7.0195,-16.528 0.26623,-7.9717 -1.16,-16.398 -1.5282,-24.849 h 9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path510" + d="m 408.06,424.28 11.913,-0.54163 0.0446,0.99397 -11.913,0.54163 -0.51958,-0.49816 0.47501,-0.49581 z m -0.47501,0.4958 9.9e-4,-0.47465 0.47383,-0.0212 -0.47501,0.49581 z m 1.2561,22.205 -0.98988,0.0846 -0.0293,-0.37597 -0.0293,-0.39828 -0.0258,-0.41709 -0.0234,-0.43707 -0.0222,-0.45938 -0.02,-0.47936 -0.0176,-0.49817 -0.0176,-0.52047 -0.0141,-0.54163 -0.0141,-0.56043 -0.0129,-0.58392 -0.0105,-0.60274 -0.009,-0.62269 -0.008,-0.64502 -0.007,-0.66499 -0.006,-0.68614 -0.005,-0.7073 -0.004,-0.72609 -0.004,-0.74724 -0.002,-0.76955 -9.9e-4,-0.79071 0,-0.80951 0,-0.83065 0,-0.85181 9.9e-4,-0.87412 9.9e-4,-0.89293 0.002,-0.91408 0.002,-0.93522 0.002,-0.95519 0.002,-0.97635 0.002,-0.9975 0.002,-1.0175 0.99457,0.002 -0.002,1.0175 -0.002,0.99749 -0.002,0.97635 -0.002,0.9552 -0.002,0.93521 -0.002,0.91407 -9.9e-4,0.89293 -9.9e-4,0.87178 0,0.85181 0,0.83066 0,0.8095 9.9e-4,0.78836 0.002,0.76721 0.004,0.74724 0.004,0.72608 0.005,0.70494 0.006,0.68379 0.007,0.66265 0.008,0.64268 0.009,0.62034 0.0105,0.60038 0.0105,0.57921 0.0141,0.55809 0.0141,0.53693 0.0176,0.51579 0.0176,0.4958 0.02,0.4723 0.0222,0.45235 0.0234,0.43001 0.0258,0.41005 0.027,0.38889 0.0293,0.36656 z m 5.3306,18.262 0.6615,0.74253 -0.73304,-0.0787 -0.32018,-0.45351 -0.31316,-0.46174 -0.30611,-0.47113 -0.29674,-0.48289 -0.29086,-0.48994 -0.28031,-0.50168 -0.27445,-0.50872 -0.26506,-0.51931 -0.25685,-0.52635 -0.251,-0.53694 -0.24043,-0.54515 -0.23339,-0.55456 -0.22402,-0.56277 -0.21815,-0.571 -0.20876,-0.58041 -0.20056,-0.58745 -0.19235,-0.59685 -0.18414,-0.60507 -0.17592,-0.61212 -0.16772,-0.62152 -0.15834,-0.62857 -0.15129,-0.63798 -0.14074,-0.64503 -0.13488,-0.65206 -0.1255,-0.6603 -0.11729,-0.66735 -0.1079,-0.67556 -0.0997,-0.68262 -0.0904,-0.6885 -0.0832,-0.69788 -0.0751,-0.70377 -0.0645,-0.71199 0.98988,-0.0846 0.0645,0.69791 0.0727,0.692 0.0809,0.6838 0.0903,0.67674 0.0973,0.66852 0.10554,0.66147 0.11495,0.65324 0.12315,0.6462 0.13018,0.63798 0.1384,0.63092 0.14661,0.62152 0.15599,0.61447 0.16302,0.60508 0.17124,0.59802 0.17944,0.58862 0.18765,0.58041 0.19588,0.57334 0.20173,0.56396 0.21111,0.55455 0.21932,0.54634 0.22636,0.5381 0.23339,0.52871 0.24161,0.51812 0.24982,0.51226 0.25568,0.50051 0.26507,0.49229 0.27092,0.48289 0.27914,0.47348 0.28735,0.46409 0.29439,0.45468 0.30141,0.44528 0.30846,0.43473 -0.73303,-0.0787 z m 0.6615,0.74253 -0.41051,0.36657 -0.32253,-0.44529 0.73304,0.0787 z m 6.1926,-16.916 0.99223,0.0329 -0.034,0.74959 -0.0516,0.7343 -0.068,0.72023 -0.0832,0.70493 -0.10087,0.69202 -0.11377,0.67556 -0.13018,0.66266 -0.14543,0.64736 -0.15716,0.63445 -0.17124,0.61918 -0.18531,0.60625 -0.19704,0.58979 -0.20759,0.5757 -0.22049,0.56396 -0.22989,0.54749 -0.24043,0.53224 -0.25099,0.52048 -0.26038,0.50521 -0.26858,0.49111 -0.27679,0.47701 -0.285,0.46291 -0.29204,0.44881 -0.29907,0.43589 -0.30612,0.41944 -0.3108,0.4077 -0.31667,0.39241 -0.32019,0.37949 -0.32605,0.36422 -0.32958,0.35247 -0.33308,0.3372 -0.33544,0.32309 -0.33777,0.31018 -0.66149,-0.74253 0.31902,-0.29373 0.31901,-0.30665 0.31432,-0.3184 0.31315,-0.33367 0.30728,-0.34542 0.30612,-0.36069 0.30025,-0.37362 0.29673,-0.38656 0.28969,-0.40063 0.285,-0.41474 0.27797,-0.42766 0.27327,-0.44177 0.26273,-0.45351 0.25685,-0.46996 0.24864,-0.48172 0.23926,-0.49697 0.23105,-0.51109 0.2205,-0.524 0.21111,-0.53811 0.19822,-0.55221 0.18999,-0.56629 0.17593,-0.5804 0.1642,-0.59568 0.15247,-0.6086 0.1384,-0.62387 0.12549,-0.63679 0.11142,-0.65208 0.0962,-0.66616 0.0809,-0.68145 0.0656,-0.69672 0.0493,-0.71082 0.0341,-0.72373 z m -1.0321,-25.331 0,0.99631 0.49611,-0.5193 0.0375,0.78718 0.0434,0.78953 0.0481,0.78837 0.0528,0.78953 0.0563,0.78718 0.061,0.78718 0.0645,0.78955 0.0668,0.78717 0.0692,0.78718 0.0704,0.78602 0.0715,0.78483 0.0727,0.78601 0.0727,0.78484 0.0727,0.78247 0.0715,0.78367 0.0692,0.78013 0.0692,0.78013 0.0656,0.78013 0.0622,0.77897 0.0598,0.77543 0.0575,0.77544 0.0516,0.77426 0.0458,0.77191 0.041,0.77073 0.0351,0.76957 0.0293,0.76721 0.0222,0.76604 0.0153,0.7625 0.007,0.76252 -0.002,0.75898 -0.0105,0.75781 -0.0211,0.7543 -0.99224,-0.0329 0.0188,-0.74254 0.0105,-0.74606 0.002,-0.74724 -0.007,-0.75077 -0.0129,-0.75311 -0.0223,-0.75663 -0.0293,-0.75781 -0.0351,-0.76252 -0.041,-0.76369 -0.0458,-0.76485 -0.0516,-0.76721 -0.0551,-0.77074 -0.0598,-0.77308 -0.0622,-0.77427 -0.0656,-0.77543 -0.0692,-0.77779 -0.0692,-0.78013 -0.0715,-0.78131 -0.0727,-0.78249 -0.0727,-0.78483 -0.0727,-0.78601 -0.0715,-0.78718 -0.0704,-0.78836 -0.0692,-0.78954 -0.0668,-0.78953 -0.0645,-0.79188 -0.061,-0.79189 -0.0587,-0.79423 -0.0527,-0.79424 -0.0481,-0.7954 -0.0434,-0.79424 -0.0375,-0.79657 0.49612,-0.51931 z m -0.49612,0.51931 -0.0222,-0.51931 0.5184,0 -0.49612,0.51931 z m 0.49729,0.47701 -9.9e-4,0 0,-0.99631 9.9e-4,0 0.0223,0.99514 -0.0223,9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path512" + d="m 395,412.42 -11.895,-0.84475 c -1.2937,10.893 -2.1897,18.263 -2.3082,22.127 -0.23339,7.5816 1.1306,14.133 3.9666,19.18 3.8552,-2.714 7.7021,-7.7485 8.882,-15.603 1.1857,-7.8883 0.74359,-16.423 1.3546,-24.86 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path514" + d="m 383.14,411.08 11.895,0.84475 -0.0704,0.99397 -11.895,-0.84476 -0.45859,-0.55573 0.52896,-0.43823 z m -0.52896,0.43823 0.0563,-0.4723 0.47265,0.0341 -0.52896,0.43823 z m -1.3183,22.201 -0.99223,-0.0305 0.0129,-0.37831 0.0188,-0.3983 0.0222,-0.41591 0.0258,-0.43707 0.0317,-0.4582 0.0363,-0.47819 0.0387,-0.49816 0.0434,-0.51813 0.0469,-0.54046 0.0516,-0.55925 0.0551,-0.57922 0.0598,-0.60038 0.0634,-0.62035 0.0656,-0.64032 0.0704,-0.66264 0.0727,-0.68144 0.0774,-0.70259 0.0797,-0.72257 0.0833,-0.74372 0.0868,-0.76367 0.0903,-0.78484 0.0926,-0.8048 0.0961,-0.82597 0.0985,-0.84592 0.10204,-0.86708 0.10439,-0.88705 0.1079,-0.9082 0.11024,-0.92817 0.1126,-0.94932 0.11494,-0.96929 0.11846,-0.99045 0.11962,-1.0104 0.98755,0.11749 -0.11963,1.0104 -0.11846,0.99044 -0.11494,0.9693 -0.1126,0.94932 -0.11024,0.92817 -0.1079,0.90819 -0.10439,0.88705 -0.10204,0.86473 -0.0985,0.84594 -0.0962,0.82594 -0.0926,0.80481 -0.0903,0.78249 -0.0868,0.76369 -0.0833,0.74137 -0.0797,0.72256 -0.0774,0.70024 -0.0727,0.67909 -0.0704,0.66029 -0.0656,0.63798 -0.0634,0.618 -0.0575,0.59803 -0.0551,0.57686 -0.0516,0.55456 -0.0469,0.53575 -0.0434,0.51343 -0.0387,0.49347 -0.034,0.47348 -0.0317,0.45116 -0.0258,0.43002 -0.0222,0.41121 -0.0188,0.3889 -0.0129,0.36656 z m 3.1843,18.757 0.57236,0.81538 -0.71897,-0.16331 -0.26623,-0.48641 -0.2592,-0.49581 -0.24864,-0.5052 -0.23926,-0.51226 -0.23106,-0.52166 -0.22166,-0.52988 -0.21346,-0.53692 -0.20408,-0.54752 -0.19469,-0.55338 -0.18531,-0.56159 -0.1771,-0.56983 -0.16772,-0.57688 -0.15834,-0.5851 -0.15012,-0.59333 -0.13957,-0.5992 -0.13135,-0.6086 -0.12198,-0.61448 -0.11259,-0.62269 -0.10322,-0.62857 -0.095,-0.6368 -0.0856,-0.64267 -0.0763,-0.6509 -0.0668,-0.65559 -0.0575,-0.665 -0.0481,-0.66969 -0.0387,-0.67674 -0.0293,-0.68379 -0.02,-0.68966 -0.0117,-0.69555 -10e-4,-0.70141 0.007,-0.70848 0.0188,-0.71434 0.99223,0.0305 -0.0164,0.70024 -0.007,0.69672 0.001,0.68732 0.009,0.68379 0.02,0.67556 0.0293,0.66971 0.0387,0.66264 0.0458,0.6556 0.0575,0.64854 0.0645,0.6415 0.0739,0.63444 0.0833,0.62857 0.0926,0.62036 0.10087,0.61447 0.11024,0.60625 0.11963,0.59802 0.12667,0.59216 0.13722,0.58274 0.14544,0.57688 0.15364,0.56631 0.16303,0.56042 0.17006,0.55338 0.18062,0.5428 0.18765,0.53694 0.19705,0.52635 0.20641,0.52048 0.21463,0.51109 0.22167,0.50285 0.23223,0.49345 0.23925,0.48642 0.24748,0.47701 0.25686,0.46761 -0.71897,-0.16331 z m 0.57236,0.81538 -0.4492,0.31605 -0.26977,-0.47936 0.71897,0.16331 z m 8.1044,-16.084 0.98285,0.14804 -0.1208,0.74019 -0.13605,0.72256 -0.15013,0.70729 -0.16419,0.69201 -0.17945,0.67439 -0.19352,0.65913 -0.20525,0.64267 -0.21815,0.62739 -0.23105,0.61096 -0.24161,0.59568 -0.25216,0.57922 -0.26506,0.56396 -0.27211,0.54867 -0.28382,0.5334 -0.29205,0.51697 -0.30141,0.50285 -0.30964,0.48641 -0.31549,0.47113 -0.32371,0.45587 -0.33074,0.44293 -0.33661,0.42649 -0.34247,0.41239 -0.34717,0.39712 -0.35068,0.38302 -0.35771,0.36775 -0.3589,0.35364 -0.36241,0.33837 -0.36593,0.32545 -0.36827,0.31017 -0.36828,0.29725 -0.37179,0.28197 -0.37061,0.26906 -0.57236,-0.81538 0.35186,-0.25261 0.35068,-0.26788 0.34951,-0.28079 0.34951,-0.29609 0.34716,-0.30665 0.34365,-0.32191 0.34247,-0.33719 0.33895,-0.34896 0.33426,-0.36421 0.33074,-0.37833 0.32606,-0.39358 0.32019,-0.40535 0.31667,-0.42178 0.30729,-0.43707 0.30376,-0.44999 0.29556,-0.46526 0.28735,-0.47936 0.2803,-0.49581 0.26977,-0.50991 0.26271,-0.52517 0.25333,-0.54281 0.24279,-0.55573 0.23222,-0.57218 0.22167,-0.58745 0.20876,-0.60154 0.19822,-0.61918 0.18648,-0.63562 0.1724,-0.6509 0.15951,-0.66616 0.14544,-0.6838 0.13135,-0.69906 0.11611,-0.71669 z m 1.8109,-24.289 0.0704,-0.99397 0.45975,0.5334 -0.0527,0.78719 -0.0493,0.78836 -0.0434,0.78835 -0.0387,0.78954 -0.0341,0.78954 -0.0305,0.79071 -0.0281,0.78953 -0.0246,0.78954 -0.0222,0.7907 -0.0211,0.78836 -0.02,0.78836 -0.0188,0.78836 -0.0188,0.78718 -0.0188,0.78719 -0.0188,0.78602 -0.0212,0.78482 -0.0222,0.78249 -0.0246,0.7813 -0.027,0.78014 -0.0305,0.77896 -0.034,0.77661 -0.0375,0.77426 -0.0422,0.77309 -0.0481,0.76955 -0.0551,0.76957 -0.0598,0.76486 -0.0656,0.76251 -0.0739,0.76016 -0.0809,0.75781 -0.0903,0.75429 -0.0973,0.75076 -0.1079,0.74724 -0.98285,-0.14804 0.10556,-0.73548 0.0973,-0.73902 0.088,-0.74254 0.0809,-0.74605 0.0715,-0.75077 0.0656,-0.75312 0.0598,-0.75782 0.0528,-0.76015 0.0481,-0.76251 0.0422,-0.76603 0.0375,-0.76957 0.0341,-0.77191 0.0305,-0.77427 0.027,-0.77542 0.0246,-0.77896 0.0222,-0.78014 0.0211,-0.78249 0.0188,-0.78365 0.0188,-0.78718 0.0188,-0.78719 0.0188,-0.78836 0.02,-0.79071 0.0212,-0.79071 0.0222,-0.79305 0.0246,-0.79188 0.0281,-0.79425 0.0305,-0.79304 0.034,-0.79425 0.0387,-0.79657 0.0434,-0.79542 0.0492,-0.7954 0.0551,-0.79424 0.45975,0.53341 z m 0.0704,-0.99397 0.49611,0.0352 -0.0364,0.49815 -0.45975,-0.5334 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path516" + d="m 383.86,399.58 -13.046,-5.4186 c -2.2249,8.8235 -5.2309,37.867 0.11142,50.133 4.3466,-2.9537 8.726,-8.4934 10.188,-17.225 1.4672,-8.7695 1.907,-18.098 2.7456,-27.489 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path518" + d="m 371,393.7 13.046,5.4186 -0.38001,0.91877 -13.046,-5.4186 -0.29203,-0.58157 L 371,393.7 z m -0.67204,0.3372 0.14074,-0.55808 L 371,393.7 l -0.67204,0.33719 z m 0.31431,49.843 0.55829,0.82477 -0.73421,-0.21383 -0.4879,-1.2266 -0.43865,-1.3135 -0.38939,-1.397 -0.34481,-1.471 -0.30143,-1.5415 -0.2592,-1.6014 -0.22049,-1.6601 -0.18179,-1.7071 -0.14544,-1.7518 -0.11376,-1.787 -0.0785,-1.8176 -0.0504,-1.8411 -0.02,-1.8575 0.007,-1.8658 0.0341,-1.8692 0.0563,-1.8658 0.0786,-1.8563 0.0997,-1.8375 0.11728,-1.8152 0.13606,-1.7823 0.15129,-1.7482 0.16537,-1.7013 0.1771,-1.6519 0.18765,-1.5955 0.19587,-1.5297 0.20408,-1.4592 0.20994,-1.3817 0.21228,-1.2983 0.21581,-1.2078 0.2158,-1.1103 0.21581,-1.0057 0.21346,-0.8988 0.96407,0.24438 -0.20876,0.87294 -0.21111,0.98692 -0.21346,1.0938 -0.21111,1.1914 -0.21229,1.2865 -0.20759,1.3699 -0.20173,1.4475 -0.19587,1.5203 -0.18531,1.5838 -0.1771,1.6425 -0.16302,1.6919 -0.1513,1.7365 -0.13371,1.7729 -0.11728,1.8035 -0.0997,1.8282 -0.0786,1.8423 -0.0563,1.854 -0.0317,1.8575 -0.007,1.8516 0.02,1.8411 0.0481,1.8246 0.0786,1.7988 0.11142,1.7682 0.14543,1.7306 0.17945,1.6836 0.21581,1.6319 0.2545,1.5732 0.29439,1.5062 0.33543,1.4334 0.37766,1.3523 0.42223,1.2642 0.46445,1.1702 -0.73421,-0.21382 z m 0.55829,0.82477 -0.49495,0.33602 -0.23926,-0.54985 0.73421,0.21383 z m 9.4191,-17.72 0.9805,0.16448 -0.14778,0.82126 -0.16419,0.80246 -0.18062,0.78366 -0.19704,0.76721 -0.21229,0.74723 -0.22636,0.72845 -0.24161,0.71199 -0.25333,0.69318 -0.26741,0.6744 -0.28031,0.65794 -0.29203,0.64033 -0.30378,0.62269 -0.3155,0.60391 -0.3237,0.58862 -0.33544,0.56865 -0.34247,0.55338 -0.35302,0.53693 -0.36124,0.51813 -0.36828,0.50168 -0.37648,0.48525 -0.38001,0.46761 -0.38821,0.45233 -0.39407,0.43472 -0.39878,0.41943 -0.40228,0.40299 -0.40581,0.38537 -0.40932,0.37009 -0.41284,0.35483 -0.41402,0.3372 -0.41636,0.32426 -0.4187,0.30783 -0.41636,0.29137 -0.55829,-0.82477 0.39761,-0.27728 0.39759,-0.29137 0.39525,-0.30783 0.39525,-0.3231 0.39407,-0.33837 0.39056,-0.35364 0.38938,-0.36892 0.38353,-0.3842 0.38235,-0.40063 0.37531,-0.41592 0.3718,-0.43354 0.36592,-0.44881 0.36007,-0.46409 0.3542,-0.48289 0.34481,-0.49698 0.33895,-0.51343 0.33075,-0.53223 0.32137,-0.5475 0.31197,-0.56514 0.30377,-0.58274 0.29204,-0.59921 0.28031,-0.61681 0.27093,-0.63445 0.25802,-0.6509 0.2463,-0.66969 0.23223,-0.68849 0.21932,-0.70494 0.20525,-0.72374 0.19,-0.74137 0.17592,-0.76016 0.15951,-0.77896 0.14309,-0.79776 z m 3.0459,-26.948 0.38,-0.91877 0.30494,0.50403 -0.0774,0.87883 -0.0751,0.87882 -0.0739,0.87765 -0.0727,0.87766 -0.0704,0.87764 -0.0692,0.87649 -0.0692,0.8753 -0.0692,0.8753 -0.068,0.87412 -0.068,0.87295 -0.068,0.87178 -0.0692,0.87061 -0.0704,0.86942 -0.0704,0.86825 -0.0727,0.86708 -0.0739,0.86355 -0.0751,0.86356 -0.0774,0.86237 -0.0809,0.85886 -0.0821,0.8565 -0.0868,0.85651 -0.0892,0.85415 -0.0914,0.85181 -0.0962,0.84827 -0.0997,0.84711 -0.10556,0.84358 -0.1079,0.8424 -0.11377,0.83887 -0.11846,0.83654 -0.12314,0.833 -0.13019,0.83065 -0.13488,0.82714 -0.9805,-0.16449 0.13488,-0.82008 0.12784,-0.82361 0.12315,-0.82594 0.11611,-0.82949 0.11376,-0.83418 0.10791,-0.83535 0.10321,-0.83889 0.0997,-0.84241 0.0961,-0.84357 0.0915,-0.8471 0.0892,-0.84946 0.0844,-0.8518 0.0821,-0.85415 0.0809,-0.8565 0.0774,-0.85769 0.0751,-0.8612 0.0739,-0.86356 0.0727,-0.86472 0.0704,-0.8659 0.0704,-0.86943 0.0692,-0.86825 0.068,-0.87177 0.068,-0.87296 0.068,-0.87413 0.0692,-0.8753 0.0692,-0.8753 0.0692,-0.87882 0.0704,-0.87765 0.0727,-0.88 0.0739,-0.88001 0.0751,-0.88118 0.0774,-0.88117 0.30494,0.50403 z m 0.38,-0.91877 0.33778,0.13981 -0.0329,0.36422 -0.30494,-0.50403 z m -0.19,0.45938 -0.19,0.45939 0.19,-0.45939 z m 0.19,-0.45938 0.33778,0.13981 -0.0329,0.36422 -0.30494,-0.50403 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + d="m 387.75,701.16 c 7.9625,6.3832 15.249,-8.2173 8.1865,-27.512 -5.225,-14.277 -30.765,-8.7354 -16.54,10.47 0.67439,0.91055 1.6244,0.48759 1.4895,-0.55102 -0.80809,-3.9383 1.703,-6.227 5.5769,-5.5009 10.577,1.9809 10.91,22.069 -0.59347,17.5 -2.0994,-0.13629 -0.22049,3.9101 1.8789,5.5937 h 9.9e-4 z" + id="path1214" + inkscape:connector-curvature="0" + style="fill:#edb92e;stroke:#21231e;stroke-width:0.99388075" /> + <path + id="path521" + d="m 400.05,639.16 -0.006,0.12923 c -1.038,3.3496 -4.906,7.5382 -7.9179,10.679 -4.6668,4.8688 -3.5631,12.245 -0.33308,16.164 3.5232,4.2755 5.096,9.0914 5.8032,12.833 0.52778,2.3063 1.4731,7.4712 0.78464,15.508 -0.33896,3.9559 -2.7292,5.9932 -4.9682,7.7661 -1.1377,0.90233 0.48321,3.0524 4.2445,5.878 0.41167,0.309 1.5435,1.0844 2.083,3.0442 0.20759,0.47114 1.9528,0.47114 2.1616,0 0.53951,-1.9597 1.6713,-2.7352 2.0842,-3.0442 3.7602,-2.8256 5.381,-4.9757 4.2434,-5.878 -2.239,-1.7729 -4.6292,-3.8102 -4.9682,-7.7661 -0.68847,-8.0352 0.25802,-13.201 0.78581,-15.508 0.70722,-3.742 2.28,-8.5568 5.8032,-12.833 3.23,-3.9206 4.3337,-11.297 -0.3331,-16.164 -3.0119,-3.1405 -6.8799,-7.329 -7.9179,-10.679 l -0.006,-0.12923 c -0.0516,-0.6509 -0.41167,-0.97752 -0.77174,-0.97752 -0.36005,0 -0.72012,0.32662 -0.77173,0.97752 z" + inkscape:connector-curvature="0" + style="fill:#edb92e;stroke:#21231e;stroke-width:0.99388075" /> + <path + id="path523" + d="m 395.06,685.47 11.51,0 c 1.9809,0 3.6018,1.592 3.6018,3.5376 v 9.9e-4 c 0,1.9456 -1.6209,3.5376 -3.6018,3.5376 h -11.51 c -1.9809,0 -3.6018,-1.592 -3.6018,-3.5376 v -9.9e-4 c 0,-1.9456 1.6209,-3.5376 3.6018,-3.5376 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path525" + d="m 406.57,685.97 -11.51,0 0,-0.9963 11.51,0 0,0 0,0.9963 z m 4.0991,3.0395 -0.99457,0 -0.004,-0.1551 -0.0117,-0.1539 -0.02,-0.15039 -0.0281,-0.15038 -0.034,-0.14452 -0.0422,-0.14451 -0.0481,-0.141 -0.0539,-0.13511 -0.0634,-0.13394 -0.068,-0.13276 -0.0751,-0.12689 -0.0809,-0.12336 -0.0856,-0.11867 -0.0938,-0.11514 -0.0973,-0.11161 -0.10203,-0.10457 -0.10909,-0.10222 -0.11258,-0.0963 -0.11846,-0.0916 -0.12081,-0.0845 -0.12667,-0.0787 -0.13018,-0.0752 -0.1337,-0.0669 -0.1384,-0.0611 -0.14192,-0.0564 -0.14191,-0.047 -0.14895,-0.0422 -0.14778,-0.0341 -0.15247,-0.0259 -0.15599,-0.02 -0.15951,-0.0117 -0.15834,-0.004 0,-0.99632 0.20995,0.006 0.20641,0.0165 0.20291,0.0247 0.20173,0.0352 0.19938,0.0459 0.19352,0.054 0.19118,0.0634 0.18414,0.0729 0.18062,0.0799 0.17826,0.0904 0.17007,0.0963 0.16655,0.10456 0.16068,0.11279 0.15599,0.11984 0.14778,0.12689 0.14191,0.13277 0.13722,0.13981 0.12784,0.14686 0.12198,0.15039 0.11611,0.16097 0.10673,0.1633 0.0985,0.16919 0.0915,0.17271 0.0821,0.17858 0.0751,0.18446 0.0645,0.18798 0.0563,0.19152 0.0458,0.1962 0.0351,0.19739 0.027,0.20208 0.0164,0.20561 0.006,0.20678 z m -0.99457,9.9e-4 0,-9.9e-4 0.99457,0 0,9.9e-4 -0.99457,0 z m -3.1045,4.0358 0,-0.99631 0.15834,-0.004 0.1595,-0.0117 0.156,-0.02 0.15246,-0.0259 0.14778,-0.0341 0.14896,-0.0423 0.14191,-0.047 0.14191,-0.0564 0.1384,-0.0611 0.1337,-0.0669 0.13019,-0.0752 0.12667,-0.0787 0.12081,-0.0846 0.11845,-0.0916 0.11259,-0.0964 0.10907,-0.10104 0.10087,-0.10457 0.0985,-0.11278 0.0938,-0.11514 0.0856,-0.11867 0.0809,-0.12336 0.0751,-0.12689 0.068,-0.13277 0.0634,-0.13394 0.0539,-0.13512 0.0481,-0.14098 0.0422,-0.14451 0.034,-0.14452 0.0281,-0.15038 0.02,-0.15039 0.0117,-0.15391 0.004,-0.15509 0.99457,0 -0.006,0.20678 -0.0164,0.20561 -0.027,0.20208 -0.0352,0.19739 -0.0458,0.1962 -0.0563,0.19151 -0.0645,0.18799 -0.0751,0.18446 -0.0821,0.17858 -0.0915,0.17271 -0.0985,0.16919 -0.10672,0.1633 -0.11612,0.16098 -0.12198,0.15038 -0.12667,0.14568 -0.13839,0.14218 -0.14192,0.13158 -0.14778,0.12689 -0.15599,0.11984 -0.16068,0.11279 -0.16653,0.10456 -0.17007,0.0964 -0.17827,0.0904 -0.18062,0.0799 -0.18414,0.0729 -0.19117,0.0634 -0.19353,0.054 -0.19938,0.0459 -0.20173,0.0352 -0.2029,0.0247 -0.20643,0.0164 -0.20994,0.006 z m -11.51,-0.99631 11.51,0 0,0.99631 -11.51,0 0,-0.99631 z m -4.0991,-3.0395 0.99458,0 0.004,0.15509 0.0117,0.15391 0.0199,0.15038 0.0281,0.15039 0.034,0.14452 0.0422,0.14451 0.0481,0.14099 0.0539,0.13511 0.0634,0.13394 0.068,0.13277 0.0751,0.12688 0.0809,0.12337 0.0856,0.11866 0.0938,0.11515 0.0985,0.1128 0.10086,0.10454 0.10908,0.10105 0.11259,0.0964 0.11845,0.0916 0.12081,0.0846 0.12667,0.0787 0.13018,0.0752 0.1337,0.0669 0.1384,0.0611 0.14192,0.0564 0.14191,0.047 0.14895,0.0423 0.14778,0.0341 0.15247,0.0259 0.15599,0.02 0.15951,0.0117 0.15834,0.004 0,0.99631 -0.20995,-0.006 -0.20641,-0.0164 -0.20291,-0.0247 -0.20173,-0.0352 -0.19938,-0.0459 -0.19352,-0.054 -0.19118,-0.0634 -0.18414,-0.0729 -0.18062,-0.0799 -0.17826,-0.0904 -0.17007,-0.0964 -0.16655,-0.10457 -0.16067,-0.1128 -0.156,-0.11983 -0.14778,-0.1269 -0.14191,-0.13158 -0.13839,-0.14217 -0.12667,-0.14568 -0.12197,-0.15039 -0.11612,-0.16096 -0.10673,-0.16331 -0.0985,-0.16919 -0.0915,-0.17271 -0.0821,-0.17859 -0.0751,-0.18445 -0.0645,-0.18799 -0.0563,-0.19151 -0.0458,-0.1962 -0.0352,-0.19739 -0.027,-0.20208 -0.0164,-0.20562 -0.006,-0.20678 z m 0.99458,-9.9e-4 0,9.9e-4 -0.99458,0 0,-9.9e-4 0.99458,0 z m 3.1045,-4.0358 0,0.9963 -0.15834,0.004 -0.1595,0.0117 -0.156,0.02 -0.15246,0.0259 -0.14778,0.034 -0.14896,0.0422 -0.14191,0.047 -0.14191,0.0564 -0.13839,0.0611 -0.13371,0.0669 -0.13019,0.0752 -0.12667,0.0787 -0.1208,0.0846 -0.11846,0.0916 -0.11259,0.0962 -0.10907,0.10221 -0.10204,0.10457 -0.0973,0.11161 -0.0938,0.11514 -0.0856,0.11867 -0.0809,0.12336 -0.0751,0.12689 -0.068,0.13276 -0.0634,0.13394 -0.0539,0.13512 -0.0481,0.14099 -0.0422,0.14452 -0.034,0.14451 -0.0281,0.15038 -0.02,0.15039 -0.0117,0.15391 -0.004,0.15509 -0.99457,0 0.006,-0.20678 0.0164,-0.20561 0.027,-0.20208 0.0351,-0.19739 0.0458,-0.19621 0.0563,-0.1915 0.0645,-0.18799 0.0751,-0.18446 0.0821,-0.17859 0.0915,-0.17271 0.0985,-0.16919 0.10673,-0.1633 0.11611,-0.16096 0.12198,-0.1504 0.12784,-0.14685 0.13722,-0.13981 0.14192,-0.13277 0.14778,-0.12689 0.15599,-0.11984 0.16068,-0.1128 0.16654,-0.10455 0.17006,-0.0964 0.17827,-0.0904 0.18062,-0.0799 0.18414,-0.0729 0.19117,-0.0634 0.19353,-0.054 0.19938,-0.0459 0.20173,-0.0352 0.2029,-0.0247 0.20643,-0.0164 0.20994,-0.006 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path527" + d="m 417.13,579.19 0.38352,-10.914 c -4.3806,-2.2276 -15.174,0.0599 -19.732,10.136 -5.6825,12.56 -11.058,19.246 -17.873,25.141 9.8777,1.8446 18.248,-0.11044 23.641,-7.3561 7.2764,-9.7752 11.167,-15.697 13.58,-17.007 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path529" + d="m 418.01,568.3 -0.38352,10.914 -0.99223,-0.0352 0.38352,-10.914 0.7213,-0.42649 0.27093,0.46174 z m -0.27093,-0.46174 0.28266,0.14333 -0.0117,0.31841 -0.27093,-0.46174 z m -19.504,10.786 -0.90544,-0.41122 0.45624,-0.94462 0.49142,-0.89881 0.52427,-0.85415 0.55476,-0.80951 0.58408,-0.76486 0.6087,-0.72021 0.63217,-0.6791 0.65328,-0.63679 0.67204,-0.59332 0.68846,-0.55221 0.7002,-0.51225 0.71309,-0.47114 0.72247,-0.43354 0.72834,-0.3936 0.7342,-0.35481 0.73421,-0.31723 0.7342,-0.28197 0.73303,-0.24439 0.72717,-0.20912 0.71896,-0.17389 0.71192,-0.13864 0.69901,-0.10574 0.68612,-0.0718 0.6697,-0.0388 0.65093,-0.007 0.63099,0.0247 0.60988,0.0564 0.58407,0.0893 0.55829,0.11866 0.5313,0.15039 0.49963,0.1821 0.4668,0.21149 -0.45039,0.88822 -0.39172,-0.17859 -0.42927,-0.15626 -0.46327,-0.13159 -0.49729,-0.10456 -0.52777,-0.0799 -0.55594,-0.0517 -0.57939,-0.0223 -0.60401,0.005 -0.62279,0.0364 -0.6392,0.0669 -0.65679,0.0987 -0.66736,0.1316 -0.67908,0.16448 -0.68728,0.19739 -0.69081,0.23028 -0.69433,0.26552 -0.69667,0.30078 -0.69433,0.33602 -0.6908,0.37245 -0.68261,0.41003 -0.67556,0.44764 -0.66501,0.48406 -0.65093,0.52401 -0.63686,0.56278 -0.61809,0.60155 -0.59932,0.64384 -0.57821,0.68497 -0.55358,0.72492 -0.52662,0.7672 -0.49846,0.81186 -0.46562,0.85415 -0.43512,0.89997 z m -18.234,24.446 -0.18296,0.97751 -0.2334,-0.86591 0.631,-0.55103 0.62278,-0.5569 0.6134,-0.56277 0.60637,-0.56983 0.60049,-0.57922 0.59229,-0.58746 0.58643,-0.59686 0.57821,-0.60859 0.57469,-0.62034 0.56884,-0.63328 0.5618,-0.64619 0.55827,-0.66265 0.55358,-0.67674 0.55007,-0.69437 0.54537,-0.71081 0.54186,-0.73079 0.53834,-0.74959 0.53716,-0.77074 0.53248,-0.7907 0.5313,-0.8142 0.53013,-0.83655 0.5266,-0.86237 0.52779,-0.88587 0.52543,-0.9129 0.52427,-0.93992 0.52543,-0.96929 0.52426,-0.99631 0.52545,-1.0269 0.5266,-1.0586 0.52661,-1.0891 0.52895,-1.122 0.52896,-1.1561 0.90544,0.41121 -0.53365,1.1655 -0.53364,1.1314 -0.5313,1.0985 -0.5313,1.068 -0.53013,1.0363 -0.5313,1.0081 -0.53012,0.9787 -0.53131,0.95167 -0.53247,0.92465 -0.53247,0.89763 -0.536,0.87412 -0.53716,0.84829 -0.53834,0.82594 -0.54186,0.80481 -0.5442,0.78248 -0.54771,0.76135 -0.55125,0.74253 -0.55475,0.72492 -0.55946,0.70612 -0.56296,0.68848 -0.56766,0.6744 -0.57352,0.65794 -0.57821,0.64503 -0.58408,0.62974 -0.58995,0.62035 -0.59581,0.60625 -0.60167,0.59685 -0.60988,0.58862 -0.61574,0.57923 -0.62279,0.56983 -0.63216,0.5663 -0.63803,0.55808 -0.2334,-0.86591 z m -0.18296,0.97751 -1.0157,-0.18916 0.78229,-0.67675 0.2334,0.86591 z m 23.334,-8.1421 0.79754,0.5945 -0.52661,0.6791 -0.5442,0.64854 -0.56179,0.618 -0.5794,0.58628 -0.5958,0.55689 -0.6134,0.52519 -0.62983,0.49698 -0.64506,0.46761 -0.66148,0.43589 -0.67674,0.40769 -0.69315,0.3795 -0.70605,0.34894 -0.72014,0.32193 -0.73537,0.29372 -0.74827,0.26435 -0.76236,0.23733 -0.77408,0.20914 -0.78698,0.1821 -0.79871,0.15627 -0.81044,0.12924 -0.82335,0.10339 -0.83506,0.0776 -0.84563,0.0517 -0.855,0.0271 -0.86674,0.002 -0.87612,-0.0235 -0.88667,-0.047 -0.89605,-0.0705 -0.90544,-0.0952 -0.91484,-0.11866 -0.92302,-0.13981 -0.93359,-0.16448 0.18296,-0.97752 0.91014,0.15978 0.90192,0.13747 0.89136,0.11397 0.88198,0.0928 0.87026,0.0681 0.86087,0.047 0.84797,0.0212 0.83858,-0.002 0.82686,-0.0247 0.81514,-0.0494 0.80222,-0.0752 0.7905,-0.0986 0.77761,-0.12454 0.76587,-0.14922 0.75179,-0.17507 0.7389,-0.19972 0.72716,-0.22558 0.71075,-0.25261 0.69784,-0.27728 0.68495,-0.30548 0.67087,-0.33249 0.65561,-0.35834 0.64156,-0.38655 0.6263,-0.41474 0.61222,-0.44176 0.59698,-0.47113 0.58291,-0.49934 0.56531,-0.5287 0.55124,-0.55808 0.53365,-0.58744 0.52074,-0.61801 0.50081,-0.64854 z m 13.483,-16.727 0.99224,0.0352 -0.25921,0.41944 -0.20173,0.11866 -0.21463,0.14687 -0.22988,0.17624 -0.24277,0.20326 -0.25568,0.23144 -0.26859,0.25848 -0.28031,0.2855 -0.29439,0.31371 -0.3061,0.3419 -0.3202,0.36773 -0.33192,0.39242 -0.34481,0.42062 -0.35889,0.44529 -0.3718,0.47114 -0.38703,0.49815 -0.39995,0.52283 -0.41519,0.54868 -0.43043,0.571 -0.44451,0.59803 -0.46093,0.62269 -0.47618,0.6462 -0.49377,0.67204 -0.50784,0.69555 -0.52661,0.71787 -0.54303,0.7437 -0.56062,0.76604 -0.57939,0.79189 -0.59698,0.81303 -0.61457,0.83652 -0.63334,0.86121 -0.65445,0.88352 -0.67204,0.90468 -0.79754,-0.5945 0.67204,-0.90468 0.6521,-0.88117 0.63335,-0.85886 0.61457,-0.83653 0.59698,-0.81303 0.57704,-0.78954 0.56062,-0.76603 0.54303,-0.74371 0.52661,-0.72022 0.51019,-0.69554 0.49377,-0.67204 0.47617,-0.64855 0.46328,-0.62505 0.44686,-0.60036 0.43278,-0.57571 0.41753,-0.55103 0.40464,-0.52753 0.39173,-0.50286 0.37648,-0.47818 0.36592,-0.45469 0.35187,-0.42767 0.3413,-0.40415 0.32957,-0.3795 0.31784,-0.35364 0.30846,-0.33016 0.29908,-0.3043 0.28969,-0.27962 0.28148,-0.25496 0.27562,-0.2291 0.26741,-0.20444 0.26389,-0.17976 0.26038,-0.15391 -0.25921,0.41943 z m 0.99224,0.0352 -0.0105,0.28432 -0.24865,0.13512 0.25921,-0.41944 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path531" + d="m 425.16,580.63 -11.789,-4.9651 c -4.8333,9.8527 -8.1232,16.512 -9.493,20.127 -2.687,7.0905 -3.4212,13.768 -2.178,19.535 4.7864,-1.2184 10.314,-4.6326 14.051,-11.652 3.752,-7.0471 6.0625,-15.277 9.4098,-23.046 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path533" + d="m 413.56,575.2 11.789,4.9651 -0.3847,0.91641 -11.789,-4.9651 -0.25334,-0.67792 0.63803,-0.2385 z m -0.63803,0.2385 0.20642,-0.4206 0.43161,0.1821 -0.63803,0.2385 z m -8.5829,20.523 -0.9289,-0.35248 0.13606,-0.35363 0.14659,-0.36893 0.15717,-0.38889 0.17006,-0.40534 0.17945,-0.42296 0.19117,-0.43941 0.20056,-0.45705 0.21229,-0.47701 0.22167,-0.49228 0.2334,-0.51225 0.24395,-0.52871 0.25333,-0.54633 0.26389,-0.56513 0.27445,-0.58392 0.28617,-0.60156 0.29438,-0.61916 0.30377,-0.63798 0.31668,-0.65559 0.32487,-0.6744 0.33427,-0.69319 0.34481,-0.70964 0.3542,-0.73079 0.36359,-0.74606 0.37531,-0.76604 0.38352,-0.78482 0.39291,-0.80365 0.40228,-0.82125 0.41167,-0.83889 0.42106,-0.85884 0.43043,-0.87647 0.43982,-0.89646 0.44803,-0.91407 0.89137,0.43941 -0.44803,0.91408 -0.43983,0.89645 -0.43043,0.87647 -0.42105,0.85885 -0.41168,0.83888 -0.40228,0.82125 -0.3929,0.8013 -0.38352,0.78483 -0.37297,0.76603 -0.36359,0.74607 -0.3542,0.72843 -0.34481,0.70964 -0.33427,0.69085 -0.32487,0.67439 -0.31433,0.65324 -0.30376,0.63563 -0.29439,0.61917 -0.28383,0.5992 -0.27444,0.58158 -0.26155,0.56278 -0.25334,0.54398 -0.24161,0.52635 -0.23104,0.50756 -0.22167,0.48993 -0.20995,0.46996 -0.1982,0.45469 -0.18883,0.43471 -0.17711,0.41592 -0.16536,0.39829 -0.15482,0.37949 -0.14426,0.36187 -0.13136,0.3419 z m -2.7644,18.876 0.24395,0.96578 -0.60753,-0.37833 -0.1126,-0.55337 -0.10203,-0.55925 -0.0892,-0.56514 -0.0774,-0.56982 -0.0645,-0.57335 -0.0551,-0.57924 -0.0422,-0.58391 -0.0293,-0.58745 -0.0199,-0.59333 -0.006,-0.59802 0.005,-0.60156 0.0176,-0.60389 0.027,-0.61095 0.041,-0.6133 0.0516,-0.61682 0.0634,-0.62152 0.0751,-0.62505 0.0868,-0.62975 0.0985,-0.63092 0.10908,-0.63563 0.12197,-0.63914 0.13371,-0.64267 0.14426,-0.64503 0.15599,-0.64853 0.16889,-0.65091 0.17828,-0.65441 0.19117,-0.65678 0.2029,-0.66146 0.21463,-0.66148 0.22519,-0.66616 0.23692,-0.66735 0.24864,-0.6697 0.92889,0.35248 -0.24395,0.65794 -0.23221,0.65324 -0.2205,0.65209 -0.20995,0.64972 -0.1982,0.64501 -0.18649,0.64267 -0.17592,0.64033 -0.16421,0.63679 -0.15129,0.6321 -0.14191,0.63093 -0.13137,0.62622 -0.11728,0.62269 -0.10673,0.61917 -0.0962,0.61448 -0.0844,0.61094 -0.0727,0.6086 -0.061,0.60273 -0.0516,0.60038 -0.0387,0.5945 -0.027,0.5898 -0.0153,0.58744 -0.005,0.58276 0.006,0.57687 0.0176,0.57218 0.0293,0.56865 0.0399,0.56278 0.0528,0.55807 0.0622,0.55456 0.0751,0.54634 0.0868,0.54398 0.0973,0.5381 0.1079,0.53223 -0.60753,-0.37832 z m 0.24395,0.96578 -0.49846,0.12689 -0.10907,-0.50522 0.60753,0.37833 z m 13.49,-12.368 0.87729,0.46761 -0.36241,0.65913 -0.37179,0.63797 -0.38235,0.61683 -0.39055,0.59684 -0.40112,0.57688 -0.40815,0.55573 -0.41636,0.5381 -0.42574,0.51696 -0.43162,0.49698 -0.4363,0.47818 -0.44451,0.46174 -0.45154,0.44176 -0.4539,0.4218 -0.46092,0.40652 -0.46328,0.38653 -0.4668,0.3701 -0.47148,0.35247 -0.47383,0.33484 -0.475,0.31839 -0.47735,0.30313 -0.4797,0.2855 -0.47969,0.27024 -0.48087,0.25377 -0.47969,0.23851 -0.4797,0.22323 -0.47853,0.20913 -0.47734,0.19268 -0.47384,0.17859 -0.47382,0.16566 -0.47032,0.15039 -0.46562,0.13746 -0.46328,0.12454 -0.24395,-0.96577 0.43747,-0.11748 0.44451,-0.13041 0.44686,-0.14335 0.44803,-0.15626 0.45272,-0.17154 0.45389,-0.18328 0.45506,-0.19738 0.45859,-0.21383 0.45624,-0.22676 0.45741,-0.24203 0.45858,-0.25848 0.45624,-0.2714 0.45624,-0.28903 0.45389,-0.3043 0.45273,-0.32074 0.45037,-0.33603 0.44568,-0.35365 0.44452,-0.37008 0.43981,-0.38773 0.43513,-0.40534 0.43043,-0.42297 0.42574,-0.44058 0.41989,-0.45939 0.41519,-0.47818 0.40697,-0.49581 0.39995,-0.51462 0.39408,-0.53692 0.38469,-0.55337 0.37648,-0.5757 0.36828,-0.59569 0.36006,-0.61448 0.34833,-0.63561 z m 9.6561,-22.354 0.3847,-0.91641 0.26389,0.65559 -0.30963,0.7261 -0.30377,0.72843 -0.29908,0.7308 -0.29439,0.73312 -0.28969,0.73549 -0.28618,0.73549 -0.28265,0.73784 -0.28149,0.73902 -0.27679,0.739 -0.27679,0.73901 -0.27562,0.74019 -0.27327,0.73785 -0.27327,0.73901 -0.27328,0.73901 -0.27327,0.73549 -0.27445,0.73549 -0.27679,0.73313 -0.27679,0.73079 -0.28032,0.72844 -0.28265,0.72608 -0.28618,0.72257 -0.28969,0.72023 -0.29204,0.71551 -0.29791,0.71316 -0.30259,0.70847 -0.30846,0.70259 -0.31432,0.69906 -0.32136,0.6932 -0.32723,0.68848 -0.33426,0.68262 -0.34364,0.67675 -0.34951,0.66969 -0.8773,-0.46761 0.34483,-0.65794 0.3366,-0.665 0.32957,-0.67087 0.32254,-0.67909 0.31666,-0.68379 0.30963,-0.68967 0.30377,-0.69554 0.30025,-0.69907 0.29556,-0.70611 0.28969,-0.70846 0.28735,-0.71553 0.28383,-0.71786 0.28031,-0.7214 0.27797,-0.72373 0.27679,-0.72844 0.27445,-0.73078 0.27444,-0.73315 0.27328,-0.73548 0.27327,-0.73666 0.27328,-0.73902 0.27327,-0.74018 0.27562,-0.74019 0.2768,-0.74137 0.27913,-0.74137 0.28148,-0.74135 0.285,-0.74254 0.28852,-0.74019 0.29205,-0.74019 0.29673,-0.73783 0.30142,-0.73785 0.30612,-0.73548 0.31197,-0.73314 0.26389,0.65559 z m 0.3847,-0.91641 0.4621,0.19503 -0.19821,0.46056 -0.26389,-0.65559 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path535" + d="m 428.55,580.62 -12.643,-1.9315 c -2.2847,10.735 -3.8528,17.998 -4.3008,21.839 -0.8773,7.5323 0.0375,14.187 2.6495,19.478 4.3442,-2.3522 8.8726,-7.0165 10.786,-14.736 1.9211,-7.752 2.1557,-16.298 3.508,-24.649 h 0.001 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path537" + d="m 415.98,578.2 12.643,1.9315 -0.15012,0.98456 -12.643,-1.9315 -0.4105,-0.59566 L 415.98,578.2 z m -0.56062,0.3889 0.0973,-0.4594 0.46328,0.0705 -0.56062,0.3889 z m -3.3215,22 -0.98753,-0.11514 0.0469,-0.37596 0.0516,-0.3936 0.0587,-0.41474 0.0645,-0.43588 0.0727,-0.45234 0.0763,-0.47231 0.0844,-0.49463 0.0892,-0.51345 0.095,-0.53222 0.10203,-0.55338 0.1079,-0.57218 0.11143,-0.59332 0.11845,-0.61212 0.12433,-0.63327 0.13018,-0.65325 0.13487,-0.67204 0.14075,-0.69437 0.14543,-0.71199 0.15012,-0.73432 0.156,-0.75311 0.16185,-0.77308 0.16537,-0.79422 0.17241,-0.81422 0.17593,-0.83418 0.18062,-0.85415 0.18531,-0.87413 0.19,-0.8941 0.19469,-0.91525 0.19939,-0.93523 0.2029,-0.95518 0.20759,-0.97635 0.21228,-0.99631 0.97113,0.20678 -0.21229,0.99631 -0.20759,0.97635 -0.20291,0.95519 -0.19938,0.93522 -0.19469,0.91525 -0.19001,0.8941 -0.1853,0.87412 -0.18062,0.85416 -0.17593,0.83418 -0.17007,0.81187 -0.16536,0.79422 -0.16185,0.77309 -0.156,0.75076 -0.15012,0.73196 -0.14544,0.71199 -0.14074,0.69202 -0.13488,0.66969 -0.12784,0.6509 -0.12431,0.63092 -0.11847,0.60977 -0.11141,0.59098 -0.10791,0.56983 -0.0997,0.54868 -0.095,0.52753 -0.0892,0.50872 -0.0821,0.48759 -0.0763,0.46761 -0.0704,0.44764 -0.0645,0.42649 -0.0563,0.40534 -0.0516,0.38654 -0.0446,0.36422 z m 1.92,18.982 0.47149,0.87648 -0.68142,-0.21736 -0.24513,-0.51108 -0.23457,-0.51696 -0.22284,-0.52635 -0.21463,-0.53223 -0.20408,-0.54163 -0.19352,-0.54868 -0.18297,-0.55456 -0.1724,-0.56395 -0.16303,-0.57099 -0.1513,-0.57688 -0.14191,-0.58393 -0.13136,-0.59216 -0.12081,-0.59802 -0.11024,-0.6039 -0.10204,-0.61212 -0.0892,-0.618 -0.0797,-0.62505 -0.068,-0.62975 -0.0598,-0.63797 -0.0481,-0.64384 -0.0375,-0.64855 -0.027,-0.65558 -0.0176,-0.6603 -0.007,-0.66735 0.005,-0.67322 0.0153,-0.67792 0.0246,-0.68497 0.0352,-0.68967 0.0469,-0.69436 0.0563,-0.70024 0.0668,-0.70495 0.0774,-0.71081 0.98754,0.11514 -0.0774,0.69672 -0.0645,0.69085 -0.0563,0.68614 -0.0446,0.68027 -0.0352,0.67556 -0.0246,0.66852 -0.0129,0.66381 -0.005,0.65678 0.007,0.6509 0.0153,0.64619 0.027,0.63915 0.0375,0.6321 0.0458,0.6274 0.0575,0.61917 0.068,0.61329 0.0774,0.6086 0.0868,0.5992 0.0973,0.59333 0.1079,0.58745 0.11611,0.57922 0.12901,0.57336 0.13723,0.56512 0.1466,0.55808 0.15599,0.55221 0.16772,0.5428 0.17593,0.53576 0.18648,0.52989 0.19704,0.52046 0.20525,0.51344 0.2158,0.50521 0.22518,0.49815 0.23575,0.48994 -0.68142,-0.21736 z m 0.47149,0.87648 -0.45272,0.24556 -0.2287,-0.46292 0.68141,0.21736 z m 10.068,-15.294 0.96408,0.23967 -0.19,0.7261 -0.20525,0.71081 -0.2205,0.69202 -0.23339,0.67321 -0.24865,0.65795 -0.26036,0.63915 -0.27328,0.6227 -0.285,0.60507 -0.29791,0.58862 -0.30846,0.57218 -0.31901,0.55338 -0.3284,0.53928 -0.33778,0.52048 -0.34599,0.50639 -0.35655,0.48875 -0.36358,0.47348 -0.37062,0.45587 -0.37649,0.44176 -0.38469,0.42531 -0.38939,0.41005 -0.39525,0.39477 -0.39876,0.37831 -0.40463,0.36422 -0.40699,0.35012 -0.41049,0.33249 -0.41285,0.31958 -0.41518,0.3043 -0.41754,0.2902 -0.41871,0.2761 -0.41753,0.25967 -0.4187,0.24789 -0.41989,0.23381 -0.47148,-0.87647 0.39642,-0.21971 0.3976,-0.23615 0.39876,-0.24792 0.3976,-0.26199 0.39643,-0.27611 0.39407,-0.29019 0.39408,-0.30313 0.39173,-0.3184 0.38821,-0.33132 0.38587,-0.34777 0.38,-0.36187 0.37648,-0.37597 0.37298,-0.39124 0.36592,-0.40652 0.36007,-0.42061 0.3542,-0.43707 0.34716,-0.45233 0.34013,-0.46761 0.33192,-0.4829 0.3237,-0.49932 0.31433,-0.51579 0.30493,-0.53223 0.29673,-0.54633 0.28383,-0.56512 0.27562,-0.58158 0.26155,-0.59686 0.25099,-0.61563 0.23926,-0.63211 0.22402,-0.64971 0.21346,-0.66618 0.1982,-0.68497 0.18297,-0.70258 z m 3.99,-25.028 0,0.99632 0.49025,-0.41828 -0.12199,0.78015 -0.11845,0.77896 -0.11025,0.78248 -0.10672,0.78366 -0.10322,0.78366 -0.0985,0.78366 -0.0938,0.78483 -0.0915,0.78483 -0.0903,0.78483 -0.088,0.78484 -0.0856,0.78367 -0.0856,0.78365 -0.0856,0.78367 -0.0844,0.78131 -0.0856,0.78129 -0.088,0.78014 -0.088,0.77896 -0.0915,0.77543 -0.0938,0.77545 -0.0973,0.77309 -0.0997,0.77073 -0.10672,0.76955 -0.10908,0.76605 -0.11494,0.76368 -0.12081,0.76134 -0.12901,0.75663 -0.13253,0.75429 -0.14191,0.75193 -0.15013,0.74725 -0.15833,0.74371 -0.16889,0.73901 -0.17593,0.73666 -0.96408,-0.23968 0.17358,-0.72255 0.1642,-0.72728 0.15599,-0.73195 0.14778,-0.7355 0.13957,-0.74019 0.13252,-0.74489 0.12667,-0.74958 0.11846,-0.75194 0.11494,-0.75664 0.10908,-0.75899 0.10438,-0.7625 0.0997,-0.76604 0.0973,-0.76838 0.0915,-0.77074 0.0915,-0.77308 0.088,-0.77661 0.088,-0.77779 0.0856,-0.77895 0.0844,-0.78131 0.0856,-0.78367 0.0856,-0.78365 0.0856,-0.78602 0.088,-0.78717 0.0904,-0.78719 0.0914,-0.78719 0.0962,-0.78954 0.0985,-0.78835 0.10322,-0.78836 0.10673,-0.78836 0.11259,-0.78953 0.11846,-0.78836 0.12432,-0.78719 0.49026,-0.41827 z m -0.49025,0.41827 0.068,-0.41827 0.42223,0 -0.49026,0.41827 z m 0.49142,0.57805 -10e-4,0 0,-0.99632 10e-4,0 0.0751,0.006 -0.0751,0.99044 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path539" + d="m 430.43,563.41 7.5391,-0.0634 c 4.4017,2.1877 9.0216,12.222 3.6827,21.906 -6.6547,12.071 -8.7928,20.385 -9.4379,29.382 -7.3796,-6.8309 -10.818,-14.723 -8.2428,-23.384 3.474,-11.687 6.853,-25.118 6.4589,-27.84 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path541" + d="m 437.97,563.85 -7.5391,0.0634 -0.009,-0.99631 7.5391,-0.0634 0.22519,0.0528 -0.2158,0.94344 z m -0.009,-0.9963 0.11729,-10e-4 0.1079,0.054 -0.22519,-0.0528 z m 4.1226,22.645 -0.87025,-0.48171 0.45976,-0.88587 0.40581,-0.88706 0.35185,-0.88471 0.29908,-0.88117 0.24981,-0.87883 0.20173,-0.87295 0.15716,-0.86589 0.1126,-0.85651 0.0692,-0.84711 0.0293,-0.83652 -0.008,-0.82243 -0.0469,-0.80951 -0.0809,-0.79542 -0.11494,-0.77661 -0.14425,-0.75897 -0.17594,-0.73784 -0.20173,-0.71787 -0.2287,-0.6932 -0.25333,-0.66969 -0.27445,-0.64267 -0.29439,-0.61448 -0.31315,-0.58627 -0.3284,-0.55337 -0.34364,-0.52283 -0.35538,-0.48759 -0.36592,-0.45234 -0.37297,-0.41592 -0.37883,-0.37479 -0.38235,-0.33719 -0.38234,-0.29373 -0.38118,-0.2526 -0.37649,-0.20795 0.441,-0.89059 0.4492,0.24792 0.44451,0.29254 0.4363,0.33602 0.42926,0.37715 0.42105,0.41709 0.40815,0.45586 0.39878,0.49229 0.38352,0.52752 0.36944,0.56043 0.35185,0.59333 0.33427,0.62387 0.31315,0.65442 0.29086,0.68262 0.26742,0.70963 0.24277,0.73314 0.21346,0.75781 0.18531,0.78014 0.15364,0.80129 0.11963,0.82125 0.0856,0.8377 0.0493,0.85415 0.0105,0.86943 -0.0317,0.88353 -0.0739,0.89411 -0.11963,0.90584 -0.16419,0.91289 -0.21346,0.91996 -0.26389,0.92583 -0.3155,0.93051 -0.37063,0.9317 -0.42457,0.9317 -0.48321,0.93052 z m -10.21,29.506 0.67321,-0.73079 -0.83272,0.33015 0.0656,-0.8471 0.0751,-0.84475 0.0844,-0.84241 0.095,-0.84123 0.10673,-0.83889 0.11845,-0.84122 0.1302,-0.84241 0.14191,-0.8424 0.15716,-0.84593 0.16889,-0.84945 0.18531,-0.85533 0.19939,-0.85768 0.21463,-0.86473 0.23105,-0.8706 0.24747,-0.87882 0.26506,-0.88705 0.28266,-0.89527 0.30025,-0.90469 0.32019,-0.91642 0.33777,-0.92699 0.36007,-0.93758 0.37883,-0.95284 0.39994,-0.9646 0.42106,-0.97987 0.44334,-0.99514 0.46796,-1.0116 0.48908,-1.028 0.51253,-1.0468 0.53716,-1.0645 0.5618,-1.0833 0.58642,-1.1044 0.61341,-1.1256 0.87025,0.48171 -0.6087,1.1162 -0.58174,1.095 -0.55711,1.0739 -0.53247,1.0551 -0.50784,1.0351 -0.48439,1.0186 -0.46093,0.99983 -0.43864,0.98339 -0.41636,0.96813 -0.39525,0.95284 -0.37415,0.93876 -0.35302,0.92581 -0.33309,0.9129 -0.3155,0.90233 -0.29556,0.89057 -0.27796,0.88117 -0.26037,0.87061 -0.24278,0.86473 -0.22871,0.85651 -0.20993,0.84827 -0.19705,0.84358 -0.18062,0.83888 -0.16653,0.83535 -0.15482,0.83183 -0.13957,0.82831 -0.12784,0.82831 -0.11612,0.82712 -0.10438,0.82714 -0.095,0.82714 -0.0821,0.83064 -0.0751,0.83301 -0.0634,0.83536 -0.83272,0.33014 z m 0.83272,-0.33014 -0.0739,1.0327 -0.75883,-0.70259 0.83272,-0.33014 z m -9.2151,-23.561 0.95236,0.28432 -0.21932,0.79071 -0.18414,0.78719 -0.15129,0.78013 -0.11729,0.77544 -0.0844,0.77073 -0.0516,0.76603 -0.0188,0.76016 0.0105,0.75664 0.0434,0.75076 0.0751,0.74724 0.10322,0.74018 0.13605,0.73667 0.16419,0.73314 0.1947,0.72609 0.22402,0.72374 0.25333,0.71669 0.28148,0.71316 0.30964,0.70847 0.33895,0.70494 0.36475,0.69789 0.39291,0.69436 0.42106,0.68968 0.44685,0.68496 0.47383,0.67792 0.49963,0.67557 0.52427,0.66852 0.55006,0.66264 0.57587,0.65913 0.6005,0.65206 0.62513,0.64737 0.64859,0.64149 0.67204,0.63681 -0.67322,0.73079 -0.68846,-0.65091 -0.66501,-0.65793 -0.64154,-0.66383 -0.61692,-0.67086 -0.59229,-0.67792 -0.56649,-0.68379 -0.54303,-0.68967 -0.51604,-0.69672 -0.49026,-0.70376 -0.46327,-0.71082 -0.43748,-0.71551 -0.40933,-0.72256 -0.38116,-0.72844 -0.35304,-0.73549 -0.3237,-0.74137 -0.29556,-0.74606 -0.26507,-0.75429 -0.23574,-0.75899 -0.20407,-0.76603 -0.17358,-0.77073 -0.14309,-0.77661 -0.11025,-0.78248 -0.0774,-0.78719 -0.0458,-0.79306 -0.0129,-0.79658 0.0212,-0.80246 0.0539,-0.80598 0.0892,-0.81304 0.12432,-0.81538 0.15834,-0.82008 0.19351,-0.82478 0.22871,-0.8283 z m 6.9304,-28.196 0.009,0.99631 0.48674,-0.56983 0.0305,0.33485 0.006,0.37831 -0.0176,0.42649 -0.0375,0.47701 -0.0563,0.52754 -0.0774,0.5757 -0.0927,0.62269 -0.11142,0.66853 -0.12784,0.71199 -0.14309,0.75428 -0.15951,0.79189 -0.17357,0.82947 -0.18649,0.86474 -0.20173,0.89762 -0.21229,0.92817 -0.22636,0.95638 -0.23574,0.98221 -0.24747,1.0057 -0.25686,1.0292 -0.26741,1.0468 -0.27562,1.0633 -0.28265,1.0786 -0.29087,1.0927 -0.29672,1.1009 -0.30377,1.1091 -0.30729,1.115 -0.31198,1.1197 -0.31784,1.1197 -0.32019,1.1185 -0.32136,1.1162 -0.32605,1.1091 -0.32488,1.102 -0.95235,-0.28432 0.32487,-1.0997 0.32371,-1.1068 0.32136,-1.1114 0.32019,-1.1162 0.3155,-1.1173 0.31197,-1.115 0.30729,-1.1126 0.30142,-1.1068 0.29673,-1.0985 0.28852,-1.088 0.28266,-1.0762 0.27562,-1.0609 0.26507,-1.0421 0.25685,-1.0245 0.24512,-1.001 0.23575,-0.97752 0.22401,-0.95166 0.21229,-0.92348 0.19938,-0.89058 0.18648,-0.85767 0.17124,-0.82243 0.15716,-0.78483 0.14309,-0.74254 0.12549,-0.70025 0.10908,-0.65442 0.0903,-0.60625 0.0727,-0.5569 0.0539,-0.50169 0.0351,-0.44411 0.0153,-0.38184 -0.004,-0.31488 -0.0212,-0.2385 0.48672,-0.56982 z m -0.48673,0.56983 -0.0821,-0.56513 0.56883,-0.005 -0.48673,0.56983 z m 0.49142,-0.0717 -0.005,-0.49816 0.005,0.49816 z m -0.49142,0.0717 -0.0821,-0.56513 0.56883,-0.005 -0.48673,0.56983 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path543" + d="m 433.79,558.16 -12.055,-4.2802 c -4.261,10.115 -7.1638,16.951 -8.3249,20.639 -2.2765,7.2327 -2.6284,13.941 -1.0556,19.629 4.709,-1.4921 10.675,-4.5751 14.004,-11.796 3.3414,-7.2515 4.5342,-16.245 7.4312,-24.192 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path545" + d="m 421.9,553.41 12.055,4.2802 -0.33308,0.93757 -12.055,-4.2802 -0.29088,-0.66265 0.62396,-0.27493 z m -0.62396,0.27493 0.18179,-0.43237 0.44217,0.15744 -0.62396,0.27493 z m -7.3936,20.983 -0.94766,-0.29842 0.11494,-0.36069 0.12667,-0.37714 0.13488,-0.39712 0.14543,-0.41357 0.15599,-0.43236 0.16419,-0.44999 0.17476,-0.46878 0.18414,-0.48642 0.19352,-0.50638 0.20408,-0.52283 0.21229,-0.54397 0.22283,-0.56044 0.23105,-0.57922 0.24044,-0.59802 0.24981,-0.61683 0.25921,-0.63562 0.26741,-0.65325 0.27796,-0.6744 0.28618,-0.69083 0.29438,-0.71081 0.3026,-0.72963 0.31197,-0.74841 0.32136,-0.76721 0.3284,-0.786 0.34013,-0.80481 0.34599,-0.82361 0.3542,-0.84357 0.36358,-0.86238 0.37062,-0.88118 0.37884,-0.89997 0.3882,-0.91996 0.39525,-0.93874 0.91483,0.38772 -0.39525,0.93875 -0.38821,0.91994 -0.37884,0.89997 -0.37062,0.88118 -0.36358,0.86238 -0.3542,0.84123 -0.34599,0.8236 -0.33778,0.80482 -0.32839,0.78599 -0.32137,0.76722 -0.31198,0.74606 -0.30259,0.72962 -0.29439,0.70846 -0.28617,0.69085 -0.27562,0.67204 -0.26741,0.65325 -0.2592,0.63327 -0.24748,0.61448 -0.24042,0.59567 -0.23106,0.57687 -0.2205,0.55808 -0.21228,0.53929 -0.20173,0.52047 -0.19118,0.50169 -0.18413,0.4817 -0.17241,0.46409 -0.16185,0.44529 -0.15365,0.42531 -0.14308,0.40652 -0.13253,0.38773 -0.12198,0.37008 -0.1126,0.34894 z m -1.6795,19.005 0.30026,0.94932 -0.62866,-0.34189 -0.14543,-0.54633 -0.13253,-0.55338 -0.12197,-0.55808 -0.11026,-0.56395 -0.0973,-0.56983 -0.0868,-0.57571 -0.0763,-0.58039 -0.0645,-0.58511 -0.0516,-0.59097 -0.041,-0.59568 -0.0293,-0.60036 -0.0188,-0.60509 -0.007,-0.61094 0.005,-0.61447 0.0176,-0.62035 0.027,-0.62389 0.0387,-0.62856 0.0516,-0.63327 0.0622,-0.6368 0.0739,-0.64033 0.0833,-0.64501 0.0973,-0.64854 0.1079,-0.65208 0.11846,-0.65677 0.13019,-0.66029 0.14073,-0.66382 0.15365,-0.66735 0.1642,-0.66969 0.17593,-0.67439 0.18765,-0.67675 0.19821,-0.68026 0.20995,-0.68262 0.94766,0.29842 -0.20526,0.67086 -0.19586,0.66618 -0.18296,0.66264 -0.17124,0.6603 -0.16185,0.6556 -0.14895,0.65324 -0.1384,0.64738 -0.12784,0.64619 -0.11611,0.64032 -0.10556,0.63797 -0.0926,0.6321 -0.0833,0.62858 -0.0715,0.62386 -0.0598,0.62035 -0.0493,0.61448 -0.0387,0.61212 -0.027,0.60507 -0.0152,0.60155 -0.005,0.59568 0.007,0.59215 0.0164,0.58627 0.0293,0.58159 0.0387,0.57687 0.0516,0.56982 0.0622,0.5663 0.0715,0.55926 0.0844,0.55455 0.095,0.54868 0.10556,0.5428 0.11728,0.53694 0.12784,0.53223 0.1384,0.52518 -0.62865,-0.3419 z m 0.30026,0.94932 -0.49143,0.15509 -0.13723,-0.49698 0.62866,0.34189 z m 13.402,-12.48 0.90308,0.41826 -0.32722,0.6791 -0.34248,0.65559 -0.35654,0.63093 -0.36945,0.60977 -0.38352,0.58628 -0.39642,0.56395 -0.4058,0.54162 -0.41753,0.52049 -0.4281,0.5005 -0.43747,0.47936 -0.44569,0.45938 -0.45271,0.43942 -0.46093,0.41945 -0.46679,0.40181 -0.4715,0.38302 -0.47735,0.36657 -0.47969,0.34778 -0.48555,0.33132 -0.48557,0.31369 -0.4879,0.30077 -0.48908,0.28315 -0.48908,0.27023 -0.49025,0.25378 -0.48791,0.24086 -0.48438,0.22558 -0.48322,0.21618 -0.48086,0.20091 -0.47618,0.19033 -0.46914,0.17741 -0.46563,0.16801 -0.45975,0.15744 -0.45154,0.14686 -0.30025,-0.94932 0.43747,-0.14217 0.44569,-0.15273 0.44919,-0.16096 0.45507,-0.17271 0.45976,-0.18328 0.46209,-0.19386 0.46446,-0.20678 0.46796,-0.21854 0.46914,-0.23145 0.46914,-0.24438 0.47031,-0.25848 0.46797,-0.2714 0.46679,-0.28669 0.4668,-0.30194 0.46211,-0.31722 0.45858,-0.33133 0.45624,-0.35012 0.45037,-0.36421 0.44334,-0.38302 0.43982,-0.40064 0.4316,-0.41827 0.42457,-0.43824 0.41636,-0.45587 0.40699,-0.47465 0.39642,-0.49699 0.38939,-0.51578 0.37765,-0.53811 0.36475,-0.55807 0.35304,-0.58158 0.34012,-0.60272 0.32605,-0.6274 0.31316,-0.65089 z m 7.7162,-23.514 0.33308,-0.93757 0.30025,0.63915 -0.26389,0.74254 -0.25568,0.74723 -0.24747,0.75311 -0.23926,0.75899 -0.23222,0.76251 -0.22637,0.76603 -0.22049,0.77073 -0.21581,0.77427 -0.2111,0.77662 -0.20878,0.77778 -0.20524,0.78014 -0.2029,0.77895 -0.20173,0.78249 -0.20173,0.7813 -0.20056,0.78014 -0.20173,0.78013 -0.20291,0.77778 -0.20642,0.77544 -0.20759,0.7731 -0.21229,0.77073 -0.21581,0.76721 -0.22166,0.76251 -0.22637,0.75663 -0.23222,0.75429 -0.2416,0.74841 -0.24748,0.73902 -0.25685,0.73548 -0.26624,0.72844 -0.27679,0.71904 -0.28735,0.71198 -0.29908,0.70378 -0.3108,0.69436 -0.90309,-0.41826 0.30377,-0.67557 0.29203,-0.68497 0.28031,-0.69554 0.26976,-0.70494 0.26154,-0.71434 0.25217,-0.72139 0.24512,-0.72961 0.23692,-0.73666 0.22988,-0.74254 0.22401,-0.74959 0.21933,-0.75546 0.21346,-0.76016 0.20994,-0.76369 0.20759,-0.77073 0.20407,-0.77074 0.2029,-0.77544 0.20174,-0.77778 0.20055,-0.78014 0.20173,-0.7813 0.20173,-0.78248 0.20291,-0.78367 0.2076,-0.78248 0.20876,-0.78249 0.21346,-0.78131 0.21581,-0.77896 0.22284,-0.77778 0.2287,-0.77544 0.23457,-0.7719 0.24395,-0.76839 0.24982,-0.76487 0.26037,-0.75897 0.26858,-0.7543 0.30026,0.63915 z m 0.33308,-0.93757 0.47266,0.16801 -0.17241,0.47114 -0.30025,-0.63915 z m -0.16654,0.46879 -0.16654,0.46878 0.16654,-0.46878 z m 0.16654,-0.46879 0.47266,0.16801 -0.17241,0.47114 -0.30025,-0.63915 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path547" + d="m 425.6,549.74 -2.6448,-16.405 c -2.7691,-0.75076 -6.4483,5.7288 -10.048,9.5096 -0.83037,0.87178 -1.7839,1.6919 -2.5087,2.7669 -1.5142,2.2441 -2.7374,4.9193 -3.4165,7.9552 -3.0119,13.456 -7.4007,20.454 -12.874,27.615 10.045,-0.20796 17.844,-3.829 21.652,-12.023 5.1371,-11.055 7.7432,-17.645 9.8402,-19.419 z" + inkscape:connector-curvature="0" + style="fill:#ffffff" /> + <path + id="path549" + d="m 423.44,533.25 2.6448,16.405 -0.9805,0.1598 -2.6448,-16.405 0.62044,-0.56042 0.36006,0.40064 z m -0.36006,-0.40064 0.30846,0.0835 0.0516,0.31723 -0.36006,-0.40064 z m -9.8191,10.333 -0.71778,-0.68613 -9.9e-4,0 0.33192,-0.35482 0.33191,-0.3701 0.33309,-0.38302 0.33426,-0.39476 0.33426,-0.40182 0.33544,-0.41239 0.33426,-0.41591 0.33543,-0.42062 0.33427,-0.42179 0.33308,-0.42296 0.33309,-0.4218 0.33192,-0.41708 0.33075,-0.41121 0.32957,-0.40534 0.32957,-0.39713 0.32604,-0.38419 0.32489,-0.37362 0.3237,-0.36069 0.32371,-0.34307 0.32019,-0.32545 0.32018,-0.309 0.32019,-0.2855 0.31902,-0.26435 0.31784,-0.2385 0.32019,-0.21266 0.32253,-0.18447 0.32488,-0.15391 0.32957,-0.11983 0.33426,-0.0787 0.33778,-0.0376 0.34247,0.0117 0.33779,0.0634 -0.26038,0.96106 -0.18765,-0.0352 -0.19235,-0.007 -0.20643,0.0235 -0.21931,0.0529 -0.2334,0.0846 -0.24748,0.11631 -0.25919,0.14921 -0.26858,0.17977 -0.27797,0.20795 -0.28617,0.23616 -0.29205,0.262 -0.29673,0.2855 -0.30376,0.309 -0.30729,0.32662 -0.31198,0.34659 -0.3155,0.36188 -0.31901,0.37714 -0.32253,0.38772 -0.32489,0.39829 -0.32604,0.40887 -0.32957,0.41474 -0.3331,0.41943 -0.33308,0.42298 -0.33661,0.42413 -0.33543,0.42297 -0.33896,0.42062 -0.34013,0.41708 -0.34129,0.41122 -0.3413,0.40181 -0.34247,0.39477 -0.34365,0.38184 -0.34365,0.36892 -9.9e-4,0 z m -2.4559,2.7023 -0.82334,-0.55691 0.0727,-0.10691 0.0751,-0.10575 0.0751,-0.10221 0.0763,-0.0999 0.0763,-0.0999 0.0786,-0.0987 0.0797,-0.0974 0.0797,-0.0963 0.0809,-0.094 0.0797,-0.0916 0.0821,-0.0916 0.0833,-0.0928 0.0821,-0.0881 0.0809,-0.0869 0.0844,-0.0893 0.0821,-0.0846 0.0821,-0.0857 0.0844,-0.0858 0.0821,-0.0835 0.0832,-0.0846 0.0844,-0.0835 0.0797,-0.0799 0.0809,-0.0823 0.0844,-0.0823 0.0809,-0.0811 0.0833,-0.0823 0.0774,-0.0775 0.0774,-0.0776 0.0797,-0.0811 0.0774,-0.0787 0.0775,-0.0811 0.0774,-0.0787 0.71778,0.68614 -0.0797,0.0835 -0.0797,0.0834 -0.0821,0.0835 -0.0797,0.0811 -0.0821,0.0845 -0.0844,0.0823 -0.0809,0.0799 -0.0809,0.0811 -0.0797,0.0799 -0.0809,0.0823 -0.0844,0.0823 -0.0797,0.0811 -0.0809,0.0799 -0.0797,0.0811 -0.0797,0.0811 -0.0797,0.0835 -0.0797,0.0823 -0.0775,0.0823 -0.0786,0.0846 -0.0773,0.0835 -0.0763,0.0835 -0.0751,0.0846 -0.0751,0.0869 -0.0739,0.0846 -0.0727,0.0869 -0.0704,0.0857 -0.0692,0.0893 -0.0715,0.0905 -0.0668,0.0904 -0.068,0.0928 -0.0656,0.0916 -0.0634,0.0928 z m -3.3438,7.7861 -0.96878,-0.21853 0.0668,-0.28902 0.0692,-0.28669 0.0727,-0.28549 0.0763,-0.28316 0.0797,-0.28198 0.0809,-0.27728 0.0856,-0.27727 0.0892,-0.27375 0.0904,-0.2714 0.0938,-0.27023 0.0973,-0.2667 0.0985,-0.26436 0.10204,-0.262 0.10439,-0.26201 0.1079,-0.2573 0.10907,-0.25495 0.1126,-0.25494 0.11493,-0.25027 0.11729,-0.24908 0.11964,-0.24554 0.1208,-0.24438 0.12549,-0.24086 0.1255,-0.23968 0.12901,-0.23616 0.13018,-0.2338 0.13253,-0.23028 0.13488,-0.22912 0.13723,-0.22675 0.13839,-0.22323 0.14074,-0.22206 0.14191,-0.21852 0.14427,-0.21619 0.82334,0.55691 -0.13722,0.20678 -0.13722,0.20913 -0.13371,0.21266 -0.13371,0.21383 -0.13019,0.21735 -0.13018,0.21971 -0.1255,0.22088 -0.12549,0.22442 -0.12432,0.22675 -0.12081,0.22793 -0.11845,0.23145 -0.11612,0.23264 -0.11493,0.23615 -0.1126,0.23969 -0.11024,0.24084 -0.10791,0.24086 -0.10438,0.24555 -0.10321,0.24791 -0.0997,0.2479 -0.0973,0.25261 -0.0962,0.25494 -0.0926,0.25496 -0.0892,0.25848 -0.088,0.262 -0.0844,0.26202 -0.0809,0.26316 -0.0786,0.26788 -0.0774,0.27023 -0.0715,0.26905 -0.0704,0.27376 -0.0668,0.27728 -0.0645,0.27728 z m -13.369,27.007 0.0211,0.9963 -0.40464,-0.80128 0.50785,-0.66733 0.50081,-0.66969 0.49611,-0.66971 0.48673,-0.67204 0.48205,-0.67439 0.47382,-0.68144 0.46797,-0.68614 0.46093,-0.6932 0.45389,-0.70142 0.44686,-0.71081 0.43981,-0.72257 0.43279,-0.73431 0.42457,-0.74723 0.4187,-0.76252 0.41285,-0.77896 0.40463,-0.79423 0.3976,-0.81303 0.38938,-0.83302 0.38352,-0.85414 0.37531,-0.8753 0.36945,-0.89997 0.36007,-0.92231 0.3542,-0.95049 0.34716,-0.97634 0.33896,-1.0034 0.33074,-1.0339 0.3237,-1.0656 0.3155,-1.0974 0.30963,-1.1291 0.30025,-1.1643 0.29322,-1.1996 0.285,-1.2372 0.96878,0.21853 -0.28735,1.2489 -0.29556,1.2113 -0.30495,1.1784 -0.31197,1.1432 -0.32019,1.1091 -0.3284,1.0797 -0.33544,1.048 -0.34364,1.0198 -0.35185,0.99044 -0.3589,0.96459 -0.36709,0.93876 -0.37414,0.91406 -0.38235,0.89176 -0.39056,0.86825 -0.39642,0.8471 -0.40463,0.82714 -0.41168,0.81068 -0.41987,0.7907 -0.42575,0.77661 -0.43395,0.76134 -0.43983,0.74606 -0.44685,0.73431 -0.45389,0.72257 -0.46094,0.71317 -0.46796,0.70259 -0.47266,0.69554 -0.48086,0.68849 -0.48674,0.6838 -0.49376,0.67909 -0.49847,0.67439 -0.5055,0.67439 -0.51253,0.67439 -0.40463,-0.80127 z m 0.0211,0.9963 -1.0333,0.0212 0.62864,-0.82244 0.40464,0.80128 z m 21.191,-12.731 0.90075,0.42063 -0.37649,0.77073 -0.40111,0.74606 -0.42574,0.72022 -0.44686,0.69319 -0.47149,0.66617 -0.4926,0.64032 -0.51722,0.6133 -0.53599,0.58862 -0.55945,0.56396 -0.57939,0.53693 -0.6005,0.51108 -0.62161,0.48758 -0.64037,0.46174 -0.66032,0.43589 -0.67791,0.41122 -0.69667,0.38771 -0.71661,0.36422 -0.73303,0.33954 -0.75179,0.31488 -0.76705,0.29138 -0.78463,0.27023 -0.80106,0.24555 -0.81748,0.22205 -0.83272,0.20091 -0.84797,0.17859 -0.86204,0.15744 -0.8773,0.13393 -0.89254,0.11397 -0.90544,0.0916 -0.91951,0.0716 -0.93359,0.0494 -0.94531,0.0305 -0.0211,-0.99631 0.9242,-0.0282 0.91014,-0.0494 0.89605,-0.0693 0.88198,-0.0893 0.86674,-0.11162 0.85148,-0.12924 0.83625,-0.15273 0.81982,-0.17153 0.80458,-0.19387 0.78698,-0.215 0.77056,-0.23616 0.75414,-0.25848 0.73655,-0.27962 0.71896,-0.30313 0.70019,-0.3231 0.68377,-0.34777 0.66383,-0.36892 0.64741,-0.39241 0.62748,-0.41474 0.60753,-0.43824 0.58878,-0.46173 0.57,-0.48524 0.5489,-0.50873 0.52894,-0.5334 0.51019,-0.55809 0.48908,-0.58275 0.4668,-0.60743 0.44802,-0.63327 0.42575,-0.65794 0.40463,-0.68496 0.38235,-0.71082 0.36007,-0.73784 z m 9.8003,-19.129 0.9805,-0.1598 -0.17006,0.46058 -0.17241,0.15743 -0.18179,0.1868 -0.18883,0.21854 -0.19586,0.24791 -0.2029,0.27962 -0.21112,0.30782 -0.21697,0.33719 -0.22284,0.36659 -0.23106,0.39593 -0.23808,0.42532 -0.24513,0.45351 -0.25333,0.48054 -0.26038,0.5099 -0.26741,0.53811 -0.27796,0.5663 -0.28618,0.59216 -0.29556,0.62034 -0.30376,0.64972 -0.3155,0.67439 -0.32371,0.70376 -0.33544,0.7308 -0.34598,0.75663 -0.35772,0.78601 -0.36827,0.8095 -0.38001,0.83888 -0.39407,0.86591 -0.40581,0.89176 -0.41871,0.91759 -0.43278,0.94579 -0.44568,0.97048 -0.46094,0.99866 -0.47382,1.0245 -0.90075,-0.42063 0.47383,-1.0222 0.45858,-0.99632 0.44569,-0.97046 0.43277,-0.94344 0.41872,-0.9176 0.4058,-0.89176 0.39173,-0.86355 0.38,-0.83889 0.37062,-0.81185 0.35772,-0.78601 0.34599,-0.75898 0.33544,-0.73079 0.32605,-0.70613 0.31549,-0.67909 0.30612,-0.65206 0.2979,-0.62505 0.28852,-0.5992 0.28031,-0.571 0.27211,-0.54515 0.26506,-0.51931 0.25803,-0.49228 0.25216,-0.46526 0.24513,-0.43708 0.24042,-0.41238 0.23457,-0.38537 0.23106,-0.35834 0.22754,-0.33368 0.22401,-0.30547 0.22166,-0.2808 0.22167,-0.25614 0.22167,-0.2291 0.22401,-0.20443 -0.17006,0.46057 z m 0.9805,-0.1598 0.0446,0.27846 -0.21464,0.18212 0.17006,-0.46058 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + </g> + <use + id="use551" + x="0" + y="0" + width="1350" + height="900" + transform="matrix(-1,0,0,1,964.29686,0)" + xlink:href="#g3464" /> + <path + id="path553" + d="m 536.38,414.88 c 1.5869,-0.32898 3.2089,-0.78836 4.8568,-1.3676 -7.6306,-4.7877 -13.959,-10.575 -21.484,-22.122 -7.7068,-11.828 3.379,-32.951 7.9238,-44.156 9.4966,-7.0412 18.449,-17.379 21.29,-31.012 1.1259,-7.3349 -19.09,-4.6832 -32.997,1.8857 -16.996,8.0293 -19.31,5.804 -25.369,7.1634 -2.1545,10.42 2.3562,11.303 6.6934,10.79 -9.3652,15.028 -13.273,29.986 -15.141,51.497 -1.8684,-21.512 -5.7786,-36.469 -15.144,-51.497 4.3384,0.51226 8.8492,-0.37009 6.6934,-10.79 -6.0589,-1.3582 -8.3718,0.86707 -25.369,-7.1634 -13.906,-6.5689 -34.123,-9.2206 -32.997,-1.8857 2.8418,13.632 11.793,23.97 21.29,31.012 4.5448,11.205 15.631,32.329 7.9238,44.156 -7.5238,11.547 -13.853,17.335 -21.484,22.122 1.649,0.57922 3.2699,1.0386 4.858,1.3676 -1.1541,1.5755 -11.049,4.6632 -12.209,3.8419 -7.5743,-5.3622 -14.956,-17.956 -21.396,-25.265 -18.245,-20.712 -27.347,-36.702 -24.13,-49.597 4.5847,-13.887 20.93,-29.475 -0.72365,-26.783 -21.653,2.694 -39.601,32.426 -45.366,68.197 -2.1381,13.274 -3.3778,24.385 -4.8251,33.478 11.819,-4.2202 17.054,-8.4334 20.199,-13.622 -1.4133,4.9346 -2.4735,9.6189 -3.1843,14.088 9.669,-1.7142 16.683,-6.4643 19.195,-15.137 1.0169,-3.5118 2.2683,-6.4314 3.5666,-8.8552 2.9697,1.0574 6.8225,0.99632 11.508,-0.15509 1.7792,4.2508 15.098,19.102 22.256,30.014 8.0821,12.322 20.229,21.742 24.231,22.255 2.0032,0.2573 2.619,-4.192 2.1733,-10.324 21.125,0.15038 42.235,0.27493 62.935,-0.42884 20.7,0.70377 41.811,0.57922 62.936,0.42884 -0.44686,6.1318 0.16772,10.581 2.1709,10.324 4.0018,-0.51343 16.149,-9.9326 24.23,-22.255 7.1579,-10.914 20.478,-25.764 22.256,-30.014 4.6855,1.1502 8.5395,1.2125 11.508,0.15509 1.2995,2.4238 2.5498,5.3434 3.5678,8.8552 2.5111,8.6731 9.5259,13.423 19.194,15.137 -0.70958,-4.4705 -1.7698,-9.1548 -3.1831,-14.088 3.1432,5.1884 8.3788,9.4016 20.198,13.622 -1.4473,-9.0926 -2.687,-20.204 -4.8251,-33.478 -5.7634,-35.771 -23.713,-65.503 -45.366,-68.197 -21.652,-2.6917 -5.3083,12.896 -0.72365,26.783 3.2171,12.896 -5.8842,28.885 -24.13,49.597 -6.4389,7.3091 -13.821,19.903 -21.395,25.265 -1.1599,0.82126 -11.056,-2.2664 -12.209,-3.8419 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;stroke:#21231e" /> + <g + id="g3535"> + <path + id="path556" + d="m 440.58,356.77 c -2.0361,1.7812 -8.7565,1.807 -17.956,2.3968 -14.818,0.52048 -23.397,-3.9536 -25.301,-13.446 5.5605,6.6288 12.191,9.908 19.725,8.041 10.164,-2.5178 15.978,-4.3248 18.296,-3.876 1.5622,0.55455 3.8434,3.3802 5.2356,6.8838 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path558" + d="m 422.64,359.67 -0.0352,-0.99397 -0.0141,0 0.85618,-0.054 0.8421,-0.0506 0.82451,-0.0482 0.81045,-0.047 0.79284,-0.0447 0.77643,-0.0435 0.75883,-0.0422 0.74124,-0.0423 0.72482,-0.0435 0.70489,-0.0422 0.68494,-0.0447 0.66735,-0.0447 0.64624,-0.047 0.62747,-0.0494 0.60402,-0.0517 0.58525,-0.0552 0.56297,-0.0576 0.54069,-0.0623 0.51722,-0.0657 0.49494,-0.0706 0.47031,-0.0752 0.44803,-0.0799 0.41989,-0.0858 0.39524,-0.0916 0.37063,-0.0986 0.34364,-0.1034 0.31315,-0.10926 0.28617,-0.11632 0.25804,-0.11984 0.22752,-0.12571 0.19822,-0.12924 0.16654,-0.13277 0.65445,0.74959 -0.24161,0.19151 -0.26623,0.17389 -0.28852,0.16096 -0.31198,0.14569 -0.33309,0.13511 -0.35772,0.12336 -0.37883,0.11515 -0.40112,0.10573 -0.42339,0.0987 -0.44568,0.0904 -0.4668,0.0845 -0.48908,0.0776 -0.50901,0.0729 -0.53131,0.0681 -0.55241,0.0623 -0.57469,0.0599 -0.59229,0.0552 -0.6134,0.0517 -0.63217,0.0494 -0.65093,0.0494 -0.67204,0.0447 -0.68964,0.0447 -0.70722,0.0423 -0.72482,0.0434 -0.74359,0.0423 -0.75884,0.0422 -0.77643,0.0435 -0.79284,0.0447 -0.80809,0.047 -0.82452,0.0482 -0.83975,0.0506 -0.85384,0.054 -0.0141,0 z m 0.0141,0 -0.0141,0 0.0317,-9.9e-4 -0.0176,9.9e-4 z m -24.952,-14.263 -0.76,0.6415 0.86673,-0.41826 0.19353,0.85063 0.22987,0.82125 0.26624,0.79071 0.30611,0.76015 0.34013,0.73315 0.38,0.70259 0.41519,0.67439 0.45272,0.64503 0.49025,0.618 0.52661,0.58744 0.56414,0.56161 0.60285,0.5334 0.63803,0.50638 0.6779,0.47702 0.71544,0.45116 0.75414,0.42179 0.79168,0.39477 0.8292,0.36774 0.86908,0.33837 0.90662,0.31135 0.94531,0.28197 0.98402,0.25379 1.0216,0.22675 1.0603,0.1962 1.0966,0.16802 1.1365,0.14098 1.1728,0.11045 1.2104,0.0823 1.2491,0.0529 1.2866,0.0235 1.323,-0.005 1.3605,-0.0329 0.0351,0.99397 -1.3816,0.0352 -1.3441,0.005 -1.3101,-0.0259 -1.2726,-0.0529 -1.2362,-0.0845 -1.201,-0.1128 -1.1646,-0.14333 -1.1271,-0.17271 -1.0908,-0.20327 -1.0567,-0.23379 -1.0169,-0.26318 -0.98285,-0.29373 -0.94414,-0.3231 -0.90895,-0.35481 -0.87143,-0.3842 -0.83389,-0.41591 -0.79637,-0.44764 -0.76001,-0.47701 -0.72012,-0.50991 -0.68261,-0.53928 -0.64506,-0.57101 -0.60402,-0.60155 -0.56649,-0.63209 -0.52544,-0.66265 -0.4879,-0.69436 -0.44568,-0.72374 -0.40581,-0.75428 -0.36593,-0.78249 -0.32487,-0.81185 -0.28501,-0.8424 -0.24395,-0.87062 -0.2029,-0.89997 0.86673,-0.41827 z m 19.225,7.8789 0.23927,0.96577 -0.72248,0.16448 -0.71779,0.13394 -0.71309,0.10338 -0.70839,0.074 -0.70137,0.0435 -0.69785,0.0154 -0.69315,-0.0154 -0.68494,-0.0435 -0.68143,-0.0716 -0.67439,-0.0986 -0.67087,-0.12806 -0.66266,-0.15391 -0.65562,-0.1821 -0.65093,-0.20679 -0.64506,-0.23498 -0.63803,-0.25966 -0.631,-0.2855 -0.6263,-0.31017 -0.6181,-0.33484 -0.61105,-0.35836 -0.60519,-0.38301 -0.59815,-0.40651 -0.59112,-0.42885 -0.58525,-0.45115 -0.57938,-0.47466 -0.57235,-0.49581 -0.56414,-0.51696 -0.55946,-0.53929 -0.55123,-0.55925 -0.54421,-0.57922 -0.53833,-0.5992 -0.5313,-0.62035 0.76,-0.6415 0.51723,0.6039 0.52426,0.58275 0.52779,0.56278 0.53481,0.5428 0.54069,0.52049 0.54537,0.5005 0.55124,0.47702 0.55593,0.45587 0.5618,0.4347 0.56766,0.41005 0.57234,0.39005 0.57705,0.36423 0.5829,0.3419 0.58761,0.3184 0.59345,0.29372 0.59816,0.2714 0.60284,0.24556 0.60753,0.22087 0.61341,0.19505 0.62043,0.17036 0.62279,0.14686 0.62864,0.11867 0.63452,0.094 0.6392,0.0669 0.64506,0.041 0.65093,0.013 0.65563,-0.013 0.66148,-0.041 0.66853,-0.0694 0.67321,-0.0987 0.67791,-0.12689 0.68494,-0.15508 z m 18.581,-3.8619 -0.33074,0.93757 0.0716,0.02 -0.19352,-0.0293 -0.2205,-0.02 -0.24395,-0.009 -0.26858,9.9e-4 -0.29439,0.0153 -0.31784,0.0247 -0.3413,0.0364 -0.36476,0.047 -0.38703,0.0588 -0.41285,0.0693 -0.43395,0.0799 -0.45741,0.0904 -0.48087,0.0999 -0.50433,0.11045 -0.52661,0.11866 -0.55124,0.12807 -0.57352,0.13746 -0.59815,0.14451 -0.62161,0.15392 -0.64507,0.16213 -0.66852,0.16918 -0.69316,0.17506 -0.71777,0.18447 -0.74242,0.19033 -0.76587,0.19621 -0.79051,0.20325 -0.81512,0.20914 -0.84093,0.21501 -0.86439,0.2197 -0.8902,0.22558 -0.91599,0.22911 -0.94063,0.23381 -0.23926,-0.96578 0.94062,-0.2338 0.91365,-0.22911 0.88785,-0.22557 0.86439,-0.21972 0.83859,-0.21266 0.81513,-0.20912 0.7905,-0.20325 0.76587,-0.19623 0.74241,-0.19033 0.71779,-0.18446 0.69549,-0.1774 0.67087,-0.16919 0.64742,-0.16213 0.62396,-0.15392 0.60284,-0.14686 0.57821,-0.13747 0.55593,-0.13041 0.536,-0.12101 0.51136,-0.11045 0.49025,-0.10221 0.46914,-0.0928 0.44803,-0.0823 0.42691,-0.0716 0.40581,-0.0611 0.38586,-0.0517 0.36711,-0.0388 0.34599,-0.0271 0.32957,-0.0153 0.31081,-0.004 0.29321,0.0117 0.27679,0.0247 0.26155,0.041 0.0716,0.02 z m -0.0715,-0.02 0.0341,0.007 0.0375,0.013 -0.0715,-0.02 z m 5.469,7.7473 -0.65445,-0.74958 -0.13488,0.55925 -0.12902,-0.31841 -0.13487,-0.31368 -0.13957,-0.31018 -0.14309,-0.30548 -0.14661,-0.29959 -0.15246,-0.29609 -0.15247,-0.28784 -0.15716,-0.28315 -0.16068,-0.27727 -0.16185,-0.27024 -0.16421,-0.26317 -0.16655,-0.25613 -0.16771,-0.24909 -0.16772,-0.23967 -0.17006,-0.23263 -0.17123,-0.22558 -0.1689,-0.21501 -0.17123,-0.20562 -0.16889,-0.19737 -0.16772,-0.18564 -0.16772,-0.1774 -0.1642,-0.16684 -0.1642,-0.1551 -0.16068,-0.14567 -0.15715,-0.13277 -0.15365,-0.12102 -0.15013,-0.10926 -0.14426,-0.0975 -0.1384,-0.0834 -0.1337,-0.0729 -0.12549,-0.0588 -0.11729,-0.047 0.33074,-0.93757 0.18062,0.0705 0.17945,0.0845 0.17828,0.0964 0.18061,0.10927 0.17945,0.12101 0.18062,0.13042 0.18179,0.14451 0.18296,0.15391 0.1818,0.16449 0.18296,0.17389 0.18297,0.18562 0.18413,0.19388 0.18414,0.20443 0.18296,0.21382 0.18297,0.22207 0.18297,0.23144 0.18061,0.23969 0.1818,0.24672 0.17944,0.25613 0.1771,0.26318 0.17593,0.27022 0.17358,0.27963 0.17123,0.28433 0.16772,0.29137 0.16655,0.29725 0.16185,0.30431 0.15717,0.31017 0.15598,0.3137 0.15013,0.32191 0.1466,0.32429 0.14192,0.33014 0.13604,0.33485 -0.13487,0.55925 z m 0.13487,-0.55925 0.13019,0.32779 -0.26506,0.23146 0.13487,-0.55925 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path560" + d="m 419.53,321.15 0.0856,1.5767 -0.041,9.9e-4 -0.0399,-9.9e-4 -0.0398,-0.004 -0.0387,-0.005 -0.0375,-0.006 -0.0387,-0.009 -0.0375,-0.0105 -0.0363,-0.0117 -0.0364,-0.0142 -0.0341,-0.0153 -0.034,-0.0176 -0.0329,-0.0188 -0.0329,-0.02 -0.0305,-0.0223 -0.0305,-0.0235 -0.0281,-0.0235 -0.0281,-0.0259 -0.0258,-0.0271 -0.0246,-0.0293 -0.0234,-0.0293 -0.0234,-0.0305 -0.02,-0.0329 -0.02,-0.0329 -0.0176,-0.0341 -0.0164,-0.0352 -0.0141,-0.0352 -0.0117,-0.0376 -0.0117,-0.0376 -0.008,-0.0388 -0.008,-0.0388 -0.005,-0.0388 -0.004,-0.041 -9.9e-4,-0.041 9.9e-4,-0.0399 0.004,-0.0388 0.004,-0.0388 0.007,-0.0388 0.008,-0.0388 0.0105,-0.0364 0.0129,-0.0376 0.0141,-0.0352 0.0153,-0.0352 0.0176,-0.034 0.0188,-0.0329 0.02,-0.0317 0.0222,-0.0317 0.0222,-0.0293 0.0246,-0.0293 0.0258,-0.0271 0.027,-0.0271 0.0293,-0.0247 0.0293,-0.0235 0.0305,-0.0223 0.0317,-0.0212 0.0341,-0.0188 0.0329,-0.0177 0.0352,-0.0164 0.0363,-0.0142 0.0375,-0.013 0.0375,-0.0105 0.0375,-0.009 0.0398,-0.007 0.0387,-0.006 0.041,-0.004 0,0.001 z m 15.272,3.9136 -0.53717,1.4839 -0.55358,-0.20208 -0.54537,-0.20091 -0.53834,-0.19738 -0.52895,-0.19621 -0.52309,-0.19269 -0.51489,-0.18916 -0.50666,-0.18563 -0.50081,-0.18211 -0.49377,-0.17741 -0.48674,-0.17389 -0.48087,-0.16801 -0.47499,-0.16213 -0.46797,-0.15626 -0.46328,-0.15157 -0.45741,-0.14333 -0.45154,-0.13864 -0.44686,-0.12924 -0.441,-0.12336 -0.4363,-0.11515 -0.43277,-0.10574 -0.42692,-0.0987 -0.4234,-0.0893 -0.41988,-0.0799 -0.41636,-0.0716 -0.41168,-0.0611 -0.40931,-0.0505 -0.40464,-0.04 -0.40346,-0.0305 -0.39993,-0.0188 -0.39761,-0.007 -0.39642,0.004 -0.39407,0.0153 -0.0856,-1.5767 0.44216,-0.0176 0.44334,-0.004 0.44217,0.008 0.44333,0.0224 0.44334,0.0329 0.44451,0.0435 0.44568,0.0564 0.44686,0.0657 0.4492,0.0764 0.4492,0.0858 0.45272,0.0952 0.45271,0.10457 0.45742,0.11162 0.45741,0.12101 0.46211,0.12806 0.46562,0.13629 0.46797,0.14216 0.47148,0.14922 0.47618,0.15509 0.48086,0.16095 0.48321,0.16566 0.49025,0.17153 0.49378,0.17507 0.49963,0.17977 0.50432,0.18445 0.51019,0.18682 0.51606,0.19032 0.52309,0.19269 0.52896,0.19621 0.53716,0.19738 0.54303,0.19856 0.55007,0.20091 -0.002,-9.9e-4 z m 8.862,2.5907 0.23691,1.5614 -0.25098,0.0259 -0.25685,0.005 -0.26272,-0.0117 -0.27445,-0.0259 -0.28384,-0.0376 -0.29555,-0.0505 -0.30728,-0.0588 -0.31667,-0.0693 -0.32723,-0.0764 -0.33426,-0.0857 -0.3413,-0.0916 -0.34834,-0.0986 -0.35185,-0.10339 -0.35538,-0.10927 -0.35771,-0.11161 -0.35773,-0.11631 -0.35888,-0.11748 -0.35421,-0.11986 -0.35068,-0.121 -0.34599,-0.12102 -0.34012,-0.11867 -0.33074,-0.11984 -0.32137,-0.11514 -0.31081,-0.11396 -0.2979,-0.11045 -0.28382,-0.10456 -0.26859,-0.0999 -0.25099,-0.094 -0.23222,-0.0857 -0.21112,-0.0799 -0.19,-0.0693 -0.16537,-0.0599 0.53716,-1.4851 0.17124,0.0634 0.19353,0.0716 0.21346,0.0799 0.23221,0.0858 0.251,0.094 0.26623,0.0999 0.28148,0.10339 0.29556,0.10927 0.30612,0.11162 0.31784,0.11513 0.32606,0.11632 0.33308,0.11866 0.33896,0.11868 0.34364,0.1163 0.34599,0.11749 0.34716,0.11514 0.34834,0.11162 0.34481,0.10809 0.34248,0.10457 0.3366,0.0999 0.32958,0.0928 0.32253,0.0869 0.31081,0.0787 0.29907,0.0706 0.28501,0.0623 0.26975,0.0529 0.25099,0.041 0.2287,0.0317 0.20525,0.0188 0.1771,0.008 0.14309,-0.002 0.10438,-0.0105 -9.9e-4,-9.9e-4 z m 0.23691,1.5603 -0.23691,-1.5603 0.0399,-0.006 0.0399,-0.002 0.0398,-9.9e-4 0.0399,9.9e-4 0.0387,0.002 0.0387,0.006 0.0375,0.007 0.0387,0.008 0.0363,0.0105 0.0363,0.0118 0.0352,0.0142 0.0351,0.0153 0.0341,0.0176 0.0329,0.0188 0.0317,0.02 0.0317,0.0212 0.0293,0.0235 0.0293,0.0235 0.027,0.0271 0.027,0.0271 0.0246,0.0293 0.0246,0.0293 0.0223,0.0305 0.0211,0.0329 0.0188,0.0329 0.0176,0.034 0.0164,0.0364 0.0141,0.0364 0.0117,0.0364 0.0117,0.0388 0.009,0.0387 0.007,0.04 0.005,0.0399 0.004,0.0399 0,0.041 0,0.0388 -0.004,0.0388 -0.005,0.0388 -0.007,0.0388 -0.008,0.0376 -0.0105,0.0364 -0.0129,0.0364 -0.0129,0.0352 -0.0164,0.0352 -0.0164,0.034 -0.0188,0.0329 -0.02,0.0329 -0.0223,0.0305 -0.0222,0.0293 -0.0246,0.0294 -0.0258,0.0271 -0.027,0.0271 -0.0293,0.0259 -0.0293,0.0235 -0.0317,0.0223 -0.0317,0.0212 -0.0329,0.0188 -0.0351,0.0176 -0.0351,0.0164 -0.0364,0.0142 -0.0375,0.0117 -0.0387,0.0117 -0.0387,0.009 -0.0399,0.007 0,-0.001 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path562" + d="m 467.17,336.71 0.19235,-1.1679 0.0293,0.006 0.0293,0.007 0.0281,0.008 0.0281,0.009 0.0282,0.0117 0.0258,0.0117 0.0258,0.0142 0.0246,0.0142 0.0234,0.0165 0.0234,0.0164 0.0222,0.0188 0.0222,0.0188 0.0188,0.02 0.02,0.02 0.0176,0.0223 0.0164,0.0223 0.0164,0.0235 0.0153,0.0247 0.0129,0.0247 0.0129,0.0259 0.0117,0.0259 0.009,0.0271 0.008,0.0281 0.008,0.0271 0.006,0.0281 0.005,0.0293 0.004,0.0293 0.002,0.0293 0,0.0293 -9.9e-4,0.0293 -0.002,0.0305 -0.005,0.0293 -0.006,0.0305 -0.007,0.0293 -0.008,0.0281 -0.009,0.0282 -0.0117,0.0271 -0.0117,0.0271 -0.0141,0.0259 -0.0141,0.0247 -0.0164,0.0235 -0.0164,0.0235 -0.0176,0.0223 -0.02,0.0212 -0.02,0.02 -0.02,0.0188 -0.0222,0.0188 -0.0222,0.0165 -0.0234,0.0165 -0.0246,0.0142 -0.0246,0.0142 -0.0258,0.0117 -0.0258,0.0117 -0.027,0.009 -0.027,0.009 -0.0282,0.007 -0.0281,0.006 -0.0282,0.005 -0.0293,0.004 -0.0293,0.002 -0.0293,9.9e-4 -0.0305,-9.9e-4 -0.0293,-0.004 -0.0305,-0.004 -9.9e-4,0 z m -9.8613,-2.0725 0.31784,-1.142 0.21228,0.0588 0.21581,0.0599 0.21815,0.0588 0.22167,0.0587 0.22519,0.0588 0.22987,0.0599 0.23222,0.0599 0.2381,0.0588 0.24277,0.0599 0.24748,0.0599 0.25333,0.0599 0.2592,0.0611 0.26507,0.0611 0.27209,0.0611 0.27915,0.0611 0.28616,0.0634 0.29439,0.0623 0.30142,0.0634 0.30963,0.0634 0.31785,0.0646 0.3284,0.0646 0.33661,0.0657 0.34598,0.0657 0.35538,0.0669 0.3671,0.0681 0.37766,0.0694 0.38704,0.0693 0.39994,0.0694 0.40932,0.0716 0.42223,0.0716 0.4363,0.0729 0.44686,0.074 -0.19235,1.169 -0.45037,-0.074 -0.43748,-0.074 -0.42575,-0.0729 -0.41283,-0.0717 -0.40229,-0.0705 -0.39173,-0.0705 -0.38001,-0.0694 -0.36944,-0.0681 -0.36124,-0.0669 -0.34951,-0.0681 -0.3413,-0.0669 -0.33074,-0.0646 -0.32254,-0.0657 -0.31432,-0.0646 -0.30611,-0.0634 -0.29791,-0.0634 -0.29086,-0.0634 -0.28266,-0.0623 -0.27679,-0.0634 -0.26976,-0.0611 -0.26389,-0.0623 -0.2592,-0.0611 -0.25216,-0.0611 -0.24748,-0.0611 -0.2416,-0.0599 -0.23692,-0.0599 -0.23339,-0.0611 -0.22988,-0.0599 -0.22519,-0.0611 -0.22284,-0.0588 -0.21815,-0.0599 -0.21698,-0.0599 10e-4,0 z m 0.31784,-1.142 -0.31784,1.142 -0.0293,-0.009 -0.0281,-0.009 -0.027,-0.0129 -0.027,-0.0129 -0.0258,-0.0142 -0.0246,-0.0153 -0.0246,-0.0154 -0.0222,-0.0177 -0.0222,-0.0188 -0.0211,-0.02 -0.02,-0.02 -0.0188,-0.0223 -0.0188,-0.0212 -0.0164,-0.0235 -0.0164,-0.0235 -0.0141,-0.0247 -0.0129,-0.0247 -0.0129,-0.0259 -0.0105,-0.0259 -0.009,-0.0271 -0.009,-0.0283 -0.007,-0.0271 -0.006,-0.0281 -0.004,-0.0282 -0.004,-0.0293 -9.9e-4,-0.0283 0,-0.0293 9.9e-4,-0.0293 0.002,-0.0293 0.005,-0.0293 0.006,-0.0293 0.007,-0.0293 0.009,-0.0293 0.009,-0.0282 0.0117,-0.0271 0.0129,-0.0271 0.0141,-0.0259 0.0153,-0.0247 0.0164,-0.0247 0.0176,-0.0223 0.0188,-0.0223 0.0188,-0.0212 0.0211,-0.02 0.0212,-0.0188 0.0222,-0.0188 0.0234,-0.0164 0.0234,-0.0164 0.0234,-0.0142 0.0258,-0.013 0.0258,-0.013 0.0258,-0.0105 0.027,-0.009 0.027,-0.009 0.0281,-0.007 0.0281,-0.006 0.0281,-0.005 0.0281,-0.002 0.0293,-9.9e-4 0.0293,0 0.0293,9.9e-4 0.0293,0.002 0.0293,0.005 0.0293,0.006 0.0293,0.007 9.9e-4,0 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path564" + d="m 431.54,331.89 -0.76938,1.3782 0,0 -0.39174,-0.23029 -0.38118,-0.24554 -0.36945,-0.25848 -0.35888,-0.27023 -0.34717,-0.28198 -0.33778,-0.29255 -0.3284,-0.30313 -0.31783,-0.31252 -0.30729,-0.32074 -0.29908,-0.32898 -0.29087,-0.33484 -0.28265,-0.34308 -0.27328,-0.34659 -0.26623,-0.35247 -0.25803,-0.35717 -0.25216,-0.35952 -0.24513,-0.36423 -0.23808,-0.36538 -0.23106,-0.36657 -0.22635,-0.36657 -0.2205,-0.36775 -0.21463,-0.36657 -0.20994,-0.36657 -0.20525,-0.36304 -0.20056,-0.3607 -0.19704,-0.35834 -0.19118,-0.35483 -0.18882,-0.34893 -0.18531,-0.34425 -0.18062,-0.33719 -0.17945,-0.33015 -0.17475,-0.32428 1.3816,-0.75663 0.17827,0.32779 0.18062,0.33367 0.18179,0.33837 0.18414,0.34308 0.18766,0.3466 0.18882,0.34894 0.19235,0.3513 0.19704,0.35365 0.19938,0.35364 0.20408,0.35482 0.20642,0.35364 0.21228,0.35365 0.21581,0.35129 0.22049,0.34894 0.22637,0.34543 0.23104,0.34307 0.23574,0.33719 0.24161,0.33368 0.2463,0.32661 0.25217,0.32077 0.25919,0.31486 0.26507,0.30548 0.27093,0.29843 0.27796,0.29019 0.28501,0.27963 0.29203,0.27023 0.29908,0.25848 0.30494,0.24907 0.31432,0.23616 0.3202,0.22441 0.32839,0.21148 0.33778,0.19856 0,0 9.9e-4,-9.9e-4 z m 7.6071,-5.1637 1.3898,0.74606 -0.23691,0.43237 -0.24278,0.41943 -0.2463,0.40886 -0.25334,0.39831 -0.25802,0.38418 -0.26272,0.37245 -0.26741,0.35952 -0.27328,0.34424 -0.27679,0.33133 -0.28265,0.31722 -0.28618,0.30195 -0.29087,0.2855 -0.29555,0.2714 -0.30026,0.25378 -0.30376,0.23732 -0.30963,0.22089 -0.31433,0.20091 -0.31784,0.18329 -0.32371,0.16331 -0.32839,0.14217 -0.33192,0.121 -0.33661,0.0987 -0.3413,0.0752 -0.34364,0.0494 -0.346,0.0247 -0.34832,-0.002 -0.34834,-0.0293 -0.34717,-0.0588 -0.34481,-0.0858 -0.34013,-0.11396 -0.33661,-0.14216 -0.33074,-0.17037 0.76938,-1.3782 0.22871,0.11748 0.22636,0.0964 0.22518,0.0752 0.22285,0.0552 0.22401,0.0376 0.22284,0.0188 0.2252,0.002 0.22753,-0.0165 0.23105,-0.0341 0.23222,-0.0506 0.23692,-0.0693 0.23926,-0.0881 0.24278,-0.10574 0.24512,-0.12336 0.24864,-0.14335 0.24982,-0.15978 0.251,-0.17858 0.25215,-0.19621 0.25217,-0.21384 0.25216,-0.23145 0.25216,-0.24791 0.24982,-0.26435 0.24981,-0.27963 0.24748,-0.29607 0.24513,-0.31018 0.24277,-0.32544 0.24044,-0.33954 0.23574,-0.35248 0.2334,-0.36657 0.22988,-0.37949 0.22518,-0.39124 0.2205,-0.40299 -9.9e-4,9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path566" + d="m 429.59,330.91 -2.1897,-2.1935 c -1.0673,-1.3511 -0.45037,-3.1511 1.8531,-5.401 1.6842,0.73078 3.0318,1.2936 4.3806,1.8563 -0.8984,3.0371 -2.2472,4.951 -4.044,5.7382 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path568" + d="m 423.26,412.95 -0.39056,1.1185 -0.0281,-0.0105 -0.027,-0.0129 -0.0281,-0.013 -0.0258,-0.0142 -0.0246,-0.0164 -0.0234,-0.0164 -0.0234,-0.0188 -0.0212,-0.0176 -0.0211,-0.02 -0.02,-0.0212 -0.0188,-0.0212 -0.0176,-0.0223 -0.0153,-0.0235 -0.0153,-0.0235 -0.0141,-0.0247 -0.0129,-0.0259 -0.0129,-0.0259 -0.0105,-0.0271 -0.008,-0.0271 -0.008,-0.0271 -0.007,-0.0281 -0.005,-0.0283 -0.005,-0.0281 -10e-4,-0.0283 -9.9e-4,-0.0293 0,-0.0293 0.002,-0.0283 0.002,-0.0293 0.005,-0.0294 0.007,-0.0293 0.007,-0.0293 0.009,-0.0282 0.0105,-0.0281 0.0129,-0.0283 0.0129,-0.0271 0.0141,-0.0259 0.0164,-0.0247 0.0164,-0.0235 0.0176,-0.0235 0.0188,-0.0223 0.0199,-0.0212 0.0212,-0.0188 0.0212,-0.0188 0.0222,-0.0177 0.0234,-0.0163 0.0234,-0.0153 0.0246,-0.0141 0.0246,-0.0129 0.0258,-0.0117 0.027,-0.0105 0.027,-0.009 0.027,-0.008 0.0282,-0.006 0.0281,-0.006 0.0281,-0.004 0.0282,-0.002 0.0293,-9.9e-4 0.0293,9.9e-4 0.0281,9.9e-4 0.0293,0.004 0.0293,0.005 0.0293,0.006 0.0293,0.008 0.0293,0.008 0,0 z m 23.873,-3.5282 0.8292,0.84475 -0.62513,0.59333 -0.6392,0.55926 -0.6521,0.52752 -0.66501,0.49463 -0.67673,0.46057 -0.68964,0.42884 -0.70136,0.39595 -0.71309,0.36539 -0.72248,0.33249 -0.73537,0.30078 -0.74476,0.27022 -0.75415,0.23969 -0.7647,0.20913 -0.77525,0.17741 -0.78346,0.14921 -0.79285,0.11867 -0.79988,0.0904 -0.80926,0.0599 -0.81748,0.0329 -0.82452,0.004 -0.83155,-0.0235 -0.83976,-0.0505 -0.84562,-0.0787 -0.85266,-0.10339 -0.8597,-0.13041 -0.86556,-0.15744 -0.87143,-0.18211 -0.87729,-0.20678 -0.88199,-0.23263 -0.88901,-0.25613 -0.89254,-0.2808 -0.89841,-0.3043 0.39056,-1.1185 0.87378,0.29608 0.86791,0.27375 0.86087,0.24791 0.855,0.2244 0.84798,0.20091 0.84093,0.17623 0.83389,0.1504 0.82452,0.1257 0.81865,0.10105 0.81044,0.074 0.80105,0.0482 0.79402,0.0235 0.78346,-0.005 0.77642,-0.0305 0.76705,-0.0576 0.75648,-0.0846 0.74829,-0.11279 0.73772,-0.13981 0.72951,-0.16802 0.71895,-0.19621 0.70958,-0.2244 0.69902,-0.25261 0.68846,-0.28314 0.67908,-0.31254 0.66852,-0.34189 0.65797,-0.37127 0.64742,-0.40417 0.63686,-0.43353 0.62629,-0.46409 0.61457,-0.49815 0.6052,-0.52871 0.59229,-0.5616 0,-0.001 z m 2.8887,-2.8668 0.83506,0.83889 -0.0856,0.0857 -0.0856,0.0846 -0.0868,0.0869 -0.0856,0.0858 -0.088,0.0881 -0.0868,0.0857 -0.0868,0.0869 -0.088,0.0881 -0.0892,0.0869 -0.088,0.0881 -0.088,0.0893 -0.0892,0.0881 -0.0892,0.0893 -0.0903,0.0893 -0.0903,0.0893 -0.0892,0.0893 -0.0915,0.0904 -0.0904,0.0893 -0.0915,0.0905 -0.0903,0.0916 -0.0926,0.0905 -0.0926,0.0916 -0.0927,0.0904 -0.0926,0.0928 -0.0926,0.0916 -0.0938,0.0928 -0.0938,0.0928 -0.0938,0.0928 -0.095,0.0928 -0.0938,0.094 -0.095,0.0928 -0.0961,0.0952 -0.8292,-0.84475 0.0962,-0.094 0.095,-0.094 0.0938,-0.0928 0.0938,-0.0928 0.0938,-0.0928 0.0938,-0.0928 0.0938,-0.0916 0.0926,-0.0916 0.0926,-0.0916 0.0926,-0.0916 0.0915,-0.0904 0.0915,-0.0916 0.0914,-0.0904 0.0915,-0.0904 0.0892,-0.0893 0.0904,-0.0893 0.0915,-0.0904 0.0892,-0.0893 0.0892,-0.0881 0.0892,-0.0893 0.0892,-0.0893 0.0892,-0.0881 0.088,-0.0881 0.088,-0.0869 0.0868,-0.0881 0.0892,-0.0869 0.0868,-0.0869 0.0856,-0.0858 0.0856,-0.0857 0.0868,-0.0869 0.0856,-0.0857 0.0856,-0.0846 z m 0.83506,0.83889 -0.83506,-0.83889 0.0222,-0.0212 0.0222,-0.02 0.0234,-0.0177 0.0246,-0.0176 0.0246,-0.0154 0.0258,-0.0141 0.0258,-0.0129 0.027,-0.0117 0.027,-0.009 0.027,-0.009 0.027,-0.007 0.0281,-0.006 0.0281,-0.005 0.0281,-0.004 0.0281,-0.002 0.0281,0 0.0281,0 0.0281,0.002 0.0281,0.004 0.0281,0.005 0.0282,0.006 0.0281,0.008 0.027,0.008 0.027,0.0105 0.0258,0.0117 0.0258,0.013 0.0258,0.0142 0.0246,0.0153 0.0246,0.0177 0.0234,0.0188 0.0222,0.0188 0.0222,0.0212 0.0212,0.0223 0.02,0.0235 0.0176,0.0235 0.0164,0.0235 0.0164,0.0259 0.0141,0.0259 0.0129,0.0259 0.0117,0.0259 0.009,0.0271 0.009,0.0271 0.007,0.0282 0.006,0.0271 0.005,0.0281 0.004,0.0282 0.002,0.0281 0,0.0293 0,0.0282 -0.002,0.0283 -0.004,0.0281 -0.005,0.0283 -0.006,0.0271 -0.008,0.0282 -0.008,0.0271 -0.0105,0.0271 -0.0117,0.0271 -0.0129,0.0259 -0.0141,0.0259 -0.0153,0.0247 -0.0176,0.0235 -0.0188,0.0247 -0.02,0.0223 -0.02,0.0223 9.9e-4,0 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path570" + d="m 452.17,401.28 -1.1717,-0.16213 0.005,-0.0293 0.007,-0.0293 0.008,-0.0293 0.008,-0.0281 0.0105,-0.0271 0.0129,-0.0271 0.0129,-0.0259 0.0141,-0.0259 0.0153,-0.0247 0.0153,-0.0235 0.0176,-0.0223 0.0188,-0.0212 0.02,-0.0212 0.02,-0.02 0.0223,-0.0188 0.0211,-0.0176 0.0234,-0.0165 0.0234,-0.0154 0.0246,-0.0141 0.0246,-0.013 0.0258,-0.0117 0.027,-0.0117 0.027,-0.009 0.0281,-0.008 0.0281,-0.007 0.0281,-0.006 0.0281,-0.004 0.0293,-0.002 0.0293,-9.9e-4 0.0305,9.9e-4 0.0293,9.9e-4 0.0305,0.004 0.0293,0.005 0.0293,0.007 0.0293,0.007 0.0281,0.009 0.027,0.0105 0.027,0.0117 0.0258,0.0129 0.0258,0.0142 0.0234,0.0154 0.0246,0.0165 0.0222,0.0176 0.0211,0.0188 0.0212,0.02 0.02,0.02 0.0176,0.0212 0.0176,0.0223 0.0176,0.0235 0.0153,0.0235 0.0141,0.0235 0.0129,0.0259 0.0117,0.0259 0.0105,0.0271 0.0105,0.0271 0.008,0.0271 0.007,0.0281 0.005,0.0281 0.005,0.0293 0.002,0.0293 9.9e-4,0.0293 -9.9e-4,0.0293 -9.9e-4,0.0305 -0.004,0.0293 9.9e-4,9.9e-4 z m -5.5077,15.927 0.2979,1.1467 -0.68846,-0.81421 0.2076,-0.47231 0.20524,-0.47231 0.20056,-0.47348 0.19703,-0.47349 0.19353,-0.47466 0.18882,-0.47584 0.18649,-0.47818 0.18179,-0.47937 0.17828,-0.48052 0.17358,-0.48289 0.17123,-0.48641 0.16538,-0.48757 0.16302,-0.49113 0.15834,-0.49462 0.15363,-0.49817 0.1513,-0.50051 0.14661,-0.5052 0.14192,-0.50873 0.1384,-0.51344 0.13487,-0.51812 0.13136,-0.52284 0.12549,-0.52752 0.12198,-0.53341 0.11846,-0.53929 0.11377,-0.54398 0.11024,-0.54984 0.10439,-0.55691 0.10086,-0.56277 0.0973,-0.56866 0.0926,-0.57687 0.0892,-0.58276 0.0833,-0.59097 1.1717,0.16096 -0.0856,0.60155 -0.0892,0.5945 -0.095,0.58745 -0.0985,0.58041 -0.10321,0.57335 -0.1079,0.56747 -0.1126,0.56042 -0.1161,0.55573 -0.11964,0.54986 -0.12549,0.54398 -0.12902,0.53929 -0.1337,0.5334 -0.13722,0.52869 -0.14074,0.52401 -0.14544,0.52049 -0.15012,0.51578 -0.15364,0.51108 -0.15834,0.50873 -0.16068,0.50521 -0.16654,0.50051 -0.17007,0.49934 -0.17358,0.49463 -0.1771,0.49346 -0.18179,0.48993 -0.18532,0.48876 -0.18999,0.48641 -0.19236,0.48406 -0.19703,0.48406 -0.20056,0.4817 -0.2029,0.48054 -0.20877,0.48054 -0.21111,0.47936 -0.68846,-0.81538 z m -0.39056,0.33249 1.0802,0.48171 -0.0129,0.0281 -0.0141,0.0259 -0.0153,0.0259 -0.0164,0.0247 -0.0176,0.0235 -0.0188,0.0223 -0.0199,0.0212 -0.0212,0.0212 -0.0211,0.0188 -0.0222,0.0176 -0.0234,0.0176 -0.0234,0.0154 -0.0246,0.0152 -0.0246,0.013 -0.0258,0.0117 -0.027,0.0105 -0.027,0.0105 -0.027,0.008 -0.0281,0.007 -0.027,0.005 -0.0281,0.005 -0.0281,0.002 -0.0293,0.002 -0.0281,0 -0.0282,-9.9e-4 -0.0293,-0.002 -0.0281,-0.005 -0.0293,-0.005 -0.0282,-0.008 -0.0293,-0.008 -0.0281,-0.0105 -0.0281,-0.0118 -0.027,-0.0129 -0.027,-0.0142 -0.0258,-0.0154 -0.0246,-0.0164 -0.0234,-0.0176 -0.0222,-0.0188 -0.0211,-0.02 -0.0211,-0.0212 -0.0188,-0.0212 -0.0176,-0.0223 -0.0176,-0.0235 -0.0153,-0.0235 -0.0153,-0.0247 -0.0129,-0.0247 -0.0117,-0.0259 -0.0105,-0.0271 -0.009,-0.0271 -0.009,-0.0271 -0.006,-0.0282 -0.006,-0.0271 -0.005,-0.0282 -0.002,-0.0281 -9.9e-4,-0.0293 -10e-4,-0.0282 10e-4,-0.0283 0.002,-0.0293 0.005,-0.0281 0.006,-0.0293 0.007,-0.0282 0.008,-0.0293 0.0105,-0.0282 0.0117,-0.0281 0,-9.9e-4 z m 15.249,-9.5355 0.96994,0.6791 -0.31901,0.44294 -0.33075,0.43353 -0.34364,0.42296 -0.35537,0.41475 -0.3671,0.40534 -0.37766,0.39594 -0.38939,0.38537 -0.40111,0.37832 -0.41167,0.36656 -0.4234,0.35952 -0.43395,0.34894 -0.44451,0.34073 -0.45506,0.33133 -0.46563,0.32192 -0.47618,0.31369 -0.48673,0.30431 -0.49611,0.29489 -0.5055,0.28785 -0.51605,0.27728 -0.52544,0.27023 -0.53482,0.25965 -0.54303,0.25261 -0.55358,0.24321 -0.56297,0.23498 -0.57118,0.22675 -0.58056,0.21971 -0.58877,0.2103 -0.59815,0.20208 -0.60637,0.19269 -0.61457,0.18681 -0.62278,0.17741 -0.63099,0.16918 -0.2979,-1.1455 0.61456,-0.16566 0.60519,-0.17271 0.59698,-0.17976 0.58878,-0.18916 0.57821,-0.19503 0.57118,-0.20325 0.56062,-0.21149 0.55124,-0.21854 0.54303,-0.22675 0.53247,-0.23498 0.52309,-0.24203 0.51371,-0.25026 0.50432,-0.25847 0.49377,-0.2667 0.48322,-0.27376 0.47382,-0.28198 0.46328,-0.29137 0.45272,-0.29842 0.44217,-0.30548 0.43278,-0.31487 0.42222,-0.32309 0.4105,-0.33016 0.39995,-0.33955 0.38938,-0.34776 0.37883,-0.35483 0.3671,-0.36421 0.35655,-0.37245 0.34364,-0.38067 0.33427,-0.39007 0.32253,-0.39829 0.3108,-0.40652 0.29908,-0.41473 0,-0.002 z m 0.96994,0.6791 -0.96994,-0.6791 0.0188,-0.0235 0.0188,-0.0235 0.02,-0.0223 0.0211,-0.0212 0.0212,-0.0188 0.0234,-0.0188 0.0234,-0.0177 0.0234,-0.0154 0.0246,-0.0154 0.0258,-0.0129 0.0258,-0.0117 0.0258,-0.0117 0.027,-0.009 0.027,-0.008 0.0281,-0.007 0.0281,-0.006 0.0281,-0.004 0.0281,-0.004 0.0281,-9.9e-4 0.0281,0 0.0281,9.9e-4 0.0293,0.002 0.0281,0.004 0.0281,0.006 0.0281,0.007 0.027,0.007 0.0281,0.009 0.027,0.0117 0.027,0.013 0.027,0.0129 0.0258,0.0165 0.0246,0.0165 0.0246,0.0176 0.0234,0.02 0.0211,0.0188 0.0222,0.0212 0.0188,0.0223 0.0188,0.0223 0.0176,0.0235 0.0153,0.0247 0.0141,0.0247 0.0141,0.0247 0.0117,0.0259 0.0117,0.0271 0.009,0.0271 0.008,0.0271 0.006,0.0271 0.006,0.0281 0.005,0.0282 0.002,0.0282 0.002,0.0281 0,0.0281 -10e-4,0.0293 -0.002,0.0282 -0.004,0.0282 -0.006,0.0282 -0.007,0.0281 -0.008,0.0281 -0.009,0.0271 -0.0105,0.0271 -0.0129,0.0281 -0.0141,0.0259 -0.0153,0.0259 -0.0164,0.0259 0.001,-9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path572" + d="m 461.29,400.2 -1.1776,0.10809 -0.002,-0.0305 0,-0.0305 9.9e-4,-0.0293 0.002,-0.0293 0.005,-0.0293 0.005,-0.0281 0.007,-0.0281 0.008,-0.0282 0.009,-0.0271 0.0105,-0.0271 0.0117,-0.0259 0.0129,-0.0247 0.0141,-0.0247 0.0164,-0.0235 0.0164,-0.0235 0.0176,-0.0223 0.0188,-0.0212 0.02,-0.0212 0.02,-0.0188 0.0222,-0.0188 0.0222,-0.0177 0.0234,-0.0165 0.0234,-0.0153 0.0246,-0.0142 0.0258,-0.013 0.027,-0.0117 0.027,-0.0105 0.0281,-0.009 0.0282,-0.008 0.0293,-0.006 0.0293,-0.005 0.0305,-0.004 0.0305,-0.002 0.0293,0 0.0305,0 0.0293,0.004 0.0281,0.004 0.0293,0.006 0.0281,0.007 0.027,0.008 0.027,0.009 0.027,0.0105 0.0258,0.0117 0.0258,0.0129 0.0234,0.0142 0.0246,0.0153 0.0222,0.0176 0.0222,0.0176 0.0222,0.0177 0.02,0.02 0.02,0.0212 0.0188,0.0212 0.0176,0.0223 0.0153,0.0235 0.0153,0.0247 0.0141,0.0247 0.0129,0.0259 0.0129,0.0271 0.0105,0.0271 0.008,0.0282 0.008,0.0283 0.006,0.0293 0.006,0.0293 0.004,0.0293 9.9e-4,0 z m 4.4345,15.717 0.71309,0.9458 -0.84093,-0.13277 -0.28148,-0.41121 -0.27445,-0.41828 -0.2674,-0.42648 -0.26038,-0.43236 -0.25334,-0.43941 -0.2463,-0.44764 -0.23925,-0.45234 -0.2334,-0.46056 -0.22519,-0.46761 -0.21815,-0.47349 -0.21112,-0.48053 -0.20407,-0.48759 -0.19703,-0.49345 -0.19001,-0.50052 -0.18179,-0.50521 -0.17593,-0.51342 -0.16889,-0.51814 -0.16068,-0.52518 -0.15481,-0.53223 -0.14661,-0.53693 -0.13957,-0.5428 -0.13253,-0.54986 -0.1255,-0.55455 -0.11728,-0.5616 -0.11025,-0.56631 -0.10321,-0.57217 -0.0961,-0.57805 -0.0892,-0.5851 -0.0809,-0.58862 -0.0739,-0.59568 -0.0656,-0.60038 -0.0586,-0.60507 1.1764,-0.1081 0.0575,0.59099 0.0656,0.58392 0.0715,0.57922 0.0785,0.57336 0.0868,0.56747 0.0926,0.56161 0.10087,0.55572 0.10673,0.54985 0.11493,0.54398 0.12081,0.53928 0.12901,0.53223 0.13488,0.52519 0.14192,0.51931 0.14778,0.5146 0.15599,0.50638 0.16302,0.50052 0.17006,0.49462 0.17593,0.48877 0.18179,0.48052 0.19,0.47466 0.19704,0.46879 0.20291,0.46174 0.20994,0.45469 0.2158,0.44763 0.22284,0.44059 0.22987,0.43472 0.23576,0.42767 0.2416,0.41943 0.24865,0.41357 0.25568,0.40651 0.26154,0.39946 0.26859,0.39125 -0.84094,-0.13276 -9.9e-4,0.002 z m -0.12901,0.81303 0.96994,-0.67909 0.0164,0.0259 0.0152,0.0259 0.0141,0.0259 0.0117,0.0282 0.0117,0.0271 0.009,0.0271 0.008,0.0281 0.007,0.0282 0.005,0.0282 0.005,0.0282 0.002,0.0281 9.9e-4,0.0293 0,0.0281 -0.002,0.0282 -0.002,0.0282 -0.005,0.0281 -0.006,0.0281 -0.007,0.0271 -0.007,0.0271 -0.009,0.0271 -0.0117,0.0271 -0.0117,0.0259 -0.0141,0.0247 -0.0141,0.0247 -0.0164,0.0247 -0.0164,0.0235 -0.0188,0.0223 -0.02,0.0223 -0.0211,0.0212 -0.0222,0.0188 -0.0223,0.02 -0.0246,0.0176 -0.0246,0.0165 -0.027,0.0164 -0.0258,0.0129 -0.027,0.0129 -0.027,0.0117 -0.0282,0.009 -0.027,0.007 -0.0281,0.007 -0.0281,0.006 -0.0281,0.004 -0.0293,0.002 -0.0281,9.9e-4 -0.0281,0 -0.0281,-9.9e-4 -0.0281,-0.004 -0.0281,-0.004 -0.0281,-0.006 -0.0281,-0.007 -0.027,-0.008 -0.027,-0.009 -0.0258,-0.0117 -0.0258,-0.0117 -0.0258,-0.013 -0.0246,-0.0153 -0.0234,-0.0154 -0.0234,-0.0176 -0.0234,-0.0188 -0.0211,-0.0188 -0.0212,-0.0212 -0.0199,-0.0223 -0.0188,-0.0235 -0.0188,-0.0235 -9.9e-4,-9.9e-4 z m 7.6716,-12.607 1.147,0.28902 -0.14191,0.54047 -0.1513,0.53223 -0.16185,0.52282 -0.17007,0.51226 -0.18062,0.50168 -0.18765,0.4923 -0.19704,0.48171 -0.20525,0.4723 -0.21228,0.46173 -0.2205,0.45235 -0.22753,0.44176 -0.2334,0.43236 -0.24161,0.42178 -0.24746,0.4124 -0.25334,0.40299 -0.2592,0.39243 -0.26506,0.38301 -0.26858,0.37362 -0.27445,0.36422 -0.27914,0.35364 -0.28383,0.34424 -0.28735,0.33486 -0.29086,0.32543 -0.29439,0.31606 -0.29673,0.30548 -0.30025,0.29606 -0.3026,0.28668 -0.30493,0.27846 -0.30729,0.26788 -0.30963,0.25847 -0.30963,0.24908 -0.31082,0.24086 -0.71309,-0.94462 0.29205,-0.22559 0.29203,-0.23498 0.29086,-0.2432 0.28853,-0.2526 0.28735,-0.262 0.285,-0.27022 0.28383,-0.27964 0.28031,-0.28903 0.27796,-0.29725 0.27445,-0.30664 0.27093,-0.31605 0.26858,-0.32546 0.2639,-0.33484 0.25919,-0.34307 0.25451,-0.35364 0.25099,-0.36187 0.24513,-0.37245 0.23926,-0.38066 0.23457,-0.39125 0.22753,-0.39946 0.22284,-0.41005 0.21581,-0.41826 0.20876,-0.42884 0.20173,-0.43823 0.1947,-0.44764 0.18648,-0.45821 0.18062,-0.46761 0.17123,-0.47702 0.16185,-0.48759 0.15365,-0.49697 0.14426,-0.50639 0.13605,-0.51695 -0.002,-0.002 z m 1.147,0.28902 -1.147,-0.28902 0.008,-0.0293 0.009,-0.0282 0.0117,-0.0282 0.0117,-0.0271 0.0129,-0.0271 0.0153,-0.0247 0.0153,-0.0247 0.0176,-0.0235 0.0176,-0.0223 0.0188,-0.0223 0.02,-0.02 0.0211,-0.02 0.0211,-0.0188 0.0222,-0.0176 0.0234,-0.0164 0.0234,-0.0142 0.0246,-0.0142 0.0258,-0.0129 0.0258,-0.0117 0.0258,-0.0117 0.027,-0.008 0.0281,-0.008 0.0281,-0.006 0.0281,-0.006 0.0281,-0.004 0.0293,-0.002 0.0293,-9.9e-4 0.0293,9.9e-4 0.0293,0.002 0.0293,0.004 0.0293,0.005 0.0293,0.007 0.0293,0.007 0.0293,0.009 0.0281,0.0117 0.027,0.0117 0.0258,0.0141 0.0258,0.0142 0.0246,0.0165 0.0234,0.0165 0.0222,0.0176 0.0211,0.0188 0.0211,0.02 0.02,0.0212 0.0188,0.0212 0.0176,0.0223 0.0153,0.0235 0.0153,0.0235 0.0141,0.0247 0.0129,0.0259 0.0117,0.0259 0.0105,0.0259 0.009,0.0271 0.008,0.0282 0.006,0.0282 0.005,0.0281 0.005,0.0281 10e-4,0.0294 9.9e-4,0.0293 0,0.0293 -0.002,0.0293 -0.004,0.0293 -0.005,0.0293 -0.007,0.0305 -0.001,0.002 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path574" + d="m 405.91,317.77 c -16.619,1.7976 -15.826,12.669 -0.28969,28.043 2.9732,2.9408 3.9935,2.8468 4.6281,-0.21149 1.1083,-5.3434 7.0195,-8.5004 10.123,-4.4282 2.1123,2.7716 1.6396,4.3577 8.6768,3.3743 8.889,7.4583 16.126,12.704 4.4944,12.267 -5.1171,-0.19268 -9.0603,2.7916 -15.727,2.5307 1.9727,3.829 2.3258,4.2731 3.3907,4.5962 6.4624,1.2806 13.273,-2.7622 19.793,-1.5579 14.285,2.6365 -22.887,-38.633 -22.427,-40.263 1.174,-4.1533 -8.9359,-11.599 -12.662,-4.3507 z" + inkscape:connector-curvature="0" + style="fill:#edb92e" /> + <path + id="path576" + d="m 405.97,345.46 -0.69902,0.70728 0,0 -1.4203,-1.4346 -1.3347,-1.4099 -1.2467,-1.3817 -1.16,-1.3547 -1.072,-1.3241 -0.98402,-1.2971 -0.89488,-1.2666 -0.80575,-1.236 -0.71544,-1.2066 -0.6263,-1.1737 -0.53365,-1.142 -0.44216,-1.1126 -0.34834,-1.0786 -0.25568,-1.0468 -0.15951,-1.0139 -0.0622,-0.98104 0.0375,-0.94462 0.13957,-0.90938 0.24161,-0.86825 0.34598,-0.82596 0.44803,-0.77779 0.55007,-0.7296 0.64976,-0.67792 0.75063,-0.6227 0.84444,-0.57101 0.94298,-0.51695 1.0392,-0.46409 1.1377,-0.41121 1.2315,-0.35717 1.3312,-0.30547 1.4297,-0.25144 1.5282,-0.19738 0.10556,0.98927 -1.486,0.19268 -1.3804,0.24203 -1.2796,0.29373 -1.1752,0.34072 -1.072,0.38772 -0.96877,0.43354 -0.86792,0.47465 -0.76704,0.51697 -0.66852,0.55689 -0.57,0.59334 -0.47735,0.63326 -0.38705,0.6697 -0.29673,0.71081 -0.20876,0.75076 -0.12081,0.79425 -0.0329,0.83887 0.0551,0.88235 0.14544,0.92699 0.23691,0.97165 0.32723,1.0128 0.42105,1.0539 0.51019,1.0926 0.60285,1.1314 0.69198,1.169 0.78463,1.2031 0.87377,1.236 0.96526,1.2712 1.0532,1.303 1.1435,1.3335 1.2303,1.3629 1.3183,1.3934 1.4062,1.4205 0,0 z m 3.7918,0.041 0.97346,0.20209 -0.0634,0.2902 -0.0668,0.27022 -0.0692,0.25849 -0.0739,0.2432 -0.0797,0.22675 -0.0856,0.21384 -0.0915,0.19856 -0.10087,0.18681 -0.11142,0.17271 -0.12315,0.15861 -0.13723,0.14452 -0.15364,0.12571 -0.16772,0.10456 -0.18179,0.0799 -0.19234,0.0529 -0.19939,0.0247 -0.19939,-0.004 -0.19703,-0.0259 -0.19939,-0.0482 -0.1982,-0.0681 -0.19822,-0.0858 -0.20173,-0.10339 -0.20407,-0.12101 -0.20994,-0.13628 -0.21581,-0.15393 -0.22284,-0.16801 -0.23105,-0.18797 -0.23926,-0.20209 -0.24748,-0.22089 -0.25685,-0.23732 -0.26741,-0.25378 -0.27796,-0.27141 0.69902,-0.70728 0.26858,0.262 0.25568,0.24438 0.24513,0.22558 0.23339,0.20678 0.2205,0.18799 0.20993,0.16919 0.19939,0.15155 0.18531,0.13276 0.17476,0.1128 0.16185,0.0952 0.14544,0.0752 0.13487,0.0576 0.11845,0.0422 0.10087,0.0247 0.0892,0.0117 0.0727,9.9e-4 0.0587,-0.008 0.0516,-0.013 0.0504,-0.0235 0.0528,-0.0317 0.0551,-0.0459 0.0622,-0.0646 0.0645,-0.0835 0.0668,-0.10456 0.068,-0.12571 0.068,-0.14687 0.0668,-0.16918 0.0656,-0.18916 0.0645,-0.20796 0.0622,-0.23028 0.0598,-0.24908 0.0587,-0.2667 z m 11.005,-4.6291 -0.7905,0.6039 -0.27211,-0.32897 -0.285,-0.28902 -0.29204,-0.24909 -0.3026,-0.21266 -0.30963,-0.17741 -0.31784,-0.14333 -0.3237,-0.11044 -0.33075,-0.0799 -0.33543,-0.0482 -0.3413,-0.0188 -0.34482,0.0105 -0.34834,0.0401 -0.34951,0.0681 -0.35185,0.0962 -0.35068,0.12336 -0.34599,0.15039 -0.34482,0.17741 -0.33896,0.20208 -0.33191,0.22559 -0.32253,0.25142 -0.31433,0.27376 -0.30259,0.29608 -0.28969,0.31721 -0.27562,0.3372 -0.2592,0.356 -0.24161,0.37479 -0.22401,0.39359 -0.20407,0.40887 -0.18298,0.42297 -0.1595,0.44058 -0.13723,0.45233 -0.11024,0.46645 -0.97346,-0.20209 0.12431,-0.52283 0.15365,-0.50874 0.17827,-0.49228 0.20642,-0.47701 0.22753,-0.45822 0.25217,-0.44058 0.2721,-0.42178 0.29204,-0.40065 0.3108,-0.37949 0.32723,-0.35952 0.34247,-0.33368 0.35655,-0.31135 0.36944,-0.28667 0.38118,-0.26082 0.3929,-0.23499 0.40112,-0.2056 0.40932,-0.17624 0.41636,-0.14686 0.41989,-0.11515 0.42457,-0.0845 0.42809,-0.047 0.42925,-0.0154 0.42809,0.0235 0.42457,0.0622 0.41989,0.10104 0.41284,0.14099 0.40228,0.18329 0.39174,0.22205 0.37766,0.2667 0.36241,0.30783 0.34364,0.35012 0.32606,0.39242 z m 8.6005,3.2944 -0.63804,0.76369 0.38821,0.11161 -0.64506,0.0846 -0.60402,0.0716 -0.56531,0.0564 -0.52779,0.0423 -0.49259,0.0271 -0.45975,0.0142 -0.42809,0 -0.40229,-0.0154 -0.37297,-0.0281 -0.34833,-0.0422 -0.32606,-0.0564 -0.30611,-0.0716 -0.28383,-0.0857 -0.26623,-0.0999 -0.24983,-0.11397 -0.23221,-0.12923 -0.21699,-0.141 -0.20055,-0.15508 -0.18648,-0.16449 -0.17358,-0.17388 -0.16303,-0.18094 -0.15481,-0.18916 -0.14778,-0.1962 -0.1431,-0.20092 -0.13957,-0.20677 -0.14308,-0.21383 -0.14191,-0.21972 -0.14778,-0.22205 -0.15248,-0.23027 -0.16302,-0.23617 -0.17123,-0.24085 -0.18531,-0.24791 0.7905,-0.60389 0.19703,0.26435 0.18297,0.25731 0.17007,0.24789 0.1595,0.23733 0.15013,0.22912 0.14191,0.21735 0.13605,0.20443 0.13253,0.19503 0.12901,0.18212 0.12667,0.16801 0.12901,0.15625 0.12784,0.1457 0.13371,0.13158 0.13723,0.1222 0.14425,0.11043 0.15365,0.10105 0.16889,0.094 0.18179,0.0835 0.2029,0.0764 0.22285,0.0669 0.24746,0.0576 0.27211,0.0471 0.30142,0.0352 0.33308,0.0259 0.36241,0.0129 0.39761,0 0.4316,-0.0117 0.46679,-0.0271 0.50668,-0.0399 0.54654,-0.054 0.58761,-0.0693 0.63099,-0.0846 0.38821,0.11161 z m -0.38822,-0.11162 0.21932,-0.0305 0.1689,0.14217 -0.38822,-0.11162 z m 4.5448,13.258 0.0375,-0.99395 1.0216,0.0235 0.91014,-0.007 0.80222,-0.04 0.69433,-0.0681 0.58995,-0.0974 0.48438,-0.11983 0.38,-0.14099 0.27797,-0.15157 0.18179,-0.1492 0.10555,-0.14099 0.0539,-0.14569 0.0164,-0.17506 -0.0317,-0.22441 -0.0914,-0.27728 -0.15717,-0.32309 -0.22167,-0.36187 -0.28617,-0.39477 -0.34482,-0.42531 -0.40229,-0.45117 -0.45506,-0.47701 -0.50433,-0.49816 -0.55006,-0.52283 -0.59346,-0.54045 -0.63217,-0.56278 -0.66853,-0.5804 -0.70136,-0.5992 -0.73068,-0.618 -0.75648,-0.63326 -0.77996,-0.64855 -0.79871,-0.665 -0.81512,-0.67909 -0.8292,-0.69319 0.63803,-0.76369 0.82685,0.69319 0.81513,0.67674 0.79871,0.665 0.77994,0.65089 0.75884,0.63563 0.73538,0.62034 0.70605,0.60389 0.67556,0.58747 0.64155,0.56982 0.60519,0.55221 0.56414,0.53457 0.52309,0.51697 0.47618,0.49815 0.42809,0.48171 0.37766,0.46291 0.3237,0.44881 0.26624,0.43707 0.20642,0.42648 0.13839,0.42532 0.0575,0.42649 -0.0399,0.42414 -0.15247,0.40181 -0.26038,0.35247 -0.34598,0.28785 -0.4234,0.23146 -0.49729,0.18329 -0.57587,0.14333 -0.66031,0.10927 -0.75062,0.0752 -0.84446,0.0399 -0.94766,0.009 -1.0497,-0.0259 z m -15.267,1.8058 -0.88198,0.45587 0.46092,-0.72492 0.60168,0.0142 0.58759,-0.002 0.57353,-0.0188 0.56061,-0.034 0.54773,-0.0482 0.53481,-0.0599 0.52545,-0.074 0.51487,-0.0823 0.5055,-0.094 0.49611,-0.0999 0.48791,-0.10926 0.48321,-0.11514 0.47501,-0.11866 0.47031,-0.12455 0.46562,-0.12689 0.46093,-0.12806 0.45741,-0.12924 0.45624,-0.12807 0.45272,-0.12689 0.45389,-0.12335 0.4539,-0.11985 0.45272,-0.11396 0.45271,-0.10692 0.45742,-0.0999 0.45858,-0.0904 0.46093,-0.0799 0.4668,-0.0693 0.47031,-0.054 0.47735,-0.0423 0.48087,-0.0247 0.4879,-0.0105 0.49494,0.0105 -0.0375,0.99397 -0.45742,-0.008 -0.45272,0.008 -0.44803,0.0247 -0.44451,0.0376 -0.44216,0.0517 -0.43865,0.0646 -0.43747,0.0752 -0.43747,0.0881 -0.43865,0.0952 -0.43864,0.10457 -0.441,0.10926 -0.44216,0.11749 -0.44685,0.12103 -0.45037,0.12687 -0.4539,0.12807 -0.45975,0.12924 -0.46563,0.13041 -0.47266,0.1269 -0.47734,0.12689 -0.48908,0.12335 -0.49495,0.1175 -0.50432,0.11162 -0.51488,0.10455 -0.52427,0.0964 -0.53598,0.0869 -0.5489,0.0764 -0.56063,0.0646 -0.57352,0.0482 -0.58642,0.0364 -0.60167,0.0212 -0.61575,0.002 -0.63217,-0.0165 0.46094,-0.72491 z m -0.88198,0.45587 -0.39057,-0.75782 0.85149,0.0329 -0.46092,0.72492 z m 3.9279,3.8795 -0.19234,0.97752 -0.0481,-0.0129 -0.10556,-0.0329 -0.10907,-0.0364 -0.10673,-0.0399 -0.10439,-0.0435 -0.10555,-0.0494 -0.10205,-0.0529 -0.10437,-0.0599 -0.10204,-0.0681 -0.0985,-0.0716 -0.0997,-0.0799 -0.0961,-0.0846 -0.0962,-0.094 -0.0938,-0.0999 -0.095,-0.10808 -0.0961,-0.11749 -0.0938,-0.12453 -0.0962,-0.1316 -0.0985,-0.14333 -0.10203,-0.15393 -0.10439,-0.16683 -0.10673,-0.17623 -0.11141,-0.18798 -0.11729,-0.20208 -0.12081,-0.2162 -0.12901,-0.2291 -0.13371,-0.24555 -0.13957,-0.26201 -0.14778,-0.2761 -0.15598,-0.29607 -0.16303,-0.3137 -0.17124,-0.33015 -0.18061,-0.35012 0.88198,-0.45586 0.18062,0.34778 0.17123,0.33014 0.16068,0.309 0.15365,0.29137 0.14544,0.27375 0.13957,0.25731 0.12901,0.2385 0.12431,0.22442 0.11847,0.20912 0.11024,0.19268 0.10673,0.17859 0.0997,0.1645 0.095,0.15038 0.0903,0.13746 0.0868,0.12454 0.0821,0.11514 0.0774,0.10104 0.0727,0.0893 0.0715,0.0823 0.068,0.0716 0.0634,0.0611 0.0634,0.0564 0.0598,0.0494 0.061,0.0435 0.0575,0.0376 0.0598,0.034 0.0645,0.034 0.0656,0.0305 0.0715,0.0293 0.0739,0.0281 0.0809,0.0271 0.0892,0.0282 -0.0481,-0.0129 z m -0.19234,0.97752 -0.0153,-0.004 -0.0329,-0.009 0.0481,0.0129 z m 19.98,-2.5366 -0.18063,0.97986 -0.58876,-0.094 -0.59111,-0.0669 -0.59581,-0.041 -0.59581,-0.0165 -0.6005,0.005 -0.60285,0.0271 -0.60518,0.0447 -0.60755,0.0623 -0.61105,0.0776 -0.6134,0.0904 -0.61339,0.10104 -0.61692,0.11162 -0.61809,0.11983 -0.62045,0.12455 -0.62277,0.12923 -0.62162,0.13041 -0.62512,0.1316 -0.62513,0.12806 -0.6263,0.12571 -0.62748,0.11985 -0.62864,0.11161 -0.62865,0.10222 -0.62983,0.0904 -0.62982,0.0764 -0.63216,0.0599 -0.63099,0.0435 -0.63217,0.0223 -0.63099,9.9e-4 -0.63334,-0.0235 -0.63216,-0.0517 -0.63099,-0.0776 -0.62982,-0.10809 0.19234,-0.97752 0.5829,0.10104 0.58644,0.0729 0.58993,0.0471 0.59113,0.0212 0.5958,-10e-4 0.59932,-0.02 0.60285,-0.041 0.60401,-0.0576 0.60637,-0.074 0.61106,-0.0881 0.61222,-0.0999 0.61457,-0.10927 0.61809,-0.1175 0.61927,-0.12336 0.62044,-0.12806 0.62278,-0.13159 0.62396,-0.13041 0.62513,-0.12925 0.62747,-0.12688 0.62748,-0.11984 0.63099,-0.11397 0.62981,-0.10574 0.63217,-0.0928 0.63217,-0.0799 0.63333,-0.0646 0.63334,-0.047 0.63569,-0.0271 0.63568,-0.007 0.63568,0.0188 0.63569,0.0435 0.63568,0.0716 0.63568,0.10105 z m -22.996,-39.908 0.95704,0.27022 0.0398,-0.0705 0.23692,0.42179 0.44099,0.66383 0.62161,0.86002 0.77878,1.0363 0.91951,1.1949 1.0427,1.3359 1.1506,1.4639 1.2409,1.5732 1.3159,1.6695 1.3722,1.7483 1.4145,1.8129 1.4402,1.8634 1.4473,1.8951 1.4414,1.9163 1.4168,1.9174 1.3781,1.9069 1.3206,1.8798 1.2491,1.8387 1.1611,1.7823 1.0556,1.7107 0.93476,1.6249 0.79871,1.5262 0.64624,1.4146 0.47852,1.2936 0.29204,1.1679 0.0773,1.041 -0.1853,0.92113 -0.51488,0.74253 -0.82217,0.45117 -1.0497,0.14333 -1.2819,-0.12924 0.18061,-0.97986 1.1013,0.11279 0.76119,-0.0986 0.45154,-0.24439 0.25451,-0.37362 0.1126,-0.5898 -0.0656,-0.82947 -0.2592,-1.0363 -0.44802,-1.209 -0.62044,-1.3582 -0.7776,-1.4839 -0.91834,-1.5967 -1.0415,-1.6872 -1.147,-1.7635 -1.2397,-1.8246 -1.3136,-1.8681 -1.3711,-1.8975 -1.4098,-1.9104 -1.4367,-1.9092 -1.445,-1.8904 -1.4356,-1.8587 -1.4121,-1.8105 -1.3722,-1.7459 -1.3136,-1.6672 -1.2432,-1.5755 -1.1506,-1.4639 -1.0474,-1.3406 -0.92421,-1.2019 -0.78815,-1.048 -0.63568,-0.88353 -0.47149,-0.70611 -0.30025,-0.54398 -0.0892,-0.6039 z m -12.131,-3.7209 -0.10556,-0.98927 -0.38939,0.2667 0.39174,-0.6791 0.43395,-0.59802 0.47148,-0.51695 0.5055,-0.43707 0.53482,-0.36069 0.56062,-0.28316 0.57939,-0.20913 0.59347,-0.13981 0.60166,-0.074 0.60754,-0.0105 0.60988,0.0459 0.6052,0.0999 0.60049,0.14803 0.59346,0.19269 0.58174,0.23498 0.56883,0.27258 0.55007,0.30782 0.53364,0.3372 0.50902,0.3654 0.48555,0.39005 0.45741,0.4124 0.42692,0.43119 0.39173,0.44764 0.35421,0.46055 0.31315,0.4688 0.2721,0.48052 0.22283,0.48524 0.17125,0.49112 0.11376,0.49228 0.0516,0.49228 -0.0176,0.48876 -0.0926,0.47701 -0.95704,-0.27023 0.0622,-0.31958 0.0129,-0.34072 -0.0399,-0.36069 -0.088,-0.38184 -0.1384,-0.39476 -0.18532,-0.40534 -0.23221,-0.41005 -0.27562,-0.4124 -0.31433,-0.40886 -0.35185,-0.40064 -0.3847,-0.38889 -0.41518,-0.37479 -0.44335,-0.35483 -0.46445,-0.33484 -0.48438,-0.30665 -0.5008,-0.27963 -0.51254,-0.24437 -0.52074,-0.21149 -0.52545,-0.17154 -0.52777,-0.12923 -0.52544,-0.0858 -0.5184,-0.041 -0.50901,0.0105 -0.49847,0.0599 -0.48321,0.11397 -0.46914,0.16918 -0.45272,0.22911 -0.43396,0.2902 -0.41401,0.35952 -0.39408,0.43236 -0.37062,0.51108 -0.34247,0.59451 -0.38938,0.2667 z m 0.38938,-0.2667 -0.12197,0.23732 -0.26741,0.0293 0.38938,-0.2667 z m -0.44216,-0.22794 0.0527,0.49464 -0.0527,-0.49464 z m 0.44216,0.22794 -0.12197,0.23732 -0.26741,0.0293 0.38938,-0.2667 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path578" + d="m 406.86,317.22 -1.1259,0.39476 -0.009,-0.0293 -0.008,-0.0293 -0.006,-0.0293 -0.005,-0.0293 -0.004,-0.0293 -0.002,-0.0293 0,-0.0294 10e-4,-0.0281 0.002,-0.0293 0.005,-0.0281 0.005,-0.0282 0.007,-0.0282 0.008,-0.0282 0.009,-0.0271 0.0105,-0.0259 0.0117,-0.0271 0.0129,-0.0259 0.0141,-0.0247 0.0152,-0.0235 0.0176,-0.0235 0.0176,-0.0223 0.0176,-0.0223 0.02,-0.0212 0.0212,-0.02 0.0222,-0.0188 0.0234,-0.0177 0.0234,-0.0176 0.0258,-0.0154 0.0258,-0.0153 0.027,-0.013 0.0281,-0.0129 0.0281,-0.0105 0.0293,-0.008 0.0293,-0.008 0.0293,-0.006 0.0293,-0.005 0.0293,-0.004 0.0293,-9.9e-4 0.0293,-9.9e-4 0.0281,9.9e-4 0.0293,0.004 0.0282,0.004 0.0281,0.006 0.0282,0.007 0.0281,0.007 0.027,0.009 0.027,0.0105 0.0258,0.0118 0.0258,0.0129 0.0246,0.0142 0.0246,0.0154 0.0234,0.0177 0.0222,0.0176 0.0222,0.0177 0.0211,0.02 0.02,0.0212 0.0188,0.0223 0.0188,0.0223 0.0164,0.0247 0.0153,0.0247 0.0153,0.0259 0.0129,0.0271 0.0129,0.0271 0.0105,0.0293 0,-9.9e-4 z m 7.7021,10.54 -0.77055,0.90937 -0.36594,-0.31369 -0.35771,-0.31488 -0.35185,-0.31721 -0.34366,-0.31958 -0.3366,-0.32074 -0.32957,-0.32429 -0.32254,-0.32544 -0.31432,-0.32779 -0.30728,-0.33016 -0.30025,-0.33249 -0.29205,-0.33368 -0.28617,-0.33602 -0.27797,-0.33837 -0.26975,-0.34072 -0.26389,-0.3419 -0.25568,-0.34424 -0.24864,-0.3466 -0.24044,-0.34895 -0.23457,-0.35011 -0.22636,-0.35247 -0.21815,-0.35483 -0.21111,-0.35716 -0.20408,-0.35953 -0.19703,-0.36069 -0.18884,-0.36304 -0.18179,-0.3654 -0.17357,-0.36775 -0.16655,-0.37009 -0.15951,-0.37127 -0.1513,-0.37244 -0.14426,-0.37597 -0.13605,-0.37715 1.1259,-0.39476 0.12903,0.356 0.13487,0.35364 0.14309,0.35248 0.15012,0.35129 0.15717,0.34895 0.16419,0.34659 0.17241,0.34543 0.17827,0.34306 0.18648,0.3419 0.19353,0.34072 0.20056,0.33836 0.20759,0.3372 0.21463,0.33603 0.22167,0.3325 0.22988,0.33132 0.23691,0.33132 0.24396,0.32897 0.25098,0.32545 0.25921,0.32545 0.26506,0.3231 0.27327,0.32192 0.28032,0.32075 0.28734,0.31839 0.29556,0.31606 0.30259,0.31488 0.30964,0.31368 0.31667,0.31135 0.32487,0.31018 0.33193,0.30782 0.33894,0.30666 0.34717,0.3043 0.35419,0.30429 z m -0.77173,0.90937 0.77056,-0.90937 0.0234,0.02 0.0211,0.0223 0.0212,0.0212 0.0188,0.0235 0.0176,0.0235 0.0164,0.0247 0.0153,0.0247 0.0129,0.0259 0.0129,0.0259 0.0105,0.0271 0.0105,0.0271 0.008,0.0281 0.007,0.0271 0.006,0.0282 0.005,0.0282 0.002,0.0293 0.002,0.0281 0,0.0281 -9.9e-4,0.0293 -0.002,0.0282 -0.004,0.0282 -0.006,0.0282 -0.006,0.0281 -0.008,0.0281 -0.009,0.0282 -0.0105,0.0271 -0.0117,0.0271 -0.0141,0.0259 -0.0141,0.0259 -0.0164,0.0259 -0.0176,0.0247 -0.0188,0.0235 -0.0212,0.0223 -0.0211,0.0223 -0.0234,0.02 -0.0222,0.0188 -0.0246,0.0176 -0.0234,0.0165 -0.0246,0.0142 -0.0258,0.0142 -0.027,0.0129 -0.027,0.0105 -0.027,0.009 -0.0281,0.009 -0.027,0.007 -0.0281,0.006 -0.0282,0.004 -0.0281,0.004 -0.0293,9.9e-4 -0.0281,9.9e-4 -0.0281,-9.9e-4 -0.0293,-0.002 -0.0281,-0.005 -0.0281,-0.005 -0.0281,-0.007 -0.0281,-0.007 -0.027,-0.009 -0.0281,-0.0105 -0.027,-0.013 -0.0258,-0.0129 -0.0258,-0.0154 -0.0258,-0.0163 -0.0246,-0.0177 -0.0234,-0.0188 0,-9.9e-4 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path580" + transform="matrix(0.21421557,-1.5108362,1.7589027,0.18400288,404.14272,325.54714)" + d="M 0.89999998,0 C 0.89999998,0.43508717 0.49705626,0.78779501 0,0.78779501 -0.49705626,0.78779501 -0.89999998,0.43508717 -0.89999998,0 c 0,-0.43508717 0.40294372,-0.78779501 0.89999998,-0.78779501 0.49705626,0 0.89999998,0.35270784 0.89999998,0.78779501 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + <path + id="path582" + d="m 358.42,362.56 0.0258,-0.0165 0.0258,-0.0164 0.0258,-0.0142 0.027,-0.0117 0.027,-0.0118 0.027,-0.009 0.0281,-0.008 0.0281,-0.008 0.0281,-0.005 0.0282,-0.005 0.0281,-0.004 0.0281,-9.9e-4 0.0293,0 0.0281,9.9e-4 0.0281,0.002 0.0281,0.004 0.0281,0.005 0.027,0.007 0.0281,0.008 0.027,0.009 0.0258,0.0105 0.0258,0.0117 0.027,0.0129 0.0246,0.0142 0.0234,0.0154 0.0234,0.0176 0.0234,0.0176 0.0211,0.0188 0.0222,0.0212 0.02,0.0223 0.02,0.0235 0.0188,0.0235 0.0164,0.0247 0.0153,0.0259 0.0141,0.0271 0.0129,0.0259 0.0117,0.0281 0.009,0.0271 0.008,0.0282 0.008,0.0271 0.005,0.0281 0.005,0.0283 0.002,0.0281 9.9e-4,0.0282 9.9e-4,0.0282 -9.9e-4,0.0282 -0.004,0.0281 -0.004,0.0281 -0.005,0.0282 -0.007,0.0271 -0.008,0.0271 -0.009,0.0271 -0.0105,0.0271 -0.0117,0.0259 -0.0129,0.0247 -0.0141,0.0259 -0.0152,0.0235 -0.0176,0.0235 -0.0176,0.0235 -0.0188,0.0212 -0.0212,0.0212 -0.0222,0.02 -0.0223,0.02 -0.0246,0.0177 -0.68847,-0.95872 -0.002,9.9e-4 z m -22.681,56.14 0.13957,-1.1761 0.21111,-1.3206 0.27914,-1.4545 0.34364,-1.5779 0.40346,-1.6919 0.46094,-1.7964 0.51487,-1.8892 0.56532,-1.9715 0.61106,-2.0432 0.65561,-2.1019 0.69551,-2.1512 0.73185,-2.1888 0.7647,-2.217 0.79402,-2.2323 0.81982,-2.237 0.8421,-2.23 0.86088,-2.2124 0.87728,-2.1841 0.8902,-2.1454 0.89723,-2.0937 0.90309,-2.0326 0.90544,-1.9586 0.90309,-1.8763 0.89958,-1.7811 0.89137,-1.6754 0.88081,-1.5591 0.86556,-1.431 0.85032,-1.2959 0.83155,-1.1479 0.81278,-0.99162 0.79519,-0.82595 0.78347,-0.64973 0.68845,0.95755 -0.66265,0.55103 -0.71778,0.74606 -0.76001,0.92935 -0.79637,1.0985 -0.82334,1.2548 -0.84563,1.3981 -0.86438,1.5309 -0.87846,1.6519 -0.88903,1.76 -0.89488,1.8563 -0.89722,1.9433 -0.89724,2.0173 -0.89254,2.0796 -0.88316,2.1324 -0.87259,2.1724 -0.85735,2.2018 -0.83742,2.2194 -0.8163,2.2264 -0.7905,2.2206 -0.76,2.2064 -0.72835,2.1783 -0.69081,2.1395 -0.6521,2.0913 -0.60753,2.029 -0.56063,1.9562 -0.51019,1.874 -0.45624,1.7776 -0.39993,1.6719 -0.33779,1.5532 -0.27327,1.4216 -0.20408,1.2783 -0.1337,1.122 -1.1775,-0.10926 0,0.002 z m 5.5534,80.362 -0.7213,-2.0196 -0.67673,-2.0831 -0.63334,-2.1442 -0.58877,-2.203 -0.54773,-2.2558 -0.50432,-2.3087 -0.46562,-2.3557 -0.42575,-2.4003 -0.3882,-2.4426 -0.34951,-2.4802 -0.31433,-2.5155 -0.27914,-2.5472 -0.24395,-2.5766 -0.21112,-2.6001 -0.17944,-2.6236 -0.1466,-2.6424 -0.11729,-2.6576 -0.088,-2.6706 -0.0587,-2.6788 -0.0317,-2.6846 -0.005,-2.687 0.0212,-2.687 0.0446,-2.6823 0.0692,-2.6741 0.0915,-2.6647 0.11376,-2.6506 0.13371,-2.633 0.15364,-2.6118 0.17241,-2.5895 0.19118,-2.5625 0.20759,-2.5319 0.22401,-2.4978 1.1764,0.10927 -0.22284,2.4896 -0.20642,2.5225 -0.19,2.5542 -0.1724,2.5801 -0.15248,2.6024 -0.13487,2.6236 -0.1126,2.6412 -0.0903,2.6541 -0.0692,2.6647 -0.0446,2.6717 -0.0212,2.6752 0.005,2.6764 0.0317,2.6729 0.0587,2.6658 0.0868,2.6576 0.11612,2.6435 0.1466,2.6283 0.17828,2.6083 0.20993,2.586 0.24278,2.5601 0.2768,2.5296 0.31197,2.4978 0.34717,2.4614 0.38469,2.4215 0.42223,2.3792 0.46093,2.3322 0.49963,2.284 0.54069,2.23 0.58173,2.1736 0.62395,2.1148 0.66618,2.0526 0.71075,1.9856 -1.1083,0.41239 z m 1.1083,-0.41357 0.009,0.0293 0.008,0.0282 0.007,0.0293 0.006,0.0282 0.004,0.0293 0.002,0.0281 9.9e-4,0.0293 0,0.0282 -0.002,0.0293 -0.004,0.0282 -0.005,0.0281 -0.006,0.0271 -0.007,0.0281 -0.009,0.0271 -0.009,0.0259 -0.0105,0.0271 -0.0129,0.0247 -0.0129,0.0247 -0.0152,0.0247 -0.0164,0.0235 -0.0164,0.0223 -0.0188,0.0223 -0.0188,0.0212 -0.02,0.02 -0.0211,0.02 -0.0234,0.0176 -0.0234,0.0176 -0.0234,0.0164 -0.0258,0.0142 -0.027,0.0142 -0.027,0.013 -0.0281,0.0105 -0.0281,0.009 -0.0293,0.009 -0.0281,0.006 -0.0293,0.006 -0.0293,0.005 -0.0281,0.002 -0.0293,0 -0.0281,0 -0.0293,-0.002 -0.0281,-0.004 -0.0281,-0.005 -0.0281,-0.006 -0.027,-0.007 -0.027,-0.008 -0.0281,-0.0105 -0.0258,-0.0105 -0.0258,-0.0129 -0.0246,-0.0129 -0.0234,-0.0153 -0.0246,-0.0153 -0.0222,-0.0176 -0.0222,-0.0177 -0.0212,-0.0188 -0.0211,-0.02 -0.0188,-0.0223 -0.0188,-0.0223 -0.0176,-0.0235 -0.0152,-0.0247 -0.0153,-0.0247 -0.0141,-0.0271 -0.0129,-0.0271 -0.0117,-0.0283 1.1083,-0.41239 -9.9e-4,0 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + </g> + <use + id="use584" + x="0" + y="0" + width="1350" + height="900" + transform="matrix(-1,0,0,1,964.29721,0)" + xlink:href="#g3535" /> + <path + id="path586" + d="m 473.11,398.36 -0.031,0.031 -0.031,0 -0.031,0 -0.031,0.031 -0.031,0 -0.031,0.031 -0.031,0 -0.031,0.031 0,0.031 -0.031,0 -0.031,0.031 0,0.031 -0.031,0 0,0.031 -0.031,0.031 0,0.031 -0.031,0 0,0.031 -0.031,0.031 0,0.031 0,0.031 0,0.031 0,0.031 -0.031,0.031 0,0.031 0,0.031 0,0.031 0.0621,0.77715 0.0621,0.77714 0.0621,0.74607 0.0931,0.77715 0.12412,0.74606 0.12413,0.77714 0.12413,0.74607 0.15516,0.74606 0.18618,0.74606 0.18619,0.71498 0.21723,0.74606 0.21722,0.71498 0.21722,0.71498 0.24825,0.71497 0.27929,0.68389 0.27928,0.71499 0.27929,0.68388 0.31031,0.68389 0.31032,0.6839 0.34135,0.68388 0.34134,0.6528 0.37238,0.6839 0.37238,0.6528 0.40341,0.6528 0.40342,0.65281 0.40341,0.62172 0.43444,0.65281 0.43444,0.62171 0.46548,0.62172 0.46547,0.62172 0.46548,0.62172 0.4965,0.59064 0,0.031 0.031,0.031 0.031,0 0,0.031 0.031,0 0.031,0.031 0.031,0 0.031,0.031 0.031,0.031 0.031,0 0.031,0 0.031,0 0.031,0.031 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0.031,0 0,-0.031 0.031,0 0.031,0 0.031,0 0.0318,-0.0297 0.031,0 0.031,-0.031 0.031,-0.031 0.031,0 0.031,-0.031 0.031,-0.031 0.031,-0.031 0.46547,-0.59063 0.49651,-0.62173 0.46548,-0.62171 0.43444,-0.62173 0.46547,-0.62171 0.40341,-0.6528 0.43445,-0.62173 0.40341,-0.6528 0.37238,-0.6528 0.37238,-0.65281 0.37238,-0.68389 0.34134,-0.65281 0.34135,-0.68388 0.31032,-0.68389 0.31032,-0.6839 0.31031,-0.68389 0.27929,-0.71497 0.24825,-0.6839 0.24825,-0.71497 0.24826,-0.71497 0.21722,-0.74607 0.18619,-0.71498 0.18619,-0.71497 0.18619,-0.74606 0.15515,-0.74607 0.15516,-0.74606 0.12413,-0.77714 0.093,-0.74607 0.0931,-0.77715 0.093,-0.74606 0.0621,-0.77715 0.031,-0.77715 0,-0.031 0,-0.031 0,-0.031 0,-0.031 0,-0.031 -0.031,-0.031 0,-0.031 0,-0.031 -0.031,-0.031 0,-0.031 -0.031,-0.031 0,-0.031 -0.031,-0.031 -0.031,-0.031 -0.031,-0.031 -0.031,-0.031 -0.031,-0.031 -0.031,-0.031 -0.031,0 -0.031,0 -0.031,-0.031 -0.031,0 -0.031,-0.031 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0.031 -0.031,0 -0.031,0.031 -0.031,0 -0.031,0 -0.031,0.031 0,0.031 -0.031,0 -0.031,0.031 -0.031,0 0,0.031 -0.031,0.031 -0.031,0.031 0,0.031 -0.031,0.031 0,0.031 -0.031,0 0,0.031 0,0.031 0,0.031 -0.031,0.031 0,0.031 0,0.031 0,0.031 -0.031,0.74606 -0.0621,0.74606 -0.0931,0.74606 -0.0621,0.74607 -0.12413,0.74606 -0.12412,0.71498 -0.12413,0.71498 -0.15516,0.71497 -0.15515,0.71498 -0.18619,0.71497 -0.21723,0.71498 -0.18619,0.68389 -0.24825,0.68389 -0.24825,0.71498 -0.24826,0.6528 -0.24825,0.6839 -0.31031,0.68389 -0.27929,0.6528 -0.31032,0.68389 -0.34134,0.65281 -0.34135,0.62171 -0.34135,0.65281 -0.37238,0.6528 -0.37238,0.62173 -0.37238,0.62171 -0.40341,0.62172 -0.43444,0.62172 -0.43444,0.62172 -0.43445,0.59063 -0.43444,0.62172 -0.46691,0.59028 -0.15516,0.18652 -0.12413,-0.18657 -0.46547,-0.59063 -0.46548,-0.62172 -0.43444,-0.59063 -0.43444,-0.62172 -0.40342,-0.62172 -0.40341,-0.62172 -0.40341,-0.62172 -0.37238,-0.62171 -0.37238,-0.65281 -0.34135,-0.65281 -0.34134,-0.62171 -0.31032,-0.65281 -0.31032,-0.68389 -0.31031,-0.6528 -0.27929,-0.6839 -0.27928,-0.6528 -0.24825,-0.68389 -0.24826,-0.71498 -0.21722,-0.68389 -0.21722,-0.68388 -0.18619,-0.71499 -0.18619,-0.71497 -0.18619,-0.71497 -0.12413,-0.71499 -0.15515,-0.71497 -0.12413,-0.71497 -0.0931,-0.74607 -0.093,-0.74606 -0.0621,-0.74606 -0.0621,-0.74606 -0.0621,-0.74607 0,-0.031 0,-0.031 0,-0.031 0,-0.031 0,-0.031 -0.031,-0.031 0,-0.031 -0.031,-0.031 0,-0.031 -0.031,-0.031 0,-0.031 -0.031,0 -0.031,-0.031 0,-0.031 -0.031,0 -0.031,-0.031 0,-0.031 -0.031,0 -0.031,-0.031 -0.031,0 -0.031,-0.031 -0.031,0 -0.031,0 -0.031,-0.031 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 -0.031,0 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + </g> + <g + id="g588"> + <path + id="path590" + d="m 549.18,422.03 0,108.56 0,0.004 c -9.9e-4,19.413 -7.5285,37.038 -19.669,49.809 -12.143,12.772 -28.899,20.691 -47.357,20.691 h -0.006 c -18.457,-9.9e-4 -35.214,-7.9188 -47.354,-20.69 -12.143,-12.771 -19.67,-30.397 -19.671,-49.811 v -108.56 h 134.06 z" + inkscape:connector-curvature="0" + style="fill:#c6363c" /> + <use + id="use592" + x="0" + y="0" + width="1350" + height="900" + transform="matrix(-1,0,0,1,964.29715,-90.088376)" + xlink:href="#path1563" /> + <path + id="path594" + d="m 549.18,488.62 0,27.978 -53.063,0 0,82.947 c -4.5061,1.0104 -9.1776,1.5462 -13.964,1.5462 h -0.005 c -4.7852,0 -9.4555,-0.53458 -13.96,-1.5462 V 516.598 H 415.124 V 488.62 h 53.064 v -66.588 h 27.929 v 66.588 h 53.063 z" + inkscape:connector-curvature="0" + style="fill:#ffffff;stroke:#21231e;stroke-width:0.99388075" /> + <use + id="use596" + x="0" + y="0" + width="1350" + height="900" + transform="translate(0,-90.088376)" + xlink:href="#path1563" /> + <path + d="m 459.14,567.32 0,-39.331 c -8.5595,-2.3028 -29.402,-10.619 -30.486,7.6134 -0.50198,8.4276 10.44,13.987 13.39,6.5418 1.3969,-3.5223 -0.12432,-6.0178 -2.1827,-6.8226 -2.2226,-0.86943 -4.4263,0.92935 -3.8376,3.6105 -8.8597,-4.6373 7.9156,-14.483 15.49,-1.6684 2.2061,3.7315 -3.7226,7.6216 -3.7308,10.388 -0.007,2.7681 5.8255,6.912 3.7308,10.394 -7.6693,12.754 -24.351,2.969 -15.49,-1.6684 -0.58876,2.6811 1.6162,4.4799 3.8376,3.6105 2.0572,-0.8048 3.5784,-3.3003 2.1827,-6.8238 -2.9509,-7.4442 -13.892,-1.8845 -13.39,6.543 1.0837,18.231 21.926,9.915 30.486,7.6122 z" + id="path1563" + inkscape:connector-curvature="0" + style="fill:#ffffff;stroke:#21231e;stroke-width:0.99388075" /> + <use + id="use599" + x="0" + y="0" + width="1350" + height="900" + transform="matrix(-1,0,0,1,964.29715,0)" + xlink:href="#path1563" /> + <path + id="path601" + d="m 414,420.86 0,109.73 0.031,1.8341 0.0621,1.8341 0.093,1.8341 0.15516,1.803 0.21722,1.803 0.21723,1.7719 0.27928,1.7719 0.34135,1.7408 0.34135,1.7719 0.40341,1.7097 0.46547,1.7097 0.46548,1.6786 0.52753,1.6786 0.55857,1.6476 0.5896,1.6476 0.62064,1.6165 0.68269,1.5854 0.6827,1.5854 0.74476,1.5543 0.77579,1.5543 0.80682,1.4921 0.83786,1.4921 0.86888,1.461 0.89992,1.461 0.93095,1.3989 0.96198,1.3989 0.99301,1.3678 1.0551,1.3367 1.0551,1.3367 1.0861,1.2745 1.1171,1.2745 1.1482,1.1813 -0.031,0.031 1.1792,1.2124 1.2102,1.1813 1.2102,1.1191 1.2723,1.1191 1.2723,1.088 1.3033,1.0569 1.3033,0.99475 1.3654,0.99475 1.3654,0.96366 1.3964,0.90149 1.3964,0.90149 1.4585,0.83932 1.4585,0.80824 1.4585,0.77715 1.5206,0.74606 1.5206,0.68389 1.5206,0.65281 1.5516,0.6528 1.5826,0.55955 1.5826,0.55954 1.6136,0.49738 1.6136,0.46628 1.6447,0.43521 1.6447,0.37303 1.6757,0.34195 1.6757,0.27977 1.7067,0.24869 1.7067,0.2176 1.7378,0.15543 1.7067,0.12434 1.7688,0.0621 1.7378,0.031 1.7688,-0.031 1.7378,-0.0621 1.7378,-0.12434 1.7067,-0.15543 1.7067,-0.2176 1.7067,-0.24869 1.6757,-0.27977 1.6757,-0.34195 1.6447,-0.37303 1.6447,-0.43521 1.6136,-0.46628 1.6136,-0.49738 1.5826,-0.55954 1.5826,-0.59064 1.5516,-0.62171 1.5516,-0.65281 1.5206,-0.68389 1.4895,-0.74606 1.4895,-0.77715 1.4585,-0.80824 1.4275,-0.8704 1.4274,-0.87041 1.3964,-0.90149 1.3654,-0.96366 1.3344,-0.99475 1.3344,-0.99475 1.3033,-1.0569 1.2723,-1.088 1.2413,-1.1191 1.2413,-1.1191 1.1792,-1.1813 1.1792,-1.2124 1.1482,-1.2124 1.1171,-1.2745 1.0861,-1.2745 1.0551,-1.3367 1.024,-1.3367 0.99302,-1.3678 0.96198,-1.3989 0.96198,-1.3989 0.89992,-1.461 0.86888,-1.461 0.83786,-1.4921 0.80682,-1.4921 0.77579,-1.5543 0.71373,-1.5543 0.71372,-1.5854 0.65167,-1.5854 0.65166,-1.6165 0.5896,-1.6476 0.55857,-1.6476 0.49651,-1.6786 0.4965,-1.6786 0.43445,-1.7097 0.40341,-1.7097 0.37238,-1.7408 0.31031,-1.7719 0.27929,-1.7719 0.24825,-1.7719 0.18619,-1.803 0.15516,-1.803 0.12413,-1.8341 0.0621,-1.8341 0.031,-1.8341 -0.031,0 5e-5,-108.55 0,-1.1813 h -136.29 z m 2.2653,2.3625 131.79,0 0,107.37 -0.031,1.7719 -0.0621,1.7719 -0.093,1.7719 -0.15516,1.7408 -0.18619,1.7408 -0.24825,1.7408 -0.24825,1.7097 -0.31032,1.6786 -0.37238,1.6786 -0.37238,1.6786 -0.43444,1.6476 -0.46557,1.6476 -0.49651,1.6165 -0.52754,1.5854 -0.5896,1.5854 -0.5896,1.5543 -0.65166,1.5543 -0.6827,1.5232 -0.71373,1.4921 -0.74476,1.4921 -0.77579,1.461 -0.80682,1.43 -0.83785,1.43 -0.89992,1.3989 -0.89992,1.3678 -0.93095,1.3367 -0.96198,1.3367 -0.99301,1.3056 -1.024,1.2745 -1.0551,1.2434 -1.0861,1.2124 -1.0861,1.1813 -1.1482,1.1813 -1.1482,1.1191 -1.1792,1.1191 -1.2102,1.0569 -1.2413,1.0569 -1.2723,1.0258 -1.2723,0.96366 -1.3033,0.96366 -1.3344,0.90149 -1.3344,0.9015 -1.3654,0.8704 -1.3964,0.80823 -1.3964,0.77716 -1.4274,0.74606 -1.4585,0.71497 -1.4895,0.6839 -1.4585,0.6528 -1.5206,0.59063 -1.5206,0.55955 -1.5206,0.52846 -1.5516,0.49738 -1.5826,0.43519 -1.5826,0.40412 -1.6136,0.37304 -1.6136,0.34194 -1.6136,0.27977 -1.6447,0.24869 -1.6447,0.18652 -1.6757,0.15543 -1.6757,0.12434 -1.6757,0.0621 -1.7067,0.031 -1.7067,-0.031 -1.6757,-0.0621 -1.6757,-0.12434 -1.6757,-0.15543 -1.6447,-0.18652 -1.6447,-0.24869 -1.6136,-0.27977 -1.6136,-0.34194 -1.5826,-0.37304 -1.6136,-0.40412 -1.5516,-0.43519 -1.5516,-0.49738 -1.5516,-0.52846 -1.5206,-0.55955 -1.4895,-0.59063 -1.4895,-0.6528 -1.4585,-0.6839 -1.4585,-0.71497 -1.4275,-0.74606 -1.4274,-0.77716 -1.3654,-0.83932 -1.3964,-0.83931 -1.3344,-0.87041 -1.3344,-0.93258 -1.3033,-0.96366 -1.2723,-0.96366 -1.2723,-1.0258 -1.2102,-1.0569 -1.2102,-1.0569 -1.1792,-1.1191 -1.1792,-1.1191 -1.1171,-1.1813 -1.1171,-1.1813 -1.0861,-1.2124 -1.024,-1.2434 -1.024,-1.2745 -0.99302,-1.3056 -0.99301,-1.3367 -0.93095,-1.3367 -0.89991,-1.3678 -0.86889,-1.3989 -0.83785,-1.3989 -0.80683,-1.461 -0.80682,-1.461 -0.74476,-1.4921 -0.71373,-1.4921 -0.65166,-1.5232 -0.65166,-1.5543 -0.62064,-1.5543 -0.55857,-1.5854 -0.55857,-1.5854 -0.4965,-1.6165 -0.46548,-1.6476 -0.40341,-1.6476 -0.40341,-1.6786 -0.34135,-1.6786 -0.31031,-1.6786 -0.27929,-1.7097 -0.21722,-1.7408 -0.18619,-1.7408 -0.15516,-1.7408 -0.12412,-1.7719 -0.0621,-1.7719 0,-1.7719 z" + inkscape:connector-curvature="0" + style="fill:#21231e" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/s/flag/ru.svg b/s/flag/ru.svg new file mode 100755 index 0000000..7e3dddc --- /dev/null +++ b/s/flag/ru.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4346"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.25 0 0 .93750 0 -.0000020021)"> + <rect id="rect171" height="512" width="512" y=".0000024116" x="0" fill="#fff"/> + <rect id="rect403" height="341.33" width="512" y="170.67" x="0" fill="#01017e"/> + <rect id="rect135" height="170.67" width="512" y="341.33" x="0" fill="#fe0101"/> + </g> +</svg> diff --git a/s/flag/rw.svg b/s/flag/rw.svg new file mode 100755 index 0000000..30f636d --- /dev/null +++ b/s/flag/rw.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg1234" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4357"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs1236"> + <clipPath id="clipPath3599" clipPathUnits="userSpaceOnUse"> + <rect id="rect3601" fill-opacity="0.67" height="512" width="682.67" y="-.000011543" x="-170.67"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3599)" fill-rule="evenodd" transform="matrix(.93750 0 0 .93750 160 .000010821)"> + <rect id="rect1242" height="256" width="768" y="-.000012163" x="-256" stroke-width="1pt" fill="#009af4"/> + <rect id="rect1243" height="128" width="768" y="384" x="-256" stroke-width="1pt" fill="#1c8f31"/> + <rect id="rect1244" height="128" width="768" y="256" x="-256" stroke-width="1pt" fill="#efef00"/> + <polygon id="polygon1249" transform="matrix(1.0321 0 0 1.0321 -253.76 1.683)" d="m 673.45575,171.0214 -36.01357,-19.86386 21.41117,35.11569 -29.64529,-28.50802 11.593,39.46077 -21.25673,-35.20939 0.98477,41.11667 -11.41956,-39.51131 -9.69056,39.97053 -0.80418,-41.1206 -19.70549,36.10047 9.86602,-39.92758 -28.37753,29.77021 19.86386,-36.01356 -35.11569,21.41117 28.50801,-29.64529 -39.46077,11.593 35.2094,-21.25674 -41.11667,0.98478 39.51131,-11.41957 -39.97053,-9.69055 41.12059,-0.80418 -36.10046,-19.705493 39.92758,9.866023 -29.77022,-28.377535 36.01357,19.863862 -21.41117,-35.115691 29.64529,28.508014 -11.593,-39.460771 21.25673,35.209392 -0.98477,-41.116666 11.41956,39.511308 9.69056,-39.970528 0.80418,41.120594 19.70549,-36.100464 -9.86602,39.927579 28.37753,-29.770213 -19.86386,36.013566 35.11569,-21.411173 -28.50801,29.645286 39.46077,-11.592993 -35.20939,21.256733 41.11666,-0.98477 -39.51131,11.41956 39.97053,9.69056 -41.12059,0.80417 36.10046,19.7055 -39.92758,-9.86602 z" points="673.46 171.02 637.44 151.16 658.85 186.27 629.21 157.76 640.8 197.23 619.54 162.02 620.53 203.13 609.11 163.62 599.42 203.59 598.62 162.47 578.91 198.57 588.78 158.64 560.4 188.42 580.26 152.4 545.15 173.81 573.65 144.17 534.19 155.76 569.4 134.5 528.29 135.49 567.8 124.07 527.83 114.38 568.95 113.57 532.85 93.869 572.77 103.74 543 75.357 579.02 95.221 557.61 60.105 587.25 88.613 575.66 49.152 596.92 84.362 595.93 43.245 607.35 82.756 617.04 42.786 617.84 83.907 637.55 47.806 627.68 87.734 656.06 57.964 636.2 93.977 671.31 72.566 642.81 102.21 682.27 90.618 647.06 111.88 688.17 110.89 648.66 122.31 688.63 132 647.51 132.8 683.61 152.51 643.69 142.64" stroke-width="1pt" fill="#ffda00"/> + <path id="path1251" d="m639.76 123.19c0 17.111-13.871 30.982-30.982 30.982s-30.982-13.871-30.982-30.982 13.871-30.982 30.982-30.982 30.982 13.871 30.982 30.982z" transform="matrix(1.0449 0 0 1.0449 -262.11 .10562)" fill="#0098f6"/> + <path id="path1250" d="m639.76 123.19c0 17.111-13.871 30.982-30.982 30.982s-30.982-13.871-30.982-30.982 13.871-30.982 30.982-30.982 30.982 13.871 30.982 30.982z" transform="matrix(.84007 0 0 .85231 -137.4 23.834)" fill="#ffd900"/> + </g> +</svg> diff --git a/s/flag/sa.svg b/s/flag/sa.svg new file mode 100755 index 0000000..28544ae --- /dev/null +++ b/s/flag/sa.svg @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg761" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata42"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs763"> + <clipPath id="clipPath15809" clipPathUnits="userSpaceOnUse"> + <rect id="rect15811" fill-opacity="0.67" height="512" width="682.67" y="-.0000039058" x="-85.333"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath15809)" fill-rule="evenodd" transform="matrix(.9375 0 0 .9375 80 .0000036617)"> + <rect id="rect681" height="512" width="768" y="-.0000039058" x="-128" fill="#199d00"/> + <path id="path766" d="m65.54 145.13c-0.8866 11.961-1.9507 33.011 8.2126 35.17 12.293 1.1818 5.5147-20.806 9.9642-24.793 0.84118-1.9703 2.3925-1.9807 2.5205 0.50471v18.651c-0.1125 6.0648 3.8746 7.8514 6.972 9.1044 3.2233-0.24874 5.3753-0.1414 6.6386 2.9952 0.50368 10.754 1.0084 21.507 1.5121 32.261 0 0 7.4757 2.1396 7.8318-18.146 0.35712-11.911-2.379-21.881-0.77512-24.198 0.0568-2.2769 2.9643-2.4131 4.981-1.3036 3.213 2.2666 4.6446 5.0657 9.638 3.9458 7.5985-2.0932 12.166-5.7892 12.278-11.624-0.44382-5.5446-1.0652-11.09-3.468-16.635 0.33544-1.0084-1.4666-3.6207-1.1322-4.6291 1.3655 2.1386 3.4432 1.961 3.9159 0-1.2933-4.2616-3.2997-8.3448-6.553-10.112-2.6887-2.3687-6.6232-1.8847-8.064 3.0551-0.66778 5.6922 2.0519 12.455 6.1969 17.968 0.88041 2.154 2.1169 5.7335 1.573 8.9568-2.2057 1.2582-4.4113 0.73385-6.2588-1.2169 0 0-6.0483-4.5362-6.0483-5.5446 1.605-10.276 0.35609-11.441-0.53361-14.293-0.62134-3.9365-2.4895-5.1988-4.0026-7.8875-1.5131-1.6039-3.5598-1.6039-4.5383 0-2.6732 4.6342-1.4264 14.583 0.50471 19.039 1.3954 4.0986 3.5278 6.6706 2.5205 6.6706-0.82983 2.3161-2.5452 1.7814-3.7931-0.89176-1.7814-5.525-2.1386-13.769-2.1386-17.481-0.53464-4.6023-1.1219-14.419-4.1512-16.913-1.8475-2.5163-4.5868-1.2891-5.5436 1.0074-0.1992 4.5682-0.21984 9.1354 0.29416 13.345 2.0777 7.3838 2.73 13.876 3.7384 21.437 0.27971 10.128-5.8563 4.3948-5.5756-0.6265 1.415-6.522 1.0476-16.788-0.20952-19.39-0.99704-2.602-2.1737-3.244-4.5981-2.8156-1.9249-0.11766-6.8781 5.2907-8.2684 14.262 0 0-1.1859 4.6177-1.6917 8.7173-0.68017 4.6332-3.7301 7.903-5.8687-0.65127-1.8485-6.2175-2.9849-21.524-6.0803-17.939z" fill="#fff"/> + <path id="path767" d="m98.944 194.21c-10.848 5.3031-21.339 10.25-32.01 15.375 0.39014-7.2558 15.219-20.354 25.331-20.538 6.5819 0.18372 4.9284 2.5504 6.6789 5.1637z" fill="#fff"/> + <path id="path768" d="m93.352 204.24c-16.87 43.487 39.505 49.546 45.805 1.7814 0.59348-1.96 2.9705-3.921 3.3864-0.7132-1.3077 43.248-43.606 46.22-50.794 32.614-1.7815-3.2068-2.3171-10.336-2.4957-14.614-1.0693-8.4944-5.5239-5.2277-6.2371 3.2078-0.7132 4.6931-0.53464 6.0018-0.53464 10.516 2.2573 34.159 56.736 19.486 65.587-8.7328 4.6931-15.625-0.77306-27.149 1.7814-27.091 5.4063 5.8233 12.95 0.77307 14.614-1.2468 0.7132-1.0104 2.4967-1.6628 3.7435-0.35608 4.2173 3.0314 11.645 1.6029 13.189-3.7435 0.89176-5.2277 1.605-10.634 1.7835-16.217-3.4473 1.0703-6.0008 1.7814-6.2382 3.2078-0.23842 1.5451-0.47478 3.0881-0.7132 4.6332-0.29622 1.4863-3.2688 1.5441-3.3864-0.35711-1.3067-5.9409-6.713-6.713-9.9807 2.4967-2.1984 1.7815-6.1783 2.1386-6.5953-0.53464 0.53464-6.1783-1.961-7.0112-6.9503-4.0996-1.6039-12.238-3.2068-23.941-4.8118-36.179 2.0797-0.0599 3.982 1.4842 5.8831-0.89176-2.0818-6.4745-6.4766-19.723-8.9134-20.674-1.188-1.4254-2.1995-0.53464-3.7425-0.17855-2.6134 0.83189-5.0502 3.0892-4.2782 7.486 3.0892 18.772 5.1101 33.09 8.1992 51.863 0.47477 2.1984-1.3665 5.107-3.7425 4.8108-4.0397-2.7331-5.0471-8.257-11.941-8.0207-4.9903 0.0599-10.695 5.4661-11.406 10.696-0.83189 4.1564-1.1302 8.6709-0.002 12.296 3.5072 4.2173 7.7244 3.8034 11.408 2.8518 3.0293-1.2468 5.5239-4.2771 6.5943-3.565 0.7132 0.89176 0.17649 10.87-14.259 18.535-8.7328 3.921-15.684 4.8128-19.425-2.3171-2.3171-4.4557 0.17753-21.387-5.527-17.465z" fill="#fff"/> + <path id="path769" d="m164.91 160.03c3.3864-1.2478 19.429-19.604 19.429-19.604-0.83292-0.7132-1.576-1.2478-2.408-1.961-0.89176-0.77204-0.80196-1.5441 0-2.3171 3.9799-2.3161 2.7031-7.3962 0.62444-9.7123-3.4463-1.5451-6.4467-1.0404-8.6451 0.0888-2.7919 2.6732-3.4442 6.9503-1.2458 9.6236 2.1396 1.0104 4.2771 3.179 2.8507 4.3669-6.5633 7.0102-24.535 19.1-22.455 19.515 0.44381 0.5945 11.495 0.56457 11.85 0z" fill="#fff"/> + <path id="path770" d="m68.036 225c-6.0163 9.5843-6.5396 23.903-3.2202 28.172 1.7639 2.0168 4.6621 2.9003 6.8058 2.2686 3.7796-1.639 5.4341-9.2974 4.5372-12.099-1.2613-1.9745-2.2552-2.2872-3.5144-0.60792-2.6598 5.4001-3.7642 1.6958-3.9974-1.3222-0.40769-5.7231 0.13108-10.994 0.75242-15.168 0.66159-4.2782-0.01135-2.9705-1.3634-1.2437z" fill="#fff"/> + <path id="path771" d="m325.12 209.65c-5.8171-12.521-13.87-24.894-16.432-29.647-2.5617-4.755-21.905-32.827-24.752-35.984-6.2836-7.4674 10.204 3.1098-2.0859-11.716-4.6859-4.0201-4.9583-4.2648-8.8474-7.5448-1.9621-1.3923-6.7522-3.9355-7.6006 0.2797-0.42627 3.7167-0.1961 5.7324 0.42833 8.8268 0.47891 2.0632 3.4845 5.5188 4.9625 7.5211 19.625 26.379 37.027 53.019 53.808 86.514 2.6495-1.2592 2.0704-16.155 0.52019-18.25z" fill="#fff"/> + <path id="path793" d="m299.59 251.54c-1.1436 1.284 2.8239 6.7759 7.9804 6.7708 8.6234-1.0012 16.215-5.8449 23.244-18.596 1.8795-2.9736 5.1833-9.3335 5.2804-14.267 0.65746-28.925-1.4481-51.433-5.782-72.339-0.27764-2.0364-0.10837-4.4299 0.23636-5.0409 0.55838-0.66676 2.4523 0.003 3.4566-1.6442 1.4739-1.5048-3.9138-13.97-6.9854-18.771-1.091-2.1437-1.4708-3.5753-3.276 0.25184-1.8991 3.1108-3.1748 8.5388-3.0252 13.611 4.1141 28.482 5.3774 53.398 8.0661 81.881 0.21881 2.7548-0.18579 6.7573-2.0168 8.353-6.7728 7.0721-16.548 15.777-27.178 19.791z" fill="#fff"/> + <path id="path794" d="m416.08 251.39c-6.1886 3.5774-6.1959 7.6924-1.1921 7.8411 8.6234-1.0012 18.813-1.7175 25.841-12.329 1.8805-2.9736 4.1141-11.015 4.2111-15.948 0.65747-28.925-0.37776-50.515-4.7117-71.421-0.27764-2.0364-1.1787-6.7233-0.83396-7.3343 0.55838-1.4316 3.3699 0.15586 4.3742-1.4914 1.4739-1.5048-7.2775-12.747-10.349-17.548-1.091-2.1437-1.4708-3.5753-3.276 0.25184-1.8991 3.1108-2.5628 8.6915-1.8021 13.611 4.5723 30.928 7.9763 54.163 8.6781 81.575-0.39324 2.602-0.49129 4.0046-1.7113 7.2827-2.699 3.4597-5.6891 7.7853-8.4934 9.8764-2.8033 2.09-8.7844 4.0852-10.735 5.6344z" fill="#fff"/> + <path id="path795" d="m420.72 223.66c-0.0712-7.2331 0.10218-13.479-0.13624-18.873-0.23739-5.3949-1.1911-9.7877-3.0582-13.617-1.767-4.1058-0.66985-7.4055-1.4997-11.779-0.8288-4.3721-0.62443-10.92-1.8774-16.108-0.34369-2.0261-1.3965-8.515-1.0713-9.1374 0.5109-1.4481 2.4565 0.0454 3.407-1.6328 1.4233-1.5513-4.9367-18.008-8.1631-22.707-1.1601-2.1066-3.2667-1.3851-5.8645 2.0405-2.409 2.2542-1.5152 7.3952-0.59554 12.286 6.1876 32.291 10.803 61.518 9.7959 92.257-0.30861 2.6134 9.1271-7.7956 9.0631-12.729z" fill="#fff"/> + <path id="path796" d="m375 183.61c-3.8922-0.0712-12.044-7.5738-14.423-11.97-0.89898-2.5215-0.32202-4.981 0.47065-6.4219 1.4408-0.93717 3.6579-1.9899 5.3154-0.98052 0 0 1.7185 2.4048 1.3862 2.7104 2.1252 1.0177 3.0272 0.43246 3.2429-0.43246 0.1445-1.5131-0.62856-2.4152-0.63682-4.0821 0.90105-4.5207 6.0679-5.2236 8.0134-2.3409 1.4243 1.7577 1.9466 5.492 2.1623 8.0134-0.0227 1.2881-2.1086-0.22294-3.2935 0.0867-1.1859 0.31067-1.4708 1.6782-1.5626 2.9158-0.21468 3.278-0.60276 8.5378-0.67501 12.501z" fill="#fff"/> + <path id="path797" d="m303.17 231.68c1.0724-9.8279-0.39634-27.331-0.49439-33.13-0.39324-13.7-2.6309-40.162-3.696-44.583-1.2004-8.3334 3.4277 0.91446 2.7867-3.9293-1.5007-8.322-6.1164-13.963-11.542-21.585-1.7494-2.4792-1.6906-2.9849-4.3917 0.60792-2.989 6.7811-0.40872 11.445 0.36331 16.726 3.9128 17.206 6.1959 33.037 7.259 48.687 1.0631 15.651 1.3892 32.572 0.41904 49.055 2.9323 0.11559 7.647-4.7437 9.2964-11.849z" fill="#fff"/> + <path id="path798" d="m433.97 215.94c-6.8626-11.515-17.219-23.987-19.986-28.624-2.7661-4.6384-26.166-34.83-29.148-37.86-8.5605-8.9929 3.9262-1.4636-1.639-8.4098-4.7065-5.1679-6.0792-6.7904-10.108-9.8981-2.0199-1.3056-3.244-3.7982-3.9076 0.45-0.26423 3.7322-0.5398 8.0496-0.289 11.195-0.0145 1.7484 1.8062 5.0337 3.3699 6.97 20.755 25.5 43.393 51.537 61.617 84.269 2.5927-1.3738 1.7309-16.066 0.0908-18.092z" fill="#fff"/> + <path id="path799" d="m122.59 194.69c-0.49439 0.86596-1.5936 1.9879-1.2251 3.149 0.771 1.0445 1.3862 1.2561 2.6701 1.3129 1.1137 0 2.6701 0.26319 3.0045-0.39428 0.59966-0.66056 1.0559-2.0085 0.55631-3.2811-1.1601-2.8992-4.4-1.8186-5.0058-0.78648z" fill="#1ba400"/> + <path id="path800" d="m354.17 362.54c9.1777 0.33751 15.185 0.41904 23.348 1.3903 0 0 7.0391-0.69566 9.5534-1.0755 10.626-1.0136 11.096 15.176 11.096 15.176-0.11663 9.4956-3.7817 9.992-8.4603 10.995-2.6732 0.34061-4.0779-1.6008-5.4827-3.6682-1.7639 0.73798-4.1605 0.84428-7.0649 0.44175-3.824-0.23945-7.6491-0.22397-11.473-0.46342-4.0635-0.35815-6.2248 0.42317-10.288 0.065-0.83705 1.3149-1.9259 3.1356-4.4113 2.5494-2.0674-0.2281-4.5166-6.0328-3.7951-10.445 1.4925-3.1645 1.0827-2.1468 0.92685-3.5371-37.525-0.95575-75.409-2.6288-112.22-2.151-28.8 0.11973-57.244 1.3149-85.687 2.5101-15.177-0.23945-26.769-2.6299-34.776-14.341 0.71733 0 38.72 2.151 49.835 1.4336 20.555-0.23945 39.317-1.9115 60.231-2.5091 41.23 0.7163 82.103 0.71733 123.33 3.5846-3.9438-2.698-4.0852-9.0714 1.9848-10.629 0.51606-0.35506 0.78235 3.1686 1.6906 3.1026 4.8562-0.36434 2.7269 6.2144 1.6586 7.5706z" fill="#fff"/> + <path id="path801" d="m188.64 135.28c-6.2485 17.859 3.5794 37.394 10.394 35.492 4.916 2.0354 8.0465-7.3168 10.059-17.563 1.3769-2.8755 2.4172-3.182 3.1242-1.704-0.18166 13.625 0.97845 16.643 4.4815 20.779 7.8142 6.0286 14.278 0.76996 14.785 0.26216l6.0844-6.0844c1.3542-1.4243 3.1573-1.5079 5.0698-0.25287 1.8589 1.6896 1.5977 4.6084 5.5776 6.6324 3.3492 1.3397 10.51 0.30963 12.169-2.5762 2.2325-3.8261 2.7682-5.14 3.8024-6.5912 1.5936-2.121 4.3102-1.1776 4.3102-0.5078-0.25391 1.1828-1.8485 2.3667-0.76068 4.497 1.895 1.4212 2.3326 0.50677 3.4535 0.19094 3.9644-1.895 6.941-10.518 6.941-10.518 0.17546-3.2078-1.6225-2.9426-2.7888-2.282-1.5214 0.92995-1.6204 1.2272-3.1418 2.1572-1.9383 0.28796-5.6984 1.573-7.5572-1.3056-1.8981-3.4607-1.9239-8.289-3.3751-11.78 0-0.2539-2.5184-5.4981-0.17443-5.8336 1.1828 0.21984 3.7064 0.88763 4.1079-1.2375 1.2406-2.0715-2.6567-7.9371-5.3237-10.901-2.3151-2.5411-5.5229-2.8476-8.6193-0.25287-2.1685 1.9951-1.8568 4.2245-2.282 6.3373-0.55219 2.4265-0.43453 5.4114 2.0281 8.6193 2.1644 4.2678 6.1133 9.7639 4.8169 17.492 0 0-2.3068 3.6527-6.3259 3.1748-1.6751-0.36537-4.3917-1.0765-5.8429-11.794-1.0982-8.1125 0.25906-19.463-3.1841-24.784-1.2437-3.213-2.152-6.3156-5.1823-0.82054-0.81435 2.1582-4.3091 5.4331-1.7742 12.169 2.0735 4.2709 2.9178 11.221 1.9765 18.954-1.4367 2.1974-1.7556 2.9416-3.6393 5.139-2.6464 2.8456-5.5178 2.119-7.7172 1.0569-2.055-1.3851-3.664-2.1014-4.6022-6.5014 0.16927-7.0133 0.56044-18.494-0.72146-20.929-1.8898-3.7724-5.0068-2.408-6.3383-1.2685-6.3971 5.8491-9.5575 15.718-11.489 23.577-1.7742 5.7273-3.662 4.0862-4.9893 1.7753-3.2316-3.0283-3.4504-26.709-7.3518-22.816z" fill="#fff"/> + <path id="path802" d="m207.45 174.1c2.8373-2.0096 1.511-3.4143 5.7541 0.82776 5.3124 9.0827 8.7266 20.845 9.2386 31.266-0.22398 2.5679 1.5864 4.1935 2.4141 3.6352 0.49232-6.0287 15.153-14.429 28.596-15.657 2.056-0.44691 1.0559-4.3865 1.3913-6.3961-0.80609-7.4633 4.1935-14.258 11.202-14.8 9.5379 1.4099 12.713 6.5024 12.874 14.275-1.0301 14.922-16.575 17.452-25.309 18.642-1.3397 0.50677-1.8981 1.125 0 1.8558l36.595 0.16618 1.8671 1.0786c0.22397 0.87215-0.53361 0.1445-1.9786 2.5236-1.4439 2.379-3.5742 7.8648-3.6847 11.528-10.903 3.5061-22.18 5.042-33.642 6.4281-3.982 2.0137-5.9554 4.6972-5.1379 7.7172 1.3397 3.3492 10.16 6.6954 10.16 6.8544 1.6751 1.0507 3.6568 3.502-0.47375 8.5254-17.851-0.78545-31.683-8.3819-36.472-19.104-1.4429-1.1188-2.9973-0.006-3.9933 1.4429-6.9689 8.9836-13.826 17.074-25.708 21.369-7.0856 1.7701-14.339-1.0868-17.765-5.7273-2.2934-2.6412-2.2056-5.557-3.0479-6.1886-3.8292 1.6937-36.785 15.697-32.608 9.1735 8.0207-8.5842 21.906-14.89 34.169-23.363 0.88453-2.8384 2.4936-12.442 7.3374-15.57 0.2797 0.0237-0.7679 5.6395-0.66263 8.0083 0.0547 1.9445-0.14243 2.7062 0.2828 2.2057 0.82777-0.52742 15.707-12.219 16.857-15.805 1.4512-2.056 0.43556-7.2631 0.43556-7.421-2.7909-7.1919-6.7047-7.8029-8.1559-11.376-1.3067-4.7468-0.71526-10.165 1.9982-11.675 2.409-2.1871 5.2628-1.9167 7.8947 0.47374 3.0056 2.6918 5.6746 7.9525 6.4467 11.872-0.51607 1.5502-3.9324-1.0301-5.1183-0.26113 2.0983 2.1726 3.0778 4.6786 3.8354 7.7451 1.9383 8.2085 1.3469 11.4-0.60379 16.708-6.6066 13.89-15.049 18.035-22.436 23.181-0.19714 0.0702-0.32822 3.5247 2.4503 5.3929 0.95781 1.0053 4.8107 1.5214 9.3418 0.0702 8.7545-4.7746 17.843-13.569 22.355-23.367 1.3098-7.4117-0.50677-15.27-2.4338-22.124-2.9034-6.6985-6.3228-16.262-6.3228-16.42-0.11251-4.177 0.22706-5.6261 2.0591-7.71z" fill="#fff"/> + <path id="path803" d="m111.64 135.47c4.2121 2.0085 12.131 1.1539 11.796-5.6375 0-0.6007-0.15275-2.633-0.21261-3.1831-0.85977-2.0023-3.2058-1.5079-3.7373 0.55941-0.1672 0.67708 0.29829 1.7794-0.31479 2.12-0.35196 0.35505-1.6978 0.14657-1.6421-1.7298 0-0.5976-0.44072-1.2406-0.70597-1.6194-0.26629-0.17443-0.43556-0.22294-0.91756-0.22294-0.58728 0.0237-0.57799 0.1765-0.90002 0.66985-0.13624 0.50265-0.32512 0.99394-0.32512 1.5637-0.0733 0.66779-0.32512 0.90621-0.81641 1.0043-0.54909 0-0.42524 0.0609-0.87008-0.22294-0.26423-0.28899-0.59451-0.39943-0.59451-0.89279 0-0.5109-0.1156-1.3376-0.26938-1.6751-0.23327-0.30757-0.60793-0.45-1.0301-0.55838-2.3006 0.008-2.4596 2.6319-2.3274 3.6279-0.17237 0.18785-0.27042 4.8943 2.8672 6.1969z" fill="#fff"/> + <path id="path804" d="m235.11 187.73c4.2121 2.0085 14.238 0.85253 11.796-5.6375 0-0.6007-0.15276-2.633-0.21262-3.1831-0.85976-2.0023-3.2058-1.5079-3.7373 0.55941-0.16721 0.67708 0.29828 1.7794-0.3148 2.12-0.35196 0.35505-1.6978 0.14656-1.6421-1.7298 0-0.5976-0.44071-1.2406-0.70597-1.6194-0.26629-0.17443-0.43556-0.22294-0.91756-0.22294-0.58728 0.0237-0.57799 0.17649-0.90002 0.66985-0.13624 0.50265-0.32512 0.99394-0.32512 1.5637-0.0733 0.66779-0.32512 0.90621-0.81641 1.0043-0.54909 0-0.42523 0.0609-0.87008-0.22294-0.26423-0.28899-0.59451-0.39943-0.59451-0.89279 0-0.5109-0.1156-1.3376-0.26938-1.6751-0.23326-0.30757-0.60792-0.45001-1.0301-0.55838-2.3006 0.008-2.4596 2.6319-2.3274 3.6279-0.17237 0.18784-0.27042 4.8943 2.8672 6.1969z" fill="#fff"/> + <path id="path805" d="m307.11 166.1c4.2121 2.0085 12.131 1.1539 11.796-5.6375 0-0.60069-0.15276-2.633-0.21262-3.1831-0.85976-2.0023-3.2058-1.5079-3.7373 0.55942-0.16721 0.67707 0.29828 1.7794-0.3148 2.12-0.35196 0.35505-1.6978 0.14656-1.6421-1.7298 0-0.5976-0.44072-1.2406-0.70598-1.6194-0.26629-0.17443-0.43556-0.22294-0.91756-0.22294-0.58728 0.0237-0.57799 0.1765-0.90002 0.66986-0.13624 0.50264-0.32512 0.99393-0.32512 1.5637-0.0733 0.66778-0.32512 0.9062-0.81641 1.0043-0.54909 0-0.42523 0.0609-0.87008-0.22294-0.26423-0.289-0.59451-0.39944-0.59451-0.89279 0-0.51091-0.11559-1.3376-0.26938-1.6751-0.23326-0.30758-0.60792-0.45001-1.0301-0.55839-2.3006 0.008-2.4596 2.6319-2.3274 3.6279-0.17237 0.18785-0.27042 4.8944 2.8672 6.1969z" fill="#fff"/> + <path id="path806" d="m344.4 220.43c-7.3405 8.2725-4.1037 21.955-2.4462 24.903 2.4203 4.8417 4.369 7.9474 9.0786 10.342 4.2895 3.1573 7.6316 1.1838 9.4739-1.027 4.3164-4.4732 4.368-15.894 6.394-18.157 1.4212-4.1574 4.9996-3.4473 6.7367-1.605 1.6834 2.4203 3.6661 3.9809 6.1391 5.2979 4.0263 3.5516 8.834 4.2008 13.57 0.96401 3.2368-1.8155 5.3413-4.1615 7.2362-8.8185 2.1055-5.6313 0.93201-31.648 0.5109-47.068-0.16204-1.2097-4.1842-21.205-4.1842-21.428 0-0.22397-0.53155-10.205-0.97433-12.583-0.0774-0.96504-0.31686-1.2427 0.69462-1.1199 1.0724 0.90208 1.2189 0.95885 1.8888 1.2561 1.0827 0.19817 2.0519-1.6442 1.3985-3.34-3.3492-6.1773-6.6985-12.356-10.048-18.533-0.80609-0.7937-1.8475-1.6658-3.1263 0.22397-1.222 1.0714-2.5236 3.0107-2.4833 5.5033 0.29725 4.3917 1.0693 8.8608 1.3665 13.253 1.3397 7.517 2.6804 15.035 4.0201 22.552 1.2654 16.076 1.5822 29.233 2.8476 45.309-0.17753 6.8069-2.2934 12.742-4.2782 13.598 0 0-3.02 1.7505-5.045-0.18269-1.4728-0.59141-7.3684-9.8248-7.3684-9.8248-3.0138-2.763-5.0007-1.9734-7.1454 0-5.9141 5.7108-8.5904 16.394-12.609 23.763-1.0363 1.6442-3.9654 3.052-7.2104-0.11972-8.2415-11.259-3.4112-27.278-4.4371-23.159z" fill="#fff"/> + <path id="path807" d="m309 126.67c3.7735 1.5792 6.4353 9.2231 5.5673 12.955-0.75139 4.6167-2.7527 9.6029-4.1915 8.9537-1.5637-0.58006 1.0662-4.5888-0.43659-8.7958-0.83499-2.7382-5.9843-7.741-5.4424-9.2159-1.0631-3.0902 2.1891-4.4423 4.5032-3.8973z" fill="#fff"/> + <path id="path808" d="m356.55 224.96c0.79371-9.1787-0.54599-14.776-0.78441-20.171-0.23739-5.3949-6.1019-46.559-7.291-50.641-1.4347-7.7182 5.7004-1.0352 4.9212-5.5239-2.4688-5.6592-8.6121-13.9-10.541-18.816-1.1601-2.1066-0.67295-3.9799-3.2708-0.55425-2.409 7.8762-3.245 14.314-2.3254 19.205 6.1876 32.291 12.533 59.14 11.526 89.879 2.9343 0.0196 6.3166-6.714 7.7657-13.377z" fill="#fff"/> + <path id="path809" d="m421.02 139.68c3.4401 1.7102 5.4548 11.289 5.075 14.026-0.6843 4.9986-2.5091 10.397-3.8209 9.6937-1.4254-0.62753 0.2859-7.4127-0.3984-9.5224-0.76067-2.9643-5.4548-8.3809-4.9614-9.9776-0.96917-3.3451 1.9961-4.8087 4.1058-4.2193z" fill="#fff"/> + <path id="path810" d="m165.35 207.6c3.2904 1.2561 5.2195 8.2952 4.8562 10.307-0.65644 3.6723-2.4028 7.6388-3.6558 7.1227-1.3645-0.46136 0.27352-5.4476-0.38189-6.9978-0.27764-3.76-4.8448-5.7066-4.7488-7.3312-0.85254-2.9859 1.9105-3.535 3.9303-3.1005z" fill="#fff"/> + <path id="path811" d="m244.86 218.17c4.2472 0.26938 6.3692 3.6021 2.3914 4.9996-3.9242 1.3438-7.6955 2.3935-7.7131 8.064 1.4512 7.902-1.991 5.1906-4.0439 4.1172-2.4193-1.7371-9.2086-5.9192-10.176-14.95-0.14553-2.1551 1.5348-3.9685 4.24-3.9561 4.0748 1.1075 10.087 1.188 15.301 1.7257z" fill="#1b9d00"/> + <path id="path812" d="m77.399 124.39c4.8551 1.4636 5.1421 8.5997 4.7839 10.686-0.64714 3.8075-2.3667 7.9195-3.6021 7.3838-1.3438-0.47788-0.05264-5.6468-0.69772-7.2548-0.71939-2.2583-4.8221-6.3837-4.3566-7.5996-0.91343-2.5494 1.8826-3.6651 3.8725-3.2151z" fill="#fff"/> + <path id="path813" d="m173.28 158.03c-3.725 2.0147-5.1699 8.0207-2.8507 11.518 2.1664 3.0799 5.5879 1.9383 6.0441 1.9383 3.6496 0.4562 5.815-6.842 5.815-6.842s0.11457-2.0519-4.2193 1.8258c-1.8238 0.34163-2.0519-0.34267-2.5081-1.3696-0.37982-1.9002-0.30448-3.8003 0.56973-5.7015 0.64611-1.8238-0.76068-2.6226-2.8507-1.3686z" fill="#fff"/> + <path id="path814" d="m201.22 121.63c-1.8723 1.2551-5.5982 5.1152-5.7118 9.5626-0.11353 2.5091-0.58108 2.5019 1.0621 4.0986 1.187 1.7113 2.3842 1.5575 4.7798 0.30241 1.3758-1.0135 1.8413-1.6865 2.3047-3.3864 0.57077-2.8507-3.0138 1.3521-3.47-1.8207-0.79783-2.9457 1.5038-4.1512 3.6702-7.002 0.0723-1.9528 0.0299-3.3358-2.635-1.7546z" fill="#fff"/> + <path id="path815" d="m223.73 125.63c-0.80712 1.7825-1.7742 11.093-1.6132 11.093-0.64405 2.7744 2.9034 3.9613 4.5166 0.3953 2.4183-6.5375 2.4183-9.3108 2.5803-12.084-0.75345-4.2245-3.6021-4.0924-5.4837 0.59554z" fill="#fff"/> + <path id="path816" d="m365.65 197.85c0.48406-0.48407 19.998-14.353 19.998-14.353 1.9889-0.69875 1.5585 7.1496 0.64508 7.0959 0.37569 1.5585-19.245 14.89-20.644 14.353-0.96711 0.69875-1.9352-5.3753 0-7.0959z" fill="#fff"/> + <path id="path817" d="m383.44 197.73c3.4401 1.7102 4.8097 11.773 4.4299 14.51 0.12179 5.3216-3.3152 9.5905-4.627 8.8876-1.4254-0.62753 0.12488-6.6066-0.55942-8.7163-0.76068-2.9643-3.6816-8.5419-3.1882-10.139-0.96916-3.3451 1.8351-5.1317 3.9448-4.5424z" fill="#fff"/> + <path id="path818" d="m267.37 241.07c1.3572-1.9838 5.5498-4.8386 5.6447-4.8386 1.9342-0.96814 3.824 0.75861 3.7095 0.64508 0.32202 1.9352-1.2241 3.7363-0.74004 6.3176 0.42317 1.0404 0.73281 2.1953 2.6392 1.7546 3.0984-2.4379 5.9688-2.5948 9.0672-2.7506 2.3749 0.14347 2.4688 4.1636 0.9671 4.1935-5.7211 1.2437-8.2849 2.7754-12.37 4.3349-1.9352 1.1281-3.5959-0.30345-3.5959-0.46446s-1.1322-1.0982-0.34164-3.662c0.14037-2.056-0.68739-3.1831-2.3997-2.9498-1.2902 0.69772-2.4265 1.1601-3.0716-0.32306-0.2539-1.0951-0.33648-1.6277 0.49129-2.2573z" fill="#fff"/> + <path id="path819" d="m403.97 246.49c0.83602 1.0641 1.3769 2.0488-0.0671 3.7972-1.3686 1.254-2.3326 1.9445-3.7012 3.1986-0.64611 1.1023-1.059 2.7744 0.91757 3.3069 3.6496 1.0259 12.088-4.4474 12.088-4.562 1.3686-1.0259 0.9124-2.9643 0.79783-2.9643-0.79783-0.9124-2.5958-0.37053-3.8054-0.51813-0.57593 0-2.4647-0.2859-1.5657-1.9579 0.75036-1.0404 1.0187-1.6772 1.5276-2.9591 0.56973-1.254 0.0805-2.0911-1.9724-2.7754-2.0911-0.37982-2.9261-0.18991-5.2453 0-1.254 0.26629-1.6824 0.82673-1.9105 2.3471 0.0898 2.3058 1.4924 2.1747 2.9364 3.0871z" fill="#fff"/> + <path id="path820" d="m384.69 181.37c0 1.7259-1.539 3.125-3.4375 3.125s-3.4375-1.3991-3.4375-3.125 1.539-3.125 3.4375-3.125 3.4375 1.3991 3.4375 3.125z" transform="matrix(.89344 .51677 -.31006 .53607 -19.345 -106.28)" fill="#259f00"/> + <path id="path821" d="m384.69 181.37c0 1.7259-1.539 3.125-3.4375 3.125s-3.4375-1.3991-3.4375-3.125 1.539-3.125 3.4375-3.125 3.4375 1.3991 3.4375 3.125z" transform="matrix(.32696 .71792 -.58738 .14386 159.8 -166.12)" fill="#259f00"/> + <path id="path822" d="m355.24 374.97c9.3511 0.4562 18.137 0.10631 27.488 0.56251 1.6937 1.4398 0.48407 4.9759-0.64508 4.722-3.0406-0.0764-4.7922-0.15172-7.8328-0.2281-0.10424-2.9787-7.7059-2.4895-7.487 0.0949-4.1048 0.49336-7.807-0.14346-11.912-0.29518-1.2138-1.511-1.0579-4.2317 0.38912-4.8562z" fill="#209000"/> + </g> +</svg> diff --git a/s/flag/sb.svg b/s/flag/sb.svg new file mode 100755 index 0000000..da01585 --- /dev/null +++ b/s/flag/sb.svg @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3032"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath15551" clipPathUnits="userSpaceOnUse"> + <rect id="rect15553" fill-opacity="0.67" height="512" width="682.67" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath15551)" transform="scale(.9375)" stroke-width="1pt"> + <path id="path1338" d="m0.000065516 507.17 987.43-507.17h-987.43v507.17z" fill="#0000d6"/> + <path id="path552" d="m1024 0.0000021658-996.83 512h996.83v-512z" fill="#006000"/> + <path id="path558" d="m1024 0.000057287h-54.858l-969.14 485.36v26.64h54.857l969.14-484.4v-27.596z" fill="#fc0"/> + <polygon id="polygon1350" transform="matrix(.54314 0 0 .51115 -218.52 -122.19)" points="533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28" fill="#fff"/> + <polygon id="polygon1351" transform="matrix(.54314 0 0 .51115 -27.378 -122.19)" points="533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28" fill="#fff"/> + <polygon id="polygon1352" transform="matrix(.54314 0 0 .51115 -27.378 22.289)" points="533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28" fill="#fff"/> + <polygon id="polygon1353" transform="matrix(.54314 0 0 .51115 -122.39 -49.108)" points="533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28" fill="#fff"/> + <polygon id="polygon1354" transform="matrix(.54314 0 0 .51115 -218.52 22.289)" points="533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/sc.svg b/s/flag/sc.svg new file mode 100755 index 0000000..59d2a4a --- /dev/null +++ b/s/flag/sc.svg @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>SVG graphic of Seychelles flag</dc:title> + <dc:rights><Agent> + <dc:title>Russell Cloran</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> + +</rdf:RDF> +--> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3043"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath15459" clipPathUnits="userSpaceOnUse"> + <rect id="rect15461" fill-opacity="0.67" height="512" width="682.67" y=".000011991" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath15459)" transform="matrix(.93750 0 0 .93750 0 -.000011241)" stroke-width="1pt"> + <rect id="rect551" height="512" width="992.13" y=".000013059" x="0" fill="#f00"/> + <path id="path552" d="m0 512 992.12-170.67v170.67h-992.12z" fill="#090"/> + <path id="path553" d="m0 512 992.12-341.33v170.67l-992.12 170.66z" fill="#fff"/> + <path id="path554" d="m0 512v-512h330.71l-330.71 512z" fill="#009"/> + <path id="path555" d="m0 512 330.71-512h330.71l-661.42 512z" fill="#ff0"/> + </g> +</svg> diff --git a/s/flag/sd.svg b/s/flag/sd.svg new file mode 100755 index 0000000..e85f2ce --- /dev/null +++ b/s/flag/sd.svg @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3052"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath15393" clipPathUnits="userSpaceOnUse"> + <rect id="rect15395" fill-opacity="0.67" height="512" width="682.67" y=".000017254" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath15393)" transform="matrix(.93750 0 0 .93750 0 -.000016175)" stroke-width="1pt"> + <rect id="rect551" height="170.68" width="1024" y="341.32" x="0"/> + <rect id="rect552" height="170.68" width="1024" y="170.64" x="0" fill="#fff"/> + <rect id="rect553" height="170.68" width="1024.8" y=".000018123" x="0" fill="#f00"/> + <path id="path556" d="m0 0.00011235v512l341.32-256-341.32-256z" fill="#009a00"/> + </g> +</svg> diff --git a/s/flag/se.svg b/s/flag/se.svg new file mode 100755 index 0000000..71c24e6 --- /dev/null +++ b/s/flag/se.svg @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg589" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3065"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs591"> + <clipPath id="clipPath15333" clipPathUnits="userSpaceOnUse"> + <rect id="rect15335" fill-opacity="0.67" height="512" width="682.67" y=".0000090621" x="-53.421"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath15333)" transform="matrix(.9375 0 0 .9375 50.082 -.0000084958)"> + <g id="g558" fill-rule="evenodd" stroke-width="1pt" transform="matrix(2.9257 0 0 2.9257 -745.33 -969.48)"> + <rect id="rect552" height="70" width="87.5" y="331.47" x="213.36" fill="#006aa7"/> + <rect id="rect553" height="70" width="87.5" y="436.36" x="213.36" fill="#006aa7"/> + <rect id="rect554" height="35" width="87.5" y="401.43" x="213.36" fill="#fecc00"/> + <rect id="rect556" height="175" width="35" y="331.37" x="300.5" fill="#fecc00"/> + <rect id="rect557" height="35" width="157.5" y="401.44" x="334.39" fill="#fecc00"/> + <rect id="rect558" height="70" width="157.5" y="436.37" x="335.47" fill="#006aa7"/> + <rect id="rect559" height="70" width="157.5" y="331.47" x="335.47" fill="#006aa7"/> + </g> + </g> +</svg> diff --git a/s/flag/sg.svg b/s/flag/sg.svg new file mode 100755 index 0000000..c791552 --- /dev/null +++ b/s/flag/sg.svg @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3079"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath15251" clipPathUnits="userSpaceOnUse"> + <rect id="rect15253" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath15251)"> + <g id="g15168" fill-rule="evenodd" transform="matrix(.9375 0 0 .9375 -1.2495 -.0000022609)"> + <rect id="rect149" height="512" width="768" y=".0000024116" x="-20" stroke-width="1pt" fill="#fff"/> + <rect id="rect148" height="256" width="768" y=".0000024116" x="-20" stroke-width="1pt" fill="#df0000"/> + <path id="path141" d="m157.12 42.909c-35.46 8.13-61.807 34.386-69.256 70.081-10.121 48.5 21.466 95.99 70.066 106.12-49.1 14-99.829-14.22-113.7-62.86-13.863-48.64 14.358-99.372 63-113.24 17.075-4.8694 32.795-4.9 49.892-0.10094z" stroke-width=".52437" fill="#fff"/> + <polygon id="polygon142" transform="matrix(1.3251 0 0 1.3251 -204.33 -574.79)" points="262.25 522.28 266.19 534.45 266.19 534.45 255.78 527.02 245.42 534.52 249.27 522.33 238.94 514.8 251.72 514.69 255.69 502.53 259.74 514.66 272.53 514.68" stroke-width=".52437" fill="#fff"/> + <polygon id="polygon144" transform="matrix(1.3251 0 0 1.3251 -185.6 -519.26)" points="262.25 522.28 266.19 534.45 266.19 534.45 255.78 527.02 245.42 534.52 249.27 522.33 238.94 514.8 251.72 514.69 255.69 502.53 259.74 514.66 272.53 514.68" stroke-width=".52437" fill="#fff"/> + <polygon id="polygon145" transform="matrix(1.3251 0 0 1.3251 -123.28 -519.66)" points="262.25 522.28 266.19 534.45 266.19 534.45 255.78 527.02 245.42 534.52 249.27 522.33 238.94 514.8 251.72 514.69 255.69 502.53 259.74 514.66 272.53 514.68" stroke-width=".52437" fill="#fff"/> + <polygon id="polygon146" transform="matrix(1.3251 0 0 1.3251 -104.69 -574.74)" points="262.25 522.28 266.19 534.45 266.19 534.45 255.78 527.02 245.42 534.52 249.27 522.33 238.94 514.8 251.72 514.69 255.69 502.53 259.74 514.66 272.53 514.68" stroke-width=".52437" fill="#fff"/> + <polygon id="polygon147" transform="matrix(1.3251 0 0 1.3251 -154.03 -611.28)" points="262.25 522.28 266.19 534.45 266.19 534.45 255.78 527.02 245.42 534.52 249.27 522.33 238.94 514.8 251.72 514.69 255.69 502.53 259.74 514.66 272.53 514.68" stroke-width=".52437" fill="#fff"/> + </g> + </g> +</svg> diff --git a/s/flag/sh.svg b/s/flag/sh.svg new file mode 100755 index 0000000..4e08859 --- /dev/null +++ b/s/flag/sh.svg @@ -0,0 +1,795 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata1053"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <g id="g6" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)" stroke="#000" stroke-width="1.0667" fill="none"></g> + <g id="g10" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)" stroke="#000" stroke-width="1.0667" fill="none"></g> + <g id="g14" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)"></g> + <g id="g18" fill="#00009e" transform="matrix(2.2221 0 0 3.3335 -355.51 -1931.3)"> + <path id="path20" d="m448.01 723.36v-143.99h-288.02v143.99h288.02z" fill="#006"/> + </g> + <g id="g22" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)" stroke="#000" stroke-width="1.0667" fill="#00009e"></g> + <g id="g13544" transform="matrix(.75105 0 0 .91676 0 .0000037437)"> + <g id="g26" fill="#fff" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)"> + <path id="path28" d="m159.99 603.36h30.373l-30.373-15.24v-8.749h17.378l42.488 21.178v-21.178h23.925v21.178l42.488-21.178h17.528v8.749l-30.523 15.24h30.523v24.008h-30.523l30.523 15.24v8.752h-17.528l-42.488-21.181v21.181h-23.925v-21.181l-42.488 21.181h-17.378v-8.752l30.373-15.24h-30.373v-24.008z"/> + </g> + <g id="g30" fill="#ef072d" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)"> + <path id="path32" fill="#ce1126" d="m292.49 579.37-48 24.006h11.49l47.814-24.006h-11.304z"/> + </g> + <g id="g34" fill="#ef072d" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)"> + <path id="path36" fill="#ce1126" d="m303.8 651.36-47.865-23.993h11.541l36.324 18.273v5.72z"/> + </g> + <g id="g38" fill="#ef072d" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)"> + <path id="path40" fill="#ce1126" d="m208.08 603.37-48.092-24.006v5.733l36.501 18.273h11.591z"/> + </g> + <g id="g42" fill="#ef072d" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)"> + <path id="path44" fill="#ce1126" d="m207.98 627.36-47.993 23.993h11.484l48-23.993h-11.491z"/> + </g> + <g id="g46" fill="#ef072d" transform="matrix(3.3331 0 0 3.3335 -533.27 -1931.3)"> + <path id="path48" fill="#ce1126" d="m159.99 608.34h64.962v-28.97h14.059v28.97h64.786v14.058h-64.786v28.961h-14.059v-28.961h-64.962v-14.058z"/> + </g> + </g> + <g id="g3684" transform="matrix(4.4862 0 0 4.4867 -1190.9 -2609)"> + <g id="g50" stroke="#fff" stroke-width="1.1019" fill="#4fa8ff"> + <path id="path52" d="m399.67 640.77c-0.046 16.332-2.623 33.927-23.764 42.308-21.142-8.381-23.719-25.976-23.765-42.308h47.529z" stroke="#fff" stroke-width="1.1119" fill="#8fc5ff"/> + </g> + <g id="g54" stroke-width="1.1019" stroke="#000" fill="#fff"> + <path id="path56" d="m375.9 683.08c9.584-3.799 15.353-9.493 18.8-16.104-0.516 0.02-1.597-0.011-2.064-0.043-0.52-0.034-20.271-2.018-22.61-2.876-2.035-0.746-9.799 0.634-13.423 1.929 3.381 7.032 9.237 13.106 19.297 17.094z" fill="#366cc9"/> + </g> + <g id="g58" stroke-width=".13774" stroke="#000"> + <path id="path60" d="m361.13 672.95c0.323-0.105 0.94-0.08 1.183-0.036 0.286 0.052 0.338 0.078 0.442-0.234s0.338-0.234 0.52-0.078 0.649 0.078 0.831-0.182c0.182-0.259 0.234-0.233 0.416-0.052 0.182 0.182 0.26 0.13 0.442 0.078 0.182-0.051 0.494-0.259 0.65-0.545s0.389-0.39 0.519-0.234 0.26 0.234 0.442 0.208 0.234 0.156 0.208 0.389c-0.026 0.234 0.078 0.286 0.52-0.077 0.39 0.389 0.519 0.233 0.519-0.182 0-0.416-0.103-1.949-0.259-2.157s-0.312-0.806-0.338-1.274c-0.049-0.883-0.052-0.935-1.118-1.481 0-0.312-0.078-0.442-0.831-0.39 0.026-0.104-0.104-0.416-0.26-0.546s-0.182-0.182-0.104-0.545c0.312 0.026 0.65-0.026 0.832-0.286 0.181-0.26 0.779-0.208 1.143-0.052s0.832 0.182 1.533 0.078c0.26-0.208 0.702-0.442 1.17-0.702 0.467-0.26 0.597-0.364 0.623-0.728 0.067-0.933-0.26-2.001-0.52-2.494-0.259-0.494-0.337-1.118-0.701-1.898-0.396-0.849-0.39-1.065-0.832-1.585-0.121-0.143-0.26-0.26-0.286-0.545-0.026-0.286-0.13-0.676-0.441-0.962-0.786-0.721-1.092-3.041-1.404-4.756-0.179-0.983-0.052-3.3-0.467-3.664-0.702-0.572-1.04-0.468-1.508-0.65-0.338-0.468-0.493-1.403-0.805-2.235-0.494 0.078-0.832 0.598-1.17 0.78s-0.39 0.182-0.39 0.65c0 0.467-0.26 1.117-0.727 1.845-0.468 0.727-1.248 0.52-1.897 1.611-1.43-1.741-1.456-2.235-1.56-2.729-0.104-0.493-0.338-0.597-1.143-1.299 0-0.208-0.104-1.039-0.026-1.507-0.598-0.494-1.04-0.416-1.325-0.052-0.286 0.364-0.494 0.909-0.936 1.117-0.265 0.337-1.064 1.187-1.718 2.199 0.595 9.044 2.636 18.022 8.773 25.202z" fill="#5d3100"/> + </g> + <g id="g62" stroke="#fff" stroke-width=".27549" fill="#ff0"> + <path id="path64" d="m399.67 640.77c0.018-6.152-0.324-12.125-0.168-17.359-7.9-3.535-18.295-4.262-23.596-4.262-5.302 0-15.697 0.727-23.597 4.262 0.156 5.234-0.185 11.207-0.168 17.359h47.529z" stroke="#fff" stroke-width="1.0799"/> + </g> + <g id="g66" fill="#cf6200"> + <path id="path68" d="m353.42 647.89c0.26 0.416 0.728 1.131 0.78 1.52 0.182-0.377 0.325-0.545 0.364-0.779s0.312-0.689 0.208-0.936-0.182-0.442 0.104-0.26c0.285 0.182 0.23 0.497 0.168 0.962-0.168 1.273-0.701 1.533-0.779 2.391 0.767 1.806 0.195 2.456 1.026 4.223 0.13 0.078 0.477-0.061 0.581-0.035 0.441-0.312 0.771-0.199 1.394-0.069 0.624 0.13 0.962 0.571 0.962 0.961s0 0.494 0.13 0.728 0.39 0.598 0.338 0.858c-0.052 0.259 0.052 0.415 0.13 0.545s-0.026 0.416-0.104 0.598-0.052 0.416 0.26 0.806c0.312 0.389 1.039 2.027 1.039 2.988 0 0.962 0.052 1.404 0.442 1.585 0.39 0.182 0.52 0.338 0.468 0.754s0.182 2.573 0.234 2.911 0.182 0.26 0.338 0.442c0.155 0.181 0.259 0.389 0.779 0.389s1.022-0.069 1.36-0.017c0.468 0.65 0.754 1.533 0.858 2.079s0.095 1.291 0.277 1.291 0.364 0.026 0.312-0.65-0.104-0.78-0.338-1.117c-0.234-0.338-0.364-0.494-0.234-0.702s0.156-0.546 0.104-0.806-0.13-0.649 0.312-0.13c0.442 0.52 0.572 0.65 0.702 0.832s0.181 0.52 0.156 0.832c-0.026 0.311 0.025 0.441 0.207 0.285 0.182-0.155 0.416 0.104 0.312 0.442s0.026 0.546 0.338 0.65 0.442 0.182 0.52 0.416 0.338 0.337 0.338-0.13c0-0.468-0.182-1.456-0.312-1.767-0.13-0.312-0.234-0.988-0.26-1.378s-0.104-0.493-0.286-0.571-0.338-0.208-0.364-0.39-0.182-0.247-0.299-0.247-0.22-0.091-0.285-0.221-0.13-0.143-0.26-0.156-0.338 0.065-0.403-0.143-0.156-0.507-0.286-0.676-0.247-0.221-0.26-0.805c-0.013-0.585-0.026-0.663-0.208-0.871s-0.494-0.753-0.624-0.987c-0.129-0.234-0.259-0.468-0.259 0.026 0 0.493 0 0.753 0.311 0.935 0.312 0.182 0.39 0.182 0.26 0.442s0 0.442 0.052 0.624 0.156 0.364 0 0.545c-0.156 0.182-0.312 0.13-0.286-0.155 0.026-0.286-0.078-0.624-0.207-0.858-0.13-0.234-0.234-0.39-0.39-0.26s-0.286-0.026-0.182-0.13 0.078-0.182 0-0.26-0.104-0.156 0.026-0.312 0.13-0.234 0.052-0.597c-0.078-0.364-0.65-2.183-0.91-2.599s-0.234-0.728 0.104-0.312 0.624 0.78 0.65 1.117c0.026 0.338 0.104 0.546 0.208 0.676s0.182 0.078 0.234-0.208 0.26-0.182-0.104-0.727c-0.364-0.546-1.04-1.456-1.3-3.093s-0.364-2.729-0.624-3.17c-0.259-0.442-0.337-0.546-0.363-0.962s0-0.832-0.182-1.143c-0.182-0.312-0.312-0.364-0.338 0.104-0.026 0.467 0.026 1.507 0.156 1.689s0.052 0.649 0.026 0.909-0.435 0.517 0.416 1.04c0.338 0.208 0.285 0.494 0.234 0.676-0.052 0.181-0.104 0.155-0.286-0.13-0.182-0.286-0.364-0.52-0.546-0.676s-0.208-0.26-0.182-0.624 0.104-0.624 0-0.753c-0.104-0.13-0.156-0.026-0.208 0.181-0.052 0.208-0.104 0.78-0.208 0.936s-0.156 0.052-0.234-0.286 0.026-0.857 0.208-1.455 0.286-1.222 0.13-2.001c-0.156-0.78-0.078-1.014-0.676-1.663-0.597-0.65-1.273-1.274-1.559-2.079-0.286-0.806-0.338-1.508-0.65-1.872-0.311-0.363-0.753-0.831-1.039-0.961v-1.195c0-0.286-0.13-0.468-0.468-0.416s-0.546 0.338-0.753 0.727c-0.208 0.39-0.364 0.208-0.65 0.884s-0.702 1.013-0.702 1.741z"/> + </g> + <g id="g70" fill="#cf6200"> + <path id="path72" d="m355.3 655.51c0.208 0.13 0.407 0.217 0.719 0.061s0.685-0.606 1.101-0.164c0.415 0.441 0.649 1.169 0.649 1.741 0 0.571 0 1.637 0.65 2.235 0.65 0.597 0.987 1.221 1.013 2.001 0.026 0.779 0.312 1.975 0.39 2.287 0.078 0.311 0.26 0.675 0.468 0.883s0.364 0.806 0.39 1.429c0.026 0.624-0.078 1.066 0 1.378s0 0.572-0.234 0.416-0.286-0.234-0.416-0.494-0.286-0.208-0.156 0.182 0.52 0.753 0.858 0.753 0.442 0.052 0.65 0.26c0.207 0.208 0.233 0.312 0.597 0.312s0.416 0 0.754 0.104 0.338 0.052 0.52 0 0.363 0.104 0.493 0.442 0.442 1.273 0.442 1.533 0 0.52 0.182 0.78 0.13 0.52-0.078 0.364-0.208-0.104-0.364-0.078-0.26-0.052-0.467-0.182c-0.208-0.13-0.078-0.104-0.286-0.416s-0.338-0.416-0.338-0.182-0.026 0.52-0.182 0.39-0.234-0.13-0.364 0-0.182 0.234-0.338-0.026-0.338-0.26-0.494-0.312-0.156-0.052-0.233-0.286c-0.078-0.234-0.312-0.286-0.52-0.286s-0.312-0.104-0.338-0.26c-0.026-0.155-0.156-0.259-0.26-0.337s-0.052-0.26-0.078-0.442-0.182-0.104-0.286-0.156-0.182-0.026-0.182-0.286-0.104-0.338-0.182-0.52c-0.077-0.182 0-0.364 0.052-0.571 0.052-0.208 0.026-0.338-0.129-0.52-0.156-0.182-0.026-0.364-0.442-0.728s-0.624-0.052-0.754-0.909c-0.13-0.858-0.39-2.625-0.624-2.911s-0.389-0.494-0.623-0.572-0.39-0.026-0.416-0.52c-0.026-0.493-0.182-1.117-0.494-1.429s-0.442-0.416-0.598-0.546-0.208-0.364 0-0.805c0.208-0.442 0.13-1.04 0.104-1.326-0.026-0.285-0.104-0.649-0.052-0.961s0.026-0.702-0.052-0.91-0.182-0.26-0.052-0.416z"/> + </g> + <g id="g74" fill="#cf6200"> + <path id="path76" d="m361.56 648.12c-0.352 0.453-0.727 0.832-1.212 1.178-0.485 0.347-1.109 0.624-0.763 1.213 0.347 0.589 0.624 0.659 0.693 1.109 0.07 0.45 0.174 0.832 0.52 0.936 0.347 0.103 0.485 0.034 0.485 0.762s0 1.005 0.312 1.282 0.277 0.554 0.416 1.213c0.138 0.658 0.138 2.079 0.554 3.049s1.352 2.807 1.248 3.188-0.243 0.658 0.173 1.108c0.416 0.451 0.693 1.109 0.728 1.49 0.034 0.382 0.104 0.52 0.519 0.382 0.416-0.139 0.624-0.278 0.763-0.451 0.138-0.173 0.415-0.138 0.797 0.069 0.381 0.208 0.97 0.416 1.316 0.208 0.347-0.208 0.52-0.519 0.832-0.519 0.485-0.347 0.658-1.075 0.762-1.282 0.104-0.208 0.035-0.208-0.173-0.416s-0.104-0.555-0.139-0.901c-0.034-0.347-0.173-0.866-0.589-1.629-0.415-0.762-0.658-1.698-0.935-1.94-0.277-0.243-0.416-0.832-0.451-1.109-0.034-0.277-0.346-0.52-0.554-0.728-0.208-0.207-0.416-0.519-0.658-1.732-0.243-1.213-0.416-2.079-0.416-2.287s-0.035-0.243-0.243-0.312-0.312-0.416-0.242-0.589c0.069-0.173-0.07-0.346-0.139-0.554s0-0.589 0.139-0.797c0.138-0.208 0.104-0.797-0.035-1.282s-0.277-0.901-0.832-0.971c-0.554-0.069-0.658-0.207-0.866-0.658-0.208-0.45-0.416-1.247-0.485-1.421-0.069-0.173-0.173-0.208-0.589 0.139-0.416 0.346-0.554 0.461-0.554 1.109 0 0.416 0.069 0.554 0.207 0.797 0.139 0.242 0.174 0.312 0.278 0.97s0.693 1.698-0.07 2.287c-0.762 0.589-0.658 0.728-0.623 1.143 0.034 0.416-0.208 0.693-0.347 0.104-0.138-0.589 0-0.935 0.416-1.212 0.416-0.278 0.797-0.624 0.52-1.005-0.278-0.381-0.381-1.282-0.416-1.698s-0.104-0.555-0.347-0.243z"/> + </g> + <g id="g78" fill="#00b800"> + <path id="path80" d="m355.38 656.95c-0.019 0.282 0.044 0.592 0.066 0.841 0.026 0.286 0.104 0.884-0.104 1.326-0.208 0.441-0.156 0.675 0 0.805 0.009 0.007 0.017 0.014 0.025 0.021 0.424-0.142 0.479-0.615 0.365-0.844-0.121-0.242-0.086-0.537 0.052-0.779 0.139-0.243 0.139-0.381 0.018-0.555-0.122-0.173-0.122-0.173 0.017-0.658 0.122-0.427-0.186-0.424-0.439-0.157z"/> + </g> + <g id="g82" fill="#00b800"> + <path id="path84" d="m359.82 663.67c-0.078-0.312-0.364-1.508-0.39-2.287-0.026-0.78-0.363-1.404-1.013-2.001-0.507-0.467-0.618-1.217-0.642-1.796-0.381-0.233-0.542-0.127-0.51 0.306 0.034 0.467 0.502 0.693 0.433 1.368-0.069 0.676-0.069 0.503 0.26 0.832s0.45 0.641 0.277 0.78c-0.173 0.138-0.191 0.381 0.052 0.467 0.242 0.087 0.26 0.347 0.225 0.589-0.035 0.243 0.191 0.295 0.329 0.468 0.139 0.173 0.156 0.589 0.018 0.832-0.139 0.242-0.156 0.623 0.086 0.416 0.243-0.208 0.347-0.018 0.537 0.311 0.165 0.284 0.303 0.195 0.482 0.109-0.062-0.131-0.112-0.267-0.144-0.394z"/> + </g> + <g id="g86" fill="#00b800"> + <path id="path88" d="m363.2 669.72c-0.156 0.312-0.338 0.208-0.494 0.052s-0.338-0.156-0.26-0.442 0.052-0.338-0.156-0.494c-0.024-0.018-0.048-0.034-0.072-0.05-0.065-0.002-0.141-0.002-0.24-0.002-0.364 0-0.39-0.104-0.597-0.312-0.047-0.046-0.088-0.084-0.128-0.116-0.004 0.05-0.002 0.116-0.002 0.194 0 0.286 0 0.234-0.286 0.312s-0.234-0.286-0.286-0.52c-0.014-0.06-0.03-0.104-0.045-0.14-0.313-0.06-0.643-0.39-0.761-0.743-0.13-0.39 0.026-0.442 0.156-0.182s0.182 0.338 0.416 0.494 0.312-0.104 0.234-0.416c-0.025-0.1-0.031-0.216-0.028-0.345-0.056-0.101-0.132-0.183-0.232-0.227-0.416-0.182-0.286-0.234-0.26-0.572 0.026-0.337-0.052-0.337-0.312-0.156-0.26 0.182-0.286-0.026-0.286-0.545 0-0.52-0.338-0.52-0.415-0.156-0.078 0.364-0.208 0.13-0.364-0.39s-0.364-0.65-0.39-0.156c-0.022 0.418-0.138 0.518-0.41 0.286 0.048 0.302 0.09 0.584 0.124 0.806 0.13 0.857 0.338 0.545 0.754 0.909s0.286 0.546 0.442 0.728c0.155 0.182 0.181 0.312 0.129 0.52-0.052 0.207-0.129 0.389-0.052 0.571 0.078 0.182 0.182 0.26 0.182 0.52s0.078 0.234 0.182 0.286c0.065 0.032 0.149 0.014 0.21 0.04 0.067-0.088 0.128-0.196 0.206-0.274 0.312-0.312 0.78 0.026 0.936 0.416s0.337 0.494 0.571 0.182 0.156-0.26 0.416 0.026 0.364 0.234 0.364 0.234 0.26-0.104 0.442 0.052 0.286 0.13 0.623-0.364c0.338-0.494-0.155-0.338-0.311-0.026z"/> + </g> + <g id="g90" fill="#00b800"> + <path id="path92" d="m364.12 655.46c0.103-0.762 0.034-1.524 0.346-1.802 0.312-0.277 0.693-0.831 0.658 0.347-0.034 1.178-0.069 1.109-0.311 1.386-0.243 0.277-0.451 0.346-0.208 0.797 0.242 0.45 0.277 0.485 0.242 1.178-0.034 0.693-0.034 0.97 0.243 1.317 0.277 0.346 0.346 0.381 0.416 0.762 0.069 0.381 0.311 0.901 0.623 1.178s0.659 1.074 0.693 1.629c0.035 0.554 0.52 0.693 0.97 1.074 0.451 0.381-0.103 0.658-0.45 0.485-0.346-0.173-0.208 0-0.416 0.242-0.208 0.243-0.277 0.278-0.45-0.138s-0.763-0.693-1.04-0.797-0.519-0.555-0.762-1.005c-0.208-0.387-0.62-0.67-0.996-0.699 0.104 0.292 0.16 0.521 0.13 0.63-0.104 0.381-0.243 0.658 0.173 1.108 0.416 0.451 0.693 1.109 0.728 1.49 0.034 0.382 0.104 0.52 0.519 0.382 0.416-0.139 0.624-0.278 0.763-0.451 0.138-0.173 0.415-0.138 0.797 0.069 0.381 0.208 0.97 0.416 1.316 0.208 0.347-0.208 0.52-0.519 0.832-0.519 0.485-0.347 0.658-1.075 0.762-1.282 0.104-0.208 0.035-0.208-0.173-0.416s-0.104-0.555-0.139-0.901c-0.034-0.347-0.173-0.866-0.589-1.629-0.415-0.762-0.658-1.698-0.935-1.94-0.277-0.243-0.416-0.832-0.451-1.109-0.034-0.277-0.346-0.52-0.554-0.728-0.208-0.207-0.416-0.519-0.658-1.732-0.19-0.948-0.337-1.683-0.392-2.059-0.249 0.397-0.419 0.494-0.509 0.222-0.104-0.311-0.243-0.485-0.381-0.277-0.139 0.208-0.174-0.173-0.174-0.346 0-0.174-0.034-0.208-0.208-0.208-0.173 0-0.034-0.277-0.104-0.797-0.069-0.52-0.173-0.589-0.242 0.035-0.069 0.623-0.416 1.004-0.277 1.143 0.138 0.139 0.069 0.416-0.07 0.832-0.138 0.415-0.069 0.658 0.035 0.935s-0.069 0.797-0.139 1.248c-0.069 0.45 0.278 0.9 0.382 0.138z"/> + </g> + <g id="g94" fill="#00b800"> + <path id="path96" d="m357.79 649.24c-0.257 0.019-0.433 0.244-0.286 1.031 0.092 0.487-0.277 0.381-0.415 0.138-0.139-0.242-0.243-0.762-0.52-1.213-0.278-0.45-0.139 0.312-0.173 0.728-0.035 0.416 0.242 0.416 0.485 0.762 0.242 0.347 0.034 0.486-0.243 0.486s-0.138 0.554-0.069 0.935-0.069 0.451-0.278 0.139c-0.207-0.312-0.069-0.797-0.034-1.386 0.034-0.589 0.069-0.451-0.312-0.589-0.381-0.139-0.312-0.208-0.173-0.555 0.138-0.346 0.277-0.52 0.104-0.693-0.174-0.173-0.139-0.277 0.138-0.312 0.277-0.034 0.174-0.242 0.416-0.312 0.243-0.069 0.347 0.035 0.381-0.415 0.029-0.376 0.155-0.607 0.437-0.493 0.17 0.579 0.391 1.48 0.542 1.749z"/> + </g> + <g id="g98" fill="#00b800"> + <path id="path100" d="m361.28 653.32c0 0.728 0 1.005 0.312 1.282s0.277 0.554 0.416 1.213c0.138 0.658 0.138 2.079 0.554 3.049 0.124 0.289 0.295 0.656 0.47 1.038 0.23-0.181 0.43-0.492 0.501-0.657 0.103-0.243-0.208-0.728-0.451-1.143-0.242-0.416 0.035-0.555 0.277-1.075 0.243-0.519-0.034-0.554-0.415-0.693-0.382-0.138-0.382-0.485-0.59-1.039s-0.173-0.797-0.034-1.109c0.138-0.312 0.034-0.554-0.243-0.624-0.277-0.069-0.208-0.277-0.104-0.623 0.104-0.347 0.173-0.416-0.242-0.312-0.315 0.078-0.391 0.137-0.485 0.251 0.023 0.1 0.034 0.239 0.034 0.442z"/> + </g> + <g id="g102"> + <path id="path104" d="m365.27 654.77c-0.038 0.416-0.035 0.624-0.139 0.762-0.103 0.139-0.034 0.347 0.07 0.555s0.173 0.485 0.069 0.866 0.069 0.693 0.277 0.797 0.312 0 0.243 0.485c-0.07 0.485 0.208 1.005 0.45 1.213 0.243 0.208 0.416 0.554 0.381 0.762-0.034 0.208 0.174 0.416 0.416 0.52 0.243 0.104 0.208 0.139 0.208 0.277 0 0.139 0.104 0.139 0.381 0.208s0.485 0.243 0.797 0.624 0.762 0.589 0.693 0.173 0-0.693-0.416-0.901c-0.415-0.208-0.727-1.213-0.901-1.906-0.173-0.693-0.727-1.628-1.039-1.801-0.035-0.486 0.035-0.728-0.277-0.971-0.312-0.242-0.416-0.554-0.416-0.797 0-0.242-0.173-0.554-0.312-0.623-0.138-0.07-0.208-0.243-0.208-0.451s-0.242-0.173-0.277 0.208z" fill="#5d3100"/> + </g> + <g id="g106" fill="#00d860"> + <path id="path108" d="m363.43 673.36c0.623-0.052 2.313-0.546 2.494-0.702 0.416 0.286 1.144 0.676 1.456 0.676-0.598 0.13-0.988 0.052-1.144-0.052 0.078 0.182 0.286 0.468 0.416 0.494-0.572-0.026-1.221-0.156-1.429-0.364-0.494 0.208-1.326 0.26-1.793-0.052z"/> + </g> + <g id="g110" fill="#00d860"> + <path id="path112" d="m364.55 674.14c0.221 0.065 1.325 0.247 1.468 0.247-0.364 0.311-0.052 0.61 0.559 0.558-0.299 0.039-0.625 0.152-0.403 0.195 0.533 0.104 1.975-0.286 2.261-0.442-0.494 0.637-2.897 1.222-3.885-0.558z"/> + </g> + <g id="g114" fill="#00d860"> + <path id="path116" d="m365.54 675.72c0.298-0.156 1.039-0.104 1.39 0.065-0.39 0.143-1.156 0.143-1.39-0.065z"/> + </g> + <g id="g118"> + <path id="path120" d="m366.65 675.7c0.533-0.091 2.04 0.273 2.573-0.052-0.182 0.481-1.131 0.546-1.456 0.442-0.324-0.104-0.636-0.234-0.857-0.221 0.117-0.065-0.078-0.078-0.26-0.169z"/> + </g> + <g id="g122" fill="#00d860"> + <path id="path124" d="m367.2 676.44c0.403 0.064 1.845-0.117 2.287-0.286 0.467 0.156 1.39 0.402 1.598 0.376-0.442 0.273-1.287 0.117-1.559 0-0.78 0.26-1.417 0.338-2.326-0.09z"/> + </g> + <g id="g126" fill="#00d860"> + <path id="path128" d="m367.89 676.68c0.577 0.13 1.069 0.037 1.637-0.153 0.177 0.076 0.594 0.169 0.986 0.15 0.261 0.149 0.612 0.357 0.95 0.383-0.351 0.143-1.638 0-1.897-0.143-0.65 0.013-1.768 0.156-2.04 0.377-0.013-0.182 0.105-0.435 0.364-0.614z"/> + </g> + <g id="g130"> + <path id="path132" d="m367.2 673.75c0.45 0.15 2.079 0.078 2.91-0.312 0.328-0.154 0.531 0.104 0.156 0.234-1.351 0.468-2.417 0.65-3.196 0.234-0.308-0.164-0.338-0.312 0.13-0.156z"/> + </g> + <g id="g134" fill="#00d860"> + <path id="path136" d="m375.18 671.54c-2.001 0.935-3.327 1.221-6.107 0.364-0.259-0.08-0.442 0-0.156 0.182 0.286 0.181 1.819 0.597 2.183 0.623s0.234 0.195 0.013 0.26-0.286 0.221 0.013 0.104 1.969-0.161 2.651 0.195c0.298 0.156 0.376 0.13 0.35 0.013s0.13-0.195 0.351-0.221 0.351-0.104 0.182-0.169-0.195-0.104-0.065-0.169 0.143-0.13-0.052-0.169-0.325-0.091-0.143-0.182c0.182-0.09 0.455-0.156 0.663-0.181 0.052-0.143-0.039-0.52 0.117-0.65z"/> + </g> + <g id="g138"> + <path id="path140" d="m371.85 671.78c1.144 0.081 3.249-0.442 4.367-1.533 0.389 0.233 0.935 0.493 1.221 0.545s0.546 0.312 0.104 0.312-1.066-0.182-1.351-0.312c-1.482 0.91-3.216 1.209-4.315 1.118-0.311-0.026-0.389-0.156-0.026-0.13z"/> + </g> + <g id="g142" fill="#00d860"> + <path id="path144" d="m368.47 665.54c0.39 0.273 1.079 0.727 1.975 0.662 0.442 0.351 1.131 0.65 1.443 0.715-0.598 0.247-1.248 0.455-1.417 0.65-0.273-0.26-0.623-0.221-0.714-0.351-0.26 0.208-0.221 0.338-0.052 0.442s1.481 0.325 1.806 0.234 0.412 0.178 0.143 0.272c-0.702 0.247-2.066 0.013-2.534-0.74-0.468-0.754-0.871-1.04-2.144-0.351-0.143-0.364-0.143-0.455-0.39-0.455s-0.702-0.325-0.351-0.312 1.391-0.143 2.235-0.766z"/> + </g> + <g id="g146" fill="#00d860"> + <path id="path148" d="m368.78 667.21c-0.217 0.054-0.832 0.39-1.052 0.416-0.221 0.026-0.611 0.338-0.208 0.351 0.402 0.013 0.922-0.429 1.208-0.468s0.312-0.364 0.052-0.299z"/> + </g> + <g id="g150" fill="#00d860"> + <path id="path152" d="m370.04 668.53c-0.154 0.027-0.818 0.182-1 0.169s-0.364 0.039-0.351 0.169 0.065 0.208-0.208 0.182-0.507 0.078-0.572 0.156-0.117 0.156 0.156 0.182 0.416 0.052 0.728-0.091 0.611-0.364 0.949-0.377c0.337-0.013 0.675-0.455 0.298-0.39z"/> + </g> + <g id="g154"> + <path id="path156" d="m369.11 669.33c0.284 0.184 1.689 0.663 2.196 0.624s0.412 0.203 0.026 0.286c-0.793 0.168-1.761-0.177-2.417-0.702-0.325-0.26-0.026-0.351 0.195-0.208z"/> + </g> + <g id="g158" fill="#00d860"> + <path id="path160" d="m375.76 670.02c-1.075 0.343-2.17 0.221-2.612 0.104s-0.845-0.143-0.546 0.143c0.299 0.285 1.261 0.48 1.806 0.337-1.936 0.442-2.443 0.403-2.923 0.325-0.481-0.078-1.384-0.061-1.767-0.026-0.286 0.026-0.676-0.013-0.845-0.117s-0.221-0.299 0.286-0.247c0.506 0.052 0.572-0.052 0.13-0.117s-1.053 0.117-0.455 0.494 1.91-0.026 2.742 0.208c0.831 0.234 2.598 0.403 4.275-0.949 0.086-0.069 0.234-0.259-0.091-0.155z"/> + </g> + <g id="g162" fill="#00d860"> + <path id="path164" d="m370.48 668.44c0.039 0.13 0.039 0.273 0 0.364s-0.039 0.208 0.13 0.078 0.273-0.286 0.442-0.195 0.598 0.078 0.792 0.052c0.196-0.026 0.26-0.065-0.025-0.182-0.286-0.117-0.572-0.156-0.728-0.143s-0.351-0.026-0.481-0.078-0.169-0.026-0.13 0.104z"/> + </g> + <g id="g166" fill="#00d860"> + <path id="path168" d="m373.25 668.94c-0.221 0.013-0.611-0.13-0.819-0.221s-0.506-0.104-0.285 0.195c0.22 0.299 1.182 0.468 1.52 0.325s0.195-0.299 0.532-0.091c0.338 0.208 0.689 0.351 0.936 0.351s0.338 0 0.065-0.156-0.403-0.195-0.429-0.325-0.065-0.208 0.182-0.13 0.533 0.221 0.728 0.117 0.558-0.338 0.883-0.338l0.078-0.195c-0.468-0.039-0.766 0.104-0.896 0.156s-0.364 0.078-0.611 0.039-0.572-0.065-0.65-0.13-0.078-0.117 0.13-0.156 0.273-0.182-0.013-0.13-1.052 0.026-1.455-0.104c-0.403-0.129-0.572-0.142-0.741-0.078-0.169 0.065-0.143 0.247 0.104 0.26s0.806 0.065 1.001 0.247 0.169 0.195-0.052 0.104-0.624-0.039-0.208 0.26z"/> + </g> + <g id="g170" fill="#00d860"> + <path id="path172" d="m376.64 668.47-0.078 0.195c0.481-0.013 1.651 0.104 2.027 0.338 0.364-0.286 0.299-0.377 0.559-0.325s0.585 0.143 0.728 0.065 0.247-0.065 0.403-0.039c0.155 0.026 0.493-0.039 0.688-0.156s0.598-0.273 0.832-0.273 0.519-0.052 0.091-0.117c-0.429-0.065-1.079 0.065-1.3 0.143-0.22 0.078-0.883 0.13-1.273 0.13s-0.922 0.195-1.364 0.078-1.053-0.039-1.313-0.039z"/> + </g> + <g id="g174"> + <path id="path176" d="m382.66 668.24c-0.779 0.572-1.715 0.702-2.832 0.78-0.325 0.023-0.225 0.115 0.052 0.143 1.169 0.117 2.521-0.312 2.962-0.78 0.128-0.135 0.114-0.359-0.182-0.143z"/> + </g> + <g id="g178" fill="#00d860"> + <path id="path180" d="m377.35 669.57c0.338 0.013 1.507 0.312 1.884 0.442 0.286-0.026 0.364-0.091 0.312-0.195s-0.091-0.221 0.429-0.195c0.519 0.026 1.715 0.013 1.936 0.013 0.182-0.078 0.584-0.39 0.766-0.403-0.467 0.026-2.416 0.13-2.663 0.104s-0.377 0-0.533 0.091-0.247 0.13-0.442 0.052-0.546-0.182-0.74-0.065c-0.195 0.117-0.598 0.013-0.949 0.156z"/> + </g> + <g id="g182" fill="#00d860"> + <path id="path184" d="m381.91 669.63c0.182-0.078 0.584-0.39 0.766-0.403 0.338-0.026 0.728 0.117 0.91 0.143s0.377-0.013 0.247-0.156-0.013-0.39 0.52-0.325c0.532 0.065 0.805 0.156 1.325 0.104s0.754 0.338 1.741-0.052c-0.078 0.39 0.104 0.416 0.286 0.338s0.39-0.052 0.702 0.182 2.209 0.26 2.651 0.182c0.441-0.078 0.675 0.156 0.337 0.26-0.337 0.104-0.416 0.26-0.337 0.364 0.077 0.103 0.155 0.233-0.26 0.181-0.416-0.052-0.494 0.078-0.702 0.234s-0.26 0.208-0.832 0.104c-0.571-0.104-0.675-0.026-0.987 0.026s-0.39 0.052-0.702-0.052-0.987-0.208-1.403-0.078-0.728 0.26-1.092 0.156-0.39-0.052-0.156-0.286 0.286-0.208 0.728-0.26c0.442-0.051 0.78-0.181 0.468-0.363s-0.416-0.156-0.832 0.052-0.624 0.337-1.091 0.078c-0.468-0.26-0.702-0.208-1.014-0.13s-0.831-0.104-1.273-0.299z"/> + </g> + <g id="g186" fill="#00d860"> + <path id="path188" d="m383.47 670.41c-0.595 0.085-0.755-0.298-1.377-0.22-0.208 0.026-0.559 0.285-0.078 0.246 0.48-0.039 1 0.221 1.468 0.182s0.26-0.247-0.013-0.208z"/> + </g> + <g id="g190" fill="#00d860"> + <path id="path192" d="m382.78 670.86c0.313-0.114 0.962 0.104 1.235 0.052s0.533 0.117 0.247 0.208-0.975-0.169-1.287-0.078-0.623-0.026-0.195-0.182z"/> + </g> + <g id="g194" fill="#00d860"> + <path id="path196" d="m376.57 672.54c0.429 0.014 1.975-0.052 2.586-1.351 0.047-0.1 0.091-0.143 0.286-0.013s0.91 0.559 2.248 0.676c0.375 0.033 0.78 0.221 0.026 0.169s-1.949-0.26-2.352-0.507c-0.676 1.065-1.89 1.191-2.794 1.169-0.545-0.013-0.415-0.156 0-0.143z"/> + </g> + <g id="g198" fill="#00d860"> + <path id="path200" d="m379.91 670.77c-0.208 0.286-0.923 0.78-1.248 0.806-0.324 0.026-1.299-0.065-1.546-0.156s-0.546-0.065-0.195 0.182 1.222 0.416 1.572 0.338c0.351-0.078 0.754-0.195 1.027-0.026s0.78 0.493 1.078 0.428c0.299-0.064 0.91-0.064 1.105 0.026 0.195 0.091 0.533 0.364 0.026 0.208s-0.923-0.026-1.157-0.13c0.26 0.364 0.85 0.949 1.352 0.949 0.117 0 0.195 0.208-0.052 0.325 0.247 0.117 0.818 0.208 1.117-0.065-0.078 0.104-0.039 0.169 0.091 0.234s0.286 0.156 0.052 0.182-0.766 0.091-0.922 0.026c0.506 0.324 1.819 0.844 3.157 0.584 0.255-0.049 0.39-0.155-0.026-0.143-0.858 0.026-0.909 0.013-1.065-0.077-0.156-0.092-0.13-0.169 0.117-0.247 0.246-0.078 0.87-0.169 1.13-0.169s0.52-0.104-0.013-0.104-1.182 0-1.442-0.091-0.455-0.208-0.182-0.39 0.559-0.13 0.689-0.299c-0.858-0.013-1.911-0.468-1.326-0.883 0.136-0.097 0.091-0.104-0.13-0.13s-0.87-0.208-1.143-0.364-0.091-0.286 0.13-0.325c-0.507 0.091-1.521-0.182-2.196-0.689z"/> + </g> + <g id="g202" fill="#00d860"> + <path id="path204" d="m387.53 670.75c-0.468 0.351-1.351 0.494-1.728 0.494s-0.429 0.13-0.13 0.169 0.624 0.078 0.754 0.039 0.208-0.052 0.402 0.039c0.195 0.091 0.611 0.143 0.975 0.026s0.961-0.169 1.208-0.156 0.52 0.026 0.026-0.117c-0.493-0.143-1.299-0.039-1.494 0.013s-0.728 0.013-0.442-0.078 0.533-0.234 0.676-0.351c-0.104-0.026-0.169-0.052-0.247-0.078z"/> + </g> + <g id="g206" fill="#00d860"> + <path id="path208" d="m387.29 671.76c-0.403 0.299-0.987 0.584-1.585 0.61 0.546 0.195 1.001 0.754 1.351 0.728-0.169 0.104-0.376 0.26-0.597 0.286 0.338 0.091 0.909-0.013 1.377-0.273 0.78 0.221 1.793 0.078 2.131-0.208-0.507 0-1.117-0.182-1.39-0.416 0.247 0 0.48-0.156 0.597-0.298-0.584 0.103-1.585-0.182-1.884-0.429z"/> + </g> + <g id="g210" fill="#00d860"> + <path id="path212" d="m386.46 673.39c0.221-0.026 0.428-0.182 0.597-0.286-0.428 0.143-2.3-0.156-2.858-0.65-0.559-0.493-0.559-0.117-0.169 0.234s1.078 0.884 2.43 0.702z"/> + </g> + <g id="g214" fill="#00d860"> + <path id="path216" d="m387.83 674.58c-0.234 0.13-1.351 0.208-1.715 0.13s-0.52-0.039-0.429 0.104 0.13 0.273-0.169 0.234-0.832 0.026-1.052 0.104c-0.221 0.078-0.494 0.273-0.026 0.195 0.467-0.078 0.896-0.169 1.247-0.078s1.598 0.117 1.845 0.013 0.078-0.104-0.039-0.104-0.169-0.078 0-0.156 0.299-0.299 0.338-0.442z"/> + </g> + <g id="g218" fill="#00d860"> + <path id="path220" d="m377.02 673.07c-0.468 0.208-2.027 0.624-2.443 0.65-0.52 0.234-0.935 0.364-1.195 0.364 0.182 0.156 0.883 0.311 1.169 0.234-0.156 0.155-0.519 0.337-0.649 0.415 0.415-0.052 0.909 0.052 1.117 0.078-0.546 0.312-1.299 0.416-1.689 0.364 0.13 0.182 0.312 0.364 0.546 0.364-0.494 0.13-1.092 0.13-1.404 0.026 0.13 0.26 0.26 0.416 0.442 0.442-0.416 0.052-0.936 0.13-1.377-0.13 0.337 0.442 1.091 0.597 2.209 0.468 1.117-0.13 2.053-0.624 2.313-0.832-0.468 0.052-1.092 0.078-1.404 0.026 0.624-0.156 1.975-0.728 2.209-0.962-0.26 0-0.519-0.078-0.702-0.208 0.364 0.052 1.638-0.103 2.028-0.259-0.468-0.104-0.754-0.39-0.884-0.572 1.637 0.52 3.459 0.35 4.34 0.13 0.208-0.052 0.233-0.316-0.182-0.286-0.728 0.052-2.131-0.156-2.495-0.338 0.338 0.26 0.754 0.416 1.04 0.468-0.676 0.182-1.611 0.312-2.989-0.442z"/> + </g> + <g id="g222" fill="#00d860"> + <path id="path224" d="m373.9 674.74c0.13-0.078 0.493-0.26 0.649-0.415-0.286 0.077-0.987-0.078-1.169-0.234 0.26 0 0.675-0.13 1.195-0.364-0.935-0.026-1.585-0.026-1.923-0.208s-0.961-0.13-1.195-0.078-0.156 0.442 0.831 0.338c-0.416 0.286-1.533 0.39-1.949 0.286 0.104 0.337 0.182 0.675 0.078 0.857 0.546 0.312 1.975 0.702 2.677 0.65-0.624-0.234-0.962-0.494-0.442-0.546s0.806-0.156 1.248-0.286z"/> + </g> + <g id="g226"> + <path id="path228" d="m372.29 676.43c1.244-0.104 2.91-0.126 4.236-1.248 0.338-0.286 0.565-0.19 0.234 0.104-0.701 0.624-2.443 1.481-4.106 1.507-0.677 0.011-0.987-0.312-0.364-0.363z"/> + </g> + <g id="g230" fill="#00d860"> + <path id="path232" d="m381.61 674.37c-0.312 0.117-1.183 0.26-1.442 0.221-0.26-0.039-0.637-0.052-0.845 0.078s-0.221 0.208 0.065 0.234 0.65 0.052 0.832 0.039c-0.234 0.13-0.39 0.312-0.442 0.39 0.416-0.104 1.182 0.078 1.403 0.208-0.169 0.052-0.364-0.013-0.507-0.091 0.702 0.741 2.781 0.741 3.119 0.611-0.156 0.117-0.299 0.234-0.455 0.273 0.585 0.104 1.26 0.091 1.923-0.299-0.221 0.039-0.883-0.026-1.052-0.039 0.13-0.13 0.324-0.247 0.506-0.299-0.259-0.052-1.078-0.026-1.273 0.078 0.078-0.156 0.221-0.351 0.377-0.416-1.027 0-2.274-0.013-2.729-0.26 0.728 0.078 1.534-0.351 1.871-0.351-0.571-0.013-1.195-0.143-1.351-0.377z"/> + </g> + <g id="g234" fill="#00d860"> + <path id="path236" d="m379 674.94c-0.507 0.104-1.273 0.312-1.481 0.429s-0.429 0.182 0.026 0.182 1.689 0.052 1.962 0.091c-0.689-0.104-1.624-0.13-1.806-0.13s-0.39-0.013-0.052-0.117 0.78-0.338 1.351-0.455z"/> + </g> + <g id="g238" fill="#00d860"> + <path id="path240" d="m377.97 676.15c0.181 0 0.974 0 1.286-0.273 0.325 0.247 0.949 0.597 1.351 0.597 0.403 0 0.364 0.104 0.013 0.143-0.35 0.039-1.039-0.168-1.39-0.428-0.468 0.169-0.857 0.026-1.26-0.039z"/> + </g> + <g id="g242" fill="#00d860"> + <path id="path244" d="m371.95 679.65c0.805 0.312 1.871 0.546 2.65 0.286 0.442 0.39 1.352 0.416 1.845 0.312 0.494-0.104 0.936-0.156 1.482 0.026 0.545 0.182 1.663 0.195 1.975 0.454-0.286 0.014-0.897 0-1.04 0.04-0.143 0.038-0.065 0.129 0.195 0.272-0.883-0.052-2.404 0.325-2.871 0.728 0.168-0.403 0.688-0.949 1.507-0.949-0.468-0.168-1.962-0.181-2.443 0.117-0.143-0.156-0.312-0.415-0.325-0.519-0.792 0.454-2.352-0.195-2.975-0.767z"/> + </g> + <g id="g246" fill="#00d860"> + <path id="path248" d="m369.89 678.19c0.959-0.137 1.612-0.442 1.898-0.728 0.169 0.156 0.87 0.312 1.637 0.078-0.156 0.117-0.169 0.338-0.104 0.455-0.507 0.013-1.469 0.26-1.793 0.429-0.325 0.168-1.274 0.285-1.585 0.116-0.312-0.168-0.325-0.311-0.053-0.35z"/> + </g> + <g id="g250" fill="#00d860"> + <path id="path252" d="m373.32 678c-0.507 0.013-1.469 0.26-1.793 0.429 0.065 0.13 0.104 0.337 0.117 0.48 0.935-0.338 3.079-0.545 3.898-0.415-0.39 0.026-1.131 0.428-1.546 0.48 1.013-0.078 2.001 0.13 2.26 0.195 0.26 0.065 0.312 0.26 0.117 0.442s-0.285 0.208 0.13 0.221c0.416 0.013 1.274-0.039 1.664-0.416-0.156-0.169-0.559-0.104-0.676-0.221 0.273-0.091 0.585-0.286 0.702-0.429-0.702-0.013-0.962-0.026-1.196-0.078-0.234-0.051-0.403-0.117-0.117-0.272 0.286-0.156 0.416-0.286 0.507-0.39-0.507 0.143-1.299 0.26-1.962-0.26 0.247 0.065 0.831 0.026 1.039-0.065-0.221-0.117-0.402-0.208-0.584-0.208 0.532-0.26 1.585-0.494 2.884 0.026 0.65-0.052 1.352-0.026 1.845 0.104 0.208-0.208 0.65-0.702 0.884-0.832-1.533 0.13-4.288-0.156-4.236-0.961-0.494 0.649-1.637 1.013-2.131 0.909-0.052 0.234 0.156 0.52 0.338 0.676-0.52 0.104-1.404 0.182-1.819 0.104 0.234 0.234 0.675 0.442 0.935 0.416-0.545 0-0.831 0.104-1.26 0.065z"/> + </g> + <g id="g254" fill="#00d860"> + <path id="path256" d="m376.5 679.83c0.416 0.013 1.274-0.039 1.664-0.416-0.156-0.169-0.559-0.104-0.676-0.221 0.273-0.091 0.585-0.286 0.702-0.429 1.091-0.09 2.066-0.038 2.533-0.181 0.468-0.143 1.664-0.065 1.898-0.13-1.04 0.168-1.248 0.259-1.3 0.428s0.338 0.312 0.585 0.312c-0.468-0.026-1.053 0.468-1.105 0.663-0.623-0.364-0.922 0.065-0.987 0.208-0.26-0.104-1.118-0.078-1.56 0.299-0.571-0.169-0.948-0.26-1.52-0.169 0.351-0.078 0.286-0.312-0.234-0.364z"/> + </g> + <g id="g258" fill="#00d860"> + <path id="path260" d="m381.49 676.79c0.351-0.013 1.117 0.026 1.39-0.013-0.182 0.091-0.415 0.26-0.467 0.338 0.883-0.104 2.091-0.169 2.442-0.117-0.428-0.065-0.87 0.208-1.091 0.351s-0.091 0.234 0.208 0.273 0.702 0.273 0.156 0.195-1.624-0.078-1.884-0.039-0.403-0.091-0.026-0.143 0.636-0.182 0.818-0.286c-0.312 0.078-0.909 0.078-1.091 0.026s-0.299-0.156-0.091-0.208 0.065-0.13-0.156-0.104-0.78 0.26-1.092 0.559c0.338-0.351 0.637-0.663 0.884-0.832z"/> + </g> + <g id="g262"> + <path id="path264" d="m377.53 677.38c0.429 0.481 0.935 0.754 1.741 0.78 0.169 0.005 0.484 0.232 0.078 0.247-1.092 0.039-1.637-0.221-2.118-0.923-0.099-0.144 0.084-0.345 0.299-0.104z"/> + </g> + <g id="g266"> + <path id="path268" d="m384.04 668.29c0.574 0.271 1.728 0.507 2.625 0.468 0.156-0.007 0.47 0.16 0.077 0.195-1.013 0.091-1.923-0.051-2.767-0.52-0.234-0.13-0.156-0.247 0.065-0.143z"/> + </g> + <g id="g270" fill="#00d860"> + <path id="path272" d="m384.62 668.28c0.883-0.026 1.546-0.013 1.819 0.247 0.506-0.156 1.416-0.247 1.624-0.208s0.442-0.052-0.039-0.169c-0.481-0.116-1.598-0.155-1.949-0.09-0.351 0.064-1.443 0.103-1.806 0.064 0.156 0.026 0.259 0.052 0.351 0.156z"/> + </g> + <g id="g274" fill="#00d860"> + <path id="path276" d="m388.05 668.63c0.416-0.221 1.611-0.013 1.975-0.169-0.26 0.312 0.832 0.338 1.78 0.091-0.364 0.234-1.143 0.273-1.481 0.416s-0.52 0.039-0.78-0.078-0.922-0.351-1.494-0.26z"/> + </g> + <g id="g278" fill="#00d860"> + <path id="path280" d="m391.81 668.55c-0.948 0.247-2.04 0.221-1.78-0.091-0.364 0.156-1.559-0.052-1.975 0.169 0.429-0.26 0.754-0.052 1.065-0.585 0.195 0.04 0.65 0.066 0.806-0.142 0.273 0.065 0.754 0.182 0.897 0.324 0.143 0.143 0.363-0.039 0.181-0.259 0.429-0.156 0.157 0.185 1.157-0.065 0.208-0.052 0.715-0.143 0.884-0.156-0.338 0.273-0.741 0.571-1.235 0.805z"/> + </g> + <g id="g282" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path284" d="m373.36 664.19c-0.017-1.966-0.207-18.422-0.207-22.226 0-0.91-0.468-0.728-0.468 0v22.122c0.215 0.039 0.505 0.078 0.675 0.104z" stroke-width=".13774"/> + </g> + <g id="g286" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path288" d="m380.59 640.77 0.812 23.461-0.142 0.188-0.471 0.007-0.513-23.656h0.314z" stroke-width=".13774"/> + </g> + <g id="g290" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path292" d="m387.43 660.58c-0.066-2.389-0.366-13.448-0.482-18.9-0.015-0.727-0.448-0.6-0.441 0.026 0.047 4.391 0.308 16.672 0.356 18.887 0.17 0 0.463-0.017 0.567-0.013z" stroke-width=".13774"/> + </g> + <g id="g294" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path296" d="m376.6 644.67-6.913-0.104c-0.389 1.403 1.352 1.377 2.002 1.013 0.753 0.572 1.325 0.52 1.741 0.052 0.598 0.494 1.351 0.364 1.663 0.052 0.832 0.624 1.689 0 1.507-1.013z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g298" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path300" d="m377.12 648.15-7.069-0.026c-1.221 1.169 0.364 1.741 1.716 0.935 0.182 0.39 1.013 0.624 1.663 0.312 0.598 0.468 1.351 0.13 1.741-0.26 0.728 0.338 1.585 0.442 1.949-0.961z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g302" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path304" d="m376.92 652.57-6.809-0.052c-0.13 1.221 1.248 1.065 1.793 0.754 0.52 0.805 1.664 0.623 2.106 0.155 0.649 0.442 1.247 0.338 1.585-0.078 0.754 0.65 1.377-0.181 1.325-0.779z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g306" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path308" d="m377.26 656.99-7.614-0.13c-0.416 1.299 0.753 1.533 1.299 1.221 0.182 0.754 1.195 0.494 1.455-0.052 0.39 0.39 0.884 0.182 1.118-0.078 0.104 0.702 0.987 0.728 1.663 0.13 1.377 0.962 2.677-0.156 2.079-1.091z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g310" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path312" d="m384.01 655.17-6.341-0.052c0.286 1.299 0.909 1.637 1.923 0.883 0.754 0.78 2.001 0.494 2.313 0.104 1.377 1.118 2.131-0.182 2.105-0.935z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g314" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path316" d="m383.36 650.83-6.133-0.182c0.104 1.559 1.585 1.507 2.339 0.831 0.572 0.728 1.585 0.52 1.949 0 0.78 0.78 2.053 0.312 1.845-0.649z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g318" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path320" d="m384.17 645.94h-6.601c0.078 1.091 1.533 1.715 2.651 0.676 0.311 1.247 1.507 0.857 2.027 0.363 0.753 0.962 2.494-0.129 1.923-1.039z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g322" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path324" d="m383.78 642.62-5.899 0.078c-0.104 0.961 1.299 1.377 1.819 0.597 0.286 0.494 1.273 0.442 1.559-0.026 0.468 0.728 1.04 0.234 1.221 0 0.676 0.494 1.404 0.26 1.3-0.649z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g326" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path328" d="m390.69 644.77-7.225-0.078c-0.026 0.753 0.754 1.065 1.221 0.753 0 0.728 1.014 0.962 1.664 0.39 0.442 0.624 1.741 0.806 2.261-0.052 1.065 0.884 2.209 0.26 2.079-1.013z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g330" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path332" d="m390.59 650.7-7.069-0.026c0.052 0.987 1.195 1.325 1.845 0.805 0.156 0.832 1.04 0.884 1.559 0.468 0.624 0.702 1.664 0.754 2.235-0.026 0.858 0.312 1.508-0.416 1.43-1.221z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g334" stroke-width=".13774" stroke="#000" fill="#ff0"> + <path id="path336" d="m390.22 656.03-5.588-0.078c0 0.988 1.17 1.118 1.69 0.598 0.545 0.65 1.377 0.65 1.845 0.13 0.753 0.65 1.897 0.468 2.053-0.65z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g338" stroke-width=".13774" stroke="#000"> + <path id="path340" d="m381.26 664.42c-3.014 0.052-6.081 0.052-8.16-0.26s-2.734-0.604-4.158-1.455c-2.131-1.273-2.651-1.585-5.665-3.352-0.462-0.271-0.963 0.065-0.312 0.493 3.04 2.001 4.192 2.743 5.639 3.691 1.507 0.987 2.479 1.864 3.404 2.91 1.196 1.352 2.079 1.378 2.625 1.17s1.404-0.494 2.261-0.286c0.858 0.208 2.001 0.234 2.599 0.13 0.546 0.494 1.793 0.39 2.495 0.234 0.701-0.156 1.221-0.234 1.715-0.13s1.247 0.026 1.741-0.052 1.793-0.208 2.703-0.078c0.909 0.13 1.845 0.052 2.443-0.13 0.597-0.182 1.689-0.13 2.053-0.026 0.519-0.39 0.779-0.884 0.909-1.403 0.611-0.078 0.814-0.154 0.949-0.507 0.247-0.65 0.48-1.287 0.559-1.572h0.246l0.078-0.585-0.506-0.585 0.182-1.117 0.545-0.13c0.026-0.338-0.13-0.858-0.234-1.066-3.274 0.13-6.484 0.234-8.783 0.286-0.26 0.208-0.546 0.754-0.598 1.092-1.403 0.233-2.235 0.337-2.599 0.415s-0.567 0.107-0.857 0.494c-0.468 0.624-0.91 1.351-1.274 1.819z" stroke-width=".13774"/> + </g> + <g id="g342" stroke-width=".13774" stroke="#000"> + <path id="path344" d="m391.78 660.45c0.159-0.551 0.584-2.035 1.354-4.84 0.129-0.468-0.325-0.653-0.493-0.052-0.916 3.275-1.262 4.503-1.378 4.912 0.176-0.003 0.428-0.022 0.517-0.02z" stroke-width=".13774"/> + </g> + <g id="g346" stroke-width=".13774" stroke="#000" fill="#fff"> + <path id="path348" d="m396.85 654.96c-1.105 0.571-1.638 0.792-2.144 0.597-0.466-0.179-1.151-0.28-1.552-0.083-0.001 0.042-0.007 0.087-0.021 0.135-0.474 1.727-0.817 2.952-1.048 3.768 0.818 0.289 2.227 0.328 2.556-0.025 0.337-0.364 1.26-0.286 1.728-0.26 0.299-0.39 0.416-0.871 0.338-1.105s-0.052-0.649 0.065-0.974 0.273-1.378 0.078-2.053z" stroke-width=".13774"/> + </g> + <g id="g350" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path352" d="m371.69 645.58c-1.222 3.534-5.458 11.461-8.014 14.014" stroke-width=".13774"/> + </g> + <g id="g354" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path356" d="m365.64 660.75c2.901-2.244 10.236-9.528 11.483-12.594" stroke-width=".13774"/> + </g> + <g id="g358" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path360" d="m370.11 652.52c-0.337 2.677-1.11 7.452-1.526 9.973" stroke-width=".13774"/> + </g> + <g id="g362" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path364" d="m371.24 658.48c-0.987 0.962-2.387 2.641-3.427 3.551" stroke-width=".13774"/> + </g> + <g id="g366" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path368" d="m380.54 653.14c-0.831 0.805-1.78 1.744-2.611 1.978" stroke-width=".13774"/> + </g> + <g id="g370" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path372" d="m381.02 653.27c0.731 0.779 1.77 1.659 2.628 1.893" stroke-width=".13774"/> + </g> + <g id="g374" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path376" d="m380.45 648.96c-0.753 0.649-1.871 1.413-2.884 1.699" stroke-width=".13774"/> + </g> + <g id="g378" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path380" d="m380.88 649.11c0.65 0.546 1.342 1.342 2.173 1.706" stroke-width=".13774"/> + </g> + <g id="g382" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path384" d="m377.72 645.94c0.805-0.234 2.004-0.858 2.628-1.507" stroke-width=".13774"/> + </g> + <g id="g386" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path388" d="m380.71 644.31c0.705 0.805 2.056 1.455 2.732 1.637" stroke-width=".13774"/> + </g> + <g id="g390" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path392" d="m377.88 642.7c0.831-0.182 1.861-0.624 2.407-1.404" stroke-width=".13774"/> + </g> + <g id="g394" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path396" d="m380.6 641.08c0.701 0.598 1.933 1.462 2.738 1.54" stroke-width=".13774"/> + </g> + <g id="g398" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path400" d="m386.53 643.41c-0.451 0.468-1.556 1.309-2.257 1.296" stroke-width=".13774"/> + </g> + <g id="g402" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path404" d="m386.99 643.37c0.325 0.52 1.144 1.316 1.612 1.381" stroke-width=".13774"/> + </g> + <g id="g406" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path408" d="m383.8 650.67c0.909-0.312 2.183-1.056 2.82-1.823" stroke-width=".13774"/> + </g> + <g id="g410" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path412" d="m387.12 648.91c0.266 0.48 1.28 1.565 1.852 1.786" stroke-width=".13774"/> + </g> + <g id="g414" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path416" d="m384.88 655.95c0.416-0.09 1.547-0.652 1.858-1.315" stroke-width=".13774"/> + </g> + <g id="g418" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path420" d="m387.26 654.27c0.429 0.533 1.481 1.507 2.131 1.741" stroke-width=".13774"/> + </g> + <g id="g422" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path424" d="m370.58 656.87c1.273-0.403 3.846-1.965 5.12-3.447" stroke-width=".13774"/> + </g> + <g id="g426" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path428" d="m373.26 655.3c1.065 0.753 2.303 1.507 3.251 1.676" stroke-width=".13774"/> + </g> + <g id="g430" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path432" d="m370.34 652.52c0.702-0.299 1.624-0.809 2.339-1.549" stroke-width=".13774"/> + </g> + <g id="g434" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path436" d="m373.22 650.87c0.286 0.402 2.388 1.686 3.284 1.699" stroke-width=".13774"/> + </g> + <g id="g438" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path440" d="m372.68 646.72c-0.546 0.441-1.858 1.234-2.495 1.403" stroke-width=".13774"/> + </g> + <g id="g442" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path444" d="m373.18 646.75c0.728 0.506 2.167 1.4 3.154 1.4" stroke-width=".13774"/> + </g> + <g id="g446" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path448" d="m372.68 642.66c-0.585 0.662-1.572 1.685-2.391 1.919" stroke-width=".13774"/> + </g> + <g id="g450" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path452" d="m373.15 642.81c0.455 0.728 1.673 1.712 2.466 1.842" stroke-width=".13774"/> + </g> + <g id="g454" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path456" d="m383.67 647.18c1.822 3.359 5.201 7.465 8.618 9.622" stroke-width=".13774"/> + </g> + <g id="g458" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path460" d="m378.2 643.46c2.767 3.976 8.199 12.695 13.367 15.914" stroke-width=".13774"/> + </g> + <g id="g462" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path464" d="m392.52 655.97c-0.832 1.157-2.326 2.963-4.795 4.607" stroke-width=".13774"/> + </g> + <g id="g466" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path468" d="m392.21 657.07c-1.741-2.78-2.641-6.295-3.943-10.924" stroke-width=".13774"/> + </g> + <g id="g470" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path472" d="m374.15 658.51 2.144 5.899" stroke-width=".13774"/> + </g> + <g id="g474" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path476" d="m373.75 658.37 1.896 6.017" stroke-width=".13774"/> + </g> + <g id="g478" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path480" d="m373.34 658.09 1.76 6.262" stroke-width=".13774"/> + </g> + <g id="g482" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path484" d="m373.16 658.19 1.359 6.128" stroke-width=".13774"/> + </g> + <g id="g486" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path488" d="m374.47 664.1h1.699" stroke-width=".13774"/> + </g> + <g id="g490" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path492" d="m375.95 663.46h-1.602" stroke-width=".13774"/> + </g> + <g id="g494" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path496" d="m375.77 662.96h-1.546" stroke-width=".13774"/> + </g> + <g id="g498" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path500" d="m375.59 662.46h-1.475" stroke-width=".13774"/> + </g> + <g id="g502" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path504" d="m375.39 661.92h-1.404" stroke-width=".13774"/> + </g> + <g id="g506" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path508" d="m373.89 661.44h1.332" stroke-width=".13774"/> + </g> + <g id="g510" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path512" d="m373.79 661h1.264" stroke-width=".13774"/> + </g> + <g id="g514" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path516" d="m373.68 660.52h1.202" stroke-width=".13774"/> + </g> + <g id="g518" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path520" d="m373.59 660.09h1.134" stroke-width=".13774"/> + </g> + <g id="g522" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path524" d="m373.49 659.65h1.078" stroke-width=".13774"/> + </g> + <g id="g526" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path528" d="m373.4 659.24h1.02" stroke-width=".13774"/> + </g> + <g id="g530" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path532" d="m373.3 658.86h0.991" stroke-width=".13774"/> + </g> + <g id="g534" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path536" d="m373.24 658.54h0.923" stroke-width=".13774"/> + </g> + <g id="g538" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path540" d="m371.57 658.55-1.208 4.932" stroke-width=".13774"/> + </g> + <g id="g542" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path544" d="m371.92 658.46-1.037 5.21" stroke-width=".13774"/> + </g> + <g id="g546" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path548" d="m372.2 658.27-0.839 5.549" stroke-width=".13774"/> + </g> + <g id="g550" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path552" d="m372.56 658.16-0.609 5.803" stroke-width=".13774"/> + </g> + <g id="g554" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path556" d="m372.68 663.63h-1.923" stroke-width=".13774"/> + </g> + <g id="g558" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path560" d="m372.68 663.1h-2.225" stroke-width=".13774"/> + </g> + <g id="g562" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path564" d="m372.68 662.55h-2.095" stroke-width=".13774"/> + </g> + <g id="g566" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path568" d="m372.68 662.03h-1.965" stroke-width=".13774"/> + </g> + <g id="g570" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path572" d="m372.68 661.5h-1.838" stroke-width=".13774"/> + </g> + <g id="g574" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path576" d="m372.68 660.91h-1.692" stroke-width=".13774"/> + </g> + <g id="g578" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path580" d="m372.68 660.4h-1.569" stroke-width=".13774"/> + </g> + <g id="g582" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path584" d="m372.68 659.88h-1.436" stroke-width=".13774"/> + </g> + <g id="g586" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path588" d="m372.68 659.38h-1.316" stroke-width=".13774"/> + </g> + <g id="g590" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path592" d="m372.68 658.94h-1.212" stroke-width=".13774"/> + </g> + <g id="g594" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path596" d="m372.68 658.59h-1.121" stroke-width=".13774"/> + </g> + <g id="g598" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path600" d="m372.68 664.09v-5.88" stroke-width=".13774"/> + </g> + <g id="g602" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path604" d="m379.15 656.27-4.029 8.08" stroke-width=".13774"/> + </g> + <g id="g606" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path608" d="m379.4 656.14-3.43 8.254" stroke-width=".13774"/> + </g> + <g id="g610" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path612" d="m379.65 656.05-2.721 8.383" stroke-width=".13774"/> + </g> + <g id="g614" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path616" d="m379.82 656.2-2.116 8.238" stroke-width=".13774"/> + </g> + <g id="g618" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path620" d="m377.8 664.06h-2.534" stroke-width=".13774"/> + </g> + <g id="g622" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path624" d="m378 663.32h-2.359" stroke-width=".13774"/> + </g> + <g id="g626" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path628" d="m378.11 662.72h-2.17" stroke-width=".13774"/> + </g> + <g id="g630" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path632" d="m378.32 662.07h-2.053" stroke-width=".13774"/> + </g> + <g id="g634" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path636" d="m378.42 661.55h-1.897" stroke-width=".13774"/> + </g> + <g id="g638" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path640" d="m378.6 660.95h-1.787" stroke-width=".13774"/> + </g> + <g id="g642" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path644" d="m378.78 660.25h-1.618" stroke-width=".13774"/> + </g> + <g id="g646" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path648" d="m378.92 659.72h-1.488" stroke-width=".13774"/> + </g> + <g id="g650" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path652" d="m379.07 659.11h-1.348" stroke-width=".13774"/> + </g> + <g id="g654" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path656" d="m379.18 658.7h-1.247" stroke-width=".13774"/> + </g> + <g id="g658" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path660" d="m379.28 658.31h-1.143" stroke-width=".13774"/> + </g> + <g id="g662" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path664" d="m379.38 657.91h-1.053" stroke-width=".13774"/> + </g> + <g id="g666" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path668" d="m379.47 657.56h-0.968" stroke-width=".13774"/> + </g> + <g id="g670" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path672" d="m379.56 657.21h-0.887" stroke-width=".13774"/> + </g> + <g id="g674" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path676" d="m379.66 656.85h-0.8" stroke-width=".13774"/> + </g> + <g id="g678" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path680" d="m379.74 656.52h-0.721" stroke-width=".13774"/> + </g> + <g id="g682" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path684" d="m382.36 656.4 1.763 5.58" stroke-width=".13774"/> + </g> + <g id="g686" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path688" d="m382.7 656.52 2.139 5.355" stroke-width=".13774"/> + </g> + <g id="g690" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path692" d="m383 656.53 2.505 5.237" stroke-width=".13774"/> + </g> + <g id="g694" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path696" d="m386.11 661.32-2.763-4.888" stroke-width=".13774"/> + </g> + <g id="g698" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path700" d="m386.11 661.31h-2.192" stroke-width=".13774"/> + </g> + <g id="g702" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path704" d="m385.73 660.65h-2.019" stroke-width=".13774"/> + </g> + <g id="g706" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path708" d="m385.36 659.99h-1.851" stroke-width=".13774"/> + </g> + <g id="g710" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path712" d="m384.98 659.32h-1.688" stroke-width=".13774"/> + </g> + <g id="g714" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path716" d="m384.61 658.66h-1.529" stroke-width=".13774"/> + </g> + <g id="g718" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path720" d="m384.23 658h-1.36" stroke-width=".13774"/> + </g> + <g id="g722" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path724" d="m383.86 657.34h-1.194" stroke-width=".13774"/> + </g> + <g id="g726" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path728" d="m383.48 656.67h-1.032" stroke-width=".13774"/> + </g> + <g id="g730" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path732" d="m385.74 656.83-1.725 5.173" stroke-width=".13774"/> + </g> + <g id="g734" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path736" d="m386.26 656.6-1.6 5.303" stroke-width=".13774"/> + </g> + <g id="g738" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path740" d="m385.4 661.78 1.174-4.992" stroke-width=".13774"/> + </g> + <g id="g742" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path744" d="m386.88 656.96-0.988 4.75" stroke-width=".13774"/> + </g> + <g id="g746" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path748" d="m384.22 661.41h1.731" stroke-width=".13774"/> + </g> + <g id="g750" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path752" d="m384.44 660.76h1.65" stroke-width=".13774"/> + </g> + <g id="g754" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path756" d="m384.65 660.12h1.572" stroke-width=".13774"/> + </g> + <g id="g758" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path760" d="m384.86 659.48h1.491" stroke-width=".13774"/> + </g> + <g id="g762" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path764" d="m385.08 658.83h1.41" stroke-width=".13774"/> + </g> + <g id="g766" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path768" d="m385.3 658.19h1.329" stroke-width=".13774"/> + </g> + <g id="g770" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path772" d="m385.51 657.55h1.248" stroke-width=".13774"/> + </g> + <g id="g774" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path776" d="m385.72 656.9h1.027" stroke-width=".13774"/> + </g> + <g id="g778" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path780" d="m387.67 657.01 0.846 3.547" stroke-width=".13774"/> + </g> + <g id="g782" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path784" d="m387.98 656.84 1.169 3.697" stroke-width=".13774"/> + </g> + <g id="g786" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path788" d="m388.38 656.83 1.275 3.702" stroke-width=".13774"/> + </g> + <g id="g790" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path792" d="m388.9 657.03 1.277 3.477" stroke-width=".13774"/> + </g> + <g id="g794" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path796" d="m390.06 660.2h-1.638" stroke-width=".13774"/> + </g> + <g id="g798" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path800" d="m389.87 659.68h-1.556" stroke-width=".13774"/> + </g> + <g id="g802" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path804" d="m389.68 659.16h-1.491" stroke-width=".13774"/> + </g> + <g id="g806" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path808" d="m389.49 658.64h-1.43" stroke-width=".13774"/> + </g> + <g id="g810" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path812" d="m389.29 658.12h-1.358" stroke-width=".13774"/> + </g> + <g id="g814" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path816" d="m389.1 657.6h-1.284" stroke-width=".13774"/> + </g> + <g id="g818" stroke-width=".13774" stroke="#000" fill="none"> + <path id="path820" d="m388.91 657.08h-1.218" stroke-width=".13774"/> + </g> + <g id="g822" fill="#00b800"> + <path id="path824" d="m372.37 666.26c0.806-0.519 2.183-0.415 2.885 0.104 0.832-0.467 2.339-0.338 3.041 0.286 1.065-0.727 1.975-0.831 3.014-0.13 0.806-0.571 2.053-0.623 3.015 0.052 0.935-0.442 1.975-0.805 2.884 0.156-0.545-0.39-1.715-0.728-2.884 0.182-0.91-0.91-2.495-0.572-3.015 0.052-0.676-0.806-2.105-0.936-2.963 0.052-0.935-0.78-2.338-0.806-3.092-0.208-0.598-0.468-1.481-0.857-2.885-0.546z"/> + </g> + <g id="g826" fill="#cf6200"> + <path id="path828" d="m386.57 665.15c-4.132 0.714-13.137 0.208-15.112-0.286-0.679-0.17-0.494-0.416 0.078-0.286 2.276 0.517 7.133 0.52 9.81 0.39 0.52-0.689 1.338-1.858 1.585-2.183s0.356-0.355 0.871-0.442c0.922-0.156 1.449-0.24 2.248-0.377 0.013 0.104 0.013 0.234 0.013 0.312-0.065 0.052-0.13 0.143-0.182 0.169 0 0.533 0.104 1.832 0.208 2.3 0.104-0.013 0.234-0.052 0.299-0.065 0.182-0.052 0.363 0.416 0.182 0.468z"/> + </g> + <g id="g830" fill="#cf6200"> + <path id="path832" d="m393.34 665.35c0.149-0.004 0.46-0.011 0.546-0.013 0.169-0.004 0.406-0.12 0.51-0.38s0.426-1.221 0.543-1.624l-0.416-0.627c0.091-0.517 0.208-1.218 0.221-1.361 0.208-0.078 0.428-0.156 0.532-0.195 0.026-0.117-0.025-0.435-0.13-0.539-1.78 0.068-7.107 0.253-8.082 0.266-0.234 0-0.339-0.01-0.428 0.325-0.494 1.845 0.189 4.434 2.053 5.925 0.13 0.104 0.294 0.017 0.077-0.182-0.311-0.286-0.792-0.871-1.117-1.449 0.364-0.006 1.102-0.018 1.323-0.027 0.106 0.437 0.438 1.359 0.503 1.515s0.225 0.178 0.149-0.055c-0.179-0.546-0.273-1.168-0.351-1.467 0.338-0.008 0.975-0.002 1.365-0.024 0.019 0.494 0.071 1.156 0.084 1.338s0.169 0.195 0.172-0.013c0.004-0.208 0.008-1.087 0.005-1.346 0.44-0.012 1.002-0.031 1.21-0.031-0.029 0.281-0.083 1.19-0.103 1.334-0.03 0.212 0.081 0.312 0.133 0.013s0.156-0.998 0.185-1.352c0.176-0.005 0.639-0.024 0.834-0.029-0.019 0.277-0.279 1.119-0.357 1.34s0.048 0.228 0.136 0.019c0.092-0.214 0.377-1.059 0.403-1.361z"/> + </g> + <g id="g834"> + <path id="path836" d="m387.44 665.14c-0.143-0.286-0.585-1.303-0.624-2.043 0.377-0.007 1.32-0.025 1.775-0.035 0.067 0.558 0.239 1.76 0.33 2.045-0.532 0.013-1.182 0.03-1.481 0.033z"/> + </g> + <g id="g838"> + <path id="path840" d="m388.9 663.05c0.049 0.426 0.272 1.889 0.308 2.058 0.386-0.023 1.28-0.026 1.435-0.039-0.016-0.39-0.079-1.853-0.086-2.061-0.404 0.011-1.454 0.037-1.657 0.042z"/> + </g> + <g id="g842"> + <path id="path844" d="m386.89 661.24c-0.072 0.374-0.085 1.173-0.065 1.514 0.455 0.009 1.575-0.018 1.73-0.031-0.038-0.388-0.099-1.09-0.138-1.528-0.371 0.016-1.28 0.038-1.527 0.045z"/> + </g> + <g id="g846"> + <path id="path848" d="m388.75 661.19c0.013 0.364 0.094 1.254 0.12 1.526 0.393-0.011 1.355-0.031 1.68-0.042-0.017-0.333-0.07-1.406-0.076-1.536-0.522 0.014-1.393 0.047-1.724 0.052z"/> + </g> + <g id="g850"> + <path id="path852" d="m390.81 661.13c0.016 0.338 0.059 1.292 0.046 1.539 0.417-0.011 1.214-0.019 1.461-0.039 0.019-0.339 0.074-1.308 0.048-1.555-0.468 0.018-1.214 0.043-1.555 0.055z"/> + </g> + <g id="g854"> + <path id="path856" d="m392.65 661.06c0 0.286-0.036 1.291-0.049 1.564 0.413-0.016 1.351-0.049 1.595-0.055 0.065-0.335 0.195-1.205 0.234-1.572-0.39 0.013-1.495 0.055-1.78 0.063z"/> + </g> + <g id="g858"> + <path id="path860" d="m394.26 662.91c-0.533 0.017-1.39 0.04-1.68 0.051-0.045 0.658-0.127 1.795-0.166 2.055 0.469-0.01 1.417-0.04 1.625-0.046 0.156-0.312 0.494-1.286 0.572-1.585-0.117-0.182-0.208-0.286-0.351-0.475z"/> + </g> + <g id="g862"> + <path id="path864" d="m390.87 663c0 0.234 0.041 1.909 0.051 2.052 0.305-0.01 1.097-0.021 1.214-0.034 0.059-0.652 0.148-1.901 0.164-2.057-0.54 0.015-1.07 0.031-1.429 0.039z"/> + </g> + <g id="g866"> + <path id="path868" d="m383.97 662.6-0.677 0.12c-0.312 0.504-1.468 2.063-1.611 2.245 0.805-0.023 2.064-0.047 2.367-0.076-0.022-0.418-0.078-2.082-0.079-2.289z"/> + </g> + <g id="g870"> + <path id="path872" d="m384.27 662.54c0.016 0.533 0.067 1.953 0.08 2.33 0.399-0.023 1.134-0.071 1.433-0.097-0.069-0.67-0.195-2.27-0.221-2.465-0.335 0.061-0.993 0.177-1.292 0.232z"/> + </g> + <g id="g874" stroke-width=".13774" stroke="#000"> + <path id="path876" d="m377.29 656.93c0.091 0.001 0.103 0.079-0.001 0.078l-7.678-0.095c-0.104-0.001-0.09-0.079 0.001-0.078l7.678 0.095z" stroke-width=".13774"/> + </g> + <g id="g878" stroke-width=".13774" stroke="#000"> + <path id="path880" d="m383.33 650.78c0.091 0.003 0.102 0.081-0.002 0.078l-6.083-0.167c-0.104-0.003-0.089-0.081 0.002-0.078l6.083 0.167z" stroke-width=".13774"/> + </g> + <g id="g882" stroke-width=".13774" stroke="#000"> + <path id="path884" d="m376.91 652.54c0.091 0.001 0.103 0.079-0.001 0.078l-6.808-0.05c-0.104 0-0.09-0.078 0-0.078l6.809 0.05z" stroke-width=".13774"/> + </g> + <g id="g886" stroke-width=".13774" stroke="#000"> + <path id="path888" d="m377.11 648.12c0.091 0 0.104 0.078 0 0.078l-7.121-0.037c-0.104 0-0.09-0.078 0.001-0.077l7.12 0.036z" stroke-width=".13774"/> + </g> + <g id="g890" stroke-width=".13774" stroke="#000"> + <path id="path892" d="m376.62 644.63c0.091 0.001 0.102 0.08-0.001 0.078l-6.919-0.104c-0.104-0.002-0.09-0.08 0.001-0.078l6.919 0.104z" stroke-width=".13774"/> + </g> + <g id="g894" stroke-width=".13774" stroke="#000"> + <path id="path896" d="m383.78 642.59c0.091-0.001 0.105 0.077 0.001 0.078l-5.938 0.057c-0.104 0.001-0.092-0.077-0.001-0.078l5.938-0.057z" stroke-width=".13774" fill="#fff"/> + </g> + <g id="g898" stroke-width=".13774" stroke="#000"> + <path id="path900" d="m384.15 645.91c0.091 0 0.104 0.078 0 0.078h-6.562c-0.104 0-0.091-0.078 0-0.078h6.562z" stroke-width=".13774"/> + </g> + <g id="g902" stroke-width=".13774" stroke="#000"> + <path id="path904" d="m390.59 650.64c0.091 0 0.104 0.078 0 0.078h-7.072c-0.104 0-0.091-0.078 0-0.078h7.072z" stroke-width=".13774"/> + </g> + <g id="g906" stroke-width=".13774" stroke="#000"> + <path id="path908" d="m390.69 644.73c0.091 0.001 0.103 0.079-0.001 0.078l-7.225-0.071c-0.104-0.001-0.09-0.079 0.001-0.078l7.225 0.071z" stroke-width=".13774"/> + </g> + <g id="g910" stroke-width=".13774" stroke="#000"> + <path id="path912" d="m384.01 655.12c0.091 0.001 0.103 0.079-0.001 0.078l-6.356-0.042c-0.104-0.001-0.09-0.079 0.001-0.078l6.356 0.042z" stroke-width=".13774"/> + </g> + <g id="g914" stroke-width=".13774" stroke="#000"> + <path id="path916" d="m390.22 655.98c0.091 0.001 0.103 0.079-0.001 0.078l-5.587-0.074c-0.104-0.001-0.089-0.079 0.002-0.078l5.586 0.074z" stroke-width=".13774"/> + </g> + <g id="g918" stroke-width=".13774" stroke="#000" fill="#ef072d"> + <path id="path920" d="m395.26 657.05c0.157-0.349 0.179-1.151 0.089-1.455-0.242 0.049-0.447 0.038-0.647-0.04-0.105-0.04-0.22-0.076-0.341-0.106-0.022 0.402-0.168 1.426-0.348 1.822-0.314 0.089-0.947-0.015-1.307-0.128-0.095 0.341-0.182 0.654-0.262 0.942 0.447 0.103 1.008 0.094 1.452-0.009-0.035 0.601-0.114 1.148-0.439 1.526 0.531 0.012 1.006-0.066 1.18-0.252 0.016-0.018 0.034-0.033 0.053-0.048 0.245-0.41 0.252-0.944 0.311-1.304 0.181 0.013 0.415-0.039 0.519-0.143s0.273-0.156 0.442-0.143c0.154 0.012 0.394-0.02 0.699-0.143 0.008-0.184 0.044-0.384 0.107-0.558 0.034-0.095 0.071-0.253 0.102-0.444-0.387 0.185-1.25 0.494-1.61 0.483z" stroke-width=".13774"/> + </g> + <g id="g922" stroke-width=".13774" stroke="#000"> + <path id="path924" d="m370.46 623.2c-0.791 0.023-2.513 0.039-2.875 0.242-0.361 0.204-0.52 0.294 0.113 0.407s1.704 0.414 2.291 0.776c0.587 0.361 1.079 1.001 0.917 1.914-0.485 2.743 0.949 5.381 3.027 6.376 0.201 0.096 0.249 0.169 0.204 0.542s-0.181 0.995-0.294 1.153c-0.113 0.159-0.169 0.419 0.192 0.294-0.248 0.464-0.802 1.391-0.971 1.628-1.661-0.203-3.016 0.023-3.141 1.763-0.012 0.17 0.046 0.441 0.305 0.012 0.26-0.43 0.554-0.837 1.265-0.95-0.418 0.644-0.553 1.221-0.485 1.594 0.067 0.373 0.169 0.599 0.35 0.124 0.181-0.474 0.514-0.918 0.87-1.187 0.135-0.101 0.226-0.124 0.124 0.17s0.045 0.927 0.249 1.142c0.203 0.214 0.305 0.124 0.248-0.226-0.056-0.351 0.032-1.084 0.463-1.312 0.621-0.327 1.152-0.158 1.401 0.272 0.248 0.429 0.463 0.022 0.192-0.464s-0.554-0.825-1.006-0.859c0.396-0.701 0.859-1.549 0.961-1.718 0.101-0.17 0.26-0.249 0.395-0.147 0.136 0.102 0.226 0.09 0.362-0.192 0.135-0.283 0.372-1.119 0.711-1.458 0.17-0.046 0.441-0.113 0.542-0.204 0.441 0.644 0.836 1.357 0.938 1.515 0.101 0.158 0.215 0.226 0.113 0.554s-0.452 1.368-0.508 1.594c-1.232 0.045-1.796 0.067-2.192 0.757-0.173 0.301 0.102 0.418 0.396 0.26 0.293-0.158 0.711-0.294 0.926-0.26 0.214 0.034 0.315 0.144 0.101 0.249-0.756 0.373-1.229 0.847-1.197 1.503 0.011 0.237 0.109 0.355 0.294 0.034 0.26-0.452 0.734-0.904 1.31-1.029-0.034 0.554 0.091 1.368 0.429 1.538 0.339 0.169 0.363-0.003 0.237-0.328-0.203-0.52 0.008-1.043 0.26-1.323 0.531-0.588 1.74 0.226 1.966 0.43 0.226 0.203 0.432 0.288 0.305-0.238-0.17-0.7-1.164-1.107-2.011-1.22 0.237-1.142 0.87-3.448 1.209-4.239 0.497 0.271 0.885-0.444 1.717-0.136 1.4 0.52 3.501 1.831 3.863 2.125 0.361 0.294 0.497 0.226 0.678 0.068 0.18-0.158 0.497 0 0.745 0.045 0.249 0.045 0.475 0.113 0.158-0.52-0.316-0.633-1.084-1.741-2.372-2.6 0.768 0.068 1.808 0.068 1.808-0.135 0-0.204-1.198-0.588-1.695-0.633 0.475-0.113 1.198-0.385 1.536-0.769 0.201-0.227-0.04-0.28-0.745-0.294-2.169-0.045-3.253-0.028-4.383-0.678-1.807-1.04-2.841-2.135-3.728-2.6-0.474-0.249-0.763-0.823-0.946-1.319-0.587-1.583-0.558-2.295-1.936-2.815s-2.963 0.117-3.686 0.772z"/> + </g> + <g id="g926" stroke-width=".13774" stroke="#000" fill="#fff"> + <path id="path928" d="m370.55 623.56c-0.351-0.013-1.04-0.096-1.611-0.039-0.13 0.013-0.286 0.078 0.026 0.117s1.156 0.246 1.455 0.35 0.169 0.26-0.091 0.195-0.356 0.031-0.143 0.182c1.105 0.78 1.222 1.079 0.936 3.755 0.208 0.143 0.377 0.247 0.559 0.338s0.13 0.221-0.065 0.169-0.377 0.065-0.065 0.13 0.454 0.208 0.156 0.195c-0.299-0.013-0.65 0.247-0.065 0.182 0.584-0.065 0.818 0.208 0.13 0.221-0.689 0.013-0.429 0.234-0.065 0.234 0.649 0 0.454 0.182 0.286 0.182-0.169 0-0.247 0.221 0.182 0.182 0.428-0.039 0.597-0.052 0.753-0.026s0.221 0.155-0.013 0.169c-0.234 0.012-0.221 0.181 0.13 0.181s0.497 0.106 0.182 0.169c-0.13 0.026-0.31 0.091 0.065 0.143 0.65 0.091 0.676 0.247 0.468 0.273s-0.234 0.143 0.065 0.169c0.298 0.026 0.558 0.117 0.312 0.182-0.247 0.065-0.377 0.208-0.066 0.234 0.312 0.026 0.572 0.143 0.338 0.221s-0.286 0.221 0.013 0.208 0.416 0.156 0.208 0.272c-0.208 0.117-0.351 0.195-0.481-0.012-0.129-0.208-0.207-0.273-0.246-0.117-0.039 0.155-0.13 0.052-0.234-0.182s-0.286-0.299-0.234-0.117-0.182 0.208-0.403 0.117c0.819 0.831 2.027 1.585 3.95 0.805 0.164-0.066 0.195 0 0.325 0.273s0.494 0.871 0.624 1.092 0.233 0.022 0.298-0.195c0.26-0.858 0.455-1.495 0.533-1.728 0.078-0.234 0.442-0.468 0.325 0.35 0.286-0.195 1.553-0.379 2.534-0.013 1.078 0.403 2.162 1.028 2.716 1.443 0.104 0.078 0.234 0.169 0.493 0.143 0.26-0.026 0.325-0.065-0.169-0.52-0.493-0.455-0.285-0.676 0.026-0.455 0.312 0.221 0.481 0.091 0.247-0.182s-0.792-0.805-0.974-0.935-0.208-0.182-0.624-0.208-1.299-0.026-1.559-0.026-0.338 0.026 0.234 0.234c0.571 0.207 1.741 0.961 2.001 1.143s0.442 0.598-0.13 0.234-2.365-1.481-3.56-1.897c-2.729 0.182-4.886 0.546-6.497-1.221-0.772-0.846-0.806-2.781 0.493-3.587-0.26-0.221-0.221-0.351-0.117-0.403s0.143-0.104 0.039-0.234c-0.103-0.13-0.091-0.246 0-0.298-0.285-0.156-0.415-0.338-0.402-0.533-0.351-0.078-0.507-0.494-0.975-0.364s-0.702 0.026-0.844-0.091c-0.144-0.117-0.26-0.169-0.52-0.143s-0.468-0.078-0.481-0.208 0.22-0.193 0.572-0.039c0.74 0.325 1.338 0.481 1.793-0.13 0.455-0.61-0.13-1.182-1.001-1.351-0.87-0.169-1.507 0.468-1.832 0.767z" stroke-width=".13774"/> + </g> + <g id="g930" stroke-width=".13774" stroke="#000" fill="#fff"> + <path id="path932" d="m374.92 623.33c-0.262-0.284-0.728-0.546-0.961-0.624-0.234-0.078-0.26 0.156-0.13 0.273-0.104 0.156-0.143 0.533 0.039 0.637s0.184 0.252 0.013 0.337c-0.26 0.13-0.172 0.82 0.22 0.624 0.13-0.065 0.234-0.039 0.208 0.065s0.026 0.234 0.143 0.26 0.104 0.195 0.078 0.26 0.013 0.091 0.143 0.104 0.143 0.325-0.091 0.429c0.286 0 0.364-0.052 0.442 0.182 0.078 0.233 0.39 0.285 0.39 0.571s-0.052 0.338-0.39 0.286-0.468 0.052-0.572 0.182-0.13 0.26 0.13 0.273 0.312 0.13 0.052 0.247-0.688 0.039-0.753 0.286c-0.065 0.246 0 0.363 0.194 0.272 0.195-0.09 0.598-0.259 0.754-0.35s0.299-0.104 0.429 0.104 0.026 0.441-0.195 0.26c-0.221-0.182-0.325-0.014-0.455 0.09s-0.325 0.169-0.533 0.169c-0.207 0-0.35 0.027-0.324 0.494 0.078 1.404 1.169 2.443 3.17 2.417s2.989-0.052 3.288-0.013c-0.663-0.364-1.079-0.559-1.313-0.533s-0.429 0.065-0.325-0.117-0.013-0.182-0.117-0.26-0.233-0.182-0.441 0.039-0.702 0.468-0.949 0.52-0.546 0.039-0.312-0.195 0.754-0.312 0.91-0.416 0.156-0.168 0.156-0.246-0.039-0.299 0.26-0.13c0.597 0.338 1.533 0.844 1.78 0.831s0.416-0.117 0.195-0.26-0.286-0.35-0.221-0.428 0.104-0.156 0.494 0.065c0.389 0.22 1.026 0.506 1.26 0.61s0.546 0.065 0.065-0.286c-0.481-0.35-1.975-1.338-2.391-1.65s-0.234 0.065-0.195 0.182-0.286 0.26-0.455 0.117-0.286-0.299-0.052-0.429 0.286-0.143-0.065-0.455c-0.35-0.311-0.454-0.285-0.376-0.026 0.078 0.26 0.104 0.546-0.26 0.403s-0.546-0.312-0.312-0.455c0.234-0.142 0.533-0.22 0.143-0.545s-0.273 0-0.364 0.182-0.39 0.182-0.559 0.039-0.247-0.286-0.13-0.403 0.104-0.182 0.273-0.091 0.429 0.039 0.117-0.234-0.429-0.156-0.364 0-0.182 0.429-0.571 0.065c-0.185-0.172-0.182-0.403 0.013-0.442 0.194-0.039 0.213-0.14 0.077-0.338-0.792-1.156-0.467-2.092-1.26-2.949z" stroke-width=".13774"/> + </g> + <g id="g934" fill="#cf6200"> + <path id="path936" d="m375.05 623.49c-0.068 0.102-0.093 0.098-0.219 0.182-0.155 0.103-0.19 0.398 0.07 0.363 0.18-0.024 0.285-0.131 0.356-0.218-0.057-0.11-0.125-0.219-0.207-0.327z"/> + </g> + <g id="g938" fill="#cf6200"> + <path id="path940" d="m374.24 622.84c-0.2 0.194-0.235 0.281-0.133 0.281 0.121 0 0.069 0.017-0.018 0.156-0.086 0.139 0.174 0.208 0.278 0.104s0.121-0.139 0.173 0c0.042 0.113 0.213 0.006 0.321-0.103-0.177-0.171-0.415-0.329-0.621-0.438z"/> + </g> + <g id="g942" fill="#cf6200"> + <path id="path944" d="m373.88 623.96c-0.26 0.13-0.172 0.82 0.22 0.624 0.13-0.065 0.234-0.039 0.208 0.065-0.014 0.055-0.005 0.118 0.024 0.168 0.155-0.065 0.31-0.173 0.431-0.311 0.243-0.277 0.017-0.26-0.346-0.26-0.364 0-0.468-0.069-0.122-0.277 0.31-0.186 0.108-0.315-0.321-0.255 0.062 0.088 0.031 0.184-0.094 0.246z"/> + </g> + <g id="g946" fill="#cf6200"> + <path id="path948" d="m375.37 625.49c-0.191-0.208-0.07-0.312 0.138-0.416 0.051-0.025 0.086-0.057 0.111-0.095-0.059-0.229-0.106-0.449-0.168-0.663-0.109 0.031-0.236 0.274-0.272 0.394-0.052 0.173-0.104 0.277-0.277 0.225-0.154-0.046-0.308 0.127-0.34 0.312 0.024 0.01 0.061 0.017 0.11 0.022 0.072 0.007 0.108 0.105 0.086 0.209 0.469-0.015 0.549 0.309 0.629 0.531 0.087 0.243 0.191 0.208 0.26 0.07 0.069-0.139-0.087-0.381-0.277-0.589z"/> + </g> + <g id="g950" fill="#ff0"> + <path id="path952" d="m375.5 628.21c-0.085 0.192-0.087 0.173-0.364 0.19-0.277 0.018-0.626 0.065-0.779 0.226-0.083 0.086-0.562 0.109-0.563 0.32-0.002 0.212 0 0.39 0.208 0.403 0.207 0.013 0.233 0.039 0.156 0.195-0.079 0.156-0.13 0.416 0.233 0.442 0.364 0.026 0.624-0.091 0.715 0.116 0.091 0.208-0.007 0.54 0.065 0.663s0.318 0.202 0.699 0.32c0.254 0.079 1.213 0.124 1.508 0.09 0.294-0.035 0.184-0.211-0.111-0.237-0.294-0.026-0.511-0.069-0.58-0.285-0.069-0.217-0.13-0.33 0.035-0.511 0.164-0.182 0.329-0.321 0.234-0.624-0.096-0.303-0.252-0.659-0.598-0.754-0.347-0.095-0.237-0.569-0.581-0.615-0.13-0.017-0.242-0.017-0.277 0.061z"/> + </g> + <g id="g954" fill="#cf6200"> + <path id="path956" d="m373.82 631.03c0.298 0.026 0.558 0.117 0.312 0.182-0.247 0.065-0.377 0.208-0.066 0.234 0.312 0.026 0.572 0.143 0.338 0.221s-0.286 0.221 0.013 0.208 0.416 0.156 0.208 0.272c-0.208 0.117-0.351 0.195-0.481-0.012-0.129-0.208-0.207-0.273-0.246-0.117-0.039 0.155-0.13 0.052-0.234-0.182s-0.286-0.299-0.234-0.117-0.182 0.208-0.403 0.117c0.218 0.221 0.463 0.436 0.742 0.618 0.319-0.109 0.671-0.02 0.791-0.008 0.13 0.013 0.533 0.104 0.754 0.221s0.364-0.091 0.273-0.325c-0.091-0.233-0.104-0.155-0.221-0.026-0.117 0.13-0.143-0.052-0.13-0.324 0.011-0.23-0.143-0.169-0.195-0.026s-0.169-0.091-0.104-0.234-0.013-0.195-0.13-0.156-0.13 0-0.143-0.26-0.13-0.221-0.169-0.117-0.143-0.039-0.299-0.247c-0.136-0.182-0.293-0.075-0.565 0.033 0.034 0.02 0.096 0.037 0.189 0.045z"/> + </g> + <g id="g958" fill="#ff0"> + <path id="path960" d="m376.98 632.64c-1.42 0.576-2.444 0.32-3.215-0.191 0.319-0.109 0.678-0.016 0.798-0.004 0.13 0.013 0.533 0.104 0.754 0.221s0.364-0.091 0.273-0.325c0.195 0.247 0.338 0.416 0.571 0.403 0.234-0.013 0.624-0.052 0.819-0.104z"/> + </g> + <g id="g962" fill="#ff0"> + <path id="path964" d="m373.95 626.1c-0.087-0.294-0.173-0.364-0.329-0.346-0.156 0.017-0.225-0.018-0.399-0.087-0.173-0.069-0.398 0.017-0.433 0.329s-0.225 0.468-0.485 0.658c-0.26 0.191-0.416 0.347-0.416 0.659s-0.069 0.398-0.242 0.624c-0.077 0.1-0.186 0.214-0.288 0.334 0.112 0.07 0.217 0.131 0.327 0.185 0.182 0.091 0.13 0.221-0.065 0.169s-0.377 0.065-0.065 0.13 0.454 0.208 0.156 0.195c-0.299-0.013-0.65 0.247-0.065 0.182 0.584-0.065 0.818 0.208 0.13 0.221-0.689 0.013-0.429 0.234-0.065 0.234 0.649 0 0.454 0.182 0.286 0.182-0.169 0-0.247 0.221 0.182 0.182 0.006-0.001 0.011-0.002 0.018-0.002 0.062-0.064 0.108-0.144 0.142-0.245 0.069-0.208 0.138-0.815 0.381-0.988 0.242-0.173 0.364-0.416 0.364-0.589s0.363-0.935 0.606-1.126 0.347-0.606 0.26-0.901z"/> + </g> + <g id="g966" fill="#cf6200"> + <path id="path968" d="m373.44 626.11c-0.246-0.164-0.485-0.069-0.485 0.243s-0.156 0.398-0.364 0.502c-0.207 0.104-0.398 0.364-0.433 0.607-0.034 0.242 0.035 0.398-0.138 0.589-0.174 0.19-0.191 0.346-0.069 0.45 0.121 0.104 0.121 0.122 0.173 0.277 0.052 0.156 0.346-0.017 0.346-0.19s0.07-0.173 0.26-0.277c0.191-0.104 0.503-0.607 0.433-0.745-0.069-0.139-0.242-0.26-0.017-0.451 0.225-0.19 0.468-0.208 0.468-0.398 0-0.191 0.069-0.26 0.138-0.329 0.07-0.07-0.156-0.174-0.312-0.278z"/> + </g> + <g id="g970"> + <path id="path972" d="m373.44 625.86c-0.162-0.063-0.259 0.277-0.034 0.329s0.26-0.243 0.034-0.329z"/> + </g> + <g id="g974"> + <path id="path976" d="m373.4 626.3c-0.172 0.021-0.364 0.247-0.078 0.208s0.403-0.247 0.078-0.208z"/> + </g> + <g id="g978"> + <path id="path980" d="m373.06 626.72c-0.177 0.089-0.143 0.325 0.117 0.156s0.325-0.377-0.117-0.156z"/> + </g> + <g id="g982"> + <path id="path984" d="m372.78 627.08c-0.178 0.088-0.143 0.324 0.117 0.156 0.26-0.169 0.325-0.377-0.117-0.156z"/> + </g> + <g id="g986"> + <path id="path988" d="m372.42 627.25c-0.177 0.089-0.065 0.325 0.195 0.156s0.247-0.377-0.195-0.156z"/> + </g> + <g id="g990"> + <path id="path992" d="m372.64 627.47c-0.177 0.089-0.065 0.325 0.195 0.156s0.247-0.377-0.195-0.156z"/> + </g> + <g id="g994"> + <path id="path996" d="m372.33 627.56c-0.177 0.089-0.065 0.325 0.195 0.156s0.247-0.377-0.195-0.156z"/> + </g> + <g id="g998"> + <path id="path1000" d="m372.53 627.81c-0.178 0.089-0.065 0.325 0.194 0.156 0.26-0.169 0.247-0.377-0.194-0.156z"/> + </g> + <g id="g1002"> + <path id="path1004" d="m372.23 627.96c-0.177 0.088-0.065 0.324 0.195 0.155s0.247-0.376-0.195-0.155z"/> + </g> + <g id="g1006"> + <path id="path1008" d="m372.25 628.19c-0.177 0.089-0.065 0.325 0.195 0.156s0.247-0.377-0.195-0.156z"/> + </g> + <g id="g1010" fill="#cf6200"> + <path id="path1012" d="m372.11 630.38c-0.179 0.023-0.294 0.278-0.069 0.33s0.277 0.069 0.277 0.242 0.07 0.416 0.312 0.433c0.243 0.018 0.451-0.26 0.243-0.346-0.208-0.087-0.399-0.156-0.416-0.347-0.017-0.19-0.208-0.329-0.347-0.312z"/> + </g> + <g id="g1014" fill="#ff0"> + <path id="path1016" d="m378.49 628.89c0.032 0.04 0.072 0.084 0.118 0.123 0.169 0.143 0.494 0 0.455-0.117s-0.221-0.494 0.195-0.182 1.91 1.3 2.391 1.65c0.481 0.351 0.169 0.39-0.065 0.286s-0.871-0.39-1.26-0.61c-0.39-0.221-0.429-0.143-0.494-0.065-0.055 0.065-0.011 0.222 0.132 0.355-0.232 0.034-0.609-0.017-0.717-0.264-0.13-0.299-0.442-0.663-0.663-0.949-0.082-0.106-0.106-0.172-0.092-0.227z"/> + </g> + <g id="g1018" fill="#00d860"> + <path id="path1020" d="m391.38 671.46c-0.324 0.221-0.753 0.611-0.468 1.156 0.034-0.018 0.066-0.039 0.099-0.058 1.271-1.538 2.359-3.155 3.291-4.835 0.011-0.058 0.021-0.113 0.028-0.161-0.364 0.312-0.936 0.623-1.17 0.701 0.156 0.416-0.571 0.962-0.961 1.118 0.156 0.26 0.104 0.65-0.234 0.728 0.078 0.233-0.182 0.233-0.494 0.363s-0.468 0.234-0.571 0.39c0.168-0.091 0.402-0.169 0.532-0.13s0.156 0.234-0.078 0.286-0.389 0.182-0.468 0.286c0.338-0.13 0.819-0.065 0.494 0.156z"/> + </g> + <g id="g1022" stroke-width=".13774" stroke="#000"> + <path id="path1024" d="m375.97 628.41c-0.384-0.335-0.481-0.13-0.325 0.078s0.039 0.312-0.299 0.364-0.845 0.117-1.053 0.117-0.454 0.286 0.039 0.26c0.494-0.026 1.326-0.195 1.547-0.286s0.402-0.26 0.091-0.533z" stroke-width=".13774"/> + </g> + <g id="g1026" stroke-width=".13774" stroke="#000"> + <path id="path1028" d="m376.72 629c-0.317-0.285-0.429-0.208-0.351 0s-0.065 0.247-0.272 0.312c-0.208 0.065-1.027 0.338-1.378 0.377s-0.429 0.286 0.091 0.273 1.52-0.429 1.637-0.507 0.156-0.234 0.286-0.156 0.247-0.065-0.013-0.299z" stroke-width=".13774"/> + </g> + <g id="g1030" stroke-width=".13774" stroke="#000"> + <path id="path1032" d="m376.96 629.83c-0.23 0.137-0.805 0.389-1.039 0.454s-0.429 0.325 0.065 0.286c0.493-0.039 1.078-0.494 1.234-0.584 0.156-0.091 0.234-0.156 0.364-0.143s0.364-0.169-0.065-0.403-0.689-0.117-0.481 0.065 0.052 0.247-0.078 0.325z" stroke-width=".13774"/> + </g> + <g id="g1034"> + <path id="path1036" d="m372.91 623.29c-0.635-0.417-1.36 0.457-0.658 0.936 0.615 0.42 1.265-0.537 0.658-0.936z"/> + </g> + <g id="g1038" fill="#fff"> + <path id="path1040" d="m372.12 623.67 0.188 0.013c-0.039 0.194 0.156 0.487 0.455 0.415-0.24 0.182-0.708-0.026-0.643-0.428z"/> + </g> + <g id="g1042" fill="#fff"> + <path id="path1044" d="m374.58 633.14c0.192 0.056 0.859 0.124 1.085 0.135-0.113 0.238-0.215 0.396-0.283 0.566-0.068 0.169-0.101 0.181-0.113-0.079-0.011-0.261-0.158-0.43-0.293-0.159-0.136 0.272-0.204 0.373-0.271 0.486-0.068 0.113-0.17 0.159-0.136-0.124s0.023-0.577 0.011-0.825z"/> + </g> + <g id="g1046" stroke="#000" stroke-width=".27549" fill="none"> + <path id="path1048" d="m399.67 640.77c-0.046 16.332-2.623 33.927-23.764 42.308-21.142-8.381-23.719-25.976-23.765-42.308h47.529z" stroke="#000" stroke-width=".27549"/> + </g> + <g id="g3680" stroke="#000" stroke-width=".27549" fill="none"> + <path id="path3682" d="m399.67 640.77c0.018-6.152-0.324-12.125-0.168-17.359-7.9-3.535-18.295-4.262-23.596-4.262-5.302 0-15.697 0.727-23.597 4.262 0.156 5.234-0.185 11.207-0.168 17.359h47.529z" stroke="#000" stroke-width=".27549" fill="none"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/si.svg b/s/flag/si.svg new file mode 100755 index 0000000..3ce6d7d --- /dev/null +++ b/s/flag/si.svg @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg552" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3095"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs554"> + <clipPath id="clipPath9826" clipPathUnits="userSpaceOnUse"> + <rect id="rect9828" fill-opacity="0.67" height="512" width="682.67" y="-.000016209" x="-15.067"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath9826)" transform="matrix(.9375 0 0 .9375 14.125 .000015196)" stroke-width="1pt"> + <rect id="rect555" height="512" width="1024" y="-.000017159" x="-62" fill="#fff"/> + <rect id="rect556" height="170.67" width="1024" y="341.33" x="-62" fill="#de2918"/> + <rect id="rect563" height="170.67" width="1024" y="170.67" x="-62" fill="#08399c"/> + <path id="path694" d="m228.37 92.976c-4.0191 61.651-6.3219 95.436-15.709 111.07-10.15 16.789-20.025 29.081-59.63 43.882-39.61-14.81-49.48-27.1-59.633-43.89-9.387-15.63-11.69-49.41-15.709-111.06l5.853-1.9715c11.783-3.5933 20.574-6.4837 27.077-7.7665 9.3132-1.971 17.228-4.1995 42.257-4.7225 25.029 0.43054 32.983 2.7977 42.296 4.7687 6.4491 1.3752 15.617 4.0808 27.312 7.744l5.8842 1.9478z" fill="#de2918"/> + <path id="path675" d="m222.6 90.955c-3.802 61.518-6.9828 89.69-11.943 103.24-9.6262 23.193-24.866 35.909-57.665 48.038-32.8-12.14-48.04-24.86-57.664-48.05-4.961-13.54-8.095-41.64-11.788-103.3 11.534-3.6024 20.577-6.4175 27.08-7.7008 9.3132-1.9715 17.228-4.2932 42.257-4.7238 25.029 0.43066 33.037 2.7523 42.35 4.7238 6.503 1.2832 15.732 4.0983 27.373 7.7625z" fill="#08399c"/> + <path id="path651" d="m152.96 109.79 1.5726 3.7226 6.9103 0.94737-4.4779 2.7 4.3295 2.8941-6.2974 1.0554-1.9165 3.3733-2.1551-3.4739-5.995-0.85074 4.0799-2.957-4.2006-2.6912 6.6357-1.0172 1.5144-3.7027z" fill="#fc0"/> + <path id="path627" d="m208.28 179.62-3.8308-3.0278-2.7682-4.5545-5.4224-4.7038-2.8257-4.7532-5.4224-4.852-2.653-4.7522-2.8833-2.3277-1.9034-1.8315-4.8983 4.2951-2.6698 4.6646-3.3271 3.0164-3.6545-2.8548-2.7634-4.8664-10.258-18.217-10.259 18.217-2.7634 4.8664-3.6545 2.8548-3.3271-3.0164-2.6698-4.6646-4.8983-4.2951-1.9034 1.8315-2.8833 2.3277-2.653 4.7522-5.4224 4.852-2.8257 4.7532-5.4224 4.7038-2.7682 4.5545-3.8212 3.0988c1.9838 16.886 12.748 30.116 18.613 36.168 6.545 6.3551 20.039 14.858 36.54 20.486 16.548-5.5078 30.229-14.131 36.774-20.486 5.865-6.0524 16.629-19.282 18.625-36.239z" fill="#fff"/> + <path id="path654" d="m169.45 83.89 1.5726 3.7226 6.9103 0.94737-4.4779 2.7 4.3295 2.8941-6.2974 1.0554-1.9165 3.3733-2.1551-3.4739-5.995-0.85075 4.0799-2.957-4.2006-2.6912 6.6357-1.0172 1.5144-3.7027z" fill="#fc0"/> + <path id="path655" d="m136.47 83.834 1.5726 3.7226 6.9103 0.94737-4.4779 2.7 4.3295 2.8941-6.2974 1.0554-1.9165 3.3733-2.1551-3.4739-5.995-0.85075 4.0799-2.957-4.2006-2.6912 6.6357-1.0172 1.5144-3.7027z" fill="#fc0"/> + <path id="path664" d="m199.72 203.03-7.4685 0.0226-6.8916-0.51269-8.3477-4.0943-9.4091 0.0566-8.1486 3.9811-6.4275 0.56828-6.4275-0.56828-8.1486-3.9811-9.4091-0.0566-8.3477 4.0943-6.8916 0.51269-7.5621-0.10398-3.6521-6.1862 0.13553-0.14207 11.172 1.848 6.8916-0.51269 8.3477-4.0943 9.4091 0.0566 8.1486 3.9811 6.4275 0.56828 6.4275-0.56828 8.1486-3.9811 9.4091-0.0566 8.3477 4.0943 6.8916 0.51269 10.874-1.9066 0.14393 0.2862-3.6425 6.1821z" fill="#08399c"/> + <path id="path665" d="m113.25 212.54 7.393-0.51269 8.3477-4.0943 9.4091 0.0566 8.1486 3.9811 6.4275 0.56828 6.4275-0.56828 8.1486-3.9811 9.4091-0.0566 8.3477 4.0943 7.4937 0.51269 4.8347-5.9598-0.16311-0.13487-5.1801 1.5103-6.8916-0.51269-8.3477-4.0943-9.4091 0.0566-8.1486 3.9811-6.4275 0.56829-6.4275-0.56829-8.1486-3.9811-9.4091-0.0566-8.3477 4.0943-6.8916 0.51269-5.077-1.2797-0.0612 0.24914 4.5432 5.6149z" fill="#08399c"/> + </g> +</svg> diff --git a/s/flag/sj.svg b/s/flag/sj.svg new file mode 100755 index 0000000..d985ff2 --- /dev/null +++ b/s/flag/sj.svg @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="islenskifaninn" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3107"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath9724" clipPathUnits="userSpaceOnUse"> + <rect id="rect9726" fill-opacity="0.67" height="427.85" width="570.47" y="48.27" x="-24.803"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath9724)" transform="matrix(1.1219 0 0 1.1219 27.826 -54.153)"> + <rect id="rect12829" height="512" width="512" y="0" x="0" fill="#fff"/> + <rect id="rect583" fill-rule="evenodd" height="511.84" width="699.74" y=".15752" x="-80" stroke-width="1pt" fill="#fff"/> + <rect id="rect561" fill-rule="evenodd" height="221.47" width="212.94" y="-23.039" x="-99.213" stroke-width="1pt" fill="#d72828"/> + <rect id="rect562" fill-rule="evenodd" height="221.47" width="407.46" y="-23.039" x="237.42" stroke-width="1pt" fill="#d72828"/> + <rect id="rect563" fill-rule="evenodd" height="225.76" width="210" y="321.67" x="-99.213" stroke-width="1pt" fill="#d72828"/> + <rect id="rect564" fill-rule="evenodd" height="223.65" width="404.88" y="323.79" x="240" stroke-width="1pt" fill="#d72828"/> + <rect id="rect565" fill-rule="evenodd" height="570.47" width="64.425" y="-23.039" x="144.65" stroke-width="1pt" fill="#003897"/> + <rect id="rect566" fill-rule="evenodd" height="63.444" width="768.9" y="224.84" x="-124.02" stroke-width="1pt" fill="#003897"/> + </g> +</svg> diff --git a/s/flag/sk.svg b/s/flag/sk.svg new file mode 100755 index 0000000..3f844e5 --- /dev/null +++ b/s/flag/sk.svg @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3120"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath9628" clipPathUnits="userSpaceOnUse"> + <rect id="rect9630" fill-opacity="0.67" height="512" width="682.67" y=".0000033739" x="-26.334"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath9628)" transform="matrix(.93750 0 0 .93750 24.688 -.0000031630)" stroke-width="1pt"> + <rect id="rect171" height="512" width="768" y=".0000024116" x="-69" fill="#fff"/> + <rect id="rect403" height="341.33" width="768" y="170.67" x="-69" fill="#01017e"/> + <rect id="rect135" height="170.67" width="768" y="341.33" x="-69" fill="#fe0101"/> + <path id="path150" d="m64.736 116.2v143.57c9.8331 56.051 35.893 113.09 123.9 142.09 87.519-29.009 115.54-83.586 125.87-143.08v-142.59h-249.77z" fill="#fff"/> + <path id="path140" d="m74.569 127.51v125.38c8.8498 45.726 26.059 108.17 114.07 137.18 87.519-29.009 107.68-91.452 115.54-137.18v-125.38h-229.61z" fill="#fe0101"/> + <path id="path153" d="m202.41 203.23v20.159h40.318c5.4057 0 10.489-2.6226 15.734-3.934v37.859c-5.4086-1.1473-10.696-3.4412-16.226-3.4412h-39.334v46.218l-27.043-0.98331v-45.234h-38.35c-5.764 0-11.144 2.9499-16.717 4.4245v-40.317c5.2446 1.6386 10.239 4.9165 15.734 4.9165h39.334v-20.159h-29.009c-5.0834 0-9.5058 3.606-14.259 5.4086v-38.35c5.4086 2.2946 10.35 6.8832 16.226 6.8832h27.534v-17.209c0-8.0377-4.5892-15.406-6.8839-23.109h38.842c-1.9666 7.8672-5.8998 15.492-5.8998 23.601v16.717h26.059c6.7994 0 13.112-3.6052 19.668-5.4078v37.859c-5.9006-1.9666-11.482-5.9006-17.701-5.9006h-28.025z" fill="#fff"/> + <path id="path152" d="m152.75 305.5c-23.11-11.555-45.184-5.1022-55.744 13.398 16.41 31.344 47.632 56.666 91.637 71.17 43.76-14.505 75.596-39.826 93.05-69.695-13.597-25.94-39.457-22.495-56.174-14.381-11.8-29.009-59.985-27.534-72.768-0.49202z" fill="#01017e"/> + </g> +</svg> diff --git a/s/flag/sl.svg b/s/flag/sl.svg new file mode 100755 index 0000000..426e024 --- /dev/null +++ b/s/flag/sl.svg @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- +On October 30, 2003, Brett Roper dedicated to the public domain the +works "SVG graphic of Chad Flag.", "SVG graphic of El Salvador Flag.", +"SVG graphic of Sierra Leone Flag.", "SVG graphic of Peru Flag." Before +making the dedication, +Brett Roper +represented that Brett Roper owned all copyrights in the +work. By making the dedication, Brett Roper made an overt act +of relinquishment in perpetuity of all present and future rights under +copyright law, whether vested or contingent, in "SVG graphic of Chad +Flag.", "SVG graphic of El Salvador Flag.", "SVG graphic of Sierra Leone +Flag.", "SVG graphic of Peru Flag." + +Brett Roper understands that such relinquishment of all rights +includes the relinquishment of all rights to enforce (by lawsuit or +otherwise) those copyrights in the Work. + +Brett Roper recognizes that, once placed in the public domain, +"SVG graphic of Chad Flag.", "SVG graphic of El Salvador Flag.", "SVG +graphic of Sierra Leone Flag.", "SVG graphic of Peru Flag." may be +freely reproduced, +distributed, transmitted, used, +modified, built upon, or otherwise exploited by anyone for any +purpose, commercial or non-commercial, and in any way, including by +methods that have not yet been invented or conceived. +--> +<svg id="canada" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" fill="#28ff09"> + <metadata id="metadata3128"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" fill-opacity="1" transform="matrix(1.25 0 0 .93750 0 .000019425)"> + <rect id="rect574" height="170.3" width="512" y="341.7" x="0" fill="#0000cd"/> + <rect id="rect573" height="170.3" width="512" y="171.4" x="0" fill="#fff"/> + <rect id="rect572" height="171.4" width="512" y="-.000019656" x="0" fill="#00cd00"/> + </g> +</svg> diff --git a/s/flag/sm.svg b/s/flag/sm.svg new file mode 100755 index 0000000..c03f6e1 --- /dev/null +++ b/s/flag/sm.svg @@ -0,0 +1,209 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>San Marino SVG Flag</dc:title> + <dc:rights><Agent> + <dc:title>Tobias Jakobs</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> + +</rdf:RDF> +--> +<svg id="svg600" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3289"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <g id="g1073" fill-rule="evenodd" stroke-width="1pt" transform="matrix(.64 0 0 0.8 0 0.0000244)"> + <rect id="rect1071" height="300" width="1e3" y="300" x="0" fill="#19b6ef"/> + <rect id="rect1072" height="300" width="1e3" y="-.000031" x="0" fill="#fff"/> + </g> + <g id="g910" transform="matrix(1.6657 0 0 1.6657 -464.91 -233.28)"> + <path id="path630" d="m469.46 343.7c31.488-23.557 65.414-71.625 25.659-96.902-7.406-1.434-15.673-1.004-19.639 2.15-2.102-1.195-3.775-1.099-5.877 1.147-1.481-1.816-2.963-2.629-6.021-1.72-6.116-3.106-11.658-3.775-18.921-1.864-34.594 20.785-13.427 70.096 24.799 97.189z" fill-rule="evenodd" stroke="#7d6c00" stroke-width="1.0667pt" fill="#fd0"/> + <g id="g892" stroke="#3a9d4f"> + <path id="path865" stroke-linejoin="round" d="m527.7 290.2s3.544-4.766 3.666-4.766c3.544-2.078 3.911-4.766 3.911-4.766 3.544-1.1 2.444-4.033 2.688-4.399 1.712-1.833 1.1-3.667 0.856-4.278 0-0.488 1.222-5.01-0.489-5.621 0.081-4.807-2.892-4.359-5.255-1.222-2.526 0.733-3.096 2.811-2.2 5.133-3.3 0-3.422 4.766-2.444 7.454-4.399-0.122-1.955 4.766-2.078 5.011-1.466 0.733 1.1 7.699 1.345 7.454z" fill-rule="evenodd" stroke-width="1.0667pt" fill="#4fd46b"/> + <g id="g876"> + <path id="path860" stroke-linejoin="round" d="m499.95 331.14c0.733 0.448 1.467 0.896 2.2 1.344 0.448 1.67 1.996 2.73 3.178 2.445 0.57 2.566 3.34 2.2 5.377 0.733 1.629 2.363 3.626 2.404 6.355 1.589 2.444 1.792 5.622 1.018 7.699-0.856 2.24 1.833 3.748 0.489 4.888-1.466 1.751 0.448 3.136 0.163 3.788-1.589 3.422-0.285 1.711-3.503-1.099-4.888 2.24-1.956 4.725-5.989 1.222-6.6-1.1-0.814-3.177-0.651-4.766 0.123-0.407-1.793-2.893-2.241-5.622-0.245-0.937-1.996-4.196-1.059-5.744 0.367-1.955-1.711-4.277-1.711-7.699 0.244l-9.777 8.799z" fill-rule="evenodd" stroke-width="1.0667pt" fill="#4fd46b"/> + <path id="path861" stroke-linejoin="round" d="m499.95 325.89c0.407-2.24-1.141-6.314 1.222-6.721-0.448-3.748 0.204-7.984 4.522-7.577 0.693-3.544 0.53-6.844 4.644-7.333 0 0 3.3-11.487 6.722-3.544 1.344 2.323 1.1 6.11-1.589 5.377 0.53 2.852-0.407 5.336-3.544 5.255 1.385 1.996 0.937 4.726-0.611 5.989-3.789 2.851-7.577 5.703-11.366 8.554z" fill-rule="evenodd" stroke-width="1.0667pt" fill="#4fd46b"/> + <path id="path862" stroke-linejoin="round" d="m519.87 311.59c1.181-0.244 2.363-0.489 3.544-0.733 3.666-2.444 5.133-3.422 6.966-0.734 3.055-0.652 5.988-0.326 5.866 2.078 3.626 0.244 3.585 2.566 3.178 4.399 0.57 3.218-0.815 7.414-3.056 2.322-7.088-4.318-11.121-3.748-22.364-1.222 1.955-2.037 3.911-4.073 5.866-6.11z" fill-rule="evenodd" stroke-width="1.0667pt" fill="#4fd46b"/> + <path id="path863" stroke-linejoin="round" d="m521.71 308.04c0.123-0.122 10.51-2.811 9.41-5.988 2.933-0.489 3.545-3.422 3.667-3.422 6.11-1.955 5.743-5.5 5.743-5.5 1.752-1.874 4.848-3.748 4.156-7.088 0.204-3.788 0.529-6.11-4.522-3.666-3.789-0.367-5.133 1.833-6.233 5.133-1.792-2.118-4.684 1.263-5.01 4.277 0 0-4.644 4.522-4.644 4.644s-3.911 7.21-3.911 7.21c0.448 1.467 0.896 2.933 1.344 4.4z" fill-rule="evenodd" stroke-width="1.0667pt" fill="#4fd46b"/> + <path id="path864" stroke-linejoin="round" d="m521.95 299.98c-2.485-1.874-3.87-4.114-3.422-6.355-1.629-2.2-2.77-3.544-1.222-5.499 0 0-1.222-4.4-1.222-4.522-3.177-1.222-1.833-3.91-0.978-4.888-1.507-2.078-1.548-4.278-0.122-6.233-0.041-3.911 2.729-2.444 5.01 0 0 0 3.789 2.689 0.978 5.133 2.811 0.978 3.667 3.421 2.078 4.399 2.444 1.1 2.81 3.3 1.466 4.767 2.485 1.996 1.548 4.481 2.322 6.721-1.629 2.159-3.259 4.318-4.888 6.477z" fill-rule="evenodd" stroke-width="1.0667pt" fill="#4fd46b"/> + <path id="path866" stroke-linejoin="round" d="m526.35 281.77c-0.122-0.122-4.155-5.255-3.055-5.622-0.244-1.589-1.466-3.3-0.733-4.888-1.996-1.996-2.037-4.358-0.489-6.232-1.344-1.833-0.733-4.277 1.1-5.866-0.57-3.015 1.548-3.707 3.422-4.278 1.385-4.848 3.625-3.585 4.888 0.122 1.915 1.67 1.63 4.196 0.978 6.111 2.281 1.548 0.896 3.462-0.122 4.277-1.996 5.459-3.993 10.917-5.989 16.376z" fill-rule="evenodd" stroke-width="1.0667pt" fill="#4fd46b"/> + <path id="path867" stroke-linejoin="round" d="m525.74 255.98l-3.422-3.422c0.884-1.813 1.596-5.009-0.977-6.477-1.419-3.456-8.514-7.74-9.655 0.489-1.08-2.483-3.34-4.929-5.01-2.077-3.707-3.177-5.703-2.2-3.789 1.833 0 0-1.71 2.688 2.811 4.766 0.367 0.366-1.466 4.888 3.911 5.01-1.018 1.548 0.652 3.707 2.811 3.544-1.548 1.915 1.059 3.952 2.688 3.178-0.693 2.118-0.652 3.137 2.322 3.422 1.1 1.263 2.2 2.525 3.3 3.788 0.896 1.222 1.792 2.444 2.688 3.666 0.774-5.907 1.548-11.813 2.322-17.72z" fill-rule="evenodd" stroke-width="1.0667pt" fill="#4fd46b"/> + <path id="path868" d="m527.82 288.04c0.173-0.173 6.567-14.863 7.431-19.357" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path869" d="m528.51 261.95s1.037 11.925-1.901 20.739" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path870" d="m508.81 249.85s13.135 12.616 14.344 17.801" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path871" d="m517.97 248.47s0.864 10.37 4.493 20.567" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path872" d="m541.13 286.14s-13.135 11.061-19.53 20.739" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path873" d="m528.68 324.86s-17.283 2.42-24.887 2.593" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path874" d="m522.98 332.29s-21.431-0.519-22.987-2.074" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path875" d="m512.26 304.46c0 0.172-10.888 18.146-11.234 24.023" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + </g> + </g> + <path id="path608" d="m469.34 340.23c-22.674-21.387-45.899-61.525-22.796-81.809 4.106 2.329 8.947 0.245 15.627-2.39 2.022 2.206 4.595 2.758 7.169 1.103 2.88 1.226 5.025 0.245 6.435-1.287 6.557 3.8 14.952 5.761 16.913 2.023 22.735 21.57-0.307 61.893-23.348 82.36z" fill-rule="evenodd" stroke="#7d6c00" stroke-width="1.0667pt" fill="#65c7ff"/> + <path id="path609" d="m469.47 339.61c-9.737-9.79-18.621-20.643-25.423-34.616 1.164-0.98 1.705-1.284 2.318-3 3.493 0.491 5.331 0.613 9.927-0.184 0.919 3.432 1.103 6.312 3.309 9.192 1.532-3.002 3.064-6.005 4.596-9.008 3.125 0.736 6.986 0.92 9.927 0 1.9 2.574 1.226 6.435 4.596 9.376 2.022-5.944 4.045-6.373 6.067-9.56 3.003 1.042 4.903 0.613 7.354-0.184 1.287 1.471 0.644 1.447 2.987 3.606-6.143 12.199-14.567 24.451-25.658 34.378z" fill-rule="evenodd" fill="#8fc753"/> + <path id="path575" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(-.087318 -.61134)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path576" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(-2.1834 -5.2401)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path577" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(-4.6288 -9.5196)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path578" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(-6.2881 -13.712)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path579" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(-6.0262 -18.253)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path580" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(4.5773 -25.764)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path581" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(.61138 -25.065)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path582" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(-3.7554 -22.445)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path583" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(9.6943 -25.677)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path584" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(15.284 -25.24)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path585" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(20.262 -25.502)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path586" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="matrix(2.5652 0 0 2.5652 -661.33 -403.26)" stroke="#7d6c00" stroke-width=".25989" fill="#fd0"/> + <path id="path587" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(37.292 -25.589)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path588" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(42.533 -25.153)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path589" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(47.598 -25.415)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path590" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(51.877 -25.589)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path591" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(57.205 -24.978)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path592" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(61.397 -22.358)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path605" d="m440.85 231.12c1.711 3.254 3.421 6.634 5.132 9.888h47.565c1.836-3.171 3.672-6.342 5.508-9.513-3.213-2.211-5.424-3.922-10.014-2.879-2.587-3.713-5.424-4.422-9.638-4.005-1.252-1.293-2.379-2.086-4.507-2.378-3.338 0.083-6.675 0.167-10.013 0.25-2.629 0.25-4.632 2.253-4.757 2.253-4.256-0.501-8.136-0.376-9.137 3.755-3.88-0.96-6.634 0.084-10.139 2.629z" fill-rule="evenodd" stroke="#ac0000" stroke-width="1.0667pt" fill="#e40000"/> + <path id="path593" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(63.144 -17.991)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path594" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(63.493 -13.275)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path595" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(62.008 -8.9082)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path596" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(60.174 -5.3275)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path597" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="translate(57.991 -.78602)" stroke="#000" stroke-width=".66667" fill="#fff"/> + <path id="path598" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="matrix(1.4783 0 0 1.4783 -181.95 -121)" stroke="#000" stroke-width=".45098" fill="#fff"/> + <path id="path599" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="matrix(1.7826 0 0 1.7826 -316.13 -200.65)" stroke="#000" stroke-width=".37398" fill="#fff"/> + <path id="path600" d="m442.88 239.3c0 1.1094-0.89934 2.0087-2.0087 2.0087s-2.0087-0.89933-2.0087-2.0087 0.89933-2.0087 2.0087-2.0087 2.0087 0.89934 2.0087 2.0087z" fill-rule="evenodd" transform="matrix(1.6087 0 0 1.6087 -239.63 -165.67)" stroke="#000" stroke-width=".41441" fill="#fff"/> + <path id="path602" d="m468.51 205.52c0-0.556-0.017-2.5 0.022-2.578l-2.144-0.039 0.061-1.906 1.861-0.022 0.022-1.666h2.639v1.527h2.083l-0.043 2.028-2.162-0.022-0.017 2.717-2.322-0.039z" fill-rule="evenodd" stroke="#7d6c00" stroke-width=".66667" fill="#fd0"/> + <path id="path603" d="m445.74 241.01c-4.257-7.218-10.512-17.03-6.635-21.279 5.376-6.089 17.982-0.584 26.035-4.131 0.584 6.885-1.335 18.275 1.753 20.654-0.96 0.834-1.92 1.669-2.879 2.503-1.753-2.253-5.054-5.272-9.137 0.125-2.337-2.043-4.993-1.684-6.244 1.033-1.19 0.16-1.121 0.636-2.893 1.095z" stroke="#fd0" stroke-width="2" fill="none"/> + <path id="path604" d="m493.84 240.76c4.257-7.218 10.512-17.03 6.635-21.279-5.376-6.089-17.982-0.584-26.035-4.131-0.584 6.885 1.335 18.275-1.753 20.654 0.96 0.834 1.92 1.669 2.879 2.503 2.77-3.895 6.227-4.021 9.137 0.125 2.337-2.043 4.758-1.763 6.244 1.033 1.19 0.16 1.121 0.636 2.893 1.095z" stroke="#fd0" stroke-width="2" fill="none"/> + <path id="path606" d="m445.61 246.39c17.107-1.752 32.962-1.127 47.566 0 0.626-1.794 1.251-3.589 1.877-5.383-16.606-3.004-28.08-3.379-49.818-0.375 0.125 1.919 0.25 3.839 0.375 5.758z" fill-rule="evenodd" stroke="#7d6c00" stroke-width="1.0667pt" fill="#fd0"/> + <path id="path610" d="m467.69 337.79c0.123-0.858 0.245-1.658 0.368-2.516 1.701 0.458 2.999 0.281 4.412-0.241 0.49-0.736 0.981-1.471 1.471-2.207-0.368-0.429-0.735-0.857-1.103-1.286-0.97 0.209-1.766 1.11-2.39 1.896-0.977 0.046-1.839-0.426-2.758-0.61-0.306-1.287-0.613-2.573-0.919-3.86-0.912-1.078-2.804-1.002-2.39 0.919 0.061 0.49 0.123 0.981 0.184 1.471 0.368 0.919 0.505 2.184 1.103 2.872v1.508c0.674 0.685 1.348 1.369 2.022 2.054z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path611" d="m468.42 326.81c-1.279 0.634-2.797-0.469-4.412-1.103-1.471-0.101-2.653 1.124-4.412 0.735 0.321-0.955 1.103-1.103 1.655-1.655-0.404-2.48 0.919-3.309 1.287-3.309 0.367 0 1.838 0.368 1.838 0.368 0.49 0.061 0.981 0.123 1.471 0.184 0.858 1.593 2.061 3.014 2.573 4.78z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path613" d="m459.68 359.83c4.242-6.887 33.775-20.717 61.489-50.58-28.21 27.162-45.841 33.83-68.927 50.414 2.479 0.055 4.959 0.111 7.438 0.166z" fill-rule="evenodd" stroke="#e9bf00" stroke-width="1.0667pt" fill="#ffe100"/> + <path id="path617" d="m500.28 328.07c0 1.1875-0.96267 2.1502-2.1502 2.1502s-2.1502-0.96268-2.1502-2.1502 0.96267-2.1502 2.1502-2.1502 2.1502 0.96268 2.1502 2.1502z" fill-rule="evenodd" stroke="#68300e" stroke-width=".66667" fill="#9d4916"/> + <path id="path618" d="m520.92 306.71c0 1.3458-1.091 2.4369-2.4369 2.4369-1.3458 0-2.4368-1.091-2.4368-2.4369 0-1.3458 1.091-2.4369 2.4368-2.4369s2.4369 1.091 2.4369 2.4369z" fill-rule="evenodd" transform="translate(-3.7253e-7 .42999)" stroke="#68300e" stroke-width=".66667" fill="#9d4916"/> + <path id="path619" d="m527.23 289.22c0 1.1875-0.96266 2.1502-2.1502 2.1502s-2.1502-0.96267-2.1502-2.1502 0.96267-2.1502 2.1502-2.1502 2.1502 0.96267 2.1502 2.1502z" fill-rule="evenodd" transform="translate(.57339 .14336)" stroke="#68300e" stroke-width=".66667" fill="#9d4916"/> + <path id="path620" d="m521.06 266.29c0 1.1875-0.96269 2.1502-2.1502 2.1502s-2.1502-0.96268-2.1502-2.1502 0.96268-2.1502 2.1502-2.1502 2.1502 0.96268 2.1502 2.1502z" fill-rule="evenodd" stroke="#68300e" stroke-width=".66667" fill="#9d4916"/> + <path id="path631" d="m446.68 301.9v-9.094l-0.925-0.77v-2.158l1.696-0.154 0.308-10.173-1.079-0.617-0.154-1.695s1.233 0.462 1.233 0.154 0.308-2.004 0.308-2.004-0.77-0.154-0.77-0.462 0.924-1.079 0.924-1.079-0.462-0.463-0.616-0.771-0.462-1.695-0.462-1.695l0.462-1.696-0.308-0.925-0.771-1.387 1.079-1.079s-0.308-1.387-0.308-1.695 0.77-1.541 0.924-1.696c0.155-0.154 1.388-1.849 1.388-1.849l2.62-0.617 3.083 0.463 1.695 1.079 0.308 2.774s-0.308 1.695-0.462 1.695-1.387 0.617-1.387 0.617-1.542 0.154-1.696 0 0.463 1.85 0.463 1.85v1.849l-0.154 2.312s0 1.079-0.155 1.233c-0.154 0.154-0.462 0.617-0.462 0.617l-0.154 2.312 2.466 0.616-0.154 1.388-1.696 0.154 0.309 9.402 2.466 0.462v2.621l-1.079 0.616-0.308 9.402h-8.632z" fill-rule="evenodd" stroke="#a9a9a9" stroke-width=".66667" fill="#fff"/> + <path id="path632" d="m484.14 302.06v-9.094l-0.925-0.77v-2.158l1.696-0.154 0.308-10.173-1.079-0.617-0.154-1.695s1.233 0.462 1.233 0.154 0.308-2.004 0.308-2.004-0.77-0.154-0.77-0.462 0.924-1.079 0.924-1.079-0.462-0.463-0.616-0.771-0.462-1.695-0.462-1.695l0.462-1.696-0.308-0.925-0.771-1.387 1.079-1.079s-0.308-1.387-0.308-1.695 0.77-1.541 0.924-1.696c0.155-0.154 1.388-1.849 1.388-1.849l2.62-0.617 3.083 0.463 1.695 1.079 0.308 2.774s-0.308 1.695-0.462 1.695-1.387 0.617-1.387 0.617-1.542 0.154-1.696 0 0.463 1.85 0.463 1.85v1.849l-0.154 2.312s0 1.079-0.155 1.233c-0.154 0.154-0.462 0.617-0.462 0.617l-0.154 2.312 2.466 0.616-0.154 1.388-1.696 0.154 0.309 9.402 2.466 0.462v2.621l-1.079 0.616-0.308 9.402h-8.632z" fill-rule="evenodd" stroke="#a9a9a9" stroke-width=".66667" fill="#fff"/> + <path id="path633" d="m465.18 302.37v-9.094l-0.925-0.77v-2.158l1.696-0.154 0.308-10.173-1.079-0.617-0.154-1.695s1.233 0.462 1.233 0.154 0.308-2.004 0.308-2.004-0.77-0.154-0.77-0.462 0.924-1.079 0.924-1.079-0.462-0.463-0.616-0.771-0.462-1.695-0.462-1.695l0.462-1.696-0.308-0.925-0.771-1.387 1.079-1.079s-0.308-1.387-0.308-1.695 0.77-1.541 0.924-1.696c0.155-0.154 1.388-1.849 1.388-1.849l2.62-0.617 3.083 0.463 1.695 1.079 0.308 2.774s-0.308 1.695-0.462 1.695-1.387 0.617-1.387 0.617-1.542 0.154-1.696 0 0.463 1.85 0.463 1.85v1.849l-0.154 2.312s0 1.079-0.155 1.233c-0.154 0.154-0.462 0.617-0.462 0.617l-0.154 2.312 2.466 0.616-0.154 1.388-1.696 0.154 0.309 9.402 2.466 0.462v2.621l-1.079 0.616-0.308 9.402h-8.632z" fill-rule="evenodd" stroke="#a9a9a9" stroke-width=".66667" fill="#fff"/> + <path id="path624" fill-rule="evenodd" stroke-width="1pt" d="m448.96 301.84v-7.167h4.014v7.454l-4.014-0.287z"/> + <path id="path625" fill-rule="evenodd" stroke-width="1pt" d="m467.88 302.41 0.143-7.311h3.584v7.167l-3.727 0.144z"/> + <path id="path626" fill-rule="evenodd" stroke-width="1pt" d="m486.52 302.27-0.287-6.88 3.871-0.144v7.168l-3.584-0.144z"/> + <rect id="rect627" fill-rule="evenodd" height="3.727" width="2.2935" y="280.62" x="449.96" stroke-width="1pt"/> + <rect id="rect628" fill-rule="evenodd" height="3.5836" width="3.1536" y="280.77" x="468.17" stroke-width="1pt"/> + <rect id="rect629" fill-rule="evenodd" height="3.4403" width="2.7236" y="281.05" x="486.8" stroke-width="1pt"/> + <path id="path644" d="m451.15 264.3c2.466 2.774 2.62 2.774 2.62 2.774" stroke="#a8a8a8" stroke-width=".66667" fill="none"/> + <path id="path645" d="m469.49 264.3c0.462 0.924 1.233 2.928 2.158 3.082" stroke="#a8a8a8" stroke-width=".66667" fill="none"/> + <path id="path646" d="m489.22 264.76s0.771 2.158 1.85 2.466" stroke="#a8a8a8" stroke-width=".66667" fill="none"/> + <path id="path656" d="m448.53 256.53c7.211-2.331-1.685-6.993-3.162 0-2.333 0.377-2.635 2.108-7.678 1.356-12.195 19.873-3.162 51.941 32.52 85.139-63.911-54.388-37.938-94.617-20.24-93.1 9.626 0.658 4.77 12.665-1.44 6.605z" fill-rule="evenodd" fill="#b97700"/> + <path id="path658" d="m450.54 246.34s5.872 1.581 5.872 4.065" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path659" d="m456.41 245.89s4.065 1.806 4.968 3.387" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path660" d="m488.48 246.57s-5.195 0.678-6.324 2.258" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path661" d="m480.57 247.02s-2.935 2.484-2.71 3.161" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path662" d="m479.9 257.86c-0.452-0.226-2.484-2.936-2.033-6.324" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path663" d="m460.02 256.06s1.355-1.581 1.355-4.517" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path664" d="m469.51 250.41 0.226 6.549" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path665" d="m475.38 256.06c0-0.452 1.807-4.742-0.226-6.775" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path666" d="m462.96 248.38s-1.581 4.291-0.451 7.904" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path667" d="m474.48 252.22s-2.484 0.677-3.614 1.807" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path668" d="m463.86 252.89c0-0.225 2.71-0.677 3.613 0.904" stroke="#7d6c00" stroke-width="1.0667pt" fill="none"/> + <path id="path627" d="m459.59 321.27c0.115 0.058 2.249-0.404 2.249-1.442 1.096-0.692 0.288-2.653 0.288-2.653-0.673-0.135-1.345-0.269-2.018-0.404l-2.769-3.114c-0.134-0.961 0.193-1.864-0.403-2.883-1.903 0.5-2.999 2.095-3.634 3.921 0.462 0.577 0.52 1.211 1.385 1.73 0.903 0.154 1.518-0.384 2.364-0.23 0.442 0.769 0.307 1.423 0.461 2.134 1.154 0.807 1.385 1.961 2.077 2.941z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path628" d="m457.11 307.95v-3.691c-0.884-0.039-1.769-0.077-2.653-0.116-0.327 0.558-0.942 0.827-1.327 1.327-0.615 0.308-1.23 0.615-1.845 0.923 0.769 0.923 1.711 1.442 2.307 1.903 1.346 0.404 2.461 0.404 3.518-0.346z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path629" d="m448.8 313.43c-0.481-0.808-0.961-1.615-1.442-2.423 0.884-0.288 1.999-0.173 2.826 0.173 0 0 0.635 1.5 0.173 2.076-0.231 0.519-1.615 0.289-1.557 0.174z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path634" d="m470.72 315.91c0.769-0.384 1.48-1.057 1.615-2.018-0.884-1.019-1.769-2.038-2.653-3.057-0.807-0.019-1.615-0.038-2.422-0.057-0.557-0.577-1.461-0.692-2.191-0.692 0 0 0.75 1.153 1.73 1.384 0.692 1.556 3.691 4.44 3.921 4.44z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path635" d="m473.32 316.25c0-0.057 2.364-0.865 3.633-0.749-0.115-0.981 1.788-3.23 1.788-3.23l3.345 4.383c-0.615 0.519-1.692 0.346-2.538 0.519 0 0-1.615 1.557-1.788 1.615s-3.114 0.749-4.556-0.115c-0.634-1.211 0.173-2.596 0.116-2.423z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path636" d="m475.22 308.58c0.404-1.403 0.519-2.807 0-4.556 0 0-3.807-0.058-3.807 0 0 0.057-2.537 1.153-2.537 1.211s0.808 2.48 1.788 2.249c0.442 1.288 1.749 0.961 2.364 1.442 0.731-0.115 1.461-0.231 2.192-0.346z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path637" d="m490.16 304.72c-0.519 1.596-0.807 3.307-0.058 4.845 0.692 0.115 1.5 0.576 2.134 0.461 1.019-1.846 2.038-3.691 3.057-5.537-2.115-0.673-3.826-0.596-5.133 0.231z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path742" d="m491.1 256.03c-7.211-2.331 1.685-6.993 3.162 0 2.333 0.377 2.635 2.108 7.678 1.356 12.195 19.873 3.162 51.941-32.52 85.139 63.911-54.388 37.938-94.617 20.24-93.1-9.626 0.658-4.77 12.665 1.44 6.605z" fill-rule="evenodd" fill="#b97700"/> + <path id="path638" d="m491.83 310.95c-0.115 0-1.845 1.268-1.845 1.268-0.827 0.327-1.653 0.654-2.48 0.981-0.884 0.019-1.769 0.038-2.653 0.057-0.192-0.615-0.385-1.23-0.577-1.845l2.019-1.788c-1.711-0.25-3.422 0.423-4.787 1.673 0 0 0 2.018 1.154 2.999 0.692 0.864 2.71 2.422 2.71 2.422 1.269 0.25 2.48 0.038 3.287-0.635 1.057-1.711 2.115-3.421 3.172-5.132z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path639" d="m477.87 329.06c0.866 0.231 6.806-7.67 6.806-7.67-0.519-1.48-1.673-2.557-2.942-3.23 0 0-2.884 3.402-2.941 4.556-0.461 1.038-1.787 5.017-1.211 5.537-0.058 0.115-0.288 1.729 0.288 0.807z" fill-rule="evenodd" fill="#c76e2e"/> + <path id="path745" stroke-linejoin="round" d="m439.02 330.6c-8.895-7.737-20.897-12.002-37.651-6.214 4.508 1.95 9.382 2.62 13.525 4.752 8.042 0.487 16.084 0.975 24.126 1.462z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path839" d="m413.25 325.11c17.546 0.365 22.664 4.751 21.75 4.02" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path744" stroke-linejoin="round" d="m439.38 331.51c-5.24 1.035-12.49 6.096-14.622 5.848-5.727-0.666-11.079-2.987-16.632-4.752-2.307-0.733-4.631 0-6.946 0 19.679-9.321 26.381-8.042 38.2-1.096z" fill-rule="evenodd" stroke="#004100" stroke-width="1.3333" fill="#006800"/> + <path id="path746" stroke-linejoin="round" d="m426.41 317.8s-6.579 0.913-9.504 1.096c-2.925-0.182-7.177-2.907-11.88-7.859-2.455-2.689-8.042-2.376-8.042-2.376 12.368-2.62 21.993-0.122 29.426 9.139z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path747" stroke-linejoin="round" d="m417.45 305.01c-8.957-0.549-20.106-8.59-22.664-18.094-0.001 0.121 3.289 2.071 2.741 2.559 14.683 3.716 15.658 6.701 19.923 15.535z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path748" stroke-linejoin="round" d="m432.44 320.36c1.279-8.103 1.645-13.464-2.193-18.277-3.168-3.656-3.96-5.849-6.214-10.967-0.67 10.662-2.986 19.496 8.407 29.244z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path749" stroke-linejoin="round" d="m418.36 297.88c6.64-9.687 7.798-16.998 6.762-28.513-0.183 0.914-2.376 6.58-2.558 6.58-9.87 6.214-5.483 15.902-4.204 21.933z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path752" stroke-linejoin="round" d="m412.52 251.09c6.64 9.687 5.605 18.826 4.569 30.341-0.183-0.914-2.376-6.58-2.558-6.58-9.87-6.214-3.29-17.73-2.011-23.761z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path755" stroke-linejoin="round" d="m418 266.08c16.084-8.103 9.869-18.399 12.794-26.319-11.149 8.286-12.611 17.119-12.794 26.319z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path848" d="m420.19 264.07c2.011-5.666 6.032-15.353 6.397-15.353" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path846" d="m415.44 275.95c-0.365-4.022-2.375-14.806-2.558-15.902" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path750" stroke-linejoin="round" d="m416.17 294.04c-8.957-0.549-18.644-12.794-21.202-22.298-0.001 0.121 3.289 2.071 2.741 2.559 12.855 5.726 14.196 10.905 18.461 19.739z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path751" stroke-linejoin="round" d="m413.51 285.63c-6.64-9.687-7.798-16.998-6.762-28.513 0.183 0.914 2.376 6.58 2.558 6.58 9.87 6.214 5.483 15.902 4.204 21.933z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path753" stroke-linejoin="round" d="m419.46 268.64c16.632-7.372 11.514-15.109 16.449-23.212-11.149 8.286-16.266 14.012-16.449 23.212z" fill-rule="evenodd" stroke="#004100" stroke-width="1.0667pt" fill="#006800"/> + <path id="path847" d="m420.19 266.99c6.763-6.763 9.139-12.429 9.139-12.429" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <g id="g768" fill-rule="evenodd"> + <path id="path612" d="m479.36 359.99c2.7 0.055 5.399 0.11 8.099 0.165-26.888-25.18-78.405-36.144-71.242-82.482-7.383 50.25 42.095 54.878 63.143 82.317z" stroke="#e9bf00" stroke-width="1.0667pt" fill="#ffe100"/> + <path id="path601" d="m420.44 267.72c0 1.425-1.1552 2.5802-2.5802 2.5802s-2.5802-1.1552-2.5802-2.5802 1.1552-2.5802 2.5802-2.5802 2.5802 1.1552 2.5802 2.5802z" stroke="#68300e" stroke-width=".66667" fill="#9d4916"/> + <path id="path607" d="m418.86 281.91c0 1.3458-1.091 2.4369-2.4369 2.4369-1.3458 0-2.4369-1.091-2.4369-2.4369 0-1.3458 1.091-2.4369 2.4369-2.4369 1.3458 0 2.4369 1.091 2.4369 2.4369z" stroke="#68300e" stroke-width=".66667" fill="#9d4916"/> + <path id="path614" d="m421.15 302.13c0 1.1875-0.96267 2.1502-2.1502 2.1502s-2.1502-0.96268-2.1502-2.1502 0.96267-2.1502 2.1502-2.1502 2.1502 0.96268 2.1502 2.1502z" stroke="#68300e" stroke-width=".66667" fill="#9d4916"/> + <path id="path615" d="m440.07 324.49c0 1.1875-0.96268 2.1502-2.1502 2.1502s-2.1502-0.96267-2.1502-2.1502 0.96268-2.1502 2.1502-2.1502 2.1502 0.96267 2.1502 2.1502z" transform="translate(-.14336)" stroke="#68300e" stroke-width=".66667" fill="#9d4916"/> + <path id="path616" d="m442.65 331.23c0 1.1875-0.96269 2.1502-2.1502 2.1502s-2.1502-0.96268-2.1502-2.1502 0.96269-2.1502 2.1502-2.1502c1.1876 0 2.1502 0.96269 2.1502 2.1502z" transform="translate(0 -.32612)" stroke="#68300e" stroke-width=".66667" fill="#9d4916"/> + </g> + <g id="g800"> + <g id="g674" fill-rule="evenodd" fill="#fff"> + <g id="g650" stroke="#000" stroke-width=".66667"> + <path id="path649" d="m452.13 349.59c-1.414-1.281-2.313-2.103-2.868-3.499-2.81-0.306-5.62-0.611-8.431-0.917-0.038 1.606-0.076 3.211-0.115 4.817 3.805-0.134 7.61-0.267 11.414-0.401z"/> + <path id="path640" stroke-linejoin="round" d="m390.36 343.91c4.897 0.904 12.281-0.452 14.692 2.712 2.895 3.281-9.061 8.328-7.349 11.166 3.698 3.913 7.504 2.3 11.643 0.136 0.975-2.115 1.728-5.886 2.261-7.007-1.507-3.466-5.555-5.164-4.521-10.398 6.827-2.551 19.95-2.34 21.363-1.356 1.109 2.175 0.112 3.166 0.338 4.899-1.13 2.185-4.039 5.889-4.045 7.849 7.162 2.523 9.05-0.389 15.493-0.218 7.549 0.093 12.142 2.12 13.781-0.881-1.123-2.59-8.047-0.483-10.675-2.147-1.314-0.445-2.163-1.501-3.299-2.666s-4.329-1.224-4.807-4.092c1.336-6.132 10.185-5.195 11.632-6.134 7.685 0.527 15.371 1.055 23.056 1.582 4.177-0.118 6.539 7.398 0.899 9.66-5.64 2.261-22.321-3.355-29.557 0.505-0.374-1.574-5.573-3.955-5.948-4.03-2.215 0.663-6.532 0.42-6.532 0.42-1.055 1.959-2.259 3.393-3.314 5.352-4.788-2.099-9.314 1.63-14.543 0.525 0 0-7.911 0.904-8.137 0.904s-5.198-0.452-5.198-0.452c-2.637 0.753-5.274 1.507-7.911 2.26 1.883-1.658 3.767-3.315 5.65-4.973-1.657-1.205-3.315-2.411-4.972-3.616z"/> + <path id="path643" d="m389.61 342.71c0 1.2037-0.97577 2.1795-2.1794 2.1795-1.2037 0-2.1794-0.97578-2.1794-2.1795s0.97577-2.1795 2.1794-2.1795c1.2037 0 2.1794 0.97579 2.1794 2.1795z" transform="translate(.40150 .22942)"/> + <path id="path647" d="m389.44 353.72c0 1.2037-0.97577 2.1794-2.1795 2.1794s-2.1794-0.97577-2.1794-2.1794c0-1.2037 0.97577-2.1794 2.1794-2.1794 1.2037 0 2.1795 0.97577 2.1795 2.1794z"/> + </g> + <g id="g655" transform="matrix(-1 0 0 1 939.11 .039062)" stroke="#000" stroke-width=".66667"> + <path id="path669" d="m452.13 349.59c-1.414-1.281-2.313-2.103-2.868-3.499-2.81-0.306-5.62-0.611-8.431-0.917-0.038 1.606-0.076 3.211-0.115 4.817 3.805-0.134 7.61-0.267 11.414-0.401z"/> + <path id="path670" stroke-linejoin="round" d="m390.36 343.91c4.897 0.904 12.281-0.452 14.692 2.712 2.895 3.281-9.061 8.328-7.349 11.166 3.698 3.913 7.504 2.3 11.643 0.136 0.975-2.115 1.728-5.886 2.261-7.007-1.507-3.466-5.555-5.164-4.521-10.398 6.827-2.551 19.95-2.34 21.363-1.356 1.109 2.175 0.112 3.166 0.338 4.899-1.13 2.185-4.039 5.889-4.045 7.849 7.162 2.523 9.05-0.389 15.493-0.218 7.549 0.093 12.142 2.12 13.781-0.881-1.123-2.59-8.047-0.483-10.675-2.147-1.314-0.445-2.163-1.501-3.299-2.666s-4.329-1.224-4.807-4.092c1.336-6.132 10.185-5.195 11.632-6.134 7.685 0.527 15.371 1.055 23.056 1.582 4.177-0.118 6.539 7.398 0.899 9.66-5.64 2.261-22.321-3.355-29.557 0.505-0.374-1.574-5.573-3.955-5.948-4.03-2.215 0.663-6.532 0.42-6.532 0.42-1.055 1.959-2.259 3.393-3.314 5.352-4.788-2.099-9.314 1.63-14.543 0.525 0 0-7.911 0.904-8.137 0.904s-5.198-0.452-5.198-0.452c-2.637 0.753-5.274 1.507-7.911 2.26 1.883-1.658 3.767-3.315 5.65-4.973-1.657-1.205-3.315-2.411-4.972-3.616z"/> + <path id="path671" d="m389.61 342.71c0 1.2037-0.97577 2.1795-2.1794 2.1795-1.2037 0-2.1794-0.97578-2.1794-2.1795s0.97577-2.1795 2.1794-2.1795c1.2037 0 2.1794 0.97579 2.1794 2.1795z" transform="translate(.40150 .22942)"/> + <path id="path672" d="m389.44 353.72c0 1.2037-0.97577 2.1794-2.1795 2.1794s-2.1794-0.97577-2.1794-2.1794c0-1.2037 0.97577-2.1794 2.1794-2.1794 1.2037 0 2.1795 0.97577 2.1795 2.1794z"/> + </g> + <path id="path673" d="m469.41 337.77c-1.94-0.364-2.63-0.26-3.945-0.39-1.029 3.164-2.057 6.328-3.086 9.492 4.766 0.43 9.179 0.43 9.179 0.391-2.891-0.586-2.187-9.454-2.148-9.493z"/> + </g> + <g id="g775" font-size="9px" font-family="Trebuchet MS" font-weight="bold" fill="#000000"> + <text id="text692" line-height="100%" y="344.27441" x="448.60489"> + <tspan id="tspan701" y="344.27441" x="448.60489">L</tspan> + </text> + <text id="text703" line-height="100%" y="344.62161" x="453.63956"> + <tspan id="tspan706" y="344.62161" x="453.63956">I</tspan> + </text> + <text id="text708" line-height="100%" y="345.0556" x="456.67767"> + <tspan id="tspan715" y="345.0556" x="456.67767">B</tspan> + </text> + <text id="text717" line-height="100%" y="345.48969" x="462.58041"> + <tspan id="tspan720" y="345.48969" x="462.58041">E</tspan> + </text> + <text id="text722" line-height="100%" y="345.57648" x="468.30945"> + <tspan id="tspan725" y="345.57648" x="468.30945">R</tspan> + </text> + <text id="text727" line-height="100%" y="345.40283" x="473.95172"> + <tspan id="tspan730" y="345.40283" x="473.95172">T</tspan> + </text> + <text id="text732" line-height="100%" y="344.53479" x="479.24683"> + <tspan id="tspan735" y="344.53479" x="479.24683">A</tspan> + </text> + <text id="text737" line-height="100%" y="344.27435" x="485.49677"> + <tspan id="tspan740" y="344.27435" x="485.49677">S</tspan> + </text> + </g> + </g> + <path id="path838" d="m418 331.33c6.032 0.731 14.44 0.182 18.095-0.001" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path840" d="m408.86 310.67c5.118 4.021 16.267 6.396 16.084 6.396" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path841" d="m431.34 318.17c-1.645-8.407-3.472-10.418-4.934-15.719" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path842" d="m400.27 292.94c8.591 3.838 9.87 6.396 15.353 10.234" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path843" d="m418.73 294.77c0.732-10.419 2.194-13.161 4.753-15.537" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path844" d="m400.27 277.96c3.108 3.473 13.343 14.256 13.343 14.256" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + <path id="path845" d="m409.41 268.45c3.839 2.741 3.839 12.61 3.839 12.61" stroke="#00a400" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + </g> + </g> +</svg> diff --git a/s/flag/sn.svg b/s/flag/sn.svg new file mode 100755 index 0000000..e5c5d50 --- /dev/null +++ b/s/flag/sn.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg3337" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3298"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <g id="g8564" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.3333 0 0 1 -106.67 0)"> + <rect id="rect1200" height="480" width="160" y="-2.3484e-9" x="80" fill="#0b7226"/> + <rect id="rect880" height="480" width="160" y="-2.3484e-9" x="240" fill="#ff0"/> + <rect id="rect1201" height="480" width="160" y="-2.3484e-9" x="400" fill="#bc0000"/> + </g> + <polygon id="polygon907" transform="matrix(1.217 0 0 1.2614 108.31 39.077)" points="192.06 142.52 251 142.52 204.47 177.05 221.53 232 175 197.46 128.47 230.43 145.53 177.05 99 142.52 156.39 142.52 175 86" fill="#0b7226"/> + </g> +</svg> diff --git a/s/flag/so.svg b/s/flag/so.svg new file mode 100755 index 0000000..207d732 --- /dev/null +++ b/s/flag/so.svg @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3305"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath8528" clipPathUnits="userSpaceOnUse"> + <rect id="rect8530" fill-opacity="0.67" height="512" width="682.67" y=".0000024116" x="-85.334"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath8528)" fill-rule="evenodd" transform="matrix(.9375 0 0 .9375 80.001 -.0000022609)"> + <rect id="rect149" height="512" width="768" y=".0000024116" x="-128" stroke-width="1pt" fill="#40a6ff"/> + <path id="path205" d="m336.48 381.19-82.505-53.476-82.101 54.001 30.535-87.754-81.95-54.188 101.39-0.7555 31.447-87.488 32.121 87.286 101.39 0.11512-81.53 54.699 31.209 87.56z" stroke-width=".11287" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/sr.svg b/s/flag/sr.svg new file mode 100755 index 0000000..be2bc62 --- /dev/null +++ b/s/flag/sr.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg611" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3314"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs613"> + <clipPath id="clipPath3037" clipPathUnits="userSpaceOnUse"> + <rect id="rect3039" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3037)"> + <rect id="rect2996" height="480" width="640" y="-2.8422e-14" x="0" fill="#fff"/> + <rect id="rect13410" height="480" width="480" y=".0000016054" x="79.926" fill="#fff"/> + <rect id="rect631" fill-rule="evenodd" height="95.895" width="720.15" y="384.1" x="-40.074" stroke-width="1pt" fill="#090"/> + <rect id="rect644" fill-rule="evenodd" height="96.001" width="720.09" y="-5.5055e-7" x="-40.074" stroke-width="1pt" fill="#090"/> + <rect id="rect653" fill-rule="evenodd" height="191.69" width="720.11" y="143.8" x="-40.074" stroke-width="1pt" fill="#f00"/> + <path id="path205" d="m373.9 329.18-62.259-41.2-61.954 41.605 23.042-67.61-61.841-41.749 76.508-0.58208 23.73-67.405 24.239 67.25 76.508 0.0887-61.524 42.143 23.551 67.461z" fill-rule="evenodd" stroke-width=".11287" fill="#ff0"/> + </g> +</svg> diff --git a/s/flag/ss.svg b/s/flag/ss.svg new file mode 100755 index 0000000..6039a62 --- /dev/null +++ b/s/flag/ss.svg @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" viewBox="0 0 12.8 9.6"> + <metadata id="metadata22"> + <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 South Sudan</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <title id="title4">Flag of South Sudan</title> + <g id="g3116"> + <rect id="rect6" height="2.88" width="12.8" y="6.72" x="0" fill="#078930"/> + <rect id="rect8" height="3.84" width="12.8" y="2.88" x="0" fill="#fff"/> + <rect id="rect10" height="2.88" width="12.8" y="4.278e-9" x="0"/> + <rect id="rect12" height="2.88" width="12.8" y="3.36" x="0" fill="#da121a"/> + <polygon id="polygon14" points="0 0 8.6603 5 0 10" fill="#0f47af" transform="scale(.96)"/> + <polygon id="polygon16" points="4.1557e5 -3.0193e5 -5.1367e5 0 4.1557e5 3.0193e5 -1.5873e5 -4.8853e5 -1.5873e5 4.8853e5" fill="#fcdd09" transform="matrix(.0000029902 0 0 .0000029902 2.7713 4.8)"/> + </g> +</svg> diff --git a/s/flag/st.svg b/s/flag/st.svg new file mode 100755 index 0000000..c00ff8e --- /dev/null +++ b/s/flag/st.svg @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg1207" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3328"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs1209"> + <clipPath id="clipPath8409" clipPathUnits="userSpaceOnUse"> + <rect id="rect8411" fill-opacity="0.67" height="512" width="682.67" y="-.000016581" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath8409)" fill-rule="evenodd" transform="matrix(.93750 0 0 .93750 0 .000015545)"> + <rect id="rect3472" height="504.3" width="1024" y="-.000013873" x="0" stroke-width="1pt" fill="#ff0"/> + <rect id="rect1276" height="146.29" width="1024" y="-.0000025191" x=".000078442" stroke-width="1pt" fill="#009d00"/> + <rect id="rect3471" height="146.29" width="1024" y="365.71" x="0" stroke-width="1pt" fill="#009d00"/> + <path id="path570" d="m0.7083-0.000016778c1.4166 0 255.29 253.03 255.29 253.03l-256 258.97 0.7083-512z" fill="#f10600"/> + <g id="g1310" transform="matrix(.78651 0 0 .78651 -154.66 -225.36)" stroke-width="1pt"> + <polygon id="polygon136" transform="matrix(.70904 0 0 .73035 367.01 360.98)" points="498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15"/> + <polygon id="polygon1309" transform="matrix(.70904 0 0 .73035 116.64 360.98)" points="498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9 555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15"/> + </g> + </g> +</svg> diff --git a/s/flag/sv.svg b/s/flag/sv.svg new file mode 100755 index 0000000..deba7d3 --- /dev/null +++ b/s/flag/sv.svg @@ -0,0 +1,301 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3609"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath8323" clipPathUnits="userSpaceOnUse"> + <rect id="rect8325" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath8323)"> + <rect id="rect1062" fill-rule="evenodd" height="161.14" width="798.86" y="318.86" x="-79.429" stroke-width="1pt" fill="#5387f4"/> + <rect id="rect1063" fill-rule="evenodd" height="161.14" width="798.86" y="-.0000011560" x="-79.429" stroke-width="1pt" fill="#5387f4"/> + <rect id="rect1064" fill-rule="evenodd" height="157.71" width="798.86" y="161.14" x="-79.429" stroke-width="1pt" fill="#fff"/> + <g id="g3486" transform="matrix(1.6437 0 0 1.6437 -358.51 -168.29)"> + <g id="g1921" stroke="#000" fill-rule="evenodd" transform="matrix(.74925 0 0 .74160 105.14 72.609)"> + <g id="g1806" transform="matrix(-1 0 0 1 825.1 9.1869)"> + <path id="path1807" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.63371 -.40113 .49703 .78520 41.19 205.69)" stroke-width=".33204" fill="#f00"/> + <path id="path1808" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.63371 -.40113 .49703 .78520 36.37 209.51)" stroke-width=".33204" fill="#f00"/> + <path id="path1809" d="m259.03 105.71s400.32 70.645 414.45 395.62c14.129 324.97-188.39 367.36-259.03 419.16-70.645 51.807-113.03 113.03-146 113.03-32.968 0-80.065-14.13-80.065-14.13s9.42 51.81 75.355 47.1c65.936-4.71 127.16-113.03 164.84-131.87s277.88-98.9 259.04-428.58c-14.13-353.23-423.88-390.91-428.59-400.33z" transform="matrix(.13845 .032625 -.034493 .14820 406.46 152.89)" stroke-width="1.6032" fill="#006700"/> + <path id="path1810" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.067365 -.0053250 .016573 .067011 435.79 156.41)" stroke-width="1.6032" fill="#006700"/> + <path id="path1811" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.060996 -.022965 .030688 0.0639 429.11 164.08)" stroke-width="1.6032" fill="#006700"/> + <path id="path1812" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.0063922 -.071350 .062807 .018947 425.66 205.09)" stroke-width="1.6032" fill="#006700"/> + <path id="path1813" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.029417 -.060130 0.0572 .039534 421.8 189.48)" stroke-width="1.6032" fill="#006700"/> + <path id="path1814" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.044533 -.047044 .048576 .052033 423.4 178.25)" stroke-width="1.6032" fill="#006700"/> + <path id="path1815" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.71299 -.23270 .28833 .88343 65.801 118.99)" stroke-width=".33204" fill="#f00"/> + <path id="path1816" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.71299 -.23270 .28833 .88343 60.189 121.51)" stroke-width=".33204" fill="#f00"/> + <path id="path1817" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.095003 .023445 .0014207 .10361 450.31 143)" stroke-width="1.6032" fill="#006700"/> + <path id="path1818" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.091852 -.0047556 .021969 .10567 438.59 150.9)" stroke-width="1.6032" fill="#006700"/> + <path id="path1819" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.031778 -.099236 .080893 .056105 420.64 208.04)" stroke-width="1.6032" fill="#006700"/> + <path id="path1820" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.060060 -.072546 .066514 .083002 420.3 183.9)" stroke-width="1.6032" fill="#006700"/> + <path id="path1821" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.076789 -.046834 .050553 .096925 426.13 168.55)" stroke-width="1.6032" fill="#006700"/> + <path id="path1822" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.088755 .041964 -.016747 .10262 469.8 160.18)" stroke-width="1.6032" fill="#006700"/> + <path id="path1823" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.090610 .013488 .0029779 .10871 456.96 165.67)" stroke-width="1.6032" fill="#006700"/> + <path id="path1824" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.048429 -.091719 .069247 .071427 429.42 218.55)" stroke-width="1.6032" fill="#006700"/> + <path id="path1825" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.071401 -.059760 .050484 .095145 433.31 194.64)" stroke-width="1.6032" fill="#006700"/> + <path id="path1826" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.083252 -.031052 .032447 .10574 441.69 180.63)" stroke-width="1.6032" fill="#006700"/> + <path id="path1827" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.064540 .076734 -.053817 .088020 496.25 181.43)" stroke-width="1.6032" fill="#006700"/> + <path id="path1828" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.076947 .051118 -.038258 .10208 482.57 181.05)" stroke-width="1.6032" fill="#006700"/> + <path id="path1829" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.078394 -.064415 .035781 .095742 437.71 218.35)" stroke-width="1.6032" fill="#006700"/> + <path id="path1830" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.087151 -.024990 .0098599 .10974 450.24 197.83)" stroke-width="1.6032" fill="#006700"/> + <path id="path1831" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.087065 .0066801 -.010458 .11188 463.11 188.42)" stroke-width="1.6032" fill="#006700"/> + <path id="path1832" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.046575 .10876 -.087307 .077090 511.72 202.12)" stroke-width="1.6032" fill="#006700"/> + <path id="path1833" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.29304 -.42472 .55451 .30219 167.81 313.54)" stroke-width=".33204" fill="#f00"/> + <path id="path1834" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.29304 -.42472 .55451 .30219 165.8 317.22)" stroke-width=".33204" fill="#f00"/> + <path id="path1835" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.068401 .085113 -.074663 .098410 496.78 196.6)" stroke-width="1.6032" fill="#006700"/> + <path id="path1836" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.10683 -.041872 .0088572 .11902 435.5 221.04)" stroke-width="1.6032" fill="#006700"/> + <path id="path1837" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.10390 .0049094 -.024139 .12481 455.84 203.07)" stroke-width="1.6032" fill="#006700"/> + <path id="path1838" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.093708 .039835 -.047186 .11959 473 197.47)" stroke-width="1.6032" fill="#006700"/> + <path id="path1839" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(-.012686 .1312 -.12512 .021273 532.08 244.55)" stroke-width="1.6032" fill="#006700"/> + <path id="path1840" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.45225 .59830 -.74133 .56036 427.87 -141.94)" stroke-width=".33204" fill="#f00"/> + <path id="path1841" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.45225 .59830 -.74133 .56036 423.66 -146.42)" stroke-width=".33204" fill="#f00"/> + <path id="path1842" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.020912 .12172 -.12422 .049086 520.59 230.39)" stroke-width="1.6032" fill="#006700"/> + <path id="path1843" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.12530 .023860 -.054526 .11847 448.5 217.11)" stroke-width="1.6032" fill="#006700"/> + <path id="path1844" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.097680 .066604 -.089441 .10431 477.65 212.14)" stroke-width="1.6032" fill="#006700"/> + <path id="path1845" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.069333 .093744 -.10892 .085607 497.18 217.05)" stroke-width="1.6032" fill="#006700"/> + <g id="g1846" transform="matrix(.062904 .16941 -.15868 .070518 507.09 211.42)" stroke-width="1.6032" fill="#006700"> + <path id="path1847" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.92853 .37125 -.37125 .92853 252.11 -52.333)"/> + <path id="path1848" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.87409 -.48576 .48576 .87409 -234.07 229)"/> + <path id="path1849" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="translate(9.9908 14.986)"/> + </g> + <g id="g1850" transform="matrix(.038655 -.065163 .10009 .052494 381.33 173.41)" stroke-width="1.6032" fill="#006700"> + <path id="path1851" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.92853 .37125 -.37125 .92853 252.11 -52.333)"/> + <path id="path1852" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.87409 -.48576 .48576 .87409 -234.07 229)"/> + <path id="path1853" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="translate(9.9908 14.986)"/> + </g> + <path id="path1854" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(0.75 0 0 .92929 121.35 16.238)" stroke-width=".33204" fill="#f00"/> + <path id="path1855" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(0.75 0 0 .92929 115.23 16.888)" stroke-width=".33204" fill="#f00"/> + <path id="path1856" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.64918 .37559 -.46538 .80436 276.35 -113.32)" stroke-width=".33204" fill="#f00"/> + <path id="path1857" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.64918 .37559 -.46538 .80436 270.73 -115.82)" stroke-width=".33204" fill="#f00"/> + <path id="path1858" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.40299 -.32227 .44392 .44914 153.89 236.13)" stroke-width=".33204" fill="#f00"/> + <path id="path1859" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.40299 -.32227 .44392 .44914 150.91 239.07)" stroke-width=".33204" fill="#f00"/> + </g> + <g id="g1752" transform="translate(-4.2872 9.7993)"> + <path id="path1746" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.63371 -.40113 .49703 .78520 41.19 205.69)" stroke-width=".33204" fill="#f00"/> + <path id="path1747" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.63371 -.40113 .49703 .78520 36.37 209.51)" stroke-width=".33204" fill="#f00"/> + <path id="path774" d="m259.03 105.71s400.32 70.645 414.45 395.62c14.129 324.97-188.39 367.36-259.03 419.16-70.645 51.807-113.03 113.03-146 113.03-32.968 0-80.065-14.13-80.065-14.13s9.42 51.81 75.355 47.1c65.936-4.71 127.16-113.03 164.84-131.87s277.88-98.9 259.04-428.58c-14.13-353.23-423.88-390.91-428.59-400.33z" transform="matrix(.13845 .032625 -.034493 .14820 406.46 152.89)" stroke-width="1.6032" fill="#006700"/> + <path id="path780" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.067365 -.0053250 .016573 .067011 435.79 156.41)" stroke-width="1.6032" fill="#006700"/> + <path id="path778" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.060996 -.022965 .030688 0.0639 429.11 164.08)" stroke-width="1.6032" fill="#006700"/> + <path id="path779" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.0063922 -.071350 .062807 .018947 425.66 205.09)" stroke-width="1.6032" fill="#006700"/> + <path id="path777" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.029417 -.060130 0.0572 .039534 421.8 189.48)" stroke-width="1.6032" fill="#006700"/> + <path id="path776" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.044533 -.047044 .048576 .052033 423.4 178.25)" stroke-width="1.6032" fill="#006700"/> + <path id="path1738" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.71299 -.23270 .28833 .88343 65.801 118.99)" stroke-width=".33204" fill="#f00"/> + <path id="path1739" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.71299 -.23270 .28833 .88343 60.189 121.51)" stroke-width=".33204" fill="#f00"/> + <path id="path790" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.095003 .023445 .0014207 .10361 450.31 143)" stroke-width="1.6032" fill="#006700"/> + <path id="path791" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.091852 -.0047556 .021969 .10567 438.59 150.9)" stroke-width="1.6032" fill="#006700"/> + <path id="path792" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.031778 -.099236 .080893 .056105 420.64 208.04)" stroke-width="1.6032" fill="#006700"/> + <path id="path793" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.060060 -.072546 .066514 .083002 420.3 183.9)" stroke-width="1.6032" fill="#006700"/> + <path id="path794" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.076789 -.046834 .050553 .096925 426.13 168.55)" stroke-width="1.6032" fill="#006700"/> + <path id="path797" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.088755 .041964 -.016747 .10262 469.8 160.18)" stroke-width="1.6032" fill="#006700"/> + <path id="path798" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.090610 .013488 .0029779 .10871 456.96 165.67)" stroke-width="1.6032" fill="#006700"/> + <path id="path799" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.048429 -.091719 .069247 .071427 429.42 218.55)" stroke-width="1.6032" fill="#006700"/> + <path id="path800" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.071401 -.059760 .050484 .095145 433.31 194.64)" stroke-width="1.6032" fill="#006700"/> + <path id="path801" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.083252 -.031052 .032447 .10574 441.69 180.63)" stroke-width="1.6032" fill="#006700"/> + <path id="path804" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.064540 .076734 -.053817 .088020 496.25 181.43)" stroke-width="1.6032" fill="#006700"/> + <path id="path805" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.076947 .051118 -.038258 .10208 482.57 181.05)" stroke-width="1.6032" fill="#006700"/> + <path id="path806" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.078394 -.064415 .035781 .095742 437.71 218.35)" stroke-width="1.6032" fill="#006700"/> + <path id="path1626" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.087151 -.024990 .0098599 .10974 450.24 197.83)" stroke-width="1.6032" fill="#006700"/> + <path id="path808" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.087065 .0066801 -.010458 .11188 463.11 188.42)" stroke-width="1.6032" fill="#006700"/> + <path id="path811" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.046575 .10876 -.087307 .077090 511.72 202.12)" stroke-width="1.6032" fill="#006700"/> + <path id="path1750" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.29304 -.42472 .55451 .30219 167.81 313.54)" stroke-width=".33204" fill="#f00"/> + <path id="path1751" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.29304 -.42472 .55451 .30219 165.8 317.22)" stroke-width=".33204" fill="#f00"/> + <path id="path812" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.068401 .085113 -.074663 .098410 496.78 196.6)" stroke-width="1.6032" fill="#006700"/> + <path id="path813" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.10683 -.041872 .0088572 .11902 435.5 221.04)" stroke-width="1.6032" fill="#006700"/> + <path id="path1633" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.10390 .0049094 -.024139 .12481 455.84 203.07)" stroke-width="1.6032" fill="#006700"/> + <path id="path1634" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.093708 .039835 -.047186 .11959 473 197.47)" stroke-width="1.6032" fill="#006700"/> + <path id="path1637" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(-.012686 .1312 -.12512 .021273 532.08 244.55)" stroke-width="1.6032" fill="#006700"/> + <path id="path1736" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.45225 .59830 -.74133 .56036 427.87 -141.94)" stroke-width=".33204" fill="#f00"/> + <path id="path1737" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.45225 .59830 -.74133 .56036 423.66 -146.42)" stroke-width=".33204" fill="#f00"/> + <path id="path1638" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.020912 .12172 -.12422 .049086 520.59 230.39)" stroke-width="1.6032" fill="#006700"/> + <path id="path820" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.12530 .023860 -.054526 .11847 448.5 217.11)" stroke-width="1.6032" fill="#006700"/> + <path id="path821" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.097680 .066604 -.089441 .10431 477.65 212.14)" stroke-width="1.6032" fill="#006700"/> + <path id="path822" d="m320.26 487.2c0 59.825-11.597 108.32-25.903 108.32s-25.903-48.498-25.903-108.32c0-59.825 11.597-108.32 25.903-108.32s25.903 48.498 25.903 108.32z" transform="matrix(.069333 .093744 -.10892 .085607 497.18 217.05)" stroke-width="1.6032" fill="#006700"/> + <g id="g834" transform="matrix(.062904 .16941 -.15868 .070518 507.09 211.42)" stroke-width="1.6032" fill="#006700"> + <path id="path832" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.92853 .37125 -.37125 .92853 252.11 -52.333)"/> + <path id="path1645" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.87409 -.48576 .48576 .87409 -234.07 229)"/> + <path id="path831" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="translate(9.9908 14.986)"/> + </g> + <g id="g838" transform="matrix(.038655 -.065163 .10009 .052494 381.33 173.41)" stroke-width="1.6032" fill="#006700"> + <path id="path839" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.92853 .37125 -.37125 .92853 252.11 -52.333)"/> + <path id="path1649" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="matrix(.87409 -.48576 .48576 .87409 -234.07 229)"/> + <path id="path841" d="m314.71 506.2c0 45.062-10.064 81.591-22.479 81.591s-22.479-36.53-22.479-81.591c0-45.062 10.064-81.591 22.479-81.591s22.479 36.53 22.479 81.591z" transform="translate(9.9908 14.986)"/> + </g> + <path id="path1732" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(0.75 0 0 .92929 121.35 16.238)" stroke-width=".33204" fill="#f00"/> + <path id="path1733" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(0.75 0 0 .92929 115.23 16.888)" stroke-width=".33204" fill="#f00"/> + <path id="path1734" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.64918 .37559 -.46538 .80436 276.35 -113.32)" stroke-width=".33204" fill="#f00"/> + <path id="path1735" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.64918 .37559 -.46538 .80436 270.73 -115.82)" stroke-width=".33204" fill="#f00"/> + <path id="path1748" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.40299 -.32227 .44392 .44914 153.89 236.13)" stroke-width=".33204" fill="#f00"/> + <path id="path1749" d="m490.58 234.24c0 0.84563-0.82262 1.5312-1.8374 1.5312s-1.8374-0.68552-1.8374-1.5312c0-0.84563 0.82261-1.5312 1.8374-1.5312s1.8374 0.68552 1.8374 1.5312z" transform="matrix(.40299 -.32227 .44392 .44914 150.91 239.07)" stroke-width=".33204" fill="#f00"/> + </g> + <g id="g1911" transform="translate(-3.0623 1.8374)" stroke-width=".23547" fill="#5387f4"> + <path id="path1861" d="m411.36 319.5 0.037 5.258c10.21-0.517 5.263 6.977 7.029 11.223l2.255-2.827 3.122 2.803c-0.25-4.908 2.748-17.395-12.443-16.457z" transform="translate(.43304 -.000015259)"/> + <path id="path1862" d="m411.36 319.5 0.037 5.258c10.21-0.517 5.263 6.977 7.029 11.223l2.255-2.827 3.122 2.803c-0.25-4.908 2.748-17.395-12.443-16.457z" transform="matrix(-1 0 0 1 826.8 .21651)"/> + <g id="g1865" transform="matrix(.89666 .44272 -.44272 .89666 184.34 -149.98)"> + <path id="path1864" d="m427.88 303.13c0.325 1.901-0.449 11.372-0.865 13.641-0.537 1.923-0.447 6.708-10.395 7.147-4.776 0.211-3.898-4.548-3.681-4.548 0.216 0 1.949 1.733 3.898 0 1.948-1.732-0.444-17.53 1.515-19.488 2.156-2.155 9.985 1.496 9.528 3.248z"/> + <path id="path1863" d="m427.88 303.13c-2.057-0.264-3.159-0.732-3.68 1.516-2.053 9.068 2.368 17.101-7.58 19.272-4.665 1.041-3.898-4.548-3.681-4.548 0.216 0 1.949 1.733 3.898 0 1.948-1.732-0.444-17.53 1.515-19.488 2.156-2.155 9.985 1.496 9.528 3.248z"/> + </g> + <g id="g1868" transform="matrix(-.89666 .44272 .44272 .89666 644.51 -149.98)"> + <path id="path1869" d="m427.88 303.13c0.325 1.901-0.449 11.372-0.865 13.641-0.537 1.923-0.447 6.708-10.395 7.147-4.776 0.211-3.898-4.548-3.681-4.548 0.216 0 1.949 1.733 3.898 0 1.948-1.732-0.444-17.53 1.515-19.488 2.156-2.155 9.985 1.496 9.528 3.248z"/> + <path id="path1870" d="m427.88 303.13c-2.057-0.264-3.159-0.732-3.68 1.516-2.053 9.068 2.368 17.101-7.58 19.272-4.665 1.041-3.898-4.548-3.681-4.548 0.216 0 1.949 1.733 3.898 0 1.948-1.732-0.444-17.53 1.515-19.488 2.156-2.155 9.985 1.496 9.528 3.248z"/> + </g> + <path id="path1860" d="m411.57 319.06-0.18 6.774 5.08-0.037 0.613-6.737h-5.513z" transform="translate(0 -.000015259)"/> + </g> + </g> + <path id="path946" d="m409.69 276.93s-14.322 12.064-14.322 20.725c0.306 3.457 3.169 6.981 8.407 9.52-2.418-3.586-2.747-6.52-2.747-9.931 0.306-5.86 8.461-12.931 8.461-12.931l0.201-7.383z" fill-rule="evenodd" transform="matrix(-.55701 0 0 .56139 640.36 115.47)" stroke="#000" stroke-width=".23547" fill="#5387f4"/> + <g id="g994" stroke="#000" fill-rule="evenodd" transform="matrix(.74925 0 0 .74160 145.3 269.28)"> + <rect id="rect951" transform="matrix(.0013385 -1.0774 -.89274 -.13654 -21.895 93.381)" height="2.0546" width="49.929" y="-427.57" x="172.65" stroke-width=".17606" fill="#ffd200"/> + <path id="path952" d="m283.46-389.76-17.717 70.866 17.717 25.037 17.716-25.037-17.716-70.866z" transform="matrix(-.15568 -.030357 -.0015714 .16811 402.81 -28.331)" stroke-width="1.0664" fill="#ffd200"/> + <path id="path953" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(-.12088 -.0096268 .0036882 .087161 404.67 -46.703)" stroke-width="1.6851"/> + <path id="path954" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(.11820 -.013634 -.016366 -.086948 308.96 -117.95)" stroke-width="1.6851"/> + <path id="path978" d="m422.29-165.7 2.45-0.306s1.766 2.602 3.675 6.737c1.679 4.331 3.368 11.33 4.899 27.255-4.593-0.307-21.436 1.531-21.436 1.531s0.236-19.169 6.125-26.029c2.757-2.906 4.593-8.575 4.287-9.188z" transform="matrix(0.9 0 0 1.0774 -21.895 93.381)" stroke-width=".17536" fill="#5387f4"/> + <path id="path977" d="m422.29-165.7 2.45-0.306s1.766 2.602 3.675 6.737c1.679 4.331-4.9 11.636-3.369 27.561-4.593-0.307-13.168 1.225-13.168 1.225s0.236-19.169 6.125-26.029c2.757-2.906 4.593-8.575 4.287-9.188z" transform="matrix(0.9 0 0 1.0774 -21.895 93.381)" stroke-width=".17536" fill="#fff"/> + <path id="path976" d="m422.29-165.7 2.45-0.306s-0.613 7.962-2.756 11.943c-2.144 3.981-3.369 22.967-3.063 22.967 0.307 0-7.043 0.613-7.043 0.613s0.236-19.169 6.125-26.029c2.757-2.906 4.593-8.575 4.287-9.188z" transform="matrix(0.9 0 0 1.0774 -21.895 93.381)" stroke-width=".17536" fill="#5387f4"/> + </g> + <path id="path945" d="m409.69 276.93s-14.322 12.064-14.322 20.725c0.306 3.457 3.169 6.981 8.407 9.52-2.418-3.586-2.747-6.52-2.747-9.931 0.306-5.86 8.461-12.931 8.461-12.931l0.201-7.383z" fill-rule="evenodd" transform="matrix(.57303 0 0 .54638 180.32 119.86)" stroke="#000" stroke-width=".23547" fill="#5387f4"/> + <g id="g930" stroke="#000" fill-rule="evenodd" transform="matrix(-.26793 0 0 .19503 512.17 346.21)"> + <path id="path931" d="m407.48-248.03 106.3-106.3s-27.516 220.02-88.583 265.75c0 0-53.15 24.117-53.15-0.135l35.433-159.31z" transform="translate(-.00049591 -301.18)" stroke-width=".62793pt" fill="#5387f4"/> + <path id="path932" d="m407.48-248.03 70.866-70.867s-35.433 230.31-106.3 230.31v-0.1349l35.433-159.31z" transform="translate(.00041962 -301.18)" stroke-width=".62793pt" fill="#fff"/> + <path id="path933" d="m407.48-248.03s35.433-35.434 35.433-35.434-35.433 194.88-70.866 194.88v-0.1349l35.433-159.31z" transform="translate(.00022888 -301.18)" stroke-width=".62793pt" fill="#5387f4"/> + <rect id="rect934" transform="rotate(-43.992)" height="7.3228" width="177.17" y="-116.49" x="678.85" stroke-width=".81631" fill="#ffd200"/> + <path id="path935" d="m283.46-389.76-17.717 70.866 17.717 25.037 17.716-25.037-17.716-70.866z" transform="matrix(.44721 .43219 -.39504 .38894 290.37 -679.58)" stroke-width="1.729" fill="#ffd200"/> + <path id="path936" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(.38682 .26358 -.16606 .24370 323.5 -666.19)" stroke-width=".62793pt"/> + <path id="path937" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(-.33732 -.32453 .20446 -.21252 742.75 -641.88)" stroke-width=".62793pt"/> + <path id="path938" d="m407.48-248.03 106.3-53.15s-17.717 221.39-106.3 221.39c-53.15 0-70.866-70.866-70.866-70.866l70.866-97.378z" transform="translate(17.717 -256.83)" stroke-width=".62793pt" fill="#5387f4"/> + <path id="path939" d="m407.48-248.03 70.866-35.434c0 35.434-17.716 185.96-70.866 185.96-35.433 0-70.866-53.15-70.866-53.15l70.866-97.378z" transform="translate(17.717 -256.83)" stroke-width=".62793pt" fill="#fff"/> + <path id="path940" d="m407.48-248.03l35.433-17.717c0 79.662-17.716 150.53-53.149 150.53-17.717 0-53.15-35.433-53.15-35.433l70.866-97.378z" transform="translate(17.717 -256.83)" stroke-width=".62793pt" fill="#5387f4"/> + <rect id="rect941" transform="rotate(-26.517)" height="7.3228" width="177.17" y="-267.74" x="569.18" stroke-width=".81631" fill="#ffd200"/> + <path id="path942" d="m283.46-389.76-17.717 70.866 17.717 25.037 17.716-25.037-17.716-70.866z" transform="matrix(.29679 .54653 -.4936 .25237 315.38 -647.39)" stroke-width="1.729" fill="#ffd200"/> + <path id="path943" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(.28982 .36758 -.23158 .18259 342.96 -624.68)" stroke-width=".62793pt"/> + <path id="path944" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(-.22430 -.41085 .25884 -.14131 735.56 -475.59)" stroke-width=".62793pt"/> + </g> + <g id="g915" stroke="#000" fill-rule="evenodd" transform="matrix(.26414 0 0 .19504 316.86 346.21)"> + <path id="path878" d="m407.48-248.03 106.3-106.3s-27.516 220.02-88.583 265.75c0 0-53.15 24.117-53.15-0.135l35.433-159.31z" transform="translate(-.00049591 -301.18)" stroke-width=".62793pt" fill="#5387f4"/> + <path id="path879" d="m407.48-248.03 70.866-70.867s-35.433 230.31-106.3 230.31v-0.1349l35.433-159.31z" transform="translate(.00041962 -301.18)" stroke-width=".62793pt" fill="#fff"/> + <path id="path880" d="m407.48-248.03s35.433-35.434 35.433-35.434-35.433 194.88-70.866 194.88v-0.1349l35.433-159.31z" transform="translate(.00022888 -301.18)" stroke-width=".62793pt" fill="#5387f4"/> + <rect id="rect881" transform="rotate(-43.992)" height="7.3228" width="177.17" y="-116.49" x="678.85" stroke-width=".81631" fill="#ffd200"/> + <path id="path882" d="m283.46-389.76-17.717 70.866 17.717 25.037 17.716-25.037-17.716-70.866z" transform="matrix(.44721 .43219 -.39504 .38894 290.37 -679.58)" stroke-width="1.729" fill="#ffd200"/> + <path id="path883" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(.38682 .26358 -.16606 .24370 323.5 -666.19)" stroke-width=".62793pt"/> + <path id="path884" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(-.33732 -.32453 .20446 -.21252 742.75 -641.88)" stroke-width=".62793pt"/> + <path id="path834" d="m407.48-248.03 106.3-53.15s-17.717 221.39-106.3 221.39c-53.15 0-70.866-70.866-70.866-70.866l70.866-97.378z" transform="translate(17.717 -256.83)" stroke-width=".62793pt" fill="#5387f4"/> + <path id="path835" d="m407.48-248.03 70.866-35.434c0 35.434-17.716 185.96-70.866 185.96-35.433 0-70.866-53.15-70.866-53.15l70.866-97.378z" transform="translate(17.717 -256.83)" stroke-width=".62793pt" fill="#fff"/> + <path id="path836" d="m407.48-248.03l35.433-17.717c0 79.662-17.716 150.53-53.149 150.53-17.717 0-53.15-35.433-53.15-35.433l70.866-97.378z" transform="translate(17.717 -256.83)" stroke-width=".62793pt" fill="#5387f4"/> + <rect id="rect839" transform="rotate(-26.517)" height="7.3228" width="177.17" y="-267.74" x="569.18" stroke-width=".81631" fill="#ffd200"/> + <path id="path840" d="m283.46-389.76-17.717 70.866 17.717 25.037 17.716-25.037-17.716-70.866z" transform="matrix(.29679 .54653 -.4936 .25237 315.38 -647.39)" stroke-width="1.729" fill="#ffd200"/> + <path id="path845" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(.28982 .36758 -.23158 .18259 342.96 -624.68)" stroke-width=".62793pt"/> + <path id="path846" d="m368.98-419.45s-40.709-27.717-40.709 0.866c0 28.582 39.843 0.866 40.709-0.866zm-7.795-0.181s-28.583-19.342-28.583 0.604c0 19.945 27.975 0.604 28.583-0.604z" transform="matrix(-.22430 -.41085 .25884 -.14131 735.56 -475.59)" stroke-width=".62793pt"/> + </g> + <g id="g1871" stroke-linejoin="bevel" transform="matrix(.74925 0 0 .74160 105.14 70.338)" stroke="#000" stroke-width=".10530"> + <path id="path580" d="m496.06 627.16 17.717-17.716 17.716 17.716h-35.433z" fill-rule="evenodd" transform="matrix(2.6869 0 0 4.6313 -968.14 -2627.4)" fill="#ffd200"/> + <path id="path562" d="m496.06 627.16 17.717-17.716 17.716 17.716h-35.433z" fill-rule="evenodd" transform="matrix(2.4214 0 0 4.1966 -831.57 -2357.1)" fill="#0ff"/> + <path id="path833" d="m419.84 239.14c0 3.8899-3.2219 7.0432-7.1964 7.0432-3.9744 0-7.1964-3.1534-7.1964-7.0432 0-3.8899 3.2219-7.0432 7.1964-7.0432 3.9744 0 7.1964 3.1534 7.1964 7.0432z" fill-rule="evenodd" fill="#ffd200"/> + <g id="g619" transform="matrix(.24214 0 0 .24229 300.66 101.1)" fill="none"> + <path id="path604" d="m462.73 556.66-1.18-108.32"/> + <path id="path606" d="m468.62 563.73 38.855-54.162"/> + <path id="path607" d="m474.51 569.61 62.4-25.9"/> + <path id="path609" d="m479.22 577.86 73.001 2.355"/> + <path id="path611" d="m474.51 587.28 42.388 37.677" transform="translate(0 -.000030518)"/> + <path id="path612" d="m462.73 583.74v34.146"/> + <path id="path613" d="m449.78 575.5-55.339 48.275"/> + <path id="path614" d="m455.67 579.03-24.726 45.92"/> + <path id="path615" d="m446.25 569.61-91.84 31.791"/> + <path id="path616" d="m445.07 564.9-64.76-2.355"/> + <path id="path617" d="m393.26 537.82 56.517 18.839"/> + <path id="path618" d="m420.34 489.55 34.146 65.936"/> + </g> + <g id="g572" fill-rule="evenodd" transform="matrix(.24214 0 0 .24229 300.97 178.59)"> + <path id="path565" d="m460.63 219.69c-35.433 0-61.25 6.505-83.044 14.145l5.54-9.579 5.53-9.595 5.54-9.596 5.54-9.578 5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595 5.54 9.578 5.53 9.596 5.54 9.595 5.53 9.579c-22.972-7.64-47.613-14.145-83.046-14.145z" transform="translate(.00055313 -.0036163)" fill="#c453d7"/> + <path id="path566" d="m460.63 212.93c-35.548-0.05-75.281 10.597-77.504 11.329l5.53-9.595 5.54-9.596 5.54-9.578 5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595 5.54 9.578 5.53 9.596 5.54 9.595s-42.083-11.329-77.516-11.329z" transform="translate(.012903 .00088501)" fill="#5000c1"/> + <path id="path567" d="m460.63 205.27c-26.248-0.109-68.686 7.141-71.68 8.504l5.246-8.713 5.54-9.578 5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595 5.54 9.578 5.53 9.596s-36.543-9.387-71.976-9.387z" transform="translate(-.00020024 -.0065155)" fill="#0053d7"/> + <path id="path568" d="m460.63 197.32c-34.802-0.07-63.717 6.631-66.434 7.739l5.54-9.578 5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595 5.54 9.578s-31.013-7.739-66.446-7.739z" transform="translate(-.015031 -.0081177)" fill="#009f9f"/> + <path id="path569" d="m460.63 190.56c-35.605-0.123-57.963 4.465-60.894 4.931l5.53-9.595 5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579 5.54 9.595s-25.473-4.931-60.906-4.931z" transform="translate(-.00020024 -.012848)" fill="#ff0"/> + <path id="path570" d="m460.34 181.72c-31.014-0.671-53.786 4.25-55.07 4.167l5.54-9.579 6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595 5.53 9.579s-20.227-4.167-55.66-4.167z" transform="translate(-.014536 -.012848)" fill="#f50"/> + <path id="path571" d="m461.51 171.42c-31.129 0.257-47.247 4.34-50.707 4.891l6.13-9.769c8.26-7.257 25.98-10.652 43.69-10.652 17.72 0 35.44 3.586 44.3 10.826l5.54 9.595s-13.52-4.891-48.953-4.891z" transform="translate(-.029404 .0029450)" fill="#ff0b00"/> + </g> + <path id="path581" d="m496.06 627.16 4.983-4.983h25.467l4.983 4.983h-35.433z" fill-rule="evenodd" transform="matrix(2.4214 0 0 4.1966 -831.57 -2357.1)" fill="#4363ff"/> + <path id="path603" d="m438.01 565.49c0.409 0 0.727-1.87 1.766-3.532 2.222-1.61 4.568-2.871 7.653-3.533 1.665-0.832 5.08-0.588 7.653-0.588 3.611 0.324 3.837 1.865 5.888 4.121 0.902 1.837 3.038 4.389 4.121 7.064 1.172 1.42 2.107 3.626 2.943 5.299 0.855 1.804 1.765 4.526 2.944 7.064 0.605 2.824 1.177 5.028 1.177 8.242 0 3.352-0.554 4.78-1.177 7.065-1.794 0.598-5.29 0.888-7.065 0-1.9-1.7-5.162-0.617-6.475-2.355-3.386-0.474-4.208-4.459-5.888-6.475-1.175-1.729-1.156-3.032-2.355-4.71-1.857-1.327-2.108-2.945-2.943-5.299 0.736-2.517 2.015-3.068 4.121-4.121 1.127-1.644 1.766-2.304 1.766-5.298-0.424-3.334-1.625-2.982-4.71-3.533-3.814 0-5.77 0.393-9.419 0.589z" fill-rule="evenodd" transform="matrix(.16282 0 0 .12659 338.7 166.52)" fill="#f00"/> + <g id="g820" fill-rule="evenodd" transform="matrix(1.0506 -.042456 .20928 1.1632 -78.052 -20.528)" fill="#6da700"> + <path id="path814" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.099518 -.0072856 .0089420 .12214 386.68 185.55)"/> + <path id="path815" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.099518 -.0072856 .0089420 .12214 385.23 185.65)"/> + <path id="path816" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.11825 -.0086572 .0099186 .13548 374.39 177.66)"/> + <path id="path817" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.13074 -.0095716 .011546 .15772 365.68 163.46)"/> + <path id="path818" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.14792 -.010829 .012848 .17550 354.72 152.32)"/> + <path id="path819" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.15729 -.011515 .014476 .19774 346.83 137.79)"/> + <path id="path807" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.17825 0 0 .19309 344.65 135.43)"/> + <path id="path590" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.17825 0 0 .19309 342.05 135.43)"/> + <path id="path588" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.21181 0 0 .21418 323.77 121.6)"/> + <path id="path586" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.23418 0 0 .24932 310.11 98.276)"/> + <path id="path584" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.26494 0 0 .27744 292.04 79.5)"/> + <path id="path582" d="m334.69 674.38s28.307-4.996 46.624-19.982c18.316-14.986 18.317-39.964 26.642-39.964 8.326 0 9.991 28.308 29.973 38.299 19.981 9.991 51.62 23.312 51.62 23.312l-154.86-1.665z" transform="matrix(.28172 0 0 .31258 279.88 55.74)"/> + </g> + </g> + <g id="g2201" transform="matrix(.74925 0 0 .74160 110.88 -99.988)"> + <path id="path2121" d="m380.34 293.64 5.819-4.9s7.961 6.431 23.579 6.125c14.709-0.283 19.906-5.513 22.049-6.126l5.818 5.206c-3.369 0.919-15.311 6.737-28.785 7.35-14.087-0.612-26.642-5.817-28.48-7.655z" fill-rule="evenodd" transform="translate(-5.8465 229.96)" stroke="#000" stroke-width=".23547" fill="#ffc200"/> + <path id="path2158" d="m425.45 510.86v-3.401h-1.476v-0.454h3.55v0.454h-1.481v3.401h-0.593z" stroke-width="1pt" transform="matrix(.69073 -.24508 .25511 .71327 -2.8299 265.75)"/> + <path id="path2161" d="m415.64 510.86v-3.855h3.238v0.454h-2.645v1.181h2.477v0.452h-2.477v1.313h2.749v0.455h-3.342z" stroke-width="1pt" transform="matrix(.70851 -.18757 .19571 .7318 19.511 232.16)"/> + <path id="path2165" d="m409.81 510.86v-3.855h0.593v3.855h-0.593z" stroke-width="1pt" transform="matrix(.70851 -.18757 .19571 .7318 19.435 232.01)"/> + <path id="path2166" d="m406.21 510.86v-3.855h0.593v3.4h2.206v0.455h-2.799z" stroke-width="1pt" transform="matrix(.72753 -.088746 .093623 .75171 63.594 181.37)"/> + <path id="path2167" d="m399.97 510.86v-3.855h0.608l2.352 3.026v-3.026h0.568v3.855h-0.608l-2.352-3.03v3.03h-0.568z" stroke-width="1pt" transform="matrix(.73267 -.019108 .021661 .75721 97.815 150.42)"/> + <path id="path2170" d="m393.47 510.86v-3.855h0.592v3.855h-0.592z" stroke-width="1pt" transform="matrix(.72886 .076994 -.077676 .75353 149.67 114.07)"/> + <path id="path2171" d="m388.85 510.86v-3.855h0.608l2.352 3.026v-3.026h0.568v3.855h-0.608l-2.352-3.03v3.03h-0.568z" stroke-width="1pt" transform="matrix(.72001 .13695 -.13967 .74453 184.6 95.077)"/> + <path id="path2172" d="m387.28 507.01h0.592v2.227c0 0.387-0.051 0.695-0.152 0.923-0.103 0.228-0.287 0.413-0.554 0.557-0.264 0.142-0.613 0.213-1.044 0.213-0.419 0-0.763-0.062-1.029-0.187-0.267-0.124-0.458-0.304-0.572-0.539-0.114-0.236-0.171-0.559-0.171-0.967v-2.227h0.593v2.224c0 0.335 0.035 0.582 0.107 0.742 0.073 0.158 0.197 0.279 0.373 0.365s0.392 0.129 0.647 0.129c0.436 0 0.746-0.085 0.932-0.255 0.185-0.17 0.278-0.497 0.278-0.981v-2.224z" stroke-width="1pt" transform="matrix(.70887 .18620 -.19060 .73315 215.09 81.887)"/> + <path id="path2173" d="m378.22 509.63 0.559-0.042c0.026 0.193 0.087 0.351 0.183 0.476 0.098 0.122 0.248 0.223 0.452 0.3 0.203 0.075 0.433 0.113 0.687 0.113 0.226 0 0.426-0.029 0.599-0.087s0.302-0.137 0.385-0.237c0.085-0.102 0.128-0.212 0.128-0.331 0-0.121-0.04-0.226-0.122-0.316-0.082-0.091-0.216-0.167-0.403-0.228-0.12-0.041-0.386-0.103-0.797-0.187-0.412-0.086-0.7-0.167-0.865-0.242-0.214-0.096-0.374-0.216-0.479-0.358-0.105-0.144-0.156-0.304-0.156-0.481 0-0.194 0.064-0.376 0.192-0.544 0.128-0.17 0.315-0.299 0.562-0.387 0.247-0.087 0.52-0.131 0.822-0.131 0.332 0 0.624 0.046 0.877 0.139 0.254 0.091 0.449 0.226 0.586 0.405s0.21 0.381 0.22 0.608l-0.568 0.036c-0.031-0.243-0.135-0.427-0.312-0.552-0.175-0.124-0.435-0.187-0.779-0.187-0.358 0-0.62 0.057-0.785 0.171-0.163 0.112-0.244 0.248-0.244 0.408 0 0.138 0.058 0.252 0.174 0.342 0.114 0.089 0.412 0.181 0.892 0.276 0.482 0.093 0.813 0.174 0.993 0.244 0.26 0.104 0.453 0.235 0.577 0.395 0.124 0.158 0.187 0.34 0.187 0.547 0 0.205-0.069 0.399-0.205 0.581-0.137 0.18-0.333 0.322-0.59 0.423-0.254 0.1-0.542 0.15-0.861 0.15-0.406 0-0.746-0.051-1.02-0.152-0.274-0.102-0.488-0.254-0.645-0.458-0.155-0.205-0.236-0.436-0.244-0.694z" stroke-width="1pt" transform="matrix(.70684 .20498 -.19437 .72911 217.43 76.457)"/> + <path id="path2176" d="m371.92 510.86v-3.855h0.593v3.855h-0.593z" stroke-width="1pt" transform="matrix(.68641 .26548 -.25683 .70952 256.75 63.442)"/> + <path id="path2181" d="m367.3 510.86v-3.855h1.542c0.349 0 0.615 0.018 0.798 0.055 0.257 0.05 0.476 0.142 0.656 0.276 0.237 0.172 0.413 0.392 0.529 0.66 0.118 0.266 0.177 0.571 0.177 0.915 0 0.293-0.039 0.552-0.119 0.778-0.079 0.226-0.181 0.414-0.305 0.563-0.125 0.147-0.261 0.264-0.41 0.35-0.146 0.084-0.325 0.148-0.534 0.192-0.208 0.044-0.447 0.066-0.718 0.066h-1.616zm0.593-0.455h0.956c0.295 0 0.526-0.024 0.693-0.071 0.169-0.048 0.303-0.114 0.404-0.201 0.14-0.12 0.249-0.282 0.326-0.486 0.08-0.205 0.119-0.453 0.119-0.744 0-0.403-0.077-0.713-0.232-0.928-0.152-0.217-0.339-0.363-0.559-0.437-0.159-0.052-0.414-0.079-0.766-0.079h-0.941v2.946z" stroke-width="1pt" transform="matrix(.56237 .47474 -.47410 .58703 413.2 48.272)"/> + <path id="path2184" d="m373.38 508.99c0-0.64 0.2-1.14 0.598-1.502 0.4-0.362 0.915-0.544 1.546-0.544 0.414 0 0.786 0.085 1.118 0.255s0.585 0.408 0.758 0.713c0.175 0.303 0.263 0.648 0.263 1.033 0 0.391-0.092 0.741-0.276 1.049-0.183 0.309-0.442 0.543-0.778 0.703-0.336 0.157-0.699 0.236-1.088 0.236-0.421 0-0.798-0.087-1.13-0.263-0.332-0.175-0.584-0.415-0.755-0.717-0.171-0.304-0.256-0.625-0.256-0.963zm0.611 0.008c0 0.464 0.144 0.831 0.434 1.099 0.291 0.267 0.655 0.399 1.093 0.399 0.446 0 0.813-0.134 1.1-0.404 0.289-0.27 0.434-0.653 0.434-1.149 0-0.314-0.062-0.588-0.187-0.821-0.122-0.235-0.302-0.416-0.541-0.544-0.236-0.13-0.502-0.195-0.797-0.195-0.419 0-0.781 0.125-1.084 0.374-0.301 0.247-0.452 0.661-0.452 1.241z" stroke-width="1pt" transform="matrix(.68641 .26548 -.25683 .70952 256.75 63.671)"/> + <path id="path2187" d="m394.93 508.99c0-0.64 0.199-1.14 0.598-1.502 0.4-0.362 0.915-0.544 1.546-0.544 0.413 0 0.786 0.085 1.118 0.255s0.585 0.408 0.758 0.713c0.175 0.303 0.262 0.648 0.262 1.033 0 0.391-0.091 0.741-0.275 1.049-0.183 0.309-0.442 0.543-0.779 0.703-0.336 0.157-0.698 0.236-1.087 0.236-0.422 0-0.798-0.087-1.13-0.263-0.332-0.175-0.584-0.415-0.755-0.717-0.171-0.304-0.256-0.625-0.256-0.963zm0.611 0.008c0 0.464 0.144 0.831 0.434 1.099 0.29 0.267 0.655 0.399 1.093 0.399 0.446 0 0.813-0.134 1.1-0.404 0.289-0.27 0.434-0.653 0.434-1.149 0-0.314-0.063-0.588-0.187-0.821-0.122-0.235-0.302-0.416-0.541-0.544-0.236-0.13-0.502-0.195-0.797-0.195-0.419 0-0.781 0.125-1.084 0.374-0.302 0.247-0.452 0.661-0.452 1.241z" stroke-width="1pt" transform="matrix(.72886 .076994 -.077676 .75353 149.82 114)"/> + <path id="path2190" d="m432.31 510.86v-3.855h1.542c0.349 0 0.615 0.018 0.798 0.055 0.256 0.05 0.475 0.142 0.656 0.276 0.237 0.172 0.413 0.392 0.529 0.66 0.118 0.266 0.177 0.571 0.177 0.915 0 0.293-0.04 0.552-0.119 0.778s-0.182 0.414-0.306 0.563c-0.124 0.147-0.26 0.264-0.409 0.35-0.146 0.084-0.325 0.148-0.534 0.192-0.208 0.044-0.448 0.066-0.718 0.066h-1.616zm0.593-0.455h0.956c0.295 0 0.526-0.024 0.693-0.071 0.169-0.048 0.303-0.114 0.403-0.201 0.141-0.12 0.25-0.282 0.327-0.486 0.079-0.205 0.119-0.453 0.119-0.744 0-0.403-0.077-0.713-0.232-0.928-0.153-0.217-0.339-0.363-0.559-0.437-0.159-0.052-0.415-0.079-0.767-0.079h-0.94v2.946z" stroke-width="1pt" transform="matrix(.65991 -.31889 .33131 .68122 -28.43 314.05)"/> + <path id="path2193" d="m419.8 510.86v-3.855h1.985c0.4 0 0.703 0.035 0.911 0.105 0.208 0.068 0.373 0.19 0.498 0.365 0.124 0.175 0.186 0.369 0.186 0.581 0 0.274-0.103 0.504-0.308 0.692-0.206 0.188-0.524 0.307-0.953 0.357 0.156 0.065 0.275 0.13 0.357 0.192 0.173 0.137 0.337 0.308 0.492 0.513l0.779 1.05h-0.746l-0.593-0.802c-0.173-0.232-0.315-0.409-0.427-0.532s-0.213-0.208-0.302-0.257c-0.088-0.05-0.178-0.084-0.269-0.103-0.067-0.012-0.177-0.018-0.33-0.018h-0.688v1.712h-0.592zm0.592-2.154h1.275c0.27 0 0.482-0.024 0.635-0.071 0.152-0.049 0.269-0.127 0.348-0.232 0.08-0.106 0.119-0.222 0.119-0.347 0-0.182-0.078-0.332-0.232-0.449-0.153-0.118-0.395-0.177-0.727-0.177h-1.418v1.276z" stroke-width="1pt" transform="matrix(.70851 -.18757 .19571 .7318 19.664 232.01)"/> + <path id="path2196" d="m427.64 510.86 1.72-3.855h0.638l1.833 3.855h-0.675l-0.522-1.168h-1.873l-0.491 1.168h-0.63zm1.292-1.584h1.518l-0.467-1.067c-0.143-0.324-0.248-0.591-0.318-0.8-0.057 0.248-0.137 0.493-0.241 0.737l-0.492 1.13z" stroke-width="1pt" transform="matrix(.67948 -.27472 .28571 .70157 -13.761 284.59)"/> + <path id="path2200" d="m411.43 510.86v-3.855h1.68c0.342 0 0.616 0.039 0.822 0.118 0.208 0.077 0.369 0.197 0.486 0.36 0.117 0.161 0.177 0.331 0.177 0.508 0 0.164-0.052 0.32-0.156 0.465s-0.261 0.263-0.471 0.352c0.271 0.069 0.479 0.185 0.624 0.35 0.146 0.165 0.22 0.359 0.22 0.584 0 0.181-0.045 0.349-0.135 0.505-0.087 0.154-0.196 0.273-0.327 0.357-0.13 0.085-0.294 0.148-0.492 0.192-0.195 0.043-0.435 0.064-0.72 0.064h-1.708zm0.593-2.236h0.968c0.262 0 0.451-0.015 0.565-0.044 0.15-0.039 0.264-0.103 0.339-0.192 0.077-0.09 0.116-0.202 0.116-0.337 0-0.128-0.036-0.24-0.107-0.336-0.071-0.099-0.173-0.165-0.305-0.2-0.132-0.037-0.36-0.056-0.681-0.056h-0.895v1.165zm0 1.781h1.115c0.191 0 0.326-0.007 0.403-0.019 0.136-0.021 0.25-0.056 0.342-0.105 0.091-0.049 0.167-0.12 0.226-0.213 0.059-0.095 0.089-0.203 0.089-0.326 0-0.144-0.043-0.268-0.129-0.374-0.085-0.107-0.205-0.181-0.357-0.223-0.151-0.044-0.369-0.066-0.654-0.066h-1.035v1.326z" stroke-width="1pt" transform="matrix(.71694 -.15221 .15919 .74060 34.549 212.93)"/> + </g> + <g id="g2330" transform="matrix(1.1675 0 0 1.1402 -70.15 -680.7)" stroke="#000" fill="#ffc200"> + <path id="path2224" d="m658.63 787.09v-8.59h1.136v7.577h4.231v1.013h-5.367z" transform="matrix(-.92759 .37361 -.37361 -.92759 1345.6 1359.3)" stroke-width=".23547"/> + <path id="path2229" d="m636.87 787.09v-7.576h-2.83v-1.014h6.809v1.014h-2.842v7.576h-1.137z" transform="matrix(-.69841 .71570 -.71570 -.69841 1465.5 957.27)" stroke-width=".23547"/> + <path id="path2230" d="m626 787.09v-8.59h1.166l4.512 6.745v-6.745h1.089v8.59h-1.166l-4.511-6.75v6.75h-1.09z" transform="matrix(-.71790 .69615 -.69615 -.71790 1462.1 984.87)" stroke-width=".23547"/> + <path id="path2231" d="m618.03 787.09v-8.59h6.211v1.014h-5.074v2.631h4.752v1.008h-4.752v2.924h5.273v1.013h-6.41z" transform="matrix(-.53863 .84254 -.84254 -.53863 1463.9 752.4)" stroke-width=".23547"/> + <path id="path2232" d="m615.47 784.08 1.136 0.287c-0.238 0.933-0.668 1.646-1.289 2.138-0.617 0.489-1.373 0.733-2.267 0.733-0.926 0-1.68-0.188-2.262-0.563-0.578-0.379-1.02-0.926-1.324-1.64-0.301-0.715-0.451-1.483-0.451-2.303 0-0.895 0.169-1.674 0.509-2.338 0.344-0.668 0.83-1.174 1.459-1.518 0.633-0.347 1.328-0.521 2.086-0.521 0.86 0 1.582 0.219 2.168 0.656 0.586 0.438 0.994 1.053 1.225 1.846l-1.119 0.264c-0.2-0.625-0.489-1.081-0.868-1.366-0.378-0.285-0.855-0.427-1.429-0.427-0.66 0-1.213 0.158-1.658 0.474-0.442 0.317-0.752 0.742-0.932 1.278-0.18 0.531-0.27 1.08-0.27 1.646 0 0.731 0.106 1.369 0.317 1.916 0.215 0.543 0.547 0.949 0.996 1.219 0.449 0.269 0.935 0.404 1.459 0.404 0.637 0 1.176-0.183 1.617-0.551 0.441-0.367 0.74-0.912 0.897-1.634z" transform="matrix(-.53863 .84254 -.84254 -.53863 1463.9 752.4)" stroke-width=".23547"/> + <path id="path2235" d="m595.47 784.08 1.136 0.287c-0.238 0.933-0.668 1.646-1.289 2.138-0.617 0.489-1.373 0.733-2.267 0.733-0.926 0-1.68-0.188-2.262-0.563-0.578-0.379-1.02-0.926-1.324-1.64-0.301-0.715-0.451-1.483-0.451-2.303 0-0.895 0.17-1.674 0.509-2.338 0.344-0.668 0.83-1.174 1.459-1.518 0.633-0.347 1.329-0.521 2.086-0.521 0.86 0 1.582 0.219 2.168 0.656 0.586 0.438 0.994 1.053 1.225 1.846l-1.119 0.264c-0.199-0.625-0.489-1.081-0.867-1.366-0.379-0.285-0.856-0.427-1.43-0.427-0.66 0-1.213 0.158-1.658 0.474-0.442 0.317-0.752 0.742-0.932 1.278-0.18 0.531-0.269 1.08-0.269 1.646 0 0.731 0.105 1.369 0.316 1.916 0.215 0.543 0.547 0.949 0.996 1.219 0.449 0.269 0.936 0.404 1.459 0.404 0.637 0 1.176-0.183 1.617-0.551 0.442-0.367 0.74-0.912 0.897-1.634z" transform="matrix(.041044 .99916 -.99916 .041044 1238.1 197.35)" stroke-width=".23547"/> + <path id="path2236" d="m586.2 787.09v-8.59h1.137v8.59h-1.137z" transform="matrix(.062568 .99804 -.99804 .062568 1225.2 180.85)" stroke-width=".23547"/> + <path id="path2239" d="m569.36 787.09v-8.59h6.211v1.014h-5.074v2.631h4.752v1.008h-4.752v2.924h5.273v1.013h-6.41z" transform="matrix(.27892 .96031 -.96031 .27892 1069.5 30.595)" stroke-width=".23547"/> + <path id="path2240" d="m559.31 787.09v-8.59h1.711l2.033 6.082c0.187 0.567 0.324 0.991 0.41 1.272 0.098-0.313 0.25-0.772 0.457-1.377l2.057-5.977h1.529v8.59h-1.096v-7.189l-2.496 7.189h-1.025l-2.485-7.312v7.312h-1.095z" transform="matrix(.39832 .91725 -.91725 .39832 967.25 -38.512)" stroke-width=".23547"/> + <path id="path2245" d="m533.28 787.09v-8.59h1.137v7.577h4.23v1.013h-5.367z" transform="matrix(.82363 .56713 -.56713 .82363 456.04 -183.4)" stroke-width=".23547"/> + <path id="path2246" d="m521.31 787.09v-8.59h1.166l4.512 6.745v-6.745h1.09v8.59h-1.166l-4.512-6.75v6.75h-1.09z" transform="matrix(.90738 .42032 -.42032 .90738 296.41 -171.77)" stroke-width=".23547"/> + <path id="path2247" d="m513.34 787.09v-8.59h6.211v1.014h-5.075v2.631h4.752v1.008h-4.752v2.924h5.274v1.013h-6.41z" transform="matrix(.92620 .37704 -.37704 .92620 252.81 -164.15)" stroke-width=".23547"/> + <path id="path2256" d="m469.77 787.09-3.328-8.59h1.231l2.232 6.241c0.18 0.5 0.33 0.968 0.451 1.406 0.133-0.469 0.288-0.938 0.463-1.406l2.321-6.241h1.16l-3.363 8.59h-1.167z" transform="matrix(.95764 -.28798 .28798 .95764 -289.63 143.26)" stroke-width=".23547"/> + <path id="path2257" d="m460.59 787.09v-8.59h1.136v7.577h4.231v1.013h-5.367z" transform="matrix(.87182 -.48983 .48983 .87182 -407.38 304.93)" stroke-width=".23547"/> + <path id="path2260" d="m444.24 784.33 1.072-0.094c0.051 0.429 0.168 0.783 0.352 1.06 0.187 0.274 0.476 0.496 0.867 0.668 0.391 0.168 0.83 0.252 1.318 0.252 0.434 0 0.817-0.064 1.149-0.193s0.578-0.305 0.738-0.527c0.164-0.227 0.246-0.473 0.246-0.739 0-0.269-0.078-0.504-0.234-0.703-0.156-0.203-0.414-0.373-0.774-0.51-0.23-0.089-0.74-0.228-1.529-0.416-0.789-0.191-1.342-0.371-1.658-0.539-0.41-0.215-0.717-0.48-0.92-0.797-0.199-0.32-0.299-0.677-0.299-1.072 0-0.433 0.123-0.838 0.369-1.213 0.246-0.379 0.606-0.666 1.078-0.861 0.473-0.195 0.998-0.293 1.577-0.293 0.636 0 1.197 0.103 1.681 0.31 0.489 0.204 0.864 0.504 1.125 0.903 0.262 0.398 0.403 0.849 0.422 1.353l-1.09 0.082c-0.058-0.543-0.258-0.953-0.597-1.23-0.336-0.277-0.834-0.416-1.495-0.416-0.687 0-1.189 0.127-1.505 0.381-0.313 0.25-0.469 0.552-0.469 0.908 0 0.309 0.111 0.562 0.334 0.762 0.219 0.199 0.789 0.404 1.711 0.615 0.926 0.207 1.56 0.389 1.904 0.545 0.5 0.23 0.869 0.523 1.108 0.879 0.238 0.351 0.357 0.758 0.357 1.218 0 0.458-0.131 0.889-0.393 1.295-0.261 0.403-0.638 0.717-1.13 0.944-0.489 0.222-1.04 0.334-1.653 0.334-0.777 0-1.43-0.114-1.957-0.34-0.523-0.227-0.935-0.566-1.236-1.02-0.297-0.457-0.453-0.972-0.469-1.546z" transform="matrix(.74566 -.66632 .66632 .74566 -488.97 485.31)" stroke-width=".23547"/> + <path id="path2261" d="m434.58 787.09v-8.59h1.137v7.577h4.23v1.013h-5.367z" transform="matrix(.58768 -.80910 .80910 .58768 -533.1 675.4)" stroke-width=".23547"/> + <path id="path2262" d="m426.64 787.09v-8.59h6.211v1.014h-5.074v2.631h4.752v1.008h-4.752v2.924h5.274v1.013h-6.411z" transform="matrix(.48391 -.87512 .87512 .48391 -539.99 786.15)" stroke-width=".23547"/> + <path id="path2263" d="m415.31 787.09v-8.59h6.211v1.014h-5.075v2.631h4.752v1.008h-4.752v2.924h5.274v1.013h-6.41z" transform="matrix(.21602 -.97639 .97639 .21602 -506.6 1042.6)" stroke-width=".23547"/> + <path id="path2268" d="m392.74 784.08 1.137 0.287c-0.238 0.933-0.668 1.646-1.289 2.138-0.617 0.489-1.373 0.733-2.268 0.733-0.926 0-1.679-0.188-2.261-0.563-0.579-0.379-1.02-0.926-1.325-1.64-0.3-0.715-0.451-1.483-0.451-2.303 0-0.895 0.17-1.674 0.51-2.338 0.344-0.668 0.83-1.174 1.459-1.518 0.633-0.347 1.328-0.521 2.086-0.521 0.859 0 1.582 0.219 2.168 0.656 0.586 0.438 0.994 1.053 1.224 1.846l-1.119 0.264c-0.199-0.625-0.488-1.081-0.867-1.366s-0.855-0.427-1.43-0.427c-0.66 0-1.213 0.158-1.658 0.474-0.441 0.317-0.752 0.742-0.931 1.278-0.18 0.531-0.27 1.08-0.27 1.646 0 0.731 0.105 1.369 0.316 1.916 0.215 0.543 0.547 0.949 0.996 1.219 0.45 0.269 0.936 0.404 1.459 0.404 0.637 0 1.176-0.183 1.618-0.551 0.441-0.367 0.74-0.912 0.896-1.634z" transform="matrix(-.30592 -.95206 .95206 -.30592 -277.14 1448.5)" stroke-width=".23547"/> + <path id="path2269" d="m383.47 787.09v-8.59h1.136v8.59h-1.136z" transform="matrix(-.44366 -.89619 .89619 -.44366 -179.9 1535.7)" stroke-width=".23547"/> + <path id="path2270" d="m376.56 787.09v-8.59h1.136v7.577h4.231v1.013h-5.367z" transform="matrix(-.39402 -.91910 .91910 -.39402 -216.93 1504.8)" stroke-width=".23547"/> + <path id="path2274" d="m365.57 778.5h1.137v4.963c0 0.864-0.098 1.549-0.293 2.057s-0.549 0.922-1.061 1.242c-0.507 0.317-1.175 0.475-2.003 0.475-0.805 0-1.463-0.139-1.975-0.416-0.512-0.278-0.877-0.678-1.096-1.201-0.219-0.528-0.328-1.247-0.328-2.157v-4.963h1.137v4.957c0 0.747 0.068 1.297 0.205 1.653 0.141 0.351 0.379 0.623 0.715 0.814 0.34 0.192 0.754 0.287 1.242 0.287 0.836 0 1.432-0.189 1.787-0.568s0.533-1.107 0.533-2.186v-4.957z" transform="matrix(-.64987 -.76005 .76005 -.64987 3.0678 1646.8)" stroke-width=".23547"/> + <path id="path2277" d="m343.95 787.09v-8.59h6.211v1.014h-5.074v2.631h4.752v1.008h-4.752v2.924h5.273v1.013h-6.41z" transform="matrix(-.78432 -.62036 .62036 -.78432 160.13 1701.9)" stroke-width=".23547"/> + <path id="path2282" d="m649.73 787.09 3.299-8.59h1.225l3.515 8.59h-1.295l-1.001-2.601h-3.592l-0.944 2.601h-1.207zm2.479-3.527h2.912l-0.897-2.379c-0.273-0.723-0.476-1.316-0.609-1.781-0.109 0.551-0.264 1.097-0.463 1.64l-0.943 2.52z" transform="matrix(-.85840 .51298 -.51298 -.85840 1410.4 1212.7)" stroke-width=".23547"/> + <path id="path2285" d="m642.03 787.09v-8.59h3.809c0.765 0 1.348 0.079 1.746 0.235 0.398 0.152 0.717 0.424 0.955 0.814 0.238 0.391 0.357 0.823 0.357 1.295 0 0.61-0.197 1.123-0.591 1.541-0.395 0.418-1.004 0.684-1.828 0.797 0.3 0.145 0.529 0.287 0.685 0.428 0.332 0.304 0.647 0.685 0.943 1.142l1.495 2.338h-1.43l-1.137-1.787c-0.332-0.515-0.605-0.91-0.82-1.183-0.215-0.274-0.408-0.465-0.58-0.575-0.168-0.109-0.34-0.185-0.516-0.228-0.129-0.028-0.34-0.041-0.633-0.041h-1.318v3.814h-1.137zm1.137-4.799h2.443c0.52 0 0.926-0.052 1.219-0.158 0.293-0.109 0.516-0.281 0.668-0.515 0.152-0.239 0.229-0.496 0.229-0.774 0-0.406-0.149-0.74-0.446-1.002-0.293-0.261-0.758-0.392-1.394-0.392h-2.719v2.841z" transform="matrix(-.76054 .64929 -.64929 -.76054 1454.5 1047.6)" stroke-width=".23547"/> + <path id="path2288" d="m597.06 787.09 3.299-8.59h1.225l3.515 8.59h-1.294l-1.002-2.601h-3.592l-0.944 2.601h-1.207zm2.479-3.527h2.912l-0.896-2.379c-0.274-0.723-0.477-1.316-0.61-1.781-0.109 0.551-0.263 1.097-0.463 1.64l-0.943 2.52z" transform="matrix(-0.305 .95235 -.95235 -0.305 1407.9 497.69)" stroke-width=".23547"/> + <path id="path2291" d="m577.36 787.09v-8.59h3.809c0.766 0 1.348 0.079 1.746 0.235 0.398 0.152 0.717 0.424 0.955 0.814 0.238 0.391 0.358 0.823 0.358 1.295 0 0.61-0.198 1.123-0.592 1.541-0.395 0.418-1.004 0.684-1.828 0.797 0.3 0.145 0.529 0.287 0.685 0.428 0.332 0.304 0.647 0.685 0.944 1.142l1.494 2.338h-1.43l-1.137-1.787c-0.332-0.515-0.605-0.91-0.82-1.183-0.215-0.274-0.408-0.465-0.58-0.575-0.168-0.109-0.34-0.185-0.516-0.228-0.129-0.028-0.34-0.041-0.633-0.041h-1.318v3.814h-1.137zm1.137-4.799h2.443c0.52 0 0.926-0.052 1.219-0.158 0.293-0.109 0.516-0.281 0.668-0.515 0.152-0.239 0.229-0.496 0.229-0.774 0-0.406-0.149-0.74-0.446-1.002-0.293-0.261-0.757-0.392-1.394-0.392h-2.719v2.841z" transform="matrix(.091323 .99582 -.99582 .091323 1206.1 158.19)" stroke-width=".23547"/> + <path id="path2294" d="m550.39 787.09 3.299-8.59h1.225l3.516 8.59h-1.295l-1.002-2.601h-3.592l-0.943 2.601h-1.208zm2.479-3.527h2.912l-0.896-2.379c-0.274-0.723-0.477-1.316-0.61-1.781-0.109 0.551-0.263 1.097-0.463 1.64l-0.943 2.52z" transform="matrix(.57804 .81601 -.81601 .57804 786.55 -123.64)" stroke-width=".23547"/> + <path id="path2297" d="m539.06 787.09 3.298-8.59h1.225l3.516 8.59h-1.295l-1.002-2.601h-3.592l-0.943 2.601h-1.207zm2.478-3.527h2.912l-0.896-2.379c-0.274-0.723-0.477-1.316-0.61-1.781-0.109 0.551-0.263 1.097-0.463 1.64l-0.943 2.52z" transform="matrix(.73048 .68294 -.68294 .73048 596.94 -172.51)" stroke-width=".23547"/> + <path id="path2300" d="m501.34 787.09v-8.59h3.808c0.766 0 1.348 0.079 1.746 0.235 0.399 0.152 0.717 0.424 0.956 0.814 0.238 0.391 0.357 0.823 0.357 1.295 0 0.61-0.197 1.123-0.592 1.541-0.394 0.418-1.004 0.684-1.828 0.797 0.301 0.145 0.529 0.287 0.686 0.428 0.332 0.304 0.646 0.685 0.943 1.142l1.494 2.338h-1.43l-1.136-1.787c-0.332-0.515-0.606-0.91-0.821-1.183-0.214-0.274-0.408-0.465-0.58-0.575-0.168-0.109-0.34-0.185-0.515-0.228-0.129-0.028-0.34-0.041-0.633-0.041h-1.318v3.814h-1.137zm1.137-4.799h2.443c0.519 0 0.926-0.052 1.219-0.158 0.293-0.109 0.515-0.281 0.668-0.515 0.152-0.239 0.228-0.496 0.228-0.774 0-0.406-0.148-0.74-0.445-1.002-0.293-0.261-0.758-0.392-1.395-0.392h-2.718v2.841z" transform="matrix(.99506 .099294 -.099294 .99506 -4.1174 -77.119)" stroke-width=".23547"/> + <path id="path2303" d="m491.64 782.91c0-1.426 0.382-2.541 1.148-3.346 0.766-0.809 1.754-1.213 2.965-1.213 0.793 0 1.508 0.19 2.144 0.568 0.637 0.379 1.121 0.909 1.453 1.588 0.336 0.676 0.504 1.444 0.504 2.303 0 0.871-0.175 1.65-0.527 2.338-0.352 0.687-0.85 1.209-1.494 1.564-0.645 0.352-1.34 0.528-2.086 0.528-0.809 0-1.531-0.196-2.168-0.586-0.637-0.391-1.119-0.924-1.447-1.6s-0.492-1.39-0.492-2.144zm1.171 0.017c0 1.035 0.278 1.852 0.832 2.449 0.559 0.594 1.258 0.891 2.098 0.891 0.856 0 1.559-0.301 2.109-0.902 0.555-0.602 0.833-1.455 0.833-2.561 0-0.699-0.12-1.308-0.358-1.828-0.234-0.523-0.58-0.928-1.037-1.213-0.453-0.289-0.963-0.433-1.529-0.433-0.805 0-1.498 0.277-2.08 0.832-0.579 0.55-0.868 1.472-0.868 2.765z" transform="matrix(.99506 .099294 -.099294 .99506 -5.0222 -76.774)" stroke-width=".23547"/> + <path id="path2306" d="m483.32 787.09v-8.59h2.959c0.668 0 1.178 0.041 1.53 0.123 0.492 0.114 0.912 0.319 1.259 0.616 0.453 0.383 0.791 0.873 1.014 1.47 0.227 0.594 0.34 1.274 0.34 2.039 0 0.653-0.076 1.231-0.229 1.735-0.152 0.504-0.347 0.922-0.586 1.254-0.238 0.328-0.5 0.588-0.785 0.779-0.281 0.188-0.623 0.33-1.025 0.428-0.399 0.097-0.858 0.146-1.377 0.146h-3.1zm1.137-1.013h1.834c0.566 0 1.01-0.053 1.33-0.159 0.324-0.105 0.582-0.254 0.773-0.445 0.27-0.269 0.479-0.631 0.627-1.084 0.153-0.457 0.229-1.01 0.229-1.658 0-0.899-0.149-1.588-0.445-2.068-0.293-0.485-0.651-0.809-1.073-0.973-0.304-0.117-0.795-0.176-1.47-0.176h-1.805v6.563z" transform="matrix(.98177 -.19006 .19006 .98177 -224.4 76.38)" stroke-width=".23547"/> + <path id="path2309" d="m474.37 787.09 3.299-8.59h1.224l3.516 8.59h-1.295l-1.002-2.601h-3.592l-0.943 2.601h-1.207zm2.478-3.527h2.913l-0.897-2.379c-0.273-0.723-0.476-1.316-0.609-1.781-0.11 0.551-0.264 1.097-0.463 1.64l-0.944 2.52z" transform="matrix(.97410 -.22611 .22611 .97410 -248.74 100.13)" stroke-width=".23547"/> + <path id="path2312" d="m451.69 787.09 3.299-8.59h1.225l3.515 8.59h-1.295l-1.001-2.601h-3.592l-0.944 2.601h-1.207zm2.479-3.527h2.912l-0.897-2.379c-0.273-0.723-0.476-1.316-0.609-1.781-0.109 0.551-0.264 1.097-0.463 1.64l-0.943 2.52z" transform="matrix(.83670 -.54766 .54766 .83670 -436.7 359.63)" stroke-width=".23547"/> + <path id="path2315" d="m406.62 787.09v-8.59h2.959c0.668 0 1.178 0.041 1.529 0.123 0.493 0.114 0.913 0.319 1.26 0.616 0.453 0.383 0.791 0.873 1.014 1.47 0.226 0.594 0.34 1.274 0.34 2.039 0 0.653-0.076 1.231-0.229 1.735-0.152 0.504-0.347 0.922-0.586 1.254-0.238 0.328-0.5 0.588-0.785 0.779-0.281 0.188-0.623 0.33-1.025 0.428-0.399 0.097-0.858 0.146-1.377 0.146h-3.1zm1.137-1.013h1.834c0.566 0 1.01-0.053 1.33-0.159 0.324-0.105 0.582-0.254 0.773-0.445 0.27-0.269 0.479-0.631 0.627-1.084 0.153-0.457 0.229-1.01 0.229-1.658 0-0.899-0.149-1.588-0.445-2.068-0.293-0.485-0.651-0.809-1.073-0.973-0.304-0.117-0.795-0.176-1.47-0.176h-1.805v6.563z" transform="matrix(.092183 -.99574 .99574 .092183 -470.32 1147.6)" stroke-width=".23547"/> + <path id="path2318" d="m394.34 787.09 3.299-8.59h1.224l3.516 8.59h-1.295l-1.002-2.601h-3.592l-0.943 2.601h-1.207zm2.478-3.527h2.913l-0.897-2.379c-0.273-0.723-0.477-1.316-0.609-1.781-0.11 0.551-0.264 1.097-0.463 1.64l-0.944 2.52z" transform="matrix(-.074652 -.99721 .99721 -.074652 -403.83 1284.4)" stroke-width=".23547"/> + <path id="path2322" d="m368.55 787.09v-8.59h3.222c0.657 0 1.182 0.088 1.576 0.264 0.399 0.172 0.709 0.44 0.932 0.803 0.227 0.359 0.34 0.736 0.34 1.131 0 0.367-0.1 0.713-0.299 1.037s-0.5 0.586-0.902 0.785c0.519 0.152 0.918 0.412 1.195 0.779 0.281 0.367 0.422 0.801 0.422 1.301 0 0.402-0.086 0.777-0.258 1.125-0.168 0.344-0.377 0.609-0.627 0.797-0.25 0.187-0.564 0.33-0.943 0.428-0.375 0.093-0.836 0.14-1.383 0.14h-3.275zm1.136-4.98h1.858c0.504 0 0.865-0.033 1.084-0.1 0.289-0.086 0.506-0.228 0.65-0.428 0.149-0.199 0.223-0.449 0.223-0.75 0-0.285-0.069-0.535-0.205-0.75-0.137-0.218-0.332-0.367-0.586-0.445-0.254-0.082-0.69-0.123-1.307-0.123h-1.717v2.596zm0 3.967h2.139c0.367 0 0.625-0.014 0.773-0.041 0.262-0.047 0.481-0.125 0.657-0.235 0.176-0.109 0.32-0.267 0.433-0.474 0.114-0.211 0.17-0.454 0.17-0.727 0-0.32-0.082-0.598-0.246-0.832-0.164-0.238-0.392-0.404-0.685-0.498-0.289-0.098-0.707-0.147-1.254-0.147h-1.987v2.954z" transform="matrix(-.57221 -.82010 .82010 -.57221 -72.284 1607.9)" stroke-width=".23547"/> + <path id="path2325" d="m351.93 787.09v-8.59h3.24c0.57 0 1.006 0.028 1.306 0.082 0.422 0.071 0.776 0.206 1.061 0.405 0.285 0.195 0.514 0.47 0.686 0.826 0.175 0.355 0.263 0.746 0.263 1.172 0 0.73-0.232 1.349-0.697 1.857-0.465 0.504-1.305 0.756-2.52 0.756h-2.203v3.492h-1.136zm1.136-4.506h2.221c0.734 0 1.256-0.136 1.564-0.41 0.309-0.273 0.463-0.658 0.463-1.154 0-0.359-0.091-0.666-0.275-0.92-0.18-0.258-0.418-0.428-0.715-0.51-0.191-0.051-0.545-0.076-1.06-0.076h-2.198v3.07z" transform="matrix(-.74471 -.66739 .66739 -.74471 109.09 1687.7)" stroke-width=".23547"/> + <path id="path2328" d="m335.28 787.09v-8.59h3.809c0.765 0 1.348 0.079 1.746 0.235 0.398 0.152 0.717 0.424 0.955 0.814 0.238 0.391 0.357 0.823 0.357 1.295 0 0.61-0.197 1.123-0.591 1.541-0.395 0.418-1.004 0.684-1.828 0.797 0.3 0.145 0.529 0.287 0.685 0.428 0.332 0.304 0.647 0.685 0.943 1.142l1.495 2.338h-1.43l-1.137-1.787c-0.332-0.515-0.605-0.91-0.82-1.183-0.215-0.274-0.408-0.465-0.58-0.575-0.168-0.109-0.34-0.185-0.516-0.228-0.129-0.028-0.34-0.041-0.633-0.041h-1.318v3.814h-1.137zm1.137-4.799h2.443c0.52 0 0.926-0.052 1.219-0.158 0.293-0.109 0.516-0.281 0.668-0.515 0.152-0.239 0.229-0.496 0.229-0.774 0-0.406-0.149-0.74-0.446-1.002-0.293-0.261-0.758-0.392-1.394-0.392h-2.719v2.841z" transform="matrix(-.85581 -.51728 .51728 -.85581 265.87 1722.7)" stroke-width=".23547"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/sx.svg b/s/flag/sx.svg new file mode 100755 index 0000000..4935839 --- /dev/null +++ b/s/flag/sx.svg @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata95"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs4"> + <clipPath id="clipPath5650" clipPathUnits="userSpaceOnUse"> + <rect id="rect5652" fill-opacity="0.67" height="512" width="682.67" y="-.000010461" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath5650)" transform="matrix(.93750 0 0 .93750 0 .0000098075)"> + <path id="path2160" d="m0-0.00001h768v256h-426.67l-341.33-256z" fill-rule="evenodd" fill="#ed2939"/> + <path id="path3134" d="m0 512h768v-256h-426.67l-341.33 256z" fill-rule="evenodd" fill="#002395"/> + <path id="path3136" d="m0-0.00001 341.33 256l-341.33 256v-512z" fill-rule="evenodd" fill="#fff"/> + <g id="g2425" transform="matrix(1.1464 0 0 1.1461 -260.07 -773.12)"> + <path id="path182" fill="#ff0" d="m377.17 843.11 0.0913-3.4582s-1.8566-2.9578 0.29828-6.136c0 0-4.5777-2.4222-3.5124-6.2152 0 0-4.1394-1.0586-3.835-5.6125 0 0-4.4681-0.30984-4.9308-4.1144 0 0-4.4681 0.73596-6.4343-2.9712 0 0-4.3585 0.85223-5.5882-2.2036 0 0-4.2368 1.4677-6.7509-2.1245 0 0-4.4742 1.8079-6.3491-1.5827-1.8506 3.3791-6.3248 1.5827-6.3248 1.5827-2.4836 3.5794-6.7509 2.094-6.7509 2.094-1.187 3.068-5.5334 2.1975-5.5334 2.1975-1.9601 3.7078-6.4221 2.9706-6.4221 2.9706-0.43829 3.793-4.9003 4.1029-4.9003 4.1029 0.35307 4.5655-3.7802 5.601-3.7802 5.601 1.0896 3.7924-3.482 6.2085-3.482 6.2085 2.2097 3.1965 0.37133 6.1306 0.37133 6.1306l-0.10348 3.1892 73.949 0.3415"/> + <path id="path184" d="m377.17 843.11 0.0913-3.4582s-1.8566-2.9578 0.29828-6.136c0 0-4.5777-2.4222-3.5124-6.2152 0 0-4.1394-1.0586-3.835-5.6125 0 0-4.4681-0.30984-4.9308-4.1144 0 0-4.4681 0.73596-6.4343-2.9712 0 0-4.3585 0.85223-5.5882-2.2036 0 0-4.2368 1.4677-6.7509-2.1245 0 0-4.4742 1.8079-6.3491-1.5827-1.8506 3.3791-6.3248 1.5827-6.3248 1.5827-2.4836 3.5794-6.7509 2.094-6.7509 2.094-1.187 3.068-5.5334 2.1975-5.5334 2.1975-1.9601 3.7078-6.4221 2.9706-6.4221 2.9706-0.43829 3.793-4.9003 4.1029-4.9003 4.1029 0.35307 4.5655-3.7802 5.601-3.7802 5.601 1.0896 3.7924-3.482 6.2085-3.482 6.2085 2.2097 3.1965 0.37133 6.1306 0.37133 6.1306l-0.10348 3.1892 73.949 0.3415h-0.0122z" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path186" fill="#f00" d="m375.45 838.79c-11.615-1.1627-24.989-3.9202-35.313 1.8938-6.9213-4.0791-16.558-3.8296-24.763-3.0315-4.4559 0.79744-9.6971 0.79744-14.354 1.5584l-0.73049 0.10287c-8.4492 0.56065-16.113-1.9358-23.455-5.2168 2.3315 13.234 4.9186 26.797 6.1908 40.652 2.7698 20.52-9.7093 37.748-4.5899 58.019 3.0558 9.727 13.751 15.382 23.54 16.503 9.478 0.55943 19.285 2.1123 28.057 4.017 1.6679 0.34698 3.6463 1.1207 4.7968 1.6192 2.4167 1.0105 4.1881 2.4964 5.7404 4.0852 5.296-5.5157 13.057-7.0498 20.715-7.8594 13.8-1.6132 30.814-0.73596 39.263-13.239v-0.70675c4.5899-6.9152 3.9811-17.464 1.9906-25.299-0.13392-2.7332-0.8644-5.1438-1.2601-7.7486-8.431-22.268-1.2114-47.311 2.4167-69.756-4.4316 2.4228-9.3745 3.5672-14.305 4.7792-3.9324 0.52351-8.3153 0.2861-12.296 0.0724l-1.6497-0.44438"/> + <path id="path188" fill="#80cfe1" d="m392.79 902.7c-0.0548 1.4664 0.73657 2.6176 1.0227 3.9744 1.6132 9.7337 3.1715 22.627-6.8483 28.666-11.085 7.0485-25.622 4.0298-38.448 7.7608-2.5628 0.71222-6.0934 3.0686-7.8953 4.736-1.1566-0.76092-2.3193-1.9297-3.8107-2.617-10.555-5.6125-24.276-3.7322-36.189-6.7637-5.9839-1.8926-12.223-6.5555-13.739-12.68-3.8959-16.07 5.436-29.767 4.3342-45.709-0.71222-12.175-2.7576-23.862-5.5699-35.276 9.3136 4.3397 20.094 5.0641 30.565 2.9828 7.7553-1.0842 16.783-1.1079 24.051 2.1732 4.0055-1.7233 8.6927-2.4964 13.009-2.9712 8.2058 0.79805 17.026 2.2828 25.476 2.2225 5.643-0.2928 10.769-1.9242 15.675-4.0974-2.9098 18.865-8.4979 38.625-1.6375 57.599"/> + <path id="path190" fill="#fff" d="m376.04 906.46-0.0913-17.739h2.1854l-27.113-17.513-0.0487-9.1006h2.6176l-13.557-9.7087-13.49 9.7032h2.6115l0.0487 9.0939-26.967 17.49 2.1549 0.0116 0.0913 17.727 71.551 0.0487"/> + <path id="path192" d="m376.04 906.46-0.0913-17.739h2.1854l-27.113-17.513-0.0487-9.1006h2.6176l-13.557-9.7087-13.49 9.7032h2.6115l0.0487 9.0939-26.967 17.49 2.1549 0.0116 0.0913 17.727 71.551 0.0487 0.006-0.0128z" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path198" fill="#fff" d="m384.38 929.76 0.006 5.551-87.347-0.0974-0.0365-5.5273 87.384 0.0737"/> + <path id="path200" d="m384.38 929.76 0.006 5.551-87.347-0.0974-0.0365-5.5273 87.384 0.0737h-0.006z" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path202" fill="#fff" d="m302.84 929.43-0.0731-18.786 3.5365-0.007-0.19457 19.005 0.21297-18.852-5.095-0.14605v-4.0304l78.064 0.0858 0.0365 3.9933h-4.8151l0.0913 19.023-0.17044-19.023h3.5854l0.0791 18.809"/> + <path id="path204" d="m302.84 929.43-0.0731-18.786 3.5365-0.007-0.19457 19.005 0.21297-18.852-5.095-0.14605v-4.0304l78.064 0.0858 0.0365 3.9933h-4.8151l0.0913 19.023-0.17044-19.023h3.5854l0.0791 18.809" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path206" d="m319.62 924.8-0.0548-13.1h-10.482l0.0609 13.087 10.476 0.0128" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path208" d="m311.94 914.43 0.0304 7.6092h4.7968l-0.0243-7.6092h-4.8029" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path210" d="m370.86 924.84-0.0609-13.087-10.446-0.0122 0.0487 13.099h10.458" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path212" d="m363.18 914.48 0.0548 7.5848h4.7907l-0.0426-7.5848h-4.8029" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path214" d="m370.78 903.51-0.0609-13.101h-10.458l0.0365 13.101h10.488-0.006z" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path216" d="m363.1 893.16 0.0304 7.597h4.7907l-0.006-7.597h-4.8151" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path218" d="m319.53 903.46-0.073-13.076-10.464-0.0128 0.0487 13.082h10.488v0.007z" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path220" d="m311.85 893.11 0.0243 7.5854 4.8029 0.0116-0.0365-7.597h-4.7907" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path222" d="m338.5 903.48-0.0487-13.076-10.47-0.0116 0.0426 13.087h10.476" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path224" d="m330.83 893.13 0.0243 7.5848 4.7968 0.0244-0.0304-7.6092h-4.7908" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path226" d="m353.12 903.51-0.0731-13.101-10.464-0.0116 0.0487 13.087 10.488 0.025" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path228" d="m345.44 893.14 0.0365 7.6092h4.7968l-0.0243-7.6092h-4.809" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path230" fill="#fff" d="m355.72 899.49 0.11566 30.199-30.333-0.0487-0.10957-30.174 30.321 0.0237"/> + <path id="path232" d="m355.72 899.49 0.11566 30.199-30.333-0.0487-0.10957-30.174 30.321 0.0237h0.006z" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path234" d="m325.21 908.11 30.54 0.0244" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path236" d="m329.02 929.68-0.10348-21.342" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path238" d="m352.14 929.69-0.10349-21.329" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path240" d="m366.79 886.63-17.081-12.474-19.193-0.0243-16.947 12.449 53.222 0.0487" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path242" d="m331.99 863.8 0.0304 7.6092 16.144 0.0122-0.0304-7.6092-16.144-0.0122" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path244" d="m336.37 865.69 0.0244 3.7918h7.4144l-0.0243-3.7918h-7.4144" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path246" d="m340.04 855.14 8.9788 6.3485-17.891-0.0237 8.9119-6.3248" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path248" fill="#fff" d="m376.34 850.84c2.5506-0.0609 3.208 10.507 3.2141 15.742 2.1914 0.61482 7.0491 3.6713 9.198 6.4343l-24.642-0.0365c2.1184-2.7265 6.9396-5.7952 9.1128-6.4094 0-5.2418 0.53569-15.803 3.1167-15.742"/> + <path id="path250" d="m376.34 850.84c2.5506-0.0609 3.208 10.507 3.2141 15.742 2.1914 0.61482 7.0491 3.6713 9.198 6.4343l-24.642-0.0365c2.1184-2.7265 6.9396-5.7952 9.1128-6.4094 0-5.2418 0.53569-15.803 3.1167-15.742" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path252" d="m326.81 900.33h2.2097l-0.64526 1.1864s1.0653 1.3703 0.0183 2.9402l0.57829 1.0902h-2.1306l0.5783-1.0355s-1.0896-1.8195 0.0487-2.995l-0.65744-1.1864" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path254" d="m331.31 900.33h2.2097l-0.63917 1.1864s1.0653 1.3337 0.006 2.9402l0.57221 1.0902h-2.1245l0.57221-1.0355s-1.0653-1.8195 0.0548-2.995l-0.65135-1.1864" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path256" d="m336.23 900.33h2.2036l-0.65743 1.1864s1.0775 1.3703 0.0183 2.9402l0.5783 1.114-2.1123-0.0237 0.56612-1.0355s-1.0775-1.8079 0.0426-2.995l-0.64526-1.1864h0.006z" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path258" d="m341.77 900.35h2.2219l-0.65135 1.1992s1.0653 1.3459 0.006 2.9219l0.59656 1.1079h-2.1428l0.57221-1.0348s-1.0653-1.8323 0.0731-2.995l-0.66961-1.1992h-0.006z" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path260" d="m346.7 900.35h2.2036l-0.65135 1.1992s1.0714 1.3459 0.0122 2.9158l0.58438 1.114h-2.1245l0.55395-1.0348s-1.0714-1.8201 0.0852-2.995l-0.66352-1.1992" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path262" d="m351.6 900.36 2.2036-0.0122-0.65134 1.1992s1.0896 1.3459 0.0304 2.9219l0.55395 1.1079h-2.1306l0.57221-1.0348s-1.0653-1.8201 0.073-2.995l-0.65135-1.187" stroke="#000" stroke-width="1.2418" fill="none"/> + <path id="path264" fill="#ff0" d="m340.7 968.4c11.359 0.0365 25.329-2.2828 31.873-5.6667l14.372-1.2729 0.2861 17.538c-12.175 6.7137-40.286 8.1564-46.471 8.1077-6.1908 0.0487-34.649-1.4177-46.879-8.1564l0.15827-17.55 14.403 1.2966c6.5439 3.3669 20.94 5.7038 32.287 5.7038h-0.0304"/> + <path id="path266" d="m340.7 968.4c11.359 0.0365 25.329-2.2828 31.873-5.6667l14.372-1.2729 0.2861 17.538c-12.175 6.7137-40.286 8.1564-46.471 8.1077-6.1908 0.0487-34.649-1.4177-46.879-8.1564l0.15827-17.55 14.403 1.2966c6.5439 3.3669 20.94 5.7038 32.287 5.7038h-0.0304" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path268" fill="#ff0" d="m256.88 893.59 12.662 4.0298-3.829 20.503-11.986 1.8621s-2.021-10.781 3.1532-26.407"/> + <path id="path270" d="m256.88 893.59 12.662 4.0298-3.829 20.503-11.986 1.8621s-2.021-10.781 3.1532-26.407v0.0122z" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path272" fill="#7e7e7e" d="m265.71 917.9-11.98 2.088 7.5788-10.781 4.4012 8.6927"/> + <path id="path274" d="m265.71 917.9-11.98 2.088 7.5788-10.781 4.4012 8.6927" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path276" fill="#ff0" d="m249.31 908.36 12.205 0.88206c0.27394 10.343 1.5279 49.813 48.656 51.956l-1.467 14.36c-57.367 0.59595-61.726-48.413-59.394-67.198"/> + <path id="path278" d="m249.31 908.36 12.205 0.88206c0.27394 10.343 1.5279 49.813 48.656 51.956l-1.467 14.36c-57.367 0.59595-61.726-48.413-59.394-67.198z" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path280" d="m294.11 978.5 14.384-3.1411" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path282" fill="#ff0" d="m423.52 893.74-12.613 3.9933 3.9994 20.472 12.01 1.9291s1.9297-10.774-3.3967-26.406"/> + <path id="path284" d="m423.52 893.74-12.613 3.9933 3.9994 20.472 12.01 1.9291s1.9297-10.774-3.3967-26.406v0.0116z" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path286" fill="#7e7e7e" d="m414.9 917.99 12.01 2.1549-7.6822-10.786-4.3281 8.6312"/> + <path id="path288" d="m414.9 917.99 12.01 2.1549-7.6822-10.786-4.3281 8.6312" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path290" fill="#ff0" d="m431.23 908.52-12.223 0.83458c-0.17654 10.33-1.0775 49.818-48.206 51.912l1.601 14.348c57.355 0.66291 61.3-48.322 58.828-67.101"/> + <path id="path292" d="m431.23 908.52-12.223 0.83458c-0.17654 10.33-1.0775 49.818-48.206 51.912l1.601 14.348c57.355 0.66291 61.3-48.322 58.828-67.101v0.005z" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path294" d="m387.04 978.57-14.42-3.15" stroke="#000" stroke-width=".28933" fill="none"/> + <path id="path296" fill="#009fc5" d="m333.07 977.04c-0.32263 0.20697-0.76092 0.26237-1.2662 0.23741l-2.2767-0.11566 0.19479-2.8422 2.2584 0.12113c0.44438 0.0304 0.79744 0.11627 1.0166 0.24959 0.45655 0.2374 0.65743 0.6763 0.61482 1.2844-0.0304 0.52351-0.21306 0.86501-0.54786 1.0653m-3.8229 4.4748 0.22524-3.4643 2.6541 0.18323c0.85832 0.067 1.4975-0.15827 1.9297-0.59717 0.45046-0.42611 0.68178-0.98554 0.71222-1.6186 0.0548-0.73718-0.13392-1.3398-0.57221-1.7842-0.42003-0.42611-1.0166-0.65134-1.7653-0.72378l-3.7924-0.23741-0.52351 8.1564 1.1262 0.0737"/> + <path id="path298" fill="#009fc5" d="m337.5 974.69 2.7758 0.0304c0.40176 0.0365 0.71831 0.0852 0.94962 0.1948 0.42612 0.20088 0.627 0.60265 0.627 1.187 0 0.54847-0.15827 0.91371-0.46872 1.1329-0.29828 0.20027-0.73049 0.29158-1.2479 0.29158l-2.6663-0.0304 0.0243-2.8063m-0.0426 7.2257 0.0243-3.482 2.6054 0.0371c0.46264 0 0.80353 0.0359 1.0409 0.15157 0.3835 0.17654 0.57221 0.54847 0.59047 1.0592l0.067 1.3696c0.0183 0.32872 0.0244 0.53021 0.0426 0.66353 0.0365 0.0974 0.0548 0.20088 0.10349 0.27453h1.4001l-0.0243-0.17714c-0.15827-0.0852-0.28611-0.24897-0.34089-0.49916-0.0487-0.15827-0.0731-0.39568-0.0852-0.69396l-0.0243-1.0896c-0.0183-0.49308-0.10349-0.83336-0.2922-1.0227-0.16435-0.21914-0.38959-0.40785-0.73657-0.52351 0.3896-0.20636 0.68179-0.44377 0.89484-0.73657 0.20089-0.32263 0.30437-0.73048 0.30437-1.229 0-0.93746-0.3835-1.5772-1.1627-1.9236-0.42003-0.1887-0.95571-0.28671-1.5888-0.29828l-3.9142-0.0371-0.0304 8.1814h1.1262"/> + <path id="path300" fill="#009fc5" d="m346.14 980.21c-0.49916-0.60812-0.767-1.369-0.82787-2.27-0.0548-1.1328 0.16435-1.9966 0.68178-2.5816 0.52351-0.63309 1.1992-0.93685 2.0819-0.98554 0.88875-0.0487 1.6192 0.2374 2.161 0.79683 0.55395 0.54847 0.87049 1.3094 0.92528 2.259 0.0304 0.9125-0.12784 1.7221-0.54786 2.4343-0.41394 0.72501-1.1018 1.1329-2.1184 1.1566-1.0592 0.0554-1.8506-0.19419-2.3558-0.80962m-1.3392-5.1499c-0.52351 0.80961-0.73657 1.7471-0.68179 2.8799 0.0791 1.223 0.45656 2.2341 1.1688 2.995 0.79135 0.76091 1.8384 1.1438 3.1289 1.0708 1.3818-0.0609 2.4228-0.58438 3.1289-1.5456 0.57221-0.87049 0.84614-1.8816 0.78527-3.1295-0.0791-1.114-0.40177-2.021-1.0044-2.6967-0.76091-0.90701-1.8749-1.3082-3.3846-1.2473-1.4244 0.0907-2.4715 0.61422-3.1472 1.6734"/> + <path id="path302" fill="#009fc5" d="m383.24 963.29c0.78527-0.13392 1.467-0.0968 2.088 0.11566 0.9131 0.28611 1.5279 0.96241 1.9114 1.9966l-1.1262 0.15827c-0.2435-0.55942-0.59047-0.94293-1.0592-1.1566-0.45655-0.20028-1.0288-0.24958-1.6862-0.15158-0.767 0.11566-1.3818 0.49856-1.814 1.114-0.42612 0.65682-0.55395 1.534-0.36525 2.6535 0.15828 0.92589 0.49917 1.7106 1.0592 2.2341 0.51743 0.53569 1.2784 0.72439 2.2706 0.58438 0.74266-0.12174 1.3392-0.41941 1.7592-0.93136 0.43829-0.48638 0.56612-1.2236 0.42002-2.1732l-2.6236 0.40237-0.13392-0.90093 3.6524-0.56064 0.71222 4.3281-0.72439 0.10958-0.45046-0.99833c-0.30437 0.45107-0.60874 0.79805-0.87658 0.99833-0.45047 0.35367-1.0592 0.5789-1.8201 0.68847-0.98615 0.15158-1.8871-0.025-2.7028-0.54847-0.89484-0.66352-1.4731-1.6497-1.6923-3.0187-0.23741-1.3453-0.0244-2.4964 0.59656-3.4034 0.59047-0.87597 1.4488-1.3873 2.6054-1.5523"/> + <path id="path304" fill="#009fc5" d="m391.5 962.66 2.6176-0.94963c0.35915-0.13331 0.66961-0.17653 0.93745-0.14548 0.4809 0.0359 0.83397 0.32202 1.0348 0.89423 0.18871 0.48698 0.18871 0.9131-0.0243 1.212-0.22523 0.30984-0.5783 0.53568-1.0896 0.72378l-2.4593 0.88267-1.0166-2.6176m2.6176 6.7636-1.2783-3.2811 2.4349-0.87719c0.45655-0.14609 0.77309-0.22523 1.0105-0.20027 0.4322 0.0542 0.76092 0.31654 0.98006 0.8151l0.55395 1.2485c0.12175 0.30985 0.21914 0.49855 0.29828 0.58439 0.0365 0.10957 0.11566 0.17653 0.17653 0.24897l1.321-0.48638-0.0731-0.17653c-0.1948 0-0.3835-0.10958-0.52351-0.32324-0.10349-0.15158-0.20089-0.37072-0.34089-0.62639l-0.43221-1.0233c-0.19479-0.44438-0.39567-0.7177-0.62699-0.88267-0.23132-0.12783-0.52352-0.21306-0.87049-0.2368 0.26784-0.31106 0.46263-0.62151 0.53568-0.98676 0.0791-0.37071 0.0426-0.78465-0.13392-1.2473-0.3348-0.87049-0.94963-1.3453-1.814-1.4062-0.45655-0.0365-0.98006 0.0609-1.5827 0.27332l-3.6768 1.3094 2.9706 7.6938 1.0775-0.39568"/> + <path id="path306" fill="#009fc5" d="m403.69 965.37-4.669-6.8124 5.1256-3.2689 0.56612 0.8224-4.2003 2.6839 1.4366 2.0819 3.8776-2.4958 0.5296 0.79745-3.8776 2.4964 1.5827 2.2949 4.2733-2.7338 0.56612 0.80414-5.2169 3.3298"/> + <path id="path308" fill="#009fc5" d="m407.78 953.32 1.3392-1.4731c0.62091-0.65744 1.2783-0.95572 1.9966-0.87049 0.7183 0.0609 1.4488 0.43828 2.228 1.1201 0.21305 0.16436 0.40176 0.37741 0.59656 0.61482 0.34089 0.44438 0.54177 0.83458 0.6696 1.2236 0.10958 0.48759 0.0852 0.93197-0.0852 1.3581-0.10348 0.21245-0.2861 0.46203-0.56003 0.76092l-1.3453 1.461-4.8394-4.2064m7.0735 3.2074c0.94963-1.0464 1.1566-2.1726 0.60265-3.4448-0.32263-0.68848-0.81571-1.3581-1.4975-1.9425-0.85832-0.76092-1.7532-1.1505-2.6967-1.223-1.047-0.0797-1.9358 0.29828-2.7089 1.1438l-2.2828 2.4471 6.2943 5.4914 2.2828-2.4593"/> + <path id="path310" fill="#009fc5" d="m419.73 950.17-7.2439-4.2551 0.59047-0.93684 7.2561 4.2307-0.59656 0.97336"/> + <path id="path312" fill="#009fc5" d="m422.57 945.23-7.8222-3.1295 2.3071-5.503 0.94962 0.36524-1.881 4.5351 2.3558 0.92588 1.7592-4.1765 0.90093 0.37194-1.741 4.1698 2.6358 1.0708 1.9297-4.5892 0.94962 0.35854-2.3497 5.601"/> + <path id="path314" fill="#009fc5" d="m426.16 935.62-8.2301-1.8201 0.27393-1.2723 7.6031-2.5689-6.6778-1.4731 0.2435-0.99832 8.2301 1.7708-0.26175 1.2357-7.6153 2.6243 6.6778 1.4427-0.23741 1.0592"/> + <path id="path316" fill="#009fc5" d="m425.51 925.17 0.10348-1.0348c0.47481 0.0128 0.87658-0.0609 1.181-0.22462 0.59656-0.32324 0.94353-0.93745 1.0348-1.8451 0.0365-0.4255 0.0183-0.79744-0.0791-1.1505-0.17653-0.68117-0.56004-1.0592-1.1749-1.1201-0.45655-0.0487-0.78527 0.0609-1.0227 0.31107-0.21306 0.2861-0.43829 0.69943-0.60874 1.2844l-0.37741 1.0775c-0.2435 0.70552-0.46873 1.1925-0.71222 1.4664-0.38959 0.51194-0.93746 0.68848-1.6375 0.63978-0.74874-0.0791-1.3575-0.37742-1.7897-0.94963-0.44438-0.52351-0.627-1.2722-0.51743-2.1981 0.073-0.84553 0.35307-1.5578 0.85223-2.13 0.46264-0.52351 1.181-0.7737 2.1001-0.67631l-0.0852 1.0348c-0.45047 0-0.80962 0.0791-1.0714 0.26176-0.47481 0.26175-0.73657 0.8157-0.8157 1.6253-0.067 0.67022 0.0243 1.1201 0.28002 1.4616 0.25566 0.28611 0.57829 0.46812 0.95571 0.49856 0.40176 0.0365 0.71831-0.0913 0.93745-0.40116 0.15827-0.21367 0.34698-0.6763 0.60265-1.425l0.37133-1.1322c0.18262-0.52352 0.40176-0.92528 0.65743-1.2114 0.45655-0.47481 1.0531-0.67569 1.8019-0.6203 0.9131 0.0968 1.5644 0.47482 1.8992 1.1688 0.32871 0.70005 0.45655 1.4731 0.37741 2.3497-0.10348 0.99163-0.42611 1.7714-1.0227 2.2949-0.59656 0.53508-1.3392 0.7177-2.2401 0.64465"/> + <path id="path318" fill="#009fc5" d="m254.9 924.67 0.1887 1.0221c-0.45655 0.0913-0.82179 0.27454-1.0896 0.51195-0.48091 0.44985-0.64526 1.1262-0.48091 2.0454 0.073 0.38898 0.21306 0.77248 0.38959 1.0775 0.36525 0.62091 0.84006 0.86988 1.4427 0.77248 0.44438-0.0791 0.73657-0.24897 0.87658-0.56551 0.13392-0.31107 0.23132-0.78588 0.26176-1.394l0.0548-1.1511c0.0365-0.71222 0.11566-1.2716 0.27393-1.5827 0.24958-0.56004 0.71831-0.90702 1.4184-1.0221 0.74875-0.13453 1.4062 0.0359 1.9723 0.46203 0.57222 0.39568 0.94963 1.0836 1.0896 1.9966 0.17653 0.83458 0.0974 1.5833-0.23132 2.2584-0.31654 0.65804-0.92528 1.0592-1.8566 1.2296l-0.18262-1.0342c0.4322-0.15827 0.75483-0.31106 0.96789-0.52351 0.36524-0.40846 0.47481-0.99833 0.3348-1.8079-0.10957-0.65805-0.3348-1.0842-0.67569-1.2966-0.33481-0.25019-0.66961-0.34759-1.0348-0.2861-0.40786 0.0609-0.6757 0.2861-0.80353 0.65134-0.0791 0.24289-0.14001 0.74814-0.1948 1.5218l-0.0548 1.1925c-0.0304 0.56004-0.11566 1.0233-0.30437 1.3398-0.29828 0.58377-0.80353 0.94293-1.5401 1.0586-0.93137 0.15827-1.6497-0.0548-2.161-0.65135-0.52352-0.58439-0.84614-1.2844-1.0105-2.1549-0.18262-1.0348-0.0487-1.8384 0.36524-2.483 0.42002-0.66352 1.0836-1.047 1.9845-1.1749"/> + <path id="path320" fill="#009fc5" d="m254.38 935.46 8.0475-2.4228 1.8749 5.6667-0.98006 0.31046-1.534-4.6568-2.4471 0.73717 1.4184 4.3032-0.93745 0.29828-1.4062-4.3153-2.7271 0.81509 1.5584 4.7603-0.9618 0.27454-1.9053-5.7708"/> + <path id="path322" fill="#009fc5" d="m257.95 945.29 7.4022-3.9257 0.79136 1.3812-5.089 5.3812 7.4326-1.2723 0.767 1.3703-7.384 3.902-0.52351-0.90763 4.3585-2.2943c0.15827-0.0919 0.40176-0.22584 0.75483-0.41394 0.34698-0.15827 0.73657-0.37194 1.1262-0.57282l-7.4022 1.2601-0.54178-0.9618 5.0525-5.363-0.24349 0.12235c-0.15827 0.0907-0.43221 0.22524-0.80353 0.43768-0.36524 0.22584-0.63918 0.36524-0.81571 0.43829l-4.3464 2.3315-0.53569-0.92467"/> + <path id="path324" fill="#009fc5" d="m271.74 956.19c-0.37133-0.0846-0.73657-0.29828-1.0957-0.66961l-1.5644-1.6132 2.1062-1.9297 1.5766 1.6077c0.30437 0.29828 0.49917 0.58986 0.60265 0.84005 0.1461 0.48029 0 0.91919-0.44438 1.3325-0.40176 0.37133-0.80353 0.52352-1.1809 0.43221m-5.9473 0.74874 2.581-2.368 1.8323 1.8566c0.59047 0.60265 1.1931 0.87658 1.8262 0.86501 0.64526-0.0371 1.1992-0.27454 1.6862-0.73717 0.54786-0.48699 0.80961-1.0592 0.80961-1.6734-0.006-0.59716-0.28001-1.1566-0.78526-1.6801l-2.6297-2.6851-6.1239 5.6247 0.79136 0.79744"/> + <path id="path326" fill="#009fc5" d="m273.18 963.51 4.4377-6.9578 5.2473 3.1898-0.54786 0.82848-4.3098-2.581-1.3331 2.1062 3.9629 2.4039-0.51133 0.79805-3.969-2.3923-1.5097 2.3552 4.3646 2.6243-0.52351 0.82179-5.3082-3.1965"/> + <path id="path328" fill="#009fc5" d="m286.31 962.17 2.6663 0.84675c0.37741 0.11505 0.65134 0.26115 0.83397 0.42612 0.34089 0.32263 0.4322 0.78465 0.23131 1.3447-0.16435 0.48699-0.41394 0.80353-0.80353 0.93806-0.34697 0.0603-0.78526 0.0603-1.2966-0.098l-2.5141-0.80292 0.88267-2.6547m-2.301 6.8361 1.1079-3.3176 2.4836 0.80962c0.44437 0.11626 0.767 0.27453 0.92527 0.43828 0.30437 0.27394 0.39568 0.68179 0.2435 1.1876l-0.37133 1.3203c-0.0852 0.32263-0.12783 0.53569-0.16436 0.63309 0 0.10409 0 0.21366 0.0183 0.2861l1.3088 0.42612 0.0791-0.18871c-0.14001-0.10957-0.21914-0.30985-0.21306-0.55943 0.0304-0.15279 0.073-0.39568 0.15827-0.6763l0.31655-1.0592c0.12783-0.46264 0.17653-0.80962 0.0609-1.0586-0.0974-0.26237-0.26176-0.49977-0.53569-0.7244 0.41394-0.0737 0.7731-0.20149 1.0775-0.42672 0.28611-0.24958 0.5296-0.59656 0.6757-1.0829 0.29828-0.88327 0.13392-1.6198-0.52351-2.1799-0.32872-0.29158-0.79745-0.54177-1.4123-0.77309l-3.7255-1.1499-2.6054 7.7608 1.0896 0.3348"/> + <path id="path330" fill="#bc715f" d="m295.32 827.76c0.9618-2.3199 9.8737-8.6446 39.117-5.8749 0 0 4.9429 3.0193 7.8466 2.6303 1.6558-0.21367-0.97397 0.10288-3.135-1.6929-2.2036-1.7952-2.6724-5.478 2.3619-5.3806 5.0099 0.12784 23.765 1.187 24.118 2.8726 0.32872 1.7045-9.9163 2.4167-13.727 2.3193-3.8289-0.10288-3.3846 1.8329 0.42612 1.6868 11.907-0.42611 24.903-4.6209 38.63 5.089 1.6375 1.1803-4.1394 1.369-8.6075-0.53021 0 0-12.108 0.6276-17.343-0.23071 0 0-4.0237 3.2744-9.2649 2.9524 0.68178 1.6978-1.9358 8.0353-18.414 3.2683-2.721 0.83458-12.637 2.4958-11.554-0.44986-2.6115 0-7.1892 0.84006-7.8709-0.64586-0.65743-1.4604 8.0596-3.6707 9.5876-5.2528 0 0-18.439 0.17654-21.933-1.0963 0 0-10.878 2.441-10.239 0.32324"/> + <path id="path332" fill="#008737" d="m301.23 853.58c0.39568-0.53508 0.55395-1.4975 1.394-1.4725 1.8262 0.48638 3.068 3.8283 5.3142 1.6612 0.79744-0.17654 1.1018 0.90762 1.7592 1.0354 0.42003 1.8566 1.9114-0.37741 3.0254-0.25019 2.3802-1.0592 5.3264-1.3088 8.1449-0.78526 0.0852 1.8201-1.3392 3.8289-3.1289 4.8638 0.0365 1.8329 1.6984 3.0078 1.6679 4.8516-0.2861 0.68848-0.0487 1.7714-1.0896 1.9966-1.321-0.2374-2.6236-0.37741-3.7194-1.114-0.13392-0.13392-0.24349-0.39568-0.52351-0.31046-0.13392 0.61483 0.82788 1.2242 1.2053 1.8506-0.66352 1.1322-1.7653 0.0974-2.6906 0.10957-0.27393 0.65135-0.0122 1.4731-0.68178 1.8932-1.1688-0.0365-1.4062-1.3082-2.1245-1.9419-0.73657 0.79744 0.51742 1.2723 0.69395 1.9053-0.45046 2.3984-0.38959 4.742-2.788 6.3126l-1.6071 0.79805c-0.43829-1.2053-0.16436-3.0321-0.45655-4.2922-0.94963 1.5462-1.6923 2.8982-3.0863 4.2064-1.6314-0.53569-2.581-2.4593-2.9402-4.0542-0.68178-1.8566-0.29219-4.0785 1.1749-5.4238-0.49916-0.97398-2.2097-0.74874-2.4532-2.136-2.5628-1.6685-3.9811 2.9219-5.6369 0.53508-0.53569-2.2274 0.10348-4.9977 1.7166-6.6596-0.35916-0.9125-1.5523-0.67509-2.2584-1.1986-1.6131-1.3703-3.9385-2.8184-3.8228-5.2905 4.4133-1.6673 9.6911-0.44377 12.899 2.9098"/> + <path id="path334" fill="#ff0" d="m303.52 853.33c-0.10349 2.0204 1.3636 0.54726 2.4532 1.7708-0.85223-0.3348-1.4731 1.4731-2.3071 0.43829l-0.52351 0.49977c0.30437 0.69335 0.89484 0.78466 0.28002 1.5456-0.9131 0.34698-1.0957-0.79683-1.5218-1.2479-0.0731-0.20028 0.14001-0.5783-0.19479-0.71222-0.51743 0.43829-1.0592 0.59656-1.7714 0.52412-0.1948-0.3902-0.57221-0.90093-0.18871-1.1992 0.70004-0.94415 1.7836 0.34028 2.3132-0.32263 0.0852-0.58439-0.42611-1.2966 0.23741-1.699 0.45655 0.0791 1.0409-0.16984 1.2296 0.40237"/> + <path id="path336" fill="#ff0" d="m308.98 854.99c0.0548 0.3902-0.20089 0.93746 0.31045 1.212 0.66352-0.35977 1.3696-0.0858 1.7532 0.57221-0.006 0.35245 0.10348 0.81509-0.35916 0.98554l-1.0348-0.19419c0.073-0.20149-0.25567-0.32871-0.38351-0.52351-0.45655-0.14001-0.72439 0.23071-1.0653 0.45594 0.25566 0.38959 0.84614 0.60265 0.70613 1.1024-0.60874 0.60813-0.90702-0.52351-1.5766-0.23801-0.45656-0.17593 0.16435-1.1256-0.55395-1.4117-0.85223 0-0.28611 1.3995-1.3757 0.85223-0.38959-0.4389-0.7731-1.0288-0.35307-1.5218 0.45655-0.30497 1.2296-0.22584 1.6192 0.16984 0.66353-0.73596 0.73049-3.5788 2.3193-1.461"/> + <path id="path338" fill="#ff0" d="m302.18 857.92c0.44438 0.63978-0.0974 1.5097 0.46872 2.2219 0.88876-1.6612 1.7471 0.35915 2.8063 0.20088 0.32263 0.39568 0.10957 0.94415 0.17045 1.394-1.3088 0.34698-2.8854 0.76092-4.042-0.2861l-0.32263 0.37133c0.68787 0.63978 1.3392 1.3636 0.79135 2.4349-0.98006 0.21305-2.4958 0.2374-2.9889-0.7731-0.25567-0.83336 0.59656-1.436-0.30437-2.1062-0.65135 0.80962-0.62091 1.8938-1.9784 1.1566-0.84005-0.46264-1.0896-1.4178-0.66961-2.2219 0.87658-1.3818 2.4106 0.0432 3.3602-0.63308 0.13392-1.187-0.30437-2.2219 0.78527-2.8787 0.93136-0.16496 1.3636 0.53508 1.9297 1.1195"/> + <path id="path340" fill="#fff" d="m305.89 858.65c-0.43829 2.021-1.9601-0.10348-2.6723-0.18871 0.94962-1.6856 1.5462 0.54847 2.6723 0.18871"/> + <path id="path342" fill="#fff" d="m310.63 860.85c-1.0592 0.29767-0.89484-1.0233-1.4184-1.5407l0.40786-0.37132c0.3835 0.46263 0.67569 1.2972 1.0105 1.912"/> + <path id="path344" fill="#ff0" d="m309.2 860.44c0.30437 0.70004-0.68787 1.2607 0.15827 1.7714 0.26785-0.22463 0.59656-0.53569 0.73657-0.66352 0.7244 0.21366 1.5644 0.3415 2.0697 1.0592 0.54177 1.4859-0.9618 1.4488-1.814 1.8627l-0.84614-0.0365c0.20088-0.41394-0.36524-0.59047-0.50525-0.87597-0.38959-0.0974-0.71222 0.0237-0.93137 0.35246 0.18871 0.94414 1.3392 1.6801 0.15219 2.5202-1.0044-0.0663-2.5628 0.32263-2.4715-1.0653-0.37742-0.78526 1.0227-1.9966-0.47482-2.0447-0.49307 1.0592-1.0348 2.0813-2.3193 1.0775l0.15827-1.5097c1.2296 0.0359 2.6845 0.24897 3.2385-1.1262 0.35307-0.99832-0.61482-1.9175 0.24958-2.7089 1.254-0.2861 1.9601 0.55395 2.5993 1.3873"/> + <path id="path346" d="m308.3 862.71c0.31655 0.74935-0.53568 0.79805-0.93745 1.1688-0.54177 0.0432-0.91919-0.17045-1.2479-0.53569-0.2435-0.90701 0.4322-0.99832 0.94962-1.3569 0.60265-0.25019 0.85223 0.44986 1.2357 0.72379"/> + <path id="path348" fill="#fff" d="m307.56 863.2c-0.13392 0.17653-0.32262 0.12235-0.52351 0.17044l-0.1887-0.9064c0.40176 0.0359 0.92527 0.16375 0.71221 0.73596"/> + </g> + </g> +</svg> diff --git a/s/flag/sy.svg b/s/flag/sy.svg new file mode 100755 index 0000000..21b0fb6 --- /dev/null +++ b/s/flag/sy.svg @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3619"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd"> + <rect id="rect171" rx="0" ry="0" height="480" width="640" y=".0000010549" x="-2.1606e-8" fill="#fff"/> + <rect id="rect256" rx="0" ry="0" height="159.3" width="480" y="320.7" x="-3.457e-7" fill="#fff"/> + <rect id="rect255" height="159.3" width="480" y=".000033733" x="-3.457e-7" fill="#fff"/> + <path id="path205" d="m201.9 281-28.822-20.867-28.68 21.072 10.667-34.242-28.628-21.145 35.418-0.2948 10.985-34.138 11.221 34.06 35.418 0.0449-28.481 21.344 10.902 34.166z" fill="#fff"/> + <path id="path583" d="m509.54 281-28.822-20.867-28.68 21.072 10.667-34.242-28.628-21.145 35.418-0.2948 10.985-34.138 11.221 34.06 35.418 0.0449-28.481 21.344 10.902 34.166z" fill="#fff"/> + <rect id="rect7524" rx="0" ry="0" height="159.3" width="640" y="320.7" x="-3.457e-7" stroke-width="1pt"/> + <rect id="rect7526" height="159.3" width="640" y=".000033733" x="-3.457e-7" stroke-width="1pt" fill="#f00"/> + <path id="path7528" d="m201.9 281-28.822-20.867-28.68 21.072 10.667-34.242-28.628-21.145 35.418-0.2948 10.985-34.138 11.221 34.06 35.418 0.0449-28.481 21.344 10.902 34.166z" stroke-width=".11287" fill="#090"/> + <path id="path7530" d="m509.54 281-28.822-20.867-28.68 21.072 10.667-34.242-28.628-21.145 35.418-0.2948 10.985-34.138 11.221 34.06 35.418 0.0449-28.481 21.344 10.902 34.166z" stroke-width=".11287" fill="#090"/> + </g> +</svg> diff --git a/s/flag/sz.svg b/s/flag/sz.svg new file mode 100755 index 0000000..9bfb3a9 --- /dev/null +++ b/s/flag/sz.svg @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3690"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath4924" clipPathUnits="userSpaceOnUse"> + <rect id="rect4926" fill-opacity="0.67" height="512" width="682.67" y="-.0000039058" x="-85.333"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath4924)" transform="matrix(.9375 0 0 .9375 80 .0000036617)"> + <rect id="rect585" fill-rule="evenodd" height="512" width="768" y="-.0000039058" x="-128" fill="#3e5eb9"/> + <rect id="rect966" fill-rule="evenodd" height="329.14" width="768" y="91.429" x="-128" fill="#ffd900"/> + <rect id="rect967" fill-rule="evenodd" height="256" width="768" y="128" x="-128" fill="#b10c0c"/> + <rect id="rect969" fill-rule="evenodd" rx="5.7666" ry="5.8514" height="10.971" width="621.71" stroke="#000" y="250.51" x="-51.439" stroke-width="1.4742" fill="#ffd900"/> + <g id="g978" stroke="#000" transform="matrix(1.0321 0 0 1.0321 -757.03 -25.6)"> + <path id="path971" d="m-106.3 265.75-88.583 35.433 88.583 35.433 88.582-35.433-88.582-35.433z" fill-rule="evenodd" transform="matrix(0.34 0 0 0.3 1256.8 136.42)" stroke-width="4.1748" fill="#fff"/> + <rect id="rect968" fill-rule="evenodd" rx="4.1082" ry="3.7795" height="7.0866" width="442.91" y="223.23" x="761.81" stroke-width="1.3333" fill="#ffd900"/> + <path id="path975" d="m1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087" transform="matrix(-.50001 0 0 0.5 1806.3 90.354)" stroke-width="2.6666" fill="none"/> + <path id="path976" d="m1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087" transform="matrix(-.50001 0 0 0.5 1802.8 90.354)" stroke-width="2.6666" fill="none"/> + <path id="path977" d="m1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087" transform="matrix(-.50001 0 0 0.5 1799.2 90.355)" stroke-width="2.6666" fill="none"/> + </g> + <g id="g984" stroke="#000" transform="matrix(1.0321 0 0 1.0321 -786.29 -3.6571)"> + <path id="path985" d="m-106.3 265.75-88.583 35.433 88.583 35.433 88.582-35.433-88.582-35.433z" fill-rule="evenodd" transform="matrix(0.34 0 0 0.3 1256.8 136.42)" stroke-width="4.1748" fill="#fff"/> + <rect id="rect986" fill-rule="evenodd" rx="4.1082" ry="3.7795" height="7.0866" width="442.91" y="223.23" x="761.81" stroke-width="1.3333" fill="#ffd900"/> + <path id="path987" d="m1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087" transform="matrix(-.50001 0 0 0.5 1806.3 90.354)" stroke-width="2.6666" fill="none"/> + <path id="path988" d="m1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087" transform="matrix(-.50001 0 0 0.5 1802.8 90.354)" stroke-width="2.6666" fill="none"/> + <path id="path989" d="m1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087" transform="matrix(-.50001 0 0 0.5 1799.2 90.355)" stroke-width="2.6666" fill="none"/> + </g> + <g id="g943" fill-rule="evenodd" transform="matrix(.48305 0 0 .48520 228.79 259.6)"> + <path id="path925" d="m338.07-0.41631c-5.571 12.442 4.275-4.1375 28.299 16.691 4.452 3.8696 8.342 14.09 8.342 21.177-1.13-0.9748-1.969-3.1443-3.214-4.5522-1.743 2.2527 1.664 12.577 2.162 17.457-3.756-2.7108-3.394-3.9938-4.642-7.3242 0.249 4.0258-0.645 15.116 0.849 19.386-2.96-1.0897-2.764-4.1629-4.31-4.7801 1.052 4.834-0.916 10.094-0.394 15.528-1.73-2.2082-3.573-3.9375-4.376-4.829-0.135 2.5882-3.327 9.3883-3.4 11.835-1.468-1.1436-1.866-2.9265-2.111-4.1265-1.824 2.9554-8.308 13.872-8.724 17.202-4.996-5.6892-17.793-19.545-19.459-26.899-1.473 4.175-3.604 5.583-7.817 8.6317-1.665-11.656-7.891-24.756-4.561-34.747-2.359 1.8039-4.302 3.6077-6.66 5.8279 2.234-16.88 13.628-36.674 30.016-46.477z" transform="matrix(2.0586 0 0 1.5894 -79.541 -15.739)" stroke="#000" stroke-width="1.0667pt" fill="#3d5da7"/> + <path id="path938" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(-.27666 .47556 -.98145 -.25924 681.83 -39.928)" stroke-width="1pt" fill="#a70000"/> + <path id="path939" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.00059514 .37154 -.90479 .082686 635.67 -.24702)" stroke-width="1pt" fill="#a70000"/> + <path id="path940" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.069126 .52214 -.83860 .21649 639.17 -31.725)" stroke-width="1pt" fill="#a70000"/> + <path id="path941" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.32032 .21152 .45182 -.55995 553.09 8.3945)" stroke-width="1pt" fill="#a70000"/> + <path id="path942" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.18815 .32091 .80839 -.33790 573.21 4.5594)" stroke-width="1pt" fill="#a70000"/> + </g> + <g id="g950" fill-rule="evenodd" transform="matrix(.47326 0 0 .48433 -242.14 255.81)"> + <path id="path926" d="m329.6 20.703c-0.272-2.6623 0.253-2.9806-1.258-4.9889 2.2 0.9974 2.284 3.6487 4.959 1.7668 0.983-0.5511 1.411-0.5686 0.217-3.526 2.79 0.1401 11.927 3.5353 13.39 3.6142 3.842 0.191 10.855-4.3733 15.723 1.2392 4.672 5.1175 3.112 10.429 3.112 17.516-1.877-0.9748-0.973-1.4548-2.965-3.9891 1.494 6.195-0.08 17.364-0.08 23.934-0.767-1.5844-0.654-0.8963-1.404-2.537-1.992 5.9969-4.38 7.231-4.38 14.318-0.719-2.7793-0.025-2.1917-0.825-3.6536-1.936 4.5523-14.925 8.4437-9.92 13.033-4.518-2.8699-6.499-2.5689-8.548-5.15-0.882 0.6171-1.584 1.7852-2.404 3.3868-7.943-3.9596-5.103-12.501-11.326-18.206-1.077 2.3922-0.586 2.0448-1.75 5.9383-1.26-5.4076-1.604-8.8441-3.021-12.819-1.223 2.2038-1.113 1.359-3.333 4.6893-0.918-6.5873-2.413-8.142-1.822-12.501-2.359 1.8039-0.815 1.0733-3.173 3.2935 2.234-16.88 11.884-29.352 18.808-25.358z" transform="matrix(2.4029 0 0 2.1669 -332.33 -34.376)" stroke="#000" stroke-width="1.0667pt" fill="#3d5da7"/> + <path id="path928" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(-.28442 .59052 -.97712 -.33674 546.38 -80.159)" stroke-width="1pt" fill="#a70000"/> + <path id="path929" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(-.13148 .53639 -.90793 -.097006 520.88 -43.839)" stroke-width="1pt" fill="#a70000"/> + <path id="path930" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(-.057731 .52353 -.86604 .0096909 521.59 -23.375)" stroke-width="1pt" fill="#a70000"/> + <path id="path931" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.49337 .43150 .76655 -.69323 364.56 -41.836)" stroke-width="1pt" fill="#a70000"/> + <path id="path932" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.33146 .44175 0.797 -.44557 402.27 -18.441)" stroke-width="1pt" fill="#a70000"/> + </g> + <g id="g1018" fill-rule="evenodd" transform="matrix(1.0321 0 0 1.0321 -128 .00012305)"> + <path id="path552" d="m637.8 230.32c-53.15 59.05-124.02 177.16-265.75 177.16-124.02 0-212.6-118.11-265.75-177.16 53.15-59.06 141.73-177.17 265.75-177.17 141.73 0 212.6 118.11 265.75 177.17z" transform="matrix(.66667 0 0 .6 124.02 109.84)" stroke="#000" stroke-width="2.1082" fill="#fff"/> + <path id="path555" d="m353.5 114.78c14.14 17.671 2.333 24.795 17.3 25.955 15.784 1.288 6.837 18.672 20.114 19.276 9.282 0.45-0.927 41.652 8.009 55.247 9.102 14.174 16.725 4.153 16.885 14.393 0.158 10.59-24.773 9.522-25.21 42.146-0.731 18.8-21.039 20.004-22.008 32.101-1.205 11.378 40.008 17.766 39.459 27.952-0.565 10.155-44.501 8.565-46.414 20.146-0.981 10.402 60.359 18.928 65.291 49.013-9.153 3.326-35.194 6.457-54.877 6.474-124.01 0.11-212.6-118.11-265.75-177.16 53.15-59.06 141.73-177.17 265.75-177.17 0 0-36.813 37.374-18.549 61.627z" transform="matrix(.66667 0 0 .6 124.02 109.84)" stroke-width="1pt"/> + <g id="g569" transform="matrix(.48485 0 0 .53333 183.72 210.24)" stroke-width="1pt" fill="#fff"> + <rect id="rect557" height="53.15" width="17.717" y="0.000038" x="159.45"/> + <rect id="rect558" height="53.15" width="17.717" y="88.583" x="159.45"/> + <rect id="rect559" height="53.15" width="17.717" y="0.000099" x="194.88"/> + <rect id="rect560" height="53.15" width="17.717" y="88.583" x="194.88"/> + <rect id="rect561" height="53.15" width="17.717" y="-.000015" x="230.31"/> + <rect id="rect562" height="53.15" width="17.717" y="88.583" x="230.31"/> + <rect id="rect563" height="53.15" width="17.717" y="0.000046" x="265.75"/> + <rect id="rect564" height="53.15" width="17.717" y="88.583" x="265.75"/> + <rect id="rect565" height="53.15" width="17.717" y="-.000015" x="301.18"/> + <rect id="rect566" height="53.15" width="17.717" y="88.583" x="301.18"/> + <rect id="rect567" height="53.15" width="17.717" y="0.000046" x="336.61"/> + <rect id="rect568" height="53.15" width="17.717" y="88.583" x="336.61"/> + </g> + <g id="g586" transform="matrix(.48485 0 0 .53333 313.64 210.24)" stroke-width="1pt"> + <rect id="rect587" height="53.15" width="17.717" y="0.000038" x="159.45"/> + <rect id="rect588" height="53.15" width="17.717" y="88.583" x="159.45"/> + <rect id="rect589" height="53.15" width="17.717" y="0.000099" x="194.88"/> + <rect id="rect590" height="53.15" width="17.717" y="88.583" x="194.88"/> + <rect id="rect591" height="53.15" width="17.717" y="-.000015" x="230.31"/> + <rect id="rect592" height="53.15" width="17.717" y="88.583" x="230.31"/> + <rect id="rect593" height="53.15" width="17.717" y="0.000046" x="265.75"/> + <rect id="rect594" height="53.15" width="17.717" y="88.583" x="265.75"/> + <rect id="rect595" height="53.15" width="17.717" y="-.000015" x="301.18"/> + <rect id="rect596" height="53.15" width="17.717" y="88.583" x="301.18"/> + <rect id="rect597" height="53.15" width="17.717" y="0.000046" x="336.61"/> + <rect id="rect598" height="53.15" width="17.717" y="88.583" x="336.61"/> + </g> + </g> + <g id="g957" fill-rule="evenodd" transform="matrix(.54409 0 0 .53270 19.257 165.99)"> + <path id="path924" d="m338.07-0.4163c-5.571 12.442 9.754-4.1376 33.778 16.691 4.452 3.8696 10.833 19.159 10.833 26.245-5.115-1.2564-14.173-7.0866-14.173-7.0866s10.63 12.295 10.63 26.468c-3.756-2.7108-5.635-2.3043-6.883-5.6345 0 4.5889 3.34 7.5126 3.34 14.599-2.711-2.4977-5.006-4.1629-7.3-5.6248 3.543 7.0866-6.457 20.834-1.452 25.423-8.752-1.4619-17.707-7.9192-21.25-15.006-1.878 1.4619-2.082 3.7564-2.155 6.2028 0.276 0.2643-13.322-11.656-12.073-16.235-1.824 2.9554-2.081 4.5791-2.497 7.9094-4.996-5.6892-9.574-11.378-11.24-18.733-2.22 3.3302-2.359 3.3302-4.579 6.6605-1.665-11.656-1.665-11.24 1.665-21.23-2.359 1.8039-4.302 3.6077-6.66 5.8279 2.234-16.88 13.628-36.674 30.016-46.477z" transform="matrix(1.6714 0 0 1.4783 -238.63 .19911)" stroke="#000" stroke-width="1.0667pt" fill="#3d5da7"/> + <path id="path933" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(-.11102 .64598 -1.0321 -.054990 368.06 -85.394)" stroke-width="1pt" fill="#a70000"/> + <path id="path934" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.021132 .55187 -.89959 .15647 353.52 -43.459)" stroke-width="1pt" fill="#a70000"/> + <path id="path935" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.25282 .46206 .80443 -.32096 274.24 15.866)" stroke-width="1pt" fill="#a70000"/> + <path id="path936" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.59303 .27916 .54630 -.87734 203.78 1.4633)" stroke-width="1pt" fill="#a70000"/> + <path id="path937" d="m273.5 33.156c-19.565 0.6626-27.155-1.6652-39.755-1.2489-22.163 0.7088-38.09 4.4093-38.09-0.4162 0-4.8256 8.006-7.0769 30.181-7.0769 22.174 0 27.682 1.4187 47.664 8.742z" transform="matrix(.44018 .33354 .64370 -.64761 246.48 13.583)" stroke-width="1pt" fill="#a70000"/> + </g> + </g> +</svg> diff --git a/s/flag/tc.svg b/s/flag/tc.svg new file mode 100755 index 0000000..1477a7c --- /dev/null +++ b/s/flag/tc.svg @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg id="svg2" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata183"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <path id="path14" d="m640 480v-480h-640v480h640z" fill="#006"/> + <g id="g1690" transform="matrix(.74736 0 0 .92867 0 .00020960)"> + <rect id="rect3207" fill-rule="evenodd" height="250" width="500" y="-1.1369e-13" x="0" fill="#006"/> + <g id="g878" stroke-width="1pt" transform="matrix(8.3333 0 0 8.3333 0 -.00022570)"> + <path id="path879" d="m0 0v3.3541l53.292 26.646h6.708v-3.354l-53.292-26.646h-6.708zm60 0v3.354l-53.292 26.646h-6.708v-3.354l53.292-26.646h6.708z" fill="#fff"/> + <path id="path880" d="m25 0v30h10v-30h-10zm-25 10v10h60v-10h-60z" fill="#fff"/> + <path id="path881" d="m0 12v6h60v-6h-60zm27-12v30h6v-30h-6z" fill="#c00"/> + <path id="path882" d="m0 30 20-10h4.472l-20 10h-4.472zm0-30 20 10h-4.472l-15.528-7.7639v-2.2361zm35.528 10 20-10h4.472l-20 10h-4.472zm24.472 20-20-10h4.472l15.528 7.764v2.236z" fill="#c00"/> + </g> + </g> + <g id="g2827" transform="matrix(.93820 0 0 .93820 -334.01 51.775)"> + <path id="path1392" d="m1008.9 171.25v85.175c0 69.928-27.467 133.94-108.95 172.85-81.45-38.91-108.92-102.92-108.92-172.85v-85.175h217.91z" fill-opacity=".99608" fill="#fff"/> + <path id="path18" d="m1001.6 179.93v79.444c0 65.223-25.619 124.93-101.62 161.22-76.004-36.291-101.62-95.996-101.62-161.22v-79.444h203.25z" fill-opacity=".99608" fill="#fdc300"/> + <g id="g20" stroke="#000" stroke-width=".091102" transform="matrix(4.1664 0 0 4.1669 -5.4589 -5.4597)"> + <path id="path22" d="m205.96 52.847c-0.353-0.2648-0.736-0.4266-1.265-0.4413 0.117-1.2946-0.824-1.8536-1.501-2.089-0.676-0.2354-0.912-0.5002-1.029-1.0298-0.118-0.5296-0.471-0.8532-1.089-1.0297-0.618-0.1766-1.148-0.7944-1.383-1.0887-0.235-0.2942-0.324-0.2354-0.5 0.2648-0.177 0.5002-0.883 1.4417-0.236 1.4712-0.47 0.3824-0.735 0.8238-0.441 1.4122-0.324 0.2648-0.559 0.6473-0.118 0.7944 0.442 0.1471 0.559 0.2648 0.589 0.3825-0.397 0-0.5 0.7944 0.441 0.9709-0.206 0.0294-0.294 0.6767 0.089 0.6767-0.53 0-0.972 0.7945-1.648 0.7945-0.677 0-1.03 0.147-1.059 0.4413-0.03 0.2942-0.383 0.6472-0.559 0.7944 0.5 0.0588 0.823 0 1.088-0.206s0.706-0.2648 1.001-0.0294c0.294 0.2354 0.912 0.353 1.206 0.2942-0.647 0.4414-1.118 1.0298-1.177 1.5888-0.059 0.5591-0.441 1.2063-0.883 1.3829-0.441 0.1765-1.029 0.6473-1.235 1.2063 0.559 1.3828 1.352 1.7244 2.147 2.0889 1.413 0.6474 2.295 1.1181 2.884 1.7654 0.588 0.6473 0.824 0.1765 1.706 1.2945 0.883 1.1181 1.707 3.2365 2.589 3.5896 0.883 0.353 2.001 0.1177 2.648-1.0004 0.648-1.118 1.06-12.416-2.265-14.299z" fill="#ff9e3d"/> + <path id="path24" d="m207.46 48.139c-0.824 0.8827-1.884 1.7654-1.707 3.3542s0.353 4.178-1.118 5.0606c-1.471 0.8827-2.177 3.1188-0.412 4.4133 1.765 1.2947 1.824 2.8835 2.118 4.3546 0.295 1.4711 1.06 2.6479 2.237 1.6476 1.176 0.1765 1.824-0.2942 1.824-1.2357s0.059-1.4711 0.941-1.7654c0.883-0.2942 1.118-0.5885 1.53-1.3828 0.412-0.7944 0.647-1.1475 0.412-1.6183-0.235-0.4707-0.324-1.4416-0.147-2.1478 0.177-0.7061-0.235-1.0886-0.471-1.5299-0.235-0.4413-0.323-0.8238-0.206-1.4123 0.118-0.5885-0.176-0.9709-0.588-1.2652-0.412-0.2942-0.589-0.5884-0.5-1.0592 0.088-0.4707-0.295-0.7649-0.736-1.118s-0.765-0.8238-0.765-1.5299c0-0.7062-1.353-2.3539-2.412-2.7658z" fill="#ff927f"/> + <path id="path26" d="m207.79 67.352c1.971-0.5002 1.795-3.7366 1.501-5.09-0.295-1.3535-1.051-3.292-0.471-4.8253 0.824-2.1772-1.001-4.2368-0.53-5.0606 0.471-0.8239 0.412-1.2652 0.353-1.53-0.058-0.2648-0.5-0.4707-0.529 0.0883-0.03 0.559-0.177 0.7649-0.53 1.118s-0.265 1.118 0 1.9713c0.265 0.8532 0.824 2.1479-0.059 3.8543-0.882 1.7065-0.519 2.4669-0.176 3.2659 0.529 1.2357 1.795 5.5314 0.441 6.2081z" fill="#ff9ee1"/> + <path id="path28" d="m198.96 48.904c0.221 0 0.648-0.0884 0.648 0.2059" fill="none"/> + <path id="path30" d="m198.52 50.316c0.265-0.1913 0.736 0.0294 1.206-0.2501" fill="none"/> + <path id="path32" d="m198.99 51.493c0.353 0 0.824-0.0147 1.265-0.3678" fill="none"/> + <path id="path34" d="m199.43 52.464c0.324 0 0.927-0.2059 1.074-0.6325" fill="none"/> + <path id="path36" d="m199.52 53.141c0.632-0.0294 1.471 0.206 1.588-0.0147" fill="none"/> + <path id="path38" d="m199.55 55.23c0.441-0.4119 1.486-0.6914 1.721-1.118" fill="none"/> + <path id="path40" d="m200.67 48.669c0.735 0.2355 0.431 0.6901 0.794 0.971 0.648 0.5002 0.059 1.0592 0.589 1.2063 0.529 0.1471 0.52 0.2365 0.382 0.8238-0.162 0.6915 0.5 0.7208 0.265 1.1769" fill="none"/> + <path id="path42" d="m204.7 52.406c-0.294 0-1.162 0.0294-1.53 0.8091" fill="none"/> + <path id="path44" d="m198.42 60.894c0.339 0.0589 0.508-0.1338 0.603-0.3236 0.103-0.206 0.147-0.3531 0.456-0.3678 0.309-0.0148 0.78-0.103 0.883-0.3384 0.103-0.2353 0.471-0.0147 0.78-0.6326 0.309-0.6178 0.515-1.3534 1.338-1.6182" fill="none"/> + </g> + <g id="g136" stroke="#000" stroke-width=".091102" transform="matrix(4.1664 0 0 4.1669 -5.4589 -5.4597)"> + <path id="path138" d="m221.76 73.75c0.333 0.4838-0.012 1.0068 0.553 1.216 0.662 0.245 0.084 1.1156 0.865 1.4224 0.692 0.2722 0.005 1.1045 0.753 1.4783 0.669 0.3347-0.112 1.1157 0.781 1.562 0.892 0.4462-0.168 1.4503 0.502 1.8408 0.669 0.3905-0.223 1.3946 0.558 1.7851 0.781 0.3904-0.335 1.1714 0.39 1.7293 0.725 0.5578-0.167 1.3945 0.558 1.8966s-0.445 1.1725 0.279 1.8967c0.558 0.5578-0.201 1.1041 0.223 1.9524 0.279 0.5578-0.279 2.7892-1.841 2.566-0.558 0.9484-2.733 1.7851-3.514 1.5062-0.781 0.5578-3.291 1.3388-4.575 0.1116-1.282 1.2272-3.793 0.4462-4.574-0.1116-0.781 0.2789-2.956-0.5578-3.514-1.5062-1.562 0.2232-2.12-2.0082-1.841-2.566 0.424-0.8483-0.335-1.3946 0.223-1.9524 0.724-0.7242-0.446-1.3946 0.279-1.8967s-0.167-1.3388 0.558-1.8966c0.725-0.5579-0.391-1.3389 0.39-1.7293 0.781-0.3905-0.111-1.3946 0.558-1.7851 0.67-0.3905-0.39-1.3946 0.502-1.8408 0.893-0.4463 0.112-1.2273 0.781-1.562 0.748-0.3738 0.061-1.2061 0.753-1.4783 0.781-0.3068 0.203-1.1774 0.865-1.4224 0.574-0.2125 0.208-0.7489 0.57-1.2391 1.661 0.6534 6.803 1.1223 8.918 0.0231z" fill="#00a728"/> + <g id="g140" fill-opacity=".99608" fill="#fdc300"> + <path id="path142" d="m213.51 76.668c0.001 0.2505-0.005 0.5-0.237 0.8089-0.502 0.6694 0.223 1.0042-0.335 1.7293-0.557 0.7252 0.112 1.1715-0.502 1.7851-0.613 0.6136 0.112 1.1715-0.502 1.8409-0.613 0.6694 0.112 1.1156-0.502 1.7292-0.613 0.6137 0.112 1.2831-0.502 1.8966-0.613 0.6137 0.112 1.3946-0.558 2.1199-0.669 0.7251 0.112 1.2829-0.446 1.8408-0.558 0.5578-0.056 1.1156-0.446 1.5061 0.669-0.502 0.669-1.2829 1.171-1.6734 0.502-0.3906-0.167-0.9484 0.112-1.2273s0.056-1.4504 0.558-2.0082c0.502-0.5579 0.056-1.6735 0.502-2.064s0.111-1.5619 0.669-1.9524 0-1.3388 0.446-1.8409c0.447-0.502 0-1.283 0.447-1.8966 0.446-0.6136 0.02-1.1707 0.334-1.6735 0.14-0.2231 0.14-1.8408-0.209-0.9205z"/> + <path id="path144" d="m215.12 77.365c-0.39 0.7252 0.279 0.8925-0.223 1.6177s0.279 1.283-0.279 2.0082 0.279 1.1156-0.223 1.8409c-0.502 0.7251 0.223 1.1156-0.223 1.6735-0.447 0.5578 0.334 1.1156-0.223 1.785-0.558 0.6695 0.223 1.1715-0.224 1.7851-0.446 0.6136 0.168 1.283-0.223 1.785-0.39 0.5021 0.279 1.2273-0.279 1.8967s0.112 1.1157-0.223 1.562c0.67-0.2232 0.419-1.1436 0.67-1.3388 0.251-0.1953-0.084-1.4783 0.306-1.813 0.391-0.3347-0.251-1.3672 0.112-1.813 0.614-0.753 0.084-1.2551 0.446-1.8408 0.363-0.5858-0.138-1.3377 0.14-1.7293 0.474-0.6694-0.21-1.2728 0.139-1.7572 0.502-0.6973-0.097-1.2715 0.251-1.7293 0.53-0.6973-0.056-1.3946 0.168-1.7572 0.223-0.3626 0.585-1.9245-0.112-2.1755z"/> + <path id="path146" d="m217.29 77.974c-0.39 0.972 0.279 1.3608 0.056 2.1383-0.223 0.7776 0.279 1.3608-0.056 2.2031-0.334 0.8424 0.447 1.4903 0 2.5919-0.446 1.1016 0.288 1.3758 0 2.4623-0.334 1.2637 0.558 1.9331 0 2.8257-0.557 0.8925 0.639 1.188 0.056 2.1197-0.279 0.4463 0.028 1.5899 0.474 0.2232 0.447-1.3667-0.334-1.534 0.056-2.0919 0.391-0.5579-0.139-2.0361 0.028-2.8171 0.168-0.781-0.39-1.8409-0.028-2.6776 0.363-0.8367-0.558-1.7292-0.195-2.4545 0.363-0.7251-0.167-1.6177 0.167-2.2034 0.335-0.5857-0.251-1.3667-0.111-1.7014 0.139-0.3347-0.14-1.5712-0.447-0.6183z"/> + </g> + <path id="path148" d="m221.47 74.408c0-6.3035-0.892-8.479-4.184-8.479-3.291 0-4.183 2.1755-4.183 8.479h8.367z" fill="#ef072d"/> + <g id="g150" fill="none"> + <path id="path152" d="m214.33 73.906c-0.614 0.6136 0.112 1.0599-0.502 1.785-0.614 0.7253-0.056 1.1157-0.558 1.7851s0.223 1.0042-0.335 1.7293c-0.557 0.7252 0.112 1.1715-0.502 1.7851-0.613 0.6136 0.112 1.1715-0.502 1.8409-0.613 0.6694 0.112 1.1156-0.502 1.7292-0.613 0.6137 0.112 1.2831-0.502 1.8966-0.613 0.6137 0.112 1.3946-0.558 2.1199-0.669 0.7251 0.112 1.2829-0.446 1.8408-0.558 0.5578-0.056 1.1156-0.446 1.5061-0.391 0.3905-0.446 0.9345-0.279 1.1715"/> + <path id="path154" d="m215.5 74.129c-0.557 0.7252 0.279 1.0599-0.223 1.6735-0.502 0.6137 0.223 0.8368-0.167 1.562s0.279 0.8925-0.223 1.6177 0.279 1.283-0.279 2.0082 0.279 1.1156-0.223 1.8409c-0.502 0.7251 0.223 1.1156-0.223 1.6735-0.447 0.5578 0.334 1.1156-0.223 1.785-0.558 0.6695 0.223 1.1715-0.224 1.7851-0.446 0.6136 0.168 1.283-0.223 1.785-0.39 0.5021 0.279 1.2273-0.279 1.8967s0.112 1.1157-0.223 1.562c-0.335 0.4462-0.599 1.1017-0.279 1.283"/> + <path id="path156" d="m217.29 74.799c-0.278 1.1663 0.391 2.2031 0 3.175-0.39 0.972 0.279 1.3608 0.056 2.1383-0.223 0.7776 0.279 1.3608-0.056 2.2031-0.334 0.8424 0.447 1.4903 0 2.5919-0.446 1.1016 0.288 1.3758 0 2.4623-0.334 1.2637 0.558 1.9331 0 2.8257-0.557 0.8925 0.503 1.1157 0.056 2.1197-0.446 1.0042 0.279 1.3946-0.056 2.3988"/> + <path id="path158" d="m220.25 73.906c0.614 0.6136-0.112 1.0599 0.502 1.785 0.614 0.7253 0.056 1.1157 0.558 1.7851s-0.223 1.0042 0.335 1.7293c0.557 0.7252-0.112 1.1715 0.502 1.7851 0.613 0.6136-0.112 1.1715 0.502 1.8409 0.613 0.6694-0.112 1.1156 0.502 1.7292 0.613 0.6137-0.112 1.2831 0.502 1.8966 0.613 0.6137-0.112 1.3946 0.558 2.1199 0.669 0.7251-0.112 1.2829 0.446 1.8408 0.558 0.5578 0.056 1.1156 0.446 1.5061 0.391 0.3905 0.447 0.9345 0.279 1.1715"/> + <path id="path160" d="m219.08 74.129c0.557 0.7252-0.279 1.0599 0.223 1.6735 0.502 0.6137-0.223 0.8368 0.167 1.562 0.391 0.7252-0.279 0.8925 0.223 1.6177s-0.279 1.283 0.279 2.0082-0.279 1.1156 0.223 1.8409c0.502 0.7251-0.223 1.1156 0.223 1.6735 0.447 0.5578-0.334 1.1156 0.224 1.785 0.557 0.6695-0.224 1.1715 0.223 1.7851 0.446 0.6136-0.168 1.283 0.223 1.785 0.39 0.5021-0.279 1.2273 0.279 1.8967s-0.112 1.1157 0.223 1.562c0.335 0.4462 0.6 1.1017 0.279 1.283"/> + </g> + <path id="path162" d="m213.11 74.408c0-6.3035 0.892-8.479 4.183-8.479-1.506 0-2.426 1.1713-2.677 1.9523s-0.112 0.7252 0.223 0.4184 0.167 0.3626-0.111 0.7252c-0.279 0.3626-0.558 1.3946-0.168 1.0599 0.391-0.3347 0.697 0.0558 0.279 0.6415s-0.781 1.9524-0.363 1.4783c0.419-0.4742 0.502 0.3068 0.252 0.6973-0.252 0.3905-0.224 0.7251 0 0.5578 0.223-0.1673 0.195 0.6415-0.028 0.9483h-1.59z"/> + <path id="path164" d="m220.83 74.046c0-4.9368-0.613-6.4151-1.84-6.9171-0.695-0.2847-0.715-0.2231-0.383 0.2231s0.281 1.0878-0.026 0.6415c-0.306-0.4462-0.408-0.5299-0.536-0.3346-0.128 0.1952 0.357 1.1156 0.715 1.9524 0.288 0.673 0.102 1.004-0.332 0.3346s-0.434-0.063-0.053 0.5021c0.489 0.7252 0.474 2.9286 0.474 3.849l1.981-0.251z"/> + <path id="path166" d="m217.29 75.329c1.311 0 2.746-0.2336 3.71-0.6079 1.144-0.4441 1.205-0.8343 0.809-1.3325-0.279-0.3507-0.893-0.1402-1.478 0.1169-0.586 0.2571-2.204 0.4208-3.041 0.4208-0.836 0-2.454-0.1637-3.04-0.4208-0.585-0.2571-1.199-0.4676-1.478-0.1169-0.396 0.4982-0.335 0.8884 0.809 1.3325 0.963 0.3743 2.399 0.6079 3.709 0.6079z" fill="#ef072d"/> + </g> + <g id="g1070" fill-rule="evenodd" fill="#b95a1e" transform="matrix(.89560 0 0 .89570 239.49 59.739)"> + <path id="path577" d="m779.41 912.6s-0.12 103.6 0 179.24c0.12 75.63 19.822 104.91 54.262 103.59 34.44-1.33 41.108-58.83 34.531-92.08-6.577-33.26-53.24-198.97-53.24-198.97l-35.553 8.222z" transform="matrix(.063084 -.040736 .038634 .066517 712.1 209.87)" stroke="#000" stroke-width="6.3772"/> + <path id="path576" d="m779.41 912.6s-0.12 103.6 0 179.24c0.12 75.63 19.822 104.91 54.262 103.59 34.44-1.33 41.108-58.83 34.531-92.08-6.577-33.26-53.24-198.97-53.24-198.97l-35.553 8.222z" transform="matrix(.072361 -.016199 .015363 .076299 725.15 182.35)" stroke="#000" stroke-width="6.3772"/> + <path id="path575" d="m779.41 912.6s-0.12 103.6 0 179.24c0.12 75.63 19.822 104.91 54.262 103.59 34.44-1.33 41.108-58.83 34.531-92.08-6.577-33.26-53.24-198.97-53.24-198.97l-35.553 8.222z" transform="matrix(.073974 0 0 .077999 736.23 168.42)" stroke="#000" stroke-width="6.3772"/> + <path id="path574" d="m779.53 255.12c159.57-1.394 177.16-35.432 177.16-35.432s35.43-70.866 17.716-88.584c-17.717-17.716-194.88-17.716-194.88-17.716v141.73z" transform="matrix(.045906 0 0 .077999 758.11 219.55)" stroke="#000" stroke-width="8.0953"/> + <path id="path570" d="m779.53 255.12c106.3 0 124.02-35.432 124.02-35.432s35.43-70.866 17.716-88.584c-17.717-17.716-141.73-17.716-141.73-17.716v141.73z" transform="matrix(.073974 0 0 .077999 736.23 214.02)" stroke="#000" stroke-width="6.3772"/> + <path id="path569" d="m779.53 255.12c88.583 0 141.73-35.433 141.73-35.433s35.43-70.866 17.716-88.584c-17.72-17.72-159.45-17.71-159.45-17.71v141.73z" transform="matrix(.073974 0 0 .077999 736.23 208.49)" stroke="#000" stroke-width="6.3772"/> + <path id="path554" d="m832.68 113.39s70.866-88.583 194.88-177.17c124.01-88.582 213.73-156.72 230.31-141.73 0 17.717-106.3 106.3-194.88 177.17-88.59 70.86-194.89 177.16-194.89 177.16l-35.433-35.433z" transform="matrix(.091804 0 0 .077999 721.87 168.58)" stroke="#000" stroke-width="5.7245"/> + <path id="path557" d="m832.68 113.39s70.05-52.025 204.38-124.02c132.23-63.918 318.89-53.15 318.89-35.433-17.71 17.716-177.16 17.716-283.46 70.866-101.48 50.729-204.39 124.01-204.39 124.01l-35.433-35.433z" transform="matrix(.091804 0 0 .077999 722.63 174.11)" stroke="#000" stroke-width="5.7245"/> + <path id="path558" d="m832.68 113.39s61.675-35.068 204.38-88.583c141.72-53.15 329.87-17.717 329.87 0-17.7 17.713-170.4 6.944-276.7 35.429-109.99 27.758-222.09 88.584-222.09 88.584l-35.433-35.433z" transform="matrix(.091804 0 0 .077999 722.7 183.63)" stroke="#000" stroke-width="5.7245"/> + <path id="path559" d="m832.68 113.39s71.079-70.976 222.47-88.583c152.3-17.72 276.3 88.583 276.3 106.29-17.7 17.72-159.5-77.972-265.7-64.286-112.67 13.654-197.69 82.006-197.69 82.006l-35.433-35.433z" transform="matrix(.091804 0 0 .077999 723.32 193.29)" stroke="#000" stroke-width="5.7245"/> + <path id="path568" d="m779.53 255.12c159.57-1.394 159.45-45.508 159.45-45.508s35.43-70.866 17.716-88.584c-17.717-17.716-177.16-7.64-177.16-7.64v141.73z" transform="matrix(.073974 0 0 .077999 736.23 201.59)" stroke="#000" stroke-width="6.3772"/> + <path id="path567" d="m779.53 255.12c159.57-1.394 177.16-35.432 177.16-35.432s35.43-70.866 17.716-88.584c-17.717-17.716-194.88-17.716-194.88-17.716v141.73z" transform="matrix(.073974 0 0 .077999 736.23 196.06)" stroke="#000" stroke-width="6.3772"/> + <path id="path565" d="m779.53 255.12c159.57-1.394 194.88-35.433 194.88-35.433s35.43-70.866 17.716-88.583c-17.717-17.716-212.6-17.716-212.6-17.716v141.73z" transform="matrix(.073974 0 0 .077999 736.23 189.15)" stroke="#000" stroke-width="6.3772"/> + <path id="path566" d="m779.53 255.12c159.57-1.394 212.6-35.433 212.6-35.433s17.714-70.866 0-88.583c-17.717-17.716-212.6-17.716-212.6-17.716v141.73z" transform="matrix(.073974 0 0 .077999 736.23 182.24)" stroke="#000" stroke-width="6.3772"/> + <path id="path560" d="m832.68 113.39s114.21-88.583 114.21-159.45c0-70.866-50.349-141.73-64.625-177.17 28.552 0 93.176 106.3 93.176 177.17 0 77.444-107.32 194.88-107.32 194.88l-35.433-35.433z" transform="matrix(.091804 0 0 .077999 720.08 162.89)" stroke="#000" stroke-width="5.7245"/> + <path id="path561" d="m832.68 113.39s-14.276-53.15-14.276-159.45c0-124.02 63.001-202.89 85.654-230.32 5.898 27.422-57.102 124.02-57.102 230.32 0 77.444 21.157 194.88 21.157 194.88l-35.433-35.433z" transform="matrix(.091804 0 0 .077999 720.08 162.89)" stroke="#000" stroke-width="5.7245"/> + <path id="path564" d="m779.53 255.12c159.57-1.394 212.6-35.433 212.6-35.433s0-70.866-17.716-88.583c-17.717-17.716-194.88-17.716-194.88-17.716v141.73z" transform="matrix(.073974 0 0 .077999 736.23 175.33)" stroke="#000" stroke-width="6.3772"/> + <path id="path563" d="m779.53 255.12c159.57-1.394 194.88-35.433 194.88-35.433s0-70.866-17.716-88.583c-17.717-17.716-177.16-17.716-177.16-17.716v141.73z" transform="matrix(.073974 0 0 .077999 736.23 168.42)" stroke="#000" stroke-width="6.3772"/> + <path id="path553" d="m318.9 1318.1c55.065-122.32 70.866-336.61 70.866-372.05 0-99.782-32.948-585.11-35.433-779.53s124.02-301.18 248.03-301.18c106.3 0 177.17 70.866 177.17 177.17h-53.15c0-70.866-53.15-124.02-124.02-124.02-106.3 0-187.99 83.739-194.88 248.03-7.605 189.89 21.316 682.94 17.717 814.96s-51.234 249.72-106.3 336.61z" transform="matrix(-.073974 0 0 .077999 851.56 168.42)" stroke="#fdc301" stroke-width="16.071"/> + <path id="path578" d="m779.41 912.6s-0.12 103.6 0 179.24c0.12 75.63 19.822 104.91 54.262 103.59 34.44-1.33 41.108-58.83 34.531-92.08-6.577-33.26-53.24-198.97-53.24-198.97l-35.553 8.222z" transform="matrix(-.063084 -.040736 -.038634 .066517 875.69 209.87)" stroke="#000" stroke-width="6.3772"/> + <path id="path562" d="m779.53 32.884c124.13 0.141 177.77 102.39 177.46 100.31l-35.734 33.347c-18.985 17.717-141.73 17.717-140.21 17.626l-1.52-151.29z" transform="matrix(.073974 0 0 .077999 736.23 168.42)" stroke="#000" stroke-width="6.3772"/> + <path id="path579" d="m779.41 912.6s-0.12 103.6 0 179.24c0.12 75.63 19.822 104.91 54.262 103.59 34.44-1.33 41.108-58.83 34.531-92.08-6.577-33.26-53.24-198.97-53.24-198.97l-35.553 8.222z" transform="matrix(-.072361 -.016199 -.015363 .076299 862.63 182.35)" stroke="#000" stroke-width="6.3772"/> + <path id="path580" d="m779.41 912.6s-0.12 103.6 0 179.24c0.12 75.63 19.822 104.91 54.262 103.59 34.44-1.33 41.108-58.83 34.531-92.08-6.577-33.26-53.24-198.97-53.24-198.97l-35.553 8.222z" transform="matrix(-.073974 0 0 .077999 851.55 168.42)" stroke="#000" stroke-width="6.3772"/> + <path id="path581" d="m779.53 255.12c159.57-1.394 177.16-35.432 177.16-35.432s35.43-70.866 17.716-88.584c-17.717-17.716-194.88-17.716-194.88-17.716v141.73z" transform="matrix(-.045906 0 0 .077999 829.67 219.55)" stroke="#000" stroke-width="8.0953"/> + <path id="path582" d="m779.53 255.12c106.3 0 124.02-35.432 124.02-35.432s35.43-70.866 17.716-88.584c-17.717-17.716-141.73-17.716-141.73-17.716v141.73z" transform="matrix(-.073974 0 0 .077999 851.55 214.02)" stroke="#000" stroke-width="6.3772"/> + <path id="path583" d="m779.53 255.12c88.583 0 141.73-35.433 141.73-35.433s35.43-70.866 17.716-88.584c-17.72-17.72-159.45-17.71-159.45-17.71v141.73z" transform="matrix(-.073974 0 0 .077999 851.55 208.49)" stroke="#000" stroke-width="6.3772"/> + <path id="path584" d="m832.68 113.39s70.866-88.583 194.88-177.17c124.01-88.582 213.73-156.72 230.31-141.73 0 17.717-106.3 106.3-194.88 177.17-88.59 70.86-194.89 177.16-194.89 177.16l-35.433-35.433z" transform="matrix(-.091804 0 0 .077999 865.91 168.58)" stroke="#000" stroke-width="5.7245"/> + <path id="path585" d="m832.68 113.39s70.05-52.025 204.38-124.02c132.23-63.918 318.89-53.15 318.89-35.433-17.71 17.716-177.16 17.716-283.46 70.866-101.48 50.729-204.39 124.01-204.39 124.01l-35.433-35.433z" transform="matrix(-.091804 0 0 .077999 865.16 174.11)" stroke="#000" stroke-width="5.7245"/> + <path id="path586" d="m832.68 113.39s61.675-35.068 204.38-88.583c141.72-53.15 329.87-17.717 329.87 0-17.7 17.713-170.4 6.944-276.7 35.429-109.99 27.758-222.09 88.584-222.09 88.584l-35.433-35.433z" transform="matrix(-.091804 0 0 .077999 865.09 183.63)" stroke="#000" stroke-width="5.7245"/> + <path id="path587" d="m832.68 113.39s71.079-70.976 222.47-88.583c152.3-17.72 276.3 88.583 276.3 106.29-17.7 17.72-159.5-77.972-265.7-64.286-112.67 13.654-197.69 82.006-197.69 82.006l-35.433-35.433z" transform="matrix(-.091804 0 0 .077999 864.47 193.29)" stroke="#000" stroke-width="5.7245"/> + <path id="path588" d="m779.53 255.12c159.57-1.394 159.45-45.508 159.45-45.508s35.43-70.866 17.716-88.584c-17.717-17.716-177.16-7.64-177.16-7.64v141.73z" transform="matrix(-.073974 0 0 .077999 851.55 201.59)" stroke="#000" stroke-width="6.3772"/> + <path id="path589" d="m779.53 255.12c159.57-1.394 177.16-35.432 177.16-35.432s35.43-70.866 17.716-88.584c-17.717-17.716-194.88-17.716-194.88-17.716v141.73z" transform="matrix(-.073974 0 0 .077999 851.55 196.06)" stroke="#000" stroke-width="6.3772"/> + <path id="path590" d="m779.53 255.12c159.57-1.394 194.88-35.433 194.88-35.433s35.43-70.866 17.716-88.583c-17.717-17.716-212.6-17.716-212.6-17.716v141.73z" transform="matrix(-.073974 0 0 .077999 851.55 189.15)" stroke="#000" stroke-width="6.3772"/> + <path id="path591" d="m779.53 255.12c159.57-1.394 212.6-35.433 212.6-35.433s17.714-70.866 0-88.583c-17.717-17.716-212.6-17.716-212.6-17.716v141.73z" transform="matrix(-.073974 0 0 .077999 851.55 182.24)" stroke="#000" stroke-width="6.3772"/> + <path id="path592" d="m832.68 113.39s114.21-88.583 114.21-159.45c0-70.866-50.349-141.73-64.625-177.17 28.552 0 93.176 106.3 93.176 177.17 0 77.444-107.32 194.88-107.32 194.88l-35.433-35.433z" transform="matrix(-.091804 0 0 .077999 867.71 162.89)" stroke="#000" stroke-width="5.7245"/> + <path id="path593" d="m832.68 113.39s-14.276-53.15-14.276-159.45c0-124.02 63.001-202.89 85.654-230.32 5.898 27.422-57.102 124.02-57.102 230.32 0 77.444 21.157 194.88 21.157 194.88l-35.433-35.433z" transform="matrix(-.091804 0 0 .077999 867.71 162.89)" stroke="#000" stroke-width="5.7245"/> + <path id="path594" d="m779.53 255.12c159.57-1.394 212.6-35.433 212.6-35.433s0-70.866-17.716-88.583c-17.717-17.716-194.88-17.716-194.88-17.716v141.73z" transform="matrix(-.073974 0 0 .077999 851.55 175.33)" stroke="#000" stroke-width="6.3772"/> + <path id="path595" d="m779.53 255.12c159.57-1.394 194.88-35.433 194.88-35.433s0-70.866-17.716-88.583c-17.717-17.716-177.16-17.716-177.16-17.716v141.73z" transform="matrix(-.073974 0 0 .077999 851.55 168.42)" stroke="#000" stroke-width="6.3772"/> + <path id="path597" d="m318.9 1318.1c55.065-122.32 70.866-336.61 70.866-372.05 0-99.782-32.948-585.11-35.433-779.53s124.02-301.18 248.03-301.18c106.3 0 177.17 70.866 177.17 177.17h-53.15c0-70.866-53.15-124.02-124.02-124.02-106.3 0-187.99 83.739-194.88 248.03-7.605 189.89 21.316 682.94 17.717 814.96s-51.234 249.72-106.3 336.61z" transform="matrix(.073974 0 0 .077999 736.22 168.42)" stroke="#fdc301" stroke-width="16.071"/> + <path id="path596" d="m779.53 32.884c124.13 0.141 177.77 102.39 177.46 100.31l-35.734 33.347c-18.985 17.717-141.73 17.717-140.21 17.626l-1.52-151.29z" transform="matrix(-.073974 0 0 .077999 851.55 168.42)" stroke="#000" stroke-width="6.3772"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/td.svg b/s/flag/td.svg new file mode 100755 index 0000000..64e2d6b --- /dev/null +++ b/s/flag/td.svg @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- +On October 30, 2003, Brett Roper dedicated to the public domain the +works "SVG graphic of Chad Flag.", "SVG graphic of El Salvador Flag.", +"SVG graphic of Sierra Leone Flag.", "SVG graphic of Peru Flag." Before +making the dedication, Brett Roper represented that Brett Roper owned all copyrights in the +work. By making the dedication, Brett Roper made an overt act +of relinquishment in perpetuity of all present and future rights under +copyright law, whether vested or contingent, in "SVG graphic of Chad +Flag.", "SVG graphic of El Salvador Flag.", "SVG graphic of Sierra Leone +Flag.", "SVG graphic of Peru Flag." + +Brett Roper understands that such relinquishment of all rights +includes the relinquishment of all rights to enforce (by lawsuit or +otherwise) those copyrights in the Work. + +Brett Roper recognizes that, once placed in the public domain, +"SVG graphic of Chad Flag.", "SVG graphic of El Salvador Flag.", "SVG +graphic of Sierra Leone Flag.", "SVG graphic of Peru Flag." may be +freely reproduced, +distributed, transmitted, used, +modified, built upon, or otherwise exploited by anyone for any +purpose, commercial or non-commercial, and in any way, including by +methods that have not yet been invented or conceived. +--> +<svg id="canada" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" fill-opacity="14.118" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" fill="#28ff09"> + <metadata id="metadata3698"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" fill-opacity="1"> + <rect id="rect555" height="480" width="213.97" y="0" x="0" fill="#000067"/> + <rect id="rect557" height="480" width="213.97" y="0" x="426.03" fill="#f00"/> + <rect id="rect556" height="480" width="212.06" y="0" x="213.97" fill="#ff0"/> + </g> +</svg> diff --git a/s/flag/tf.svg b/s/flag/tf.svg new file mode 100755 index 0000000..8759ca7 --- /dev/null +++ b/s/flag/tf.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3706"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.25 0 0 .9375 0 -.0000018493)"> + <rect id="rect171" height="512" width="512" y=".0000024116" x="0" fill="#fff"/> + <rect id="rect403" height="512" width="170.67" y=".0000024116" x="0" fill="#00267f"/> + <rect id="rect135" height="512" width="170.67" y=".0000024116" x="341.33" fill="#f31830"/> + </g> +</svg> diff --git a/s/flag/tg.svg b/s/flag/tg.svg new file mode 100755 index 0000000..d935528 --- /dev/null +++ b/s/flag/tg.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3717"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath7468" clipPathUnits="userSpaceOnUse"> + <rect id="rect7470" fill-opacity="0.67" height="512" width="682.67" y="-.000013091" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath7468)" fill-rule="evenodd" transform="matrix(.93750 0 0 .93750 0 .000012273)"> + <rect id="rect558" height="512" width="767.63" y="-.000013369" x="0" stroke-width="1pt" fill="#ffe300"/> + <rect id="rect555" height="102.81" width="767.63" y="208.14" x="0" stroke-width="1pt" fill="#118600"/> + <rect id="rect570" height="102.81" width="767.63" y=".24819" x="0" stroke-width="1pt" fill="#118600"/> + <rect id="rect554" height="310.71" width="306.51" y=".24813" x="0" stroke-width="1pt" fill="#d80000"/> + <path id="path567" d="m134.42 128.43c0-0.85625 18.836-53.083 18.836-53.083l17.124 52.227s57.365 1.7125 57.365 0.85625-45.378 34.248-45.378 34.248 21.404 59.933 20.549 58.221c-0.85625-1.7125-49.659-35.96-49.659-35.96s-49.658 34.248-48.802 34.248c0.85625 0 18.835-56.508 18.835-56.508l-44.522-33.392 55.652-0.85625z" fill="#fff"/> + <rect id="rect569" height="102.81" width="767.63" y="409.19" x="0" stroke-width="1pt" fill="#118600"/> + </g> +</svg> diff --git a/s/flag/th.svg b/s/flag/th.svg new file mode 100755 index 0000000..ebc66d6 --- /dev/null +++ b/s/flag/th.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3727"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag"> + <g id="g7387" fill-rule="evenodd" transform="scale(1.25 .9375)"> + <rect id="rect171" height="512" width="512" y="0" x="0" fill="#fff"/> + <rect id="rect403" height="170.67" width="512" y="173.38" x="0" fill="#001b9a"/> + <rect id="rect135" height="88" width="512" y=".044914" x="0" fill="#e70000"/> + <rect id="rect136" height="85.333" width="512" y="426.67" x="0" fill="#e70000"/> + </g> + </g> +</svg> diff --git a/s/flag/tj.svg b/s/flag/tj.svg new file mode 100755 index 0000000..8111960 --- /dev/null +++ b/s/flag/tj.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg3446" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3750"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs3448"> + <clipPath id="clipPath7362" clipPathUnits="userSpaceOnUse"> + <rect id="rect7364" fill-opacity="0.67" height="512" width="682.67" y=".000023337" x="-85.648"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath7362)" fill-rule="evenodd" transform="matrix(.93750 0 0 .93750 80.295 -.000021879)"> + <rect id="rect3450" height="512" width="1023.4" y=".000022212" x="-256" stroke-width="1pt" fill="#fff"/> + <rect id="rect3449" height="139.12" width="1022.6" y="372.43" x="-256" stroke-width="1pt" fill="#239f40"/> + <rect id="rect3452" height="139.12" width="1022.6" y=".000022212" x="-256" stroke-width="1pt" fill="#cd1738"/> + <polygon id="polygon3940" d="m 391.56052,256.53049 3.57095,11.242 11.56027,-0.24853 -9.58829,6.87015 3.80868,10.91768 -9.49685,-6.99602 -9.20637,6.99602 3.71892,-11.19393 -9.49854,-6.59389 11.79527,0.0778 z" points="391.56 256.53 395.13 267.77 406.69 267.52 397.1 274.39 400.91 285.31 391.42 278.32 382.21 285.31 385.93 274.12 376.43 267.52 388.22 267.6" transform="matrix(1.0307 0 0 1.0782 -243.7 -64.335)" fill="#ff0"/> + <polygon id="polygon3941" d="m 391.56052,256.53049 3.57095,11.242 11.56027,-0.24853 -9.58829,6.87015 3.80868,10.91768 -9.49685,-6.99602 -9.20637,6.99602 3.71892,-11.19393 -9.49854,-6.59389 11.79527,0.0778 z" points="391.56 256.53 395.13 267.77 406.69 267.52 397.1 274.39 400.91 285.31 391.42 278.32 382.21 285.31 385.93 274.12 376.43 267.52 388.22 267.6" transform="matrix(1.0307 0 0 1.0782 -255.54 -12.408)" fill="#ff0"/> + <polygon id="polygon3942" d="m 391.56052,256.53049 3.57095,11.242 11.56027,-0.24853 -9.58829,6.87015 3.80868,10.91768 -9.49685,-6.99602 -9.20637,6.99602 3.71892,-11.19393 -9.49854,-6.59389 11.79527,0.0778 z" points="391.56 256.53 395.13 267.77 406.69 267.52 397.1 274.39 400.91 285.31 391.42 278.32 382.21 285.31 385.93 274.12 376.43 267.52 388.22 267.6" transform="matrix(1.0307 0 0 1.0782 -203.62 -106.7)" fill="#ff0"/> + <polygon id="polygon3943" d="m 391.56052,256.53049 3.57095,11.242 11.56027,-0.24853 -9.58829,6.87015 3.80868,10.91768 -9.49685,-6.99602 -9.20637,6.99602 3.71892,-11.19393 -9.49854,-6.59389 11.79527,0.0778 z" points="391.56 256.53 395.13 267.77 406.69 267.52 397.1 274.39 400.91 285.31 391.42 278.32 382.21 285.31 385.93 274.12 376.43 267.52 388.22 267.6" transform="matrix(1.0307 0 0 1.0782 -149.64 -120.82)" fill="#ff0"/> + <polygon id="polygon3944" d="m 391.56052,256.53049 3.57095,11.242 11.56027,-0.24853 -9.58829,6.87015 3.80868,10.91768 -9.49685,-6.99602 -9.20637,6.99602 3.71892,-11.19393 -9.49854,-6.59389 11.79527,0.0778 z" points="391.56 256.53 395.13 267.77 406.69 267.52 397.1 274.39 400.91 285.31 391.42 278.32 382.21 285.31 385.93 274.12 376.43 267.52 388.22 267.6" transform="matrix(1.0307 0 0 1.0782 -95.208 -106.7)" fill="#ff0"/> + <polygon id="polygon3945" d="m 391.56052,256.53049 3.57095,11.242 11.56027,-0.24853 -9.58829,6.87015 3.80868,10.91768 -9.49685,-6.99602 -9.20637,6.99602 3.71892,-11.19393 -9.49854,-6.59389 11.79527,0.0778 z" points="391.56 256.53 395.13 267.77 406.69 267.52 397.1 274.39 400.91 285.31 391.42 278.32 382.21 285.31 385.93 274.12 376.43 267.52 388.22 267.6" transform="matrix(1.0307 0 0 1.0782 -55.124 -64.107)" fill="#ff0"/> + <polygon id="polygon3946" d="m 391.56052,256.53049 3.57095,11.242 11.56027,-0.24853 -9.58829,6.87015 3.80868,10.91768 -9.49685,-6.99602 -9.20637,6.99602 3.71892,-11.19393 -9.49854,-6.59389 11.79527,0.0778 z" points="391.56 256.53 395.13 267.77 406.69 267.52 397.1 274.39 400.91 285.31 391.42 278.32 382.21 285.31 385.93 274.12 376.43 267.52 388.22 267.6" transform="matrix(1.0307 0 0 1.0782 -43.509 -12.408)" fill="#ff0"/> + <path id="path3952" d="m516.09 230.63c0 9.2551-9.3391 16.758-20.859 16.758s-20.859-7.5027-20.859-16.758c0-9.2551 9.3391-16.758 20.859-16.758s20.859 7.5028 20.859 16.758z" transform="matrix(.99015 0 0 .92977 -236.29 21.42)" fill="#ff0"/> + <rect id="rect3953" height="54.916" width="11.796" y="246.85" x="248.11" fill="#ff0"/> + <path id="path4004" d="m357.58 297.62c-5.1338 10.894-12.042 14.76-23.319 14.458-19.735 0.46793-24.195-14.028-26.768-20.427-6.9756 9.1937-10.941 12.848-22.52 12.627-16.498 0.36898-24.827-9.0216-30.977-26.776-6.1501 17.641-14.479 27.032-30.977 26.663-11.58 0.2216-15.545-3.4332-22.52-12.627-2.5726 6.3995-7.0323 20.895-26.768 20.427-11.277 0.30199-18.185-3.5641-22.807-14.61 5.3647 15.426 10.679 24.058 27.152 24.596 14.92 0.17933 21.753-8.4619 24.986-14.372 10.749 5.71 11.854 6.9777 27.093 6.6201 11.376-0.36589 17.91-7.7981 23.797-14.87 5.8872 7.0715 12.422 14.504 23.797 14.87 15.24 0.35765 16.345-0.91009 27.093-6.6201 3.2332 5.9099 10.066 14.551 24.986 14.372 16.473-0.53802 21.788-9.17 27.751-24.331z" fill="#ff0"/> + <path id="path4048" d="m204.17 313.52 5.3853 7.4632 10.326-0.30302-7.9692 9.0308-15.601 0.39887-4.8803-6.5366 9.0112-1.4564 3.7836-8.5753" fill="#ff0"/> + <path id="path4049" d="m303.62 313.52-5.3853 7.4632-10.326-0.30302 7.9692 9.0308 15.601 0.39888 4.8803-6.5366-9.0112-1.4564-3.7836-8.5752" fill="#ff0"/> + <path id="path4053" d="m241.02 318.31c0-0.0402 7.0859 0.0402 7.0859 0.0402l5.9584-4.7504 5.8172 4.6906 7.0261 0.101-6.3212 9.34h-13.286l-6.2799-9.4214z" fill="#ff0"/> + <path id="path4100" d="m330.66 351.58c-27.551-5.6883-45.991-8.4866-76.696-8.4866s-49.145 2.7983-76.522 8.4186l-0.0381-11.879c27.415-5.6718 45.855-8.4712 76.56-8.4712s49.145 2.7993 76.56 8.4712l0.13605 11.947z" fill="#ff0"/> + <path id="path4102" d="m505.31 228.88c0 3.2792-4.687 5.9375-10.469 5.9375-5.7817 0-10.469-2.6583-10.469-5.9375s4.687-5.9375 10.469-5.9375c5.7817 0 10.469 2.6583 10.469 5.9375z" transform="matrix(1.0307 0 0 1.0307 -256 .000022212)" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/tk.svg b/s/flag/tk.svg new file mode 100755 index 0000000..8def107 --- /dev/null +++ b/s/flag/tk.svg @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg1" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3772"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs3"> + <clipPath id="clipPath7218" clipPathUnits="userSpaceOnUse"> + <rect id="rect7220" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath7218)"> + <rect id="rect124" height="480" width="960" y="0" x="0" fill="#006"/> + <g id="g7141" transform="scale(.66667)"> + <path id="path146" d="m0 0v26.833l426.33 213.17h53.67v-26.83l-426.33-213.17h-53.67zm480 0v26.832l-426.33 213.17h-53.67v-26.83l426.33-213.17h53.67z" fill="#fff"/> + <path id="path136" stroke-width="1pt" fill="#fff" d="m200 0v240h80v-240h-80zm-200 80v80h480v-80h-480z"/> + <path id="path141" d="m0 96v48h480v-48h-480zm216-96v240h48v-240h-48z" stroke-width="1pt" fill="#c00"/> + <path id="path150" d="m0 240 160-80h35.777l-160 80h-35.78zm0-240 160 80h-35.78l-124.22-62.111v-17.889zm284.22 80 160-80h35.78l-160 80h-35.78zm195.78 160-160-80h35.78l124.22 62.11v17.89z" fill="#c00"/> + </g> + <g id="g5930" transform="matrix(.88070 0 0 .88070 -192.09 65.009)"> + <g id="g141" transform="scale(8.5333)"> + <path id="path133" d="m90 7.995 0.89919 2.7674h2.9098l-2.3541 1.7104 0.89919 2.7674-2.354-1.709-2.3541 1.7104 0.89919-2.7674-2.3541-1.7104h2.9098z" fill="#fff"/> + <path id="path132" d="m90 8.8456 0.7082 2.1796h2.2918l-1.8541 1.3471 0.7082 2.1796-1.854-1.347-1.854 1.347 0.708-2.18-1.854-1.347h2.2918z" fill="#c00"/> + </g> + <g id="g132" transform="matrix(8.5333 0 0 8.5333 -118.3 119.03)"> + <path id="path134" d="m90 7.995 0.89919 2.7674h2.9098l-2.3541 1.7104 0.89919 2.7674-2.354-1.709-2.3541 1.7104 0.89919-2.7674-2.3541-1.7104h2.9098z" fill="#fff"/> + <path id="path135" d="m90 8.8456 0.7082 2.1796h2.2918l-1.8541 1.3471 0.7082 2.1796-1.854-1.347-1.854 1.347 0.708-2.18-1.854-1.347h2.2918z" fill="#c00"/> + </g> + <g id="g139" transform="matrix(8.5333 0 0 8.5333 101.4 -14.251)"> + <path id="path138" d="m90 20.648 0.75263 2.3164h2.4356l-1.9704 1.4316 0.75263 2.3164-1.972-1.432-1.9704 1.4316 0.75263-2.3164-1.9704-1.4316h2.4356z" fill="#fff"/> + <path id="path137" d="m90 21.371 0.59017 1.8164h1.9098l-1.5451 1.1226 0.59017 1.8164-1.545-1.122-1.5451 1.1226 0.59017-1.8164-1.5451-1.1226h1.9098z" fill="#c00"/> + </g> + <path id="path142" d="m768 372.02 8.4369 25.966h27.302l-22.088 16.048 8.4369 25.966-22.09-16.06-22.088 16.048 8.4369-25.966-22.088-16.048h27.302z" fill-rule="evenodd" fill="#fff"/> + <path id="path143" d="m768 378.2 7.0506 21.699h22.816l-18.459 13.411 7.0506 21.699-18.46-13.41-18.459 13.411 7.0506-21.699-18.459-13.411h22.816z" fill-rule="evenodd" fill="#c00"/> + </g> + </g> +</svg> diff --git a/s/flag/tl.svg b/s/flag/tl.svg new file mode 100755 index 0000000..3068fba --- /dev/null +++ b/s/flag/tl.svg @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3781"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath7035" clipPathUnits="userSpaceOnUse"> + <rect id="rect7037" fill-opacity="0.67" height="512" width="682.67" y=".000017120" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath7035)" fill-rule="evenodd" transform="matrix(.93750 0 0 .93750 0 -.000016050)"> + <rect id="rect672" height="512" width="1031.2" y=".000017855" x="0" stroke-width="1pt" fill="#cb000f"/> + <path id="path671" d="m0 0.000033605c3.2337 0 512 256.72 512 256.72l-512 255.28v-512z" fill="#f8c00c"/> + <path id="path670" d="m0 0.000033605c2.1513 0 340.62 256.72 340.62 256.72l-340.62 255.28v-512z"/> + <path id="path663" d="m187.71 298.16-60.813-13.478-31.072 52.839-4.8613-59.677-60.753-13.372 54.84-24.817-3.2916-59.385 40.235 43.39 55.341-25.232-28.827 53.899 39.203 45.835z" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/tm.svg b/s/flag/tm.svg new file mode 100755 index 0000000..54ce6d9 --- /dev/null +++ b/s/flag/tm.svg @@ -0,0 +1,325 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4074"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath6977" clipPathUnits="userSpaceOnUse"> + <rect id="rect6979" fill-opacity="0.67" height="512" width="682.67" y="-.0000056851" x="42.666"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath6977)" transform="matrix(.93750 0 0 .93750 -40 .0000053298)"> + <rect id="rect1280" height="512" width="768" y=".00021263" x="0" stroke-width="1pt" fill="#004e00"/> + <g id="g1418" stroke-width="1pt" transform="matrix(1.0321 0 0 1.0321 0 .0000023113)"> + <path id="path737" d="m356.1 405.71h14.173" transform="matrix(.96528 0 0 1.1242 -91.267 -289.56)" fill="#ffef00"/> + <path id="path575" d="m154.29-5.5797c-51.64 4.8457-87.232 50.915-88.113 86.252-2.403 33.898 20.955 74.868 74.793 93.588-71.273-9.92-108.97-46.26-107.92-94.872 5.691-58.166 75.96-97.496 121.24-84.968z" transform="matrix(-.49370 -.30090 .31724 -.51674 333.06 176.76)" fill="#fff"/> + <polygon id="polygon570" transform="matrix(.44846 0 0 .46139 213.66 16.708)" points="199.45 109.59 211.58 109.74 201.98 117.15 205.58 128.74 205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165" fill="#feffff"/> + <polygon id="polygon1529" transform="matrix(.44846 0 0 .46139 186.81 50.369)" points="199.45 109.59 211.58 109.74 201.98 117.15 205.58 128.74 205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165" fill="#feffff"/> + <polygon id="polygon1530" transform="matrix(.44846 0 0 .46139 188.58 23.802)" points="199.45 109.59 211.58 109.74 201.98 117.15 205.58 128.74 205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165" fill="#feffff"/> + <polygon id="polygon1531" transform="matrix(.44846 0 0 .46139 188.58 -2.7804)" points="199.45 109.59 211.58 109.74 201.98 117.15 205.58 128.74 205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165" fill="#feffff"/> + <polygon id="polygon1532" transform="matrix(.44846 0 0 .46139 158.74 30.888)" points="199.45 109.59 211.58 109.74 201.98 117.15 205.58 128.74 205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165" fill="#feffff"/> + </g> + <g id="g3186" transform="matrix(1.0321 0 0 1.0321 0 .0000023113)"> + <rect id="rect1002" height="496.06" width="159.45" y="-0.000007" x="46.063" stroke-width="1pt" fill="#980000"/> + <g id="g1201" transform="matrix(0.375 0 0 0.5 -54.257 -146.16)" stroke-width="1pt" fill="#e69900"> + <path id="path557" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789-17.793-17.24-7.01 6.61 3.543 3.543-3.543 3.543-24.803-24.803 3.543-3.543 7.087 7.087 3.543-3.544-10.63-10.63 3.544-3.543-17.577-17.716v-7.087l24.663 24.803-3.543 3.543 10.63 10.63-7.087 7.087 7.087 7.086 10.63-10.629 24.943 25.225-24.943 24.381-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="translate(1.6319 -54.921)"/> + <path id="path559" d="m269.29 517.32 3.544 7.086v10.63h10.63l7.086 3.544-7.086 3.543h-10.63v10.63l-3.544 7.087v-42.52z" transform="translate(-1.7713 -54.921)"/> + </g> + <g id="g1204" transform="matrix(0.375 0 0 0.5 -54.257 -61.121)" stroke-width="1pt" fill="#e69900"> + <path id="path1205" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789-17.793-17.24-7.01 6.61 3.543 3.543-3.543 3.543-24.803-24.803 3.543-3.543 7.087 7.087 3.543-3.544-10.63-10.63 3.544-3.543-17.577-17.716v-7.087l24.663 24.803-3.543 3.543 10.63 10.63-7.087 7.087 7.087 7.086 10.63-10.629 24.943 25.225-24.943 24.381-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="translate(1.6319 -54.921)"/> + <path id="path1206" d="m269.29 517.32 3.544 7.086v10.63h10.63l7.086 3.544-7.086 3.543h-10.63v10.63l-3.544 7.087v-42.52z" transform="translate(-1.7713 -54.921)"/> + </g> + <g id="g1207" transform="matrix(0.375 0 0 0.5 -54.256 23.919)" stroke-width="1pt" fill="#e69900"> + <path id="path1208" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789-17.793-17.24-7.01 6.61 3.543 3.543-3.543 3.543-24.803-24.803 3.543-3.543 7.087 7.087 3.543-3.544-10.63-10.63 3.544-3.543-17.577-17.716v-7.087l24.663 24.803-3.543 3.543 10.63 10.63-7.087 7.087 7.087 7.086 10.63-10.629 24.943 25.225-24.943 24.381-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="translate(1.6319 -54.921)"/> + <path id="path1209" d="m269.29 517.32 3.544 7.086v10.63h10.63l7.086 3.544-7.086 3.543h-10.63v10.63l-3.544 7.087v-42.52z" transform="translate(-1.7713 -54.921)"/> + </g> + <g id="g1210" transform="matrix(0.375 0 0 0.5 -54.256 103.64)" stroke-width="1pt" fill="#e69900"> + <path id="path1211" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789-17.793-17.24-7.01 6.61 3.543 3.543-3.543 3.543-24.803-24.803 3.543-3.543 7.087 7.087 3.543-3.544-10.63-10.63 3.544-3.543-17.577-17.716v-7.087l24.663 24.803-3.543 3.543 10.63 10.63-7.087 7.087 7.087 7.086 10.63-10.629 24.943 25.225-24.943 24.381-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="translate(1.6319 -54.921)"/> + <path id="path1212" d="m269.29 517.32 3.544 7.086v10.63h10.63l7.086 3.544-7.086 3.543h-10.63v10.63l-3.544 7.087v-42.52z" transform="translate(-1.7713 -54.921)"/> + </g> + <g id="g1213" transform="matrix(-0.375 0 0 0.5 305.83 -146.16)" stroke-width="1pt" fill="#e69900"> + <path id="path1214" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789-17.793-17.24-7.01 6.61 3.543 3.543-3.543 3.543-24.803-24.803 3.543-3.543 7.087 7.087 3.543-3.544-10.63-10.63 3.544-3.543-17.577-17.716v-7.087l24.663 24.803-3.543 3.543 10.63 10.63-7.087 7.087 7.087 7.086 10.63-10.629 24.943 25.225-24.943 24.381-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="translate(1.6319 -54.921)"/> + <path id="path1215" d="m269.29 517.32 3.544 7.086v10.63h10.63l7.086 3.544-7.086 3.543h-10.63v10.63l-3.544 7.087v-42.52z" transform="translate(-1.7713 -54.921)"/> + </g> + <g id="g1216" transform="matrix(-0.375 0 0 0.5 306.27 -61.12)" stroke-width="1pt" fill="#e69900"> + <path id="path1217" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789-17.793-17.24-7.01 6.61 3.543 3.543-3.543 3.543-24.803-24.803 3.543-3.543 7.087 7.087 3.543-3.544-10.63-10.63 3.544-3.543-17.577-17.716v-7.087l24.663 24.803-3.543 3.543 10.63 10.63-7.087 7.087 7.087 7.086 10.63-10.629 24.943 25.225-24.943 24.381-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="translate(1.6319 -54.921)"/> + <path id="path1218" d="m269.29 517.32 3.544 7.086v10.63h10.63l7.086 3.544-7.086 3.543h-10.63v10.63l-3.544 7.087v-42.52z" transform="translate(-1.7713 -54.921)"/> + </g> + <g id="g1219" transform="matrix(-0.375 0 0 0.5 305.83 23.919)" stroke-width="1pt" fill="#e69900"> + <path id="path1220" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789-17.793-17.24-7.01 6.61 3.543 3.543-3.543 3.543-24.803-24.803 3.543-3.543 7.087 7.087 3.543-3.544-10.63-10.63 3.544-3.543-17.577-17.716v-7.087l24.663 24.803-3.543 3.543 10.63 10.63-7.087 7.087 7.087 7.086 10.63-10.629 24.943 25.225-24.943 24.381-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="translate(1.6319 -54.921)"/> + <path id="path1221" d="m269.29 517.32 3.544 7.086v10.63h10.63l7.086 3.544-7.086 3.543h-10.63v10.63l-3.544 7.087v-42.52z" transform="translate(-1.7713 -54.921)"/> + </g> + <g id="g1222" transform="matrix(-0.375 0 0 0.5 305.83 103.64)" stroke-width="1pt" fill="#e69900"> + <path id="path1223" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789-17.793-17.24-7.01 6.61 3.543 3.543-3.543 3.543-24.803-24.803 3.543-3.543 7.087 7.087 3.543-3.544-10.63-10.63 3.544-3.543-17.577-17.716v-7.087l24.663 24.803-3.543 3.543 10.63 10.63-7.087 7.087 7.087 7.086 10.63-10.629 24.943 25.225-24.943 24.381-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="translate(1.6319 -54.921)"/> + <path id="path1224" d="m269.29 517.32 3.544 7.086v10.63h10.63l7.086 3.544-7.086 3.543h-10.63v10.63l-3.544 7.087v-42.52z" transform="translate(-1.7713 -54.921)"/> + </g> + <g id="g1230" transform="matrix(.75 0 0 1 46.063 .00023651)" stroke-width="1pt" fill="#e69900"> + <path id="path1226" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789 7.227-0.001-24.943 24.804-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="matrix(0.5 0 0 0.5 -132.94 -269.29)"/> + <path id="path1227" d="m269.29 538.58h21.26l-7.086 3.543h-10.63v10.63l-3.544 7.087v-21.26z" transform="matrix(0.5 0 0 0.5 -134.64 -269.29)"/> + </g> + <g id="g1233" transform="matrix(-.75 0 0 1 205.51 .00022125)" stroke-width="1pt" fill="#e69900"> + <path id="path1234" d="m265.89 605.9v-7.086l17.577-17.717-3.544-3.543 10.63-10.63-3.543-3.543-7.087 7.086-3.543-3.543 24.803-24.803 3.543 3.543-3.543 3.544 7.304 7.159 17.499-17.789 7.227-0.001-24.943 24.804-10.63-10.63-7.087 7.087 7.087 7.086-10.63 10.63 3.543 3.543-24.663 24.803z" transform="matrix(0.5 0 0 0.5 -132.94 -269.29)"/> + <path id="path1235" d="m269.29 538.58h21.26l-7.086 3.543h-10.63v10.63l-3.544 7.087v-21.26z" transform="matrix(0.5 0 0 0.5 -134.64 -269.29)"/> + </g> + <path id="path1237" d="m63.64 485.46s11.048-14.584 38.891-19.003c27.842-4.42 32.704 9.723 48.613 9.723 15.91 0 41.101-9.723 41.101-9.723s-25.191 18.561-44.636 18.119c-19.446-0.441-26.075-9.722-45.962-8.396-19.888 1.325-38.007 9.722-38.007 9.28z" transform="matrix(.51776 0 0 .68870 79.56 154.66)" stroke-width="1pt" fill="#e69900"/> + <path id="path1238" d="m63.64 485.46s11.048-14.584 38.891-19.003c27.842-4.42 32.704 9.723 48.613 9.723 15.91 0 41.101-9.723 41.101-9.723s-25.191 18.561-44.636 18.119c-19.446-0.441-26.075-9.722-45.962-8.396-19.888 1.325-38.007 9.722-38.007 9.28z" transform="matrix(-.51776 0 0 .68870 173.29 154.66)" stroke-width="1pt" fill="#e69900"/> + <g id="g1245" transform="matrix(.75 0 0 1 46.063 .00023651)" stroke-width="1pt" fill="#e69900"> + <path id="path1239" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.63820 0 0 .54658 -101.02 241.1)"/> + <path id="path1240" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.62445 .13174 -.11283 .53481 -61.849 202.12)"/> + <path id="path1241" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.60441 .20491 -.17550 .51764 -40.019 179.26)"/> + <path id="path1242" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.56534 .29612 -.25361 .48419 -4.6897 157.92)"/> + <path id="path1243" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.51695 .37425 -.32052 .44274 30.655 142.75)"/> + <path id="path1244" d="m259.25 409.98c26.536 7.115 24.649 14.722 0.771 24.058-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 28.997-18.64 39.447-16.544z" transform="matrix(.084663 .44011 -.38018 .12856 163.19 244.99)"/> + </g> + <g id="g1252" transform="matrix(-.75 0 0 1 206.07 1.3261)" stroke-width="1pt" fill="#e69900"> + <path id="path1253" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.63820 0 0 .54658 -101.02 241.1)"/> + <path id="path1254" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.62445 .13174 -.11283 .53481 -61.849 202.12)"/> + <path id="path1255" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.60441 .20491 -.17550 .51764 -40.019 179.26)"/> + <path id="path1256" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.56534 .29612 -.25361 .48419 -4.6897 157.92)"/> + <path id="path1257" d="m256.77 423.14c-2.652-4.861-9.281-26.074-5.746-28.726 5.304-1.767 19.446 19.888 18.121 39.334-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 19.888-5.303 27.843-3.094z" transform="matrix(.51695 .37425 -.32052 .44274 30.655 142.75)"/> + <path id="path1258" d="m259.25 409.98c26.536 7.115 24.649 14.722 0.771 24.058-9.281 4.419-40.659-1.768-40.218-7.514 2.21-7.955 28.997-18.64 39.447-16.544z" transform="matrix(.084663 .44011 -.38018 .12856 163.19 244.99)"/> + </g> + <g id="g2143" transform="matrix(.96875 0 0 1.2258 182.42 -74.639)"> + <path id="path1848" d="m-3.5433 290.55h-5.3149v3.543h-5.315v3.543h-21.26l-3.5433 3.544 1.7717 1.771h8.8582l1.7717-1.771h-8.8583l1.7717-1.772h12.402l-5.315 5.315h-12.402l-3.5433-1.772-3.5434 1.771-12.402 0.001-5.3151-5.317 12.402 0.002 1.7717 1.772-8.8583-0.002 1.7717 1.773h8.8583l1.7716-1.771-3.5433-3.544h-19.488v-3.543h-5.315v-3.543h-5.315v-15.945h5.315v-3.543h5.315v-3.543h19.488l3.5433-3.544-1.7716-1.771h-8.8583l-1.7717 1.773 8.8583-0.002-1.7717 1.772-12.402 0.002 5.3151-5.317 12.402 0.001 3.5434 1.771 3.5433-1.772h12.402l5.315 5.315h-12.402l-1.7717-1.772h8.8583l-1.7717-1.771h-8.8582l-1.7717 1.771 3.5433 3.544h21.26v3.543h5.315v3.543h5.3149v15.945z" transform="matrix(1.4884 0 0 1.24 3.5021 -39.474)" stroke="#000" stroke-width=".13333" fill="#980000"/> + <path id="path560" d="m375.59 499.67v24.803h10.629v7.019h10.63v7.087h35.433l14.174 10.63 14.173-10.63h38.976v-7.019l10.63-0.068v-7.087h10.63v-24.803h-10.63v-7.086l-10.63 0.068v-7.155h-38.976l-14.173-10.63-14.174 10.63h-35.433v7.155h-10.63v7.086h-10.629z" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" stroke="#e69900" stroke-width="1.0667pt" fill="#004e00"/> + <path id="path561" d="m425.2 492.52-21.26 17.716v-17.716h21.26z" transform="matrix(.74419 0 0 0.62 -392.03 -8.718)" stroke-width="1pt" fill="#980000"/> + <path id="path562" d="m425.2 492.52-21.26 17.717v-17.717h21.26z" transform="matrix(-.74419 0 0 0.62 272.46 -8.7184)" stroke-width="1pt" fill="#980000"/> + <path id="path563" d="m425.2 492.52-21.26 17.716v-17.716h21.26z" transform="matrix(.74419 0 0 -0.62 -392.03 630.57)" stroke-width="1pt" fill="#980000"/> + <path id="path564" d="m425.2 492.52-21.26 17.717v-17.717h21.26z" transform="matrix(-.74418 0 0 -0.62 272.46 630.57)" stroke-width="1pt" fill="#980000"/> + <path id="path565" d="m474.8 506.69-7.086 7.087h14.173l-7.087-7.087z" transform="matrix(.74419 0 0 0.62 -392.03 -10.915)" stroke-width="1pt" fill="#980000"/> + <path id="path566" d="m418.11 506.69-7.086 7.087h14.173l-7.087-7.087z" transform="matrix(.74419 0 0 0.62 -392.03 -10.915)" stroke-width="1pt" fill="#980000"/> + <path id="path567" d="m418.11 506.69-7.086 7.087h14.173l-7.087-7.087z" transform="matrix(.74419 0 0 -0.62 -392.03 632.77)" stroke-width="1pt" fill="#980000"/> + <path id="path568" d="m418.11 506.69-7.086 7.087h14.173l-7.087-7.087z" transform="matrix(.74419 0 0 -0.62 -349.84 632.77)" stroke-width="1pt" fill="#980000"/> + <path id="path569" d="m418.11 506.69-7.086 7.087h14.173l-7.087-7.087z" transform="matrix(.74419 0 0 -0.62 -370.94 643.75)" stroke-width="1pt" fill="#e69900"/> + <path id="path570" d="m418.11 506.69-7.086 7.087h14.173l-7.087-7.087z" transform="matrix(.74419 0 0 -0.62 -370.94 621.78)" stroke-width="1pt" fill="#e69900"/> + <path id="path571" d="m418.11 506.69-7.086 7.087h14.173l-7.087-7.087z" transform="matrix(.74419 0 0 0.62 -370.94 -21.899)" stroke-width="1pt" fill="#e69900"/> + <path id="path572" d="m418.11 506.69-7.086 7.087h14.173l-7.087-7.087z" transform="matrix(.74419 0 0 0.62 -370.94 .069252)" stroke-width="1pt" fill="#e69900"/> + <rect id="rect579" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="14.173" stroke="#000" y="506.69" x="467.72" stroke-width=".13333" fill="#e69900"/> + <rect id="rect592" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="7.0866" stroke="#000" y="510.24" x="414.57" stroke-width=".13333" fill="#c00"/> + <rect id="rect593" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="7.0866" stroke="#000" y="510.24" x="471.26" stroke-width=".13333" fill="#c00"/> + <rect id="rect595" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5432" width="14.173" stroke="#000" y="488.98" x="439.37" stroke-width=".13333" fill="#900"/> + <rect id="rect596" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5432" width="14.173" stroke="#000" y="496.06" x="439.37" stroke-width=".13333" fill="#900"/> + <rect id="rect597" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5432" width="21.26" stroke="#000" y="492.52" x="435.83" stroke-width=".13333" fill="#900"/> + <rect id="rect598" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5432" width="14.173" stroke="#000" y="524.41" x="439.37" stroke-width=".13333" fill="#900"/> + <rect id="rect599" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5432" width="14.173" stroke="#000" y="531.5" x="439.37" stroke-width=".13333" fill="#900"/> + <rect id="rect600" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5432" width="21.26" stroke="#000" y="527.95" x="435.83" stroke-width=".13333" fill="#900"/> + <rect id="rect601" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="14.173" stroke="#000" y="513.78" x="467.72" stroke-width=".13333" fill="#e69900"/> + <rect id="rect602" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="14.173" stroke="#000" y="506.69" x="411.02" stroke-width=".13333" fill="#e69900"/> + <rect id="rect603" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="14.173" stroke="#000" y="513.78" x="411.02" stroke-width=".13333" fill="#e69900"/> + <rect id="rect604" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="7.0866" stroke="#000" y="510.24" x="407.48" stroke-width=".13333" fill="#e69900"/> + <rect id="rect605" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="7.0866" stroke="#000" y="510.24" x="421.65" stroke-width=".13333" fill="#e69900"/> + <rect id="rect606" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="7.0866" stroke="#000" y="510.24" x="464.17" stroke-width=".13333" fill="#e69900"/> + <rect id="rect607" transform="matrix(.74419 0 0 0.62 -392.03 -6.521)" height="3.5433" width="7.0866" stroke="#000" y="510.24" x="478.35" stroke-width=".13333" fill="#e69900"/> + <ellipse id="path615" fill="#fff" transform="matrix(.74419 0 0 0.62 -374.14 -38.912)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path616" fill="#fff" transform="matrix(.74419 0 0 0.62 -367.57 -38.912)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path617" fill="#fff" transform="matrix(.74419 0 0 0.62 -361 -38.958)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path618" fill="#fff" transform="matrix(.74419 0 0 0.62 -371.51 -41.102)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path619" fill="#fff" transform="matrix(.74419 0 0 0.62 -363.68 -41.148)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path620" fill="#fff" transform="matrix(.74419 0 0 0.62 -371.57 -36.768)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path621" fill="#fff" transform="matrix(.74419 0 0 0.62 -363.68 -36.677)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path622" fill="#fff" transform="matrix(.74419 0 0 0.62 -353.17 -49.999)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path623" fill="#fff" transform="matrix(.74419 0 0 0.62 -346.59 -49.999)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path624" fill="#fff" transform="matrix(.74419 0 0 0.62 -340.02 -50.045)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path625" fill="#fff" transform="matrix(.74419 0 0 0.62 -350.54 -52.189)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path626" fill="#fff" transform="matrix(.74419 0 0 0.62 -342.71 -52.235)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path627" fill="#fff" transform="matrix(.74419 0 0 0.62 -350.59 -47.855)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path628" fill="#fff" transform="matrix(.74419 0 0 0.62 -342.71 -47.764)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path629" fill="#fff" transform="matrix(.74419 0 0 0.62 -374.2 -60.904)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path630" fill="#fff" transform="matrix(.74419 0 0 0.62 -367.62 -60.904)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path631" fill="#fff" transform="matrix(.74419 0 0 0.62 -361.05 -60.949)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path632" fill="#fff" transform="matrix(.74419 0 0 0.62 -371.57 -63.094)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path633" fill="#fff" transform="matrix(.74419 0 0 0.62 -363.74 -63.139)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path634" fill="#fff" transform="matrix(.74419 0 0 0.62 -371.62 -58.759)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path635" fill="#fff" transform="matrix(.74419 0 0 0.62 -363.74 -58.668)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path636" fill="#fff" transform="matrix(.74419 0 0 0.62 -395.28 -49.817)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path637" fill="#fff" transform="matrix(.74419 0 0 0.62 -388.71 -49.817)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path638" fill="#fff" transform="matrix(.74419 0 0 0.62 -382.14 -49.862)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path639" fill="#fff" transform="matrix(.74419 0 0 0.62 -392.65 -52.007)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path640" fill="#fff" transform="matrix(.74419 0 0 0.62 -384.82 -52.052)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path641" fill="#fff" transform="matrix(.74419 0 0 0.62 -392.71 -47.672)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + <ellipse id="path642" fill="#fff" transform="matrix(.74419 0 0 0.62 -384.82 -47.581)" cx="413.68" rx=".88583" cy="581.99" ry=".88583" stroke-width="1pt" d="m 414.56693,581.98816 c 0,0.48923 -0.39661,0.88583 -0.88584,0.88583 -0.48923,0 -0.88583,-0.3966 -0.88583,-0.88583 0,-0.48923 0.3966,-0.88583 0.88583,-0.88583 0.48923,0 0.88584,0.3966 0.88584,0.88583 z"/> + </g> + <g id="g1762" transform="matrix(1 0 0 1.1622 193.11 -34.284)"> + <path id="path1072" d="m-79.724 145.28 3.5433 3.543 3.5433-3.543h-7.0866z" transform="matrix(1.24 0 0 -.49996 40.323 315.35)" stroke-width="1pt" fill="#fff"/> + <path id="path1071" d="m-79.724 145.28 3.5433 3.543 3.5433-3.543h-7.0866z" transform="matrix(1.24 0 0 -.49996 27.142 315.35)" stroke-width="1pt" fill="#fff"/> + <path id="path1070" d="m-79.724 145.28 3.5433 3.543 3.5433-3.543h-7.0866z" transform="matrix(1.24 0 0 -.49996 13.961 315.35)" stroke-width="1pt" fill="#fff"/> + <path id="path1069" d="m-79.724 145.28 3.5433 3.543 3.5433-3.543h-7.0866z" transform="matrix(1.24 0 0 .49996 40.323 129.34)" stroke-width="1pt" fill="#fff"/> + <path id="path1068" d="m-79.724 145.28 3.5433 3.543 3.5433-3.543h-7.0866z" transform="matrix(1.24 0 0 .49996 27.142 129.34)" stroke-width="1pt" fill="#fff"/> + <path id="path1067" d="m-79.724 145.28 3.5433 3.543 3.5433-3.543h-7.0866z" transform="matrix(1.24 0 0 .49996 13.961 129.34)" stroke-width="1pt" fill="#fff"/> + <path id="path1057" d="m-83.268 219.68-5.3148-3.544-5.3151 3.544-5.3149-3.544-5.3145 3.544v-1.771l3.543-1.773-1.772-1.771v-1.772h1.772l1.7715 1.772 1.7714-1.772h1.772v1.772l-1.772 1.771 3.5435 1.772 3.5436-1.772-1.7719-1.771v-1.772h1.7719l1.7715 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.771 3.5434 1.772 3.5438-1.771-1.772-1.772v-1.772h1.772l1.7714 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.772 3.5433 1.772v1.771l-5.3147-3.543-5.3152 3.543z" transform="matrix(.96446 0 0 -.99994 18.111 467.7)" stroke-width="0" fill="#004e00"/> + <path id="path1056" d="m-83.268 219.68-5.3148-3.544-5.3151 3.544-5.3149-3.544-5.3145 3.544v-1.771l3.543-1.773-1.772-1.771v-1.772h1.772l1.7715 1.772 1.7714-1.772h1.772v1.772l-1.772 1.771 3.5435 1.772 3.5436-1.772-1.7719-1.771v-1.772h1.7719l1.7715 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.771 3.5434 1.772 3.5438-1.771-1.772-1.772v-1.772h1.772l1.7714 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.772 3.5433 1.772v1.771l-5.3147-3.543-5.3152 3.543z" transform="matrix(.96446 0 0 .99994 18.112 -23.018)" stroke-width="0" fill="#004e00"/> + <path id="path1055" d="m-83.268 219.68-5.3148-3.544-5.3151 3.544-5.3149-3.544-5.3145 3.544v-1.771l3.543-1.773-1.772-1.771v-1.772h1.772l1.7715 1.772 1.7714-1.772h1.772v1.772l-1.772 1.771 3.5435 1.772 3.5436-1.772-1.7719-1.771v-1.772h1.7719l1.7715 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.771 3.5434 1.772 3.5438-1.771-1.772-1.772v-1.772h1.772l1.7714 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.772 3.5433 1.772v1.771l-5.3147-3.543-5.3152 3.543z" transform="matrix(0 .72224 -1.5499 0 317.11 286.32)" stroke-width="0" fill="#004e00"/> + <path id="path1054" d="m-83.268 219.68-5.3148-3.544-5.3151 3.544-5.3149-3.544-5.3145 3.544v-1.771l3.543-1.773-1.772-1.771v-1.772h1.772l1.7715 1.772 1.7714-1.772h1.772v1.772l-1.772 1.771 3.5435 1.772 3.5436-1.772-1.7719-1.771v-1.772h1.7719l1.7715 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.771 3.5434 1.772 3.5438-1.771-1.772-1.772v-1.772h1.772l1.7714 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.772 3.5433 1.772v1.771l-5.3147-3.543-5.3152 3.543z" transform="matrix(0 .72224 1.5499 0 -451.75 286.32)" stroke-width="0" fill="#004e00"/> + <rect id="rect1052" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7716" width="1.7717" stroke="#000" y="214.37" x="-26.575" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1053" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7717" width="1.7717" stroke="#000" y="216.14" x="-28.346" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1048" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7716" width="1.7717" stroke="#000" y="225" x="-37.205" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1049" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7717" width="1.7717" stroke="#000" y="223.23" x="-35.433" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1046" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7717" width="1.7716" stroke="#000" y="223.23" x="-93.898" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1044" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7716" width="1.7717" stroke="#000" y="214.37" x="-102.76" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1045" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7717" width="1.7717" stroke="#000" y="216.14" x="-100.98" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1042" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7716" width="1.7717" stroke="#000" y="177.17" x="-100.98" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1043" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7717" width="1.7717" stroke="#000" y="178.94" x="-102.76" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1040" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7716" width="1.7717" stroke="#000" y="168.31" x="-92.126" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1041" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7717" width="1.7716" stroke="#000" y="170.08" x="-93.898" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1038" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7716" width="1.7717" stroke="#000" y="168.31" x="-37.205" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1039" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7717" width="1.7717" stroke="#000" y="170.08" x="-35.433" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1050" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7716" width="1.7717" stroke="#000" y="177.17" x="-28.346" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1051" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7717" width="1.7717" stroke="#000" y="178.94" x="-26.575" stroke-width=".26667" fill="#004e00"/> + <rect id="rect1047" transform="matrix(1.24 0 0 1 11.764 24.803)" height="1.7716" width="1.7717" stroke="#000" y="225" x="-92.126" stroke-width=".26667" fill="#004e00"/> + <path id="path925" d="m423.42 278.15-15.942-0.002-0.003-8.864 10.63 0.005v-8.312h10.63v-7.633h10.63v9.541c-8.802 0-15.945 6.463-15.945 15.265z" transform="matrix(.40618 0 0 .39281 -246.01 113.08)" stroke-width="1.25" fill="#fff"/> + <path id="path927" d="m423.42 278.15-15.942-0.002-0.003-8.864 10.63 0.005v-8.312h10.63v-7.633h10.63v9.541c-8.802 0-15.945 6.463-15.945 15.265z" transform="matrix(-.40618 0 0 .39281 110.91 113.08)" stroke-width="1.25" fill="#e69900"/> + <path id="path928" d="m423.42 278.15-15.942-0.002-0.003-8.864 10.63 0.005v-8.312h10.63v-7.633h10.63v9.541c-8.802 0-15.945 6.463-15.945 15.265z" transform="matrix(-.40618 0 0 -.39281 110.91 331.6)" stroke-width="1.25" fill="#fff"/> + <path id="path929" d="m423.42 278.15-15.942-0.002-0.003-8.864 10.63 0.005v-8.312h10.63v-7.633h10.63v9.541c-8.802 0-15.945 6.463-15.945 15.265z" transform="matrix(.40618 0 0 -.39281 -246.01 331.6)" stroke-width="1.25" fill="#e69900"/> + <path id="path931" d="m437.6 273.72h-15.944v-15.059c8.801 0 15.944 6.747 15.944 15.059z" transform="matrix(.40618 0 0 .39819 -238.82 113.35)" stroke-width="1pt" fill="#004e00"/> + <path id="path932" d="m437.6 273.72h-15.944v-15.059c8.801 0 15.944 6.747 15.944 15.059z" transform="matrix(.40618 0 0 -.39819 -238.82 331.33)" stroke-width="1pt" fill="#980000"/> + <path id="path933" d="m437.6 273.72h-15.944v-15.059c8.801 0 15.944 6.747 15.944 15.059z" transform="matrix(-.40618 0 0 -.39819 103.72 331.33)" stroke-width="1pt" fill="#004e00"/> + <path id="path934" d="m437.6 273.72h-15.944v-15.059c8.801 0 15.944 6.747 15.944 15.059z" transform="matrix(-.40618 0 0 .39819 103.72 113.35)" stroke-width="1pt" fill="#980000"/> + <path id="path976" d="m-83.268 219.68-5.3148-3.544-5.3151 3.544-5.3149-3.544-5.3145 3.544v-1.771l3.543-1.773-1.772-1.771v-1.772h1.772l1.7715 1.772 1.7714-1.772h1.772v1.772l-1.772 1.771 3.5435 1.772 3.5436-1.772-1.7719-1.771v-1.772h1.7719l1.7715 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.771 3.5434 1.772 3.5438-1.771-1.772-1.772v-1.772h1.772l1.7714 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.772 3.5433 1.772v1.771l-5.3147-3.543-5.3152 3.543z" transform="matrix(1.24 0 0 1 42.52 24.804)" stroke-width="0" fill="#004e00"/> + <path id="path982" d="m-83.268 219.68-5.3148-3.544-5.3151 3.544-5.3149-3.544-5.3145 3.544v-1.771l3.543-1.773-1.772-1.771v-1.772h1.772l1.7715 1.772 1.7714-1.772h1.772v1.772l-1.772 1.771 3.5435 1.772 3.5436-1.772-1.7719-1.771v-1.772h1.7719l1.7715 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.771 3.5434 1.772 3.5438-1.771-1.772-1.772v-1.772h1.772l1.7714 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.772 3.5433 1.772v1.771l-5.3147-3.543-5.3152 3.543z" transform="matrix(1.24 0 0 -1 42.52 419.88)" stroke-width="0" fill="#004e00"/> + <path id="path983" d="m-83.268 219.68-5.3148-3.544-5.3151 3.544-5.3149-3.544-5.3145 3.544v-1.771l3.543-1.773-1.772-1.771v-1.772h1.772l1.7715 1.772 1.7714-1.772h1.772v1.772l-1.772 1.771 3.5435 1.772 3.5436-1.772-1.7719-1.771v-1.772h1.7719l1.7715 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.771 3.5434 1.772 3.5438-1.771-1.772-1.772v-1.772h1.772l1.7714 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.772 3.5433 1.772v1.771l-5.3147-3.543-5.3152 3.543z" transform="matrix(0 .83335 .93002 0 -240.88 296.16)" stroke-width="0" fill="#004e00"/> + <path id="path985" d="m-100.98 177.17-7.087 7.086v26.575l7.087 7.087h31.889l7.0867-7.087v-26.575l-7.0867-7.086h-31.889zm-1.772-5.316-17.717 17.716v15.945l17.717 17.717h35.433l17.716-17.717v-15.945l-17.716-17.716h-35.433z" transform="matrix(1.24 0 0 1 38.127 24.804)" stroke="#000" stroke-width=".42667" fill="#004e00"/> + <path id="path996" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 .66666 15.279 146.46)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path1001" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 -.66666 15.279 298.23)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path1002" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 -.66666 29.339 298.23)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path997" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 .66666 29.339 146.46)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path1007" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 -.66666 8.249 298.23)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path1008" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 -.66666 22.309 298.23)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path1009" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 -.66666 36.369 298.23)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path992" d="m-104.53 180.71 3.544-3.544h-3.544v3.544z" transform="matrix(1.8599 0 0 -1.4999 100.72 510.22)" stroke="#000" stroke-width=".26668" fill="#980000"/> + <path id="path984" d="m-83.268 219.68-5.3148-3.544-5.3151 3.544-5.3149-3.544-5.3145 3.544v-1.771l3.543-1.773-1.772-1.771v-1.772h1.772l1.7715 1.772 1.7714-1.772h1.772v1.772l-1.772 1.771 3.5435 1.772 3.5436-1.772-1.7719-1.771v-1.772h1.7719l1.7715 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.771 3.5434 1.772 3.5438-1.771-1.772-1.772v-1.772h1.772l1.7714 1.772 1.7714-1.772h1.7719v1.772l-1.7719 1.772 3.5433 1.772v1.771l-5.3147-3.543-5.3152 3.543z" transform="matrix(0 .83335 -.93002 0 106.23 296.16)" stroke-width="0" fill="#004e00"/> + <path id="path1010" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(1.24 0 0 .90002 60.095 78.836)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path989" d="m-99.213 180.71-3.543 3.544v26.575l3.543 3.543h-5.316l0.001-33.662h5.315z" transform="matrix(1.24 0 0 1 29.339 24.804)" stroke="#000" stroke-width="0.4" fill="#980000"/> + <path id="path998" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 .66666 8.249 146.46)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path999" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 .66666 22.309 146.46)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path1000" d="m-93.898 147.05 3.5433 5.315 3.5433-5.315h-7.0866z" transform="matrix(0.992 0 0 .66666 36.369 146.46)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path990" d="m-99.212 180.71-3.5437 3.544v26.575l3.5437 3.543h-5.3147v-33.662h5.3147z" transform="matrix(-1.24 0 0 1 -163.98 24.804)" stroke="#000" stroke-width="0.4" fill="#980000"/> + <path id="path993" d="m-104.53 180.71 3.544-3.544h-3.544v3.544z" transform="matrix(-1.8599 0 0 -1.4999 -235.37 510.22)" stroke="#000" stroke-width=".26668" fill="#980000"/> + <path id="path994" d="m-104.53 180.71 3.544-3.544h-3.544v3.544z" transform="matrix(-1.8599 0 0 1.4999 -235.37 -65.534)" stroke="#000" stroke-width=".26668" fill="#980000"/> + <path id="path991" d="m-104.53 180.71 3.544-3.544h-3.544v3.544z" transform="matrix(1.8599 0 0 1.4999 100.72 -65.534)" stroke="#000" stroke-width=".26668" fill="#980000"/> + <path id="path981" d="m-100.98 177.17-7.087 7.086v26.575l7.087 7.087h31.889l7.0867-7.087v-26.575l-7.0867-7.086h-31.889zm-0.001-1.773-8.858 8.858v26.575l8.859 8.858h31.889l8.8583-8.858v-26.575l-8.859-8.858h-31.889z" transform="matrix(1.24 0 0 1 38.127 24.804)" stroke="#000" stroke-width=".42667" fill="#004e00"/> + <path id="path1011" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(1.24 0 0 .90008 60.094 82.014)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path1012" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(1.24 0 0 .90002 60.095 85.214)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path1013" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(1.24 0 0 .90008 60.095 88.392)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path1025" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(1.24 0 0 .90008 60.095 75.636)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path1027" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(-1.24 0 0 .90002 -194.74 78.836)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path1028" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(-1.24 0 0 .90008 -194.74 82.015)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path1029" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(-1.24 0 0 .90002 -194.74 85.214)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path1030" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(-1.24 0 0 .90008 -194.74 88.393)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path1031" d="m-76.181 154.13h7.0866l1.7717 1.772-1.7717 1.771h-7.0866v-3.543z" transform="matrix(-1.24 0 0 .90008 -194.74 75.637)" stroke="#000" stroke-width=".26667" fill="#e69900"/> + <path id="path1037" d="m-100.98 178.94v37.205h8.858v8.858h56.693v-8.858h8.8583v-37.205h-8.8583v-8.858h-56.693v8.858h-8.858zm1.7714 1.772v33.661h8.8583v8.858h53.15v-8.858h8.8582v-33.661h-8.8582v-8.859h-53.15v8.859h-8.8583z" transform="matrix(1.24 0 0 1 11.764 24.803)" stroke="#000" stroke-width=".26667" fill="#970000"/> + </g> + <g id="g3017" transform="matrix(1.1481 0 0 1.1176 217.32 -7.8161)"> + <path id="path2276" d="m-28.347 69.094-5.315-7.0866v-5.315l-5.315-5.3147h-10.63l-8.8583-5.315-28.346 0.0002-8.8583 5.315h-10.63l-5.315 5.3147v5.315l-5.315 7.0866v14.173l5.315 7.0866v5.315l5.315 5.3147h10.63l8.8583 5.315h28.346l8.8583-5.315h10.63l5.315-5.3145v-5.315l5.315-7.0866-0.0001-14.174z" transform="matrix(1.08 0 0 1 -1.2755 -24.803)" stroke="#000" stroke-width=".26667" fill="#980000"/> + <path id="path1003" d="m345.47 251.58v5.315l5.315 7.086v5.315l5.315 5.315h10.63l8.859 5.315h12.402l-0.001-28.346h-42.52z" transform="matrix(1.08 0 0 1 -498.74 -200.2)" stroke-width="1pt" fill="#e69900"/> + <path id="path2255" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(.83045 0 0 0.572 -368.56 -90.034)" stroke-width="1pt" fill="#980000"/> + <path id="path2256" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(.83045 0 0 0.572 -376.21 -93.577)" stroke-width="1pt" fill="#980000"/> + <path id="path2257" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(.83045 0 0 0.572 -380.04 -100.66)" stroke-width="1pt" fill="#980000"/> + <path id="path1004" d="m345.47 251.58v5.315l5.315 7.086v5.315l5.315 5.315h10.63l8.859 5.315h12.402l-0.001-28.346h-42.52z" transform="matrix(-1.08 0 0 -1 339.29 302.96)" stroke-width="1pt" fill="#e69900"/> + <path id="path3007" d="m-72.638 47.835h3.2809l3.8057 3.5431 6.0368 0.0002 3.2808 1.7716-1.6404 1.7717-3.2809-1.7717h-3.2808l-3.2808 5.315-4.9213-1.7717v-3.5433h4.9213l-4.9213-5.3149z" transform="matrix(-1.08 0 0 -1 -158.17 127.56)" stroke-width="1pt" fill="#980000"/> + <path id="path1005" d="m345.47 251.58v5.315l5.315 7.086v5.315l5.315 5.315h10.63l8.859 5.315h12.402l-0.001-28.346h-42.52z" transform="matrix(1.08 0 0 -1 -498.74 302.96)" stroke-width="1pt" fill="#fff"/> + <path id="path3008" d="m-72.638 47.835h3.2809l3.8057 3.5431 6.0368 0.0002 3.2808 1.7716-1.6404 1.7717-3.2809-1.7717h-3.2808l-3.2808 5.315-4.9213-1.7717v-3.5433h4.9213l-4.9213-5.3149z" transform="matrix(-1.08 0 0 1 -158.17 -24.804)" stroke-width="1pt" fill="#980000"/> + <path id="path3009" d="m-72.638 47.835h3.2809l3.8057 3.5431 6.0368 0.0002 3.2808 1.7716-1.6404 1.7717-3.2809-1.7717h-3.2808l-3.2808 5.315-4.9213-1.7717v-3.5433h4.9213l-4.9213-5.3149z" transform="matrix(1.08 0 0 1 -1.2754 -24.804)" stroke-width="1pt" fill="#980000"/> + <path id="path1006" d="m345.47 251.58v5.315l5.315 7.086v5.315l5.315 5.315h10.63l8.859 5.315h12.402l-0.001-28.346h-42.52z" transform="matrix(-1.08 0 0 1 339.29 -200.2)" stroke-width="1pt" fill="#fff"/> + <path id="path2265" d="m-72.638 47.835h3.2809l3.8057 3.5431 6.0368 0.0002 3.2808 1.7716-1.6404 1.7717-3.2809-1.7717h-3.2808l-3.2808 5.315-4.9213-1.7717v-3.5433h4.9213l-4.9213-5.3149z" transform="matrix(1.08 0 0 -1 -1.2754 127.56)" stroke-width="1pt" fill="#980000"/> + <path id="path2253" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(.83045 0 0 -0.572 -376.21 196.33)" stroke-width="1pt" fill="#980000"/> + <path id="path2247" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(-.83045 0 0 -0.572 209.11 192.79)" stroke-width="1pt" fill="#980000"/> + <path id="path2252" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(.83045 0 0 -0.572 -368.56 192.79)" stroke-width="1pt" fill="#980000"/> + <path id="path2254" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(.83045 0 0 -0.572 -380.04 203.42)" stroke-width="1pt" fill="#980000"/> + <path id="path3004" d="m334.75 269.29h1.555l1.554 1.635 1.554-1.635 32.636-0.001v22.895h-1.554l1.554 1.636v1.635l-4.662-4.906v-1.635h1.554v1.635h1.554v-1.635l-12.619-7.223h-10.63v-7.087l-4.725-3.679h-3.108l-1.554 1.635 1.554 1.636h-1.554l-3.109-4.906z" transform="matrix(1.14 0 0 1.0834 -503.85 -240.36)" stroke-width="0" fill="#fff"/> + <path id="path3005" d="m334.75 269.29h1.555l1.554 1.635 1.554-1.635 32.636-0.001v22.895h-1.554l1.554 1.636v1.635l-4.662-4.906v-1.635h1.554v1.635h1.554v-1.635l-12.619-7.223h-10.63v-7.087l-4.725-3.679h-3.108l-1.554 1.635 1.554 1.636h-1.554l-3.109-4.906z" transform="matrix(1.14 0 0 -1.0834 -503.85 343.12)" stroke-width="0" fill="#e69900"/> + <path id="path1015" d="m340.16 269.29h31.89v21.26l-14.173-8.858h-10.63v-7.087l-7.087-5.315z" transform="matrix(1.08 0 0 1 -481.53 -217.92)" stroke-width="0" fill="#004e00"/> + <path id="path2250" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(-.83045 0 0 -0.572 216.76 196.33)" stroke-width="1pt" fill="#980000"/> + <path id="path2251" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(-.83045 0 0 -0.572 220.59 203.42)" stroke-width="1pt" fill="#980000"/> + <path id="path1016" d="m334.75 269.29h1.555l1.554 1.635 1.554-1.635 32.636-0.001v22.895h-1.554l1.554 1.636v1.635l-4.662-4.906v-1.635h1.554v1.635h1.554v-1.635l-12.619-7.223h-10.63v-7.087l-4.725-3.679h-3.108l-1.554 1.635 1.554 1.636h-1.554l-3.109-4.906z" transform="matrix(-1.14 0 0 -1.0834 344.4 343.12)" stroke-width="0" fill="#fff"/> + <path id="path1017" d="m340.16 269.29h31.89v21.26l-14.173-8.858h-10.63v-7.087l-7.087-5.315z" transform="matrix(-1.08 0 0 -1 322.08 320.68)" stroke-width="0" fill="#004e00"/> + <path id="path2258" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(-.83045 0 0 0.572 209.11 -90.034)" stroke-width="1pt" fill="#980000"/> + <path id="path2259" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(-.83045 0 0 0.572 216.76 -93.577)" stroke-width="1pt" fill="#980000"/> + <path id="path2260" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(-.83045 0 0 0.572 220.59 -100.66)" stroke-width="1pt" fill="#980000"/> + <path id="path3003" d="m334.75 269.29h1.555l1.554 1.635 1.554-1.635 32.636-0.001v22.895h-1.554l1.554 1.636v1.635l-4.662-4.906v-1.635h1.554v1.635h1.554v-1.635l-12.619-7.223h-10.63v-7.087l-4.725-3.679h-3.108l-1.554 1.635 1.554 1.636h-1.554l-3.109-4.906z" transform="matrix(-1.14 0 0 1.0834 344.4 -240.36)" stroke-width="0" fill="#e69900"/> + <path id="path1019" d="m340.16 269.29h31.89v21.26l-14.173-8.858h-10.63v-7.087l-7.087-5.315z" transform="matrix(-1.08 0 0 1 322.08 -217.92)" stroke-width="0" fill="#980000"/> + <path id="path1021" d="m340.16 269.29h31.89v21.26l-14.173-8.858h-10.63v-7.087l-7.087-5.315z" transform="matrix(1.08 0 0 -1 -481.53 320.68)" stroke-width="0" fill="#980000"/> + <path id="path1023" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(-1.1419 0 0 -.66735 299.01 230.83)" stroke-width="1pt" fill="#980000"/> + <path id="path2244" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(1.1419 0 0 .66735 -458.46 -128.08)" stroke-width="1pt" fill="#980000"/> + <path id="path2245" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(1.1419 0 0 -.66735 -458.46 230.83)" stroke-width="1pt" fill="#004e00"/> + <path id="path2246" d="m328.36 268.9-8.416 7.965h-5.027l1.676 2.654-3.351 5.31 1.675 2.655 5.027-2.655 1.676 2.655 0.774-7.094 9.28-8.397-3.314-3.093z" transform="matrix(-1.1419 0 0 .66735 299.01 -128.08)" stroke-width="1pt" fill="#004e00"/> + <path id="path1026" d="m311.81 217.91 8.858-5.315 8.859 5.315-8.859 5.315-8.858-5.315z" transform="matrix(1.296 0 0 1.6667 -495.31 -311.81)" stroke-width="1.2457" fill="#fff"/> + <path id="path3010" d="m-66.076 53.15-1.6404-1.7716 1.6404-1.7717h1.6404l4.9213 7.0866h-1.6405l-3.2808-5.3149h-1.6404l1.6404 1.7716-1.6404 1.7717h-3.2808v-1.7717h3.2808z" transform="matrix(-1.08 0 0 -1 -188.29 108.07)" stroke-width="1pt" fill="#980000"/> + <path id="path3012" d="m-66.076 53.15-1.6404-1.7716 1.6404-1.7717h1.6404l4.9213 7.0866h-1.6405l-3.2808-5.3149h-1.6404l1.6404 1.7716-1.6404 1.7717h-3.2808v-1.7717h3.2808z" transform="matrix(-1.08 0 0 1 -188.29 -5.3154)" stroke-width="1pt" fill="#980000"/> + <path id="path3013" d="m-66.076 53.15-1.6404-1.7716 1.6404-1.7717h1.6404l4.9213 7.0866h-1.6405l-3.2808-5.3149h-1.6404l1.6404 1.7716-1.6404 1.7717h-3.2808v-1.7717h3.2808z" transform="matrix(1.08 0 0 -1 28.843 108.07)" stroke-width="1pt" fill="#980000"/> + <path id="path3014" d="m-66.076 53.15-1.6404-1.7716 1.6404-1.7717h1.6404l4.9213 7.0866h-1.6405l-3.2808-5.3149h-1.6404l1.6404 1.7716-1.6404 1.7717h-3.2808v-1.7717h3.2808z" transform="matrix(1.08 0 0 1 28.843 -5.3154)" stroke-width="1pt" fill="#980000"/> + <rect id="rect3015" height="14.173" width="3.5433" y="44.291" x="-81.496" stroke-width="1pt" fill="#980000"/> + <rect id="rect3016" height="7.0866" width="14.173" y="47.835" x="-86.811" stroke-width="1pt" fill="#980000"/> + </g> + <g id="g3091" transform="translate(267.52 -5.3149)"> + <path id="path1088" d="m333.07 170.08-10.63 5.315v8.858l10.63 5.315h10.63l10.63-5.315v-8.858l-10.63-5.315h-10.63z" transform="matrix(3.4444 0 0 3.7273 -1307.3 -277.83)" stroke="#000" stroke-width=".070263" fill="#004e00"/> + <path id="path1101" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .76401 -561.78 210.59)" stroke-width="1pt" fill="#c00"/> + <path id="path1103" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .76401 -505.68 242.17)" stroke-width="1pt" fill="#c00"/> + <path id="path1104" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .76401 -541.11 194.8)" stroke-width="1pt" fill="#c00"/> + <path id="path1105" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .76401 -508.63 194.8)" stroke-width="1pt" fill="#c00"/> + <path id="path1106" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .76401 -487.97 210.59)" stroke-width="1pt" fill="#c00"/> + <path id="path1107" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .76401 -487.97 226.38)" stroke-width="1pt" fill="#c00"/> + <path id="path868" d="m-205.51 345.47v38.977h53.15v-17.717l-35.433-21.26h-17.717z" transform="matrix(1 0 0 -.89130 63.779 735.08)" stroke-width="1pt" fill="#e69900"/> + <path id="path869" d="m-205.51 345.47v38.977h53.15v-17.717l-35.433-21.26h-17.717z" transform="matrix(-1 0 0 .89130 -347.24 49.76)" stroke-width="1pt" fill="#e69900"/> + <path id="path866" d="m-205.51 345.47v38.977h53.15v-17.717l-35.433-21.26h-17.717z" transform="matrix(1 0 0 .89130 63.779 49.76)" stroke-width="1pt" fill="#fff"/> + <path id="path870" d="m-205.51 345.47 0.001 38.976 53.149 0.001v-17.717l-35.433-21.26h-17.717z" transform="matrix(-1 0 0 -.89130 -347.24 735.08)" stroke-width="1pt" fill="#fff"/> + <path id="path864" d="m-177.16 368.5h21.259l-21.259-10.63v10.63zm24.803-1.772-0.001 17.717h-33.661v-14.173h-7.086l-8.858-5.315v-12.402l5.314-5.315h-7.086v17.717h-1.772v-19.489h17.717l35.433 21.26z" transform="matrix(1 0 0 .89130 63.779 49.761)" stroke="#000" stroke-width=".13333" fill="#e69900"/> + <path id="path1089" d="m333.07 176.72v6.2h1.594l3.721 1.772 3.721-1.772h1.594v-6.2h-1.594l-3.721-1.772-3.721 1.772h-1.594z" transform="matrix(3.3333 0 0 3.5653 -1269.7 -248.7)" stroke-width="0.625" fill="#980000"/> + <path id="path871" d="m-177.16 368.5h21.259l-21.259-10.63v10.63zm24.803-1.772-0.001 17.717h-33.661v-14.173h-7.086l-8.858-5.315v-12.402l5.314-5.315h-7.086v17.717h-1.772v-19.489h17.717l35.433 21.26z" transform="matrix(-1 0 0 -.89130 -347.24 735.08)" stroke="#000" stroke-width=".13333" fill="#e69900"/> + <path id="path872" d="m-177.16 368.5h21.259l-21.259-10.63v10.63zm24.803-1.772-0.001 17.717h-33.661v-14.173h-7.086l-8.858-5.315v-12.402l5.314-5.315h-7.086v17.717h-1.772v-19.489h17.717l35.433 21.26z" transform="matrix(-1 0 0 .89130 -347.24 49.761)" stroke="#000" stroke-width=".13333" fill="#fff"/> + <path id="path873" d="m-177.16 368.5h21.259l-21.259-10.63v10.63zm24.803-1.772-0.001 17.717h-33.661v-14.173h-7.086l-8.858-5.315v-12.402l5.314-5.315h-7.086v17.717h-1.772v-19.489h17.717l35.433 21.26z" transform="matrix(1 0 0 -.89130 63.78 735.08)" stroke="#000" stroke-width=".13333" fill="#fff"/> + <path id="path1102" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .89135 -562.96 196.61)" stroke-width="1pt" fill="#980000"/> + <path id="path1100" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .89135 -541.71 212.4)" stroke-width="1pt" fill="#980000"/> + <path id="path874" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 -.89134 -562.96 588.24)" stroke-width="1pt" fill="#980000"/> + <path id="path876" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 -.89135 -541.71 572.45)" stroke-width="1pt" fill="#980000"/> + <path id="path877" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .89135 -508.04 212.4)" stroke-width="1pt" fill="#980000"/> + <path id="path878" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .89135 -486.78 182.39)" stroke-width="1pt" fill="#980000"/> + <path id="path880" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .89135 -508.04 212.4)" stroke-width="1pt" fill="#980000"/> + <path id="path881" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .89135 -508.04 212.4)" stroke-width="1pt" fill="#980000"/> + <path id="path882" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .89135 -486.78 196.6)" stroke-width="1pt" fill="#980000"/> + <path id="path892" d="m302.95 233.86h1.771v-5.315h3.544v5.315h1.771v-12.401h-1.771v5.315h-3.544v-5.315h-1.771v12.401z" transform="matrix(1.2501 0 0 .89135 -508.04 166.6)" stroke-width="1pt" fill="#980000"/> + <path id="path3090" d="m-154.13 334.84 7.087-7.088h3.543v3.543h-3.543v1.772h5.314v-7.086l-5.314-0.001v-5.314h-7.087v5.314h1.772v-3.544h3.543v3.544l-7.086 7.087-7.087-7.086v-3.543h3.543v3.543h1.772v-5.315l-7.087 0.001v5.314h-5.315v7.088h5.315v-1.772h-3.544v-3.544h3.544l7.087 7.086-7.087 7.086h-3.543v-3.543h3.543v-1.772h-5.314v7.087h5.314v5.314l7.087 0.002v-5.316h-1.771v3.544h-3.543v-3.544l7.085-7.086 7.088 7.088v3.543h-3.543v-3.543h-1.772v5.314h7.086v-5.314l5.315-0.002v-7.086h-5.315v1.772h3.544v3.544h-3.544l-7.087-7.087z" transform="matrix(1 0 0 .81248 14.173 120.37)" stroke-width="1.2469" fill="#004e00"/> + </g> + <g id="g3152" transform="matrix(1 0 0 .92857 198.43 17.59)"> + <path id="path701" d="m372.05 391.54 3.544-3.543h21.259l15.945-15.946h21.26l15.945 15.945h21.26l3.543 3.543-3.543 3.544h-21.26l-15.945 15.945h-21.26l-15.945-15.945h-21.259l-3.544-3.543z" transform="matrix(.96774 0 0 1.0526 -482.4 -277.85)" stroke-width="1pt" fill="#980000"/> + <path id="path3151" d="m372.05 391.54 1.903-1.949h22.834l17.126-19.489h19.029l17.126 19.489h22.835l1.903 1.949-1.903 1.948h-22.835l-15.223 17.54h-22.834l-15.224-17.54h-22.834l-1.903-1.948z" transform="matrix(.93104 0 0 .90908 -466.86 -221.29)" stroke="#000" stroke-width=".28986" fill="#980000"/> + <path id="path713" d="m428.74 354.33 7.087 7.086-3.543 3.543-1.772-1.772h-1.771v1.772l1.771 1.772h3.544l3.543-3.544v-3.543l-7.086-7.086 7.086-7.087v-3.543l-3.543-3.543h-3.543l-1.772 1.771v1.772h1.772l1.771-1.772 3.543 3.544-7.086 7.086-7.087-7.086 7.087-7.087v-1.771h-1.772l-7.086 7.086-7.087-7.087h-1.772v1.771l7.087 7.087-7.087 7.087-7.087-7.086 3.543-3.544 1.772 1.772h1.772v-1.772l-1.772-1.771h-3.543l-3.544 3.543v3.543l7.087 7.087-7.087 7.087v3.543l3.544 3.543h3.543l1.772-1.771v-1.772h-1.772l-1.772 1.772-3.543-3.544 7.087-7.086 7.086 7.086-7.086 7.087-0.001 1.772h1.772l7.087-7.087 7.087 7.087h1.771v-1.772l-7.086-7.087 7.086-7.086zm-8.858-8.859-7.087 7.087 7.087 7.087 7.087-7.087-7.087-7.087z" transform="matrix(.96774 0 0 1.0526 -478.98 -236.82)" stroke-width="0" fill="#e69900"/> + <path id="path714" d="m412.8 411.02v14.173l1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.772-1.772 1.771 1.772 1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.771-1.772 1.772 1.772v-14.173h-21.26z" transform="matrix(.96774 0 0 1.0526 -482.4 -277.85)" stroke-width="1pt" fill="#e69900"/> + <path id="path715" d="m412.8 411.02v14.173l1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.772-1.772 1.771 1.772 1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.771-1.772 1.772 1.772v-14.173h-21.26z" transform="matrix(-.96774 0 0 -1.0526 337.13 546.43)" stroke-width="1pt" fill="#e69900"/> + <path id="path716" d="m419.88 411.02v14.173l1.772-1.772 1.771 1.772 1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.771-1.772 1.772 1.772v-14.173h-14.173z" transform="matrix(-.96774 0 0 -1.0526 373.13 563.22)" stroke-width="1pt" fill="#e69900"/> + <path id="path717" d="m419.88 411.02v14.173l1.772-1.772 1.771 1.772 1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.771-1.772 1.772 1.772v-14.173h-14.173z" transform="matrix(-.96774 0 0 -1.0526 307.98 563.22)" stroke-width="1pt" fill="#e69900"/> + <path id="path718" d="m419.88 411.02v14.173l1.772-1.772 1.771 1.772 1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.771-1.772 1.772 1.772v-14.173h-14.173z" transform="matrix(-.96774 0 0 1.0526 373.13 -294.63)" stroke-width="1pt" fill="#e69900"/> + <path id="path719" d="m419.88 411.02v14.173l1.772-1.772 1.771 1.772 1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.771-1.772 1.772 1.772v-14.173h-14.173z" transform="matrix(-.96774 0 0 1.0526 307.98 -294.63)" stroke-width="1pt" fill="#e69900"/> + <path id="path721" d="m412.8 411.02-0.001 8.858 1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.772-1.772 1.771 1.772 1.772-1.772 1.771 1.772 1.772-1.772v-23.031l-15.944 15.945z" transform="matrix(.96774 0 0 1.0526 -461.83 -277.85)" stroke-width="1pt" fill="#004e00"/> + <path id="path722" d="m412.8 411.02v8.859l1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.772-1.772 1.771 1.772 1.772-1.772 1.771 1.772 1.772-1.772-0.001-23.032-15.944 15.945z" transform="matrix(-.96774 0 0 1.0526 316.55 -277.85)" stroke-width="1pt" fill="#004e00"/> + <path id="path723" d="m412.8 411.02-0.001 8.858 1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.772-1.772 1.771 1.772 1.772-1.772 1.771 1.772 1.772-1.772v-23.031l-15.944 15.945z" transform="matrix(-.96774 0 0 -1.0526 316.55 546.43)" stroke-width="1pt" fill="#004e00"/> + <path id="path724" d="m412.8 411.02-0.001 8.858 1.772-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.772-1.772 1.771 1.772 1.772-1.772 1.771 1.772 1.772-1.772v-23.031l-15.944 15.945z" transform="matrix(.96774 0 0 -1.0526 -461.83 546.43)" stroke-width="1pt" fill="#004e00"/> + <path id="path740" d="m380.9 414.57-1.772-1.772-1.77 1.772-1.772-1.772-1.772 1.772-1.772-1.772-1.772 1.772-1.77-1.772-1.772 1.772-0.001-28.347 1.772 1.772 1.771-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.772-1.772 1.771 1.772 1.772-1.772v10.631h-7.086l-3.544 3.543 3.544 3.543h7.086v10.63z" transform="matrix(.96774 0 0 1.0526 -480.69 -287.17)" stroke-width="1pt" fill="#004e00"/> + <path id="path741" d="m380.9 414.57-1.772-1.772-1.77 1.772-1.772-1.772-1.772 1.772-1.772-1.772-1.772 1.772-1.77-1.772-1.772 1.772-0.001-28.347 1.772 1.772 1.771-1.772 1.772 1.772 1.771-1.772 1.772 1.772 1.772-1.772 1.771 1.772 1.772-1.772v10.631h-7.086l-3.544 3.543 3.544 3.543h7.086v10.63z" transform="matrix(-.96774 0 0 1.0526 335.41 -287.17)" stroke-width="1pt" fill="#004e00"/> + <path id="path745" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s7.696 12.183 7.696 6.868c0-3.812-7.696-10.412-7.696-10.412h-3.543s-7.696 7.727-7.696 10.412c0 5.315 7.696-6.868 7.696-6.868v7.086z" transform="matrix(.40322 0 0 .41595 -235.66 -9.0922)" stroke-width="1pt" fill="#fff"/> + <path id="path753" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s6.276 11.593 6.276 6.278c0-3.437-6.276-9.822-6.276-9.822h-3.543s-7.244 7.994-6.275 9.821c0 5.315 6.275-6.277 6.275-6.277v7.086z" transform="matrix(.48387 0 0 .58233 -246.66 -69.429)" stroke-width="1pt" fill="#980000"/> + <ellipse id="path758" fill="#004e00" transform="matrix(.96774 0 0 1.0526 -482.4 -277.85)" cx="403.94" rx="3.5433" cy="391.54" ry="1.7717" stroke-width="1pt" d="m 407.48032,391.5354 c 0,0.97846 -1.5864,1.77165 -3.54331,1.77165 -1.95691,0 -3.5433,-0.79319 -3.5433,-1.77165 0,-0.97846 1.58639,-1.77165 3.5433,-1.77165 1.95691,0 3.54331,0.79319 3.54331,1.77165 z"/> + <ellipse id="path759" fill="#004e00" transform="matrix(.96774 0 0 1.0526 -463.54 -277.85)" cx="403.94" rx="3.5433" cy="391.54" ry="1.7717" stroke-width="1pt" d="m 407.48032,391.5354 c 0,0.97846 -1.5864,1.77165 -3.54331,1.77165 -1.95691,0 -3.5433,-0.79319 -3.5433,-1.77165 0,-0.97846 1.58639,-1.77165 3.5433,-1.77165 1.95691,0 3.54331,0.79319 3.54331,1.77165 z"/> + <ellipse id="path760" fill="#004e00" transform="matrix(.96774 0 0 1.0526 -444.69 -277.85)" cx="403.94" rx="3.5433" cy="391.54" ry="1.7717" stroke-width="1pt" d="m 407.48032,391.5354 c 0,0.97846 -1.5864,1.77165 -3.54331,1.77165 -1.95691,0 -3.5433,-0.79319 -3.5433,-1.77165 0,-0.97846 1.58639,-1.77165 3.5433,-1.77165 1.95691,0 3.54331,0.79319 3.54331,1.77165 z"/> + <path id="path1819" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s7.696 12.183 7.696 6.868c0-3.812-7.696-10.412-7.696-10.412h-3.543s-7.696 7.727-7.696 10.412c0 5.315 7.696-6.868 7.696-6.868v7.086z" transform="matrix(.40322 0 0 -.41595 -236.02 277.83)" stroke-width="1pt" fill="#fff"/> + <path id="path1820" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s6.276 11.593 6.276 6.278c0-3.437-6.276-9.822-6.276-9.822h-3.543s-7.244 7.994-6.275 9.821c0 5.315 6.275-6.277 6.275-6.277v7.086z" transform="matrix(.48387 0 0 -.58233 -247.02 338.16)" stroke-width="1pt" fill="#980000"/> + <path id="path1821" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s7.696 12.183 7.696 6.868c0-3.812-7.696-10.412-7.696-10.412h-3.543s-7.696 7.727-7.696 10.412c0 5.315 7.696-6.868 7.696-6.868v7.086z" transform="matrix(.40322 0 0 .41595 -199.16 -9.0922)" stroke-width="1pt" fill="#fff"/> + <path id="path1822" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s7.696 12.183 7.696 6.868c0-3.812-7.696-10.412-7.696-10.412h-3.543s-7.696 7.727-7.696 10.412c0 5.315 7.696-6.868 7.696-6.868v7.086z" transform="matrix(.40322 0 0 -.41595 -199.52 277.83)" stroke-width="1pt" fill="#fff"/> + <path id="path1823" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s6.276 11.593 6.276 6.278c0-3.437-6.276-9.822-6.276-9.822h-3.543s-7.244 7.994-6.275 9.821c0 5.315 6.275-6.277 6.275-6.277v7.086z" transform="matrix(.53608 0 0 .39023 -298.12 -9.2701)" stroke-width="1pt" fill="#980000"/> + <path id="path1824" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s6.276 11.593 6.276 6.278c0-3.437-6.276-9.822-6.276-9.822h-3.543s-7.244 7.994-6.275 9.821c0 5.315 6.275-6.277 6.275-6.277v7.086z" transform="matrix(.53608 0 0 -.39022 -298.52 279.33)" stroke-width="1pt" fill="#980000"/> + <path id="path1825" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s6.276 11.593 6.276 6.278c0-3.437-6.276-9.822-6.276-9.822h-3.543s-7.244 7.994-6.275 9.821c0 5.315 6.275-6.277 6.275-6.277v7.086z" transform="matrix(.53608 0 0 .39023 -232.27 -9.7121)" stroke-width="1pt" fill="#980000"/> + <path id="path1826" d="m357.87 396.85s-3.543 3.544-3.543 5.315c-0.07 1.652 3.779 5.354 5.315 5.315 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771-3.544-5.315-3.544-5.315v-7.086s6.276 11.593 6.276 6.278c0-3.437-6.276-9.822-6.276-9.822h-3.543s-7.244 7.994-6.275 9.821c0 5.315 6.275-6.277 6.275-6.277v7.086z" transform="matrix(.53608 0 0 -.39022 -232.67 278.89)" stroke-width="1pt" fill="#980000"/> + <path id="path1827" d="m354.98 396.41c-1.526 3.07-1.123 4.474-1.123 6.245-0.071 1.652 4.256 4.868 5.792 4.829 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771 0.084-3.301-0.738-6.355l-2.215 5.178c-2.689-7.346-2.835-7.517-4.431 0.178l-2.6-4.76z" transform="matrix(.40322 0 0 -.41595 -263.42 310.25)" stroke-width="1pt" fill="#fff"/> + <path id="path1828" d="m354.98 396.41c-1.526 3.07-1.123 4.474-1.123 6.245-0.071 1.652 4.256 4.868 5.792 4.829 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771 0.084-3.301-0.738-6.355l-2.215 5.178c-2.689-7.346-2.835-7.517-4.431 0.178l-2.6-4.76z" transform="matrix(.40322 0 0 .41595 -263.36 -40.956)" stroke-width="1pt" fill="#fff"/> + <path id="path1829" d="m354.98 396.41c-1.526 3.07-1.123 4.474-1.123 6.245-0.071 1.652 4.256 4.868 5.792 4.829 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771 0.084-3.301-0.738-6.355l-2.215 5.178c-2.689-7.346-2.835-7.517-4.431 0.178l-2.6-4.76z" transform="matrix(.40322 0 0 -.41595 -170.94 309.98)" stroke-width="1pt" fill="#fff"/> + <path id="path1830" d="m354.98 396.41c-1.526 3.07-1.123 4.474-1.123 6.245-0.071 1.652 4.256 4.868 5.792 4.829 2.007 0.039 5.315-3.543 5.315-5.315 0-1.771 0.084-3.301-0.738-6.355l-2.215 5.178c-2.689-7.346-2.835-7.517-4.431 0.178l-2.6-4.76z" transform="matrix(.40322 0 0 .41595 -170.89 -41.232)" stroke-width="1pt" fill="#fff"/> + <path id="path1835" d="m115.16 177.16v-5.315h-15.944v-10.63h-14.173v-3.543h-12.402v-31.89h12.402v-3.543h14.173v-10.63h15.944v-5.315h21.26v5.315h15.945v10.63h14.173v3.543h12.402v31.89h-12.402v3.543h-14.173v10.63h-15.945v5.315h-21.26zm-1.772 1.772v-5.315h-15.944v-10.63h-14.173v-3.543h-12.402v-35.433h12.402v-3.544h14.173v-10.63h15.945v-5.315h24.803v5.315h15.945v10.63h14.173v3.544h12.402v35.433h-12.402v3.543h-14.173v10.63h-15.945v5.315h-24.804z" transform="matrix(1 0 0 .99999 -198.43 -7.0853)" stroke="#000" stroke-width=".13333" fill="#980000"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/tn.svg b/s/flag/tn.svg new file mode 100755 index 0000000..31db073 --- /dev/null +++ b/s/flag/tn.svg @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4083"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath5219" clipPathUnits="userSpaceOnUse"> + <rect id="rect5221" fill-opacity="0.67" height="512" width="682.67" y=".000014203" x="-85.333"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath5219)" transform="matrix(.9375 0 0 .9375 80 -.000013315)"> + <rect id="rect171" height="512" width="768" y=".000014203" x="-128" stroke-width="1pt" fill="#e70013"/> + <path id="path554" d="m485.97 255.06c0 67.28-54.541 121.82-121.82 121.82-67.28 0-121.82-54.541-121.82-121.82 0-67.28 54.541-121.82 121.82-121.82 67.28 0 121.82 54.541 121.82 121.82z" transform="matrix(1.06 0 0 1.06 -129.32 -14.591)" fill="#fff"/> + <path id="path556" d="m256.68 341.41c-47.27 0-85.635-38.364-85.635-85.635s38.364-85.636 85.635-85.636c11.818 0 25.27 2.7186 34.407 9.4295-62.63 2.3574-78.472 55.477-78.472 76.885s10.128 69.154 78.471 76.205c-7.7771 5.013-22.588 8.7504-34.406 8.7504z" stroke-width="1pt" fill="#e70013"/> + <polygon id="polygon559" d="m 445.79819,282.71201 -37.6733,-13.74419 -24.9227,31.41718 1.42982,-40.07663 -37.58105,-13.99445 38.55697,-11.02452 1.69633,-40.06623 22.3997,33.26309 38.62944,-10.76784 -24.71319,31.58225 z" points="445.8 282.71 408.12 268.97 383.2 300.38 384.63 260.31 347.05 246.31 385.61 235.29 387.3 195.22 409.7 228.49 448.33 217.72 423.62 249.3" transform="matrix(1.0321 0 0 1.0321 -128 .00027120)" stroke-width="1pt" fill="#e70013"/> + </g> +</svg> diff --git a/s/flag/to.svg b/s/flag/to.svg new file mode 100755 index 0000000..62f19cf --- /dev/null +++ b/s/flag/to.svg @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg656" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4096"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt"> + <rect id="rect661" height="480" width="640" y=".000013351" x="0" fill="#c10000"/> + <g id="g7004" transform="scale(.77831)"> + <rect id="rect671" height="257.38" width="321.15" y="-4.7682e-7" x="0" fill="#fff"/> + <g id="g668" transform="matrix(1.0321 0 0 1.0321 0 .000061451)" fill="#c10000"> + <rect id="rect666" height="173.71" width="49.595" y="38.89" x="128.04"/> + <rect id="rect667" transform="matrix(0 1 -1 0 278.59 -27.098)" height="173.71" width="49.595" y="38.89" x="128.04"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/tr.svg b/s/flag/tr.svg new file mode 100755 index 0000000..20bf2be --- /dev/null +++ b/s/flag/tr.svg @@ -0,0 +1,8 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="480" width="640"> + <g fill-rule="evenodd"> + <path fill="#f31930" d="M0 0h640v480H0z"/> + <path d="M406.977 247.473c0 66.215-54.606 119.89-121.97 119.89S163.04 313.686 163.04 247.472s54.606-119.89 121.968-119.89 121.97 53.677 121.97 119.89z" fill="#fff"/> + <path d="M413.077 247.467c0 52.97-43.686 95.91-97.575 95.91s-97.574-42.94-97.574-95.91 43.686-95.91 97.574-95.91 97.575 42.94 97.575 95.91z" fill="#f31830"/> + <path d="M430.726 191.465l-.985 44.318-41.345 11.225 40.756 14.514-.984 40.642 26.58-31.738 40.164 13.934-23.233-34.06 28.352-33.868-43.513 11.998-25.793-36.964z" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/tt.svg b/s/flag/tt.svg new file mode 100755 index 0000000..0931564 --- /dev/null +++ b/s/flag/tt.svg @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg614" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4118"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" transform="matrix(1.25 0 0 .93750 0 .00001536)"> + <rect id="rect5779" height="512" width="512" y="0" x="0" fill="#fff"/> + <path id="path701" d="m370.93 512-370.89-510.93-0.039999 510.66 370.93 0.27z" fill-rule="evenodd" stroke-width="1pt" fill="#e00000"/> + <path id="path702" d="m141.07-0.000014631 370.89 510.93 0.04-510.66-370.93-0.27001z" fill-rule="evenodd" stroke-width="1pt" fill="#e00000"/> + <path id="path703" d="m22.192 0.24453 94.878-0.00003 374.54 511.27h-97.88l-371.54-511.27z" fill-rule="evenodd"/> + </g> +</svg> diff --git a/s/flag/tv.svg b/s/flag/tv.svg new file mode 100755 index 0000000..6e2dc64 --- /dev/null +++ b/s/flag/tv.svg @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg2498" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4144"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs2500"> + <clipPath id="clipPath5023" clipPathUnits="userSpaceOnUse"> + <rect id="rect5025" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath5023)"> + <g id="g5547" fill-rule="evenodd" transform="matrix(.64508 0 0 .92059 0 23.331)" stroke-width="1pt" fill="#009fca"> + <rect id="rect5549" height="515.87" width="486.16" y="-19.81" x="505.97"/> + <rect id="rect5551" ry="0" height="521.41" width="523.49" y="-25.343" x="-7.1124e-17"/> + </g> + <g id="g3907" transform="scale(1.6543)"> + <rect id="rect1310" fill-rule="evenodd" height="118.84" width="239.29" y="5.5043e-7" x=".0099678" fill="#fff"/> + <path id="path549" d="m0.0099681 0.00033452-0.0099681 8.9195 57.103 29.341 21.485 0.622-78.578-38.883z" fill="#c00"/> + <path id="path551" d="m24.459 0.00033452 69.228 36.161v-36.161h-69.228z" fill="#006"/> + <path id="path552" fill="#c00" d="m102.92 0.00033452v46.163h-102.91v26.379h102.91v46.163h31.666v-46.163h102.91v-26.379h-102.91v-46.163h-31.666z"/> + <path id="path554" d="m143.82 0.00033452v34.073l67.73-33.809-67.73-0.26367z" fill="#006"/> + <path id="path555" d="m145.96 37.788 19.05-0.153 74-37.371-19.64 0.32017-73.41 37.204z" fill="#c00"/> + <path id="path700" d="m0.0099681 80.237v25.28l47.498-25.02-47.498-0.263z" fill="#006"/> + <path id="path701" d="m182.91 81.28-19.8-0.15376 74.638 37.162-0.49099-8.502-54.346-28.506zm-164.35 37.63 69.984-36.739-18.381 0.121-70.151 36.568" fill="#c00"/> + </g> + <path id="path556" d="m394.55 17.271-93.502 46.368 92.257 0.34526v69.093h-78.575l77.848 42.181 1.1427 21.458-41.581-0.49684-113.8-55.869v56.366h-82.939v-56.366l-106.75 56.215-48.214 0.15137v196.37h785.75v-392.74l-390.82-0.33945m-394.95 22.164-0.41463 40.783 82.722 1.037-82.307-41.82z" fill="#006"/> + <g id="g3304" fill-rule="evenodd" transform="matrix(.79241 0 0 .79977 .0059867 .00029105)" fill="#009fca"> + <rect id="rect3302" height="496.06" width="496.06" y="-.000015260" x="496.06"/> + <rect id="rect3303" rx="0" ry="0" height="251.45" width="525.79" y="244.61" x="-2.3032"/> + </g> + <g id="g5553" fill-rule="evenodd" transform="matrix(1.5189 0 0 1.5189 -136.22 80.582)" stroke-width="1pt" fill="#fff40d"> + <polygon id="polygon136" transform="matrix(.25628 0 0 .24119 337.93 -50.489)" points="555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9"/> + <polygon id="polygon3314" transform="matrix(.25628 0 0 .24119 292.37 79.065)" points="555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9"/> + <polygon id="polygon3315" transform="matrix(.25628 0 0 .24119 337.93 49.738)" points="555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9"/> + <polygon id="polygon3317" transform="matrix(.25628 0 0 .24119 142.03 143.7)" points="555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9"/> + <polygon id="polygon3319" transform="matrix(-.25628 0 0 -.24119 468.01 249.77)" points="555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9"/> + <polygon id="polygon3320" transform="matrix(-.25628 0 0 -.24119 521.54 175.74)" points="555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9"/> + <polygon id="polygon3321" transform="matrix(-.25628 0 0 -.24119 566.53 160.36)" points="555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9"/> + <polygon id="polygon3322" transform="matrix(-.25628 0 0 -.24119 521.54 288.49)" points="555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9"/> + <polygon id="polygon3323" transform="matrix(-.25628 0 0 -.24119 468.01 301.59)" points="555.61 324.28 626.44 324.23 569.1 365.81 591.04 433.16 591.04 433.16 533.77 391.48 476.5 433.15 498.45 365.81 441.12 324.21 511.95 324.28 533.78 256.9"/> + </g> + </g> +</svg> diff --git a/s/flag/tw.svg b/s/flag/tw.svg new file mode 100755 index 0000000..46c00ce --- /dev/null +++ b/s/flag/tw.svg @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg977" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4154"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs979"> + <clipPath id="clipPath3731" clipPathUnits="userSpaceOnUse"> + <rect id="rect3733" fill-opacity="0.67" height="512" width="682.67" y="-.000010707" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath3731)" transform="matrix(.93750 0 0 .93750 0 .000010038)" stroke-width="1pt"> + <rect id="rect983" height="512" width="768" y="-.0000039058" x="0" fill="#de2110"/> + <rect id="rect984" height="256" width="385.69" y="-.000012047" x="0" fill="#08399c"/> + <polygon id="polygon1007" d="m 272.53271,171.98603 -45.86308,-9.42646 9.76653,45.79186 -35.00536,-31.09509 -14.43787,44.54018 -14.76798,-44.43182 -34.77366,31.35399 9.42647,-45.86307 -45.79187,9.76652 31.0951,-35.00536 -44.540187,-14.43787 44.431827,-14.76798 -31.354,-34.773654 45.86308,9.426464 -9.76653,-45.791867 35.00536,31.095097 14.43787,-44.540185 14.76798,44.431823 34.77366,-31.353996 -9.42647,45.863079 45.79187,-9.766529 -31.0951,35.005358 44.54019,14.43787 -44.43182,14.76798 z" points="272.53 171.99 226.67 162.56 236.44 208.35 201.43 177.26 186.99 221.8 172.22 177.36 137.45 208.72 146.88 162.86 101.09 172.62 132.18 137.62 87.641 123.18 132.07 108.41 100.72 73.637 146.58 83.064 136.82 37.272 171.82 68.367 186.26 23.827 201.03 68.259 235.8 36.905 226.37 82.768 272.16 73.001 241.07 108.01 285.61 122.44 241.18 137.21" transform="matrix(1.0321 0 0 1.0321 .81976 1.0439)" fill="#fff"/> + <polygon id="polygon1009" d="m 230.41383,167.61855 -14.31689,7.62192 -13.95306,8.26918 -16.20975,-0.55767 -16.21829,0.18478 -13.75923,-8.58783 -14.13784,-7.94911 -7.62192,-14.3169 -8.26917,-13.95306 0.55767,-16.20975 -0.18479,-16.21829 8.58784,-13.759224 7.94911,-14.137842 14.3169,-7.621921 13.95305,-8.269174 16.20976,0.557671 16.21828,-0.184788 13.75923,8.587836 14.13784,7.949113 7.62192,14.316896 8.26918,13.953053 -0.55768,16.20976 0.18479,16.21829 -8.58783,13.75922 z" points="230.41 167.62 216.1 175.24 202.14 183.51 185.93 182.95 169.72 183.14 155.96 174.55 141.82 166.6 134.2 152.28 125.93 138.33 126.48 122.12 126.3 105.9 134.89 92.143 142.84 78.005 157.15 70.383 171.11 62.114 187.32 62.671 203.54 62.486 217.3 71.074 231.43 79.024 239.05 93.34 247.32 107.29 246.77 123.5 246.95 139.72 238.36 153.48" transform="matrix(1.0437 0 0 1.0409 -2.0083 .44858)" fill="#005387"/> + <path id="path1011" d="m236.88 122.81c0 27.754-22.499 50.253-50.253 50.253s-50.253-22.499-50.253-50.253 22.499-50.253 50.253-50.253 50.253 22.499 50.253 50.253z" transform="matrix(1.0321 0 0 1.0321 .15286 1.5287)" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/tz.svg b/s/flag/tz.svg new file mode 100755 index 0000000..3f2400f --- /dev/null +++ b/s/flag/tz.svg @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>SVG graphic of Tanzanian flag</dc:title> + <dc:rights><Agent> + <dc:title>Russell Cloran</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> + +</rdf:RDF> +--> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4166"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath3665" clipPathUnits="userSpaceOnUse"> + <rect id="rect3667" fill-opacity="0.67" height="120" width="160" y="8.125e-8" x="10"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3665)" fill-rule="evenodd" transform="matrix(4 0 0 4 -40 -3.25e-7)" stroke-width="1pt"> + <rect id="rect583" height="120" width="180" y="0" x="0" fill="#09f"/> + <path id="path584" d="m0 0h180l-180 120v-120z" fill="#090"/> + <path id="path586" d="m0 120h40l140-95v-25h-40l-140 95v25z"/> + <path id="path587" d="m0 91.456 137.18-91.456h13.52l-150.7 100.47v-9.014z" fill="#ff0"/> + <path id="path588" d="m-0.7049 95.47 150.7-100.47v9.014l-137.18 91.456h-13.521z" transform="translate(30,24.53)" fill="#ff0"/> + </g> +</svg> diff --git a/s/flag/ua.svg b/s/flag/ua.svg new file mode 100755 index 0000000..ce56ea4 --- /dev/null +++ b/s/flag/ua.svg @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4174"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.25 0 0 .9375 0 -.0000018493)"> + <rect id="rect171" height="512" width="512" y=".0000024116" x="0" fill="#ffd500"/> + <rect id="rect403" height="256" width="512" y=".0000024116" x="0" fill="#005bbb"/> + </g> +</svg> diff --git a/s/flag/ug.svg b/s/flag/ug.svg new file mode 100755 index 0000000..c8652eb --- /dev/null +++ b/s/flag/ug.svg @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata4201"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath4987" clipPathUnits="userSpaceOnUse"> + <rect id="rect4989" fill-opacity="0.67" height="512" width="682.67" y=".000022409" x="-85.333"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath4987)" transform="matrix(.93750 0 0 .93750 80 -.000021009)"> + <rect id="rect585" fill-rule="evenodd" height="85.321" width="768" y="341.36" x="-128" stroke-width="1pt" fill="#ffe700"/> + <rect id="rect586" fill-rule="evenodd" height="85.321" width="768" y="256" x="-128" stroke-width="1pt"/> + <rect id="rect587" fill-rule="evenodd" height="85.321" width="768" y="170.68" x="-128" stroke-width="1pt" fill="#de3908"/> + <rect id="rect588" fill-rule="evenodd" height="85.321" width="768" y="85.358" x="-128" stroke-width="1pt" fill="#ffe700"/> + <rect id="rect589" fill-rule="evenodd" height="85.321" width="768" y=".000021848" x="-128" stroke-width="1pt"/> + <g id="g568" transform="matrix(.69313 0 0 .69313 -17.787 96.709)"> + <path id="path567" d="m505 232.31c0 63.513-51.487 115-115 115s-115-51.487-115-115 51.487-115 115-115 115 51.487 115 115z" fill-rule="evenodd" transform="translate(5 -2.5)" stroke="#000" stroke-width="1.0667pt" fill="#fffdff"/> + <path id="path556" d="m374.71 141.65-7.466-13.752c2.881-2.881 7.728-5.108 15.455-5.108 0 0.524-0.786 15.062-0.786 15.062l-7.203 3.798z" fill-rule="evenodd" stroke="#000" stroke-width="1.0667pt" fill="#de3108"/> + <path id="path557" d="m381.91 137.99 1.048-15.193s15.455-0.916 23.837 9.168c0.131-0.131-8.251 11.787-8.251 11.787l-16.634-5.762z" fill-rule="evenodd" stroke="#000" stroke-width="1.0667pt" fill="#ffe700"/> + <path id="path558" d="m398.81 143.62 7.596-11.787c5.108 5.37 7.203 9.168 7.989 14.931 0.131 0.131-12.049 3.012-12.049 2.881s-3.405-5.894-3.536-6.025z" fill-rule="evenodd" stroke="#000" stroke-width="1.0667pt" fill="#de3108"/> + <path id="path565" stroke-linejoin="round" d="m378.51 338.24s14.276-16.372 42.042-12.835c-4.191-6.811-17.681-6.025-17.681-6.025s-4.191-31.826-0.917-33.398 17.157 0.131 17.157 0.131c1.833 0 4.977-4.977 2.489-8.12-2.489-3.144-9.823-15.193-6.811-17.551 3.013-2.357 19.384 1.31 19.384 1.31l-46.233-59.199s-4.715-22.265 4.715-33.005c11.395-9.43 10.216-19.646 9.823-19.515-1.572-10.347-17.288-17.813-27.897-8.251-6.287 7.596-2.096 13.359-2.096 13.359s-16.502 4.453-17.157 7.334c-0.655 2.882 18.598-0.523 18.598-0.523l-1.834 13.228s-37.458 34.052-8.775 63.521c0.262-0.131 0.917-1.31 0.917-1.31s10.085 12.443 20.693 15.193c9.954 10.216 9.038 8.644 9.038 8.644s1.964 16.11 0.131 19.253c-2.489-0.786-27.897-1.702-31.696-0.262-3.405 1.048-16.502 0.393-13.228 21.742 2.488-5.763 4.715-10.871 4.715-10.871s-0.393 7.727 2.751 10.478c-0.524-8.121 3.012-13.621 3.012-13.621s0.655 8.906 2.619 10.215c1.965 1.31 1.965-14.407 12.836-13.097 10.87 1.31 18.729 0.917 18.729 0.917s3.667 30.778 2.488 33.66c-7.859-1.834-26.587 0.786-27.766 5.501 11.001-0.655 16.11 0.654 16.11 0.654s-8.906 7.859-6.156 12.443z" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.3333"/> + <path id="path552" stroke-linejoin="round" d="m382.92 170.3s-27.256 30.042-15.497 53.031c0.626-3.206 0.353-5.22 0.746-5.089-0.655-0.393 3.38 2.766 3.073 2.151 0.086-1.662-1.229-5.224-1.229-5.224 1.229 0.307 2.459 0.615 3.688 0.922-0.717-1.332-1.435-2.663-2.152-3.995 1.742 0.205 3.483 0.409 5.225 0.614 0 0-1.844-4.917-1.229-4.917 0.614 0 4.302 0.307 4.302 0.307-7.751-13.91-0.439-25.462 3.073-37.8z" fill-rule="evenodd" stroke="#9ca69c" stroke-linecap="round" stroke-width="1.3333" fill="#9ca69c"/> + <path id="path554" d="m392.39 144.53s1.441 10.347-4.191 13.359c-0.917 0.655-4.453 1.834-3.929 3.93 0.655 2.881 2.226 2.357 4.453 1.833 5.893-1.048 12.704-13.621 3.667-19.122z" fill-rule="evenodd" stroke="#9ca69c" stroke-width="1.0667pt" fill="#9ca69c"/> + <path id="path555" d="m382.31 153.44c0 1.2297-0.99685 2.2265-2.2265 2.2265-1.2297 0-2.2265-0.99685-2.2265-2.2265 0-1.2297 0.99686-2.2265 2.2265-2.2265 1.2297 0 2.2265 0.99685 2.2265 2.2265z" fill-rule="evenodd" fill="#fff"/> + <path id="path559" d="m373.53 162.08c-1.441 1.179-9.037 9.038-1.572 11.919 7.728-2.096 5.632-3.536 7.335-5.239 0.044-3.536-3.842-4.453-5.763-6.68z" fill-rule="evenodd" stroke="#000" stroke-width="1.0667pt" fill="#de3108"/> + <path id="path560" stroke-linejoin="round" d="m390.03 236.35c-0.393 1.703-2.095 7.989 0.262 12.835 6.549-2.75 9.561-1.965 11.788-0.524-5.369-4.322-7.465-6.156-12.05-12.311z" fill-rule="evenodd" stroke="#9ca69c" stroke-linecap="round" stroke-width="1.3333" fill="#9ca69c"/> + <path id="path561" stroke-linejoin="round" d="m401.3 266.08 0.393 14.669s5.108 0.917 7.465 0c2.358-0.917-0.131-10.216-7.858-14.669z" fill-rule="evenodd" stroke="#fff" stroke-linecap="round" stroke-width="1.3333" fill="#fff"/> + <path id="path564" d="m438.36 267.91s-9.43-22.789-33.529-28.552-20.956-31.433-18.991-33.005c1.048-2.227 1.834-5.632 8.775-2.357 6.942 3.274 38.899 19.383 43.483 20.169s0.655 44.269 0.262 43.745z" fill-rule="evenodd" stroke="#000" stroke-width="1.0667pt" fill="#9ca69c"/> + <path id="path563" stroke-linejoin="round" d="m415.44 239.23c-0.393 0.262 32.219 19.252 22.396 35.624 9.3-6.156 6.287-16.895 6.287-16.895s7.596 19.777-10.871 29.469c1.965 1.703 3.275 1.309 3.275 1.309l-3.144 3.144s-1.441 2.357 11.002-3.668c-3.406 2.751-3.667 4.715-3.667 4.715s0.916 2.62 9.037-4.453c-6.549 7.073-7.99 10.74-7.99 10.609 17.681-1.572 56.187-59.068-12.18-76.095 3.668 3.799 3.143 3.275 3.143 3.275l-17.288 12.966z" fill-rule="evenodd" stroke="#000" stroke-width="1.3333" fill="#de3108"/> + <path id="path562" stroke-linejoin="round" d="m416.88 233.6c4.453 3.143 6.024 4.191 6.548 5.763-4.06-0.916-7.727-0.655-7.727-0.655s-8.775-8.382-10.347-9.037c-1.179 0-7.989-4.322-7.989-4.322-3.405-1.703-6.548-13.49 6.025-10.085 12.965 6.155 14.799 6.68 14.799 6.68 5.152 1.615 10.303 3.231 15.455 4.846 2.969 3.318 5.937 6.636 8.906 9.954 0 0-15.847-7.859-17.812-7.99 4.322 3.536 6.811 8.382 6.811 8.382-5.021-1.441-9.386-2.75-14.669-3.536z" fill-rule="evenodd" stroke="#000" stroke-linecap="round" stroke-width="1.3333" fill="#fff"/> + <path id="path566" d="m355.2 163.26s15.193-3.667 17.026-3.143" stroke="#fff" stroke-linecap="round" stroke-width="1.3333" fill="none"/> + </g> + <rect id="rect584" fill-rule="evenodd" height="85.321" width="768" y="426.68" x="-128" stroke-width="1pt" fill="#de3908"/> + </g> +</svg> diff --git a/s/flag/um.svg b/s/flag/um.svg new file mode 100755 index 0000000..ccaca45 --- /dev/null +++ b/s/flag/um.svg @@ -0,0 +1,141 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>New Zealand, Australia, United Kingdom, United States, +Bosnia and Herzegovina, Azerbaijan, Armenia, Bahamas, Belgium, Benin, +Bulgaria, Estonia, Finland, Gabon, Gambia, Germany, Greece, Greenland, +Guinea, Honduras, Israel, Jamaica, Jordan, and Romania Flags</dc:title> + <dc:rights><Agent> + <dc:title>Daniel McRae</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> +</rdf:RDF> +--> +<svg id="svg153" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata88"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <desc id="desc3">The United States of America flag, produced by Daniel McRae</desc> + <defs id="defs155"> + <clipPath id="clipPath4819" clipPathUnits="userSpaceOnUse"> + <rect id="rect4821" fill-opacity="0.67" height="512" width="682.67" y=".0000054613" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath4819)" transform="matrix(.93750 0 0 .93750 0 -.00000512)"> + <g id="g390" stroke-width="1pt" transform="matrix(3.9385 0 0 3.9385 0 .000005)"> + <g id="g169" fill="#bd3d44"> + <rect id="rect156" height="10" width="247" y="0" x="0"/> + <rect id="rect158" height="10" width="247" y="20" x="0"/> + <rect id="rect160" height="10" width="247" y="40" x="0"/> + <rect id="rect162" height="10" width="247" y="60" x="0"/> + <rect id="rect164" height="10" width="247" y="80" x="0"/> + <rect id="rect166" height="10" width="247" y="100" x="0"/> + <rect id="rect168" height="10" width="247" y="120" x="0"/> + </g> + <g id="g177" fill="#fff"> + <rect id="rect157" height="10" width="247" y="10" x="0"/> + <rect id="rect159" height="10" width="247" y="30" x="0"/> + <rect id="rect161" height="10" width="247" y="50" x="0"/> + <rect id="rect163" height="10" width="247" y="70" x="0"/> + <rect id="rect165" height="10" width="247" y="90" x="0"/> + <rect id="rect167" height="10" width="247" y="110" x="0"/> + </g> + </g> + <rect id="rect200" height="275.69" width="389.12" y="0.000005" x="0" stroke-width="1pt" fill="#192f5d"/> + <g id="g274" fill="#fff" transform="matrix(3.9385 0 0 3.9385 0 .000005)"> + <g id="g218"> + <g id="g194"> + <polygon id="polygon207" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon188" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon189" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon190" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon191" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon192" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + <g id="g205"> + <polygon id="polygon193" transform="translate(16.467 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon201" transform="translate(32.933 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon202" transform="translate(49.4,14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon203" transform="translate(65.867 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon204" transform="translate(82.333 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + <g id="g232" transform="translate(0,14)"> + <g id="g233"> + <polygon id="polygon234" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon235" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon236" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon237" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon238" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon239" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + <g id="g240"> + <polygon id="polygon241" transform="translate(16.467 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon242" transform="translate(32.933 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon243" transform="translate(49.4,14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon244" transform="translate(65.867 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon245" transform="translate(82.333 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + <g id="g246" transform="translate(0,28)"> + <g id="g247"> + <polygon id="polygon248" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon249" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon250" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon251" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon252" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon253" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + <g id="g254"> + <polygon id="polygon255" transform="translate(16.467 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon256" transform="translate(32.933 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon257" transform="translate(49.4,14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon258" transform="translate(65.867 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon259" transform="translate(82.333 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + <g id="g260" transform="translate(0,42)"> + <g id="g261"> + <polygon id="polygon262" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon263" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon264" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon265" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon266" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon267" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + <g id="g268"> + <polygon id="polygon269" transform="translate(16.467 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon270" transform="translate(32.933 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon271" transform="translate(49.4,14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon272" transform="translate(65.867 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon273" transform="translate(82.333 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + <g id="g211" transform="translate(0,56)"> + <polygon id="polygon212" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon213" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon214" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon215" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon216" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon217" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/us.svg b/s/flag/us.svg new file mode 100755 index 0000000..631f68e --- /dev/null +++ b/s/flag/us.svg @@ -0,0 +1,141 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- /Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<Work rdf:about=""> + <dc:title>New Zealand, Australia, United Kingdom, United States, +Bosnia and Herzegovina, Azerbaijan, Armenia, Bahamas, Belgium, Benin, +Bulgaria, Estonia, Finland, Gabon, Gambia, Germany, Greece, Greenland, +Guinea, Honduras, Israel, Jamaica, Jordan, and Romania Flags</dc:title> + <dc:rights><Agent> + <dc:title>Daniel McRae</dc:title> + </Agent></dc:rights> + <license rdf:resource="http://web.resource.org/cc/PublicDomain" /> +</Work> + +<License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> +</License> +</rdf:RDF> +--> +<svg id="svg153" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3151"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <desc id="desc3066">The United States of America flag, produced by Daniel McRae</desc> + <defs id="defs155"> + <clipPath id="clipPath4293" clipPathUnits="userSpaceOnUse"> + <rect id="rect4295" fill-opacity="0.67" height="512" width="682.67" y=".0000052307" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath4293)" transform="matrix(.93750 0 0 .93750 0 -.0000049038)"> + <g id="g390" stroke-width="1pt" transform="matrix(3.9385 0 0 3.9385 0 .000005)"> + <g id="g169" fill="#bd3d44"> + <rect id="rect156" height="10" width="247" y="0" x="0"/> + <rect id="rect158" height="10" width="247" y="20" x="0"/> + <rect id="rect160" height="10" width="247" y="40" x="0"/> + <rect id="rect162" height="10" width="247" y="60" x="0"/> + <rect id="rect164" height="10" width="247" y="80" x="0"/> + <rect id="rect166" height="10" width="247" y="100" x="0"/> + <rect id="rect168" height="10" width="247" y="120" x="0"/> + </g> + <g id="g177" fill="#fff"> + <rect id="rect157" height="10" width="247" y="10" x="0"/> + <rect id="rect159" height="10" width="247" y="30" x="0"/> + <rect id="rect161" height="10" width="247" y="50" x="0"/> + <rect id="rect163" height="10" width="247" y="70" x="0"/> + <rect id="rect165" height="10" width="247" y="90" x="0"/> + <rect id="rect167" height="10" width="247" y="110" x="0"/> + </g> + </g> + <rect id="rect200" height="275.69" width="389.12" y="0.000005" x="0" stroke-width="1pt" fill="#192f5d"/> + <g id="g274" fill="#fff" transform="matrix(3.9385 0 0 3.9385 0 .000005)"> + <g id="g218"> + <g id="g194"> + <polygon id="polygon207" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon188" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon189" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon190" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon191" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon192" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + <g id="g205"> + <polygon id="polygon193" transform="translate(16.467 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon201" transform="translate(32.933 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon202" transform="translate(49.4,14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon203" transform="translate(65.867 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon204" transform="translate(82.333 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + <g id="g232" transform="translate(0,14)"> + <g id="g233"> + <polygon id="polygon234" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon235" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon236" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon237" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon238" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon239" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + <g id="g240"> + <polygon id="polygon241" transform="translate(16.467 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon242" transform="translate(32.933 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon243" transform="translate(49.4,14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon244" transform="translate(65.867 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon245" transform="translate(82.333 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + <g id="g246" transform="translate(0,28)"> + <g id="g247"> + <polygon id="polygon248" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon249" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon250" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon251" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon252" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon253" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + <g id="g254"> + <polygon id="polygon255" transform="translate(16.467 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon256" transform="translate(32.933 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon257" transform="translate(49.4,14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon258" transform="translate(65.867 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon259" transform="translate(82.333 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + <g id="g260" transform="translate(0,42)"> + <g id="g261"> + <polygon id="polygon262" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon263" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon264" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon265" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon266" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon267" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + <g id="g268"> + <polygon id="polygon269" transform="translate(16.467 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon270" transform="translate(32.933 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon271" transform="translate(49.4,14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon272" transform="translate(65.867 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon273" transform="translate(82.333 14)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + <g id="g211" transform="translate(0,56)"> + <polygon id="polygon212" transform="translate(8.2333 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon213" transform="translate(24.7,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon214" transform="translate(41.167 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon215" transform="translate(57.633 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon216" transform="translate(74.1,7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + <polygon id="polygon217" transform="translate(90.567 7)" d="M 1.3084868e-6,-4.0040002 0.89895399,-1.237304 3.8080309,-1.2373029 1.4545381,0.47260808 2.3534912,3.239305 0,1.5293919 l -2.3534933,1.7099115 0.8989552,-2.76669531 -2.353492,-1.70991339 2.9090761,1.3e-6 z" points="0 -4.004 0.89895 -1.2373 3.808 -1.2373 1.4545 0.47261 2.3535 3.2393 0 1.5294 -2.3535 3.2393 -1.4545 0.47261 -3.808 -1.2373 -0.89895 -1.2373"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/uy.svg b/s/flag/uy.svg new file mode 100755 index 0000000..0b1409e --- /dev/null +++ b/s/flag/uy.svg @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg832" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3192"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs834"> + <linearGradient id="linearGradient583"> + <stop id="stop584" stop-color="#faff00" offset="0"/> + <stop id="stop585" stop-color="#f5c402" offset="1"/> + </linearGradient> + <linearGradient id="linearGradient3751" y2="459.27" xlink:href="#linearGradient583" gradientUnits="userSpaceOnUse" x2="123.79" gradientTransform="matrix(.75070 -.024221 -.045871 1.4224 26.394 -26.59)" y1="360.52" x1="123.79"/> + <linearGradient id="linearGradient3753" y2="459.27" xlink:href="#linearGradient583" gradientUnits="userSpaceOnUse" x2="123.79" gradientTransform="matrix(.72666 .00062667 .0011868 1.4679 -.62419 -48.245)" y1="360.52" x1="123.79"/> + <linearGradient id="linearGradient3755" y2="459.27" xlink:href="#linearGradient583" gradientUnits="userSpaceOnUse" x2="123.79" gradientTransform="matrix(.75140 .024216 .045862 1.4211 -30.188 -29.545)" y1="360.52" x1="123.79"/> + <linearGradient id="linearGradient3757" y2="459.27" xlink:href="#linearGradient583" gradientUnits="userSpaceOnUse" x2="123.79" gradientTransform="matrix(.77510 -.00034739 -.00065790 1.3762 -23.236 .16664)" y1="360.52" x1="123.79"/> + <linearGradient id="linearGradient3759" y2="459.27" xlink:href="#linearGradient583" gradientUnits="userSpaceOnUse" x2="123.79" gradientTransform="matrix(.75059 -.024220 -.045869 1.4226 -1.5653 1.5838)" y1="360.52" x1="123.79"/> + <linearGradient id="linearGradient3761" y2="459.27" xlink:href="#linearGradient583" gradientUnits="userSpaceOnUse" x2="123.79" gradientTransform="matrix(.75113 .024220 .045870 1.4216 -1.8465 -1.8275)" y1="360.52" x1="123.79"/> + <linearGradient id="linearGradient3763" y2="459.27" xlink:href="#linearGradient583" gradientUnits="userSpaceOnUse" x2="123.79" gradientTransform="matrix(.77510 -.00020840 -.00039467 1.3762 16.423 -.070651)" y1="360.52" x1="123.79"/> + <linearGradient id="linearGradient3765" y2="459.27" xlink:href="#linearGradient583" gradientUnits="userSpaceOnUse" x2="123.79" gradientTransform="matrix(.72665 0 0 1.4679 0 -8.4634)" y1="360.52" x1="123.79"/> + <clipPath id="clipPath3767" clipPathUnits="userSpaceOnUse"> + <rect id="rect3769" fill-opacity="0.67" height="512" width="640" y=".000010965" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3767)" transform="matrix(1 0 0 .93750 0 -.000010279)"> + <g id="g594" fill-rule="evenodd" transform="matrix(.48345 0 0 .48345 116.34 -61.375)"> + <rect id="rect741" height="1059" width="1587" y="126.95" x="-240.65" stroke-width="1pt" fill="#fff"/> + <path id="path593" d="m101.66 488.82c9.641 18.113 21.855 33.027 30.418 58.686 1.846 34.313-2.07 40.849 4.635 57.059 2.696 5.929 6.544 8.378 7.285 22.123-1.146 19.675-9.645 20.899-18 20.359-1.5-6.043-0.002-9.946-10.648-20.357-5.765-6.161-12.613-16.348-16.234-29.493-1.1265-12.074-1.7577-27.767-7.7864-40.892-8.6741-14.17-9.9698-21.069-18.211-28.491-8.486-9.873-8.0016-13.336-12.65-24.094 11.39-18.449 22.187-20.33 41.192-14.9z" fill-opacity=".56078" transform="matrix(-.70971 .70449 -.70449 -.70971 390.96 688.93)" stroke="#cbaa19" stroke-width="3.2275" fill="url(#linearGradient3751)"/> + <path id="path591" d="m101.66 488.82c9.641 18.113 21.855 33.027 30.418 58.686 1.846 34.313-2.07 40.849 4.635 57.059 2.696 5.929 6.544 8.378 7.285 22.123-1.146 19.675-9.645 20.899-18 20.359-1.5-6.043-0.002-9.946-10.648-20.357-5.765-6.161-12.613-16.348-16.234-29.493-1.1265-12.074-1.7577-27.767-7.7864-40.892-8.6741-14.17-9.9698-21.069-18.211-28.491-8.486-9.873-8.0016-13.336-12.65-24.094 11.39-18.449 22.187-20.33 41.192-14.9z" fill-opacity=".56078" transform="matrix(-.99992 -.012937 .012937 -.99992 101.58 850.68)" stroke="#cbaa19" stroke-width="3.2275" fill="url(#linearGradient3753)"/> + <path id="path590" d="m101.66 488.82c9.641 18.113 21.855 33.027 30.418 58.686 1.846 34.313-2.07 40.849 4.635 57.059 2.696 5.929 6.544 8.378 7.285 22.123-1.146 19.675-9.645 20.899-18 20.359-1.5-6.043-0.002-9.946-10.648-20.357-5.765-6.161-12.613-16.348-16.234-29.493-1.1265-12.074-1.7577-27.767-7.7864-40.892-8.6741-14.17-9.9698-21.069-18.211-28.491-8.486-9.873-8.0016-13.336-12.65-24.094 11.39-18.449 22.187-20.33 41.192-14.9z" fill-opacity=".56078" transform="matrix(-.69945 -.71468 .71468 -.69945 -212.76 760.55)" stroke="#cbaa19" stroke-width="3.2275" fill="url(#linearGradient3755)"/> + <path id="path589" d="m101.66 488.82c9.641 18.113 21.855 33.027 30.418 58.686 1.846 34.313-2.07 40.849 4.635 57.059 2.696 5.929 6.544 8.378 7.285 22.123-1.146 19.675-9.645 20.899-18 20.359-1.5-6.043-0.002-9.946-10.648-20.357-5.765-6.161-12.613-16.348-16.234-29.493-1.1265-12.074-1.7577-27.767-7.7864-40.892-8.6741-14.17-9.9698-21.069-18.211-28.491-8.486-9.873-8.0016-13.336-12.65-24.094 11.39-18.449 22.187-20.33 41.192-14.9z" fill-opacity=".56078" transform="matrix(.0071712 -.99997 .99997 .0071712 -371.84 475.5)" stroke="#cbaa19" stroke-width="3.2275" fill="url(#linearGradient3757)"/> + <path id="path587" d="m101.66 488.82c9.641 18.113 21.855 33.027 30.418 58.686 1.846 34.313-2.07 40.849 4.635 57.059 2.696 5.929 6.544 8.378 7.285 22.123-1.146 19.675-9.645 20.899-18 20.359-1.5-6.043-0.002-9.946-10.648-20.357-5.765-6.161-12.613-16.348-16.234-29.493-1.1265-12.074-1.7577-27.767-7.7864-40.892-8.6741-14.17-9.9698-21.069-18.211-28.491-8.486-9.873-8.0016-13.336-12.65-24.094 11.39-18.449 22.187-20.33 41.192-14.9z" fill-opacity=".56078" transform="matrix(.71126 -.70293 .70293 .71126 -283.29 160.35)" stroke="#cbaa19" stroke-width="3.2275" fill="url(#linearGradient3759)"/> + <path id="path595" d="m101.66 488.82c9.641 18.113 21.855 33.027 30.418 58.686 1.846 34.313-2.07 40.849 4.635 57.059 2.696 5.929 6.544 8.378 7.285 22.123-1.146 19.675-9.645 20.899-18 20.359-1.5-6.043-0.002-9.946-10.648-20.357-5.765-6.161-12.613-16.348-16.234-29.493-1.1265-12.074-1.7577-27.767-7.7864-40.892-8.6741-14.17-9.9698-21.069-18.211-28.491-8.486-9.873-8.0016-13.336-12.65-24.094 11.39-18.449 22.187-20.33 41.192-14.9z" fill-opacity=".56078" transform="matrix(.70345 .71074 -.71074 .70345 317.95 87.982)" stroke="#cbaa19" stroke-width="3.2275" fill="url(#linearGradient3761)"/> + <path id="path594" d="m101.66 488.82c9.641 18.113 21.855 33.027 30.418 58.686 1.846 34.313-2.07 40.849 4.635 57.059 2.696 5.929 6.544 8.378 7.285 22.123-1.146 19.675-9.645 20.899-18 20.359-1.5-6.043-0.002-9.946-10.648-20.357-5.765-6.161-12.613-16.348-16.234-29.493-1.1265-12.074-1.7577-27.767-7.7864-40.892-8.6741-14.17-9.9698-21.069-18.211-28.491-8.486-9.873-8.0016-13.336-12.65-24.094 11.39-18.449 22.187-20.33 41.192-14.9z" fill-opacity=".56078" transform="matrix(-.0043019 .99999 -.99999 -.0043019 478.78 373.3)" stroke="#cbaa19" stroke-width="3.2275" fill="url(#linearGradient3763)"/> + <rect id="rect845" height="120.52" width="1001.2" y="247.98" x="345.13" stroke-width="1pt" fill="#002993"/> + <rect id="rect846" height="120.52" width="1001.2" y="482.62" x="345.13" stroke-width="1pt" fill="#002993"/> + <path id="path613" d="m101.66 488.82c9.641 18.113 21.855 33.027 30.418 58.686 1.846 34.313-2.07 40.849 4.635 57.059 2.696 5.929 6.544 8.378 7.285 22.123-1.146 19.675-9.645 20.899-18 20.359-1.5-6.043-0.002-9.946-10.648-20.357-5.765-6.161-12.613-16.348-16.234-29.493-1.1265-12.074-1.7577-27.767-7.7864-40.892-8.6741-14.17-9.9698-21.069-18.211-28.491-8.486-9.873-8.0016-13.336-12.65-24.094 11.39-18.449 22.187-20.33 41.192-14.9z" fill-opacity=".56078" stroke="#cbaa19" stroke-width="3.2275" fill="url(#linearGradient3765)"/> + <rect id="rect847" height="120.52" width="1587" y="714.54" x="-240.65" stroke-width="1pt" fill="#002993"/> + <rect id="rect848" height="120.52" width="1587" y="947.82" x="-240.65" stroke-width="1pt" fill="#002993"/> + <path id="path585" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" stroke="#cbaa19" stroke-linecap="round" stroke-width="3.2275" fill="#faff00"/> + <path id="path588" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(-1 0 0 1 107.08 -.00048828)" stroke="#cbaa19" stroke-width="3.2275" fill="#f5c402"/> + <path id="path596" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(.70581 -.70840 .70840 .70581 -285.33 162.96)" stroke="#cbaa19" stroke-linecap="round" stroke-width="3.2275" fill="#faff00"/> + <path id="path597" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(-.70581 .70840 .70840 .70581 -209.75 87.104)" stroke="#cbaa19" stroke-width="3.2275" fill="#f5c402"/> + <path id="path598" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(-.0019282 -1 1 -.0019282 -371.37 479.37)" stroke="#cbaa19" stroke-linecap="round" stroke-width="3.2275" fill="#faff00"/> + <path id="path599" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(.0019282 1 1 -.0019282 -371.57 372.29)" stroke="#cbaa19" stroke-width="3.2275" fill="#f5c402"/> + <path id="path600" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(-.70544 -.70877 .70877 -.70544 -209.93 762.78)" stroke="#cbaa19" stroke-linecap="round" stroke-width="3.2275" fill="#faff00"/> + <path id="path601" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(.70544 .70877 .70877 -.70544 -285.47 686.88)" stroke="#cbaa19" stroke-width="3.2275" fill="#f5c402"/> + <path id="path602" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(-1 .0019556 -.0019556 -1 107.91 849.92)" stroke="#cbaa19" stroke-linecap="round" stroke-width="3.2275" fill="#faff00"/> + <path id="path603" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(1 -.0019556 -.0019556 -1 .83117 850.13)" stroke="#cbaa19" stroke-width="3.2275" fill="#f5c402"/> + <path id="path604" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(-.70577 .70844 -.70844 -.70577 392.42 687.04)" stroke="#cbaa19" stroke-linecap="round" stroke-width="3.2275" fill="#faff00"/> + <path id="path605" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(.70577 -.70844 -.70844 -.70577 316.85 762.9)" stroke="#cbaa19" stroke-width="3.2275" fill="#f5c402"/> + <path id="path606" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(.011057 .99994 -.99994 .011057 477.93 366.77)" stroke="#cbaa19" stroke-linecap="round" stroke-width="3.2275" fill="#faff00"/> + <path id="path607" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(-.011057 -.99994 -.99994 .011057 479.12 473.85)" stroke="#cbaa19" stroke-width="3.2275" fill="#f5c402"/> + <path id="path608" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(.71235 .70182 -.70182 .71235 313.68 84.677)" stroke="#cbaa19" stroke-linecap="round" stroke-width="3.2275" fill="#faff00"/> + <path id="path609" d="m82.66 496.87-29.119 159.36v-159.36h29.119z" transform="matrix(-.71235 -.70182 -.70182 .71235 389.96 159.83)" stroke="#cbaa19" stroke-width="3.2275" fill="#f5c402"/> + <ellipse id="path566" fill="#faff00" transform="translate(.95610 2.8683)" cx="52.585" rx="82.224" cy="422.29" ry="81.268" stroke="#cbaa19" stroke-width="3.2275" d="m 134.80975,422.29388 c 0,44.88325 -36.813109,81.26831 -82.224385,81.26831 -45.4112753,0 -82.224388,-36.38506 -82.224388,-81.26831 0,-44.88324 36.8131127,-81.26831 82.224388,-81.26831 45.411276,0 82.224385,36.38507 82.224385,81.26831 z"/> + </g> + </g> +</svg> diff --git a/s/flag/uz.svg b/s/flag/uz.svg new file mode 100755 index 0000000..92e1052 --- /dev/null +++ b/s/flag/uz.svg @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3215"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath3415" clipPathUnits="userSpaceOnUse"> + <rect id="rect3417" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath3415)"> + <rect id="rect568" height="480" width="960" y="-.0000082911" x="0" stroke-width="1pt" fill="#fff"/> + <rect id="rect558" height="166.14" width="960" y=".00029167" x="0" stroke-width="1pt" fill="#94acd4"/> + <rect id="rect555" height="11.005" width="960" y="155.14" x="0" stroke-width="1pt" fill="#b73000"/> + <rect id="rect557" height="155.14" width="960" y="324.86" x="0" stroke-width="1pt" fill="#00a900"/> + <rect id="rect556" height="11.005" width="960" y="324.86" x="0" stroke-width="1pt" fill="#b73000"/> + <polygon id="polygon561" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 69.068 -66.212)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon562" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 26.91 16.736)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon563" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 69.474 16.736)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon564" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 108.79 16.736)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon565" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 145.28 16.736)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon566" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 -17.681 16.736)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon567" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 26.099 -24.432)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon568" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 69.068 -24.432)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon569" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 109.6 -24.432)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon570" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 144.87 -24.432)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon571" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 144.47 -66.212)" stroke-width="1pt" fill="#feffff"/> + <polygon id="polygon572" d="m 205.58449,128.73621 -10.01635,-6.84893 -9.90282,7.01206 3.41849,-11.64254 -9.72901,-7.2513 12.12909,-0.34657 3.88997,-11.493607 4.0777,11.428357 12.13314,0.14786 -9.60893,7.40967 z" points="205.58 128.74 195.57 121.89 185.66 128.9 189.08 117.26 179.36 110.01 191.48 109.66 195.37 98.165 199.45 109.59 211.58 109.74 201.98 117.15" transform="matrix(.89301 0 0 .89794 109.2 -66.212)" stroke-width="1pt" fill="#feffff"/> + <path id="path575" d="m137.83 25.111c-47.838-13.111-78.139 20.754-77.683 51.103 0.456 30.346 28.426 62.486 71.603 54.466-67.837 31.79-102.53-18.28-101.14-58.032 2.378-46.988 55.193-85.309 107.22-47.537z" fill="#fff"/> + </g> +</svg> diff --git a/s/flag/va.svg b/s/flag/va.svg new file mode 100755 index 0000000..309ac48 --- /dev/null +++ b/s/flag/va.svg @@ -0,0 +1,501 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3692"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd"> + <rect id="rect4999" height="480" width="320" y=".00017292" x="320" stroke-width="1pt" fill="#fff"/> + <g id="g4528" transform="matrix(.13120 0 0 .15231 417.12 213.17)"> + <path id="path3462" d="m282.43-735.13c0 0.625 55.956 222.85 118.17 300.56 69.375 87.27 113.18 87.333 113.18 87.333l70.866-17.717s-41.496 2.093-123.8-104.21c-83.45-107.78-109.42-285.96-108.17-282.84l-70.241 16.875z" transform="matrix(-1.8293 0 0 1.3072 891.54 795.66)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3441" d="m285-727.64c-1.535-9.369 33.898 220.95 140.2 327.24 53.149 53.15 88.583 53.15 88.583 53.15l88.582-17.717s-51.712 3.751-134.02-102.55c-83.45-107.78-108.58-263.25-107.96-263.87l-75.38 3.75z" transform="matrix(1.8293 0 0 1.3072 -268.51 807.56)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3442" d="m282.43-735.13c0 0.625 55.956 222.85 118.17 300.56 69.375 87.27 113.18 87.333 113.18 87.333l70.866-17.717s-41.496 2.093-123.8-104.21c-83.45-107.78-109.42-285.96-108.17-282.84l-70.241 16.875z" transform="matrix(1.8293 0 0 1.3072 -268.51 807.56)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3461" d="m285-727.64c-1.535-9.369 33.898 220.95 140.2 327.24 53.149 53.15 88.583 53.15 88.583 53.15l88.582-17.717s-51.712 3.751-134.02-102.55c-83.45-107.78-108.58-263.25-107.96-263.87l-75.38 3.75z" transform="matrix(-1.8293 0 0 1.3072 891.54 795.66)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3443" d="m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606 0.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839c2.651 4.42 5.303 8.839 5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696 0.054-9.464-1.714z" transform="matrix(1.8289 .028083 -0.0393 1.3069 -282.83 847.84)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <g id="g2599" transform="matrix(-1.098 -.052087 -.072237 .79175 576.72 591.32)" stroke="#000" stroke-width="12.791" fill="#b00"> + <path id="path2600" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12336 .014713 -.063908 -.10060 550.75 255.13)"/> + <path id="path2601" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12126 .017986 -.065313 -.10042 561.45 266.72)"/> + <path id="path2602" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12336 .014713 -.063908 -.10060 574.98 280.98)"/> + <path id="path2603" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12303 -.017259 -.036116 -.11358 432.3 104.15)"/> + <path id="path2604" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12208 -.011153 -.039758 -0.113 439.61 116.98)"/> + <path id="path2605" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12335 -.014829 -.038349 -.11285 449.4 134.04)"/> + <path id="path2606" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12254 -.0034037 -.046830 -.11025 455.97 139.06)"/> + <path id="path2607" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12051 -0.0302 -.023876 -.11677 405.54 48.626)"/> + <path id="path2608" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11971 -.026394 -.025255 -.11710 411.41 63.259)"/> + <path id="path2609" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12051 -0.0302 -.023876 -.11677 418.98 81.413)"/> + <path id="path2610" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12020 -.024050 -.027537 -.11658 426.33 94.354)"/> + <path id="path2611" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12415 .0046924 -.055567 -.10544 505.97 205.18)"/> + <path id="path2612" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12232 .0081242 -.056981 -.10537 515.7 217.59)"/> + <path id="path2613" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12415 .0046924 -.055567 -.10544 528.04 232.9)"/> + <path id="path2614" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12126 .017986 -.065313 -.10042 537.21 240.87)"/> + <path id="path2615" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12404 -.0069922 -.045415 -.11020 466.82 155.47)"/> + <path id="path2616" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12254 -.0034037 -.046830 -.11025 475.34 168.73)"/> + <path id="path2617" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12415 .0046924 -.055567 -.10544 483.91 177.46)"/> + <path id="path2618" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12232 .0081242 -.056981 -.10537 493.63 189.87)"/> + <path id="path2619" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11229 -.053160 -.00060530 -.11918 349.93 -134.62)"/> + <path id="path2620" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11582 -.040159 -.011443 -.11924 349.8 -129.74)"/> + <path id="path2621" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11617 -.044032 -.010111 -.11876 355.2 -110.83)"/> + <path id="path2622" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11582 -.040159 -.011443 -.11924 359.33 -95.609)"/> + <path id="path2623" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11225 -.049271 -.0018940 -.11977 339.28 -188.68)"/> + <path id="path2624" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11229 -.053160 -.00060530 -.11918 343.16 -169.4)"/> + <path id="path2625" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11225 -.049271 -.0018940 -.11977 346.05 -153.9)"/> + <path id="path2626" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11931 -.034645 -.019532 -.11758 380.94 -15.821)"/> + <path id="path2627" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11865 -.030812 -.020898 -.11795 386.26 -.97980)"/> + <path id="path2628" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11931 -.034645 -.019532 -.11758 393.16 17.442)"/> + <path id="path2629" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11971 -.026394 -.025255 -.11710 397.97 30.472)"/> + <path id="path2630" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11617 -.044032 -.010111 -.11876 364.73 -76.697)"/> + <path id="path2631" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11865 -.030812 -.020898 -.11795 361.84 -67.505)"/> + <path id="path2632" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11931 -.034645 -.019532 -.11758 368.73 -49.083)"/> + <path id="path2633" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11865 -.030812 -.020898 -.11795 374.05 -34.242)"/> + <path id="path2634" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10237 -.070401 .018425 -.11775 323.56 -283.26)"/> + <path id="path2635" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11132 -.055166 .0015334 -.11918 322.41 -270.56)"/> + <path id="path2636" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11135 -.051277 .00025576 -.11979 325.02 -255.01)"/> + <path id="path2637" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10295 -.066556 .017248 -.11854 321.68 -338.33)"/> + <path id="path2638" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10237 -.070401 .018425 -.11775 322.43 -318.68)"/> + <path id="path2639" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10295 -.066556 .017248 -.11854 322.81 -302.92)"/> + <path id="path2640" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11132 -.055166 .0015334 -.11918 328.55 -235.66)"/> + <path id="path2641" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11225 -.049271 -.0018940 -.11977 332.34 -224.34)"/> + <path id="path2642" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11229 -.053160 -.00060530 -.11918 336.21 -205.06)"/> + </g> + <g id="g2555" transform="matrix(1.1004 0 0 .79346 49.716 525.11)" stroke="#000" stroke-width="12.791" fill="#b00"> + <path id="path2512" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12336 .014713 -.063908 -.10060 550.75 255.13)"/> + <path id="path2513" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12126 .017986 -.065313 -.10042 561.45 266.72)"/> + <path id="path2514" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12336 .014713 -.063908 -.10060 574.98 280.98)"/> + <path id="path2515" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12303 -.017259 -.036116 -.11358 432.3 104.15)"/> + <path id="path2516" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12208 -.011153 -.039758 -0.113 439.61 116.98)"/> + <path id="path2517" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12335 -.014829 -.038349 -.11285 449.4 134.04)"/> + <path id="path2518" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12254 -.0034037 -.046830 -.11025 455.97 139.06)"/> + <path id="path2519" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12051 -0.0302 -.023876 -.11677 405.54 48.626)"/> + <path id="path2520" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11971 -.026394 -.025255 -.11710 411.41 63.259)"/> + <path id="path2521" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12051 -0.0302 -.023876 -.11677 418.98 81.413)"/> + <path id="path2522" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12020 -.024050 -.027537 -.11658 426.33 94.354)"/> + <path id="path2523" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12415 .0046924 -.055567 -.10544 505.97 205.18)"/> + <path id="path2524" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12232 .0081242 -.056981 -.10537 515.7 217.59)"/> + <path id="path2525" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12415 .0046924 -.055567 -.10544 528.04 232.9)"/> + <path id="path2526" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12126 .017986 -.065313 -.10042 537.21 240.87)"/> + <path id="path2527" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12404 -.0069922 -.045415 -.11020 466.82 155.47)"/> + <path id="path2528" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12254 -.0034037 -.046830 -.11025 475.34 168.73)"/> + <path id="path2529" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12415 .0046924 -.055567 -.10544 483.91 177.46)"/> + <path id="path2530" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12232 .0081242 -.056981 -.10537 493.63 189.87)"/> + <path id="path2531" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11229 -.053160 -.00060530 -.11918 349.93 -134.62)"/> + <path id="path2532" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11582 -.040159 -.011443 -.11924 349.8 -129.74)"/> + <path id="path2533" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11617 -.044032 -.010111 -.11876 355.2 -110.83)"/> + <path id="path2534" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11582 -.040159 -.011443 -.11924 359.33 -95.609)"/> + <path id="path2535" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11225 -.049271 -.0018940 -.11977 339.28 -188.68)"/> + <path id="path2536" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11229 -.053160 -.00060530 -.11918 343.16 -169.4)"/> + <path id="path2537" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11225 -.049271 -.0018940 -.11977 346.05 -153.9)"/> + <path id="path2538" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11931 -.034645 -.019532 -.11758 380.94 -15.821)"/> + <path id="path2539" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11865 -.030812 -.020898 -.11795 386.26 -.97980)"/> + <path id="path2540" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11931 -.034645 -.019532 -.11758 393.16 17.442)"/> + <path id="path2541" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11971 -.026394 -.025255 -.11710 397.97 30.472)"/> + <path id="path2542" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11617 -.044032 -.010111 -.11876 364.73 -76.697)"/> + <path id="path2543" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11865 -.030812 -.020898 -.11795 361.84 -67.505)"/> + <path id="path2544" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11931 -.034645 -.019532 -.11758 368.73 -49.083)"/> + <path id="path2545" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11865 -.030812 -.020898 -.11795 374.05 -34.242)"/> + <path id="path2546" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10237 -.070401 .018425 -.11775 323.56 -283.26)"/> + <path id="path2547" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11132 -.055166 .0015334 -.11918 322.41 -270.56)"/> + <path id="path2548" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11135 -.051277 .00025576 -.11979 325.02 -255.01)"/> + <path id="path2549" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10295 -.066556 .017248 -.11854 321.68 -338.33)"/> + <path id="path2550" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10237 -.070401 .018425 -.11775 322.43 -318.68)"/> + <path id="path2551" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10295 -.066556 .017248 -.11854 322.81 -302.92)"/> + <path id="path2552" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11132 -.055166 .0015334 -.11918 328.55 -235.66)"/> + <path id="path2553" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11225 -.049271 -.0018940 -.11977 332.34 -224.34)"/> + <path id="path2554" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11229 -.053160 -.00060530 -.11918 336.21 -205.06)"/> + </g> + <path id="path3463" d="m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606 0.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839c2.651 4.42 5.303 8.839 5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696 0.054-9.464-1.714z" transform="matrix(-1.8289 .028083 0.0393 1.3069 905.86 835.94)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <g id="g1972" transform="matrix(1.1004 0 0 .79346 49.716 539.17)"> + <rect id="rect1804" transform="matrix(-.70711 .70711 .70711 .70711 820.64 -210.27)" height="248.03" width="70.866" y="-382.68" x="318.9" stroke-width="1pt" fill="#c0c0c0"/> + <ellipse id="path1799" d="m 389.76379,-1427.9528 c 0,19.5691 -15.86392,35.433 -35.43307,35.433 -19.56915,0 -35.43308,-15.8639 -35.43308,-35.433 0,-19.5691 15.86393,-35.4329 35.43308,-35.4329 19.56915,0 35.43307,15.8638 35.43307,35.4329 z" rx="35.433" ry="35.433" stroke="#000" transform="matrix(-.70711 .70711 .70711 .70711 833.17 -197.75)" cy="-1428" cx="354.33" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1800" d="m336.62-914.17v53.15h35.432l0.001-53.15c0-17.717-35.433-17.717-35.433 0z" transform="matrix(-.70711 .70711 .70711 .70711 482.4 -548.52)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1801" d="m318.9-595.28h70.866c9.757-9.756 9.757-26.095 0-35.433-25.991-10.607-44.874-9.48-70.866 0-8.307 9.338-9.422 24.826 0 35.433z" transform="matrix(-.70711 .70711 .70711 .70711 299.82 -731.1)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1802" d="m318.9-914.17v53.15h70.866v-53.15c-17.717-10.607-53.15-10.607-70.866 0z" transform="matrix(-.70711 .70711 .70711 .70711 519.99 -510.93)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1803" d="m318.9-595.28h70.866c9.757-9.756 9.757-26.095 0-35.433-25.991-10.607-44.874-9.48-70.866 0-8.307 9.338-9.422 24.826 0 35.433z" transform="matrix(-.70711 .70711 .70711 .70711 337.4 -693.52)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1805" d="m318.9-949.61 0.006 484.79h70.867l-0.007-484.79c-17.717-10.607-53.15-10.607-70.866 0z" transform="matrix(-.70711 .70711 .70711 .70711 582.62 -448.3)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1806" d="m318.9-595.28h70.866c9.757-9.756 9.757-26.095 0-35.433-25.991-10.607-44.874-9.48-70.866 0-8.307 9.338-9.422 24.826 0 35.433z" transform="matrix(-.70711 .70711 .70711 .70711 695.36 -335.54)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1807" d="m318.9-949.61v318.9h70.866v-318.9c-17.717-10.607-53.15-10.607-70.866 0z" transform="matrix(-.70711 .70711 .70711 .70711 945.92 -84.995)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1808" d="m301.18-595.28h106.3c9.757-9.756 9.757-26.095 0-35.433 0 0-17.716-17.716-53.149-17.716s-53.15 17.716-53.15 17.716c-7.122 9.338-6.284 24.001 0 35.433z" transform="matrix(-.70711 .70711 .70711 .70711 820.64 -210.27)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1809" d="m301.18-595.28 17.717 88.583h70.866l17.716-88.583c0.274-3.727-17.716-17.716-53.149-17.716s-51.928 17.341-53.15 17.716z" transform="matrix(-.70711 .70711 .70711 .70711 820.64 -210.27)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1810" d="m336.61-506.69c0-35.433 0-86.653 17.717-129.98 17.716 43.326 17.716 94.546 17.716 129.98h-35.433z" transform="matrix(-.70711 .70711 .57828 .57828 755.37 -275.55)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1811" d="m318.9-506.69h17.716v-43.326c0-43.327-35.433-64.99-35.433-64.99l17.717 108.32z" transform="matrix(.70711 -.70711 .57828 .57828 254.27 225.55)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1812" d="m318.9-506.69h17.716v-43.326c0-43.327-35.433-64.99-35.433-64.99l17.717 108.32z" transform="matrix(-.70711 .70711 .57828 .57828 755.37 -275.55)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1814" d="m318.9-949.61v53.15c0 35.433 17.716 177.16 17.716 177.16s-17.71 148.17-17.71 183.61v53.15c0-35.433 35.427-219.04 35.427-219.04s35.44 165.89 35.44 219.04v-53.15c0-35.433-17.717-183.61-17.724-183.61 0.007 0 17.717-124.02 17.717-159.45v-70.867c0 35.433-35.426 212.6-35.426 212.6s-35.44-177.17-35.44-212.6z" transform="matrix(-.70711 .70711 .70711 .70711 582.62 -448.3)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1813" d="m354.33-382.68c17.716 88.582 17.716 159.45 17.716 177.16 0.031 33.655-17.716 53.15-17.716 53.15s-17.717-17.717-17.717-53.15c0-17.716 0-88.583 17.717-177.16zm-35.433-124.02c0 124.02-35.433 230.32-35.433 318.9 0 70.866 51.654 73.453 70.118 72.16 18.464-1.294 72.3-1.191 71.614-72.16 0-88.583-35.433-194.88-35.433-318.9-17.717-17.716-53.15-17.716-70.866 0z" transform="matrix(-.70711 .70711 .70711 .70711 820.64 -210.27)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <rect id="rect1776" transform="matrix(-1.2487 -1.4214 -1.3593 1.3175 1166.1 -102.64)" height="73.043" width="22.934" stroke="#000" y="257.88" x="218.28" stroke-width=".89765pt" fill="#c0c0c0"/> + <g id="g1815" stroke="#000" fill="#c0c0c0" transform="matrix(-1.1473 0 0 1.1219 157.31 -1288.5)"> + <path id="path1816" d="m301.18 396.85 17.717 17.717-17.717 17.716 8.858 8.859 17.717-17.717 35.433 35.433-17.717 17.717 8.859 8.858 17.716-17.716 17.717 17.716-53.15 53.15-35.433-35.433 17.717-17.717 8.858 8.859 8.858-8.859-35.433-35.433-8.858 8.859 8.858 8.858-17.716 17.716-17.717-17.716 8.858-8.859-8.858-8.858-35.433 35.433 8.858 8.858 8.858-8.858 17.717 17.717-17.716 17.716-8.858-8.858-8.859 8.858 35.433 35.433 8.859-8.858-8.859-8.859 17.717-17.716 35.433 35.433-53.15 53.15-17.717-17.717 17.717-17.716-8.858-8.858-17.717 17.716-35.433-35.433 17.717-17.717-8.859-8.858-17.716 17.717-17.717-17.717 124.02-124.02z" transform="matrix(2 0 0 2 -177.17 -396.85)" stroke-width=".56103"/> + <path id="path1817" d="m318.9 786.61v35.433l88.582 88.583v-70.866l-17.716-17.717h-35.433l-35.433-35.433z" stroke-width="1.1221"/> + <path id="path1818" d="m230.41 698.78 70.381 70.381 0.838 35.19-71.219-71.219v-34.352z" transform="translate(-.099049 -.022308)" stroke-width="1.1221"/> + <path id="path1819" d="m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433v35.433z" stroke-width="1.1221"/> + <path id="path1820" d="m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433v35.433z" transform="translate(-88.583 -88.583)" stroke-width="1.1221"/> + <path id="path1821" d="m248.03 644.88v35.433l17.717-17.717-17.717-17.716z" stroke-width="1.1221"/> + <path id="path1822" d="m248.03 644.88v35.433l17.717-17.717-17.717-17.716z" transform="translate(88.583 88.583)" stroke-width="1.1221"/> + <path id="path1823" d="m230.41 698.78 35.786 35.433v35.433l-35.786-36.514v-34.352z" transform="translate(-53.601 -53.9)" stroke-width="1.1221"/> + <path id="path1824" d="m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433v35.433z" transform="translate(88.583 -194.88)" stroke-width="1.1221"/> + <path id="path1825" d="m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433v35.433z" transform="translate(17.717 -124.02)" stroke-width="1.1221"/> + <path id="path1826" d="m283.46 822.05 53.15-53.15v-35.433l-70.866 70.866 17.716 17.717z" transform="translate(17.717 -230.32)" stroke-width="1.1221"/> + <path id="path1827" d="m248.03 644.88v35.433l17.717-17.717-17.717-17.716z" transform="translate(106.3 -141.73)" stroke-width="1.1221"/> + <path id="path1828" d="m301.18 804.33-35.433-35.433v-35.433l35.433 35.433v35.433z" transform="translate(88.583 -194.88)" stroke-width="1.1221"/> + <path id="path1829" d="m389.76 822.05-53.15-53.15v-35.433l70.866 70.866-17.716 17.717z" transform="translate(88.583 -230.32)" stroke-width="1.1221"/> + <path id="path1830" d="m230.41 698.05 70.866 70.866h35.433l17.717 17.716v70.867l-124.02-124.37v-35.08z" transform="translate(194.78 -88.605)" stroke-width="1.1221"/> + <path id="path1831" d="m354.33 822.05 106.3-106.3h35.433l-106.3 106.3h-35.433z" stroke-width="1.1221"/> + <path id="path1832" d="m407.48 839.76 106.3-106.3-17.72-17.71-106.3 106.3 17.72 17.71z" stroke-width="1.1221"/> + <path id="path1833" d="m407.48 839.76v70.866l106.3-106.3v-70.866l-106.3 106.3z" transform="translate(.00030518 -.00048828)" stroke-width="1.1221"/> + <path id="path1834" d="m354.33 822.05 106.3-106.3h35.433l-106.3 106.3h-35.433z" transform="translate(141.73 -141.73)" stroke-width="1.1221"/> + <path id="path1835" d="m407.48 839.76 106.3-106.3-17.72-17.71-106.3 106.3 17.72 17.71z" transform="translate(141.73 -141.73)" stroke-width="1.1221"/> + <path id="path1836" d="m407.48 839.76v70.866l106.3-106.3v-70.866l-106.3 106.3z" transform="translate(141.73 -141.73)" stroke-width="1.1221"/> + <path id="path1837" d="m318.9 786.62 17.717-17.717v-35.433l-35.433 35.433 17.716 17.717z" transform="translate(212.6 -212.6)" stroke-width="1.1221"/> + <path id="path1838" d="m318.9 786.62 17.717-17.717v-35.433l-35.433 35.433 17.716 17.717z" transform="translate(124.02 -301.18)" stroke-width="1.1221"/> + <path id="path1839" d="m265.75 768.9v-35.433l17.717 17.716-17.717 17.717z" transform="translate(88.583 -53.15)" stroke-width="1.1221"/> + <path id="path1840" d="m301.18 804.33-35.433-35.433 17.717-17.717 17.716 17.717v35.433z" transform="translate(17.717 -124.02)" stroke-width="1.1221"/> + <path id="path1841" d="m301.18 804.33-17.716-17.717 17.716-17.716v35.433z" transform="translate(124.02 -265.75)" stroke-width="1.1221"/> + </g> + <rect id="rect1789" transform="matrix(-1.2509 -1.4194 -1.3614 1.3153 1166.1 -102.64)" height="80.26" width="25.197" stroke="#000" y="254.15" x="196.5" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1777" d="m336.61 166.54c0 14.669 35.433 35.434 35.433-17.716h-35.433v17.716z" transform="matrix(-1.8992 0 0 1.8865 1166.1 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1778" d="m242.1 24.803c-147.06 0-113.13 164.24-100.37 124.02 9.359-29.503 35.433-70.866 64.935-80.225 40.225-12.761 26.696 9.3588 41.364 9.3588 14.67 0 1.14-22.119 41.364-9.3588 29.503 9.3588 55.577 50.722 64.936 80.225 12.76 40.224 53.149-124.02-112.23-124.02z" transform="matrix(-1.8992 0 0 1.8865 1166.1 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1779" d="m389.76 166.54c0 78.237-63.496 141.73-141.73 141.73-78.236 0-141.73-63.496-141.73-141.73v-17.716c0.001-29.116 35.433 124.02 141.73 124.02s141.73-124.77 141.73-124.02v17.716z" transform="matrix(-1.8992 0 0 1.8865 1166.1 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1781" d="m336.61 166.54c0 14.669 35.433 35.434 35.433-17.716h-35.433v17.716z" transform="matrix(1.8992 0 0 1.8865 224 -100.51)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1782" d="m389.76 148.82c0 78.236-63.496 141.73-141.73 141.73-78.236 0-141.73-63.496-141.73-141.73 0-78.236 63.496-141.73 141.73-141.73 78.237 0 141.73 63.496 141.73 141.73zm-53.15 0c0 14.669 22.812 3.042 9.359 43.04-9.359 27.826-27.075 45.543-56.578 54.902-40.225 12.76-26.694-9.359-41.364-9.359-14.668 0-1.14 22.119-41.364 9.359-29.502-9.359-47.218-27.076-56.577-56.578-12.76-40.224 9.359-26.695 9.359-41.364 0-14.67-22.119-1.139-9.359-41.364 9.359-29.502 27.075-47.219 56.577-56.578 40.225-12.761 26.696 9.3588 41.364 9.3588 14.67 0 1.14-22.119 41.364-9.3588 29.503 9.3588 47.219 27.075 56.578 56.578 12.76 40.224-9.359 26.694-9.359 41.364z" transform="matrix(-1.8992 0 0 1.8865 1166.1 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1783" d="m126.55 157.68c-20.248 0-1.929 67.6-9.104 51.705s-11.144-33.368-11.144-51.705 3.969-35.809 11.144-51.705c7.175-15.894-11.144 51.705 9.104 51.705z" transform="matrix(-1.6618 0 0 1.7607 1107.2 -99.519)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1784" d="m372.05 139.96c0 15.892-2.13 31.632-9.751 44.811-7.965 13.775 9.751-44.811-7.965-44.811 17.716 0 1.687-58.587 7.965-44.811 6.279 13.776 9.751 28.919 9.751 44.811z" transform="matrix(-1.8992 0 0 2.0316 1166.1 -106.24)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1785" d="m296.29 263.08c-14.836 6.279-31.144 9.751-48.258 9.751s-33.422-3.472-48.257-9.751c-14.835-6.278 48.257 9.751 48.257-7.966 0 17.717 63.093 1.688 48.258 7.966z" transform="matrix(-1.8992 0 0 1.8865 1166.1 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path1786" d="m248.03 42.52c0-17.716-63.092-1.6876-48.257-7.9659s31.143-9.7507 48.257-9.7507 33.422 3.4724 48.258 9.7507c14.835 6.2783-48.258-9.7506-48.258 7.9659z" transform="matrix(-1.8992 0 0 1.8865 1166.1 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <ellipse id="path1780" d="m 100.54488,160.86435 c 0,11.10589 -8.25284,20.10899 -18.433231,20.10899 -10.180392,0 -18.43323,-9.0031 -18.43323,-20.10899 0,-11.10589 8.252838,-20.10899 18.43323,-20.10899 10.180391,0 18.433231,9.0031 18.433231,20.10899 z" rx="18.433" ry="20.109" stroke="#000" transform="matrix(-1.2929 -1.3819 -1.3912 1.2842 1257.6 -120.02)" cy="160.86" cx="82.112" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1787" d="m276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-0.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-1.433-6.965z" transform="matrix(-1.2929 -1.3819 1.3912 -1.2842 808.89 712.05)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <rect id="rect1788" transform="matrix(-1.8992 0 0 1.8865 930.61 398.69)" height="0" width="0" y="-967.32" x="301.18" stroke-width="1pt" fill="#c0c0c0"/> + <path id="path1790" d="m276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-0.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-1.433-6.965z" transform="matrix(-1.2929 -1.3819 -1.3912 1.2842 1223.2 329.88)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1791" d="m267.7 308.51c-9.223 1.889-20.189 0.927-29.969 0.927-9.778 0-19.285-2.612-28.509-4.501l8.821-10.303c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-10.313 13.877z" transform="matrix(-1.2929 -1.3819 -1.3912 1.2842 1223.2 329.88)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1792" d="m276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-0.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-1.433-6.965z" transform="matrix(-1.3912 1.2842 1.2929 1.3819 847.44 -345.21)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <ellipse id="path1793" d="m 100.54488,160.86435 c 0,11.10589 -8.25284,20.10899 -18.433231,20.10899 -10.180392,0 -18.43323,-9.0031 -18.43323,-20.10899 0,-11.10589 8.252838,-20.10899 18.43323,-20.10899 10.180391,0 18.433231,9.0031 18.433231,20.10899 z" rx="18.433" ry="20.109" stroke="#000" transform="matrix(-1.2929 -1.3819 -1.3912 1.2842 789.14 314.38)" cy="160.86" cx="82.112" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1794" d="m267.59 281.47c-9.223 1.889-17.098 2.943-26.877 2.943s-23.112-0.712-32.336-2.601l9.672 12.822c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-10.429-13.164z" transform="matrix(-1.3912 1.2842 1.2929 1.3819 850.63 -315.18)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1795" d="m173.94 271.77-0.838 14.842-3.239 4.493 0.976-15.087 3.101-4.248z" transform="matrix(-1.8992 0 0 1.8865 1166.1 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path1796" d="m330.54 265.6 3.562 4.189 1.047 13.616-2.933-2.933-1.676-14.872z" transform="matrix(-1.8992 0 0 1.8865 1166.1 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <ellipse id="path1797" d="m 100.54488,160.86435 c 0,11.10589 -8.25284,20.10899 -18.433231,20.10899 -10.180392,0 -18.43323,-9.0031 -18.43323,-20.10899 0,-11.10589 8.252838,-20.10899 18.43323,-20.10899 10.180391,0 18.433231,9.0031 18.433231,20.10899 z" rx="18.433" ry="20.109" stroke="#000" transform="matrix(-1.2929 -1.3819 -1.3912 1.2842 1237.6 329.88)" cy="160.86" cx="82.112" stroke-width=".89765pt" fill="#fff133"/> + </g> + <path id="path3464" d="m513.78-790.16 35.432-17.714 35.433 17.714s-73.366 35.433-73.366 159.45c-0.001 88.58 125.26 106.3 125.26 212.6 0 45.649-34.183 88.582-69.616 88.582s-88.583-17.716-141.73-70.866c35.433 17.716 76.082 37.308 106.3 36.058 19.588-0.405 55.025-17.716 55.025-53.149 0-70.866-122.77-106.92-122.77-213.22 0-124.02 50.025-159.45 50.026-159.45z" transform="matrix(-1.8293 0 0 1.3072 891.54 795.66)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3465" d="m520.25-790.16 46.683-17.717 10 17.717s-70.649 35.433-70.649 159.45c-0.001 88.58 125.89 106.3 125.89 212.6 0 45.649-26.714 87.362-65.241 88.582-73.403 2.363-90.458-23.966-141.73-70.866 43.149 32.308 105 46.752 129.02 34.183 29.354-15.364 35.024-36.058 35.024-53.774 0-70.866-120.89-104.42-120.89-210.72 0-124.02 51.9-159.45 51.9-159.45z" transform="matrix(-1.8293 0 0 1.3072 891.54 795.66)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3466" d="m513.34-789.69c7.004-2.437 35.875-18.186 71.308 17.247 17.717 17.72 17.716 53.149 17.716 70.866l53.15-53.149s-29.066-86.87-107.62-53.592c-11.127 4.901-28.139 14.538-34.549 18.628z" transform="matrix(-1.8293 0 0 1.3072 891.54 795.66)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3467" d="m523.8-795.94c8.839-2.869 36.676-6.325 64.596 18.501 17.717 17.72 18.966 42.933 18.966 60.65l40.65-37.933c3.44-3.21-24.832-81.252-99.241-54.034-4.498 1.807-14.779 6.302-24.971 12.816z" transform="matrix(-1.8293 0 0 1.3072 891.54 795.66)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3468" d="m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606 0.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839c2.651 4.42 5.303 8.839 5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696 0.054-9.464-1.714z" transform="matrix(-1.4889 -.13557 -.50826 1.1368 170.93 813.81)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path3469" d="m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606 0.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839c2.651 4.42 5.303 8.839 5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696 0.054-9.464-1.714z" transform="matrix(1.3548 .15838 .023613 -.8707 -735.63 -774.35)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <g id="g2127" transform="matrix(1.1004 0 0 .79346 49.716 539.17)"> + <g id="g1351" transform="matrix(.70711 .70711 -.70711 .70711 -216.75 -485.87)"> + <ellipse id="path727" d="m 389.76379,-1427.9528 c 0,19.5691 -15.86392,35.433 -35.43307,35.433 -19.56915,0 -35.43308,-15.8639 -35.43308,-35.433 0,-19.5691 15.86393,-35.4329 35.43308,-35.4329 19.56915,0 35.43307,15.8638 35.43307,35.4329 z" rx="35.433" ry="35.433" stroke="#000" transform="translate(124.01 283.46)" cy="-1428" cx="354.33" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path725" d="m336.62-914.17v53.15h35.432l0.001-53.15c0-17.717-35.433-17.717-35.433 0z" transform="translate(124.01 -212.6)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path724" d="m318.9-595.28h70.866c9.757-9.756 9.757-26.095 0-35.433-25.991-10.607-44.874-9.48-70.866 0-8.307 9.338-9.422 24.826 0 35.433z" transform="translate(124.01 -470.81)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path723" d="m318.9-914.17v53.15h70.866v-53.15c-17.717-10.607-53.15-10.607-70.866 0z" transform="translate(124.01 -159.45)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path722" d="m318.9-595.28h70.866c9.757-9.756 9.757-26.095 0-35.433-25.991-10.607-44.874-9.48-70.866 0-8.307 9.338-9.422 24.826 0 35.433z" transform="translate(124.01 -417.66)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <rect id="rect721" fill-opacity=".99992" transform="translate(124.01 265.75)" height="248.03" width="70.866" y="-382.68" x="318.9" stroke-width="1pt" fill="#fff133"/> + <path id="path719" d="m318.9-949.61 0.006 484.79h70.867l-0.007-484.79c-17.717-10.607-53.15-10.607-70.866 0z" transform="translate(124.01 -70.866)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path715" d="m318.9-595.28h70.866c9.757-9.756 9.757-26.095 0-35.433-25.991-10.607-44.874-9.48-70.866 0-8.307 9.338-9.422 24.826 0 35.433z" transform="translate(124.02 88.582)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path718" d="m318.9-949.61v318.9h70.866v-318.9c-17.717-10.607-53.15-10.607-70.866 0z" transform="translate(124.02 442.91)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path714" d="m301.18-595.28h106.3c9.757-9.756 9.757-26.095 0-35.433 0 0-17.716-17.716-53.149-17.716s-53.15 17.716-53.15 17.716c-7.122 9.338-6.284 24.001 0 35.433z" transform="translate(124.01 265.75)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path713" d="m301.18-595.28 17.717 88.583h70.866l17.716-88.583c0.274-3.727-17.716-17.716-53.149-17.716s-51.928 17.341-53.15 17.716z" transform="translate(124.01 265.75)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path712" d="m336.61-506.69c0-35.433 0-86.653 17.717-129.98 17.716 43.326 17.716 94.546 17.716 129.98h-35.433z" transform="matrix(1 0 0 .81782 124.01 173.44)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path711" d="m318.9-506.69h17.716v-43.326c0-43.327-35.433-64.99-35.433-64.99l17.717 108.32z" transform="matrix(-1 0 0 .81782 832.67 173.44)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path710" d="m318.9-506.69h17.716v-43.326c0-43.327-35.433-64.99-35.433-64.99l17.717 108.32z" transform="matrix(1 0 0 .81782 124.01 173.44)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path709" d="m354.33-382.68c17.716 88.582 17.716 159.45 17.716 177.16 0.031 33.655-17.716 53.15-17.716 53.15s-17.717-17.717-17.717-53.15c0-17.716 0-88.583 17.717-177.16zm-35.433-124.02c0 124.02-35.433 230.32-35.433 318.9 0 70.866 51.654 73.453 70.118 72.16 18.464-1.294 72.3-1.191 71.614-72.16 0-88.583-35.433-194.88-35.433-318.9-17.717-17.716-53.15-17.716-70.866 0z" transform="translate(124.01 265.75)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path720" d="m318.9-949.61v53.15c0 35.433 17.716 177.16 17.716 177.16s-17.71 148.17-17.71 183.61v53.15c0-35.433 35.427-219.04 35.427-219.04s35.44 165.89 35.44 219.04v-53.15c0-35.433-17.717-183.61-17.724-183.61 0.007 0 17.717-124.02 17.717-159.45v-70.867c0 35.433-35.426 212.6-35.426 212.6s-35.44-177.17-35.44-212.6z" transform="translate(124.01 -70.866)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + </g> + <rect id="rect685" transform="matrix(1.2487 -1.4214 1.3593 1.3175 -662.45 -102.64)" height="73.043" width="22.934" stroke="#000" y="257.88" x="218.28" stroke-width=".89765pt" fill="#fff133"/> + <path id="path638" d="m336.61 166.54c0 14.669 35.433 35.434 35.433-17.716h-35.433v17.716z" transform="matrix(1.8992 0 0 1.8865 -662.45 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path637" d="m242.1 24.803c-147.06 0-113.13 164.24-100.37 124.02 9.359-29.503 35.433-70.866 64.935-80.225 40.225-12.761 26.696 9.3588 41.364 9.3588 14.67 0 1.14-22.119 41.364-9.3588 29.503 9.3588 55.577 50.722 64.936 80.225 12.76 40.224 53.149-124.02-112.23-124.02z" transform="matrix(1.8992 0 0 1.8865 -662.45 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path634" d="m389.76 166.54c0 78.237-63.496 141.73-141.73 141.73-78.236 0-141.73-63.496-141.73-141.73v-17.716c0.001-29.116 35.433 124.02 141.73 124.02s141.73-124.77 141.73-124.02v17.716z" transform="matrix(1.8992 0 0 1.8865 -662.45 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <ellipse id="path677" d="m 100.54488,160.86435 c 0,11.10589 -8.25284,20.10899 -18.433231,20.10899 -10.180392,0 -18.43323,-9.0031 -18.43323,-20.10899 0,-11.10589 8.252838,-20.10899 18.43323,-20.10899 10.180391,0 18.433231,9.0031 18.433231,20.10899 z" rx="18.433" ry="20.109" stroke="#000" transform="matrix(1.2929 -1.3819 1.3912 1.2842 -753.9 -120.02)" cy="160.86" cx="82.112" stroke-width=".89765pt" fill="#c0c0c0"/> + <rect id="rect684" transform="matrix(1.2509 -1.4194 1.3614 1.3153 -662.45 -102.64)" height="80.26" width="25.197" stroke="#000" y="254.15" x="196.5" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path639" d="m336.61 166.54c0 14.669 35.433 35.434 35.433-17.716h-35.433v17.716z" transform="matrix(-1.8992 0 0 1.8865 279.67 -100.51)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path630" d="m389.76 148.82c0 78.236-63.496 141.73-141.73 141.73-78.236 0-141.73-63.496-141.73-141.73 0-78.236 63.496-141.73 141.73-141.73 78.237 0 141.73 63.496 141.73 141.73zm-53.15 0c0 14.669 22.812 3.042 9.359 43.04-9.359 27.826-27.075 45.543-56.578 54.902-40.225 12.76-26.694-9.359-41.364-9.359-14.668 0-1.14 22.119-41.364 9.359-29.502-9.359-47.218-27.076-56.577-56.578-12.76-40.224 9.359-26.695 9.359-41.364 0-14.67-22.119-1.139-9.359-41.364 9.359-29.502 27.075-47.219 56.577-56.578 40.225-12.761 26.696 9.3588 41.364 9.3588 14.67 0 1.14-22.119 41.364-9.3588 29.503 9.3588 47.219 27.075 56.578 56.578 12.76 40.224-9.359 26.694-9.359 41.364z" transform="matrix(1.8992 0 0 1.8865 -662.45 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path641" d="m126.55 157.68c-20.248 0-1.929 67.6-9.104 51.705s-11.144-33.368-11.144-51.705 3.969-35.809 11.144-51.705c7.175-15.894-11.144 51.705 9.104 51.705z" transform="matrix(1.6618 0 0 1.7607 -603.57 -99.519)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path646" d="m372.05 139.96c0 15.892-2.13 31.632-9.751 44.811-7.965 13.775 9.751-44.811-7.965-44.811 17.716 0 1.687-58.587 7.965-44.811 6.279 13.776 9.751 28.919 9.751 44.811z" transform="matrix(1.8992 0 0 2.0316 -662.45 -106.24)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path648" d="m296.29 263.08c-14.836 6.279-31.144 9.751-48.258 9.751s-33.422-3.472-48.257-9.751c-14.835-6.278 48.257 9.751 48.257-7.966 0 17.717 63.093 1.688 48.258 7.966z" transform="matrix(1.8992 0 0 1.8865 -662.45 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path650" d="m248.03 42.52c0-17.716-63.092-1.6876-48.257-7.9659s31.143-9.7507 48.257-9.7507 33.422 3.4724 48.258 9.7507c14.835 6.2783-48.258-9.7506-48.258 7.9659z" transform="matrix(1.8992 0 0 1.8865 -662.45 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path667" d="m276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-0.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-1.433-6.965z" transform="matrix(1.2929 -1.3819 -1.3912 -1.2842 -305.22 712.05)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <rect id="rect716" transform="matrix(1.8992 0 0 1.8865 -426.94 398.69)" height="0" width="0" y="-967.32" x="301.18" stroke-width="1pt" fill="#c0c0c0"/> + <path id="path664" d="m276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-0.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-1.433-6.965z" transform="matrix(1.2929 -1.3819 1.3912 1.2842 -719.56 329.88)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path666" d="m267.7 308.51c-9.223 1.889-20.189 0.927-29.969 0.927-9.778 0-19.285-2.612-28.509-4.501l8.821-10.303c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-10.313 13.877z" transform="matrix(1.2929 -1.3819 1.3912 1.2842 -719.56 329.88)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path674" d="m276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-0.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-1.433-6.965z" transform="matrix(1.3912 1.2842 -1.2929 1.3819 -343.78 -345.21)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <ellipse id="path676" d="m 100.54488,160.86435 c 0,11.10589 -8.25284,20.10899 -18.433231,20.10899 -10.180392,0 -18.43323,-9.0031 -18.43323,-20.10899 0,-11.10589 8.252838,-20.10899 18.43323,-20.10899 10.180391,0 18.433231,9.0031 18.433231,20.10899 z" rx="18.433" ry="20.109" stroke="#000" transform="matrix(1.2929 -1.3819 1.3912 1.2842 -285.47 314.38)" cy="160.86" cx="82.112" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path680" d="m267.59 281.47c-9.223 1.889-17.098 2.943-26.877 2.943s-23.112-0.712-32.336-2.601l9.672 12.822c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025l-10.429-13.164z" transform="matrix(1.3912 1.2842 -1.2929 1.3819 -346.96 -315.18)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path682" d="m173.94 271.77-0.838 14.842-3.239 4.493 0.976-15.087 3.101-4.248z" transform="matrix(1.8992 0 0 1.8865 -662.45 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <path id="path683" d="m330.54 265.6 3.562 4.189 1.047 13.616-2.933-2.933-1.676-14.872z" transform="matrix(1.8992 0 0 1.8865 -662.45 -102.64)" stroke="#000" stroke-width=".89765pt" fill="#c0c0c0"/> + <ellipse id="path675" d="m 100.54488,160.86435 c 0,11.10589 -8.25284,20.10899 -18.433231,20.10899 -10.180392,0 -18.43323,-9.0031 -18.43323,-20.10899 0,-11.10589 8.252838,-20.10899 18.43323,-20.10899 10.180391,0 18.433231,9.0031 18.433231,20.10899 z" rx="18.433" ry="20.109" stroke="#000" transform="matrix(1.2929 -1.3819 1.3912 1.2842 -733.89 329.88)" cy="160.86" cx="82.112" stroke-width=".89765pt" fill="#c0c0c0"/> + <g id="g1679" stroke="#000" fill="#fff133" transform="matrix(1.1473 0 0 1.1219 346.36 -1288.5)"> + <path id="path552" d="m301.18 396.85 17.717 17.717-17.717 17.716 8.858 8.859 17.717-17.717 35.433 35.433-17.717 17.717 8.859 8.858 17.716-17.716 17.717 17.716-53.15 53.15-35.433-35.433 17.717-17.717 8.858 8.859 8.858-8.859-35.433-35.433-8.858 8.859 8.858 8.858-17.716 17.716-17.717-17.716 8.858-8.859-8.858-8.858-35.433 35.433 8.858 8.858 8.858-8.858 17.717 17.717-17.716 17.716-8.858-8.858-8.859 8.858 35.433 35.433 8.859-8.858-8.859-8.859 17.717-17.716 35.433 35.433-53.15 53.15-17.717-17.717 17.717-17.716-8.858-8.858-17.717 17.716-35.433-35.433 17.717-17.717-8.859-8.858-17.716 17.717-17.717-17.717 124.02-124.02z" transform="matrix(2 0 0 2 -177.17 -396.85)" stroke-width=".56103"/> + <path id="path553" d="m318.9 786.61v35.433l88.582 88.583v-70.866l-17.716-17.717h-35.433l-35.433-35.433z" stroke-width="1.1221"/> + <path id="path554" d="m230.41 698.78 70.381 70.381 0.838 35.19-71.219-71.219v-34.352z" transform="translate(-.099049 -.022308)" stroke-width="1.1221"/> + <path id="path555" d="m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433v35.433z" stroke-width="1.1221"/> + <path id="path556" d="m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433v35.433z" transform="translate(-88.583 -88.583)" stroke-width="1.1221"/> + <path id="path557" d="m248.03 644.88v35.433l17.717-17.717-17.717-17.716z" stroke-width="1.1221"/> + <path id="path558" d="m248.03 644.88v35.433l17.717-17.717-17.717-17.716z" transform="translate(88.583 88.583)" stroke-width="1.1221"/> + <path id="path559" d="m230.41 698.78 35.786 35.433v35.433l-35.786-36.514v-34.352z" transform="translate(-53.601 -53.9)" stroke-width="1.1221"/> + <path id="path560" d="m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433v35.433z" transform="translate(88.583 -194.88)" stroke-width="1.1221"/> + <path id="path561" d="m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433v35.433z" transform="translate(17.717 -124.02)" stroke-width="1.1221"/> + <path id="path562" d="m283.46 822.05 53.15-53.15v-35.433l-70.866 70.866 17.716 17.717z" transform="translate(17.717 -230.32)" stroke-width="1.1221"/> + <path id="path563" d="m248.03 644.88v35.433l17.717-17.717-17.717-17.716z" transform="translate(106.3 -141.73)" stroke-width="1.1221"/> + <path id="path564" d="m301.18 804.33-35.433-35.433v-35.433l35.433 35.433v35.433z" transform="translate(88.583 -194.88)" stroke-width="1.1221"/> + <path id="path565" d="m389.76 822.05-53.15-53.15v-35.433l70.866 70.866-17.716 17.717z" transform="translate(88.583 -230.32)" stroke-width="1.1221"/> + <path id="path566" d="m230.41 698.05 70.866 70.866h35.433l17.717 17.716v70.867l-124.02-124.37v-35.08z" transform="translate(194.78 -88.605)" stroke-width="1.1221"/> + <path id="path567" d="m354.33 822.05 106.3-106.3h35.433l-106.3 106.3h-35.433z" stroke-width="1.1221"/> + <path id="path568" d="m407.48 839.76 106.3-106.3-17.72-17.71-106.3 106.3 17.72 17.71z" stroke-width="1.1221"/> + <path id="path569" d="m407.48 839.76v70.866l106.3-106.3v-70.866l-106.3 106.3z" transform="translate(.00030518 -.00048828)" stroke-width="1.1221"/> + <path id="path570" d="m354.33 822.05 106.3-106.3h35.433l-106.3 106.3h-35.433z" transform="translate(141.73 -141.73)" stroke-width="1.1221"/> + <path id="path571" d="m407.48 839.76 106.3-106.3-17.72-17.71-106.3 106.3 17.72 17.71z" transform="translate(141.73 -141.73)" stroke-width="1.1221"/> + <path id="path572" d="m407.48 839.76v70.866l106.3-106.3v-70.866l-106.3 106.3z" transform="translate(141.73 -141.73)" stroke-width="1.1221"/> + <path id="path573" d="m318.9 786.62 17.717-17.717v-35.433l-35.433 35.433 17.716 17.717z" transform="translate(212.6 -212.6)" stroke-width="1.1221"/> + <path id="path574" d="m318.9 786.62 17.717-17.717v-35.433l-35.433 35.433 17.716 17.717z" transform="translate(124.02 -301.18)" stroke-width="1.1221"/> + <path id="path622" d="m265.75 768.9v-35.433l17.717 17.716-17.717 17.717z" transform="translate(88.583 -53.15)" stroke-width="1.1221"/> + <path id="path623" d="m301.18 804.33-35.433-35.433 17.717-17.717 17.716 17.717v35.433z" transform="translate(17.717 -124.02)" stroke-width="1.1221"/> + <path id="path624" d="m301.18 804.33-17.716-17.717 17.716-17.716v35.433z" transform="translate(124.02 -265.75)" stroke-width="1.1221"/> + </g> + </g> + <g id="g2281" transform="matrix(.55827 .0034821 -.0095185 .79343 165.13 552.4)" stroke="#000" stroke-width="17.958" fill="#b00"> + <path id="path2207" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -149.96)"/> + <path id="path2208" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -165.72)"/> + <path id="path2209" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -185.39)"/> + <path id="path2210" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -201.16)"/> + <path id="path2211" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -79.091)"/> + <path id="path2212" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -94.856)"/> + <path id="path2213" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -114.52)"/> + <path id="path2214" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -130.29)"/> + <path id="path2197" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -291.69)"/> + <path id="path2198" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -307.45)"/> + <path id="path2195" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -327.12)"/> + <path id="path2196" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -342.89)"/> + <path id="path2203" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -220.82)"/> + <path id="path2204" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -236.59)"/> + <path id="path2205" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -256.26)"/> + <path id="path2206" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -272.02)"/> + <path id="path2223" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 133.51)"/> + <path id="path2224" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 117.74)"/> + <path id="path2225" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 98.074)"/> + <path id="path2226" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 82.309)"/> + <path id="path2227" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 204.37)"/> + <path id="path2228" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 188.61)"/> + <path id="path2229" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 168.94)"/> + <path id="path2230" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 153.18)"/> + <path id="path2231" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -8.2248)"/> + <path id="path2232" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -23.99)"/> + <path id="path2233" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -43.658)"/> + <path id="path2234" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -59.423)"/> + <path id="path2235" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 62.641)"/> + <path id="path2236" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 46.876)"/> + <path id="path2237" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 27.208)"/> + <path id="path2238" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 11.443)"/> + <path id="path2239" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 416.97)"/> + <path id="path2240" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 401.21)"/> + <path id="path2241" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 381.54)"/> + <path id="path2242" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 365.77)"/> + <path id="path2244" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 472.07)"/> + <path id="path2245" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 452.4)"/> + <path id="path2246" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 436.64)"/> + <path id="path2247" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 275.24)"/> + <path id="path2248" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 259.47)"/> + <path id="path2249" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 239.81)"/> + <path id="path2250" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 224.04)"/> + <path id="path2251" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 346.11)"/> + <path id="path2252" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 330.34)"/> + <path id="path2253" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 310.67)"/> + <path id="path2254" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 294.91)"/> + <path id="path2271" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 595.04)"/> + <path id="path2272" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 579.27)"/> + <path id="path2273" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 559.61)"/> + <path id="path2274" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 543.84)"/> + <path id="path2275" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 650.14)"/> + <path id="path2276" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 630.47)"/> + <path id="path2277" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 614.71)"/> + <path id="path2278" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 524.17)"/> + <path id="path2279" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 508.41)"/> + <path id="path2280" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 488.74)"/> + </g> + <g id="g2339" transform="matrix(.55828 -.0010606 .0028992 .79346 189.38 555.05)" stroke="#000" stroke-width="17.958" fill="#b00"> + <path id="path2340" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -149.96)"/> + <path id="path2341" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -165.72)"/> + <path id="path2342" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -185.39)"/> + <path id="path2343" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -201.16)"/> + <path id="path2344" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -79.091)"/> + <path id="path2345" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -94.856)"/> + <path id="path2346" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -114.52)"/> + <path id="path2347" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -130.29)"/> + <path id="path2348" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -291.69)"/> + <path id="path2349" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -307.45)"/> + <path id="path2350" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -327.12)"/> + <path id="path2351" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -342.89)"/> + <path id="path2352" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -220.82)"/> + <path id="path2353" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -236.59)"/> + <path id="path2354" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -256.26)"/> + <path id="path2355" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -272.02)"/> + <path id="path2356" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 133.51)"/> + <path id="path2357" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 117.74)"/> + <path id="path2358" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 98.074)"/> + <path id="path2359" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 82.309)"/> + <path id="path2360" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 204.37)"/> + <path id="path2361" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 188.61)"/> + <path id="path2362" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 168.94)"/> + <path id="path2363" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 153.18)"/> + <path id="path2364" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -8.2248)"/> + <path id="path2365" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -23.99)"/> + <path id="path2366" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 -43.658)"/> + <path id="path2367" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 -59.423)"/> + <path id="path2368" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 62.641)"/> + <path id="path2369" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 46.876)"/> + <path id="path2370" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 27.208)"/> + <path id="path2371" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 11.443)"/> + <path id="path2372" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 416.97)"/> + <path id="path2373" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 401.21)"/> + <path id="path2374" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 381.54)"/> + <path id="path2375" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 365.77)"/> + <path id="path2376" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 472.07)"/> + <path id="path2377" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 452.4)"/> + <path id="path2378" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 436.64)"/> + <path id="path2379" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 275.24)"/> + <path id="path2380" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 259.47)"/> + <path id="path2381" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 239.81)"/> + <path id="path2382" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 224.04)"/> + <path id="path2383" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 346.11)"/> + <path id="path2384" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 330.34)"/> + <path id="path2385" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 310.67)"/> + <path id="path2386" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 294.91)"/> + <path id="path2387" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 595.04)"/> + <path id="path2388" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 579.27)"/> + <path id="path2389" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 559.61)"/> + <path id="path2390" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 543.84)"/> + <path id="path2391" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 650.14)"/> + <path id="path2392" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 630.47)"/> + <path id="path2393" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 614.71)"/> + <path id="path2394" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 524.17)"/> + <path id="path2395" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19861 .069815 -.041453 .11793 179.05 508.41)"/> + <path id="path2396" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.19723 .073640 -.043724 .11710 178.81 488.74)"/> + </g> + <g id="g2882" transform="matrix(1.1603 0 0 .79346 40.164 538.1)" stroke="#000" stroke-width="12.791" fill="#b00"> + <path id="path2798" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.11852 .037244 .016958 .11797 290.94 -237.38)"/> + <path id="path2792" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.032988 .11978 -.089921 .078228 267.19 -268.37)"/> + <path id="path2879" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.086443 .089234 -.041322 .11179 276.11 -249.52)"/> + <path id="path2796" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.072197 .10111 -.11741 -0.0205 264.85 -297.8)"/> + <path id="path2797" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.068362 .10176 -.11822 -.019336 280.62 -297.91)"/> + <path id="path2816" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.075894 .098364 -.11657 -.024837 195.87 -298.49)"/> + <path id="path2817" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.072086 .099154 -.11742 -.023704 211.63 -298.01)"/> + <path id="path2818" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.075894 .098364 -.11657 -.024837 231.3 -297.69)"/> + <path id="path2819" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.068362 .10176 -.11822 -.019336 245.19 -297.4)"/> + <path id="path2822" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.075894 .098364 -.11657 -.024837 173.11 -306)"/> + <path id="path2823" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.083302 .089936 -.11379 -.037419 184.09 -303.01)"/> + <path id="path2880" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11007 .057626 -.095509 -.071297 177.8 -315.79)"/> + </g> + <g id="g3238" transform="matrix(1.1004 0 0 .79346 49.716 539.17)" stroke="#000" stroke-width="12.791" fill="#b00"> + <path id="path2942" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10088 -.072508 -.10458 .057181 535.09 504.36)"/> + <path id="path2943" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.097461 -.074356 -.10571 .056337 550.05 499.39)"/> + <path id="path2944" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10088 -.072508 -.10458 .057181 568.8 493.45)"/> + <path id="path2945" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.097461 -.074356 -.10571 .056337 583.76 488.47)"/> + <path id="path3208" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12031 .023525 -.028047 .11646 694.84 430.74)"/> + <path id="path3212" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.079428 .095531 .049680 .10834 709.29 380.99)"/> + <path id="path3209" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12120 .027310 -.026661 .11617 702.84 412.77)"/> + <path id="path2946" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.094254 -.080940 -.10912 .047948 464.96 521.02)"/> + <path id="path2947" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.090685 -.082485 -.11018 .047009 480.29 517.36)"/> + <path id="path2948" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10342 -.068845 -.10246 .060893 504.32 512.45)"/> + <path id="path2949" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.086825 -.086539 -.11221 .041931 510.31 506.86)"/> + <path id="path2954" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.10088 -.072508 -.10458 .057181 602.51 482.53)"/> + <path id="path2955" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.097461 -.074356 -.10571 .056337 617.47 477.56)"/> + <path id="path2958" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.075919 -.098342 -.11656 .024868 243.01 536)"/> + <path id="path2959" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.072112 -.099134 -.11741 .023735 258.76 535.51)"/> + <path id="path2960" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.075919 -.098342 -.11656 .024868 278.43 535.18)"/> + <path id="path2961" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.072112 -.099134 -.11741 .023735 294.19 534.7)"/> + <path id="path2962" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.075919 -.098342 -.11656 .024868 172.16 537.63)"/> + <path id="path2963" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.072112 -.099134 -.11741 .023735 187.92 537.14)"/> + <path id="path2964" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.075919 -.098342 -.11656 .024868 207.58 536.81)"/> + <path id="path2965" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.072112 -.099134 -.11741 .023735 223.34 536.33)"/> + <path id="path2966" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.086186 -.089482 -.11316 .037425 389.85 532.12)"/> + <path id="path2967" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.085290 -.088052 -.11293 .039951 407.41 529.99)"/> + <path id="path2968" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.088949 -.086735 -.11193 .040954 426.83 526.9)"/> + <path id="path2969" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.090685 -.082485 -.11018 .047009 445.77 525.33)"/> + <path id="path2970" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.075919 -.098342 -.11656 .024868 313.85 534.37)"/> + <path id="path2971" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.078309 -.094315 -.11565 .031201 332.25 534.25)"/> + <path id="path2972" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.086633 -.089049 -.11297 .037991 354.24 533.61)"/> + <path id="path2973" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.076706 -.095623 -.11616 .029244 366.79 530.59)"/> + <path id="path2974" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.057058 -.11036 -.11913 .0035676 -48.125 520.29)"/> + <path id="path2975" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.053171 -.11046 -.11976 .0023004 -32.536 522.64)"/> + <path id="path2976" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.068071 -.10393 -.11814 .015762 -8.8247 528.79)"/> + <path id="path2977" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.064214 -.10442 -.11890 .014566 6.9236 529.53)"/> + <path id="path2978" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.053171 -.11046 -.11976 .0023004 -102.53 511.54)"/> + <path id="path2979" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.057058 -.11036 -.11913 .0035676 -83.121 514.74)"/> + <path id="path2980" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.053171 -.11046 -.11976 .0023004 -67.531 517.09)"/> + <path id="path2981" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.068071 -.10393 -.11814 .015762 97.316 534.59)"/> + <path id="path2982" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.064214 -.10442 -.11890 .014566 113.06 535.33)"/> + <path id="path2983" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.075919 -.098342 -.11656 .024868 136.74 538.44)"/> + <path id="path2984" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.072112 -.099134 -.11741 .023735 152.49 537.96)"/> + <path id="path2985" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.068071 -.10393 -.11814 .015762 26.556 530.72)"/> + <path id="path2986" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.064214 -.10442 -.11890 .014566 42.304 531.46)"/> + <path id="path2987" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.068071 -.10393 -.11814 .015762 61.936 532.65)"/> + <path id="path2988" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.064214 -.10442 -.11890 .014566 77.684 533.39)"/> + <path id="path2989" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.12283 -.018674 .034807 -.11399 -164.68 358.3)"/> + <path id="path2990" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.097674 -.074077 -.026075 -.11692 -183.73 391.77)"/> + <path id="path2991" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.065610 -.10550 -.064037 -.10052 -184.81 425.77)"/> + <path id="path2992" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.026059 -.11979 -.095820 -.071886 -179.82 454.47)"/> + <path id="path2993" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.12234 .0078020 .056704 -.10552 -126.13 311.29)"/> + <path id="path2994" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.12416 .0043664 .055290 -.10559 -138.44 326.64)"/> + <path id="path2995" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.12167 -.014960 .036210 -.11418 -155.43 340.95)"/> + <path id="path2996" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.0069257 -.12404 -.11017 -.045474 -165.59 481.38)"/> + <path id="path2997" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.030335 -.11878 -.11786 -.021373 -145.13 497.05)"/> + <path id="path2998" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.057058 -.11036 -.11913 .0035676 -119.01 509.05)"/> + <path id="path3205" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12058 -.029905 -.075898 .091898 644.64 466.79)"/> + <path id="path3206" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11630 -.038772 -.081760 .087546 645.63 470.4)"/> + <path id="path3207" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.12218 -.022539 -.070187 .096331 679.27 447.56)"/> + <path id="path3211" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(-.11545 -.041226 -.083596 .085795 657.92 460.39)"/> + <path id="path3232" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.11317 -.051254 .091289 .076629 608.71 378.41)"/> + <path id="path3233" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.11018 -.053738 .092569 .076025 595.02 370.6)"/> + <path id="path3234" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.11680 -.042331 .085078 .083472 573.37 360.54)"/> + <path id="path3235" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.11018 -.053738 .092569 .076025 656.83 405.26)"/> + <path id="path3236" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.11317 -.051254 .091289 .076629 639.62 395.75)"/> + <path id="path3237" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.11018 -.053738 .092569 .076025 625.92 387.93)"/> + </g> + <g id="g3412" transform="matrix(.61379 0 0 .62766 162.46 491.89)"> + <path id="path3410" d="m124.02-1977.2v53.15h-53.15v35.44h53.15v106.3h35.433v-106.3h53.149v-35.44h-53.149v-53.15h-35.433z" transform="translate(88.583 -17.712)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <ellipse id="path3409" d="m 301.18108,-1813.5461 c 0,31.657 -27.76186,57.32 -62.00786,57.32 -34.246,0 -62.00787,-25.663 -62.00787,-57.32 0,-31.657 27.76187,-57.3201 62.00787,-57.3201 34.246,0 62.00786,25.6631 62.00786,57.3201 z" rx="62.008" ry="57.32" stroke="#000" transform="matrix(.57143 0 0 .61816 93.645 -678.94)" cy="-1813.5" cx="239.17" stroke-width=".89765pt" fill="#fff133"/> + <path id="path3408" d="m602.36-1119.4c0 68.45-10.417 145.68-29.252 205.02-120.08-26.455-268.06-39.682-339.04-39.682-87.586 0-246.15 13.227-345.26 26.455-18.835-59.336-30.538-123.34-30.538-191.79 0-273.81 105.27-390.21 367.5-496.03 233.3 105.82 376.6 222.22 376.6 496.03z" transform="matrix(1.0576 0 0 1.3394 -5.7645 363.72)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3321" d="m566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583v-44.292z" transform="matrix(1.1715 0 0 .74463 -32.833 -634.89)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <g id="g3384" transform="matrix(1.1725 0 0 .74463 -33.06 -423.81)" stroke="#000" stroke-width=".89765pt" fill="#fff133"> + <path id="path3303" d="m230.32-825.59-53.15 53.15 35.433 35.433-17.716 17.717-35.433-35.433-53.15 53.149 53.15 53.15 35.433-35.433 17.716 17.716v53.15h35.433v-53.15l17.717-17.716 35.433 35.433 53.15-53.15-53.15-53.149-35.433 35.433-17.717-17.717 35.434-35.433-53.15-53.15z" transform="translate(-.0000071526 -460.63)"/> + <path id="path3305" d="m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-0.001v-53.15l17.717-17.716-0.001 35.432 17.717-53.149-17.717-53.15 0.001 35.434-17.717-17.717v-35.433l-9.338-53.149z" transform="matrix(.96815 -.25037 .25037 .96815 -133.88 -375.81)"/> + <path id="path3306" d="m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-0.001v-53.15l17.717-17.716-0.001 35.432 17.717-53.149-17.717-53.15 0.001 35.434-17.717-17.717v-35.433l-9.338-53.149z" transform="matrix(.97364 .22811 -.22811 .97364 183.59 -476.18)"/> + <path id="path3307" d="m141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44 17.717 0 35.433 17.72 35.433 35.44s-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15h-35.433l70.866-70.866s-17.717-17.711-17.717-35.431z" transform="matrix(.78974 -.12770 .15963 .98718 52.758 -131.73)"/> + <path id="path3308" d="m141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44 17.717 0 35.433 17.72 35.433 35.44s-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15h-35.433l70.866-70.866s-17.717-17.711-17.717-35.431z" transform="matrix(.79061 .12220 -.15274 .98827 134.67 -174.94)"/> + <path id="path3320" d="m566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583v-44.292z" transform="translate(0 -336.61)"/> + </g> + <path id="path3391" d="m566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583v-44.292z" transform="matrix(1.0735 0 0 .74463 -9.2538 -386.86)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <g id="g3392" transform="matrix(1.1042 0 0 .74463 -12.892 -175.78)" stroke="#000" stroke-width=".89765pt" fill="#fff133"> + <path id="path3393" d="m230.32-825.59-53.15 53.15 35.433 35.433-17.716 17.717-35.433-35.433-53.15 53.149 53.15 53.15 35.433-35.433 17.716 17.716v53.15h35.433v-53.15l17.717-17.716 35.433 35.433 53.15-53.15-53.15-53.149-35.433 35.433-17.717-17.717 35.434-35.433-53.15-53.15z" transform="translate(-.0000071526 -460.63)"/> + <path id="path3394" d="m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-0.001v-53.15l17.717-17.716-0.001 35.432 17.717-53.149-17.717-53.15 0.001 35.434-17.717-17.717v-35.433l-9.338-53.149z" transform="matrix(.96815 -.25037 .25037 .96815 -133.88 -375.81)"/> + <path id="path3395" d="m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-0.001v-53.15l17.717-17.716-0.001 35.432 17.717-53.149-17.717-53.15 0.001 35.434-17.717-17.717v-35.433l-9.338-53.149z" transform="matrix(.97364 .22811 -.22811 .97364 183.59 -476.18)"/> + <path id="path3396" d="m141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44 17.717 0 35.433 17.72 35.433 35.44s-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15h-35.433l70.866-70.866s-17.717-17.711-17.717-35.431z" transform="matrix(.78974 -.12770 .15963 .98718 52.758 -131.73)"/> + <path id="path3397" d="m141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44 17.717 0 35.433 17.72 35.433 35.44s-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15h-35.433l70.866-70.866s-17.717-17.711-17.717-35.431z" transform="matrix(.79061 .12220 -.15274 .98827 134.67 -174.94)"/> + <path id="path3398" d="m566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583v-44.292z" transform="translate(0 -336.61)"/> + </g> + <path id="path3399" d="m566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583v-44.292z" transform="matrix(1.105 0 0 .74463 -16.106 -865.2)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <g id="g3400" transform="matrix(1.0799 0 0 .70238 -6.1678 -707.81)" stroke="#000" stroke-width=".89765pt" fill="#fff133"> + <path id="path3401" d="m230.32-825.59-53.15 53.15 35.433 35.433-17.716 17.717-35.433-35.433-53.15 53.149 53.15 53.15 35.433-35.433 17.716 17.716v53.15h35.433v-53.15l17.717-17.716 35.433 35.433 53.15-53.15-53.15-53.149-35.433 35.433-17.717-17.717 35.434-35.433-53.15-53.15z" transform="translate(-.0000071526 -460.63)"/> + <path id="path3402" d="m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-0.001v-53.15l17.717-17.716-0.001 35.432 17.717-53.149-17.717-53.15 0.001 35.434-17.717-17.717v-35.433l-9.338-53.149z" transform="matrix(.96815 -.25037 .25037 .96815 -133.88 -375.81)"/> + <path id="path3403" d="m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-0.001v-53.15l17.717-17.716-0.001 35.432 17.717-53.149-17.717-53.15 0.001 35.434-17.717-17.717v-35.433l-9.338-53.149z" transform="matrix(.97364 .22811 -.22811 .97364 183.59 -476.18)"/> + <path id="path3404" d="m141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44 17.717 0 35.433 17.72 35.433 35.44s-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15h-35.433l70.866-70.866s-17.717-17.711-17.717-35.431z" transform="matrix(.78974 -.12770 .15963 .98718 52.758 -131.73)"/> + <path id="path3405" d="m141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44 17.717 0 35.433 17.72 35.433 35.44s-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15h-35.433l70.866-70.866s-17.717-17.711-17.717-35.431z" transform="matrix(.79061 .12220 -.15274 .98827 134.67 -174.94)"/> + <path id="path3406" d="m566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583v-44.292z" transform="translate(0 -336.61)"/> + </g> + <ellipse id="path3411" d="m 610.00049,-822.10712 c 0,66.56811 -168.28112,120.53223 -375.8664,120.53223 -207.585273,0 -375.86639,-53.96412 -375.86639,-120.53223 0,-66.56811 168.281117,-120.53222 375.86639,-120.53222 207.58528,0 375.8664,53.96411 375.8664,120.53222 z" rx="375.87" ry="120.53" transform="matrix(.96627 0 0 .41385 12.936 -517.53)" cy="-822.11" cx="234.13" stroke-width="1pt" fill="#b90000"/> + </g> + <path id="path3453" d="m513.78-790.16 35.432-17.714 35.433 17.714s-73.366 35.433-73.366 159.45c-0.001 88.58 125.26 106.3 125.26 212.6 0 45.649-34.183 88.582-69.616 88.582s-88.583-17.716-141.73-70.866c35.433 17.716 76.082 37.308 106.3 36.058 19.588-0.405 55.025-17.716 55.025-53.149 0-70.866-122.77-106.92-122.77-213.22 0-124.02 50.025-159.45 50.026-159.45z" transform="matrix(1.8293 0 0 1.3072 -268.51 807.56)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3586" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.15785 -.0096921 .072222 .14695 283.98 1121.6)" stroke="#000" stroke-width="17.958" fill="#b00"/> + <path id="path3457" d="m520.25-790.16 46.683-17.717 10 17.717s-70.649 35.433-70.649 159.45c-0.001 88.58 125.89 106.3 125.89 212.6 0 45.649-26.714 87.362-65.241 88.582-73.403 2.363-90.458-23.966-141.73-70.866 43.149 32.308 105 46.752 129.02 34.183 29.354-15.364 35.024-36.058 35.024-53.774 0-70.866-120.89-104.42-120.89-210.72 0-124.02 51.9-159.45 51.9-159.45z" transform="matrix(1.8293 0 0 1.3072 -268.51 807.56)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3452" d="m513.34-789.69c7.004-2.437 35.875-18.186 71.308 17.247 17.717 17.72 17.716 53.149 17.716 70.866l53.15-53.149s-29.066-86.87-107.62-53.592c-11.127 4.901-28.139 14.538-34.549 18.628z" transform="matrix(1.8293 0 0 1.3072 -268.51 807.56)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3458" d="m523.8-795.94c8.839-2.869 36.676-6.325 64.596 18.501 17.717 17.72 18.966 42.933 18.966 60.65l40.65-37.933c3.44-3.21-24.832-81.252-99.241-54.034-4.498 1.807-14.779 6.302-24.971 12.816z" transform="matrix(1.8293 0 0 1.3072 -268.51 807.56)" stroke="#000" stroke-width=".89765pt" fill="#fff"/> + <path id="path3459" d="m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606 0.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839c2.651 4.42 5.303 8.839 5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696 0.054-9.464-1.714z" transform="matrix(1.4889 -.13557 .50826 1.1368 452.1 825.72)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path3460" d="m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606 0.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839c2.651 4.42 5.303 8.839 5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696 0.054-9.464-1.714z" transform="matrix(-1.3548 .15838 -.023613 -.8707 1358.7 -762.45)" stroke="#000" stroke-width=".89765pt" fill="#fff133"/> + <path id="path3483" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.15785 -.0096921 .072222 .14695 310.64 1120.2)" stroke="#000" stroke-width="17.958" fill="#b00"/> + <path id="path3587" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.26576 -.0096921 .12160 .14695 270.95 1139.5)" stroke="#000" stroke-width="17.958" fill="#b00"/> + <path id="path3588" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.26576 -.0096921 .12160 .14695 296.11 1138.1)" stroke="#000" stroke-width="17.958" fill="#b00"/> + <path id="path3589" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.32950 -.0096921 .15076 .14695 260.9 1160.1)" stroke="#000" stroke-width="17.958" fill="#b00"/> + <path id="path3590" d="m212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866h-194.88z" transform="matrix(.32950 -.0096921 .15076 .14695 292.09 1158.7)" stroke="#000" stroke-width="17.958" fill="#b00"/> + </g> + <rect id="rect4998" height="480" width="320" y="-.0000012550" x="0" stroke-width="1pt" fill="#ffe000"/> + </g> +</svg> diff --git a/s/flag/vc.svg b/s/flag/vc.svg new file mode 100755 index 0000000..5044f0e --- /dev/null +++ b/s/flag/vc.svg @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg940" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3704"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd"> + <rect id="rect953" height="480" width="640" y=".000091553" x="0" stroke-width="1pt" fill="#f4f100"/> + <rect id="rect951" height="480" width="150" y="-2.2039e-13" x="490" stroke-width="1pt" fill="#199a00"/> + <rect id="rect952" height="480" width="150" y="-2.2039e-13" x="0" stroke-width="1pt" fill="#0058aa"/> + <path id="path954" d="m259.26 129.95-46.376 71.391 44.748 74.391 43.82-73.735-42.192-72.046z" fill="#199a00"/> + <path id="path955" d="m380.54 129.95-46.376 71.391 44.748 74.391 43.82-73.735-42.192-72.046z" fill="#199a00"/> + <path id="path956" d="m319.28 227.34-46.376 71.391 44.748 74.391 43.82-73.735-42.192-72.046z" fill="#199a00"/> + </g> +</svg> diff --git a/s/flag/ve.svg b/s/flag/ve.svg new file mode 100755 index 0000000..f712e95 --- /dev/null +++ b/s/flag/ve.svg @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="640" height="480" viewBox="0 0 128 96"> + <defs> + <g id="f" transform="translate(0 -36)"> + <g id="e"> + <g id="d"> + <path d="M0-5l-1.545 4.755 2.853.927z" id="c" fill="#fff"/> + <use xlink:href="#c" transform="scale(-1 1)" width="180" height="120"/> + </g> + <use xlink:href="#d" transform="rotate(72)" width="180" height="120"/> + </g> + <use xlink:href="#d" transform="rotate(-72)" width="180" height="120"/> + <use xlink:href="#e" transform="matrix(-.809 .588 -.588 -.809 0 0)" width="180" height="120"/> + </g> + </defs> + <path d="M0 0h128v96h-128z" fill="#cf142b"/> + <path d="M0 0h128v64h-128z" fill="#00247d"/> + <path d="M0 0h128v32h-128z" fill="#fc0"/> + <g transform="matrix(.8 0 0 .8 64 67.2)"> + <g id="b"> + <g id="a"> + <use xlink:href="#f" transform="rotate(10)" width="180" height="120"/> + <use xlink:href="#f" transform="rotate(30)" width="180" height="120"/> + </g> + <use xlink:href="#a" transform="rotate(40)" width="180" height="120"/> + </g> + <use xlink:href="#b" transform="rotate(-80)" width="180" height="120"/> + </g> +</svg> diff --git a/s/flag/vg.svg b/s/flag/vg.svg new file mode 100755 index 0000000..07b6df0 --- /dev/null +++ b/s/flag/vg.svg @@ -0,0 +1,249 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg id="svg559" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata1572"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:title>British Virgin Islands</dc:title> + <dc:description/> + <dc:subject> + <rdf:Bag> + <rdf:li/> + <rdf:li>united_kingdom</rdf:li> + <rdf:li>flags</rdf:li> + <rdf:li>caribbean</rdf:li> + <rdf:li>america</rdf:li> + <rdf:li>signs_and_symbols</rdf:li> + <rdf:li>sign</rdf:li> + </rdf:Bag> + </dc:subject> + <dc:publisher> + <cc:Agent rdf:about="http://www.openclipart.org"> + <dc:title>Tobias Jakobs</dc:title> + </cc:Agent> + </dc:publisher> + <dc:creator> + <cc:Agent> + <dc:title>Tobias Jakobs</dc:title> + </cc:Agent> + </dc:creator> + <dc:rights> + <cc:Agent> + <dc:title>Tobias Jakobs</dc:title> + </cc:Agent> + </dc:rights> + <dc:date/> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <cc:license rdf:resource="http://web.resource.org/cc/PublicDomain"/> + <dc:language>en</dc:language> + </cc:Work> + <cc:License rdf:about="http://web.resource.org/cc/PublicDomain"> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/> + </cc:License> + </rdf:RDF> + </metadata> + <defs id="defs1574"> + <linearGradient id="linearGradient570"> + <stop id="stop571" stop-color="#f00" offset="0"/> + <stop id="stop572" stop-color="#ff0" offset="1"/> + </linearGradient> + <linearGradient id="linearGradient3331" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.683 29.21)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3333" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.666 30.155)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3335" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -97.986 31.014)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3337" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.743 31.932)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3339" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.75 32.835)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3341" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.767 33.751)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3343" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -98.011 33.736)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3345" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -97.981 32.837)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3347" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -97.942 31.918)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3349" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.82810 0 0 1.8726 602.82 148.17)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3351" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -97.976 30.11)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3353" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -95.336 30.955)" x2="92.551" x1="103.08"/> + <clipPath id="clipPath3927" clipPathUnits="userSpaceOnUse"> + <rect id="rect3929" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3927)"> + <rect id="rect877" height="480" width="960" y=".000014420" x="0" stroke-width="1pt" fill="#006"/> + <g id="g4917" transform="scale(.72917)"> + <rect id="rect3207" fill-rule="evenodd" height="240" width="480" y=".00021550" x="0" fill="#006"/> + <g id="g878" stroke-width="1pt" transform="scale(8)"> + <path id="path879" d="m0 0v3.3541l53.292 26.646h6.708v-3.354l-53.292-26.646h-6.708zm60 0v3.354l-53.292 26.646h-6.708v-3.354l53.292-26.646h6.708z" fill="#fff"/> + <path id="path880" d="m25 0v30h10v-30h-10zm-25 10v10h60v-10h-60z" fill="#fff"/> + <path id="path881" d="m0 12v6h60v-6h-60zm27-12v30h6v-30h-6z" fill="#c00"/> + <path id="path882" d="m0 30 20-10h4.472l-20 10h-4.472zm0-30 20 10h-4.472l-15.528-7.7639v-2.2361zm35.528 10 20-10h4.472l-20 10h-4.472zm24.472 20-20-10h4.472l15.528 7.764v2.236z" fill="#c00"/> + </g> + </g> + <g id="g3929" transform="matrix(1.0265 0 0 1.0265 -301.49 28.259)"> + <path id="path824" d="m662.41 122.94 213.68-0.79287-0.39644 190.29s7.5321 28.939-89.593 72.943c34.886-3.5678 72.943-40.832 72.943-40.832s15.461-19.821 22.993-8.7214c7.5321 11.1 14.668 16.65 20.218 21.011 5.55 4.3607 9.9106 16.254 1.5856 24.975-8.325 8.7214-21.407 9.9108-24.975-0.79287-5.55 2.7751-39.643 44.004-109.41 45.986-70.961-1.1893-109.81-46.382-109.81-46.382s-9.5143 15.064-22.993 3.1715c-13.082-15.461-3.1714-25.372-3.1714-25.372s11.1-6.3428 14.271-10.704c5.1536-5.9465 6.7393-13.875 15.461-13.875 10.307 0.79288 14.271 9.1179 14.271 9.1179s35.679 37.661 74.132 42.418c-86.818-41.625-89.99-67.393-89.593-73.736l0.39645-188.7z" fill-rule="evenodd" fill="#fff"/> + <path id="path779" d="m667.56 128.09 203.76-1.1893v183.15c0.39645 23.786-39.643 47.968-102.28 78.889-64.61-33.3-101.87-53.52-102.27-79.28l0.79285-181.56z" fill-rule="evenodd" stroke="#000" stroke-width="1.2551pt" fill="#006129"/> + <g id="g584" transform="matrix(1.2884 0 0 1.2884 602.15 110.19)"> + <path id="path585" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path586" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path587" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path588" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path589" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path590" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3331)"/> + <path id="path591" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g592" transform="matrix(1.2884 0 0 1.2884 601.47 73.831)"> + <path id="path593" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path594" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path595" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path596" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path597" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path598" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3333)"/> + <path id="path599" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g600" transform="matrix(1.2884 0 0 1.2884 729.25 40.779)"> + <path id="path601" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path602" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path603" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path604" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path605" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path606" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3335)"/> + <path id="path607" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g608" transform="matrix(1.2884 0 0 1.2884 604.45 5.4353)"> + <path id="path609" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path610" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path611" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path612" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path613" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path614" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3337)"/> + <path id="path615" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g616" transform="matrix(1.2884 0 0 1.2884 604.72 -29.303)"> + <path id="path617" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path618" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path619" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path620" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path621" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path622" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3339)"/> + <path id="path623" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g624" transform="matrix(1.2884 0 0 1.2884 605.38 -64.549)"> + <path id="path625" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path626" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path627" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path628" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path629" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path630" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3341)"/> + <path id="path631" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g632" transform="matrix(1.2884 0 0 1.2884 730.2 -63.975)"> + <path id="path633" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path634" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path635" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path636" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path637" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path638" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3343)"/> + <path id="path639" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g640" transform="matrix(1.2884 0 0 1.2884 729.06 -29.376)"> + <path id="path641" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path642" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path643" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path644" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path645" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path646" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3345)"/> + <path id="path647" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g648" transform="matrix(1.2884 0 0 1.2884 727.53 5.9883)"> + <path id="path649" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path650" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path651" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path652" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path653" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path654" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3347)"/> + <path id="path655" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <path id="path657" d="m818.97 330.26 12.028-17.665 12.086 17.702" stroke="#f7c600" stroke-width="1.2551" fill="none"/> + <path id="path658" d="m833.41 323.66c0.00046 1.3195-1.0691 2.3894-2.3887 2.3894s-2.3892-1.0699-2.3887-2.3894c-0.00046-1.3195 1.0691-2.3894 2.3887-2.3894 1.3195 0 2.3891 1.0699 2.3887 2.3894z" fill-rule="evenodd" stroke="#000" stroke-width=".78449" fill="#f7c600"/> + <path id="path659" d="m821.23 343.31 18.647 0.053s0.29238-2.42-1.9477-3.8908c9.7667-1.343 7.2295-9.9579 15.409-10.446 1.5871 0.24417-4.2729 3.6625-4.2729 3.6625s-4.9317 3.4802-2.6859 5.2496c1.783 1.4047 2.5638-0.85447 2.808-2.5637 0.24415-1.7092 7.9354-2.8079 6.8367-7.6912-1.8313-4.0288-12.575 2.6857-12.575 2.6857l-7.6648-0.0425c-0.47791-0.86027-2.5903-4.31-4.7717-4.3259-2.5881 0.0944-4.4111 4.3684-4.4111 4.3684h-11.11-6.2263s-0.59436 4.4481 8.1957 5.3026c1.979 2.5846 3.5131 3.3068 5.2336 3.9759-1.147 0.95586-1.4698 2.1122-1.465 3.6625z" fill-rule="evenodd" stroke="#000" stroke-width=".78446" fill="#f7c600"/> + <path id="path660" d="m822.57 339.52 15.531-0.0529" stroke="#000" stroke-width=".78446" fill="none"/> + <path id="path661" d="m815.46 330.37s1.2425 7.2641 6.9772 8.9845" stroke="#000" stroke-width=".78446" fill="none"/> + <path id="path662" d="m814.5 330.27c0.57346-2.7717 1.6248-3.2497 2.7718-6.7861 0.19116-3.4408-2.7718-3.0585-1.9116-5.2568 1.5292-2.3895 0.76463-4.6833-2.1027-6.4993 0.57347 3.1541-3.7276 6.117-3.7276 8.6976 0 2.5807 2.1983 2.0072 1.9116 5.926 0.19116 2.2937-0.57346 1.7204-0.76462 3.9187h3.8231z" fill-rule="evenodd" stroke="#000" stroke-width=".78446" fill="url(#linearGradient3349)"/> + <path id="path663" d="m833.22 313.05c0.00042 1.2139-0.98356 2.1982-2.1975 2.1982-1.214 0-2.1979-0.98428-2.1975-2.1982-0.00041-1.2139 0.98357-2.1982 2.1975-2.1982s2.1979 0.98428 2.1975 2.1982z" fill-rule="evenodd" stroke="#000" stroke-width=".78446" fill="#f7c600"/> + <g id="g664" transform="matrix(1.2884 0 0 1.2884 728.87 75.569)"> + <path id="path665" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path666" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path667" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path668" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path669" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path670" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3351)"/> + <path id="path671" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g576" transform="matrix(1.2884 0 0 1.2884 627.25 43.056)"> + <path id="path563" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path564" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path565" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path566" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path568" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path569" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3353)"/> + <path id="path575" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g729" transform="matrix(1.2884 0 0 1.2884 602.15 109.79)" stroke="#000"> + <path id="path718" d="m139.22 183.9s3.7768 8.7077 8.0782 3.3572 2.7278-7.6586 2.7278-7.6586l-9.652-5.2456-2.8326 5.98 1.6786 3.567z" fill-rule="evenodd" stroke-width=".60887" fill="#f7c600"/> + <path id="path678" d="m147.51 182.75s0.6294 0.105 1.154-0.8392-1.154-1.364-1.8884-2.4131l-0.8393 1.6787 1.5737 1.5736z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path675" d="m125.68 180.44-8.4979 4.6161s-4.1965 0.8392-4.5112 0c-0.3148-0.8393 0.1049-1.5737 2.308-1.6786 2.2032-0.1049 8.1832-5.5604 8.1832-5.5604l2.5179 2.6229z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path674" d="m125.79 29.47s0.2098 1.9933 0.3147 3.0424-1.6786 3.2523-1.7835 3.1474-0.9442 0.10491-0.8393 0.73441 1.3639 0.83931 1.3639 0.83931-0.5246 2.2031 0 2.308c0.5245 0.10491-1.3639 2.8327 0 3.567 1.3638 0.73433 3.6719 1.6785 4.721 1.4687 1.0491-0.20981 0 4.0916 0 4.0916l-2.9375 6.2947 16.156-1.6785-3.3572-5.3506s-1.5736-1.0491-1.154-4.0916c0.4197-3.0424-0.2098-16.786-0.2098-16.786l-11.54-1.5737-0.7344 3.9867z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path672" d="m122.85 53.39s-5.2456 2.413-5.0358 8.9175c-1.3638 6.2947-2.0982 12.589-2.0982 12.589s-6.1898 7.029-8.0782 9.547c-1.8884 2.5179-4.7211 7.6585-5.7702 9.0224s-5.1407 5.8752-5.0358 7.5537c0.10491 1.6785-0.94421 9.1274 3.1474 9.9666 1.0491 0.4196 4.4063-8.6028 4.4063-8.6028s0.2098-3.8817-0.9442-4.6161 2.5179-3.2523 2.5179-3.2523 7.0291-5.1407 8.6028-6.3996 5.8751-6.0849 5.8751-6.0849l2.4129-28.641z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path679" d="m128.83 48.459s1.3639 3.672 4.4063 3.0424c3.0425-0.6295 6.6095-3.4621 6.6095-3.4621s2.8326-0.10491 3.2523 0.31471c0.4196 0.41962 7.6585 7.4486 7.4487 9.6519-0.2098 2.2032-3.3572 1.5736-4.5112 3.0424s-3.0425 5.1407-2.5179 7.8684 2.0982 6.2948 1.8884 7.6586-1.3638 1.7834-1.3638 2.5178c0 0.73441 0.9442 1.9934 0.9442 3.3572s-1.259 3.3571-1.0491 4.721c0.2098 1.3639 0.3147 5.3505 0.3147 5.3505l-0.3147 18.465s1.0491 0.6294 1.154 1.6786c0.1049 1.0491 7.134 31.578 7.134 31.578s-0.3147 0.9442-1.0491 0.8393 2.8326 4.721 2.9375 6.0849 3.672 12.065 3.567 13.534c-0.1049 1.4687-0.6294 4.721-0.9442 4.8259-0.3147 0.1049 2.3081 6.7144 1.8884 7.7635-0.4196 1.0491-4.721 0.9442-4.721 0.9442l-1.154-0.2098s0.1049 1.3639-0.7344 1.4688-7.0291-0.3148-7.0291-0.3148-1.7835 2.7277-2.8326 2.6228c-1.0492-0.1049-2.413-1.9933-2.7278-1.6785-0.3147 0.3147 0.9443 2.0981 0.6295 2.6227-0.3147 0.5246-5.6652 1.6787-6.7144-0.8392-1.0491-2.5179 0.6295-1.8885 0.3148-2.413-0.3148-0.5246-2.7277-1.8884-3.4621-1.4688s1.8884 1.0491 1.7835 2.0983c-0.1049 1.0491-2.3081 2.6227-3.1474 2.6227s-2.8326-3.8817-5.7701-3.462c-2.9376 0.4196-4.826 1.154-4.826 1.154s-3.4621 1.4687-4.9309 1.154c-1.4687-0.3147-2.0982-1.4688-2.0982-2.0982 0-0.6295 1.0491-3.3572 0.9442-4.1965s-0.9442-1.6786-0.9442-2.9376c0-1.2589 2.413-5.5603 2.413-5.5603l-0.1049-19.304s-2.2032-0.0001-2.3081-1.3639 3.3572-30.529 3.8817-32.418c0.5246-1.8884 1.8885-8.6028 1.8885-8.6028s-1.5737 0.7344-1.6786 0 4.721-17.415 4.721-17.415 0.8393-8.2881 0.8393-10.491c0-2.2031-0.4196-5.2456-0.4196-5.2456s-4.3072-1.8234-4.4064-4.6161c-0.3939-4.4434 4.0916-6.9243 4.6162-8.393 0.5245-1.4687 2.0982-5.875 2.0982-5.875s2.3081-3.9867 6.0849-4.6162z" fill-rule="evenodd" stroke-width=".60887" fill="#fff"/> + <path id="path717" d="m127.26 181.7s-10.176 5.3506-11.645 5.7702c-1.4688 0.4196-2.413-1.7835-0.9442-2.2032 1.4688-0.4196 3.7768-0.6295 3.7768-0.6295s-3.4621-2.7277-3.3572-2.8326c0.105-0.1049 4.7211-1.7834 4.826-1.7834s1.4688 2.7276 2.413 2.5178 3.6719-2.308 3.6719-2.308 1.4688 1.6786 1.2589 1.4687z" fill-rule="evenodd" stroke-width=".60887" fill="#f7c600"/> + <path id="path676" d="m141.6 184.63c0.9622 1.2409 1.3384 3.3932 3.5416 2.1343 2.2031-1.2589-1.1286-3.5956-1.1286-3.5956l-2.413 1.4613z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path677" d="m145.62 184.42s1.0491 0.8393 1.9933-0.1049-1.8885-2.9375-1.8885-2.9375l-1.3638 1.5737 1.259 1.4687z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path680" d="m142.47 52.55s-9.3372 5.98-9.1274 8.0782" stroke-width=".60887" fill="none"/> + <path id="path681" d="m144.57 53.599s-2.0982 2.308-2.2031 2.308" stroke-width=".60887" fill="none"/> + <path id="path682" d="m147.4 56.117s-4.6162 3.7768-3.8818 6.1898" stroke-width=".60887" fill="none"/> + <path id="path683" d="m125.58 52.026s-1.3638 2.8326-1.0491 3.7768c0.3148 0.94421 2.6228 4.5113 2.9376 6.7144 0.3147 2.2031 0 3.7769 0 3.7769" stroke-width=".60887" fill="none"/> + <path id="path684" d="m123.17 57.271s0.4196 3.3572 1.0491 3.9867c0.6295 0.62943 2.3081 3.4621 2.5179 4.6161" stroke-width=".60887" fill="none"/> + <path id="path685" d="m122.33 71.224s2.7277 1.364 5.2456-3.8817" stroke-width=".60887" fill="none"/> + <path id="path686" d="m131.66 63.671c-0.1049 0-1.9933 5.1407 1.3639 7.0291s5.8751 1.6785 7.3438 1.154c1.4688-0.52452 3.0425-1.4687 3.0425-1.4687" stroke-width=".60887" fill="none"/> + <path id="path687" d="m130.2 69.966s0.2098 6.9243 10.386 13.744" stroke-width=".60887" fill="none"/> + <path id="path688" d="m130.62 76.47s-0.1049 6.0848 3.8818 8.8126" stroke-width=".60887" fill="none"/> + <path id="path689" d="m128.52 69.336s-3.0425 9.0224-5.4554 9.9666" stroke-width=".60887" fill="none"/> + <path id="path690" d="m127.57 75.946s-0.1049 6.5046-0.9442 8.8126" stroke-width=".60887" fill="none"/> + <path id="path691" d="m125.79 86.332s2.0982 2.6228 4.4063 2.413c2.308-0.20981 3.2522-2.9376 4.8259-2.5179 1.5737 0.41969 3.0425 1.6787 6.7144 1.3639" stroke-width=".60887" fill="none"/> + <path id="path692" d="m136.49 90.318s0 5.3505 0.9442 5.8751 0.5246 5.4554 0.5246 5.4554" stroke-width=".60887" fill="none"/> + <path id="path693" d="m123.69 87.801s-0.1049 5.0359-0.7344 6.8193c-0.6294 1.7834-1.8884 4.826-1.6785 7.4488" stroke-width=".60887" fill="none"/> + <path id="path694" d="m117.29 105.01c0.5245-0.2098 2.3081-1.7834 2.3081-1.7834" stroke-width=".60887" fill="none"/> + <path id="path695" d="m120.54 104.38s-4.5113 19.304-3.2523 30.844" stroke-width=".60887" fill="none"/> + <path id="path696" d="m121.59 105.32s-2.3081 14.478-1.259 17.206" stroke-width=".60887" fill="none"/> + <path id="path697" d="m120.44 104.9c0.1049 0 8.8126 0.6294 8.8126 0.6294" stroke-width=".60887" fill="none"/> + <path id="path698" d="m130.51 104.38s2.413 1.259 5.7702 1.0491" stroke-width=".60887" fill="none"/> + <path id="path699" d="m129.46 111.41s-0.4197 24.759-1.0491 30.215" stroke-width=".60887" fill="none"/> + <path id="path700" d="m142.37 117.07s2.7277 21.717 4.3014 23.71" stroke-width=".60887" fill="none"/> + <path id="path701" d="m137.12 119.8s1.6786 19.199 2.6228 20.878" stroke-width=".60887" fill="none"/> + <path id="path702" d="m113.31 147.39s3.2522-1.0492 6.1897-4.1965c3.3573 4.5112 8.4979 0.2099 8.4979 0.2099s7.9733 5.4554 11.54-0.6295c5.4554 3.567 8.1831-0.5246 8.1831-0.5246s1.9934 3.0424 3.4621 2.7277" stroke-width=".60887" fill="none"/> + <path id="path703" d="m142.47 147.08s4.0916 19.199 10.176 24.654" stroke-width=".60887" fill="none"/> + <path id="path704" d="m121.38 145.08s0.5245 16.052 1.4687 27.382" stroke-width=".60887" fill="none"/> + <path id="path705" d="m120.65 163.23s-0.5246 10.491-1.1541 11.226" stroke-width=".60887" fill="none"/> + <path id="path707" d="m114.46 175.51s1.154 4.5113 6.9242 0.3148c5.7701-4.1966 5.875 1.5737 6.0849 2.2031 0.2098 0.6294 1.154 5.1407 3.3571 1.3639" stroke-width=".60887" fill="none"/> + <path id="path708" d="m135.44 173.2s-0.9442 9.337 7.3438 2.5178c8.2881-6.8192 9.6519-0.1048 9.8617 1.9934" stroke-width=".60887" fill="none"/> + <path id="path709" d="m125.47 28.84s2.3081 0.31464 3.567-0.41969c1.259-0.73433 2.7278-1.049 3.7769 0.41969s1.7835 1.3638 1.7835 1.3638-1.5737 3.8817 0 4.3014c1.5737 0.41969 2.308 0.41962 2.413 0.94421 0.1049 0.5246-1.3639 1.6786-0.9443 2.2031 0.4197 0.5246 1.1541 1.1541 1.259 1.5737 0.1049 0.41962-0.9442 2.2031-0.6295 2.6228 0.3148 0.41969 1.259 2.0983 1.8884 2.0983 0.6295 0 0.2099 2.6228 2.0983 1.9933s1.7835-2.3081 1.7835-2.3081 1.9933-0.31471 2.5179-2.0982c0.5245-1.7835 1.7835-2.2031 1.7835-2.2031s2.5179-1.3638-0.8393-3.4621c0-14.688-9.6519-13.114-9.6519-13.114s-1.1541-2.6229-3.0425-2.3081c-1.8884 0.31479-1.9933 2.518-3.3572 2.3081-1.3638-0.20988-1.6785-1.154-1.7835-1.0491-0.1049 0.1049-1.2589 2.2031-1.2589 2.7277 0 0.52459-3.6719-0.73441-3.3572 1.9933s2.0982 2.6228 1.9933 2.413z" fill-rule="evenodd" stroke-width=".60887" fill="#9c5100"/> + <path id="path710" d="m135.55 25.273s-0.7344 4.6161 4.1965 4.1965c-0.6295 2.5179 1.2589 3.3572 1.2589 3.3572" stroke-width=".60887" fill="none"/> + <path id="path711" d="m144.67 35.659c0.105 0 2.2032 1.3638-0.1049 3.0424" stroke-width=".60887" fill="none"/> + <path id="path712" d="m137.54 39.331s1.049 1.259 2.2031 0.94429c1.154-0.31472 3.0424 1.154 3.0424 1.154s1.5737 0.52452 1.7835 0.20981" stroke-width=".60887" fill="none"/> + <path id="path713" d="m131.14 43.318s3.567 1.3639 5.8751-4.3014" stroke-width=".60887" fill="none"/> + <path id="path714" d="m124.53 37.338 2.0983 0.10491" stroke-width=".60887" fill="none"/> + <path id="path715" stroke-linejoin="round" d="m124.85 39.436h1.8884l-1.6786 0.7344" stroke-width=".60887" fill="none"/> + <path id="path716" stroke-linejoin="round" d="m127.47 33.561c0.3147 0 1.4687-0.4197 1.6786-0.10491 0.2098 0.31479-1.259 0.5246-1.6786 0.10491z" stroke-width="1.096" fill="none"/> + <path id="path673" d="m150.13 58.487c0.1049 0 3.4621 10.386 3.8817 13.009 0.4197 2.6228 1.7835 13.114 1.259 14.583-0.5246 1.4688-5.8751 8.4978-6.5046 10.281-0.6295 1.7835-4.4063 8.6029-4.4063 8.6029s-0.9442 6.7144-1.3639 7.0291c-0.4196 0.3148 1.0831 1.9628 0.9443 2.5179-0.2082 0.6245-3.0425 3.567-4.3014 3.2523-1.259-0.3148-3.2523-1.7836-3.3572-3.1474s0.1049-5.8751 1.0491-7.0291 5.8751-12.799 6.1898-13.534c0.3147-0.73441 4.5112-9.8617 4.6161-11.435 0.105-1.5737-1.3054-5.2127-2.7891-6.548-3.302-9.7182-2.0046-15.579 4.7825-17.582z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path726" d="m101.25 103.5 0.1642 4.5977" stroke-width=".60887" fill="none"/> + <path id="path727" d="m96.942 103.16s2.9477 4.9298 2.7014 7.557" stroke-width=".60887" fill="none"/> + <path id="path728" stroke-linejoin="round" d="m136.45 113.46s2.204-0.2316 2.1346 3.4481c1.4074-4.5711 4.2692-4.6797 4.2692-4.6797" stroke-width=".60887" fill="none"/> + </g> + <path id="path780" d="m768.25 391.32c57.086-1.5858 93.954-42.814 93.557-43.211-0.3963-0.39644 7.5322-11.496 13.875-9.9107 6.3429 1.5858 15.461 20.218 26.561 24.182 5.5499 8.7214-1.5858 16.65-3.9644 18.236-2.3785 1.5858-13.082 5.9465-14.668-0.39644-1.5856-6.3429-4.7572-5.1536-4.7572-5.1536s-50.743 49.554-109.41 47.572c-60.65 0.4-110.6-47.57-110.6-47.57l-4.3608 4.7571s-4.7572 5.1536-7.1357 4.7572c-2.3786-0.39645-12.686-7.1357-13.479-13.875-0.79286-6.7393 6.3429-11.1 6.3429-11.1s17.443-13.479 19.425-20.614c3.9643-3.9643 11.496 2.7749 11.496 2.7749s45.986 52.725 97.125 49.554z" fill-rule="evenodd" stroke="#000" stroke-width="1.2551pt" fill="#f7c600"/> + <path id="path782" d="m639.02 360.66s4.7171-1.258 6.4468 0.7076c1.7296 1.9654 13.601 13.601 13.601 13.601" stroke="#000" stroke-width="1.2551pt" fill="none"/> + <path id="path783" d="m649.79 366.16-4.7171 3.5378s11.871 2.3583 9.1984 10.142" stroke="#000" stroke-width="1.2551pt" fill="none"/> + <path id="path784" d="m897.99 360.26s-2.3587-1.258-6.0537 1.4938c-3.6951 2.7516-13.051 13.208-13.051 13.208" stroke="#000" stroke-width="1.2551pt" fill="none"/> + <path id="path785" d="m887.38 365.85 5.1102 3.9309s-10.692 0.70758-8.3336 10.849" stroke="#000" stroke-width="1.2551pt" fill="none"/> + <path id="text2325" d="m699.45 373.24-0.34373 0.48199c-0.71701-0.35409-1.5348-0.41981-2.4534-0.19717-0.67444 0.1741-1.9449 0.80744-3.8115 1.9l-15.708 9.1572-0.42989-0.30657 3.9573-18.363c0.4782-2.2137 0.69667-3.558 0.65541-4.0329-0.0326-0.46868-0.36407-0.98674-0.99438-1.5542l0.34372-0.48198 8.4674 6.0385-0.34373 0.48199-0.28659-0.20438c-0.76425-0.54501-1.3534-0.82108-1.7676-0.82822-0.29266-0.0122-0.52878 0.10767-0.70837 0.3595-0.1115 0.15634-0.20992 0.36782-0.29526 0.63447-0.0792 0.25799-0.25037 0.99404-0.51356 2.2082l-2.5061 11.478 9.0745-5.3393c1.0919-0.64932 1.8002-1.1006 2.1249-1.3538 0.32466-0.2532 0.56752-0.49269 0.72856-0.71849 0.18578-0.26053 0.28043-0.54021 0.28396-0.83906 0.003-0.29883-0.0923-0.59636-0.28711-0.89257-0.26817-0.41394-0.71054-0.84078-1.3271-1.2805l0.34373-0.48199 5.7969 4.1341m5.6407 27.295-0.28405 0.5194-9.9529-5.4431 0.28406-0.5194 0.63171 0.34546c0.55215 0.30197 1.0504 0.44681 1.4948 0.43454 0.31497 0.002 0.62498-0.1202 0.93002-0.36674 0.22577-0.1683 0.59968-0.72975 1.1217-1.6843l6.848-12.522c0.53227-0.97328 0.81347-1.6097 0.84361-1.9094 0.0301-0.2996-0.0653-0.62532-0.28623-0.97717-0.20649-0.35605-0.57644-0.67995-1.1099-0.97169l-0.6317-0.34548 0.28406-0.51939 9.9528 5.443-0.28405 0.5194-0.6317-0.34547c-0.55218-0.30195-1.0504-0.4468-1.4948-0.43453-0.31499-0.002-0.62967 0.11766-0.94404 0.35906-0.2258 0.16832-0.59971 0.72976-1.1217 1.6843l-6.848 12.522c-0.53228 0.97329-0.81348 1.6098-0.8436 1.9094-0.0208 0.30474 0.0721 0.63515 0.27856 0.99122 0.22094 0.35182 0.59813 0.6736 1.1316 0.96533l0.63171 0.34548m36.36-8.5281-2.5662 7.2046-0.55768-0.19864c0.0283-2.2093-0.44834-4.0662-1.4297-5.5707-0.98143-1.5045-2.271-2.5413-3.8686-3.1104-1.5274-0.544-2.9524-0.56467-4.275-0.062-1.3191 0.49263-2.4635 1.4325-3.4331 2.8195-0.96964 1.3871-1.7426 2.8895-2.3188 4.5073-0.69793 1.9594-1.0788 3.76-1.1427 5.4017s0.29312 2.9918 1.0711 4.0502c0.78801 1.062 1.8904 1.8453 3.3072 2.3499 0.49235 0.17538 1.0127 0.30408 1.5609 0.38614 0.56187 0.0756 1.1499 0.10951 1.7641 0.10178l1.514-4.2504c0.2863-0.80386 0.41536-1.341 0.38717-1.6115-0.0247-0.28053-0.17881-0.57888-0.46248-0.89507-0.27365-0.3126-0.65666-0.5566-1.149-0.73197l-0.52753-0.1879 0.19864-0.55768 9.9327 3.5379-0.19864 0.55768c-0.77154-0.2182-1.3367-0.30059-1.6953-0.24719-0.34511 0.0469-0.66247 0.22263-0.95206 0.52711-0.15846 0.1587-0.37011 0.60984-0.63494 1.3534l-1.5139 4.2504c-1.5139 0.11751-3.0311 0.0696-4.5517-0.1436-1.5142-0.19963-3.0298-0.56966-4.5471-1.1101-1.9393-0.69076-3.459-1.5264-4.5591-2.5071-1.0864-0.98709-1.9699-2.0831-2.6504-3.2879-0.66689-1.2113-1.0852-2.453-1.2549-3.725-0.20947-1.6372-0.008-3.3149 0.60383-5.0332 1.0952-3.0748 3.1006-5.2875 6.0161-6.6382 2.9156-1.3507 6.0112-1.4426 9.287-0.27586 1.0149 0.36151 1.9006 0.76758 2.6573 1.2182 0.41347 0.23788 1.0446 0.7231 1.8933 1.4557 0.86232 0.72613 1.3839 1.1214 1.5648 1.1858 0.28132 0.10024 0.57836 0.0928 0.89113-0.0223 0.3163-0.1251 0.67694-0.43825 1.0819-0.93943l0.55768 0.19864m15.318 24.587-0.0887 0.58532-11.216-1.699 0.0887-0.58533 0.71187 0.10784c0.62224 0.0943 1.14 0.0594 1.5532-0.10455 0.29657-0.10612 0.54583-0.32727 0.7478-0.66349 0.15435-0.23553 0.313-0.89117 0.47596-1.9669l2.1376-14.111c0.16614-1.0968 0.21197-1.7911 0.13751-2.0829-0.0745-0.29175-0.27583-0.56499-0.60405-0.81971-0.31608-0.26363-0.77468-0.44098-1.3758-0.53206l-0.71188-0.10783 0.0887-0.58533 11.216 1.699-0.0887 0.58532-0.71187-0.10783c-0.62224-0.0942-1.14-0.0594-1.5532 0.10455-0.29658 0.10613-0.55112 0.32649-0.76362 0.66108-0.15437 0.23556-0.31302 0.89119-0.47596 1.9669l-2.1376 14.111c-0.16617 1.0968-0.212 1.7911-0.13752 2.0829 0.085 0.29337 0.28556 0.57189 0.60164 0.83553 0.32822 0.2547 0.7929 0.42758 1.394 0.51865l0.71188 0.10783m29.114-7.0721-0.42685 7.6477-19.239 0.98164-0.0302-0.59123 0.71906-0.0367c0.62851-0.0321 1.1288-0.16974 1.5009-0.41302 0.26935-0.16327 0.46937-0.42981 0.60003-0.79962 0.10413-0.26164 0.12847-0.93575 0.073-2.0223l-0.72726-14.253c-0.0565-1.1079-0.15045-1.7973-0.28175-2.0683-0.13132-0.27097-0.38324-0.49843-0.75576-0.68237-0.36241-0.1951-0.84722-0.27718-1.4544-0.24621l-0.71907 0.0367-0.0302-0.59124 11.553-0.58946 0.0302 0.59123-0.94278 0.0481c-0.62853 0.032-1.1288 0.16977-1.5009 0.41302-0.26938 0.16329-0.47471 0.4301-0.61601 0.80043-0.10415 0.26166-0.12849 0.93578-0.073 2.0224l0.70442 13.806c0.0565 1.1079 0.15659 1.813 0.30019 2.1154 0.14305 0.29176 0.4048 0.50269 0.78527 0.63281 0.2712 0.0823 0.91814 0.0974 1.9408 0.0452l1.8056-0.0922c1.1505-0.0587 2.0989-0.31003 2.8453-0.75397 0.74633-0.44394 1.3742-1.1168 1.8836-2.0186 0.52-0.90233 0.98687-2.2185 1.4006-3.9485l0.65515-0.0334m21.045-3.6512-7.3433 2.1937-0.26931 2.2847c-0.0847 0.76003-0.0613 1.3598 0.0699 1.7993 0.17402 0.58256 0.53733 0.9416 1.0899 1.0771 0.3248 0.0811 1.0411 0.0007 2.1489-0.24118l0.16945 0.56723-6.9141 2.0655-0.16945-0.56723c0.7125-0.33531 1.2341-0.82511 1.5649-1.4694 0.3277-0.65451 0.60753-1.8792 0.83949-3.674l2.48-18.809 0.29128-0.087 12.589 14.808c1.1978 1.4011 2.0893 2.2425 2.6744 2.5241 0.44212 0.21303 0.98765 0.25044 1.6366 0.11224l0.16945 0.56723-10.057 3.0043-0.16945-0.56722 0.41392-0.12366c0.80739-0.24119 1.341-0.52307 1.6009-0.84563 0.17598-0.23068 0.21819-0.49934 0.1266-0.80596-0.055-0.18395-0.14211-0.36387-0.26144-0.53975-0.0479-0.0858-0.31573-0.42333-0.8034-1.0124l-1.8778-2.2611m-0.86014-0.97875-5.2355-6.2342-1.05 8.112 6.2855-1.8777m27.726-28.253 2.7806 5.1719-0.50733 0.27276c-0.94213-1.0315-1.7353-1.7071-2.3795-2.0269-0.64926-0.3291-1.3767-0.47693-2.1822-0.44352-0.44793 0.0228-1.1182 0.27421-2.0106 0.75404l-1.4233 0.76524 7.9252 14.741c0.5253 0.97708 0.9053 1.56 1.14 1.7487 0.24406 0.18365 0.57161 0.28609 0.98268 0.30729 0.41538 0.007 0.89554-0.13632 1.4404-0.42929l0.63416-0.34095 0.28033 0.52141-10.006 5.3794-0.28034-0.52142 0.63415-0.34095c0.55429-0.29802 0.94752-0.63659 1.1797-1.0157 0.17354-0.26285 0.24491-0.59187 0.2141-0.98707-0.0179-0.28103-0.28444-0.90069-0.79964-1.859l-7.9252-14.741-1.381 0.74251c-1.2871 0.69202-2.0754 1.4671-2.3649 2.3251-0.40821 1.2004-0.34152 2.5634 0.20005 4.0888l-0.5355 0.28791-2.7806-5.1719 17.164-9.2284m13.014-7.7159 5.3186 7.051 0.34489-0.26016c1.0985-0.82861 1.6346-1.7741 1.6082-2.8364s-0.47893-2.3176-1.3576-3.7659l0.4854-0.36615 6.841 9.0692-0.4854 0.36614c-0.84731-0.91072-1.6747-1.5559-2.4821-1.9356-0.79893-0.38605-1.4958-0.52173-2.0907-0.40704-0.60131 0.10621-1.315 0.47084-2.141 1.0939l3.6807 4.8795c0.71943 0.95376 1.1978 1.5082 1.435 1.6632 0.24574 0.14866 0.53069 0.20761 0.85489 0.17684 0.32417-0.0307 0.73322-0.23242 1.2271-0.60498l1.0347-0.78045c1.618-1.2204 2.6297-2.5715 3.0352-4.0532 0.41402-1.4881 0.25581-3.1591-0.47461-5.0131l0.47261-0.3565 3.3736 6.0931-14.971 11.292-0.3565-0.47262 0.5748-0.43358c0.50243-0.37899 0.83948-0.77352 1.0112-1.1836 0.13147-0.28623 0.14762-0.61908 0.0484-0.99855-0.0605-0.27502-0.41833-0.84683-1.0735-1.7154l-8.5946-11.394c-0.59095-0.78343-0.97516-1.2485-1.1526-1.3952-0.30998-0.2338-0.64095-0.34488-0.99292-0.33327-0.50345 0.006-1.0362 0.22048-1.5982 0.64441l-0.5748 0.43358-0.35651-0.47261 14.498-10.936 3.8637 5.1222-0.48539 0.36614c-1.1912-1.0655-2.218-1.7005-3.0805-1.9051-0.85392-0.21096-1.786-0.13586-2.7962 0.22531-0.59251 0.20645-1.5445 0.80428-2.8559 1.7935l-1.7883 1.3489"/> + <path id="path2329" d="m664.42 374.87c70.909 57.515 140.41 58.57 208.41 0" fill="none"/> + </g> + </g> +</svg> diff --git a/s/flag/vi.svg b/s/flag/vi.svg new file mode 100755 index 0000000..07b6df0 --- /dev/null +++ b/s/flag/vi.svg @@ -0,0 +1,249 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> +<svg id="svg559" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.0" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata1572"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:title>British Virgin Islands</dc:title> + <dc:description/> + <dc:subject> + <rdf:Bag> + <rdf:li/> + <rdf:li>united_kingdom</rdf:li> + <rdf:li>flags</rdf:li> + <rdf:li>caribbean</rdf:li> + <rdf:li>america</rdf:li> + <rdf:li>signs_and_symbols</rdf:li> + <rdf:li>sign</rdf:li> + </rdf:Bag> + </dc:subject> + <dc:publisher> + <cc:Agent rdf:about="http://www.openclipart.org"> + <dc:title>Tobias Jakobs</dc:title> + </cc:Agent> + </dc:publisher> + <dc:creator> + <cc:Agent> + <dc:title>Tobias Jakobs</dc:title> + </cc:Agent> + </dc:creator> + <dc:rights> + <cc:Agent> + <dc:title>Tobias Jakobs</dc:title> + </cc:Agent> + </dc:rights> + <dc:date/> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + <cc:license rdf:resource="http://web.resource.org/cc/PublicDomain"/> + <dc:language>en</dc:language> + </cc:Work> + <cc:License rdf:about="http://web.resource.org/cc/PublicDomain"> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/> + </cc:License> + </rdf:RDF> + </metadata> + <defs id="defs1574"> + <linearGradient id="linearGradient570"> + <stop id="stop571" stop-color="#f00" offset="0"/> + <stop id="stop572" stop-color="#ff0" offset="1"/> + </linearGradient> + <linearGradient id="linearGradient3331" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.683 29.21)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3333" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.666 30.155)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3335" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -97.986 31.014)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3337" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.743 31.932)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3339" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.75 32.835)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3341" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -94.767 33.751)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3343" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -98.011 33.736)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3345" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -97.981 32.837)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3347" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -97.942 31.918)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3349" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.82810 0 0 1.8726 602.82 148.17)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3351" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -97.976 30.11)" x2="92.551" x1="103.08"/> + <linearGradient id="linearGradient3353" y2="107.76" xlink:href="#linearGradient570" gradientUnits="userSpaceOnUse" y1="111.28" gradientTransform="matrix(.64274 0 0 1.4534 -95.336 30.955)" x2="92.551" x1="103.08"/> + <clipPath id="clipPath3927" clipPathUnits="userSpaceOnUse"> + <rect id="rect3929" fill-opacity="0.67" height="480" width="640" y="0" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3927)"> + <rect id="rect877" height="480" width="960" y=".000014420" x="0" stroke-width="1pt" fill="#006"/> + <g id="g4917" transform="scale(.72917)"> + <rect id="rect3207" fill-rule="evenodd" height="240" width="480" y=".00021550" x="0" fill="#006"/> + <g id="g878" stroke-width="1pt" transform="scale(8)"> + <path id="path879" d="m0 0v3.3541l53.292 26.646h6.708v-3.354l-53.292-26.646h-6.708zm60 0v3.354l-53.292 26.646h-6.708v-3.354l53.292-26.646h6.708z" fill="#fff"/> + <path id="path880" d="m25 0v30h10v-30h-10zm-25 10v10h60v-10h-60z" fill="#fff"/> + <path id="path881" d="m0 12v6h60v-6h-60zm27-12v30h6v-30h-6z" fill="#c00"/> + <path id="path882" d="m0 30 20-10h4.472l-20 10h-4.472zm0-30 20 10h-4.472l-15.528-7.7639v-2.2361zm35.528 10 20-10h4.472l-20 10h-4.472zm24.472 20-20-10h4.472l15.528 7.764v2.236z" fill="#c00"/> + </g> + </g> + <g id="g3929" transform="matrix(1.0265 0 0 1.0265 -301.49 28.259)"> + <path id="path824" d="m662.41 122.94 213.68-0.79287-0.39644 190.29s7.5321 28.939-89.593 72.943c34.886-3.5678 72.943-40.832 72.943-40.832s15.461-19.821 22.993-8.7214c7.5321 11.1 14.668 16.65 20.218 21.011 5.55 4.3607 9.9106 16.254 1.5856 24.975-8.325 8.7214-21.407 9.9108-24.975-0.79287-5.55 2.7751-39.643 44.004-109.41 45.986-70.961-1.1893-109.81-46.382-109.81-46.382s-9.5143 15.064-22.993 3.1715c-13.082-15.461-3.1714-25.372-3.1714-25.372s11.1-6.3428 14.271-10.704c5.1536-5.9465 6.7393-13.875 15.461-13.875 10.307 0.79288 14.271 9.1179 14.271 9.1179s35.679 37.661 74.132 42.418c-86.818-41.625-89.99-67.393-89.593-73.736l0.39645-188.7z" fill-rule="evenodd" fill="#fff"/> + <path id="path779" d="m667.56 128.09 203.76-1.1893v183.15c0.39645 23.786-39.643 47.968-102.28 78.889-64.61-33.3-101.87-53.52-102.27-79.28l0.79285-181.56z" fill-rule="evenodd" stroke="#000" stroke-width="1.2551pt" fill="#006129"/> + <g id="g584" transform="matrix(1.2884 0 0 1.2884 602.15 110.19)"> + <path id="path585" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path586" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path587" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path588" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path589" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path590" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3331)"/> + <path id="path591" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g592" transform="matrix(1.2884 0 0 1.2884 601.47 73.831)"> + <path id="path593" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path594" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path595" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path596" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path597" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path598" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3333)"/> + <path id="path599" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g600" transform="matrix(1.2884 0 0 1.2884 729.25 40.779)"> + <path id="path601" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path602" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path603" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path604" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path605" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path606" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3335)"/> + <path id="path607" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g608" transform="matrix(1.2884 0 0 1.2884 604.45 5.4353)"> + <path id="path609" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path610" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path611" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path612" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path613" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path614" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3337)"/> + <path id="path615" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g616" transform="matrix(1.2884 0 0 1.2884 604.72 -29.303)"> + <path id="path617" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path618" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path619" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path620" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path621" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path622" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3339)"/> + <path id="path623" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g624" transform="matrix(1.2884 0 0 1.2884 605.38 -64.549)"> + <path id="path625" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path626" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path627" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path628" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path629" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path630" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3341)"/> + <path id="path631" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g632" transform="matrix(1.2884 0 0 1.2884 730.2 -63.975)"> + <path id="path633" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path634" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path635" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path636" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path637" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path638" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3343)"/> + <path id="path639" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g640" transform="matrix(1.2884 0 0 1.2884 729.06 -29.376)"> + <path id="path641" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path642" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path643" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path644" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path645" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path646" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3345)"/> + <path id="path647" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g648" transform="matrix(1.2884 0 0 1.2884 727.53 5.9883)"> + <path id="path649" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path650" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path651" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path652" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path653" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path654" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3347)"/> + <path id="path655" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <path id="path657" d="m818.97 330.26 12.028-17.665 12.086 17.702" stroke="#f7c600" stroke-width="1.2551" fill="none"/> + <path id="path658" d="m833.41 323.66c0.00046 1.3195-1.0691 2.3894-2.3887 2.3894s-2.3892-1.0699-2.3887-2.3894c-0.00046-1.3195 1.0691-2.3894 2.3887-2.3894 1.3195 0 2.3891 1.0699 2.3887 2.3894z" fill-rule="evenodd" stroke="#000" stroke-width=".78449" fill="#f7c600"/> + <path id="path659" d="m821.23 343.31 18.647 0.053s0.29238-2.42-1.9477-3.8908c9.7667-1.343 7.2295-9.9579 15.409-10.446 1.5871 0.24417-4.2729 3.6625-4.2729 3.6625s-4.9317 3.4802-2.6859 5.2496c1.783 1.4047 2.5638-0.85447 2.808-2.5637 0.24415-1.7092 7.9354-2.8079 6.8367-7.6912-1.8313-4.0288-12.575 2.6857-12.575 2.6857l-7.6648-0.0425c-0.47791-0.86027-2.5903-4.31-4.7717-4.3259-2.5881 0.0944-4.4111 4.3684-4.4111 4.3684h-11.11-6.2263s-0.59436 4.4481 8.1957 5.3026c1.979 2.5846 3.5131 3.3068 5.2336 3.9759-1.147 0.95586-1.4698 2.1122-1.465 3.6625z" fill-rule="evenodd" stroke="#000" stroke-width=".78446" fill="#f7c600"/> + <path id="path660" d="m822.57 339.52 15.531-0.0529" stroke="#000" stroke-width=".78446" fill="none"/> + <path id="path661" d="m815.46 330.37s1.2425 7.2641 6.9772 8.9845" stroke="#000" stroke-width=".78446" fill="none"/> + <path id="path662" d="m814.5 330.27c0.57346-2.7717 1.6248-3.2497 2.7718-6.7861 0.19116-3.4408-2.7718-3.0585-1.9116-5.2568 1.5292-2.3895 0.76463-4.6833-2.1027-6.4993 0.57347 3.1541-3.7276 6.117-3.7276 8.6976 0 2.5807 2.1983 2.0072 1.9116 5.926 0.19116 2.2937-0.57346 1.7204-0.76462 3.9187h3.8231z" fill-rule="evenodd" stroke="#000" stroke-width=".78446" fill="url(#linearGradient3349)"/> + <path id="path663" d="m833.22 313.05c0.00042 1.2139-0.98356 2.1982-2.1975 2.1982-1.214 0-2.1979-0.98428-2.1975-2.1982-0.00041-1.2139 0.98357-2.1982 2.1975-2.1982s2.1979 0.98428 2.1975 2.1982z" fill-rule="evenodd" stroke="#000" stroke-width=".78446" fill="#f7c600"/> + <g id="g664" transform="matrix(1.2884 0 0 1.2884 728.87 75.569)"> + <path id="path665" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path666" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path667" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path668" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path669" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path670" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3351)"/> + <path id="path671" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g576" transform="matrix(1.2884 0 0 1.2884 627.25 43.056)"> + <path id="path563" d="m69.786 170.53 9.3354-13.711 9.3809 13.74" stroke="#f7c600" stroke-width=".97419pt" fill="none"/> + <path id="path564" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="matrix(1.087 0 0 1.087 -6.9653 -4.9563)" stroke="#000" stroke-width=".56016" fill="#f7c600"/> + <path id="path565" d="m71.541 180.66 14.473 0.0412s0.22693-1.8783-1.5117-3.0199c7.5805-1.0424 5.6112-7.7289 11.96-8.1079 1.2318 0.1895-3.3165 2.8427-3.3165 2.8427s-3.8277 2.7012-2.0846 4.0745c1.3839 1.0903 1.9899-0.6632 2.1794-1.9898 0.18951-1.3266 6.1592-2.1794 5.3064-5.9696-1.4214-3.127-9.7599 2.0845-9.7599 2.0845l-5.9491-0.033c-0.37093-0.6677-2.0105-3.3452-3.7036-3.3576-2.0088 0.0733-3.4237 3.3906-3.4237 3.3906h-8.6228-4.8326s-0.46132 3.4524 6.3612 4.1157c1.536 2.0061 2.7268 2.5666 4.0621 3.0859-0.89021 0.7419-1.1408 1.6394-1.1371 2.8427z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + <path id="path566" d="m72.583 177.72 12.055-0.0411" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path568" d="m67.062 170.61s0.96439 5.6381 5.4154 6.9734" stroke="#000" stroke-width=".60887" fill="none"/> + <path id="path569" d="m66.32 170.54c0.4451-2.1513 1.2611-2.5223 2.1513-5.2671 0.14837-2.6706-2.1513-2.3739-1.4837-4.0801 1.1869-1.8546 0.59347-3.635-1.632-5.0445 0.44511 2.4481-2.8932 4.7478-2.8932 6.7507 0 2.003 1.7062 1.5579 1.4837 4.5995 0.14837 1.7803-0.4451 1.3353-0.59347 3.0415h2.9674z" fill-rule="evenodd" stroke="#000" stroke-width=".60887" fill="url(#linearGradient3353)"/> + <path id="path575" d="m80.922 156.72c0.000323 0.94218-0.7634 1.7061-1.7056 1.7061-0.94222 0-1.7059-0.76396-1.7056-1.7061-0.000323-0.94218 0.7634-1.7061 1.7056-1.7061 0.94222 0 1.7059 0.76396 1.7056 1.7061z" fill-rule="evenodd" transform="translate(-.074186 .44507)" stroke="#000" stroke-width=".60887" fill="#f7c600"/> + </g> + <g id="g729" transform="matrix(1.2884 0 0 1.2884 602.15 109.79)" stroke="#000"> + <path id="path718" d="m139.22 183.9s3.7768 8.7077 8.0782 3.3572 2.7278-7.6586 2.7278-7.6586l-9.652-5.2456-2.8326 5.98 1.6786 3.567z" fill-rule="evenodd" stroke-width=".60887" fill="#f7c600"/> + <path id="path678" d="m147.51 182.75s0.6294 0.105 1.154-0.8392-1.154-1.364-1.8884-2.4131l-0.8393 1.6787 1.5737 1.5736z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path675" d="m125.68 180.44-8.4979 4.6161s-4.1965 0.8392-4.5112 0c-0.3148-0.8393 0.1049-1.5737 2.308-1.6786 2.2032-0.1049 8.1832-5.5604 8.1832-5.5604l2.5179 2.6229z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path674" d="m125.79 29.47s0.2098 1.9933 0.3147 3.0424-1.6786 3.2523-1.7835 3.1474-0.9442 0.10491-0.8393 0.73441 1.3639 0.83931 1.3639 0.83931-0.5246 2.2031 0 2.308c0.5245 0.10491-1.3639 2.8327 0 3.567 1.3638 0.73433 3.6719 1.6785 4.721 1.4687 1.0491-0.20981 0 4.0916 0 4.0916l-2.9375 6.2947 16.156-1.6785-3.3572-5.3506s-1.5736-1.0491-1.154-4.0916c0.4197-3.0424-0.2098-16.786-0.2098-16.786l-11.54-1.5737-0.7344 3.9867z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path672" d="m122.85 53.39s-5.2456 2.413-5.0358 8.9175c-1.3638 6.2947-2.0982 12.589-2.0982 12.589s-6.1898 7.029-8.0782 9.547c-1.8884 2.5179-4.7211 7.6585-5.7702 9.0224s-5.1407 5.8752-5.0358 7.5537c0.10491 1.6785-0.94421 9.1274 3.1474 9.9666 1.0491 0.4196 4.4063-8.6028 4.4063-8.6028s0.2098-3.8817-0.9442-4.6161 2.5179-3.2523 2.5179-3.2523 7.0291-5.1407 8.6028-6.3996 5.8751-6.0849 5.8751-6.0849l2.4129-28.641z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path679" d="m128.83 48.459s1.3639 3.672 4.4063 3.0424c3.0425-0.6295 6.6095-3.4621 6.6095-3.4621s2.8326-0.10491 3.2523 0.31471c0.4196 0.41962 7.6585 7.4486 7.4487 9.6519-0.2098 2.2032-3.3572 1.5736-4.5112 3.0424s-3.0425 5.1407-2.5179 7.8684 2.0982 6.2948 1.8884 7.6586-1.3638 1.7834-1.3638 2.5178c0 0.73441 0.9442 1.9934 0.9442 3.3572s-1.259 3.3571-1.0491 4.721c0.2098 1.3639 0.3147 5.3505 0.3147 5.3505l-0.3147 18.465s1.0491 0.6294 1.154 1.6786c0.1049 1.0491 7.134 31.578 7.134 31.578s-0.3147 0.9442-1.0491 0.8393 2.8326 4.721 2.9375 6.0849 3.672 12.065 3.567 13.534c-0.1049 1.4687-0.6294 4.721-0.9442 4.8259-0.3147 0.1049 2.3081 6.7144 1.8884 7.7635-0.4196 1.0491-4.721 0.9442-4.721 0.9442l-1.154-0.2098s0.1049 1.3639-0.7344 1.4688-7.0291-0.3148-7.0291-0.3148-1.7835 2.7277-2.8326 2.6228c-1.0492-0.1049-2.413-1.9933-2.7278-1.6785-0.3147 0.3147 0.9443 2.0981 0.6295 2.6227-0.3147 0.5246-5.6652 1.6787-6.7144-0.8392-1.0491-2.5179 0.6295-1.8885 0.3148-2.413-0.3148-0.5246-2.7277-1.8884-3.4621-1.4688s1.8884 1.0491 1.7835 2.0983c-0.1049 1.0491-2.3081 2.6227-3.1474 2.6227s-2.8326-3.8817-5.7701-3.462c-2.9376 0.4196-4.826 1.154-4.826 1.154s-3.4621 1.4687-4.9309 1.154c-1.4687-0.3147-2.0982-1.4688-2.0982-2.0982 0-0.6295 1.0491-3.3572 0.9442-4.1965s-0.9442-1.6786-0.9442-2.9376c0-1.2589 2.413-5.5603 2.413-5.5603l-0.1049-19.304s-2.2032-0.0001-2.3081-1.3639 3.3572-30.529 3.8817-32.418c0.5246-1.8884 1.8885-8.6028 1.8885-8.6028s-1.5737 0.7344-1.6786 0 4.721-17.415 4.721-17.415 0.8393-8.2881 0.8393-10.491c0-2.2031-0.4196-5.2456-0.4196-5.2456s-4.3072-1.8234-4.4064-4.6161c-0.3939-4.4434 4.0916-6.9243 4.6162-8.393 0.5245-1.4687 2.0982-5.875 2.0982-5.875s2.3081-3.9867 6.0849-4.6162z" fill-rule="evenodd" stroke-width=".60887" fill="#fff"/> + <path id="path717" d="m127.26 181.7s-10.176 5.3506-11.645 5.7702c-1.4688 0.4196-2.413-1.7835-0.9442-2.2032 1.4688-0.4196 3.7768-0.6295 3.7768-0.6295s-3.4621-2.7277-3.3572-2.8326c0.105-0.1049 4.7211-1.7834 4.826-1.7834s1.4688 2.7276 2.413 2.5178 3.6719-2.308 3.6719-2.308 1.4688 1.6786 1.2589 1.4687z" fill-rule="evenodd" stroke-width=".60887" fill="#f7c600"/> + <path id="path676" d="m141.6 184.63c0.9622 1.2409 1.3384 3.3932 3.5416 2.1343 2.2031-1.2589-1.1286-3.5956-1.1286-3.5956l-2.413 1.4613z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path677" d="m145.62 184.42s1.0491 0.8393 1.9933-0.1049-1.8885-2.9375-1.8885-2.9375l-1.3638 1.5737 1.259 1.4687z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path680" d="m142.47 52.55s-9.3372 5.98-9.1274 8.0782" stroke-width=".60887" fill="none"/> + <path id="path681" d="m144.57 53.599s-2.0982 2.308-2.2031 2.308" stroke-width=".60887" fill="none"/> + <path id="path682" d="m147.4 56.117s-4.6162 3.7768-3.8818 6.1898" stroke-width=".60887" fill="none"/> + <path id="path683" d="m125.58 52.026s-1.3638 2.8326-1.0491 3.7768c0.3148 0.94421 2.6228 4.5113 2.9376 6.7144 0.3147 2.2031 0 3.7769 0 3.7769" stroke-width=".60887" fill="none"/> + <path id="path684" d="m123.17 57.271s0.4196 3.3572 1.0491 3.9867c0.6295 0.62943 2.3081 3.4621 2.5179 4.6161" stroke-width=".60887" fill="none"/> + <path id="path685" d="m122.33 71.224s2.7277 1.364 5.2456-3.8817" stroke-width=".60887" fill="none"/> + <path id="path686" d="m131.66 63.671c-0.1049 0-1.9933 5.1407 1.3639 7.0291s5.8751 1.6785 7.3438 1.154c1.4688-0.52452 3.0425-1.4687 3.0425-1.4687" stroke-width=".60887" fill="none"/> + <path id="path687" d="m130.2 69.966s0.2098 6.9243 10.386 13.744" stroke-width=".60887" fill="none"/> + <path id="path688" d="m130.62 76.47s-0.1049 6.0848 3.8818 8.8126" stroke-width=".60887" fill="none"/> + <path id="path689" d="m128.52 69.336s-3.0425 9.0224-5.4554 9.9666" stroke-width=".60887" fill="none"/> + <path id="path690" d="m127.57 75.946s-0.1049 6.5046-0.9442 8.8126" stroke-width=".60887" fill="none"/> + <path id="path691" d="m125.79 86.332s2.0982 2.6228 4.4063 2.413c2.308-0.20981 3.2522-2.9376 4.8259-2.5179 1.5737 0.41969 3.0425 1.6787 6.7144 1.3639" stroke-width=".60887" fill="none"/> + <path id="path692" d="m136.49 90.318s0 5.3505 0.9442 5.8751 0.5246 5.4554 0.5246 5.4554" stroke-width=".60887" fill="none"/> + <path id="path693" d="m123.69 87.801s-0.1049 5.0359-0.7344 6.8193c-0.6294 1.7834-1.8884 4.826-1.6785 7.4488" stroke-width=".60887" fill="none"/> + <path id="path694" d="m117.29 105.01c0.5245-0.2098 2.3081-1.7834 2.3081-1.7834" stroke-width=".60887" fill="none"/> + <path id="path695" d="m120.54 104.38s-4.5113 19.304-3.2523 30.844" stroke-width=".60887" fill="none"/> + <path id="path696" d="m121.59 105.32s-2.3081 14.478-1.259 17.206" stroke-width=".60887" fill="none"/> + <path id="path697" d="m120.44 104.9c0.1049 0 8.8126 0.6294 8.8126 0.6294" stroke-width=".60887" fill="none"/> + <path id="path698" d="m130.51 104.38s2.413 1.259 5.7702 1.0491" stroke-width=".60887" fill="none"/> + <path id="path699" d="m129.46 111.41s-0.4197 24.759-1.0491 30.215" stroke-width=".60887" fill="none"/> + <path id="path700" d="m142.37 117.07s2.7277 21.717 4.3014 23.71" stroke-width=".60887" fill="none"/> + <path id="path701" d="m137.12 119.8s1.6786 19.199 2.6228 20.878" stroke-width=".60887" fill="none"/> + <path id="path702" d="m113.31 147.39s3.2522-1.0492 6.1897-4.1965c3.3573 4.5112 8.4979 0.2099 8.4979 0.2099s7.9733 5.4554 11.54-0.6295c5.4554 3.567 8.1831-0.5246 8.1831-0.5246s1.9934 3.0424 3.4621 2.7277" stroke-width=".60887" fill="none"/> + <path id="path703" d="m142.47 147.08s4.0916 19.199 10.176 24.654" stroke-width=".60887" fill="none"/> + <path id="path704" d="m121.38 145.08s0.5245 16.052 1.4687 27.382" stroke-width=".60887" fill="none"/> + <path id="path705" d="m120.65 163.23s-0.5246 10.491-1.1541 11.226" stroke-width=".60887" fill="none"/> + <path id="path707" d="m114.46 175.51s1.154 4.5113 6.9242 0.3148c5.7701-4.1966 5.875 1.5737 6.0849 2.2031 0.2098 0.6294 1.154 5.1407 3.3571 1.3639" stroke-width=".60887" fill="none"/> + <path id="path708" d="m135.44 173.2s-0.9442 9.337 7.3438 2.5178c8.2881-6.8192 9.6519-0.1048 9.8617 1.9934" stroke-width=".60887" fill="none"/> + <path id="path709" d="m125.47 28.84s2.3081 0.31464 3.567-0.41969c1.259-0.73433 2.7278-1.049 3.7769 0.41969s1.7835 1.3638 1.7835 1.3638-1.5737 3.8817 0 4.3014c1.5737 0.41969 2.308 0.41962 2.413 0.94421 0.1049 0.5246-1.3639 1.6786-0.9443 2.2031 0.4197 0.5246 1.1541 1.1541 1.259 1.5737 0.1049 0.41962-0.9442 2.2031-0.6295 2.6228 0.3148 0.41969 1.259 2.0983 1.8884 2.0983 0.6295 0 0.2099 2.6228 2.0983 1.9933s1.7835-2.3081 1.7835-2.3081 1.9933-0.31471 2.5179-2.0982c0.5245-1.7835 1.7835-2.2031 1.7835-2.2031s2.5179-1.3638-0.8393-3.4621c0-14.688-9.6519-13.114-9.6519-13.114s-1.1541-2.6229-3.0425-2.3081c-1.8884 0.31479-1.9933 2.518-3.3572 2.3081-1.3638-0.20988-1.6785-1.154-1.7835-1.0491-0.1049 0.1049-1.2589 2.2031-1.2589 2.7277 0 0.52459-3.6719-0.73441-3.3572 1.9933s2.0982 2.6228 1.9933 2.413z" fill-rule="evenodd" stroke-width=".60887" fill="#9c5100"/> + <path id="path710" d="m135.55 25.273s-0.7344 4.6161 4.1965 4.1965c-0.6295 2.5179 1.2589 3.3572 1.2589 3.3572" stroke-width=".60887" fill="none"/> + <path id="path711" d="m144.67 35.659c0.105 0 2.2032 1.3638-0.1049 3.0424" stroke-width=".60887" fill="none"/> + <path id="path712" d="m137.54 39.331s1.049 1.259 2.2031 0.94429c1.154-0.31472 3.0424 1.154 3.0424 1.154s1.5737 0.52452 1.7835 0.20981" stroke-width=".60887" fill="none"/> + <path id="path713" d="m131.14 43.318s3.567 1.3639 5.8751-4.3014" stroke-width=".60887" fill="none"/> + <path id="path714" d="m124.53 37.338 2.0983 0.10491" stroke-width=".60887" fill="none"/> + <path id="path715" stroke-linejoin="round" d="m124.85 39.436h1.8884l-1.6786 0.7344" stroke-width=".60887" fill="none"/> + <path id="path716" stroke-linejoin="round" d="m127.47 33.561c0.3147 0 1.4687-0.4197 1.6786-0.10491 0.2098 0.31479-1.259 0.5246-1.6786 0.10491z" stroke-width="1.096" fill="none"/> + <path id="path673" d="m150.13 58.487c0.1049 0 3.4621 10.386 3.8817 13.009 0.4197 2.6228 1.7835 13.114 1.259 14.583-0.5246 1.4688-5.8751 8.4978-6.5046 10.281-0.6295 1.7835-4.4063 8.6029-4.4063 8.6029s-0.9442 6.7144-1.3639 7.0291c-0.4196 0.3148 1.0831 1.9628 0.9443 2.5179-0.2082 0.6245-3.0425 3.567-4.3014 3.2523-1.259-0.3148-3.2523-1.7836-3.3572-3.1474s0.1049-5.8751 1.0491-7.0291 5.8751-12.799 6.1898-13.534c0.3147-0.73441 4.5112-9.8617 4.6161-11.435 0.105-1.5737-1.3054-5.2127-2.7891-6.548-3.302-9.7182-2.0046-15.579 4.7825-17.582z" fill-rule="evenodd" stroke-width=".60887" fill="#ffc6b5"/> + <path id="path726" d="m101.25 103.5 0.1642 4.5977" stroke-width=".60887" fill="none"/> + <path id="path727" d="m96.942 103.16s2.9477 4.9298 2.7014 7.557" stroke-width=".60887" fill="none"/> + <path id="path728" stroke-linejoin="round" d="m136.45 113.46s2.204-0.2316 2.1346 3.4481c1.4074-4.5711 4.2692-4.6797 4.2692-4.6797" stroke-width=".60887" fill="none"/> + </g> + <path id="path780" d="m768.25 391.32c57.086-1.5858 93.954-42.814 93.557-43.211-0.3963-0.39644 7.5322-11.496 13.875-9.9107 6.3429 1.5858 15.461 20.218 26.561 24.182 5.5499 8.7214-1.5858 16.65-3.9644 18.236-2.3785 1.5858-13.082 5.9465-14.668-0.39644-1.5856-6.3429-4.7572-5.1536-4.7572-5.1536s-50.743 49.554-109.41 47.572c-60.65 0.4-110.6-47.57-110.6-47.57l-4.3608 4.7571s-4.7572 5.1536-7.1357 4.7572c-2.3786-0.39645-12.686-7.1357-13.479-13.875-0.79286-6.7393 6.3429-11.1 6.3429-11.1s17.443-13.479 19.425-20.614c3.9643-3.9643 11.496 2.7749 11.496 2.7749s45.986 52.725 97.125 49.554z" fill-rule="evenodd" stroke="#000" stroke-width="1.2551pt" fill="#f7c600"/> + <path id="path782" d="m639.02 360.66s4.7171-1.258 6.4468 0.7076c1.7296 1.9654 13.601 13.601 13.601 13.601" stroke="#000" stroke-width="1.2551pt" fill="none"/> + <path id="path783" d="m649.79 366.16-4.7171 3.5378s11.871 2.3583 9.1984 10.142" stroke="#000" stroke-width="1.2551pt" fill="none"/> + <path id="path784" d="m897.99 360.26s-2.3587-1.258-6.0537 1.4938c-3.6951 2.7516-13.051 13.208-13.051 13.208" stroke="#000" stroke-width="1.2551pt" fill="none"/> + <path id="path785" d="m887.38 365.85 5.1102 3.9309s-10.692 0.70758-8.3336 10.849" stroke="#000" stroke-width="1.2551pt" fill="none"/> + <path id="text2325" d="m699.45 373.24-0.34373 0.48199c-0.71701-0.35409-1.5348-0.41981-2.4534-0.19717-0.67444 0.1741-1.9449 0.80744-3.8115 1.9l-15.708 9.1572-0.42989-0.30657 3.9573-18.363c0.4782-2.2137 0.69667-3.558 0.65541-4.0329-0.0326-0.46868-0.36407-0.98674-0.99438-1.5542l0.34372-0.48198 8.4674 6.0385-0.34373 0.48199-0.28659-0.20438c-0.76425-0.54501-1.3534-0.82108-1.7676-0.82822-0.29266-0.0122-0.52878 0.10767-0.70837 0.3595-0.1115 0.15634-0.20992 0.36782-0.29526 0.63447-0.0792 0.25799-0.25037 0.99404-0.51356 2.2082l-2.5061 11.478 9.0745-5.3393c1.0919-0.64932 1.8002-1.1006 2.1249-1.3538 0.32466-0.2532 0.56752-0.49269 0.72856-0.71849 0.18578-0.26053 0.28043-0.54021 0.28396-0.83906 0.003-0.29883-0.0923-0.59636-0.28711-0.89257-0.26817-0.41394-0.71054-0.84078-1.3271-1.2805l0.34373-0.48199 5.7969 4.1341m5.6407 27.295-0.28405 0.5194-9.9529-5.4431 0.28406-0.5194 0.63171 0.34546c0.55215 0.30197 1.0504 0.44681 1.4948 0.43454 0.31497 0.002 0.62498-0.1202 0.93002-0.36674 0.22577-0.1683 0.59968-0.72975 1.1217-1.6843l6.848-12.522c0.53227-0.97328 0.81347-1.6097 0.84361-1.9094 0.0301-0.2996-0.0653-0.62532-0.28623-0.97717-0.20649-0.35605-0.57644-0.67995-1.1099-0.97169l-0.6317-0.34548 0.28406-0.51939 9.9528 5.443-0.28405 0.5194-0.6317-0.34547c-0.55218-0.30195-1.0504-0.4468-1.4948-0.43453-0.31499-0.002-0.62967 0.11766-0.94404 0.35906-0.2258 0.16832-0.59971 0.72976-1.1217 1.6843l-6.848 12.522c-0.53228 0.97329-0.81348 1.6098-0.8436 1.9094-0.0208 0.30474 0.0721 0.63515 0.27856 0.99122 0.22094 0.35182 0.59813 0.6736 1.1316 0.96533l0.63171 0.34548m36.36-8.5281-2.5662 7.2046-0.55768-0.19864c0.0283-2.2093-0.44834-4.0662-1.4297-5.5707-0.98143-1.5045-2.271-2.5413-3.8686-3.1104-1.5274-0.544-2.9524-0.56467-4.275-0.062-1.3191 0.49263-2.4635 1.4325-3.4331 2.8195-0.96964 1.3871-1.7426 2.8895-2.3188 4.5073-0.69793 1.9594-1.0788 3.76-1.1427 5.4017s0.29312 2.9918 1.0711 4.0502c0.78801 1.062 1.8904 1.8453 3.3072 2.3499 0.49235 0.17538 1.0127 0.30408 1.5609 0.38614 0.56187 0.0756 1.1499 0.10951 1.7641 0.10178l1.514-4.2504c0.2863-0.80386 0.41536-1.341 0.38717-1.6115-0.0247-0.28053-0.17881-0.57888-0.46248-0.89507-0.27365-0.3126-0.65666-0.5566-1.149-0.73197l-0.52753-0.1879 0.19864-0.55768 9.9327 3.5379-0.19864 0.55768c-0.77154-0.2182-1.3367-0.30059-1.6953-0.24719-0.34511 0.0469-0.66247 0.22263-0.95206 0.52711-0.15846 0.1587-0.37011 0.60984-0.63494 1.3534l-1.5139 4.2504c-1.5139 0.11751-3.0311 0.0696-4.5517-0.1436-1.5142-0.19963-3.0298-0.56966-4.5471-1.1101-1.9393-0.69076-3.459-1.5264-4.5591-2.5071-1.0864-0.98709-1.9699-2.0831-2.6504-3.2879-0.66689-1.2113-1.0852-2.453-1.2549-3.725-0.20947-1.6372-0.008-3.3149 0.60383-5.0332 1.0952-3.0748 3.1006-5.2875 6.0161-6.6382 2.9156-1.3507 6.0112-1.4426 9.287-0.27586 1.0149 0.36151 1.9006 0.76758 2.6573 1.2182 0.41347 0.23788 1.0446 0.7231 1.8933 1.4557 0.86232 0.72613 1.3839 1.1214 1.5648 1.1858 0.28132 0.10024 0.57836 0.0928 0.89113-0.0223 0.3163-0.1251 0.67694-0.43825 1.0819-0.93943l0.55768 0.19864m15.318 24.587-0.0887 0.58532-11.216-1.699 0.0887-0.58533 0.71187 0.10784c0.62224 0.0943 1.14 0.0594 1.5532-0.10455 0.29657-0.10612 0.54583-0.32727 0.7478-0.66349 0.15435-0.23553 0.313-0.89117 0.47596-1.9669l2.1376-14.111c0.16614-1.0968 0.21197-1.7911 0.13751-2.0829-0.0745-0.29175-0.27583-0.56499-0.60405-0.81971-0.31608-0.26363-0.77468-0.44098-1.3758-0.53206l-0.71188-0.10783 0.0887-0.58533 11.216 1.699-0.0887 0.58532-0.71187-0.10783c-0.62224-0.0942-1.14-0.0594-1.5532 0.10455-0.29658 0.10613-0.55112 0.32649-0.76362 0.66108-0.15437 0.23556-0.31302 0.89119-0.47596 1.9669l-2.1376 14.111c-0.16617 1.0968-0.212 1.7911-0.13752 2.0829 0.085 0.29337 0.28556 0.57189 0.60164 0.83553 0.32822 0.2547 0.7929 0.42758 1.394 0.51865l0.71188 0.10783m29.114-7.0721-0.42685 7.6477-19.239 0.98164-0.0302-0.59123 0.71906-0.0367c0.62851-0.0321 1.1288-0.16974 1.5009-0.41302 0.26935-0.16327 0.46937-0.42981 0.60003-0.79962 0.10413-0.26164 0.12847-0.93575 0.073-2.0223l-0.72726-14.253c-0.0565-1.1079-0.15045-1.7973-0.28175-2.0683-0.13132-0.27097-0.38324-0.49843-0.75576-0.68237-0.36241-0.1951-0.84722-0.27718-1.4544-0.24621l-0.71907 0.0367-0.0302-0.59124 11.553-0.58946 0.0302 0.59123-0.94278 0.0481c-0.62853 0.032-1.1288 0.16977-1.5009 0.41302-0.26938 0.16329-0.47471 0.4301-0.61601 0.80043-0.10415 0.26166-0.12849 0.93578-0.073 2.0224l0.70442 13.806c0.0565 1.1079 0.15659 1.813 0.30019 2.1154 0.14305 0.29176 0.4048 0.50269 0.78527 0.63281 0.2712 0.0823 0.91814 0.0974 1.9408 0.0452l1.8056-0.0922c1.1505-0.0587 2.0989-0.31003 2.8453-0.75397 0.74633-0.44394 1.3742-1.1168 1.8836-2.0186 0.52-0.90233 0.98687-2.2185 1.4006-3.9485l0.65515-0.0334m21.045-3.6512-7.3433 2.1937-0.26931 2.2847c-0.0847 0.76003-0.0613 1.3598 0.0699 1.7993 0.17402 0.58256 0.53733 0.9416 1.0899 1.0771 0.3248 0.0811 1.0411 0.0007 2.1489-0.24118l0.16945 0.56723-6.9141 2.0655-0.16945-0.56723c0.7125-0.33531 1.2341-0.82511 1.5649-1.4694 0.3277-0.65451 0.60753-1.8792 0.83949-3.674l2.48-18.809 0.29128-0.087 12.589 14.808c1.1978 1.4011 2.0893 2.2425 2.6744 2.5241 0.44212 0.21303 0.98765 0.25044 1.6366 0.11224l0.16945 0.56723-10.057 3.0043-0.16945-0.56722 0.41392-0.12366c0.80739-0.24119 1.341-0.52307 1.6009-0.84563 0.17598-0.23068 0.21819-0.49934 0.1266-0.80596-0.055-0.18395-0.14211-0.36387-0.26144-0.53975-0.0479-0.0858-0.31573-0.42333-0.8034-1.0124l-1.8778-2.2611m-0.86014-0.97875-5.2355-6.2342-1.05 8.112 6.2855-1.8777m27.726-28.253 2.7806 5.1719-0.50733 0.27276c-0.94213-1.0315-1.7353-1.7071-2.3795-2.0269-0.64926-0.3291-1.3767-0.47693-2.1822-0.44352-0.44793 0.0228-1.1182 0.27421-2.0106 0.75404l-1.4233 0.76524 7.9252 14.741c0.5253 0.97708 0.9053 1.56 1.14 1.7487 0.24406 0.18365 0.57161 0.28609 0.98268 0.30729 0.41538 0.007 0.89554-0.13632 1.4404-0.42929l0.63416-0.34095 0.28033 0.52141-10.006 5.3794-0.28034-0.52142 0.63415-0.34095c0.55429-0.29802 0.94752-0.63659 1.1797-1.0157 0.17354-0.26285 0.24491-0.59187 0.2141-0.98707-0.0179-0.28103-0.28444-0.90069-0.79964-1.859l-7.9252-14.741-1.381 0.74251c-1.2871 0.69202-2.0754 1.4671-2.3649 2.3251-0.40821 1.2004-0.34152 2.5634 0.20005 4.0888l-0.5355 0.28791-2.7806-5.1719 17.164-9.2284m13.014-7.7159 5.3186 7.051 0.34489-0.26016c1.0985-0.82861 1.6346-1.7741 1.6082-2.8364s-0.47893-2.3176-1.3576-3.7659l0.4854-0.36615 6.841 9.0692-0.4854 0.36614c-0.84731-0.91072-1.6747-1.5559-2.4821-1.9356-0.79893-0.38605-1.4958-0.52173-2.0907-0.40704-0.60131 0.10621-1.315 0.47084-2.141 1.0939l3.6807 4.8795c0.71943 0.95376 1.1978 1.5082 1.435 1.6632 0.24574 0.14866 0.53069 0.20761 0.85489 0.17684 0.32417-0.0307 0.73322-0.23242 1.2271-0.60498l1.0347-0.78045c1.618-1.2204 2.6297-2.5715 3.0352-4.0532 0.41402-1.4881 0.25581-3.1591-0.47461-5.0131l0.47261-0.3565 3.3736 6.0931-14.971 11.292-0.3565-0.47262 0.5748-0.43358c0.50243-0.37899 0.83948-0.77352 1.0112-1.1836 0.13147-0.28623 0.14762-0.61908 0.0484-0.99855-0.0605-0.27502-0.41833-0.84683-1.0735-1.7154l-8.5946-11.394c-0.59095-0.78343-0.97516-1.2485-1.1526-1.3952-0.30998-0.2338-0.64095-0.34488-0.99292-0.33327-0.50345 0.006-1.0362 0.22048-1.5982 0.64441l-0.5748 0.43358-0.35651-0.47261 14.498-10.936 3.8637 5.1222-0.48539 0.36614c-1.1912-1.0655-2.218-1.7005-3.0805-1.9051-0.85392-0.21096-1.786-0.13586-2.7962 0.22531-0.59251 0.20645-1.5445 0.80428-2.8559 1.7935l-1.7883 1.3489"/> + <path id="path2329" d="m664.42 374.87c70.909 57.515 140.41 58.57 208.41 0" fill="none"/> + </g> + </g> +</svg> diff --git a/s/flag/vn.svg b/s/flag/vn.svg new file mode 100755 index 0000000..c6a91fd --- /dev/null +++ b/s/flag/vn.svg @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3728"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs380"> + <clipPath id="clipPath4024" clipPathUnits="userSpaceOnUse"> + <rect id="rect4026" fill-opacity="0.67" height="512" width="682.67" y=".0000024116" x="-85.334"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath4024)" transform="matrix(.9375 0 0 .9375 80.001 -.0000022609)"> + <rect id="rect149" height="512" width="768" y=".0000024116" x="-128" stroke-width="1pt" fill="#ec0015"/> + <path id="path205" d="m349.59 381.05-89.576-66.893-89.137 67.55 33.152-109.77-88.973-67.784 110.08-0.94507 34.142-109.44 34.873 109.19 110.08 0.14401-88.517 68.423 33.884 109.53z" stroke-width=".11287" fill="#ff0"/> + </g> +</svg> diff --git a/s/flag/vu.svg b/s/flag/vu.svg new file mode 100755 index 0000000..a201022 --- /dev/null +++ b/s/flag/vu.svg @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3742"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath3976" clipPathUnits="userSpaceOnUse"> + <rect id="rect3978" fill-opacity="0.67" height="512" width="682.67" y="-.000016192" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3976)" transform="matrix(.93750 0 0 .93750 0 .000015180)"> + <g id="g579" fill-rule="evenodd" transform="matrix(1.0321 0 0 1.0321 0 -.000016001)"> + <path id="path553" d="m0 0 336.61 212.6h407.48v70.867h-407.48l-336.61 212.59v-496.06z"/> + <path id="path561" d="m0 478.35l343.7-219.68h400.39v-21.259h-400.39l-343.7-219.69v31.886l322.44 198.42-322.44 198.43v31.889z" fill="#ff0"/> + <path id="path562" d="m0 496.06l343.7-219.68h400.39v219.68h-744.09z" fill="#40aa40"/> + <path id="path566" d="m0 0 343.7 219.68h400.39v-219.68h-744.09z" stroke-width="1pt" fill="#ce0000"/> + <path id="path574" d="m392.5-118.94c13.385-4.211 18.52-3.257 20-22.5-2.636-7.909-2.5-20.974-2.5-32.5 0.183-15.174 0.576-21.434 15-17.501 8.846 1.923 22.88-17.5 35-17.5 18.565-0.223 9.805 2.988 15-10-2.244-17.958-8.364-12.5-25-12.5-11.666 0-25.833 20-37.5 20-7.722-15.085-3.189-19.501 5-27.5 10.929 0 27.928-18.964 35-22.5 11.096-3.589 20.523-7.342 15-20-1.243-10.364 0.853-3.859-7.5-7.5-11.666 0-25.833 20-37.5 20-15.611-0.578-15.65-3.812-17.5-17.5 5.658-7.92 13.253-9.491 27.5-10 15.081 0 23.424-19.691 32.5-25 2.721-11.734 10.763-19.38-2.5-25-8.813-4.935-12.053-4.315-25 0-16.688 0-23.238 19.408-35 12.5 1.379-15.166 6.596-14.81 22.5-15 8.82-1.917 23.145-23.49 30-27.5 8.728-7.84 10.685 3.869 2.5-20-9.356-7.312-17.481 16.63-30 20-9.502 6.449-19.905 7.966-27.5 0-8.759-11.47-1.954-16.132 10-20 10.357-3.618 24.543-23.521 32.5-27.5 14.718-1.32 16.94-4.867 17.5-20-3.243-15.835-6.42-6.925-22.5-7.5-11.666 0-25.833 20-37.5 20-2.14-5.351-3.894-12.307 0-17.5 9.123-3.041 15.922-6.997 30-7.5 12.737-1.919 17.747-25.492 22.5-35-7.187-6.229-15.829 12.5-30 12.5-8.979 0-19.693 0.684-25-2.5-3.999-15.395-6.296-13.323 12.5-17.5 7.043-6.007 21.24-13.307 2.5-20-3.005-1.093-10.727 3.888-20 5-12.232 0-24.163-0.209-35 2.5-7.242 2.69-18.163 6.097-22.5 10 5.214 7.667 11.31 11.074 17.5 20 8.53 3.121 16.791-1.027 20 0-4.141 10.354-11.153 9.826-20 15-15.363 0-22.929-20.938-32.5-10 7.026 3.639 21.295 23.824 30 25 8.203 0 17.952-0.911 22.5 2.5-0.776 15.713-4.761 16.936-20 17.5-13.105 0-22.666-17.487-30-12.5-5.384 10.768-5.754 10.594 2.5 17.5 8.673 10.146 14.556 27.5 30 27.5 18.754 0.224 19.771-1.492 20 17.5-1.981 10.346-6.942 11.233-17.5 12.5-12.436 0-23.825-18.004-35-20-17.527 0.877-9.871-2.821-15 10 3.894 10.974 8.211 12.142 20 17.5 8.356 2.786 21.644 20.286 30 17.5 16.184-1.05 15.777-2.331 10 15-10.527 5.966-13.397 10.634-27.5 7.5-14.538-0.519-22.176-21.564-35-15-11.231 6.912-13.609 8.487-2.5 20 10.507 9.757 18.542 29.535 35 30 13.597-1.869 19.868-5.498 27.5-2.5-1.586 3.967-2.471 14.129-5 17.5-7.162 4.325-17.971 4.418-27.5 7.5-12.844 1.736-13.641-7.5-25-7.5-7.52 7.171-15.439-2.661-12.5 10 8.384 7.277 13.155 20 27.5 20 11.667 0 25.834 5 37.5 5 16.197 3.6 13.635 7.038 17.5 22.5-7.792 4.314-20.341 5-32.5 5-11.666 0-23.333-17.5-35-17.5-11.363-1.623-12.867-7.279-15 10 5.323 8.684 7.774 8.231 15 12.5 6.818 8.148 15.881 25.001 30 25.001 11.346-3.742 25.427-5.419 35-7.501 12.95 2.816 5.274 4.958 5 20.001 2.911 13.388 4.316 15.29 0 25-1.503 11.274-1.849 16.062 12.5 22.5z" transform="matrix(.071273 .048935 -.055755 .093547 58.22 250.25)" fill="#ff0"/> + <path id="path576" d="m392.5-118.94c13.385-4.211 18.52-3.257 20-22.5-2.636-7.909-2.5-20.974-2.5-32.5 0.183-15.174 0.576-21.434 15-17.501 8.846 1.923 22.88-17.5 35-17.5 18.565-0.223 9.805 2.988 15-10-2.244-17.958-8.364-12.5-25-12.5-11.666 0-25.833 20-37.5 20-7.722-15.085-3.189-19.501 5-27.5 10.929 0 27.928-18.964 35-22.5 11.096-3.589 20.523-7.342 15-20-1.243-10.364 0.853-3.859-7.5-7.5-11.666 0-25.833 20-37.5 20-15.611-0.578-15.65-3.812-17.5-17.5 5.658-7.92 13.253-9.491 27.5-10 15.081 0 23.424-19.691 32.5-25 2.721-11.734 10.763-19.38-2.5-25-8.813-4.935-12.053-4.315-25 0-16.688 0-23.238 19.408-35 12.5 1.379-15.166 6.596-14.81 22.5-15 8.82-1.917 23.145-23.49 30-27.5 8.728-7.84 10.685 3.869 2.5-20-9.356-7.312-17.481 16.63-30 20-9.502 6.449-19.905 7.966-27.5 0-8.759-11.47-1.954-16.132 10-20 10.357-3.618 24.543-23.521 32.5-27.5 14.718-1.32 16.94-4.867 17.5-20-3.243-15.835-6.42-6.925-22.5-7.5-11.666 0-25.833 20-37.5 20-2.14-5.351-3.894-12.307 0-17.5 9.123-3.041 15.922-6.997 30-7.5 12.737-1.919 17.747-25.492 22.5-35-7.187-6.229-15.829 12.5-30 12.5-8.979 0-19.693 0.684-25-2.5-3.999-15.395-6.296-13.323 12.5-17.5 7.043-6.007 21.24-13.307 2.5-20-3.005-1.093-10.727 3.888-20 5-12.232 0-24.163-0.209-35 2.5-7.242 2.69-18.163 6.097-22.5 10 5.214 7.667 11.31 11.074 17.5 20 8.53 3.121 16.791-1.027 20 0-4.141 10.354-11.153 9.826-20 15-15.363 0-22.929-20.938-32.5-10 7.026 3.639 21.295 23.824 30 25 8.203 0 17.952-0.911 22.5 2.5-0.776 15.713-4.761 16.936-20 17.5-13.105 0-22.666-17.487-30-12.5-5.384 10.768-5.754 10.594 2.5 17.5 8.673 10.146 14.556 27.5 30 27.5 18.754 0.224 19.771-1.492 20 17.5-1.981 10.346-6.942 11.233-17.5 12.5-12.436 0-23.825-18.004-35-20-17.527 0.877-9.871-2.821-15 10 3.894 10.974 8.211 12.142 20 17.5 8.356 2.786 21.644 20.286 30 17.5 16.184-1.05 15.777-2.331 10 15-10.527 5.966-13.397 10.634-27.5 7.5-14.538-0.519-22.176-21.564-35-15-11.231 6.912-13.609 8.487-2.5 20 10.507 9.757 18.542 29.535 35 30 13.597-1.869 19.868-5.498 27.5-2.5-1.586 3.967-2.471 14.129-5 17.5-7.162 4.325-17.971 4.418-27.5 7.5-12.844 1.736-13.641-7.5-25-7.5-7.52 7.171-15.439-2.661-12.5 10 8.384 7.277 13.155 20 27.5 20 11.667 0 25.834 5 37.5 5 16.197 3.6 13.635 7.038 17.5 22.5-7.792 4.314-20.341 5-32.5 5-11.666 0-23.333-17.5-35-17.5-11.363-1.623-12.867-7.279-15 10 5.323 8.684 7.774 8.231 15 12.5 6.818 8.148 15.881 25.001 30 25.001 11.346-3.742 25.427-5.419 35-7.501 12.95 2.816 5.274 4.958 5 20.001 2.911 13.388 4.316 15.29 0 25-1.503 11.274-1.849 16.062 12.5 22.5z" transform="matrix(.073291 -.056133 .063689 .096599 95.966 293.04)" fill="#ff0"/> + <path id="path577" d="m283.46-177.16c0-17.717-2.5-35.433 0-35.433 141.73 0 177.16-106.3 177.16-177.17 0-70.866-49.232-141.73-141.73-141.73-106.3 0-141.73 69.232-141.73 141.73 0 70.866 53.15 124.02 106.3 124.02 70.866 0 88.582-17.717 141.73-88.583-17.717 88.583-106.3 124.02-141.73 124.02-70.867 0-141.73-53.15-141.73-159.45 0-88.582 53.15-177.16 177.17-177.16 106.3 0 177.16 88.583 177.16 177.16 0 124.02-88.583 212.6-212.6 212.6z" transform="matrix(.32 0 0 .29091 4.2521 356.26)" fill="#ff0"/> + </g> + </g> +</svg> diff --git a/s/flag/wf.svg b/s/flag/wf.svg new file mode 100755 index 0000000..f3c3b13 --- /dev/null +++ b/s/flag/wf.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3750"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="matrix(1.25 0 0 .9375 0 -184.37)"> + <rect id="rect171" height="512" width="512" y="196.66" x="0" fill="#fff"/> + <rect id="rect403" height="512" width="170.67" y="196.66" x="0" fill="#00267f"/> + <rect id="rect135" height="512" width="170.67" y="196.66" x="341.33" fill="#f31830"/> + </g> +</svg> diff --git a/s/flag/ws.svg b/s/flag/ws.svg new file mode 100755 index 0000000..080d7e8 --- /dev/null +++ b/s/flag/ws.svg @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3764"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt"> + <rect id="rect551" height="480" width="640" y=".0000047684" x="0" fill="#f00"/> + <g id="g3051" transform="scale(1.3126)"> + <rect id="rect552" height="119.77" width="239.53" y=".00000118" x="0" fill="#00006b"/> + <g id="g4187" transform="matrix(.42837 0 0 .42837 114.71 5.6278)" fill="#fff"> + <polygon id="polygon553" transform="matrix(.62565 0 0 .65463 -132.68 100.69)" d="m 246.7536,218.4237 -35.44182,-22.86769 -33.97697,23.2468 10.79635,-40.77369 -32.60848,-25.13035 42.11433,-2.33183 13.82381,-38.77821 15.23175,39.33253 41.15207,1.1641 -32.7006,26.64067 z" points="246.75 218.42 211.31 195.56 177.34 218.8 188.13 178.03 155.52 152.9 197.64 150.57 211.46 111.79 226.69 151.12 267.84 152.28 235.14 178.93"/> + <polygon id="polygon555" transform="matrix(1.1939 0 0 1.2544 -278.4 12.56)" d="m 248.18091,42.711273 -14.86513,-9.087931 -14.58304,9.018406 4.04956,-16.945898 -13.08343,-11.082461 17.36789,-1.385211 6.49705,-15.8677433 6.68439,16.0897913 17.09882,1.275656 -13.23672,11.329248 z" points="248.18 42.711 233.32 33.623 218.73 42.642 222.78 25.696 209.7 14.613 227.07 13.228 233.56 -2.6396 240.25 13.45 257.35 14.726 244.11 26.055"/> + <polygon id="polygon556" transform="matrix(1.1891 0 0 1.2384 -355.61 77.249)" d="m 248.18089,42.613914 -14.51812,-9.565093 -14.83744,9.562826 4.61059,-16.763332 -13.67981,-11.156171 17.36763,-0.795215 6.38286,-16.4577199 6.12319,16.2718619 17.62463,0.984741 -13.58329,10.851779 z" points="248.18 42.614 233.66 33.049 218.82 42.612 223.44 25.848 209.76 14.692 227.12 13.897 233.51 -2.5608 239.63 13.711 257.25 14.696 243.67 25.548"/> + <polygon id="polygon557" transform="matrix(1.1148 0 0 1.161 -180.05 66.37)" d="m 248.24168,42.529491 -14.86174,-9.204036 -14.45554,9.31792 4.16103,-16.978562 -13.32888,-10.868637 17.4334,-1.289293 6.21784,-16.0351067 6.61341,16.1817357 17.17171,0.958396 -13.34609,11.290155 z" points="248.24 42.53 233.38 33.326 218.92 42.643 223.08 25.665 209.76 14.796 227.19 13.507 233.41 -2.5282 240.02 13.654 257.19 14.612 243.85 25.902"/> + <polygon id="polygon558" transform="matrix(.74318 0 0 .77399 -134.25 129.31)" d="m 248.40399,42.789136 -14.86166,-8.88744 -14.81471,8.976278 3.85995,-16.880653 -13.11494,-11.315799 17.24724,-1.545378 6.70923,-15.9698264 6.79943,15.9255574 17.26147,1.445903 -13.04496,11.387913 z" points="248.4 42.789 233.54 33.902 218.73 42.878 222.59 25.997 209.47 14.682 226.72 13.136 233.43 -2.8337 240.23 13.092 257.49 14.538 244.44 25.926"/> + </g> + </g> + </g> +</svg> diff --git a/s/flag/ye.svg b/s/flag/ye.svg new file mode 100755 index 0000000..3aebffa --- /dev/null +++ b/s/flag/ye.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg3466" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3772"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" transform="matrix(.86011 0 0 .96762 0 .000060435)" stroke-width="1pt"> + <rect id="rect3472" height="488.61" width="744.09" y="-.000015260" x="0" fill="#fff"/> + <rect id="rect3470" height="162.64" width="744.09" y="-0.000062" x="0" fill="#f10600"/> + <rect id="rect3471" height="162.64" width="744.09" y="333.42" x="0"/> + </g> +</svg> diff --git a/s/flag/yt.svg b/s/flag/yt.svg new file mode 100755 index 0000000..e763317 --- /dev/null +++ b/s/flag/yt.svg @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg378" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3780"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <g id="flag" fill-rule="evenodd" stroke-width="1pt" transform="scale(.60207 .67733)"> + <rect id="rect171" height="708.66" width="1063" y="0" x="0" fill="#fff"/> + <rect id="rect403" height="708.66" width="354.33" y="0" x="0" fill="#00267f"/> + <rect id="rect135" height="708.66" width="354.33" y="0" x="708.66" fill="#f31830"/> + </g> +</svg> diff --git a/s/flag/za.svg b/s/flag/za.svg new file mode 100755 index 0000000..0817e19 --- /dev/null +++ b/s/flag/za.svg @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<!-- Creative Commons Public Domain --> +<!-- +<rdf:RDF xmlns="http://web.resource.org/cc/" +xmlns:dc="http://purl.org/dc/elements/1.1/" +xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <Work rdf:about=""> + <dc:title>SVG graphic of South African Flag</dc:title> + + <dc:rights> + <Agent> + <dc:title>Farrel Lifson</dc:title> + </Agent> + </dc:rights> + + <license + rdf:resource="http://web.resource.org/cc/PublicDomain" /> + </Work> + + <License rdf:about="http://web.resource.org/cc/PublicDomain"> + <permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + + <permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + + <permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + </License> +</rdf:RDF> +--> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1" y="0" x="0" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3794"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath3532" clipPathUnits="userSpaceOnUse"> + <rect id="rect3534" fill-opacity="0.67" height="512.01" width="682.68" y="-.012254" x="-71.873"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3532)" transform="matrix(.93748 0 0 .93748 67.379 .011488)"> + <g id="g603" fill-rule="evenodd" stroke-width="1pt" transform="matrix(2.0478 0 0 2.0484 -148.57 -1592.2)"> + <path id="path581" d="m37.451 976.39v-148.12l110.28 74.022-110.28 74.103z"/> + <path id="path597" d="m112.7 1027.3 123.81-83.306h175.98v83.306h-299.79z" fill="#00c"/> + <path id="path598" d="m104.74 777.32 307.74 0.006v83.32h-175.98s-130.11-84.15-131.76-83.326z" fill="#f00"/> + <path id="path599" d="m37.451 808.57v19.688l110.28 74.022-110.28 74.103v19.687l138.9-93.79-138.9-93.71z" fill="#fc0"/> + <path id="path600" d="m37.451 808.57v-31.25h46.338l147.14 99.531h181.55v50.899h-181.55l-147.14 99.517h-46.338v-31.197l138.9-93.79-138.9-93.71z" fill="#093"/> + <path id="path601" d="m83.789 777.32h28.906l123.81 83.32h175.98v16.211h-181.55l-147.14-99.531z" fill="#fff"/> + <path id="path602" d="m83.789 1027.3h28.906l123.81-83.306h175.98v-16.211h-181.55l-147.14 99.517z" fill="#fff"/> + </g> + </g> +</svg> diff --git a/s/flag/zm.svg b/s/flag/zm.svg new file mode 100755 index 0000000..8cf31c9 --- /dev/null +++ b/s/flag/zm.svg @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Sodipodi ("http://www.sodipodi.com/") --> +<svg id="svg548" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3819"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs550"> + <clipPath id="clipPath3439" clipPathUnits="userSpaceOnUse"> + <rect id="rect3441" fill-opacity="0.67" height="512" width="682.67" y=".000014203" x="-170.67"/> + </clipPath> + </defs> + <g id="flag" fill-rule="evenodd" clip-path="url(#clipPath3439)" transform="matrix(.9375 0 0 .9375 160 -.000013315)"> + <rect id="rect626" height="512" width="768" y=".000014203" x="-256" stroke-width="1pt" fill="#198a00"/> + <rect id="rect616" height="328.03" width="90.126" y="183.94" x="421.87" stroke-width="1pt" fill="#ef7d00"/> + <rect id="rect617" height="328.1" width="90.029" y="183.78" x="331.85" stroke-width="1pt"/> + <rect id="rect618" height="328.02" width="91.935" y="183.98" x="239.95" stroke-width="1pt" fill="#de2010"/> + <g id="g600" stroke="#000" fill="#ef7d00" transform="matrix(.99757 0 0 .99757 -222.45 4.5818)"> + <path id="path564" stroke-linejoin="round" d="m292.6 63.483s45.525-19.453 49.936-23.464c2.006 2.4066-18.25 26.873-57.557 35.898 35.697-8.423 66.181-34.895 72.398-34.093 1.805 0.4011 1.403 25.871-80.42 47.931 56.554-14.841 89.444-42.115 89.043-39.107 0.401 0.6016-5.615 21.458-55.15 37.703 13.838-3.2092 51.34-26.071 50.939-21.659 1.203 1.8049-36.299 49.936-104.08 34.294 54.148 14.038 89.243-19.855 94.257-19.253 1.003 0.2005-10.028 29.681-78.213 31.486 32.69-3.409 23.263-0.201 23.263-0.201s-19.253 15.041-42.516 4.814c18.25 5.014 20.255 5.214 20.656 6.818-1.203 2.005-16.244 5.014-30.683-2.808 11.631 4.813 22.06 5.616 22.26 7.421-0.2 0.601-7.62 4.813-14.238 1.805-6.618-3.009-67.585-40.511-67.585-40.511l103.88-28.478 3.81 1.4038z" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-width="1.3333"/> + <path id="path560" stroke-linejoin="round" d="m170.47 164.93c-9.135 0-9.387 8.129-9.387 8.129s-0.754 0.587-0.251 4.527c1.508-2.683 2.263-3.521 2.263-3.521 1.006 0.168 5.196 1.425 11.817-3.771-6.035 6.285-2.43 8.632-2.43 8.632s-1.425 4.945 3.184 5.951c-1.424-2.012-0.586-3.772-0.586-3.772s6.453-0.67 6.034-8.548c0.252 7.123 4.107 8.883 4.107 8.883s0 3.939 4.19 4.275c-2.262-2.012-1.76-5.113-1.76-5.113s5.448-3.939 0.838-10.644c2.766-1.593 5.029-6.034 5.029-6.034s-3.771-1.593-5.531-2.933c-0.839-1.761-0.084-11.399-0.084-11.399l-2.263-12.488-6.454 19.445c0.251-2.766 0.419 8.381-8.716 8.381z" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-width="1.3333"/> + <path id="path563" stroke-linejoin="round" d="m215.59 136.88c0.2 0.201 6.819 7.622 13.236 7.22 2.406-2.005-5.014-6.417-5.014-7.42 2.607 2.407 13.637 11.832 20.657 8.423 2.807-4.011-5.014-3.409-13.638-14.239 6.016 4.011 21.058 12.835 28.077 9.426 3.009-3.209-15.643-13.237-21.86-21.058l-16.043-8.222-21.86 17.849 16.445 8.021z" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-width="1.3333"/> + <path id="path562" stroke-linejoin="round" d="m190.92 75.917s7.42-4.412 37.101-2.206c3.209 0.401 20.255-5.8158 25.67-7.6207 8.623-1.6044 36.098-7.6209 43.519-13.236 5.214-0.6016-1.405 9.6263-8.022 12.033-7.02 3.2088-32.489 12.033-41.514 10.83 10.83 0.2006 4.814 9.0246-13.236 4.8131 8.624 4.8131 5.415 5.6153 5.415 5.6153s-15.241 0.8022-19.252-2.6071c10.228 3.8104 6.016 5.2142 6.016 5.2142s-10.428 1.0027-15.242-1.2033c7.42 2.206 3.61 3.6099 3.61 3.6099s-6.016 1.0027-11.03-0.8022c-5.013-1.8049-12.634-14.439-13.035-14.439z" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-linecap="round" stroke-width="1.3333"/> + <path id="path561" stroke-linejoin="round" d="m202.82 141.04 1.09 19.612s-0.587 1.006-1.09 1.593c-0.503 0.586-13.913-2.096-12.069 8.129 0 4.191 0.084 5.28 2.934 7.627-0.755-2.766-0.503-4.693-0.503-4.693s3.771 2.263 7.459-3.939c-2.514 6.118-0.755 8.297-0.168 8.465 0.587 1.09-1.005 6.034 4.023 5.95-1.927-1.844-1.005-4.526-1.005-4.526s5.28-0.837 3.436-10.392c1.928-1.928 2.682-0.084 2.682-0.084s0.586 5.699 5.196 4.526c2.096 1.173-0.335 4.274-0.335 4.274s3.352 0.084 4.358-2.766c1.006-2.849 2.179-7.962-3.353-10.057-0.67-2.011 2.18-2.179 2.18-2.179s3.52 1.173 4.525 2.933c1.006 1.76 0.671-4.609-3.687-5.28-5.364-0.168-5.699-1.257-5.699-1.508 0-0.252-0.922-14.248-1.341-18.271l-8.633 0.586z" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-width="1.3333"/> + <path id="path553" stroke-linejoin="round" d="m221.48 157.75c0.066-0.899-9.15-13.308-6.812-14.912 2.337 0.481 6.17 6.125 9.275 4.293-0.941-2.2-3.715-0.961-6.865-6.593-3.149-6.367-3.609-15.925-14.639-26.351 7.141 11.033 23.34 17.5 24.026 14.283s-14.264-15.382-13.498-18.314c2.973 6.021 17.984 19.437 29.044 18.326 0.758-2.583-9.057-7.796-11.583-12.664-7.065-4.746-25.972-21.044-26.351-24.823-6.88-10.034-11.175-13.07-13.175-14.226-0.773-0.9105-0.967-1.7809-1.118-2.3343-4.271-10.069 1.386-13.338 4.697-13.822 2.725-0.3028 3.516 0.1051 5.477-0.8445-2.322-0.9083-4.643-1.7578-6.964-2.6662 3.027 2.2204 10.759 0.2656 9.083 6.661 3.39-1.2898 10.603-9.8713-8.175-11.808-6.111-7.0106-31.236-11.04-37.525 19.558 0.502 0.429 0.765 0.7815 2.363 1.9749-7.94-3.837-29.34-6.803-37.05-8.049-20.84-6.012-42.48-20.5-44.56-18.718-2.782 1.234 12.589 15.536 11.79 15.852-13.328-7.771-25.505-13.277-36.834-18.288-7.971-2.979-15.954-9.916-16.835-8.596-2.933 6.076 12.779 21.352 15.702 23.148 2.923 1.719 25.91 12.382 25.571 12.515-34.622-15.715-40.427-18.564-42.164-20.375-3.052-0.688-10.486-10.724-12.557-10.079-1.1341 1.1142 1.1405 16.973 17.662 24.092 2.6929 1.9626 35.414 13.701 35.093 14.621-0.08 0.23-37.477-15.435-38.93-15.995-7.21-2.828-16.057-12.738-17.711-11.623-1.5787 1.0112 4.0784 11.738 11.364 15.102 3.8188 1.6853 18.467 8.9405 31.665 13.558 0.8423 0.3046-23.722-9.3154-35.533-14.251-5.3549-2.9721-7.8767-6.6767-8.6924-5.8796-1.2065 0.797 1.9493 16.643 39.902 25.584 0.9999 0.4256 13.36-2.928 12.749-2.4832-0.1528 0.1112-12.273 2.7499-13.453 2.6597-1.0503-0.1604-7.6904 0.7861-7.8105 1.1302-0.4012 1.0719 2.4058 6.7457 22.002 5.5625 2.5052-0.1506 16.1-4.9509 14.958-3.9183-0.5711 0.5166-18.513 6.3466-19.879 6.4616-1.1868 0.1677-7.4897 0.8268-7.7227 1.4972-0.2846 0.9143 4.6653 4.9524 15.189 5.5994 9.3176 0.495 27.023-5.6933 26.668-5.2921-0.3552 0.4011-17.068 6.1281-17.506 6.4771-0.6048 0.342-6.7248 0.674-6.9396 1.144-0.4987 1.169 8.8282 9.891 36.412 0.583-2.771 3.743-16.141 6.303-16.122 6.977-0.062 0.489 2.9457 3.395 7.6202 4.435 2.337 0.52 5.537 0.414 8.46-0.048 5.25-1.051 10.783-3.128 17.813-9.625 0.84 2.039-17.561 11.351-16.697 12.239 3.99 3.7 17.244-0.477 18.112-0.962 0.869-0.486 25.523-14.388 25.438-15.997 0.383 2.062-31.785 19.541-31.438 20.258 2.065 3.295 13.054-0.173 13.579-0.476 0.524-0.302 14.024-7.595 14.394-7.81 0.369-0.215-15.866 9.502-14.42 10.981-0.699 6.31 25.355-4.355 27.397-5.683 1.021-0.664-12.516 5.952-12.552 9.095 4.359 7.37 18.317 5.032 20.47 3.411 1.077-0.811-1.267 5.475-0.512 4.904 0.263-0.118 3.036-3.397 4.102-5.77-0.34 2.059-1.87 5.303-2.763 9.025-0.894 3.722-1.15 7.922-2.377 12.384-0.281 1.96 8.601-3.832 7.311-17.678 0.76 7.202-2.805 20.669-1.872 21.369 1.866 1.4 7.025-6.707 7.546-12.189 1.532 2.769 4.747 8.549 7.513 9.879-0.301-4.189 0.053-3.997-1.192-8.114 0.718-5.466 0.818-13.031 0.992-21.573 7.516 14.398 10.514 20.478 8.414 31.504 2.235 0.932 5.805-7.696 5.517-12.137 2.87 12.34 15.258 14.19 15.455 13.831z" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-linecap="round" stroke-width="1.0667pt"/> + <path id="path555" stroke-linejoin="round" d="m96.289 66.342s-5.1157 3.8652-11.482 3.6379c1.5915 6.3662 14.779 1.4779 14.779 1.4779s-6.3662 7.0483-10.914 8.1851c2.7284 2.2736 14.21 1.4779 16.143 0.3411 1.932-1.1369 5.343-5.5705 5.343-5.5705s-11.823 13.642-13.529 13.528c-0.2274 1.5915 12.392 1.0231 15.007-1.3642 2.614-2.3874 9.208-5.9115 9.208-5.9115s-17.28 12.05-18.076 12.05c6.48 1.7053 19.44-2.0463 27.739-7.162-12.278 8.1852-13.414 9.663-19.667 12.391 5.571 1.2506 8.412 5.0022 27.284-3.1831 10.8-5.1156 16.938-14.438 16.938-14.438-6.707 8.981-17.28 16.598-28.988 24.101-0.683 1.364 12.504 6.934 29.329-10.573" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-linecap="round" stroke-width="1.0667pt"/> + <path id="path556" d="m187.69 104.31s1.137 5.343 5.684 9.436c4.548 4.092 4.889 8.071 4.889 8.071" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-linecap="round" stroke-width="1.0667pt"/> + <path id="path557" d="m185.42 69.525s1.591 4.7746 6.252 7.8441c4.775 3.0694 11.938 12.732 12.506 14.438 0.55 2.0639 3.296 16.939 3.069 18.53" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-linecap="round" stroke-width="1.0667pt"/> + <path id="path558" d="m156.43 76.914c0.341 1.8189-6.708 11.027 2.955 21.827-8.754 10.685-8.753 12.05-8.753 12.05s4.888 2.728 13.642-4.775c14.437 17.735 9.626 25.851 9.626 25.851" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-linecap="round" stroke-width="1.0667pt"/> + <path id="path559" stroke-linejoin="round" d="m172.75 119.35s-1.33-1.905 1.041-9.019c2.135 2.572 4.509 3.121 5.55 4.162 1.04 1.041 11.941 2.619 12.634 9.904" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-linecap="round" stroke-width="1.0667pt"/> + <path id="path552" d="m185.56 52.574c0-0.5352-2.195-5.2452-10.384 0.6423 4.389 0.2675 8.724 2.7831 10.384-0.6423z" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-width="1.0667pt"/> + <path id="path565" stroke-linejoin="round" d="m263.72 74.112c0.401 0.2005 24.467 5.4148 32.489 2.8077-10.228 13.637-30.684 4.412-30.684 4.412 10.027 3.0082 10.429 2.8077 13.637 5.6153 1.003 2.6071-18.45 1.4038-24.868-2.206 17.849 5.6153 18.25 5.2142 18.852 7.4202 0.803 3.0082-29.28-0.8022-31.887-4.8131 8.022 6.217 12.434 7.4203 16.846 10.228-5.415 2.4066-15.442 4.8127-33.893-8.2224 24.266 22.06 46.126 20.656 49.536 24.667-8.423 12.434-41.113-7.42-56.154-17.448-15.041-10.027 32.89 24.266 37.303 23.664-2.207 3.409-18.05 0.401-19.053-1.203" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-width="1.0667pt"/> + <path id="path566" d="m269.94 97.175c-2.807 0.4011-11.23 0.4011-12.433 0.2005" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-linecap="round" stroke-width="1.0667pt"/> + <path id="path554" stroke-linejoin="round" d="m89.241 62.704s18.303 9.663 26.033 8.9809c-2.046 1.9326-5.116 2.7284-5.116 2.7284 1.933 0.7958 7.276 3.6379 15.348 1.8189-1.933 1.9326-4.434 4.0927-4.434 4.0927s6.935 2.6146 14.779-1.478c-2.387 2.9557-3.752 5.1158-3.752 5.1158l5.457 0.341" transform="matrix(.74683 0 0 .74683 457.18 13.745)" stroke-linecap="round" stroke-width="1.0667pt"/> + </g> + </g> +</svg> diff --git a/s/flag/zw.svg b/s/flag/zw.svg new file mode 100755 index 0000000..edad30d --- /dev/null +++ b/s/flag/zw.svg @@ -0,0 +1,52 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape ("http://www.inkscape.org/") --> +<svg id="svg559" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="480" width="640" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <metadata id="metadata3856"> + <rdf:RDF> + <cc:Work rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> + </cc:Work> + </rdf:RDF> + </metadata> + <defs id="defs561"> + <clipPath id="clipPath3283" clipPathUnits="userSpaceOnUse"> + <rect id="rect3285" fill-opacity="0.67" height="512" width="682.67" y=".000016323" x="0"/> + </clipPath> + </defs> + <g id="flag" clip-path="url(#clipPath3283)" transform="matrix(.93750 0 0 .93750 0 -.000015303)"> + <rect id="rect608" fill-rule="evenodd" height="73.143" width="1024" y="438.86" x="0" stroke-width="1pt" fill="#319208"/> + <rect id="rect612" fill-rule="evenodd" height="73.143" width="1024" y="292.57" x="0" stroke-width="1pt" fill="#de2010"/> + <rect id="rect611" fill-rule="evenodd" height="73.143" width="1024" y="365.71" x="0" stroke-width="1pt" fill="#ffd200"/> + <rect id="rect614" fill-rule="evenodd" height="73.143" width="1024" y="146.29" x="0" stroke-width="1pt" fill="#de2010"/> + <rect id="rect615" fill-rule="evenodd" height="73.143" width="1024" y="73.143" x="0" stroke-width="1pt" fill="#ffd200"/> + <rect id="rect616" fill-rule="evenodd" height="73.143" width="1024" y=".00032299" x="0" stroke-width="1pt" fill="#319208"/> + <path id="path623" d="m28.891 0.000016263v512l343.77-256-343.77-256z" fill-rule="evenodd" stroke-width="1pt"/> + <rect id="rect621" fill-rule="evenodd" height="512" width="29.257" y=".00013307" x="0" stroke-width="1pt"/> + <path id="path620" d="m0 0.00021313v512l373.03-256-373.03-256z" fill-rule="evenodd" stroke-width="1pt"/> + <rect id="rect613" fill-rule="evenodd" height="73.143" width="1024" y="219.43" x="0" stroke-width="1pt"/> + <path id="path617" d="m0 0.00015013v512l343.77-256-343.77-256z" fill-rule="evenodd" stroke-width="1pt" fill="#fff"/> + <g id="g584" transform="matrix(1.0321 0 0 1.0321 -510.11 -15.114)"> + <polygon id="polygon583" fill="#d62419" fill-rule="evenodd" transform="matrix(1.0221 .073279 -.073279 1.0221 3.3492 -41.431)" d="m 613.9433,119.5371 31.82993,83.38772 91.91782,-5.79005 -69.47045,56.04029 33.91084,85.62981 -74.76503,-48.75292 -70.95977,58.71219 23.26312,-86.17125 -77.76639,-49.34369 89.14243,-4.50384 z" stroke-width="1pt" points="613.94 119.54 645.77 202.92 737.69 197.14 668.22 253.18 702.13 338.8 627.37 290.05 556.41 348.76 579.67 262.59 501.9 213.25 591.05 208.74"/> + <path id="path564" d="m542.73 175.7c1.606-2.892 1.927-4.499 10.282-8.034 10.925-31.811 38.881-19.279 54.305 24.743 14.138 6.105 98.648 69.085 97.363 72.62-0.643 3.213-11.247 0.643-11.247 0.643s-16.709 71.335-17.03 71.335c-31.17-4.177-79.69-4.82-112.79-4.177 0.321-5.463-8.997-41.131-8.997-41.131s-8.034-2.57 5.462-29.883c14.46-34.382 17.352-90.294-17.351-86.116z" fill-rule="evenodd" stroke="#000" stroke-width="1.0667pt" fill="#f7df00"/> + <path id="path565" d="m571.32 162.84c0 1.9521-1.5825 3.5346-3.5346 3.5346s-3.5346-1.5825-3.5346-3.5346 1.5825-3.5346 3.5346-3.5346 3.5346 1.5825 3.5346 3.5346z" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path566" d="m606.35 192.41s-27.635 15.745-35.668 15.423" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path567" d="m693.43 265.67c-1.928-1.607-102.5-6.427-98.327-40.488" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path568" d="m611.17 266.31s10.925 6.427 20.243-10.282" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path569" d="m623.38 265.99s7.712 7.069 18.959-8.354" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path570" d="m554.94 291.7s7.069 0.964 8.355-3.213" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path571" d="m588.35 333.15c0-0.321-7.069-45.629-7.069-45.629 34.918 3.106 71.121 3.321 104.75 9.319" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path572" d="m584.82 288.16 9.639 11.246 9.962-9.64 8.354 8.998" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path573" d="m615.35 299.09 8.354-7.391 8.998 8.676" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path574" d="m634.3 300.37 9.319-8.354 7.069 8.355" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path575" d="m654.55 300.7 8.355-5.784 7.39 7.069" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path576" d="m676.08 301.66 6.105-5.784" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path577" d="m583.21 298.44 10.283 11.89 10.282-9.319 8.997 9.64 10.283-8.997 8.676 10.282 10.604-8.997s8.033 9.961 8.997 9.961 10.604-8.354 10.604-8.354l9.319 10.282 12.852-10.282" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path578" d="m584.82 310.01s82.903 3.214 96.398 6.427" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path579" d="m598.64 272.42s78.725 4.177 91.257 8.997" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path580" d="m582.57 239.64c0.643 4.82-5.141 21.529-11.246 27.313-8.355 6.748-7.391 20.886-7.391 20.886 0.964 5.784 13.496 5.141 15.103 2.25 1.285-13.175 15.423-16.067 15.423-16.067s19.602-5.462 27.956-21.85" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path581" d="m622.09 281.41c0 2.307-1.8702 4.1773-4.1773 4.1773s-4.1773-1.8702-4.1773-4.1773c0-2.307 1.8702-4.1773 4.1773-4.1773s4.1773 1.8702 4.1773 4.1773z" stroke="#000" stroke-width="1.0667pt" fill="none"/> + <path id="path582" d="m640.73 283.02c0 2.307-1.8702 4.1773-4.1772 4.1773s-4.1772-1.8702-4.1772-4.1773c0-2.307 1.8702-4.1773 4.1772-4.1773s4.1772 1.8702 4.1772 4.1773z" stroke="#000" stroke-width="1.0667pt" fill="none"/> + </g> + </g> +</svg> diff --git a/s/map/default/333networks.jpg b/s/map/default/333networks.jpg Binary files differnew file mode 100644 index 0000000..6179414 --- /dev/null +++ b/s/map/default/333networks.jpg diff --git a/s/map/default/deusex.jpg b/s/map/default/deusex.jpg Binary files differnew file mode 100644 index 0000000..296eab5 --- /dev/null +++ b/s/map/default/deusex.jpg diff --git a/s/map/default/jetfighter4.jpg b/s/map/default/jetfighter4.jpg Binary files differnew file mode 100644 index 0000000..dee9c2f --- /dev/null +++ b/s/map/default/jetfighter4.jpg diff --git a/s/map/default/postal2.jpg b/s/map/default/postal2.jpg Binary files differnew file mode 100755 index 0000000..d5b7275 --- /dev/null +++ b/s/map/default/postal2.jpg diff --git a/s/map/default/rune.jpg b/s/map/default/rune.jpg Binary files differnew file mode 100755 index 0000000..3919ac2 --- /dev/null +++ b/s/map/default/rune.jpg diff --git a/s/map/default/ut.jpg b/s/map/default/ut.jpg Binary files differnew file mode 100755 index 0000000..7c5beef --- /dev/null +++ b/s/map/default/ut.jpg diff --git a/s/masterinterface.pl b/s/masterinterface.pl new file mode 100755 index 0000000..253ff93 --- /dev/null +++ b/s/masterinterface.pl @@ -0,0 +1,37 @@ +#!/usr/bin/perl +package MasterWebInterface; +use strict; +use warnings; +use Data::Dumper 'Dumper'; +use Cwd 'abs_path'; + +our $ROOT; +BEGIN { ($ROOT = abs_path $0) =~ s{/s/masterinterface.pl$}{}; } +use lib $ROOT.'/lib'; +use TUWF; + +# get settings and add these to the TUWF object +our %S = (root => $ROOT); +require "$ROOT/data/settings.pl"; + + +$TUWF::OBJ->{$_} = $S{$_} for (keys %S); + +# TUWF options +TUWF::set( + logfile => "$ROOT/log/TUWF.log", + mail_from => $S{email}, + db_login => $S{db_login}, + validate_templates => { # input templates + page => { template => 'uint', max => 1000 }, + }, + log_queries => 0, + debug => 1, +); + +#add %S from web-config.pl to OBJ +$TUWF::OBJ->{$_} = $S{$_} for (keys %S); + +TUWF::load_recursive('MasterWebInterface'); +TUWF::run(); + diff --git a/s/masterscript.js b/s/masterscript.js new file mode 100755 index 0000000..ce849bc --- /dev/null +++ b/s/masterscript.js @@ -0,0 +1,37 @@ +//============================================================================== +// 333networks & subs +// Written by Darkelarious. +// +// This script belongs to 333networks. See +// 333networks.com for license and copyright. +// +//============================================================================== + +// advanced search box +function toggleAdvanced () +{ + var box = document.getElementById("advancedsearch"); + box.style.display = (box.style.display == "block" ? "none" : "block" ); +} + +// search box +{ + var qbox = document.getElementById('q'); + qbox.onclick = function () + { + if ( this.value == 'search...' ) + { + this.value = ''; + this.style.fontStyle = 'normal' + } + }; + + qbox.onblur = function () + { + if ( this.value.length < 1 ) + { + this.value = 'search...'; + this.style.fontStyle = 'italic'; + } + }; +} diff --git a/s/robots.txt b/s/robots.txt new file mode 100755 index 0000000..6ffbc30 --- /dev/null +++ b/s/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Disallow: / + diff --git a/s/style/default/333networks.png b/s/style/default/333networks.png Binary files differnew file mode 100755 index 0000000..9803dc1 --- /dev/null +++ b/s/style/default/333networks.png diff --git a/s/style/default/body.gif b/s/style/default/body.gif Binary files differnew file mode 100755 index 0000000..b34ad3c --- /dev/null +++ b/s/style/default/body.gif diff --git a/s/style/default/style.css b/s/style/default/style.css new file mode 100755 index 0000000..d754cb8 --- /dev/null +++ b/s/style/default/style.css @@ -0,0 +1,600 @@ +/* * * * * * * * * * * * * * * * * * *\ +* Master Server Web Interface * +* A website by Darkelarious * +* See COPYING for additional details * +* on re-use. * +\* * * * * * * * * * * * * * * * * * */ + +/* Theme classic written by Darkelarious */ + +/*** Global ***/ +* { + margin: 0; + padding: 0; + border: 0; + outline:0; + } + +body { + text-align: center; + height: 100%; + color: #ccc; + font-family: 'Verdana'; + font-size: 10pt; + background: #222 url(/style/default/body.gif) repeat center top fixed; + } + +p { + margin-bottom:12pt; + } + +a, a:visited { + text-decoration: none; + color: #0af; + } + +a:hover { + color: #ff0; + text-decoration: none; + } + +#body { + text-align: left; + width: 900px; + margin: 0 auto; + min-height: 100%; + padding-top:80px; + background: url(/style/default/333networks.png) no-repeat center 15px fixed; + } + +#footer { + padding: 90px 0 40px 0; + text-align:center; + font-size : x-small; + clear:both + } + +#footer a { + text-decoration: underline; + } + + +/* mainboxes */ +div.mainbox { + border: 1px solid #0af; + margin: 21px 0 -10px 0; + padding: 5px; + background: #333; + } + +div.mainbox h1, +div.mainbox h2, +div.mainbox h3 { + margin: -5px 0 10px 0; + text-decoration: none; + font-family: Tahoma; + font-weight: normal; + font-size: 16pt; + color: #0af; + } + +div.mainbox h2 { + margin: 5px 0 5px 5px; + font-size: 12pt; + } +div.mainbox h3 { +margin: 5px 0 5px 10px; +font-size: 11pt; +} + +div.mainbox p, +div.mainbox ul, +div.mainbox ol { + margin: 5px 16px 0 8px; + padding: 0 5px 5px 25px; + text-align:left; + font-size: 9pt; + } +div.mainbox ul, +div.mainbox ol { + margin-left:20px; + } + + +div.mainbox div.header { + margin: -5px 2px 10px -5px; + padding:10px 0 0 10px; + display:block; + width:100%; + color: #0af; + border-bottom:1px solid #0af; + background: #111; + } + +/* navigation / search box "fieldset.search" */ + +form input { + border: 1px solid #0af; + background: #222; + color: #ccc; +} + +form fieldset.search, +form fieldset#advancedsearch { + display: block; + margin:12px 0 12px 0; + width: 100%; + text-align:center; + height:22px; + } + +form fieldset.search input.text, +form fieldset#advancedsearch input.text { + width: 300px; + margin-left:20px; + padding:1px 1px 1px 5px; + font-style: italic; + } + +form fieldset.search input.submit { + display:none; + } + +form fieldset.search a { + padding: 1px 5px; + border: 1px solid #0af; + margin: 0 6px; + } +form fieldset.search a.sel, +form fieldset.search a:hover { + border: 1px solid #ff0; + color: #ff0; + } + +form div.dropdown a { + display:block; + width:100%; + text-align:center; + font-size: x-small; +} + +form fieldset#advancedsearch { + display:none; +} +form fieldset#advancedsearch input.submit { + padding: 1px; + margin: auto 5px; +} + +/* TODO: advanced search function styling */ + + + +/* browse table tabs */ +ul.maintabs { + display: inline; + margin: 0; + } + +ul.maintabs.notfirst { + display: block; + height: 20px + } + +ul.maintabs li { + display: inline; + list-style-type: none + } + +ul.maintabs li a, +ul.maintabs li b { + float: right; + display: block; + height: 14px; + padding: 1px 7px 5px 7px; + margin: 0 0 0 10px; + } + +ul.maintabs li a { + margin-left: 5px; + border: 1px solid #0af; + border-bottom: none; + background: #333; + } + +ul.maintabs.notfirst li a, +ul.maintabs.notfirst li b { + margin-top: 20px + } + +ul.maintabs.bottom li a, +ul.maintabs.bottom li b { + margin-top: 10px; + padding: 1px 7px 5px 7px + } + +ul.maintabs.bottom li a { + border-bottom: 1px solid #0af; + border-top: none + } + +ul.maintabs li.left a, +ul.maintabs li.left b { + float: left; + margin-left: 0; + margin-right: 10px + } + +ul.maintabs li b { + margin-left: -2px; + margin-right: -7px + } + +ul.maintabs li.left b { + margin-left: -7px; + margin-right: -2px + } + +ul.maintabs li.tabselected a, +ul.maintabs li a:hover { + padding-bottom: 6px + } + +ul.maintabs.bottom li.tabselected a, +ul.maintabs.bottom li a:hover { + padding-top: 2px; + padding-bottom: 5px; + margin-top: 9px + } + +ul.maintabs.browsetabs li a { + margin-left: 5px; + background: #333; + } + +ul.maintabs.browsetabs li.left a { + margin-left: 0; + margin-right: 5px + } + + +/* game/server browse tables */ +div.mainbox.browse { + padding: 0; + } + +div.mainbox.browse table { + width: 100%; + table-layout:fixed; + border-collapse:collapse + } + +div.mainbox.browse table thead td { + font-weight: bold; + } + +div.mainbox.browse table thead tr td { + white-space:nowrap; + overflow:hidden; + text-align:center; + border-top:0; + border-bottom:1px solid #0af; + color: #0af; + padding:3px 10px 3px 5px; + background: #111; + font-weight:bold + } + +div.mainbox.browse table tfoot tr td { + white-space:nowrap; + overflow:hidden; + text-align:center; + border-top:1px solid #0af; + color: #ccc; + padding:3px 10px 3px 5px; + } + +div.mainbox.browse table tr td { + white-space:nowrap; + overflow:hidden; + text-align:center; + padding:1px 10px 1px 5px; + font-size:10pt; + } + +div.mainbox.browse table tr.s td a { + color: #ccc; + } + +div.mainbox.browse table tr.s td a:hover { + color: #ff0; + } + +div.mainbox.browse table tr.odd { + background: #222; + } + +/* specific game list table columns */ +div.mainbox.browse.gamelist table tr td.tc1 { + text-align:left; + padding-left:20px + } + +div.mainbox.browse.gamelist table tr td.tc2 { + width:100px; + background-repeat: no-repeat; + background-position: center center; + background-size: 16px 16px; + } + +div.mainbox.browse.gamelist table tr td.tc3 { + width:200px; + } + +/* specific serverlist table columns */ +div.mainbox.browse.serverlist table tr td.tc1 { + width:10px; + background-size: 20px 15px; + background-position: 50%; + background-repeat: no-repeat; + } + +div.mainbox.browse.serverlist table tr td.tc2 { + text-align:left; + } + +div.mainbox.browse.serverlist table tr td.tc3 { + width:46px; + background-repeat: no-repeat; + background-position: center center; + background-size: 16px 16px; + } +div.mainbox.browse.serverlist table tr td.tc3.icon a { + display:block; + margin:0 auto; + height:16px; + width:16px; +} + +div.mainbox.browse.serverlist table tr td.tc4 { + width:90px;text-align:left + } + +div.mainbox.browse.serverlist table tr td.tc5 { + width:70px; + text-align:center + } + +div.mainbox.browse.serverlist table tr td.tc6 { + width:140px; + text-align:left + } + + +/* serverlist details */ +div.mainbox.detail { + padding:0 0 12px 0; + } +div.mainbox.detail div.header { + margin:0 0 12pt 0; + padding:3px 0 0 0; + display:block; + width:100%; + } + +div.mainbox.detail div.header h1 { + font-weight:normal; + padding: 15px 5px 0 15px; + white-space: nowrap; + overflow:hidden; + display:block; + width:830px; + } +div.mainbox.detail div.header p { + color: #ccc; + padding: 0 0 5px 30px; + } + +div.mainbox.detail table { + margin-bottom: 20px; + table-layout:fixed; + border-collapse:collapse; + text-align:left; + } +div.mainbox.detail table tr th { + font-weight:bold; + padding: 2px 8px; + margin-bottom:12pt; + border-bottom: 1px solid #996 + } +div.mainbox.detail table tr th.wc1 { + width:170px + } +div.mainbox.detail table tr td { + vertical-align:top; + padding:6px 5px 4px 15px; + } +div.mainbox.detail table tr td img.flag { + margin:-4px 2px -4px 0; + height:20px; + width:30px; + } +div.mainbox.detail table tr td input, +div.mainbox.detail table tr td textarea { + background: #222; + color: #ccc; + width:99%; + padding: 3px 1px 2px 5px; + border: 1px solid #0af; + font-family:"Lucida Console"; + font-size: 8pt; + } +div.mainbox.detail table.serverinfo, +div.mainbox.detail table.gameinfo { + width:63%; + } +div.mainbox.detail table.teaminfo, +div.mainbox.detail table.limits, +div.mainbox.detail table.mutators, +div.mainbox.detail table.players, +div.mainbox.detail table.useropts, +div.mainbox.detail table.shareopts { + width:96%; + } +div.mainbox.detail div.container { + float:right; + margin-right:30px; + } +div.mainbox.detail div.container div.thumbnail { + border:1px solid #666; + background: #222; + display:block; + margin-bottom:8px + } +div.mainbox.detail div.container div.thumbnail img { + height:256px; + width:256px; + border:1px solid #996; + display:block; + margin:10px 10px 2px 10px + } +div.mainbox.detail div.container div.thumbnail span { + text-align: right; + font-weight: normal; + padding:0 15px 4px 5px; + display:block; + font-size:x-small + } +div.mainbox.detail div.container table.mapinfo { + width: 280px; + margin-bottom:0; + } +div.mainbox.detail div.container table.mapinfo tr td.wc1{ + width: 80px; + } +div.mainbox.detail table.players tr.odd { + background: #222; + } +div.mainbox.detail table.players tr td { + padding:1px 5px 0px 15px; + overflow:hidden; + white-space: nowrap; + } +div.mainbox.detail table.players tr th.frags {width:50px} +div.mainbox.detail table.players tr th.mesh {width:140px} +div.mainbox.detail table.players tr th.skin {width:140px} +div.mainbox.detail table.players tr th.ping {width:50px} + +div.mainbox.detail table.players tr td.frags, +div.mainbox.detail table.players tr th.frags, +div.mainbox.detail table.players tr td.ping, +div.mainbox.detail table.players tr th.ping {text-align:right;} + +/* warning box */ +div.mainbox.warning { + color:#ccc; + background-color: #411; + border: 1px solid #c00; +} +div.mainbox.warning div.header { + border-bottom:1px solid #c00; + background: #200; + color: #ccc; +} + +div.mainbox.warning div.header h1{ + color: #ccc; +} + +div.mainbox div.description { + display: block; + width: 500px; + margin: 10px auto + } + +div.code.warning { + display:block; + margin:12pt auto; + width:90%; + font-family:"Lucida Console"; + font-size: 8pt; + text-align:left; + padding:5px; + border: 1px solid #c00; + overflow:hidden; + background: #222; + box-shadow: 10px 10px 5px #222; + } + +span.hilit { + background: #111; + font-style: italic; + padding: 1px; +} + +div.mainbox.apidoc table { + table-layout:fixed; + border-collapse:collapse; + margin:0 auto 12pt auto; + width:90%; + box-shadow: 3px 3px 2px #222; + background: #2a2a2a; + border:1px solid #666; + } +div.mainbox.apidoc table tr td { + white-space:nowrap; + overflow:hidden; + text-align:center; + padding:1px 10px 1px 5px; + font-size:10pt; + } +div.mainbox.apidoc table tr th { +font-weight:bold; +color: #ccc; +} +div.mainbox.apidoc table tr th, +div.mainbox.apidoc table tr td { +vertical-align:top; +text-align:left; + padding:3px 6px; + border:1px solid #666; + border-left:0; + border-right:0; + font-size:9pt +} + +div.mainbox.apidoc table .tc1 {width:90px;text-align:left} +div.mainbox.apidoc table .tc2 {width:70px;text-align:center;} + +div.mainbox.apidoc p, +div.mainbox.apidoc ul, +div.mainbox.apidoc ol { + margin-bottom:6pt; +} + +pre.code, +div.code { + display:block; + margin:2px auto 12px auto; + width:90%; + font-family:"Lucida Console"; + font-size: 8pt; + text-align:left; + padding:10px 20px; + border: 1px solid #0af; + overflow:auto; + background: #2a2a2a; + box-shadow: 3px 3px 3px #222; + } +span.code { + font-family:"Lucida Console"; + font-size: 8pt; + text-align:left; + padding:2px; + background: #2a2a2a; +} + +span.ext { + color: #bbb; + font-style: italic; + } |
