Merge branch 'master' of github.com:hibernate/hibernate-core

This commit is contained in:
Steve Ebersole 2011-03-16 13:42:23 -05:00
commit ba30df2f95
503 changed files with 77183 additions and 17 deletions

View File

@ -0,0 +1,247 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Batch Processing</title>
<para>
The following example shows an antipattern for batch inserts.
</para>
<example>
<title>Naive way to insert 100000 lines with Hibernate</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/batch_insert.java"
xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
<para>
This fails with exception <systemitem>OutOfMemoryException</systemitem> after around 50000 rows on most
systems. The reason is that Hibernate caches all the newly inserted Customer instances in the session-level
cache. There are several ways to avoid this problem.
</para>
</example>
<para>
Before batch processing, enable JDBC batching. To enable JDBC batching, set the property
<property>hibernate.jdbc.batch_size</property> to an integer between 10 and 50.
</para>
<note>
<para>
Hibernate disables insert batching at the JDBC level transparently if you use an identity identifier generator.
</para>
</note>
<para>
If the above approach is not appropriate, you can disable the second-level cache, by setting
<property>hibernate.cache.use_second_level_cache</property> to <literal>false</literal>.
</para>
<section>
<title>Batch inserts</title>
<para>
When you make new objects persistent, employ methods <methodname>flush()</methodname> and
<methodname>clear()</methodname> to the session regularly, to control the size of the first-level cache.
</para>
<example>
<title>Flushing and clearing the <classname>Session</classname></title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/flush_and_clear_session.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
</section>
<section>
<title>Batch updates</title>
<para>
When you retriev and update data, <methodname>flush()</methodname> and <methodname>clear()</methodname> the
session regularly. In addition, use method <methodname>scroll()</methodname> to take advantage of server-side
cursors for queries that return many rows of data.
</para>
<example>
<title>Using <methodname>scroll()</methodname></title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/using_scroll.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
</section>
<section>
<title>StatelessSession</title>
<para>
<interfacename>StatelessSession</interfacename> is a command-oriented API provided by Hibernate. Use it to stream
data to and from the database in the form of detached objects. A <interfacename>StatelessSession</interfacename>
has no persistence context associated with it and does not provide many of the higher-level life cycle
semantics. Some of the things not provided by a <interfacename>StatelessSession</interfacename> include:
</para>
<itemizedlist>
<title>Features and behaviors not provided by <interfacename>StatelessSession</interfacename></title>
<listitem>
<para>
a first-level cache
</para>
</listitem>
<listitem>
<para>
interaction with any second-level or query cache
</para>
</listitem>
<listitem>
<para>
transactional write-behind or automatic dirty checking
</para>
</listitem>
</itemizedlist>
<itemizedlist>
<title>Limitations of <interfacename>StatelessSession</interfacename></title>
<listitem>
<para>
Operations performed using a stateless session never cascade to associated instances.
</para>
</listitem>
<listitem>
<para>
Collections are ignored by a stateless session.
</para>
</listitem>
<listitem>
<para>
Operations performed via a stateless session bypass Hibernate's event model and interceptors.
</para>
</listitem>
<listitem>
<para>
Due to the lack of a first-level cache, Stateless sessions are vulnerable to data aliasing effects.
</para>
</listitem>
<listitem>
<para>
A stateless session is a lower-level abstraction that is much closer to the underlying JDBC.
</para>
</listitem>
</itemizedlist>
<example>
<title>Using a <interfacename>StatelessSession</interfacename></title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/using_a_StatelessSession.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
<para>
The <classname>Customer</classname> instances returned by the query are immediately detached. They are never
associated with any persistence context.
</para>
</example>
<para>
The <methodname>insert()</methodname>, <methodname>update()</methodname>, and <methodname>delete()</methodname>
operations defined by the <interfacename>StatelessSession</interfacename> interface operate directly on database
rows. They cause the corresponding SQL operations to be executed immediately. They have different semantics from
the <methodname>save()</methodname>, <methodname>saveOrUpdate()</methodname>, and
<methodname>delete()</methodname> operations defined by the <interfacename>Session</interfacename> interface.
</para>
</section>
<section>
<title>Hibernate Query Language for DML</title>
<para>
DML, or <firstterm>Data Markup Language</firstterm>, refers to SQL statements such as <literal>INSERT</literal>,
<literal>UPDATE</literal>, and <literal>DELETE</literal>. Hibernate provides methods for bulk SQL-style DML
statement execution, in the form of <firstterm>Hibernate Query Language (HQL)</firstterm>.
</para>
<section>
<title>HQL for UPDATE and DELETE</title>
<example>
<title>Psuedo-syntax for UPDATE and DELETE statements using HQL</title>
<screen>
( UPDATE | DELETE ) FROM? EntityName (WHERE where_conditions)?
</screen>
<para>
The <literal>?</literal> suffix indications an optional parameter. The <literal>FROM</literal> and
<literal>WHERE</literal> clauses are each optional.
</para>
</example>
<para>
The <literal>FROM</literal> clause can only refer to a single entity, which can be aliased. If the entity name
is aliased, any property references must be qualified using that alias. If the entity name is not aliased, then
it is illegal for any property references to be qualified.
</para>
<para>
Joins, either implicit or explicit, are prohibited in a bulk HQL query. You can use sub-queries in the
<literal>WHERE</literal> clause, and the sub-queries themselves can contain joins.
</para>
<example>
<title>Executing an HQL UPDATE, using the <methodname>Query.executeUpdate()</methodname> method</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/executeUpdate.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<para>
In keeping with the EJB3 specification, HQL UPDATE statements, by default, do not effect the version or the
timestamp property values for the affected entities. You can use a versioned update to force Hibernate to reset
the version or timestamp property values, by adding the <literal>VERSIONED</literal> keyword after the
<literal>UPDATE</literal> keyword.
</para>
<example>
<title>Updating the version of timestamp</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/updating_version.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<note>
<para>
If you use the <literal>VERSIONED</literal> statement, you cannot use custom version types, which use class
<classname>org.hibernate.usertype.UserVersionType</classname>.
</para>
</note>
<example>
<title>A HQL <literal>DELETE</literal> statement</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/hql_delete.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<para>
Method <methodname>Query.executeUpdate()</methodname> returns an <type>int</type> value, which indicates the
number of entities effected by the operation. This may or may not correlate to the number of rows effected in
the database. An HQL bulk operation might result in multiple SQL statements being executed, such as for
joined-subclass. In the example of joined-subclass, a <literal>DELETE</literal> against one of the subclasses
may actually result in deletes in the tables underlying the join, or further down the inheritance hierarchy.
</para>
</section>
<section>
<title>HQL syntax for INSERT</title>
<example>
<title>Pseudo-syntax for INSERT statements</title>
<screen>
INSERT INTO EntityName <replaceable>properties_list</replaceable> <replaceable>select_statement</replaceable>
</screen>
</example>
<para>
Only the <literal>INSERT INTO ... SELECT ...</literal> form is supported. You cannot specify explicit values to
insert.
</para>
<para>
The <replaceable>properties_list</replaceable> is analogous to the column specification in the <literal>SQL
INSERT</literal> statement. For entities involved in mapped inheritance, you can only use properties directly
defined on that given class-level in the <replaceable>properties_list</replaceable>. Superclass properties are
not allowed and subclass properties are irrelevant. In other words, <literal>INSERT</literal> statements are
inherently non-polymorphic.
</para>
<para>
The <replaceable>select_statement</replaceable> can be any valid HQL select query, but the return types must
match the types expected by the INSERT. Hibernate verifies the return types during query compilation, instead of
expecting the database to check it. Problems might result from Hibernate types which are equivalent, rather than
equal. One such example is a mismatch between a property defined as an <type>org.hibernate.type.DateType</type>
and a property defined as an <type>org.hibernate.type.TimestampType</type>, even though the database may not
make a distinction, or may be capable of handling the conversion.
</para>
<para>
If <replaceable>id</replaceable> property is not specified in the <replaceable>properties_list</replaceable>,
Hibernate generates a value automatically. Automatic generation is only available if you use ID generators which
operate on the database. Otherwise, Hibernate throws an exception during parsing. Available in-database
generators are <classname>org.hibernate.id.SequenceGenerator</classname> and its subclasses, and objects which
implement <interfacename>org.hibernate.id.PostInsertIdentifierGenerator</interfacename>. The most notable
exception is <classname>org.hibernate.id.TableHiLoGenerator</classname>, which does not expose a selectable way
to get its values.
</para>
<para>
For properties mapped as either version or timestamp, the insert statement gives you two options. You can either
specify the property in the properties_list, in which case its value is taken from the corresponding select
expressions, or omit it from the properties_list, in which case the seed value defined by the
org.hibernate.type.VersionType is used.
</para>
<example>
<title>HQL INSERT statement</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/hql-insert.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
</section>
<section>
<title>More information on HQL</title>
<para>
This section is only a brief overview of HQL. For more information, see <xref linkend="chap-hql" />.
</para>
</section>
</section>
</chapter>

View File

@ -0,0 +1,583 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Caching</title>
<section>
<title>The query cache</title>
<para>
If you have queries that run over and over, with the same parameters, query caching provides performance gains.
</para>
<para>
Caching introduces overhead in the area of transactional processing. For example, if you cache results of a query
against an object, Hibernate needs to keep track of whether any changes have been committed against the object,
and invalidate the cache accordingly. In addition, the benefit from caching query results is limited, and highly
dependent on the usage patterns of your application. For these reasons, Hibernate disables the query cache by
default.
</para>
<procedure>
<title>Enabling the query cache</title>
<step>
<title>Set the <property>hibernate.cache.use_query_cache</property> property to <literal>true</literal>.</title>
<para>
This setting creates two new cache regions:
</para>
<itemizedlist>
<listitem>
<para>
<code>org.hibernate.cache.StandardQueryCache</code> holds the cached query results.
</para>
</listitem>
<listitem>
<para>
<code>org.hibernate.cache.UpdateTimestampsCache</code> holds timestamps of the most recent updates to
queryable tables. These timestamps validate results served from the query cache.
</para>
</listitem>
</itemizedlist>
</step>
<step>
<title>Adjust the cache timeout of the underlying cache region</title>
<para>
If you configure your underlying cache implementation to use expiry or timeouts, set the cache timeout of the
underlying cache region for the <code>UpdateTimestampsCache</code> to a higher value than the timeouts of any
of the query caches. It is possible, and recommended, to set the UpdateTimestampsCache region never to
expire. To be specific, a LRU (Least Recently Used) cache expiry policy is never appropriate.
</para>
</step>
<step>
<title>Enable results caching for specific queries</title>
<para>
Since most queries do not benefit from caching of their results, you need to enable caching for individual
queries, e ven after enabling query caching overall. To enable results caching for a particular query, call
<methodname>org.hibernate.Query.setCacheable(true)</methodname>. This call allows the query to look for
existing cache results or add its results to the cache when it is executed.
</para>
</step>
</procedure>
<para>
The query cache does not cache the state of the actual entities in the cache. It caches identifier values and
results of value type. Therefore, always use the query cache in conjunction with the second-level
cache for those entities which should be cached as part of a query result cache.
</para>
<section>
<title>Query cache regions</title>
<para>
For fine-grained control over query cache expiration policies, specify a named cache region for a particular
query by calling <methodname>Query.setCacheRegion()</methodname>.
</para>
<example>
<title>Method <methodname>setCacheRegion</methodname></title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/setCacheRegion.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<para>
To force the query cache to refresh one of its regions and disregard any cached results in the region, call
<code>org.hibernate.Query.setCacheMode(CacheMode.REFRESH)</code>. In conjunction with the region defined for the
given query, Hibernate selectively refreshes the results cached in that particular region. This is much more
efficient than bulk eviction of the region via <code>org.hibernate.SessionFactory.evictQueries()</code>.
</para>
</section>
</section>
<section>
<title>Second-level cache providers</title>
<para>
Hibernate is compatible with several second-level cache providers. None of the providers support all of
Hibernate's possible caching strategies. <xref linkend="caching-provider-table" /> lists the providers, along with
their interfaces and supported caching strategies. For definitions of caching strategies, see <xref
linkend="caching-strategies-list" />.
</para>
<section>
<title>Configuring your cache providers</title>
<para>
You can configure your cache providers using either annotations or mapping files.
</para>
<formalpara>
<title>Entities</title>
<para>
By default, entities are not part of the second-level cache, and their use is not recommended. If you
absolutely must use entities, set the <code>shared-cache-mode</code> element in
<filename>persistence.xml</filename>, or use property <property>javax.persistence.sharedCache.mode</property>
in your configuration. Use one of the values in <xref linkend="shared-cache-mode-values" />.
</para>
</formalpara>
<table id="shared-cache-mode-values">
<title>Possible values for Shared Cache Mode</title>
<tgroup cols="2">
<thead>
<row>
<entry>Value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>ENABLE_SELECTIVE</entry>
<entry>
<para>
Entities are not cached unless you explicitly mark them as cachable. This is the default and
recommended value.
</para>
</entry>
</row>
<row>
<entry>DISABLE_SELECTIVE</entry>
<entry>
<para>
Entities are cached unless you explicitly mark them as not cacheable.
</para>
</entry>
</row>
<row>
<entry>ALL</entry>
<entry>
<para>
All entities are always cached even if you mark them as not cacheable.
</para>
</entry>
</row>
<row>
<entry>NONE</entry>
<entry>
<para>
No entities are cached even if you mark them as cacheable. This option basically disables second-level
caching.
</para>
</entry>
</row>
</tbody>
</tgroup>
</table>
<para>
Set the global default cache concurrency strategy The cache concurrency strategy with the
<property>hibernate.cache.default_cache_concurrency_strategy</property> configuration property. See <xref
linkend="caching-strategies-list" /> for possible values.
</para>
<note>
<para>
When possible, define the cache concurrency strategy per entity rather than globally. Use the
<code>@org.hibernate.annotations.Cache</code> annotation.
</para>
</note>
<example id="configuring-cache-providers-annotations">
<title>Configuring cache providers using annotations</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/cache_providers_mapping.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
<para>
You can cache the content of a collection or the identifiers, if the collection contains other entities. Use
the <code>@Cache</code> annotation on the Collection property.
</para>
<para>
<code>@Cache</code> can take several attributes.
</para>
<variablelist>
<title>Attributes of <code>@Cache</code> annotation</title>
<varlistentry>
<term>usage</term>
<listitem>
<para>
The given cache concurrency strategy, which may be:
</para>
<itemizedlist>
<listitem>
<para>
<literal>NONE</literal>
</para>
</listitem>
<listitem>
<para>
<literal>READ_ONLY</literal>
</para>
</listitem>
<listitem>
<para>
<literal>NONSTRICT_READ_WRITE</literal>
</para>
</listitem>
<listitem>
<para>
<literal>READ_WRITE</literal>
</para>
</listitem>
<listitem>
<para>
<literal>TRANSACTIONAL</literal>
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>region</term>
<listitem>
<para>
The cache region. This attribute is optional, and defaults to the fully-qualified class name of the
class, or the qually-qualified role name of the collection.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>include</term>
<listitem>
<para>
Whether or not to include all properties.. Optional, and can take one of two possible values.
</para>
<itemizedlist>
<listitem>
<para>
A value of <literal>all</literal> includes all properties. This is the default.
</para>
</listitem>
<listitem>
<para>
A value of <literal>non-lazy</literal> only includes non-lazy properties.
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
</variablelist>
</example>
<example>
<title>Configuring cache providers using mapping files</title>
<programlisting language="XML" role="XML"><xi:include href="extras/cache_providers.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
<para>
Just as in the <xref linkend="configuring-cache-providers-annotations" />, you can provide attributes in the
mapping file. There are some specific differences in the syntax for the attributes in a mapping file.
</para>
<variablelist>
<varlistentry>
<term>usage</term>
<listitem>
<para>
The caching strategy. This attribute is required, and can be any of the following values.
</para>
<itemizedlist>
<listitem><para>transactional</para></listitem>
<listitem><para>read-write</para></listitem>
<listitem><para>nonstrict-read-write</para></listitem>
<listitem><para>read-only</para></listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>region</term>
<listitem>
<para>
The name of the second-level cache region. This optional attribute defaults to the class or collection
role name.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>include</term>
<listitem>
<para>
Whether properties of the entity mapped with <literal>lazy=true</literal> can be cached when
attribute-level lazy fetching is enabled. Defaults to <literal>all</literal> and can also be
<literal>non-lazy</literal>.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
Instead of <code>&lt;cache&gt;</code>, you can use <code>&lt;class-cache&gt;</code> and
<code>&lt;collection-cache&gt;</code> elements in <filename>hibernate.cfg.xml</filename>.
</para>
</example>
</section>
<section id="caching-strategies-list">
<title>Caching strategies</title>
<variablelist>
<varlistentry>
<term>read-only</term>
<listitem>
<para>
A read-only cache is good for data that needs to be read often but not modified. It is simple, performs
well, and is safe to use in a clustered environment.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>nonstrict read-write</term>
<listitem>
<para>
Some applications only rarely need to modify data. This is the case if two transactions are unlikely to
try to update the same item simultaneously. In this case, you do not need strict transaction isolation,
and a nonstrict-read-write cache might be appropriate. If the cache is used in a JTA environment, you must
specify <classname>hibernate.transaction.manager_lookup_class</classname>. In other environments, ensore
that the transaction is complete before you call <methodname>Session.close()</methodname> or
<methodname>Session.disconnect()</methodname>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>read-write</term>
<listitem>
<para>
A read-write cache is appropriate for an application which needs to update data regularly. Do not use a
read-write strategy if you need serializable transaction isolation. In a JTA environment, specify a
strategy for obtaining the JTA TransactionManager by setting the property
<property>hibernate.transaction.manager_lookup_class</property>. In non-JTA environments, be sure the
transaction is complete before you call <methodname>Session.close()</methodname> or
<methodname>Session.disconnect()</methodname>.
</para>
<note>
<para>
To use the read-write strategy in a clustered environment, the underlying cache implementation must
support locking. The build-in cache providers do not support locking.
</para>
</note>
</listitem>
</varlistentry>
<varlistentry>
<term>transactional</term>
<listitem>
<para>
The transactional cache strategy provides support for transactional cache providers such as JBoss
TreeCache. You can only use such a cache in a JTA environment, and you must first specify
<classname>hibernate.transaction.manager_lookup_class</classname>.
</para>
</listitem>
</varlistentry>
</variablelist>
</section>
<section id="caching-provider-table">
<title>Second-level cache providers for Hibernate</title>
<informaltable>
<tgroup cols="5">
<thead>
<row>
<entry>Cache</entry>
<entry>Interface</entry>
<entry>Supported strategies</entry>
</row>
</thead>
<tbody>
<row>
<entry>HashTable (testing only)</entry>
<entry></entry>
<entry>
<itemizedlist>
<listitem><para>read-only</para></listitem>
<listitem><para>nontrict read-write</para></listitem>
<listitem><para>read-write</para></listitem>
</itemizedlist>
</entry>
</row>
<row>
<entry>EHCache</entry>
<entry></entry>
<entry>
<itemizedlist>
<listitem><para>read-only</para></listitem>
<listitem><para>nontrict read-write</para></listitem>
<listitem><para>read-write</para></listitem>
</itemizedlist>
</entry>
</row>
<row>
<entry>OSCache</entry>
<entry></entry>
<entry>
<itemizedlist>
<listitem><para>read-only</para></listitem>
<listitem><para>nontrict read-write</para></listitem>
<listitem><para>read-write</para></listitem>
</itemizedlist>
</entry>
</row>
<row>
<entry>SwarmCache</entry>
<entry></entry>
<entry>
<itemizedlist>
<listitem><para>read-only</para></listitem>
<listitem><para>nontrict read-write</para></listitem>
</itemizedlist>
</entry>
</row>
<row>
<entry>JBoss Cache 1.x</entry>
<entry></entry>
<entry>
<itemizedlist>
<listitem><para>read-only</para></listitem>
<listitem><para>transactional</para></listitem>
</itemizedlist>
</entry>
</row>
<row>
<entry>JBoss Cache 2.x</entry>
<entry></entry>
<entry>
<itemizedlist>
<listitem><para>read-only</para></listitem>
<listitem><para>transactional</para></listitem>
</itemizedlist>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>
</section>
<section>
<title>Managing the cache</title>
<section>
<title>Moving items into and out of the cache</title>
<variablelist>
<title>Actions that add an item to internal cache of the Session</title>
<varlistentry>
<term>Saving or updating an item</term>
<listitem>
<itemizedlist>
<listitem>
<para>
<methodname>save()</methodname>
</para>
</listitem>
<listitem>
<para>
<methodname>update()</methodname>
</para>
</listitem>
<listitem>
<para>
<methodname>saveOrUpdate()</methodname>
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
<varlistentry>
<term>Retrieving an item</term>
<listitem>
<itemizedlist>
<listitem>
<para>
<methodname>load()</methodname>
</para>
</listitem>
<listitem>
<para>
<methodname>get()</methodname>
</para>
</listitem>
<listitem>
<para>
<methodname>list()</methodname>
</para>
</listitem>
<listitem>
<para>
<methodname>iterate()</methodname>
</para>
</listitem>
<listitem>
<para>
<methodname>scroll()</methodname>
</para>
</listitem>
</itemizedlist>
</listitem>
</varlistentry>
</variablelist>
<formalpara>
<title>Syncing or removing a cached item</title>
<para>
The state of an object is synchronized with the database when you call method
<methodname>flush()</methodname>. To avoid this synchronization, you can remove the object and all collections
from the first-level cache with the <methodname>evict()</methodname> method. To remove all items from the
Session cache, use method <methodname>Session.clear()</methodname>.
</para>
</formalpara>
<example>
<title>Evicting an item from the first-level cache</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/evicting_item.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<formalpara>
<title>Determining whether an item belongs to the Session cache</title>
<para>
The Session provides a <methodname>contains()</methodname> method to determine if an instance belongs to the
session cache.
</para>
</formalpara>
<example>
<title>Second-level cache eviction</title>
<para>
You can evict the cached state of an instance, entire class, collection instance or entire collection role,
using methods of <classname>SessionFactory</classname>.
</para>
<programlisting language="Java" role="JAVA"><xi:include href="extras/evicting_from_second_level_cache.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<section>
<title>Interactions between a Session and the second-level cache</title>
<para>
The CacheMode controls how a particular session interacts with the second-level cache.
</para>
<informaltable>
<tgroup cols="2">
<tbody>
<row>
<entry>CacheMode.NORMAL</entry>
<entry>reads items from and writes them to the second-level cache.</entry>
</row>
<row>
<entry>CacheMode.GET</entry>
<entry>reads items from the second-level cache, but does not write to the second-level cache except to
update data.</entry>
</row>
<row>
<entry>CacheMode.PUT</entry>
<entry>writes items to the second-level cache. It does not read from the second-level cache. It bypasses
the effect of <property>hibernate.cache.use_minimal_puts</property> and forces a refresh of the
second-level cache for all items read from the database.</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>
<section>
<title>Browsing the contents of a second-level or query cache region</title>
<para>
After enabling statistics, you can browse the contents of a second-level cache or query cache region.
</para>
<procedure>
<title>Enabling Statistics</title>
<step>
<para>
Set <code>hibernate.generate_statistics</code> to <literal>true</literal>.
</para>
</step>
<step>
<para>
Optionally, set <code>hibernate.cache.use_structured_entries</code> to <literal>true</literal>, to cause
Hibernate to store the cache entries in a human-readable format.
</para>
</step>
</procedure>
<example>
<title>Browsing the second-level cache entries via the Statistics API</title> <programlisting language="Java"
role="JAVA"><xi:include href="extras/browsing_cache.java" xmlns:xi="http://www.w3.org/2001/XInclude"
parse="text" /></programlisting>
</example>
</section>
</section>
</section>
</chapter>

View File

@ -0,0 +1,13 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Test Chapter</title>
<para>
</para>
</chapter>

View File

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Criteria</title> <para> </para> </chapter>

View File

@ -0,0 +1,349 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Data categorizations</title>
<para>
Hibernate understands both the Java and JDBC representations of application data. The ability to read and write
object data to a database is called <firstterm>marshalling</firstterm>, and is the function of a Hibernate
<classname>type</classname>. A <classname>type</classname> is an implementation of the
<interfacename>org.hibernate.type.Type</interfacename> interface. A Hibernate <classname>type</classname> describes
various aspects of behavior of the Java type such as how to check for equality and how to clone values.
</para>
<note>
<title>Usage of the word <wordasword>type</wordasword></title>
<para>
A Hibernate <classname>type</classname> is neither a Java type nor a SQL datatype. It provides information about
both of these.
</para>
<para>
When you encounter the term <firstterm>type</firstterm> in regards to Hibernate, it may refer to the Java type,
the JDBC type, or the Hibernate type, depending on context.
</para>
</note>
<para>
Hibernate categorizes types into two high-level groups: <xref linkend="value-types" /> and <xref
linkend="entity-types" />.
</para>
<section id="value-types">
<title>Value types</title>
<para>
A <firstterm>value type</firstterm> does not define its own lifecycle. It is, in effect, owned by an <xref
linkend="entity-types" />, which defines its
lifecycle. Value types are further classified into three sub-categories.
</para>
<itemizedlist>
<listitem><para><xref linkend="value-basic-types" /></para></listitem>
<listitem><para><xref linkend="value-composite-types" /></para></listitem>
<listitem><para><xref linkend="value-collection-types" /></para></listitem>
</itemizedlist>
<section id="value-basic-types">
<title>Basic types</title>
<para>
Basic value types usually map a single database value, or column, to a single, non-aggregated Java
type. Hibernate provides a number of built-in basic types, which follow the natural mappings recommended in the
JDBC specifications. You can override these mappings and provide and use alternative mappings. These topics are
discussed further on.
</para>
<table>
<title>Basic Type Mappings</title>
<tgroup cols="4">
<thead>
<row>
<entry>Hibernate type</entry>
<entry>Database type</entry>
<entry>JDBC type</entry>
<entry>Type registry</entry>
</row>
</thead>
<tbody>
<row>
<entry>org.hibernate.type.StringType</entry>
<entry>string</entry>
<entry>VARCHAR</entry>
<entry>string, java.lang.String</entry>
</row>
<row>
<entry>org.hibernate.type.MaterializedClob</entry>
<entry>string</entry>
<entry>CLOB</entry>
<entry>materialized_clob</entry>
</row>
<row>
<entry>org.hibernate.type.TextType</entry>
<entry>string</entry>
<entry>LONGVARCHAR</entry>
<entry>text</entry>
</row>
<row>
<entry>org.hibernate.type.CharacterType</entry>
<entry>char, java.lang.Character</entry>
<entry>CHAR</entry>
<entry>char, java.lang.Character</entry>
</row>
<row>
<entry>org.hibernate.type.BooleanType</entry>
<entry>boolean</entry>
<entry>BIT</entry>
<entry>boolean, java.lang.Boolean</entry>
</row>
<row>
<entry>org.hibernate.type.NumericBooleanType</entry>
<entry>boolean</entry>
<entry>INTEGER, 0 is false, 1 is true</entry>
<entry>numeric_boolean</entry>
</row>
<row>
<entry>org.hibernate.type.YesNoType</entry>
<entry>boolean</entry>
<entry>CHAR, 'N'/'n' is false, 'Y'/'y' is true. The uppercase value is written to the database.</entry>
<entry>yes_no</entry>
</row>
<row>
<entry>org.hibernate.type.TrueFalseType</entry>
<entry>boolean</entry>
<entry>CHAR, 'F'/'f' is false, 'T'/'t' is true. The uppercase value is written to the database.</entry>
<entry>true_false</entry>
</row>
<row>
<entry>org.hibernate.type.ByteType</entry>
<entry>byte, java.lang.Byte</entry>
<entry>TINYINT</entry>
<entry>byte, java.lang.Byte</entry>
</row>
<row>
<entry>org.hibernate.type.ShortType</entry>
<entry>short, java.lang.Short</entry>
<entry>SMALLINT</entry>
<entry>short, java.lang.Short</entry>
</row>
<row>
<entry>org.hibernate.type.IntegerTypes</entry>
<entry>int, java.lang.Integer</entry>
<entry>INTEGER</entry>
<entry>int, java.lang.Integer</entry>
</row>
<row>
<entry>org.hibernate.type.LongType</entry>
<entry>long, java.lang.Long</entry>
<entry>BIGINT</entry>
<entry>long, java.lang.Long</entry>
</row>
<row>
<entry>org.hibernate.type.FloatType</entry>
<entry>float, java.lang.Float</entry>
<entry>FLOAT</entry>
<entry>float, java.lang.Float</entry>
</row>
<row>
<entry>org.hibernate.type.DoubleType</entry>
<entry>double, java.lang.Double</entry>
<entry>DOUBLE</entry>
<entry>double, java.lang.Double</entry>
</row>
<row>
<entry>org.hibernate.type.BigIntegerType</entry>
<entry>java.math.BigInteger</entry>
<entry>NUMERIC</entry>
<entry>big_integer</entry>
</row>
<row>
<entry>org.hibernate.type.BigDecimalType</entry>
<entry>java.math.BigDecimal</entry>
<entry>NUMERIC</entry>
<entry>big_decimal, java.math.bigDecimal</entry>
</row>
<row>
<entry>org.hibernate.type.TimestampType</entry>
<entry>java.sql.Timestamp</entry>
<entry>TIMESTAMP</entry>
<entry>timestamp, java.sql.Timestamp</entry>
</row>
<row>
<entry>org.hibernate.type.TimeType</entry>
<entry>java.sql.Time</entry>
<entry>TIME</entry>
<entry>time, java.sql.Time</entry>
</row>
<row>
<entry>org.hibernate.type.DateType</entry>
<entry>java.sql.Date</entry>
<entry>DATE</entry>
<entry>date, java.sql.Date</entry>
</row>
<row>
<entry>org.hibernate.type.CalendarType</entry>
<entry>java.util.Calendar</entry>
<entry>TIMESTAMP</entry>
<entry>calendar, java.util.Calendar</entry>
</row>
<row>
<entry>org.hibernate.type.CalendarDateType</entry>
<entry>java.util.Calendar</entry>
<entry>DATE</entry>
<entry>calendar_date</entry>
</row>
<row>
<entry>org.hibernate.type.CurrencyType</entry>
<entry>java.util.Currency</entry>
<entry>VARCHAR</entry>
<entry>currency, java.util.Currency</entry>
</row>
<row>
<entry>org.hibernate.type.LocaleType</entry>
<entry>java.util.Locale</entry>
<entry>VARCHAR</entry>
<entry>locale, java.utility.locale</entry>
</row>
<row>
<entry>org.hibernate.type.TimeZoneType</entry>
<entry>java.util.TimeZone</entry>
<entry>VARCHAR, using the TimeZone ID</entry>
<entry>timezone, java.util.TimeZone</entry>
</row>
<row>
<entry>org.hibernate.type.UrlType</entry>
<entry>java.net.URL</entry>
<entry>VARCHAR</entry>
<entry>url, java.net.URL</entry>
</row>
<row>
<entry>org.hibernate.type.ClassType</entry>
<entry>java.lang.Class</entry>
<entry>VARCHAR, using the class name</entry>
<entry>class, java.lang.Class</entry>
</row>
<row>
<entry>org.hibernate.type.BlobType</entry>
<entry>java.sql.Blob</entry>
<entry>BLOB</entry>
<entry>blog, java.sql.Blob</entry>
</row>
<row>
<entry>org.hibernate.type.ClobType</entry>
<entry>java.sql.Clob</entry>
<entry>CLOB</entry>
<entry>clob, java.sql.Clob</entry>
</row>
<row>
<entry>org.hibernate.type.BinaryType</entry>
<entry>primitive byte[]</entry>
<entry>VARBINARY</entry>
<entry>binary, byte[]</entry>
</row>
<row>
<entry>org.hibernate.type.MaterializedBlobType</entry>
<entry>primitive byte[]</entry>
<entry>BLOB</entry>
<entry>materized_blob</entry>
</row>
<row>
<entry>org.hibernate.type.ImageType</entry>
<entry>primitive byte[]</entry>
<entry>LONGVARBINARY</entry>
<entry>image</entry>
</row>
<row>
<entry>org.hibernate.type.BinaryType</entry>
<entry>java.lang.Byte[]</entry>
<entry>VARBINARY</entry>
<entry>wrapper-binary</entry>
</row>
<row>
<entry>org.hibernate.type.CharArrayType</entry>
<entry>char[]</entry>
<entry>VARCHAR</entry>
<entry>characters, char[]</entry>
</row>
<row>
<entry>org.hibernate.type.CharacterArrayType</entry>
<entry>java.lang.Character[]</entry>
<entry>VARCHAR</entry>
<entry>wrapper-characters, Character[], java.lang.Character[]</entry>
</row>
<row>
<entry>org.hibernate.type.UUIDBinaryType</entry>
<entry>java.util.UUID</entry>
<entry>BINARY</entry>
<entry>uuid-binary, java.util.UUID</entry>
</row>
<row>
<entry>org.hibernate.type.UUIDCharType</entry>
<entry>java.util.UUID</entry>
<entry>CHAR, can also read VARCHAR</entry>
<entry>uuid-char</entry>
</row>
<row>
<entry>org.hibernate.type.PostgresUUIDType</entry>
<entry>java.util.UUID</entry>
<entry>PostgreSQL UUID, through Types#OTHER, which complies to the PostgreSQL JDBC driver
definition</entry>
<entry>pg-uuid</entry>
</row>
<row>
<entry>org.hibernate.type.SerializableType</entry>
<entry>implementors of java.lang.Serializable</entry>
<entry>VARBINARY</entry>
<entry> Unlike the other value types, multiple instances of this type are registered. It is registered
once under java.io.Serializable, and registered under the specific java.io.Serializable implementation
class names.</entry>
</row>
</tbody>
</tgroup>
</table>
</section>
<section id="value-composite-types">
<title>Composite types</title>
<para>
<firstterm>Composite types</firstterm>, or <firstterm>embedded types</firstterm>, as they are called by the Java
Persistence API, have traditionally been called <firstterm>components</firstterm> in Hibernate. All of these
terms mean the same thing.
</para>
<para>
Components represent aggregations of values into a single Java type. An example is an
<classname>Address</classname> class, which aggregates street, city, state, and postal code. A composite type
behaves in a similar way to an entity. They are each classes written specifically for an application. They may
both include references to other application-specific classes, as well as to collections and simple JDK
types. The only distinguishing factors are that a component does not have its own lifecycle or define an
identifier.
</para>
</section>
<section id="value-collection-types">
<title>Collection types</title>
<para>
A <firstterm>collection</firstterm> type refers to the data type itself, not its contents.
</para>
<para>
A Collection denotes a one-to-one or one-to-many relationship between tables of a database.
</para>
<para>
Refer to the chapter on Collections for more information on collections.
</para>
</section>
</section>
<section id="entity-types">
<title>Entity Types</title>
<para>
Entities are application-specific classes which correlate to rows in a table, using a unique identifier. Because
of the requirement for a unique identifier, ntities exist independently and define their own lifecycle. As an
example, deleting a Membership should not delete the User or the Group. For more information, see the chapter on
Persistent Classes.
</para>
</section>
<section>
<title>Implications of different data categorizations</title>
<para>
NEEDS TO BE WRITTEN
</para>
</section>
</chapter>

View File

@ -0,0 +1,610 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Database access</title>
<section>
<title>Connection</title>
<para>
Hibernate connects to databases on behalf of your applications. It can connect through a variety of different
machanisms, including:
</para>
<itemizedlist>
<listitem><para>Stand-alone built-in connection pool</para></listitem>
<listitem><para><classname>javax.sql.DataSource</classname></para></listitem>
<listitem><para>Two different third-party opensource JDBC connection pools:</para>
<itemizedlist>
<listitem><para>c3p0</para></listitem>
<listitem><para>proxool</para></listitem>
</itemizedlist>
</listitem>
</itemizedlist>
<note>
<para>
The built-in connection pool is not intended for production environments.
</para>
</note>
<section>
<title>Configuring database connections</title>
<para>
You can configure database connections using a properties file, an XML deployment descriptor, programmatically.
</para>
<example>
<title><filename>hibernate.properties</filename> for a c3p0 connection pool</title>
<programlisting><xi:include href="extras/hibernate.properties" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<example>
<title><filename>hibernate.cfg.xml</filename> for a connection to the bundled HSQL database</title>
<programlisting language="XML" role="XML"><xi:include href="extras/hibernate.cfg.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<note>
<para>
The DTD in the configuration file used in this example is required.
</para>
</note>
<warning>
<para>
Do not use the HSQL database for production.
</para>
</warning>
<section>
<title>Programatic configuration</title>
<para>
An instance of object <classname>org.hibernate.cfg.Configuration</classname> represents an entire set of
mappings of an application's Java types to an SQL database. The
<classname>org.hibernate.cfg.Configuration</classname> builds an immutable
<classname>org.hibernate.SessionFactory</classname>, and compiles the mappings from various XML mapping
files. You can specify the mapping files directly, or Hibernate can find them for you.
</para>
<example>
<title>Specifying the mapping files directly</title>
<para>
You can obtain a <classname>org.hibernate.cfg.Configuration</classname> instance by instantiating it
directly and specifying XML mapping documents. If the mapping files are in the classpath, use method
<methodname>addResource()</methodname>.
</para>
<programlisting language="Java" role="JAVA"><xi:include href="extras/specify_mapping_files_directly.java"
xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<example>
<title>Letting Hibernate find the mapping files for you</title>
<para>
The <methodname>addConfig()</methodname> method directs Hibernate to search the CLASSPATH for the mapping
files, eliminating hard-coded file names. In the following example, it searches for
<filename>org/hibernate/auction/Item.hbm.xml</filename> and
<filename>org/hibernate/auction/Bid.hbm.xml</filename>.
</para>
<programlisting language="Java" role="JAVA"><xi:include href="extras/letting_hibernate_find_mapping_files.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<example>
<title>Specifying configuration properties</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/specifying_configuration_properties_programmatically.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<itemizedlist>
<title>Other ways to configure Hibernate programmatically</title>
<listitem>
<para>
Pass an instance of <classname>java.util.Properties</classname> to
<classname>Configuration.setProperties()</classname>.
</para>
</listitem>
<listitem>
<para>
Set System properties using <command>java
-D<replaceable>property</replaceable>=<replaceable>value</replaceable></command>
</para>
</listitem>
</itemizedlist>
</section>
</section>
<section>
<title>Obtaining a JDBC connection</title>
<para>
After you configure the <xref linkend="hibernate-jdbc-properties" />, you can use method
<methodname>openSession</methodname> of class <classname>org.hibernate.SessionFactory</classname> to open
sessions. <programlisting language="Java" role="JAVA"><xi:include href="extras/opening_a_session.java"
xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</para>
<itemizedlist id="hibernate-jdbc-properties">
<title>Most important Hibernate JDBC properties</title>
<listitem><para>hibernate.connection.driver_class</para></listitem>
<listitem><para>hibernate.connection.url</para></listitem>
<listitem><para>hibernate.connection.username</para></listitem>
<listitem><para>hibernate.connection.password</para></listitem>
<listitem><para>hibernate.connection.pool_size</para></listitem>
</itemizedlist>
<para>
All Hibernate property names and semantics are defined in class
<classname>org.hibernate.cfg.Environment</classname>. See the Javadoc for a complete listing.
</para>
</section>
</section>
<section>
<title>Connection pooling</title>
<para>
Hibernate's internal connection pooling algorithm is rudimentary, and is provided for development and testing
purposes. Use a third-party pool for best performance and stability. To use a third-party pool, replace the
<property>hibernate.connection.pool_size property</property> with settings specific to your connection pool of
choice. This disables Hibernate's internal connection pool.
</para>
<section>
<title>c3p0 connection pool</title>
<para>
C3P0 is an open source JDBC connection pool distributed along with Hibernate in the <filename>lib/</filename>
directory. Hibernate uses its <classname>org.hibernate.connection.C3P0ConnectionProvider</classname> for
connection pooling if you set the <property>hibernate.c3p0.*</property> properties. properties.
</para>
<itemizedlist>
<title>Important configuration properties for the c3p0 connection pool</title>
<listitem><para>hibernate.c3p0.min_size</para></listitem>
<listitem><para>hibernate.c3p0.max_size</para></listitem>
<listitem><para>hibernate.c3p0.timeout</para></listitem>
<listitem><para>hibernate.c3p0.max_statements</para></listitem>
</itemizedlist>
</section>
<section>
<title>Proxool connection pool</title>
<para>
Proxool is another open source JDBC connection pool distributed along with Hibernate in the
<filename>lib/</filename> directory. Hibernate uses its
<classname>org.hibernate.connection.ProxoolConnectionProvider</classname> for connection pooling if you set the
<property>hibernate.proxool.*</property> properties. Unlike c3p0, proxool requires some additional configuration
parameters, as described by the Proxool documentation available at <ulink
url="http://proxool.sourceforge.net/configure.html" />.
</para>
<table>
<title>Important configuration properties for the Proxool connection pool</title>
<tgroup cols="2">
<colspec colwidth="120px" />
<colspec colwidth="320px" />
<thead>
<row>
<entry>Property</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>hibernate.proxool.xml</entry>
<entry>Configure Proxool provider using an XML file (.xml is appended automatically)</entry>
</row>
<row>
<entry>hibernate.proxool.properties</entry>
<entry>Configure the Proxool provider using a properties file (.properties is appended
automatically)</entry>
</row>
<row>
<entry>hibernate.proxool.existing_pool</entry>
<entry>Whether to configure the Proxool provider from an existing pool</entry>
</row>
<row>
<entry>hibernate.proxool.pool_alias</entry>
<entry>Proxool pool alias to use. Required.</entry>
</row>
</tbody>
</tgroup>
</table>
</section>
<section>
<title>Obtaining connections from an application server, using JNDI</title>
<para>
To use Hibernate inside an application server, configure Hibernate to obtain connections from an application
server <classname>javax.sql.Datasource</classname> registered in JNDI, by setting at least one of the following
properties:
</para>
<itemizedlist>
<title>Important Hibernate properties for JNDI datasources</title>
<listitem><para>hibernate.connection.datasource (required)</para></listitem>
<listitem><para>hibernate.jndi.url</para></listitem>
<listitem><para>hibernate.jndi.class</para></listitem>
<listitem><para>hibernate.connection.username</para></listitem>
<listitem><para>hibernate.connection.password</para></listitem>
</itemizedlist>
<para>
JDBC connections obtained from a JNDI datasource automatically participate in the container-managed transactions
of the application server.
</para>
</section>
<section>
<title>Other connection-specific configuration</title>
<para>
You can pass arbitrary connection properties by prepending <literal>hibernate.connection</literal> to the
connection property name. For example, specify a charSet connection property as
<property>hibernate.connection.charSet</property>.
</para>
<para>
You can define your own plugin strategy for obtaining JDBC connections by implementing the interface
<interfacename>org.hibernate.connection.ConnectionProvider</interfacename> and specifying your custom
implementation with the <property>hibernate.connection.provider_class</property> property.
</para>
</section>
<section>
<title>Optional configuration properties</title>
<para>
In addition to the properties mentioned in the previous sections, Hibernate includes many other optional
properties. See <xref linkend="appendix-Configuration_Properties" /> for a more complete list.
</para>
</section>
</section>
<section id="configuring-dialects">
<title>Dialects</title>
<para>
Although SQL is relatively standardized, each database vendor uses a subset of supported syntax. This is reffered
to as a <firstterm>dialect</firstterm>.
</para>
<para>
Always set the <property>hibernate.dialect</property> property to the correct
<classname>org.hibernate.dialect.Dialect</classname> subclass for your database. If you specify a dialect,
Hibernate uses sensible defaults for some of the other properties listed above, saving you the effort of setting
them manually.
</para>
<table>
<title>Supported database dialects</title>
<tgroup cols="2">
<colspec colwidth="120px" />
<colspec colwidth="320px" />
<thead>
<row>
<entry>Database</entry>
<entry>Dialect</entry>
</row>
</thead>
<tbody>
<row>
<entry>DB2</entry>
<entry>org.hibernate.dialect.DB2Dialect</entry>
</row>
<row>
<entry>DB2 AS/400</entry>
<entry>org.hibernate.dialect.DB2400Dialect</entry>
</row>
<row>
<entry>DB2 OS390</entry>
<entry>org.hibernate.dialect.DB2390Dialect</entry>
</row>
<row>
<entry>Firebird</entry>
<entry>org.hibernate.dialect.FirebirdDialect</entry>
</row>
<row>
<entry>FrontBase</entry>
<entry>org.hibernate.dialect.FrontbaseDialect</entry>
</row>
<row>
<entry>HypersonicSQL</entry>
<entry>org.hibernate.dialect.HSQLDialect</entry>
</row>
<row>
<entry>Informix</entry>
<entry>org.hibernate.dialect.InformixDialect</entry>
</row>
<row>
<entry>Interbase</entry>
<entry>org.hibernate.dialect.InterbaseDialect</entry>
</row>
<row>
<entry>Ingres</entry>
<entry>org.hibernate.dialect.IngresDialect</entry>
</row>
<row>
<entry>Microsoft SQL Server</entry>
<entry>org.hibernate.dialect.SQLServerDialect</entry>
</row>
<row>
<entry>Mckoi SQL</entry>
<entry>org.hibernate.dialect.MckoiDialect</entry>
</row>
<row>
<entry>MySQL</entry>
<entry>org.hibernate.dialect.MySQLDialect</entry>
</row>
<row>
<entry>MySQL with InnoDB</entry>
<entry>org.hibernate.dialect.MySQLInnoDBDialect</entry>
</row>
<row>
<entry>MySQL with MyISAM</entry>
<entry>org.hibernate.dialect.MySQLMyISAMDialect</entry>
</row>
<row>
<entry>Oracle (any version)</entry>
<entry>org.hibernate.dialect.OracleDialect</entry>
</row>
<row>
<entry>Oracle 9i</entry>
<entry>org.hibernate.dialect.Oracle9iDialect</entry>
</row>
<row>
<entry>Oracle 10g</entry>
<entry>org.hibernate.dialect.Oracle10gDialect</entry>
</row>
<row>
<entry>Pointbase</entry>
<entry>org.hibernate.dialect.PointbaseDialect</entry>
</row>
<row>
<entry>PostgreSQL</entry>
<entry>org.hibernate.dialect.PostgreSQLDialect</entry>
</row>
<row>
<entry>Progress</entry>
<entry>org.hibernate.dialect.ProgressDialect</entry>
</row>
<row>
<entry>SAP DB</entry>
<entry>org.hibernate.dialect.SAPDBDialect</entry>
</row>
<row>
<entry>Sybase</entry>
<entry>org.hibernate.dialect.SybaseDialect</entry>
</row>
<row>
<entry>Sybase Anywhere</entry>
<entry>org.hibernate.dialect.SybaseAnywhereDialect</entry>
</row>
</tbody>
</tgroup>
</table>
</section>
<section>
<title>Automatic schema generation with SchemaExport</title>
<para>
SchemaExport is a Hibernate utility which generates DDL from your mapping files. The generated schema includes
referential integrity constraints, primary and foreign keys, for entity and collection tables. It also creates
tables and sequences for mapped identifier generators.
</para>
<note>
<para>
You must specify a SQL Dialect via the <property>hibernate.dialect</property> property when using this tool,
because DDL is highly vendor-specific. See <xref linkend="configuring-dialects" /> for information.
</para>
</note>
<para>
Before Hibernate can generate your schema, you must customize your mapping files.
</para>
<section>
<title>Customizing the mapping files</title>
<para>
Hibernate provides several elements and attributes to customize your mapping files. They are listed in <xref
linkend="tab-customizing-schema" />, and a logical order of customization is presented in <xref
linkend="proc-customizing-schema" />.
</para>
<table id="tab-customizing-schema">
<title>Elements and attributes provided for customizing mapping files</title>
<tgroup cols="3">
<colspec colwidth="80px" />
<colspec colwidth="80px" />
<colspec colwidth="280px" />
<thead>
<row>
<entry>Name</entry>
<entry>Type of value</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>length</entry>
<entry>number</entry>
<entry>Column length</entry>
</row>
<row>
<entry>precision</entry>
<entry>number</entry>
<entry>Decimal precision of column</entry>
</row>
<row>
<entry>scale</entry>
<entry>number</entry>
<entry>Decimal scale of column</entry>
</row>
<row>
<entry>not-null</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Whether a column is allowed to hold null values</entry>
</row>
<row>
<entry>unique</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Whether values in the column must be unique</entry>
</row>
<row>
<entry>index</entry>
<entry>string</entry>
<entry>The name of a multi-column index</entry>
</row>
<row>
<entry>unique-key</entry>
<entry>string</entry>
<entry>The name of a multi-column unique constraint</entry>
</row>
<row>
<entry>foreign-key</entry>
<entry>string</entry>
<entry>The name of the foreign key constraint generated for an association. This applies to
&lt;one-to-one&gt;, &lt;many-to-one&gt;, &lt;key&gt;, and &lt;many-to-many&gt; mapping
elements. <literal>inverse="true"</literal> sides are skipped by SchemaExport.</entry>
</row>
<row>
<entry>sql-type</entry>
<entry>string</entry>
<entry>Overrides the default column type. This applies to the &lt;column&gt; element only.</entry>
</row>
<row>
<entry>default</entry>
<entry>string</entry>
<entry>Default value for the column</entry>
</row>
<row>
<entry>check</entry>
<entry>string</entry>
<entry>An SQL check constraint on either a column or atable</entry>
</row>
</tbody>
</tgroup>
</table>
<procedure id="proc-customizing-schema">
<title>Customizing the schema</title>
<step>
<title>Set the length, precision, and scale of mapping elements.</title>
<para>
Many Hibernate mapping elements define optional attributes named <option>length</option>,
<option>precision</option>, and <option>scale</option>.
</para>
<programlisting language="XML" role="XML"><xi:include href="extras/length-precision-scale.xml" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</step>
<step>
<title>Set the <option>not-null</option>, <option>UNIQUE</option>, <option>unique-key</option> attributes.</title>
<para>
The <option>not-null</option> and <option>UNIQUE</option> attributes generate constraints on table columns.
</para>
<para>
The unique-key attribute groups columns in a single, unique key constraint. Currently, the specified value
of the unique-key attribute does not name the constraint in the generated DDL. It only groups the columns in
the mapping file.
</para>
<programlisting language="XML" role="XML"><xi:include href="extras/notnull-unique.xml" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</step>
<step>
<title>Set the <option>index</option> and <option>foreign-key</option> attributes.</title>
<para>
The <option>index</option> attribute specifies the name of an index for Hibernate to create using the mapped
column or columns. You can group multiple columns into the same index by assigning them the same index name.
</para>
<para>
A foreign-key attribute overrides the name of any generated foreign key constraint.
</para>
<programlisting language="XML" role="XML"><xi:include href="extras/foreign-key.xml" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</step>
<step>
<title>Set child <option>&lt;column&gt;</option> elements.</title>
<para>
Many mapping elements accept one or more child &lt;column&gt; elements. This is particularly useful for
mapping types involving multiple columns.
</para>
<programlisting language="XML" role="XML"><xi:include href="extras/child-column-elements.xml" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</step>
<step>
<title>Set the <option>default</option> attribute.</title>
<para>
The <option>default</option> attribute represents a default value for a column. Assign the same value to the
mapped property before saving a new instance of the mapped class.
</para>
<programlisting language="XML" role="XML"><xi:include href="extras/default-attribute.xml" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</step>
<step>
<title>Set the <option>sql-type</option> attribure.</title>
<para>
Use the <option>sql-type</option> attribute to override the default mapping of a Hibernate type to SQL
datatype.
</para>
<programlisting language="XML" role="XML"><xi:include href="extras/sql-type.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</step>
<step>
<title>Set the <option>check</option> attribute.</title>
<para>
use the <option>check</option> attribute to specify a <wordasword>check</wordasword> constraint.
</para>
<programlisting language="XML" role="XML"><xi:include href="extras/check.xml" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</step>
<step>
<title>Add &lt;comment&gt; elements to your schema.</title>
<para>
Use the &lt;comment&gt; element to specify comments for the generated schema.
</para>
<programlisting language="XML" role="XML"><xi:include href="extras/comments.xml" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</step>
</procedure>
</section>
<section>
<title>Running the SchemaExport tool</title>
<para>
The SchemaExport tool writes a DDL script to standard output, executes the DDL statements, or both.
</para>
<example>
<title>SchemaExport syntax</title>
<screen>
java -cp hibernate_classpaths org.hibernate.tool.hbm2ddl.SchemaExport <replaceable>options</replaceable> <replaceable>mapping_files</replaceable>
</screen>
</example>
<table>
<title>SchemaExport Options</title>
<tgroup cols="2">
<colspec colwidth="120px" />
<colspec colwidth="320px" />
<thead>
<row>
<entry>Option</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>--quiet</entry>
<entry>do not output the script to standard output</entry>
</row>
<row>
<entry>--drop</entry>
<entry>only drop the tables</entry>
</row>
<row>
<entry>--create</entry>
<entry>only create the tables</entry>
</row>
<row>
<entry>--text</entry>
<entry>do not export to the database</entry>
</row>
<row>
<entry><para>--output=<replaceable>my_schema.ddl</replaceable></para></entry>
<entry>output the ddl script to a file</entry>
</row>
<row>
<entry><para>--naming=<replaceable>eg.MyNamingStrategy</replaceable></para></entry>
<entry>select a NamingStrategy</entry>
</row>
<row>
<entry><para>--config=<replaceable>hibernate.cfg.xml</replaceable></para></entry>
<entry>read Hibernate configuration from an XML file</entry>
</row>
<row>
<entry><para>--properties=<replaceable>hibernate.properties</replaceable></para></entry>
<entry>read database properties from a file</entry>
</row>
<row>
<entry>--format</entry>
<entry>format the generated SQL nicely in the script</entry>
</row>
<row>
<entry><para>--delimiter=<replaceable>;</replaceable></para></entry>
<entry>set an end-of-line delimiter for the script</entry>
</row>
</tbody>
</tgroup>
</table>
<example>
<title>Embedding SchemaExport into your application</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/embedding_SchemaExport.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
</section>
</section>
</chapter>

View File

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter id="chap-hql">
<title>HQL and JPAQL</title> <para> </para> </chapter>

View File

@ -0,0 +1,4 @@
<!ENTITY PRODUCT "Hibernate">
<!ENTITY BOOKID "Hibernate_Development_Guide">
<!ENTITY YEAR "2011">
<!ENTITY HOLDER "Red Hat">

View File

@ -0,0 +1,26 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<book>
<xi:include href="Book_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Preface.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<!-- <xi:include href="Chapter.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />-->
<xi:include href="Database_Access.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Transactions.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Batch_Processing.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Locking.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Caching.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Data_Categorizations.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Mapping_Entities.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Mapping_Association.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="HQL_JPAQL.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Criteria.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Native_SQL.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="JMX.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="appendix-Configuration_Properties.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<index />
</book>

View File

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>JMX</title> <para> </para> </chapter>

View File

@ -0,0 +1,324 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Locking</title>
<para>
Locking refers to actions taken to prevent data in a relational database from changing between the time it is read
and the time that it is used.
</para>
<para>
Your locking strategy can be either <firstterm>optimistic</firstterm> or <firstterm>pessimistic</firstterm>.
</para>
<variablelist>
<title>Locking strategies</title>
<varlistentry>
<term>Optimistic</term>
<listitem>
<para>
Optimistic locking ssumes that multiple transactions can complete without affecting each other, and that
therefore transactions can proceed without locking the data resources that they affect. Before committing,
each transaction verifies that no other transaction has modified its data. If the check reveals conflicting
modifications, the committing transaction rolls back<footnote><para><ulink
url="http://en.wikipedia.org/wiki/Optimistic_locking" /></para></footnote>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Pessimistic</term>
<listitem>
<para>
Pessimistic locking assumes that concurrent transactions will conflict with each other, and requires resources
to be locked after they are read and only unlocked after the application has finished using the data.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
Hibernate provides mechanisms for implementing both types of locking in your applications.
</para>
<section>
<title>Optimistic</title>
<para>
When your application uses long transactions or conversations that span several database transactions, you can
store versioning data, so that if the same entity is updated by two conversations, the last to commit changes is
informed of the conflict, and does not override the other conversation's work. This approach guarantees some
isolation, but scales well and works particularly well in <firstterm>Read-Often Write-Sometimes</firstterm>
situations.
</para>
<para>
Hibernate provides two different mechanisms for storing versioning information, a dedicated version number or a
timestamp.
</para>
<variablelist>
<varlistentry>
<term>Version number</term>
<listitem>
<para>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Timestamp</term>
<listitem>
<para>
</para>
</listitem>
</varlistentry>
</variablelist>
<note>
<para>
A version or timestamp property can never be null for a detached instance. Hibernate detects any instance with a
null version or timestamp as transient, regardless of other unsaved-value strategies that you specify. Declaring
a nullable version or timestamp property is an easy way to avoid problems with transitive reattachment in
Hibernate, especially useful if you use assigned identifiers or composite keys.
</para>
</note>
<section>
<title>Dedicated version number</title>
<para>
The version number mechanism for optimistic locking is provided through a <literal>@Version</literal>
annotation.
</para>
<example>
<title>The @Version annotation</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/version_annotation.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
<para>
Here, the version property is mapped to the <literal>OPTLOCK</literal> column, and the entity manager uses it
to detect conflicting updates, and prevent the loss of updates that would be overwritten by a
<firstterm>last-commit-wins</firstterm> strategy.
</para>
</example>
<para>
The version column can be any kind of type, as long as you define and implement the appropriate
<classname>UserVersionType</classname>.
</para>
<para>
Your application is forbidden from altering the version number set by Hibernate. To artificially increase the
version number, see the documentation for properties
<property>LockModeType.OPTIMISTIC_FORCE_INCREMENT</property> or
<property>LockModeType.PESSIMISTIC_FORCE_INCREMENTcheck</property> in the Hibernate Entity Manager reference
documentation.
</para>
<note>
<title>Database-generated version numbers</title>
<para>
If the version number is generated by the database, such as a trigger, use the annotation
<literal>@org.hibernate.annotations.Generated(GenerationTime.ALWAYS)</literal>.
</para>
</note>
<example>
<title>Declaring a version property in <filename>hbm.xml</filename></title>
<programlisting language="XML" role="XML"><xi:include href="extras/version_property.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
<informaltable>
<tgroup cols="2">
<tbody>
<row>
<entry>column</entry>
<entry><para>The name of the column holding the version number. Optional, defaults to the property
name. </para></entry>
</row>
<row>
<entry>name</entry>
<entry><para>The name of a property of the persistent class.</para></entry>
</row>
<row>
<entry>type</entry>
<entry><para>The type of the version number. Optional, defaults to
<literal>integer</literal>.</para></entry>
</row>
<row>
<entry>access</entry>
<entry><para>Hibernate's strategy for accessing the property value. Optional, defaults to
<literal>property</literal>.</para></entry>
</row>
<row>
<entry>unsaved-value</entry>
<entry><para>Indicates that an instance is newly instantiated and thus unsaved. This distinguishes it
from detached instances that were saved or loaded in a previous session. The default value,
<literal>undefined</literal>, indicates that the identifier property value should be
used. Optional.</para></entry>
</row>
<row>
<entry>generated</entry>
<entry><para>Indicates that the version property value is generated by the database. Optional, defaults
to <literal>never</literal>.</para></entry>
</row>
<row>
<entry>insert</entry>
<entry><para>Whether or not to include the <code>version</code> column in SQL <code>insert</code>
statements. Defaults to <literal>true</literal>, but you can set it to <literal>false</literal> if the
database column is defined with a default value of <literal>0</literal>.</para></entry>
</row>
</tbody>
</tgroup>
</informaltable>
</example>
</section>
<section>
<title>Timestamp</title>
<para>
Timestamps are a less reliable way of optimistic locking than version numbers, but can be used by applications
for other purposes as well. Timestamping is automatically used if you the <code>@Version</code> annotation on a
<type>Date</type> or <type>Calendar</type>.
</para>
<example>
<title>Using timestamps for optimistic locking</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/timestamp_version.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<para>
Hibernate can retrieve the timestamp value from the database or the JVM, by reading the value you specify for
the <code>@org.hibernate.annotations.Source</code> annotation. The value can be either
<literal>org.hibernate.annotations.SourceType.DB</literal> or
<literal>org.hibernate.annotations.SourceType.VM</literal>. The default behavior is to use the database, and is
also used if you don't specify the annotation at all.
</para>
<para>
The timestamp can also be generated by the database instead of Hibernate, if you use the
<code>@org.hibernate.annotations.Generated(GenerationTime.ALWAYS)</code> annotation.
</para>
<example>
<title>The timestamp element in <filename>hbm.xml</filename></title>
<programlisting language="XML" role="XML"><xi:include href="extras/timestamp_version.xml"
xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
<informaltable>
<tgroup cols="2">
<tbody>
<row>
<entry>column</entry>
<entry><para>The name of the column which holds the timestamp. Optional, defaults to the property
namel</para></entry>
</row>
<row>
<entry>name</entry>
<entry><para>The name of a JavaBeans style property of Java type Date or Timestamp of the persistent
class.</para></entry>
</row>
<row>
<entry>access</entry>
<entry><para>The strategy Hibernate uses to access the property value. Optional, defaults to
<literal>property</literal>.</para></entry>
</row>
<row>
<entry>unsaved-value</entry> <entry><para>A version property which indicates than instance is newly
instantiated, and unsaved. This distinguishes it from detached instances that were saved or loaded in a
previous session. The default value of <literal>undefined</literal> indicates that Hibernate uses the
identifier property value.</para></entry>
</row>
<row>
<entry>source</entry>
<entry><para>Whether Hibernate retrieves the timestamp from the database or the current
JVM. Database-based timestamps incur an overhead because Hibernate needs to query the database each time
to determine the incremental next value. However, database-derived timestamps are safer to use in a
clustered environment. Not all database dialects are known to support the retrieval of the database's
current timestamp. Others may also be unsafe for locking, because of lack of precision.</para></entry>
</row>
<row>
<entry>generated</entry>
<entry><para>Whether the timestamp property value is generated by the database. Optional, defaults to
<literal>never</literal>.</para></entry>
</row>
</tbody>
</tgroup>
</informaltable>
</example>
</section>
</section>
<section>
<title>Pessimistic</title>
<para>
Typically, you only need to specify an isolation level for the JDBC connections and let the database handle
locking issues. If you do need to obtain exclusive pessimistic locks or re-obtain locks at the start of a new
transaction, Hibernate gives you the tools you need.
</para>
<note>
<para>
Hibernate always uses the locking mechanism of the database, and never lock objects in memory.
</para>
</note>
<section>
<title>The <classname>LockMode</classname> class</title>
<para>
The <classname>LockMode</classname> class defines the different lock levels that Hibernate can acquire.
</para>
<informaltable>
<tgroup cols="2">
<tbody>
<row>
<entry>LockMode.WRITE</entry>
<entry><para>acquired automatically when Hibernate updates or inserts a row.</para></entry>
</row>
<row>
<entry>LockMode.UPGRADE</entry>
<entry><para>acquired upon explicit user request using <code>SELECT ... FOR UPDATE</code> on databases
which support that syntax.</para></entry>
</row>
<row>
<entry>LockMode.UPGRADE_NOWAIT</entry>
<entry><para>acquired upon explicit user request using a <code>SELECT ... FOR UPDATE NOWAIT</code> in
Oracle.</para></entry>
</row>
<row>
<entry>LockMode.READ</entry>
<entry><para>acquired automatically when Hibernate reads data under <phrase>Repeatable Read</phrase> or
<phrase>Serializable</phrase> isolation level. It can be re-acquired by explicit user
request.</para></entry>
</row>
<row>
<entry>LockMode.NONE</entry>
<entry><para>The absence of a lock. All objects switch to this lock mode at the end of a
Transaction. Objects associated with the session via a call to <methodname>update()</methodname> or
<methodname>saveOrUpdate()</methodname> also start out in this lock mode. </para></entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>
The explicit user request mentioned above occurs as a consequence of any of the following actions:
</para>
<itemizedlist>
<listitem>
<para>
A call to <methodname>Session.load()</methodname>, specifying a LockMode.
</para>
</listitem>
<listitem>
<para>
A call to <methodname>Session.lock()</methodname>.
</para>
</listitem>
<listitem>
<para>
A call to <methodname>Query.setLockMode()</methodname>.
</para>
</listitem>
</itemizedlist>
<para>
If you call <methodname>Session.load()</methodname> with option <option>UPGRADE</option> or
<option>UPGRADE_NOWAIT</option>, and the requested object is not already loaded by the session, the object is
loaded using <code>SELECT ... FOR UPDATE</code>. If you call <methodname>load()</methodname> for an object that
is already loaded with a less restrictive lock than the one you request, Hibernate calls
<methodname>lock()</methodname> for that object.
</para>
<para>
<methodname>Session.lock()</methodname> performs a version number check if the specified lock mode is
<literal>READ</literal>, <literal>UPGRADE</literal>, or <literal>UPGRADE_NOWAIT</literal>. In the case of
<literal>UPGRADE</literal> or <literal>UPGRADE_NOWAIT</literal>, <code>SELECT ... FOR UPDATE</code> syntax is
used.
</para>
<para>
If the requested lock mode is not supported by the database, Hibernate uses an appropriate alternate mode
instead of throwing an exception. This ensures that applications are portable.
</para>
</section>
</section>
</chapter>

View File

@ -0,0 +1,14 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Mapping associations</title>
<para>
The most basic form of mapping in Hibernate is mapping a persistent entity class to a database table. You can expand
on this concept by mapping associated classes together. <xref linkend="mapping-person" /> shows a
<classname>Person</classname> class with a
</para>
</chapter>

View File

@ -0,0 +1,10 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Mapping entities</title>
<section>
<title>Hierarchies</title> <para> </para> </section> </chapter>

View File

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Native-SQL</title> <para> </para> </chapter>

View File

@ -0,0 +1,13 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE preface PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<preface id="pref-Hibernate_Development_Guide-Preface">
<title>Preface</title>
<xi:include href="Common_Content/Conventions.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
<xi:include href="Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude"><xi:fallback xmlns:xi="http://www.w3.org/2001/XInclude"><xi:include href="Common_Content/Feedback.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
</xi:fallback>
</xi:include>
</preface>

View File

@ -0,0 +1,27 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<appendix id="appe-Hibernate_Development_Guide-Revision_History">
<title>Revision History</title>
<simpara>
<revhistory>
<revision>
<revnumber>0-0</revnumber>
<date>Mon Jan 17 2011</date>
<author>
<firstname>Dude</firstname>
<surname>McPants</surname>
<email>Dude.McPants@example.com</email>
</author>
<revdescription>
<simplelist>
<member>Initial creation of book by publican</member>
</simplelist>
</revdescription>
</revision>
</revhistory>
</simpara>
</appendix>

View File

@ -0,0 +1,398 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<chapter>
<title>Transactions and concurrency control</title>
<section>
<title>Defining a transaction</title>
<para>
A transaction, or unit of work, encompasses a group of potential decisions between your application and the datasources it
uses to store information. The role of a transaction is to ensure data integrity by causing the datasources to all
commit, or all roll back, in agreement with each other and your application.
</para>
<para>
An example of when transactions might be useful is a travel agency, which only charges a customer's credit card if
the plane tickets are available and the credit card has adequate funds to pay for the tickets. If the card is
charged, but the tickets are not available, data integrity is not maintained.
</para>
</section>
<section>
<title>How Hibernate uses transactions</title>
<para>
Hibernate uses JDBC connections and JTA resources directly, without adding any additional locking behavior. It is
important for you to become familiar with the JBDC, ANSI, and transaction isolation specification of your database
management system.
</para>
<para>
Hibernate does not lock objects in memory. The behavior defined by the isolation level of your database transactions
does not change when you use Hibernate. Through <classname>Session</classname>, which is also a transaction-scoped
cache, Hibernate provides repeatable reads for lookup by identifier and entity queries and not-reporting queries
that return scalar values.
</para>
</section>
<section>
<title>Transaction Scopes</title>
<para>
A <classname>SessionFactory</classname> is an expensive-to-create, thread-safe object, which all application
threads can share. It is created once, usually on application startup, from a <classname>Configuration</classname>
instance.
</para>
<para>
A <classname>Session</classname> is an inexpensive, non-thread-safe object. Use it once and then discard it. You
can use it for a single request, a conversation, or a single unit of work. A <classname>Session</classname> does
not obtain a JDBC Connection, or a Datasource, unless it is needed. It does not consume any resources until you
use it.
</para>
<para>
To reduce lock contention in the database, a database transaction needs to be as short as possible. Long database
transactions prevent your application from scaling to a highly-concurrent load. Do not hold a database transaction
open during user-level work, but open it after the user-level work is finished.
</para>
<section id="session-per-operation">
<title>Session-per-operation</title>
<subtitle>Antipatterns to avoid</subtitle>
<para>
<firstterm>Session-per-operation</firstterm> refers to the antipattern of opening and closing a
<classname>Session</classname> for each database call in a single thread. It is also an antipattern in terms of
database transactions. Group your database calls into a planned sequence. In the same way, do not auto-commit
after every SQL statement in your application. Hibernate disables, or expects the application server to disable,
auto-commit mode immediately. Database transactions are never optional. All communication with a database must
be encapsulated by a transaction. Avoid auto-commit behavior for reading data, because many small transactions
are unlikely to perform better than one clearly-defined unit of work, and are more difficult to maintain and
extend.
</para>
<para>
For more antipatterns to avoid, see <xref linkend="transaction-antipatterns" />.
</para>
</section>
<section>
<title>Session-per-request</title>
<subtitle>The typical desired pattern</subtitle>
<para>
The most common pattern in a multi-user client/server application is
<firstterm>session-per-request</firstterm>. In this model, a client sends a request to the server, where the
Hibernate persistence layer is running. Hibernate opens a new Session, and all database operations are executed
in this unit of work. After the work is completed, and the server prepares the response for the client, the
session is flushed and closed. Use a single database transaction to serve the clients request, starting and
committing it when you open and close the Session. The relationship between the transaction and the Session is
one-to-one.
</para>
<para>
Hibernate provides built-in management of the <firstterm>current session</firstterm> to
simplify the session-per-request pattern. Start a transaction to process a server request, and end the transaction
before sending the response to the client. Common solutions include:
</para>
<itemizedlist>
<listitem>
<para>
ServletFilter
</para>
</listitem>
<listitem>
<para>
AOP interceptor with a pointcut on the service methods
</para>
</listitem>
<listitem>
<para>
A proxy/interception container
</para>
</listitem>
</itemizedlist>
<para>
An EJB container is a standardized way to implement cross-cutting aspects such as transaction demarcation on EJB
session beans, declaratively with CMT. If you use programmatic transaction demarcation, use the <xref
linkend="hibernate-transaction-api" />.
</para>
<para>
To access a current session to process the request, call method
<methodname>sessionFactory.getCurrentSession()</methodname>. The returned <classname>Session</classname> is
scoped to the current database transaction. You need to configure this for either resource-local or JTA
environments
</para>
<para>
You can extend the scope of a <classname>Session</classname> and database transaction until the view is
rendered. This is especially useful in servlet applications that include a separate rendering phase after the
request is processed. To extending the database transaction until view rendering, implement your own
interceptor. This implementation is difficult if you rely on EJBs with container-managed transactions. A
transaction is completed when an EJB method returns, before rendering of any view can start. Search the
Hibernate forums for tips and examples relating to this <phrase>Open Session in View</phrase> pattern.
</para>
<para>
If <phrase>session-per-request</phrase> does not seem well-suited for your application, refer to <xref
linkend="long-conversations" /> for another choice.
</para>
</section>
<section id="long-conversations">
<title>Conversations</title>
<subtitle>An alternate pattern to <phrase>session-per-request</phrase></subtitle>
<para>
The <phrase>session-per-request</phrase> pattern is not the only way of designing units of work. Many business
processes require a whole series of interactions with the user that are interleaved with database accesses. In web
and enterprise applications, it is not acceptable for a database transaction to span a user interaction. Consider
the following example:
</para>
<procedure>
<title>An example of a long-running conversation</title>
<step>
<para>
The first screen of a dialog opens. The data seen by the user is loaded in a particular
<classname>Session</classname> and database transaction. The user is free to modify the objects.
</para>
</step>
<step>
<para>
The user uses a UI element to save their work after five minutes of editing. The modifications are made
persistent. The user also expects to have exclusive access to the data during the edit session.
</para>
</step>
</procedure>
<para>
From the point of view of the user, this unit of work is a long-running conversation or application
transaction. There are many ways to implement this in your application.
</para>
<para>
A first naive implementation might keep the <classname>Session</classname> and database transaction open while the
user is editing, using database-level locks to prevent other users from modifying the same data and to guarantee
isolation and atomicity. This is an anti-pattern, because lock contention is a bottleneck which will prevent
scalability in the future.
</para>
<para>
Several database transactions are used to implement the conversation. In this case, maintaining isolation
of business processes becomes the partial responsibility of the application tier. A single conversation usually
spans several database transactions. It is atomic if only one of these database transactions, typically the last one,
stores the updated data. All others only read data. A common way to receive this data is through a wizard-style
dialog spanning several request/response cycles. Hibernate includes some features which make this easy to implement.
</para>
<informaltable>
<tgroup cols="2">
<tbody>
<row>
<entry>
<para>
Automatic Versioning
</para>
</entry>
<entry>
<para>
Hibernate can perform automatic optimistic concurrency control for you. It can automatically detect if a
concurrent modification occurred during user think time. Check for this at the end of the conversation.
</para>
</entry>
</row>
<row>
<entry>
<para>
Detached Objects
</para>
</entry>
<entry>
<para>
If you decide to use the session-per-request pattern, all loaded instances will be in
the detached state during user think time. Hibernate allows you to reattach the objects and persist the
modifications. The pattern is called session-per-request-with-detached-objects. Automatic versioning is
used to isolate concurrent modifications.
</para>
</entry>
</row>
<row>
<entry>
<para>
Extended (or Long) Session
</para>
</entry>
<entry>
<para>
Extended (or Long) Session: the Hibernate Session can be disconnected from the underlying JDBC
connection after the database transaction has been committed and reconnected when a new client request
occurs. This pattern is known as session-per-conversation and makes even reattachment
unnecessary. Automatic versioning is used to isolate concurrent modifications and the Session will not
be allowed to be flushed automatically, but explicitly.
</para>
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>
<phrase>Session-per-request-with-detached-objects</phrase> and <phrase>session-per-conversation</phrase> each have
advantages and disadvantages.
</para>
</section>
<section>
<title>Object identity</title>
<para>
An application can concurrently access the same persistent state in two different Sessions. However, an instance
of a persistent class is never shared between two <classname>Session</classname> instances. Therefore, two
different notions of identity exist: Database identity and JVM identity.
</para>
<example>
<title>Database identity</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/database-identity.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<example>
<title>JVM identity</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/jvm-identity.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<para>
For objects attached to a particular Session, the two notions are equivalent, and JVM identity for database
identity is guaranteed by Hibernate. The application might concurrently access a business object with the same
identity in two different sessions, the two instances are actually actually different, in terms of JVM
identity. Conflicts are resolved using an optimistic approach and automatic versioning at flush/commit time.
</para>
<para>
This approach places responsibility for conscurrency on Hibernate and the database. It also provides the best
scalability, since expensive locking is not needed to guarantee identity in single-threaded units of work. The
application does not need to synchronize on any business object, as long as it maintains a single thread per
<classname>Session</classname>. Within a <classname>Session</classname> the application can safely use the
<literal>==</literal> operator to compare objects.
</para>
<para>
However, an application that uses the <literal>==</literal> operator outside of a <classname>Session</classname>
may introduce problems.. If you put two detached instances into the same <classname>Set</classname>, they might
use the same database identity, which means they represent the same row in the database. They would not be
guaranteed to have the same JVM identity if they are in a detached state. Override the
<methodname>equals</methodname> and <methodname>hashCode</methodname> methods in persistant classes, so that
they have their own notion of object equality. Never use the database identifier to implement equality. Instead,
use a business key that is a combination of unique, typically immutable, attributes. The database identifier
changes if a transient object is made persistent. If the transient instance, together with detached instances,
is held in a <classname>Set</classname>, changing the hashcode breaks the contract of the
<classname>Set</classname>. Attributes for business keys can be less stable than database primary keys. You only
need to guarantee stability as long as the objects are in the same <classname>Set</classname>.This is not a
Hibernate issue, but relates to Java's implementation of object identity and equality.
</para>
</section>
<section id="transaction-antipatterns">
<title>Problems and antipatterns</title>
<para>
Avoid the anti-patterns session-per-user-session or session-per-application, for the most part. The reasons are
outlined in <xref linkend="session-per-operation" />. In addition, keep the following points in mind when
choosing patterns for your application.
</para>
<variablelist>
<varlistentry>
<term>A <classname>Session</classname> is not thread-safe.</term>
<listitem>
<para>
Resources, such as HTTP requests, session beans, or Swing workers, cause race conditions if a
<classname>Session</classname> instance is shared. If you keep your Hibernate
<classname>Session</classname> in your <classname>HttpSession</classname>, consider synchronizing access
to your <classname>Http</classname> session. Otherwise, a reloaded application may use the same
<classname>Session</classname> in two concurrently-running threads.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>If Hibernate throws an exception, you must rullback your database transaction and close the
<classname>Session</classname> immediately.</term>
<listitem>
<para>
In addition to the above, if your Session is bound to the application, you must stop the
application. Rolling back the database transaction does not put your business objects back into their
state at the start of the transaction. The database state and the business objects will be out of
sync. Since exceptions are not recoverable, this is typically not a problem. You must start over after
rollback anyway.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>The Session caches every object that is in a persistent state.</term>
<listitem>
<para>
A persistent state refers to objects that are watched and checked for dirty state by Hibernate. If you
keep the cache open for a long time or load too much data, it grows to fill available memory, causing an
OutOfMemoryException.
</para>
<para>
To solve this problem, you can call <methodname>clear()</methodname> and <methodname>evict()</methodname>
to manage the <classname>Session</classname> cache. Alternately, you can use a Stored Procedure if you
need mass data operations. Keeping a <classname>Session</classname> open for the duration of a user
session reduces the probability of stale data.
</para>
</listitem>
</varlistentry>
</variablelist>
</section>
</section>
<section>
<title>Types</title>
<para>
</para>
</section>
<section id="hibernate-transaction-api">
<title>Hibernate Transaction API (JTA)</title>
<para>
If your persistence layer runs in an application server, such as behind EJB session beans, every datasource
connection obtained by Hibernate is automatically part of the global JTA transaction. You can also install a
standalone JTA implementation and use it without EJB. Hibernate offers two strategies for JTA integration.
</para>
<section>
<title>Bean-managed transactions (BMT)</title>
<para>
If you use bean-managed transactions (BMT), Hibernate tells the application server to start and end a BMT
transaction if you use the Transaction API. The transaction management code is identical to the non-managed
environment.
</para>
<example>
<title>BMT idiom</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/bmt-idiom.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<para>
Alternately, you can use a transaction-bound Session. If you need the
<methodname>getCurrentSession()</methodname> functionality for easy context propagation, use the JTA
UserTransaction API directly.
</para>
<example>
<title>BMT idiom with <methodname>getCurrentSession()</methodname></title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/transaction-bound-Session.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
</section>
<section>
<title>Container-managed transactions (CMT)</title>
<para>
With CMT, transaction demarcation is completed in session bean deployment descriptors, rather than
programmatically.This reduces the amount of code.
</para>
<example>
<title>CMT idiom</title>
<programlisting language="Java" role="JAVA"><xi:include href="extras/cmt-idiom.java" xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" /></programlisting>
</example>
<para>
In a CMT/EJB, rollback happens automatically as well. An unhandled <systemitem>RuntimeException</systemitem>
thrown by a session bean method tells the container to set the global transaction to rollback. You do not need
to intervene, and you get automatic propagation of the <classname>Current</classname>
<classname>Session</classname> bound to the transaction.
</para>
<para>
When configuring Hibernate's transaction factory, choose
<classname>org.hibernate.transaction.JTATransactionFactory</classname> if you use JTA directly (BMT), and
<classname>org.hibernate.transaction.CMTTransactionFactory</classname> in a CMT session bean. Set the
<varname>hibernate.transaction.manager_lookup_class</varname> property as well. Ensure that your
<classname>hibernate.current_session_context_class</classname> is either unset, or is set to
<literal>jta</literal>.
</para>
<para>
The <methodname>getCurrentSession()</methodname> method has one downside in a JTA environment. If you use it,
after_statement connection release mode is also used by default. Due to a limitation of the JTA specification,
Hibernate cannot automatically clean up any unclosed <classname>ScrollableResults</classname> or
<classname>Iterator</classname> instances returned by <methodname>scroll()</methodname> or
<methodname>iterate()</methodname>. Release the underlying database cursor by calling
<methodname>ScrollableResults.close()</methodname> or <methodname>Hibernate.close(Iterator)</methodname>
explicitly from a <systemitem>finally</systemitem> block. Try to avoid using <methodname>scroll()</methodname>
or <methodname>iterate()</methodname> from the JTA or CMT code.
</para>
</section>
</section>
</chapter>

View File

@ -0,0 +1,367 @@
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE appendix PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % BOOK_ENTITIES SYSTEM "Hibernate_Development_Guide.ent">
%BOOK_ENTITIES;
]>
<appendix id="appendix-Configuration_Properties">
<title>Configuration properties</title>
<section>
<title>General Configuration</title>
<informaltable>
<tgroup cols="3">
<colspec colwidth="100px" />
<colspec colwidth="120px" />
<colspec colwidth="250px" />
<tbody>
<row>
<entry>hibernate.dialect</entry>
<entry>A fully-qualified classname</entry>
<entry>
<para>
The classname of a Hibernate <classname>org.hibernate.dialect.Dialect</classname> from which Hibernate
can generate SQL optimized for a particular relational database.
</para>
<para>
In most cases Hibernate can choose the correct <classname>org.hibernate.dialect.Dialect</classname>
implementation based on the JDBC metadata returned by the JDBC driver.
</para>
</entry>
</row>
<row>
<entry>hibernate.show_sql</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Write all SQL statements to the console. This is an alternative to setting the log category
<property>org.hibernate.SQL</property> to debug.</entry>
</row>
<row>
<entry>hibernate.format_sql</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Pretty-print the SQL in the log and console.</entry>
</row>
<row>
<entry>hibernate.default_schema</entry>
<entry>A schema name</entry>
<entry>Qualify unqualified table names with the given schema or tablespace in generated SQL.</entry>
</row>
<row>
<entry>hibernate.default_catalog</entry>
<entry>A catalog name</entry>
<entry>Qualifies unqualified table names with the given catalog in generated SQL.</entry>
</row>
<row>
<entry>hibernate.session_factory_name</entry>
<entry>A JNDI name</entry>
<entry>The <classname>org.hibernate.SessionFactory</classname> is automatically bound to this name in JNDI
after it is created.</entry>
</row>
<row>
<entry>hibernate.max_fetch_depth</entry>
<entry>A value between <literal>0</literal> and <literal>3</literal></entry>
<entry>Sets a maximum depth for the outer join fetch tree for single-ended associations. A single-ended
assocation is a one-to-one or many-to-one assocation. A value of <literal>0</literal> disables default outer
join fetching.</entry>
</row>
<row>
<entry>hibernate.default_batch_fetch_size</entry>
<entry><para><literal>4</literal>,<literal>8</literal>, or <literal>16</literal></para></entry>
<entry>Default size for Hibernate batch fetching of associations.</entry>
</row>
<row>
<entry>hibernate.default_entity_mode</entry>
<entry><para>One of <literal>dynamic-map</literal>, <literal>dom4j</literal>,
<literal>pojo</literal></para></entry>
<entry>Default mode for entity representation for all sessions opened from this
<classname>SessionFactory</classname></entry>
</row>
<row>
<entry>hibernate.order_updates</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Forces Hibernate to order SQL updates by the primary key value of the items being updated. This
reduces the likelihood of transaction deadlocks in highly-concurrent systems.</entry>
</row>
<row>
<entry>hibernate.generate_statistics</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Causes Hibernate to collect statistics for performance tuning.</entry>
</row>
<row>
<entry>hibernate.use_identifier_rollback</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>If true, generated identifier properties are reset to default values when objects are
deleted.</entry>
</row>
<row>
<entry>hibernate.use_sql_comments</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>If true, Hibernate generates comments inside the SQL, for easier debugging.</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>
<section>
<title>Database configuration</title>
<table>
<title>JDBC properties</title>
<tgroup cols="3">
<thead>
<row>
<entry>Property</entry>
<entry>Example</entry>
<entry>Purpose</entry>
</row>
</thead>
<tbody>
<row>
<entry>hibernate.jdbc.fetch_size</entry>
<entry><literal>0</literal> or an integer</entry>
<entry>A non-zero value determines the JDBC fetch size, by calling
<methodname>Statement.setFetchSize()</methodname>.</entry>
</row>
<row>
<entry>hibernate.jdbc.batch_size</entry>
<entry><para>A value between <literal>5</literal> and <literal>30</literal></para></entry>
<entry>A non-zero value causes Hibernate to use JDBC2 batch updates.</entry>
</row>
<row>
<entry>hibernate.jdbc.batch_versioned_data</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry><para>Set this property to <literal>true</literal> if your JDBC driver returns correct row counts
from <methodname>executeBatch()</methodname>. This option is usually safe, but is disabled by default. If
enabled, Hibernate uses batched DML for automatically versioned data.</para></entry>
</row>
<row>
<entry>hibernate.jdbc.factory_class</entry>
<entry>The fully-qualified class name of the factory</entry>
<entry><para>Select a custom <classname>org.hibernate.jdbc.Batcher</classname>. Irrelevant for most
applications.</para></entry>
</row>
<row>
<entry>hibernate.jdbc.use_scrollable_resultset</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Enables Hibernate to use JDBC2 scrollable resultsets. This property is only relevant for
user-supplied JDBC connections. Otherwise, Hibernate uses connection metadata.</entry>
</row>
<row>
<entry>hibernate.jdbc.use_streams_for_binary</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry><para>Use streams when writing or reading <type>binary</type> or <type>serializable</type> types to
or from JDBC. This is a system-level property.</para></entry>
</row>
<row>
<entry>hibernate.jdbc.use_get_generated_keys</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry><para>Allows Hibernate to use JDBC3 <classname>PreparedStatement.getGeneratedKeys()</classname> to
retrieve natively-generated keys after insert. You need the JDBC3+ driver and JRE1.4+. Disable this property
if your driver has problems with the Hibernate identifier generators. By default, it tries to detect the
driver capabilities from connection metadata.</para></entry>
</row>
</tbody>
</tgroup>
</table>
<table>
<title>Cache Properties</title>
<tgroup cols="3">
<colspec colwidth="100px" />
<colspec colwidth="100px" />
<colspec colwidth="240px" />
<thead>
<row>
<entry>Property</entry>
<entry>Example</entry>
<entry>Purpose</entry>
</row>
</thead>
<tbody>
<row>
<entry>hibernate.cache.provider_class</entry>
<entry>Fully-qualified classname</entry>
<entry>The classname of a custom CacheProvider.</entry>
</row>
<row>
<entry>hibernate.cache.use_minimal_puts</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Optimizes second-level cache operation to minimize writes, at the cost of more frequent reads. This
is most useful for clustered caches and is enabled by default for clustered cache implementations.</entry>
</row>
<row>
<entry>hibernate.cache.use_query_cache</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Enables the query cache. You still need to set individual queries to be cachable.</entry>
</row>
<row>
<entry>hibernate.cache.use_second_level_cache</entry> <entry><para><literal>true</literal> or
<literal>false</literal></para></entry> <entry>Completely disable the second level cache, which is enabled
by default for classes which specify a &lt;cache&gt; mapping.</entry>
</row>
<row>
<entry>hibernate.cache.query_cache_factory</entry>
<entry>Fully-qualified classname</entry>
<entry>A custom <interfacename>QueryCache</interfacename> interface. The default is the built-in
<interfacename>StandardQueryCache</interfacename>.</entry>
</row>
<row>
<entry>hibernate.cache.region_prefix</entry>
<entry>A string</entry>
<entry>A prefix for second-level cache region names.</entry>
</row>
<row>
<entry>hibernate.cache.use_structured_entries</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Forces Hibernate to store data in the second-level cache in a more human-readable format.</entry>
</row>
</tbody>
</tgroup>
</table>
<table>
<title>Transactions properties</title>
<tgroup cols="3">
<colspec colwidth="100px" />
<colspec colwidth="100px" />
<colspec colwidth="240px" />
<thead>
<row>
<entry>Property</entry>
<entry>Example</entry>
<entry>Purpose</entry>
</row>
</thead>
<tbody>
<row>
<entry>hibernate.transaction.factory_class</entry>
<entry>A fully-qualified classname</entry>
<entry>The classname of a <classname>TransactionFactory</classname> to use with Hibernate Transaction API. The
default is <classname>JDBCTransactionFactory</classname>).</entry>
</row>
<row>
<entry>jta.UserTransaction</entry>
<entry>A JNDI name</entry>
<entry><para>The <classname>JTATransactionFactory</classname> needs a JNDI name to obtain the JTA
UserTransaction from the application server.</para></entry>
</row>
<row>
<entry>hibernate.transaction.manager_lookup_class</entry>
<entry>A fully-qualified classname</entry>
<entry><para>The classname of a <classname>TransactionManagerLookup</classname>, which is used in
conjunction with JVM-level or the hilo generator in a JTA environment.</para></entry>
</row>
<row>
<entry>hibernate.transaction.flush_before_completion</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Causes the session be flushed during the <phrase>before completion</phrase> phase of the
transaction. If possible, use built-in and automatic session context management instead.</entry>
</row>
<row>
<entry>hibernate.transaction.auto_close_session</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>Causes the session to be closed during the <phrase>after completion</phrase> phase of the
transaction. If possible, use built-in and automatic session context management instead.</entry>
</row>
</tbody>
</tgroup>
</table>
<note>
<para>
Each of the properties in the following table are prefixed by <literal>hibernate.</literal>. It has been removed
in the table to conserve space.
</para>
</note>
<table>
<title>Miscellaneous properties</title>
<tgroup cols="3">
<thead>
<row>
<entry>Property</entry>
<entry>Example</entry>
<entry>Purpose</entry>
</row>
</thead>
<tbody>
<row>
<entry>current_session_context_class</entry>
<entry><para>One of <literal>jta</literal>, <literal>thread</literal>, <literal>managed</literal>, or
<literal>custom.Class</literal></para></entry>
<entry><para>Supply a custom strategy for the scoping of the <classname>Current</classname>
Session.</para></entry>
</row>
<row>
<entry>factory_class</entry>
<entry><para><literal>org.hibernate.hql.ast.ASTQueryTranslatorFactory</literal> or
<literal>org.hibernate.hql.classic.ClassicQueryTranslatorFactory</literal></para></entry>
<entry>Chooses the HQL parser implementation.</entry>
</row>
<row>
<entry>query.substitutions</entry>
<entry><para><literal>hqlLiteral=SQL_LITERAL</literal> or <literal>hqlFunction=SQLFUNC</literal>
</para></entry>
<entry>Map from tokens in Hibernate queries to SQL tokens, such as function or literal names.</entry>
</row>
<row>
<entry>hbm2ddl.auto</entry>
<entry><para><literal>validate</literal>, <literal>update</literal>, <literal>create</literal>,
<literal>create-drop</literal></para></entry>
<entry>Validates or exports schema DDL to the database when the <classname>SessionFactory</classname> is
created. With <command>create-drop</command>, the database schema is dropped when the
<classname>SessionFactory</classname> is closed explicitly.</entry>
</row>
<row>
<entry>cglib.use_reflection_optimizer</entry>
<entry><para><literal>true</literal> or <literal>false</literal></para></entry>
<entry>If enabled, Hibernate uses CGLIB instead of runtime reflection. This is a system-level
property. Reflection is useful for troubleshooting. Hibernate always requires CGLIB even if you disable the
optimizer. You cannot set this property in hibernate.cfg.xml.</entry>
</row>
</tbody>
</tgroup>
</table>
</section>
<section>
<title>Connection pool properties</title>
<itemizedlist>
<title>c3p0 connection pool properties</title>
<listitem><para>hibernate.c3p0.min_size</para></listitem>
<listitem><para>hibernate.c3p0.max_size</para></listitem>
<listitem><para>hibernate.c3p0.timeout</para></listitem>
<listitem><para>hibernate.c3p0.max_statements</para></listitem>
</itemizedlist>
<table>
<title>Proxool connection pool properties</title>
<tgroup cols="2">
<colspec colwidth="100px" />
<colspec colwidth="340px" />
<thead>
<row>
<entry>Property</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>hibernate.proxool.xml</entry>
<entry>Configure Proxool provider using an XML file (.xml is appended automatically)</entry>
</row>
<row>
<entry>hibernate.proxool.properties</entry>
<entry>Configure the Proxool provider using a properties file (.properties is appended
automatically)</entry>
</row>
<row>
<entry>hibernate.proxool.existing_pool</entry>
<entry>Whether to configure the Proxool provider from an existing pool</entry>
</row>
<row>
<entry>hibernate.proxool.pool_alias</entry>
<entry>Proxool pool alias to use. Required.</entry>
</row>
</tbody>
</tgroup>
</table>
<note>
<para>
For information on specific configuration of Proxool, refer to the Proxool documentation available from <ulink
url="http://proxool.sourceforge.net/" />.
</para>
</note>
</section>
</appendix>

View File

@ -0,0 +1,8 @@
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
for ( int i=0; i<100000; i++ ) {
Customer customer = new Customer(.....);
session.save(customer);
}
tx.commit();
session.close();

View File

@ -0,0 +1,20 @@
// BMT idiom
Session sess = factory.openSession();
Transaction tx = null;
try {
tx = sess.beginTransaction();
// do some work
...
tx.commit();
}
catch (RuntimeException e) {
if (tx != null) tx.rollback();
throw e; // or display error message
}
finally {
sess.close();
}

View File

@ -0,0 +1,3 @@
Map cacheEntries = sessionFactory.getStatistics()
.getSecondLevelCacheStatistics(regionName)
.getEntries();

View File

@ -0,0 +1,5 @@
<cache
usage="transactional"
region="RegionName"
include="all"
/>

View File

@ -0,0 +1,4 @@
@Entity
@Cacheable
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public class Forest { ... }

View File

@ -0,0 +1,7 @@
<property name="foo" type="integer">
<column name="foo" check="foo > 10"/>
</property>
<class name="Foo" table="foos" check="bar < 100.0">
...
<property name="bar" type="float"/>
</class>

View File

@ -0,0 +1,5 @@
<property name="name" type="my.customtypes.Name"/>
<column name="last" not-null="true" index="bar_idx" length="30"/>
<column name="first" not-null="true" index="bar_idx" length="20"/>
<column name="initial"/>
</property>

View File

@ -0,0 +1,4 @@
// CMT idiom
Session sess = factory.getCurrentSession();
// do some work
...

View File

@ -0,0 +1,4 @@
<class name="Customer" table="CurCust">
<comment>Current customers only</comment>
...
</class>

View File

@ -0,0 +1 @@
foo.getId().equals( bar.getId() )

View File

@ -0,0 +1,6 @@
<property name="credits" type="integer" insert="false">
<column name="credits" default="10"/>
</property>
<version name="version" type="integer" insert="false">
<column name="version" default="0"/>
</property>

View File

@ -0,0 +1,2 @@
Configuration cfg = ....;
new SchemaExport(cfg).create(false, true);

View File

@ -0,0 +1,7 @@
sessionFactory.evict(Cat.class, catId); //evict a particular Cat
sessionFactory.evict(Cat.class); //evict all Cats
sessionFactory.evictCollection("Cat.kittens", catId); //evict a particular collection of kittens
sessionFactory.evictCollection("Cat.kittens"); //evict all kitten collections

View File

@ -0,0 +1,6 @@
ScrollableResult cats = sess.createQuery("from Cat as cat").scroll(); //a huge result set
while ( cats.next() ) {
Cat cat = (Cat) cats.get(0);
doSomethingWithACat(cat);
sess.evict(cat);
}

View File

@ -0,0 +1,11 @@
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
String hqlUpdate = "update Customer c set c.name = :newName where c.name = :oldName";
// or String hqlUpdate = "update Customer set name = :newName where name = :oldName";
int updatedEntities = s.createQuery( hqlUpdate )
.setString( "newName", newName )
.setString( "oldName", oldName )
.executeUpdate();
tx.commit();
session.close();

View File

@ -0,0 +1,15 @@
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
for ( int i=0; i<100000; i++ ) {
Customer customer = new Customer(.....);
session.save(customer);
if ( i % 20 == 0 ) { //20, same as the JDBC batch size
//flush a batch of inserts and release memory:
session.flush();
session.clear();
}
}
tx.commit();
session.close();

View File

@ -0,0 +1 @@
<many-to-one name="bar" column="barId" foreign-key="FKFooBar"/>

View File

@ -0,0 +1,33 @@
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
<property name="connection.url">jdbc:hsqldb:hsql://localhost</property>
<property name="connection.username">sa</property>
<property name="connection.password"></property>
<!-- JDBC connection pool (use the built-in) -->
<property name="connection.pool_size">1</property>
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.HSQLDialect</property>
<!-- Enable Hibernate's automatic session context management -->
<property name="current_session_context_class">thread</property>
<!-- Disable the second-level cache -->
<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<property name="hbm2ddl.auto">update</property>
<mapping resource="org/hibernate/tutorial/domain/Event.hbm.xml"/>
</session-factory>
</hibernate-configuration>

View File

@ -0,0 +1,9 @@
hibernate.connection.driver_class = org.postgresql.Driver
hibernate.connection.url = jdbc:postgresql://localhost/mydatabase
hibernate.connection.username = myuser
hibernate.connection.password = secret
hibernate.c3p0.min_size=5
hibernate.c3p0.max_size=20
hibernate.c3p0.timeout=1800
hibernate.c3p0.max_statements=50
hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect

View File

@ -0,0 +1,8 @@
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
String hqlInsert = "insert into DelinquentAccount (id, name) select c.id, c.name from Customer c where ...";
int createdEntities = s.createQuery( hqlInsert )
.executeUpdate();
tx.commit();
session.close();

View File

@ -0,0 +1,10 @@
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
String hqlDelete = "delete Customer c where c.name = :oldName";
// or String hqlDelete = "delete Customer where name = :oldName";
int deletedEntities = s.createQuery( hqlDelete )
.setString( "oldName", oldName )
.executeUpdate();
tx.commit();
session.close();

View File

@ -0,0 +1 @@
foo==bar

View File

@ -0,0 +1,2 @@
<property name="zip" length="5"/>
<property name="balance" precision="12" scale="2"/>

View File

@ -0,0 +1,3 @@
Configuration cfg = new Configuration()
.addClass(org.hibernate.auction.Item.class)
.addClass(org.hibernate.auction.Bid.class);

View File

@ -0,0 +1,5 @@
<many-to-one name="bar" column="barId" not-null="true"/>
<element column="serialNumber" type="long" not-null="true" unique="true"/>
<many-to-one name="org" column="orgId" unique-key="OrgEmployeeId"/>
<property name="employeeId" unique-key="OrgEmployee"/>

View File

@ -0,0 +1 @@
Session session = sessions.openSession();

View File

@ -0,0 +1,6 @@
List blogs = sess.createQuery("from Blog blog where blog.blogger = :blogger")
.setEntity("blogger", blogger)
.setMaxResults(15)
.setCacheable(true)
.setCacheRegion("frontpages")
.list();

View File

@ -0,0 +1,3 @@
Configuration cfg = new Configuration()
.addResource("Item.hbm.xml")
.addResource("Bid.hbm.xml");

View File

@ -0,0 +1,6 @@
Configuration cfg = new Configuration()
.addClass(org.hibernate.auction.Item.class)
.addClass(org.hibernate.auction.Bid.class)
.setProperty("hibernate.dialect", "org.hibernate.dialect.MySQLInnoDBDialect")
.setProperty("hibernate.connection.datasource", "java:comp/env/jdbc/test")
.setProperty("hibernate.order_updates", "true");

View File

@ -0,0 +1,3 @@
<property name="balance" type="float">
<column name="balance" sql-type="decimal(13,3)"/>
</property>

View File

@ -0,0 +1,6 @@
@Entity
public class Flight implements Serializable {
...
@Version
public Date getLastUpdate() { ... }
}

View File

@ -0,0 +1,9 @@
<timestamp
column="timestamp_column"
name="propertyName"
access="field|property|ClassName"
unsaved-value="null|undefined"
source="vm|db"
generated="never|always"
node="element-name|@attribute-name|element/@attribute|."
/>

View File

@ -0,0 +1,18 @@
// BMT idiom with getCurrentSession()
try {
UserTransaction tx = (UserTransaction)new InitialContext()
.lookup("java:comp/UserTransaction");
tx.begin();
// Do some work on Session bound to transaction
factory.getCurrentSession().load(...);
factory.getCurrentSession().persist(...);
tx.commit();
}
catch (RuntimeException e) {
tx.rollback();
throw e; // or display error message
}

View File

@ -0,0 +1,9 @@
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
String hqlVersionedUpdate = "update versioned Customer set name = :newName where name = :oldName";
int updatedEntities = s.createQuery( hqlUpdate )
.setString( "newName", newName )
.setString( "oldName", oldName )
.executeUpdate();
tx.commit();
session.close();

View File

@ -0,0 +1,13 @@
StatelessSession session = sessionFactory.openStatelessSession();
Transaction tx = session.beginTransaction();
ScrollableResults customers = session.getNamedQuery("GetCustomers")
.scroll(ScrollMode.FORWARD_ONLY);
while ( customers.next() ) {
Customer customer = (Customer) customers.get(0);
customer.updateStuff(...);
session.update(customer);
}
tx.commit();
session.close();

View File

@ -0,0 +1,19 @@
Session session = sessionFactory.openSession();
Transaction tx = session.beginTransaction();
ScrollableResults customers = session.getNamedQuery("GetCustomers")
.setCacheMode(CacheMode.IGNORE)
.scroll(ScrollMode.FORWARD_ONLY);
int count=0;
while ( customers.next() ) {
Customer customer = (Customer) customers.get(0);
customer.updateStuff(...);
if ( ++count % 20 == 0 ) {
//flush a batch of updates and release memory:
session.flush();
session.clear();
}
}
tx.commit();
session.close();

View File

@ -0,0 +1,7 @@
@Entity
public class Flight implements Serializable {
...
@Version
@Column(name="OPTLOCK")
public Integer getVersion() { ... }
}

View File

@ -0,0 +1,10 @@
<version
column="version_column"
name="propertyName"
type="typename"
access="field|property|ClassName"
unsaved-value="null|negative|undefined"
generated="never|always"
insert="true|false"
node="element-name|@attribute-name|element/@attribute|."
/>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="32" height="32" id="svg3017">
<defs id="defs3019">
<linearGradient id="linearGradient2381">
<stop id="stop2383" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
<stop id="stop2385" style="stop-color:#ffffff;stop-opacity:0" offset="1"/>
</linearGradient>
<linearGradient x1="296.4996" y1="188.81061" x2="317.32471" y2="209.69398" id="linearGradient2371" xlink:href="#linearGradient2381" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.90776,0,0,0.90776,24.35648,49.24131)"/>
</defs>
<g transform="matrix(0.437808,-0.437808,0.437808,0.437808,-220.8237,43.55311)" id="g5089">
<path d="m 8.4382985,-6.28125 c -0.6073916,0 -4.3132985,5.94886271 -4.3132985,8.25 l 0,26.71875 c 0,0.846384 0.5818159,1.125 1.15625,1.125 l 25.5625,0 c 0.632342,0 1.125001,-0.492658 1.125,-1.125 l 0,-5.21875 0.28125,0 c 0.49684,0 0.906249,-0.409411 0.90625,-0.90625 l 0,-27.9375 c 0,-0.4968398 -0.40941,-0.90625 -0.90625,-0.90625 l -23.8117015,0 z" transform="translate(282.8327,227.1903)" id="path5091" style="fill:#5c5c4f;stroke:#000000;stroke-width:3.23021388;stroke-miterlimit:4;stroke-dasharray:none"/>
<rect width="27.85074" height="29.369793" rx="1.1414107" ry="1.1414107" x="286.96509" y="227.63805" id="rect5093" style="fill:#032c87"/>
<path d="m 288.43262,225.43675 25.2418,0 0,29.3698 -26.37615,0.0241 1.13435,-29.39394 z" id="rect5095" style="fill:#ffffff"/>
<path d="m 302.44536,251.73726 c 1.38691,7.85917 -0.69311,11.28365 -0.69311,11.28365 2.24384,-1.60762 3.96426,-3.47694 4.90522,-5.736 0.96708,2.19264 1.83294,4.42866 4.27443,5.98941 0,0 -1.59504,-7.2004 -1.71143,-11.53706 l -6.77511,0 z" id="path5097" style="fill:#a70000;fill-opacity:1;stroke-width:2"/>
<rect width="25.241802" height="29.736675" rx="0.89682275" ry="0.89682275" x="290.73544" y="220.92249" id="rect5099" style="fill:#809cc9"/>
<path d="m 576.47347,725.93939 6.37084,0.41502 0.4069,29.51809 c -1.89202,-1.31785 -6.85427,-3.7608 -8.26232,-1.68101 l 0,-26.76752 c 0,-0.82246 0.66212,-1.48458 1.48458,-1.48458 z" transform="matrix(0.499065,-0.866565,0,1,0,0)" id="rect5101" style="fill:#4573b3;fill-opacity:1"/>
<path d="m 293.2599,221.89363 20.73918,0 c 0.45101,0 0.8141,0.3631 0.8141,0.81411 0.21547,6.32836 -19.36824,21.7635 -22.36739,17.59717 l 0,-17.59717 c 0,-0.45101 0.3631,-0.81411 0.81411,-0.81411 z" id="path5103" style="opacity:0.65536726;fill:url(#linearGradient2371);fill-opacity:1"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,7 @@
# Config::Simple 4.59
# Mon Jan 17 13:52:44 2011
xml_lang: en-US
type: Book
brand: jboss-community-hibernate

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,3 @@
@import url("common.css");
@import url("overrides.css");
@import url("lang.css");

View File

@ -0,0 +1,2 @@
/* place holder */

View File

@ -0,0 +1,712 @@
html {
background-image:url(../images/bkg_gradient.png);
background-repeat:repeat-x;
}
body {
background-color: transparent;
margin:0 auto;
font-family:'Lucida Grande', Geneva, Verdana, Arial, sans-serif;
font-size:12px;
max-width:55em;
padding:0em 2em;
color:#333;
line-height:150%;
}
/* Links */
a:link {color:#0066cc;}
a:visited {color:#6699cc;}
div.longdesc-link {
float:right;
color:#999;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
color:#59666c;
line-height:130%;
margin-top:0em;
font-family:'Lucida Grande', Geneva, Verdana, Arial, sans-serif;
background-color:transparent;
}
h1 {
border-top:1px dotted #CCCCCC;
line-height:1.2em;
padding:1.5em;
}
.producttitle {
background: url(../images/h1-bg.png) top left no-repeat;
color:#59666c;
font-size:2em;
clear:both;
}
.section h1.title {
color:#59666c;
}
h2 {font-size:1.6em;}
.titlepage .edition {
color: #59666c;
}
h3 {
font-size:1.3em;
padding-top:0em;
padding-bottom:0em;
}
h4 {
font-size:1.1em;
padding-top:0em;
padding-bottom:0em;
}
h5.formalpara {
font-size:1em;
margin-top:2em;
margin-bottom:.8em;
}
#title a.left
{
padding-left:0em;
}
#title a.left img {
margin-top: 0em;
}
#title a.right img {
margin-top: 0em;
}
.docnav{
margin-top:31px;
padding-bottom:3em;
}
.docnav li.next a strong
{
padding-right:60px;
padding-top:12px;
}
.docnav li.previous a strong
{
padding-left:60px;
padding-top:12px;
}
.docnav li.up a strong
{
padding-left:60px;
padding-top:12px;
}
.docnav li.home a strong
{
padding-left:60px;
padding-top:14px;
padding-bottom:10px;
}
/* Document modes */
.confidential {
background-color:#900;
color:white;
padding:.5em .5em;
font-family:serif;
text-transform:uppercase;
text-align:center
}
dt a {font-weight:normal;}
.longdesc-link {display:none;}
.prompt {
background-color:#ede7c8;
padding:0em .3em;
}
/* User interface styles */
.screen .replaceable {color:#444;}
.screen {
background-color:#ede7c8;
color:#333;
padding:.5em 1em;
margin:0em;
}
pre, code, .guibutton, .keycap, .guilabel {
font-size:0.9em;
font-family:"consolas", "menlo", "monaco", "dejavu sans mono", "courier new", monospace;
}
.guibutton, .keycap, .guilabel {
font-weight:bold;
white-space:nowrap;
color:#444;
font-family:'Lucida Grande', Geneva, Verdana, Arial, sans-serif;
}
.guibutton, .guilabel {}
.keycap {padding:.1em.4em;}
.example {
background-color:#dad6b9;
padding:15px;
margin-bottom:10px;
border-left:0px;
}
.example h6 {
padding-left: 0px;
}
.example-contents {
padding-left: 0px;
background-color:#dad6b9;
}
/* Terminal/Console text */
.command, .computeroutput, .filename, .citetitle, .replaceable, .option {
font-family:"consolas", "menlo", "monaco", "dejavu sans mono", "courier new", monospace;
font-weight:bold;
}
.command .replaceable {color:#555;}
pre {
display:block;
background-color:#f9f3b0;
font-family:"consolas", "menlo", "monaco", "dejavu sans mono", "courier new", monospace;
color:#333;
overflow:auto;
padding:10px 20px;
}
code {
white-space:nowrap;
font-family:"consolas", "menlo", "monaco", "dejavu sans mono", "courier new",monospace;
}
/* Admonitions */
/* Set basic colors and spacing */
div.admonition {
border: none;
border-left: 0px solid #aaaaaa;
border-right: 0px solid #aaaaaa;
padding:0em;
margin:0em;
padding-top: 0em;
padding-bottom: 0em;
padding-left: 2em;
padding-right: 1em;
background-color: transparent;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
border-radius: 0px;
}
div.warning:before, div.note:before, div.important:before, div.tip:before, div.caution:before {
content:none;
padding-left: 0px;
display: none;
}
div.note, div.important, div.warning, div.tip, div.caution {
padding:0px;
padding-bottom:0px;
margin-top:0em;
margin-bottom:1.5em;
background-repeat:no-repeat;
background-color:transparent;
}
div.note {
background:#b5bcbd;
color:#4c5253;
border:1px solid #8a9195;
margin-bottom:1.5em;
background-repeat:no-repeat;
background-position:10px 10px;
padding:1em;
padding-bottom:20px;
}
div.tip {
background:#7e917f;
color:white;
border:1px solid #8a9195;
margin-bottom:1.5em;
background-repeat:no-repeat;
background-position:10px 10px;
padding:1em;
padding-bottom:20px;
}
div.important {
background:#59666c;
color:white;
border:1px solid #8a9195;
margin-bottom:1.5em;
background-repeat:no-repeat;
background-position:10px 10px;
padding:1em;
padding-bottom:20px;
}
div.caution {
background:#e3a835;
color:#533500;
border:1px solid #ab710a;
margin-bottom:1.5em;
background-repeat:no-repeat;
background-position:10px 10px;
padding:1em;
padding-bottom:20px;
}
div.warning {
background:#7b1e1e;
color:white;
border:1px solid #65504e;
margin-bottom:1.5em;
background-repeat:no-repeat;
background-position:10px 10px;
padding:1em;
padding-bottom:20px;
}
div.warning h2, div.note h2, div.important h2, div.tip h2, div.caution h2 {
margin: 0em;
padding: 0em;
padding-left: 58px;
color: white;
font-size: large;
margin-top: -2.4em;
padding-top: 0px;
padding-bottom: 0px;
height: 26px;
line-height: 1.4em;
font-size: 1.4em;
background-color: transparent;
background-image: none;
}
div.admonition_header {
clear: both;
margin: 0em;
padding: 0em;
margin-top: 0em;
padding-left: 0px;
line-height: 1.0em;
font-size: 1.0em;
}
div.warning div.admonition_header {
background: none;
background-color: transparent;
}
div.note div.admonition_header {
background: none;
background-color: transparent;
}
div.important div.admonition_header {
background: none;
background-color: transparent;
}
div.tip div.admonition_header {
background: none;
background-color: transparent;
}
div.caution div.admonition_header {
background: none;
background-color: transparent;
}
div.warning p, div.warning div.para,
div.note p, div.note div.para,
div.important p, div.important div.para,
div.tip p, div.tip div.para,
div.caution p, div.caution div.para {
padding: 0em;
margin: 0em;
padding-left:33px;
/* padding-left: 2em;
padding-right: 1em;
background-color: #eeeeec;
padding-top: 1.5em;
padding-bottom: 1em;
border-left: 1px solid #aaaaaa;
border-right: 1px solid #aaaaaa;
*/
}
/* Pre tag color settings */
div.note pre {
background-color:#d6dee0;
color:#334558;
border:1px solid #e1e9eb;
margin-left:33px;
}
div.tip pre {
background-color:#d5e1d5;
color:#334558;
border:1px solid #e1e9eb;
margin-left:33px;
}
div.important pre {
background-color:#e1eef4;
color:#334558;
border:1px solid #e1e9eb;
margin-left:33px;
}
div.caution pre {
background-color:#faf8ed;
color:#334558;
border:1px solid #e1e9eb;
margin-left:33px;
}
div.warning pre {
background-color:#faf8ed;
color:#334558;
border:1px solid #e1e9eb;
margin-left:33px;
}
/* Background images and margin */
div.note, div.tip, div.important, div.caution, div.warning {margin-top:.5em;}
div.note {background-image:url(../images/note.png);}
div.tip {background-image:url(../images/tip.png);}
div.important {background-image:url(../images/important.png);}
div.caution {background-image:url(../images/caution.png);}
div.warning {background-image:url(../images/warning.png);}
div.note .replaceable, div.tip .replaceable, div.important .replaceable, div.caution .replaceable, div.warning .replaceable {color:#e3dcc0;}
pre .replaceable, tt .replaceable {color:#444 !important;}
div.note h2, div.tip h2, div.important h2, div.caution h2, div.warning h2 {
height:32px;
font-size:1.3em;
}
div.note h2 {color:#4c5253;}
div.tip h2 {color:white;}
div.important h2 {color:white;}
div.caution h2 {color:#533500;}
div.warning h2 {color:white;}
div.note .guilabel, div.tip .guilabel, div.important .guilabel, div.caution .guilabel, div.warning .guilabel {color:white !important;}
div.note li, div.tip li, div.caution li, div.warning li, div.important li {
padding-left:10px;
margin:0em;
}
div.note ul, div.tip ul, div.caution ul, div.warning ul, div.important ul {
padding-left:40px;
margin:0em;
}
div.note pre pre a:visited, div.tip pre pre a:visited, div.important pre pre a:visited, div.caution pre pre a:visited, div.warning pre pre a:visited,
div.note pre a:link, div.tip pre a:link, div.important pre a:link, div.caution pre a:link, div.warning pre a:link {color:#0066cc !important;}
div.note a:visited, div.tip a:visited, div.important a:visited, div.warning a:visited,
div.note a:link, div.tip a:link, div.important a:link, div.warning a:link {color:#f7f2d0;}
div.note a:visited, div.note a:link, div.caution a:link, div.caution a:visited {color:#0066cc;}
/* Admonition icons spacing */
div.note h2, div.note p, div.tip h2, div.tip p, div.caution h2, div.caution p, div.warning h2, div.warning p, div.important h2, div.important p {
padding:0em;
margin:0em;
padding-left:56px;
}
/* Table */
table {
border:1px solid #aaa;
width:100%;
border-collapse:collapse;
}
table th {
text-align:left;
background:#59666c;
padding:.3em .5em;
color:white;
}
table td {padding:.15em .5em;}
table tr.even td {background-color:#f5f5f5;}
table th p:first-child, table td p:first-child, table li p:first-child {
margin-top:0em;
padding-top:0em;
display:inline;
}
th, td {border-style:none;}
table table td {
border-bottom:1px dotted #aaa !important;
background-color:white;
padding:.6em 0em;
}
table table {
border:1px solid white !important;
font-size:.9em;
}
td.remarkval {
font-size:.9em;
color:#444;
}
.defaultval {font-size:.8em}
td.typeval {font-size:.8em}
td.fieldval {
font-weight:bold;
font-size:.9em;
}
th.dbkey {font-size:.9em;}
.lbname, .lbtype, .lbdescr, .lbdriver, .lbhost {
color:white;
font-weight:bold;
background-color:#999;
font-size:0.9em;
width:120px;
}
td.remarkval {width:230px;}
td.tname {
font-weight:bold;
font-size:1.1em;
}
h5 {font-size:9pt;}
h6 {font-size:10pt;}
th.dbfield {width:120px;}
th.dbtype {width:70px;}
th.dbdefault {width:70px;}
th.dbnul {width:70px;}
th.dbkey {width:70px;}
span.book {
margin-top:4em;
display:block;
}
span.chapter {
display:block;
margin-top:0.5em;
}
/* Status */
.alpha1 {background:white url(../images/community/watermark-alpha1.png) top left repeat;}
.alpha2 {background:white url(../images/community/watermark-alpha2.png) top left repeat;}
.beta1 {background:white url(../images/community/watermark-beta1.png) top left repeat;}
.beta2 {background:white url(../images/community/watermark-beta2.png) top left repeat;}
.pre-release-candidate {background:white url(../images/community/watermark-pre-release-candidate.png) top left repeat;}
.release-candidate {background:white url(../images/community/watermark-release-candidate.png) top left repeat;}
/* Index */
.glossary h3, .index h3 {
font-size:2em;
color:#aaa;
margin:0em;
}
.indexdiv {margin-bottom:1em;}
.glossary dt, .index dt {
font-size:.9em;
color:#444;
padding-top:.5em;
}
.glossary dl dl dt, .index dl dl dt {
font-size:.85em;
color:#777;
line-height:1.2em;
font-weight:normal;
padding-top:0em;
}
.index dl dl dt:before {
content:"- ";
color:#ccc;
}
/* Changes */
.footnotes {}
.footnote {
padding:.2em 1em;
background-color:#c8c5ac;
font-size:.9em;
margin:0em;
margin-bottom:.5em;
color:#222;
}
table .footnote {margin:1em .5em;}
sup {
padding:0em .3em;
padding-left:0em;
}
.footnote {position:relative;}
.footnote sup {
color:#e3dcc0;
font-size:1.8em;
position:absolute;
left:.4em;
}
.footnote sup a:link, .footnote sup a:visited {
color:#92917d;
text-decoration:none;
}
.footnote:hover sup a {
color:#fff;
text-decoration:none;
}
.footnote p {padding-left:5em;}
.footnote a:link, .footnote a:visited {color:#00537c;}
.footnote a:hover {color:white;}
li p:first-child {
margin:0em !important;
padding:0em !important;
}
div.chapter, div.section {padding-top:2em;}
.revhistory {font-size:}
pre .replaceable, pre .keycap {color:white;}
pre {
font-family:"consolas", "menlo", "monaco", "dejavu sans mono", "courier new", monospace;
background-color:#F5F5F5;
border:1px solid #CCCCCC;
padding:5px 15px 5px 25px;
}
div.note .replaceable, div.tip .replaceable, div.important .replaceable, div.caution .replaceable, div.warning .replaceable,
div.note .keycap, div.tip .keycap, div.important .keycap, div.caution .keycap, div.warning .keycap {color:white;}
.authorgroup {}
.authorgroup h4 {
padding:0em;
margin:0em;
margin-top:1em;
}
.author, .editor, .translator, .othercredit {display:block;}
/* Simpler author style on contents page */
.authorgroup div {
margin-left:10px;
margin-right:10px;
margin-bottom:15px;
}
ul li p:last-child {
margin-bottom:0em;
padding-bottom:0em;
}
/* Firefox */
pre {-moz-border-radius:11px;}
.example {-moz-border-radius:15px;}
div.note, div.tip, div.important, div.caution, div.warning {-moz-border-radius:11px;}
.draft {
background-image: url(../images/watermark-draft.png);
background-position: center top;
}
/* tweak some headings to match JDocBook styles that use H2 in places where Publican uses H1 */
.preface h1.title, .appendix h1.title, .legalnotice h1 {
font-size:1.6em;
padding:0;
}
.abstract h6 {
margin-top:1em;
margin-bottom:.5em;
font-size:1.6em;
}
.revhistory table th {
background-color:transparent;
color:#336699;
font-size:12px;
padding: 1em 0em;
border-bottom:1px solid #eee;
}

View File

@ -0,0 +1,16 @@
@import url("common.css");
@import url("overrides.css");
@import url("lang.css");
#tocframe {
display: none;
}
body.toc_embeded {
margin-left: 30px;
}
.producttitle {
color: #336699;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 769 B

View File

@ -0,0 +1,189 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
width="17" height="17" viewBox="-0.75 -0.625 17 17" enable-background="new -0.75 -0.625 17 17" xml:space="preserve">
<defs>
</defs>
<g>
<defs>
<circle id="XMLID_6_" cx="7.859" cy="7.859" r="7.484"/>
</defs>
<clipPath id="XMLID_9_">
<use xlink:href="#XMLID_6_" />
</clipPath>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,11.68 5.102,15.344 0.375,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,11.547 5.273,15.344 5.105,15.344 0.375,11.68 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C9D0D5" points="0.375,11.414 5.445,15.344 5.273,15.344 0.375,11.547 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C6CDD3" points="0.375,11.281 5.617,15.344 5.445,15.344 0.375,11.414 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C5CCD2" points="0.375,11.148 5.789,15.344 5.617,15.344 0.375,11.281 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C3C9D0" points="0.375,11.016 5.961,15.344 5.789,15.344 0.375,11.148 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C1C8CE" points="0.375,10.883 6.129,15.344 5.961,15.344 0.375,11.016 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BFC5CC" points="0.375,10.75 6.301,15.344 6.129,15.344 0.375,10.883 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BEC4CB" points="0.375,10.617 6.473,15.344 6.301,15.344 0.375,10.75 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BBC2C9" points="0.375,10.484 6.645,15.344 6.473,15.344 0.375,10.617 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BAC0C8" points="0.375,10.352 6.812,15.344 6.645,15.344 0.375,10.484 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B7BEC6" points="0.375,10.219 6.984,15.344 6.812,15.344 0.375,10.352 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B6BDC5" points="0.375,10.086 7.156,15.344 6.984,15.344 0.375,10.219 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B5BBC3" points="0.375,9.957 7.328,15.344 7.156,15.344 0.375,10.086 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B3BAC2" points="0.375,9.824 7.5,15.344 7.328,15.344 0.375,9.957 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B1B7C0" points="0.375,9.691 7.672,15.344 7.5,15.344 0.375,9.824 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B0B6BF" points="0.375,9.559 7.84,15.344 7.672,15.344 0.375,9.691 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AEB5BE" points="0.375,9.426 8.012,15.344 7.84,15.344 0.375,9.559 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ADB3BC" points="0.375,9.293 8.184,15.344 8.012,15.344 0.375,9.426 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ABB2BC" points="0.375,9.16 8.352,15.344 8.184,15.344 0.375,9.293 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AAB0BA" points="0.375,9.027 8.523,15.344 8.352,15.344 0.375,9.16 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A8AEB8" points="0.375,8.895 8.695,15.344 8.523,15.344 0.375,9.027 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ADB7" points="0.375,8.762 8.867,15.344 8.695,15.344 0.375,8.895 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ACB6" points="0.375,8.629 9.039,15.344 8.867,15.344 0.375,8.762 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A3AAB4" points="0.375,8.496 9.211,15.344 9.039,15.344 0.375,8.629 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A2A8B3" points="0.375,8.363 9.383,15.344 9.211,15.344 0.375,8.496 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A0A7B1" points="0.375,8.23 9.551,15.344 9.383,15.344 0.375,8.363 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9FA6B0" points="0.375,8.102 9.723,15.344 9.551,15.344 0.375,8.23 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9EA4AF" points="0.375,7.969 9.895,15.344 9.723,15.344 0.375,8.102 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9CA3AE" points="0.375,7.836 10.062,15.344 9.895,15.344 0.375,7.969 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9BA1AD" points="0.375,7.703 10.234,15.344 10.062,15.344 0.375,7.836 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9AA0AB" points="0.375,7.57 10.406,15.344 10.234,15.344 0.375,7.703 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#989FAA" points="0.375,7.438 10.578,15.344 10.406,15.344 0.375,7.57 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#979EAA" points="0.375,7.305 10.75,15.344 10.578,15.344 0.375,7.438 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#969CA8" points="0.375,7.172 10.918,15.344 10.75,15.344 0.375,7.305 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#949BA7" points="0.375,7.039 11.09,15.344 10.918,15.344 0.375,7.172 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9399A5" points="0.375,6.906 11.262,15.344 11.09,15.344 0.375,7.039 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9298A4" points="0.375,6.773 11.434,15.344 11.262,15.344 0.375,6.906 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9097A3" points="0.375,6.641 11.602,15.344 11.434,15.344 0.375,6.773 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8F95A2" points="0.375,6.508 11.773,15.344 11.602,15.344 0.375,6.641 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8E95A1" points="0.375,6.375 11.945,15.344 11.773,15.344 0.375,6.508 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8D93A0" points="0.375,6.242 12.117,15.344 11.945,15.344 0.375,6.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8B929F" points="0.375,6.113 12.289,15.344 12.117,15.344 0.375,6.242 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8A919E" points="0.375,5.98 12.461,15.344 12.289,15.344 0.375,6.113 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#898F9D" points="0.375,5.848 12.629,15.344 12.461,15.344 0.375,5.98 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878E9B" points="0.375,5.715 12.801,15.344 12.629,15.344 0.375,5.848 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878D9B" points="0.375,5.582 12.973,15.344 12.801,15.344 0.375,5.715 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#858C9A" points="0.375,5.449 13.141,15.344 12.973,15.344 0.375,5.582 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#848B98" points="0.375,5.316 13.312,15.344 13.141,15.344 0.375,5.449 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#838A97" points="0.375,5.184 13.484,15.344 13.312,15.344 0.375,5.316 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#828997" points="0.375,5.051 13.656,15.344 13.484,15.344 0.375,5.184 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#818895" points="0.375,4.918 13.828,15.344 13.656,15.344 0.375,5.051 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#808794" points="0.375,4.785 14,15.344 13.828,15.344 0.375,4.918 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7E8594" points="0.375,4.652 14.172,15.344 14,15.344 0.375,4.785 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7D8593" points="0.375,4.52 14.34,15.344 14.172,15.344 0.375,4.652 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7C8392" points="0.375,4.387 14.512,15.344 14.34,15.344 0.375,4.52 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7B8290" points="0.375,4.258 14.68,15.344 14.512,15.344 0.375,4.387 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7A8190" points="0.375,4.125 14.852,15.344 14.68,15.344 0.375,4.258 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#79808F" points="0.375,3.992 15.023,15.344 14.852,15.344 0.375,4.125 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#787F8D" points="0.375,3.859 15.195,15.344 15.023,15.344 0.375,3.992 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#777E8D" points="0.375,3.727 15.312,15.301 15.277,15.344 15.195,15.344 0.375,3.859
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#767D8C" points="0.375,3.594 15.344,15.195 15.344,15.258 15.312,15.301 0.375,3.727
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#767C8B" points="0.375,3.461 15.344,15.062 15.344,15.195 0.375,3.594 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#747B8A" points="0.375,3.328 15.344,14.93 15.344,15.062 0.375,3.461 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#737A89" points="0.375,3.195 15.344,14.797 15.344,14.93 0.375,3.328 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#727989" points="0.375,3.062 15.344,14.664 15.344,14.797 0.375,3.195 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#717888" points="0.375,2.93 15.344,14.531 15.344,14.664 0.375,3.062 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#707786" points="0.375,2.797 15.344,14.398 15.344,14.531 0.375,2.93 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6F7686" points="0.375,2.664 15.344,14.266 15.344,14.398 0.375,2.797 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7585" points="0.375,2.531 15.344,14.133 15.344,14.266 0.375,2.664 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7584" points="0.375,2.398 15.344,14 15.344,14.133 0.375,2.531 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6C7383" points="0.375,2.266 15.344,13.867 15.344,14 0.375,2.398 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6B7383" points="0.375,2.137 15.344,13.734 15.344,13.867 0.375,2.266 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6A7281" points="0.375,2 15.344,13.602 15.344,13.734 0.375,2.137 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697181" points="0.375,1.871 15.344,13.469 15.344,13.602 0.375,2 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697080" points="0.375,1.738 15.344,13.336 15.344,13.469 0.375,1.871 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#686F7F" points="0.375,1.605 15.344,13.207 15.344,13.336 0.375,1.738 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#676E7E" points="0.375,1.473 15.344,13.074 15.344,13.207 0.375,1.605 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#656D7D" points="15.344,12.941 0.375,1.34 0.375,1.473 15.344,13.074 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7D" points="15.344,12.809 0.375,1.207 0.375,1.34 15.344,12.941 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7C" points="0.375,1.074 15.344,12.676 15.344,12.809 0.375,1.207 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#636B7C" points="0.375,0.941 15.344,12.543 15.344,12.676 0.375,1.074 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#626B7B" points="15.344,12.41 0.375,0.809 0.375,0.941 15.344,12.543 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#616A7A" points="0.375,0.676 15.344,12.277 15.344,12.41 0.375,0.809 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#606979" points="0.375,0.543 15.344,12.145 15.344,12.277 0.375,0.676 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="0.375,0.461 0.398,0.43 15.344,12.012 15.344,12.145 0.375,0.543 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="0.398,0.43 0.441,0.375 0.5,0.375 15.344,11.879 15.344,12.012 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5E6777" points="0.672,0.375 15.344,11.746 15.344,11.879 0.5,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5D6676" points="0.84,0.375 15.344,11.613 15.344,11.746 0.672,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5C6576" points="1.012,0.375 15.344,11.48 15.344,11.613 0.84,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="1.184,0.375 15.344,11.352 15.344,11.48 1.012,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="1.355,0.375 15.344,11.219 15.344,11.352 1.184,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5A6373" points="1.523,0.375 15.344,11.086 15.344,11.219 1.355,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#596273" points="1.695,0.375 15.344,10.953 15.344,11.086 1.523,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#586172" points="1.867,0.375 15.344,10.82 15.344,10.953 1.695,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#576172" points="2.039,0.375 15.344,10.688 15.344,10.82 1.867,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566071" points="2.211,0.375 15.344,10.555 15.344,10.688 2.039,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566070" points="2.379,0.375 15.344,10.422 15.344,10.555 2.211,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#555F70" points="2.551,0.375 15.344,10.289 15.344,10.422 2.379,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#545E6F" points="2.723,0.375 15.344,10.156 15.344,10.289 2.551,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535E6F" points="2.891,0.375 15.344,10.023 15.344,10.156 2.723,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535D6E" points="3.062,0.375 15.344,9.891 15.344,10.023 2.891,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#525C6D" points="15.344,9.758 3.234,0.375 3.062,0.375 15.344,9.891 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#515C6D" points="3.406,0.375 15.344,9.625 15.344,9.758 3.234,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="3.578,0.375 15.344,9.492 15.344,9.625 3.406,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="3.75,0.375 15.344,9.359 15.344,9.492 3.578,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505A6B" points="3.918,0.375 15.344,9.227 15.344,9.359 3.75,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4F596A" points="4.09,0.375 15.344,9.098 15.344,9.227 3.918,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4E596A" points="4.262,0.375 15.344,8.965 15.344,9.098 4.09,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4D5869" points="4.434,0.375 15.344,8.832 15.344,8.965 4.262,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5869" points="4.602,0.375 15.344,8.699 15.344,8.832 4.434,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5768" points="4.773,0.375 15.344,8.566 15.344,8.699 4.602,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5768" points="4.945,0.375 15.344,8.434 15.344,8.566 4.773,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5667" points="5.117,0.375 15.344,8.301 15.344,8.434 4.945,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4A5567" points="5.289,0.375 15.344,8.168 15.344,8.301 5.117,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#495566" points="5.461,0.375 15.344,8.035 15.344,8.168 5.289,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485566" points="15.344,7.902 5.629,0.375 5.461,0.375 15.344,8.035 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485466" points="15.344,7.77 5.801,0.375 5.629,0.375 15.344,7.902 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="5.973,0.375 15.344,7.637 15.344,7.77 5.801,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="6.145,0.375 15.344,7.508 15.344,7.637 5.973,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#465264" points="6.312,0.375 15.344,7.375 15.344,7.508 6.145,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#455264" points="15.344,7.242 6.484,0.375 6.312,0.375 15.344,7.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445263" points="6.656,0.375 15.344,7.109 15.344,7.242 6.484,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445163" points="6.828,0.375 15.344,6.977 15.344,7.109 6.656,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445062" points="7,0.375 15.344,6.844 15.344,6.977 6.828,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="7.168,0.375 15.344,6.711 15.344,6.844 7,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="7.34,0.375 15.344,6.578 15.344,6.711 7.168,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#424F61" points="7.512,0.375 15.344,6.445 15.344,6.578 7.34,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#414F61" points="7.68,0.375 15.344,6.312 15.344,6.445 7.512,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#404E60" points="7.852,0.375 15.344,6.18 15.344,6.312 7.68,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4E60" points="8.023,0.375 15.344,6.047 15.344,6.18 7.852,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D60" points="8.195,0.375 15.344,5.914 15.344,6.047 8.023,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D5F" points="8.367,0.375 15.344,5.781 15.344,5.914 8.195,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4D5F" points="8.539,0.375 15.344,5.648 15.344,5.781 8.367,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4C5E" points="8.711,0.375 15.344,5.516 15.344,5.648 8.539,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="8.879,0.375 15.344,5.383 15.344,5.516 8.711,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="9.051,0.375 15.344,5.25 15.344,5.383 8.879,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="15.344,5.121 9.223,0.375 9.051,0.375 15.344,5.25 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.391,0.375 15.344,4.988 15.344,5.121 9.223,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.562,0.375 15.344,4.855 15.344,4.988 9.391,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="9.734,0.375 15.344,4.723 15.344,4.855 9.562,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="9.906,0.375 15.344,4.59 15.344,4.723 9.734,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495C" points="10.078,0.375 15.344,4.457 15.344,4.59 9.906,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495B" points="10.25,0.375 15.344,4.324 15.344,4.457 10.078,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#39495B" points="10.418,0.375 15.344,4.191 15.344,4.324 10.25,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38495B" points="10.59,0.375 15.344,4.059 15.344,4.191 10.418,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485B" points="10.762,0.375 15.344,3.926 15.344,4.059 10.59,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485A" points="10.93,0.375 15.344,3.793 15.344,3.926 10.762,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37485A" points="11.102,0.375 15.344,3.66 15.344,3.793 10.93,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38475A" points="11.273,0.375 15.344,3.531 15.344,3.66 11.102,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37475A" points="11.445,0.375 15.344,3.398 15.344,3.531 11.273,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#374659" points="11.617,0.375 15.344,3.266 15.344,3.398 11.445,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="11.789,0.375 15.344,3.133 15.344,3.266 11.617,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="11.957,0.375 15.344,3 15.344,3.133 11.789,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="12.129,0.375 15.344,2.867 15.344,3 11.957,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="12.301,0.375 15.344,2.734 15.344,2.867 12.129,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="12.469,0.375 15.344,2.602 15.344,2.734 12.301,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354658" points="12.641,0.375 15.344,2.469 15.344,2.602 12.469,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="12.812,0.375 15.344,2.336 15.344,2.469 12.641,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="12.984,0.375 15.344,2.203 15.344,2.336 12.812,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="13.156,0.375 15.344,2.07 15.344,2.203 12.984,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="13.328,0.375 15.344,1.938 15.344,2.07 13.156,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.344,1.938 13.328,0.375 15.344,0.375 "/>
</g>
<path fill="#AEADAE" d="M14.969,7.859c0,3.92-3.189,7.109-7.109,7.109S0.75,11.779,0.75,7.859S3.939,0.75,7.859,0.75
S14.969,3.939,14.969,7.859z M7.859,0C3.525,0,0,3.526,0,7.859c0,4.334,3.525,7.859,7.859,7.859s7.859-3.525,7.859-7.859
C15.719,3.526,12.193,0,7.859,0z"/>
<path fill="#FFFFFF" d="M8.799,4.274v7.601H7.754V6.474H6.005V5.715c0.483-0.011,1.716-0.044,1.991-1.441H8.799z"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 810 B

View File

@ -0,0 +1,193 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
width="17" height="16" viewBox="-0.75 -0.258 17 16" enable-background="new -0.75 -0.258 17 16" xml:space="preserve">
<defs>
</defs>
<g>
<defs>
<circle id="XMLID_6_" cx="7.859" cy="7.858" r="7.484"/>
</defs>
<clipPath id="XMLID_9_">
<use xlink:href="#XMLID_6_" />
</clipPath>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,13.379 2.148,15.344 0.375,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,13.207 2.301,15.344 2.148,15.344 0.375,13.379 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C9D0D5" points="2.457,15.344 0.375,13.039 0.375,13.207 2.301,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C6CDD3" points="0.375,12.867 2.609,15.344 2.457,15.344 0.375,13.039 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C5CCD2" points="0.375,12.695 2.766,15.344 2.609,15.344 0.375,12.867 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C3C9D0" points="0.375,12.523 2.918,15.344 2.766,15.344 0.375,12.695 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C1C8CE" points="0.375,12.352 3.07,15.344 2.918,15.344 0.375,12.523 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BFC5CC" points="0.375,12.184 3.227,15.344 3.07,15.344 0.375,12.352 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BEC4CB" points="0.375,12.012 3.379,15.344 3.227,15.344 0.375,12.184 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BBC2C9" points="0.375,11.844 3.531,15.344 3.379,15.344 0.375,12.012 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BAC0C8" points="0.375,11.672 3.688,15.344 3.531,15.344 0.375,11.844 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B7BEC6" points="0.375,11.5 3.844,15.344 3.688,15.344 0.375,11.672 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B6BDC5" points="0.375,11.328 3.996,15.344 3.844,15.344 0.375,11.5 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B5BBC3" points="0.375,11.16 4.148,15.344 3.996,15.344 0.375,11.328 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B3BAC2" points="0.375,10.988 4.305,15.344 4.148,15.344 0.375,11.16 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B1B7C0" points="0.375,10.816 4.457,15.344 4.305,15.344 0.375,10.988 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B0B6BF" points="4.613,15.344 0.375,10.648 0.375,10.816 4.457,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AEB5BE" points="0.375,10.477 4.766,15.344 4.613,15.344 0.375,10.648 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ADB3BC" points="0.375,10.305 4.922,15.344 4.766,15.344 0.375,10.477 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ABB2BC" points="0.375,10.133 5.074,15.344 4.922,15.344 0.375,10.305 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AAB0BA" points="0.375,9.965 5.227,15.344 5.074,15.344 0.375,10.133 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A8AEB8" points="0.375,9.797 5.383,15.344 5.227,15.344 0.375,9.965 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ADB7" points="0.375,9.625 5.535,15.344 5.383,15.344 0.375,9.797 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ACB6" points="0.375,9.453 5.691,15.344 5.535,15.344 0.375,9.625 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A3AAB4" points="5.844,15.344 0.375,9.281 0.375,9.453 5.691,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A2A8B3" points="0.375,9.109 6,15.344 5.844,15.344 0.375,9.281 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A0A7B1" points="0.375,8.941 6.152,15.344 6,15.344 0.375,9.109 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9FA6B0" points="6.305,15.344 0.375,8.77 0.375,8.941 6.152,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9EA4AF" points="6.461,15.344 0.375,8.602 0.375,8.77 6.305,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9CA3AE" points="0.375,8.43 6.613,15.344 6.461,15.344 0.375,8.602 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9BA1AD" points="0.375,8.258 6.77,15.344 6.613,15.344 0.375,8.43 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9AA0AB" points="0.375,8.086 6.922,15.344 6.77,15.344 0.375,8.258 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#989FAA" points="0.375,7.914 7.078,15.344 6.922,15.344 0.375,8.086 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#979EAA" points="0.375,7.746 7.23,15.344 7.078,15.344 0.375,7.914 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#969CA8" points="0.375,7.574 7.383,15.344 7.23,15.344 0.375,7.746 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#949BA7" points="0.375,7.406 7.539,15.344 7.383,15.344 0.375,7.574 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9399A5" points="0.375,7.234 7.691,15.344 7.539,15.344 0.375,7.406 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9298A4" points="0.375,7.062 7.848,15.344 7.691,15.344 0.375,7.234 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9097A3" points="0.375,6.891 8,15.344 7.848,15.344 0.375,7.062 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8F95A2" points="0.375,6.723 8.156,15.344 8,15.344 0.375,6.891 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8E95A1" points="8.309,15.344 0.375,6.551 0.375,6.723 8.156,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8D93A0" points="0.375,6.383 8.461,15.344 8.309,15.344 0.375,6.551 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8B929F" points="0.375,6.211 8.617,15.344 8.461,15.344 0.375,6.383 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8A919E" points="0.375,6.039 8.77,15.344 8.617,15.344 0.375,6.211 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#898F9D" points="0.375,5.867 8.926,15.344 8.77,15.344 0.375,6.039 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878E9B" points="0.375,5.695 9.078,15.344 8.926,15.344 0.375,5.867 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878D9B" points="0.375,5.527 9.234,15.344 9.078,15.344 0.375,5.695 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#858C9A" points="9.387,15.344 0.375,5.355 0.375,5.527 9.234,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#848B98" points="0.375,5.188 9.539,15.344 9.387,15.344 0.375,5.355 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#838A97" points="0.375,5.016 9.695,15.344 9.539,15.344 0.375,5.188 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#828997" points="0.375,4.844 9.848,15.344 9.695,15.344 0.375,5.016 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#818895" points="0.375,4.676 10,15.344 9.848,15.344 0.375,4.844 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#808794" points="0.375,4.504 10.156,15.344 10,15.344 0.375,4.676 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7E8594" points="0.375,4.332 10.312,15.344 10.156,15.344 0.375,4.504 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7D8593" points="10.465,15.344 0.375,4.164 0.375,4.332 10.312,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7C8392" points="0.375,3.992 10.617,15.344 10.465,15.344 0.375,4.164 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7B8290" points="10.773,15.344 0.375,3.82 0.375,3.992 10.617,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7A8190" points="0.375,3.648 10.926,15.344 10.773,15.344 0.375,3.82 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#79808F" points="0.375,3.477 11.082,15.344 10.926,15.344 0.375,3.648 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#787F8D" points="0.375,3.309 11.234,15.344 11.082,15.344 0.375,3.477 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#777E8D" points="0.375,3.137 11.391,15.344 11.234,15.344 0.375,3.309 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767D8C" points="0.375,2.969 11.543,15.344 11.391,15.344 0.375,3.137 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767C8B" points="0.375,2.797 11.695,15.344 11.543,15.344 0.375,2.969 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#747B8A" points="11.852,15.344 0.375,2.625 0.375,2.797 11.695,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#737A89" points="0.375,2.453 12.004,15.344 11.852,15.344 0.375,2.625 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#727989" points="0.375,2.285 12.156,15.344 12.004,15.344 0.375,2.453 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#717888" points="0.375,2.113 12.312,15.344 12.156,15.344 0.375,2.285 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#707786" points="12.469,15.344 0.375,1.941 0.375,2.113 12.312,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6F7686" points="0.375,1.773 12.621,15.344 12.469,15.344 0.375,1.941 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7585" points="0.375,1.602 12.773,15.344 12.621,15.344 0.375,1.773 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7584" points="0.375,1.43 12.93,15.344 12.773,15.344 0.375,1.602 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6C7383" points="0.375,1.262 13.082,15.344 12.93,15.344 0.375,1.43 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6B7383" points="0.375,1.09 13.238,15.344 13.082,15.344 0.375,1.262 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6A7281" points="0.375,0.918 13.391,15.344 13.238,15.344 0.375,1.09 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697181" points="0.375,0.75 13.547,15.344 13.391,15.344 0.375,0.918 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697080" points="0.375,0.703 0.438,0.648 13.699,15.344 13.547,15.344 0.375,0.75 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#686F7F" points="0.438,0.648 0.523,0.57 13.852,15.344 13.699,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#676E7E" points="0.523,0.57 0.609,0.492 14.008,15.344 13.852,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#656D7D" points="0.609,0.492 0.691,0.418 14.16,15.344 14.008,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7D" points="0.691,0.418 0.738,0.375 0.809,0.375 14.312,15.344 14.16,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7C" points="0.961,0.375 14.469,15.344 14.312,15.344 0.809,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#636B7C" points="1.117,0.375 14.625,15.344 14.469,15.344 0.961,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#626B7B" points="1.27,0.375 14.777,15.344 14.625,15.344 1.117,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#616A7A" points="1.426,0.375 14.93,15.344 14.777,15.344 1.27,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#606979" points="1.578,0.375 15.039,15.289 14.98,15.344 14.93,15.344 1.426,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="1.734,0.375 15.125,15.215 15.039,15.289 1.578,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="1.887,0.375 15.207,15.137 15.125,15.215 1.734,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5E6777" points="15.207,15.137 15.293,15.062 2.039,0.375 1.887,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5D6676" points="2.195,0.375 15.344,14.945 15.344,15.016 15.293,15.062 2.039,0.375
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#5C6576" points="2.348,0.375 15.344,14.777 15.344,14.945 2.195,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="2.5,0.375 15.344,14.605 15.344,14.777 2.348,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="2.656,0.375 15.344,14.434 15.344,14.605 2.5,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5A6373" points="2.812,0.375 15.344,14.266 15.344,14.434 2.656,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#596273" points="2.965,0.375 15.344,14.094 15.344,14.266 2.812,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#586172" points="3.117,0.375 15.344,13.922 15.344,14.094 2.965,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#576172" points="3.273,0.375 15.344,13.75 15.344,13.922 3.117,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566071" points="15.344,13.582 3.426,0.375 3.273,0.375 15.344,13.75 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566070" points="3.582,0.375 15.344,13.41 15.344,13.582 3.426,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#555F70" points="3.734,0.375 15.344,13.238 15.344,13.41 3.582,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#545E6F" points="15.344,13.07 3.891,0.375 3.734,0.375 15.344,13.238 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535E6F" points="4.043,0.375 15.344,12.898 15.344,13.07 3.891,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535D6E" points="15.344,12.727 4.195,0.375 4.043,0.375 15.344,12.898 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#525C6D" points="4.352,0.375 15.344,12.559 15.344,12.727 4.195,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#515C6D" points="4.504,0.375 15.344,12.387 15.344,12.559 4.352,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="4.656,0.375 15.344,12.219 15.344,12.387 4.504,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="4.812,0.375 15.344,12.047 15.344,12.219 4.656,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505A6B" points="4.969,0.375 15.344,11.875 15.344,12.047 4.812,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4F596A" points="5.121,0.375 15.344,11.703 15.344,11.875 4.969,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4E596A" points="5.273,0.375 15.344,11.531 15.344,11.703 5.121,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4D5869" points="5.43,0.375 15.344,11.363 15.344,11.531 5.273,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5869" points="5.582,0.375 15.344,11.191 15.344,11.363 5.43,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5768" points="5.738,0.375 15.344,11.023 15.344,11.191 5.582,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5768" points="5.891,0.375 15.344,10.852 15.344,11.023 5.738,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5667" points="6.047,0.375 15.344,10.68 15.344,10.852 5.891,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4A5567" points="6.199,0.375 15.344,10.508 15.344,10.68 6.047,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#495566" points="6.352,0.375 15.344,10.34 15.344,10.508 6.199,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485566" points="6.508,0.375 15.344,10.168 15.344,10.34 6.352,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485466" points="6.66,0.375 15.344,10 15.344,10.168 6.508,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="6.812,0.375 15.344,9.828 15.344,10 6.66,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="6.969,0.375 15.344,9.656 15.344,9.828 6.812,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#465264" points="7.125,0.375 15.344,9.484 15.344,9.656 6.969,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#455264" points="7.277,0.375 15.344,9.312 15.344,9.484 7.125,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445263" points="7.43,0.375 15.344,9.145 15.344,9.312 7.277,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445163" points="7.586,0.375 15.344,8.973 15.344,9.145 7.43,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445062" points="15.344,8.805 7.738,0.375 7.586,0.375 15.344,8.973 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="7.895,0.375 15.344,8.633 15.344,8.805 7.738,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="8.047,0.375 15.344,8.461 15.344,8.633 7.895,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#424F61" points="15.344,8.289 8.203,0.375 8.047,0.375 15.344,8.461 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#414F61" points="8.355,0.375 15.344,8.121 15.344,8.289 8.203,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#404E60" points="8.508,0.375 15.344,7.949 15.344,8.121 8.355,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4E60" points="8.664,0.375 15.344,7.781 15.344,7.949 8.508,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D60" points="15.344,7.609 8.816,0.375 8.664,0.375 15.344,7.781 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D5F" points="8.969,0.375 15.344,7.438 15.344,7.609 8.816,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4D5F" points="9.125,0.375 15.344,7.266 15.344,7.438 8.969,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4C5E" points="9.281,0.375 15.344,7.094 15.344,7.266 9.125,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="9.434,0.375 15.344,6.926 15.344,7.094 9.281,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="9.586,0.375 15.344,6.754 15.344,6.926 9.434,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.742,0.375 15.344,6.586 15.344,6.754 9.586,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.895,0.375 15.344,6.414 15.344,6.586 9.742,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="10.047,0.375 15.344,6.242 15.344,6.414 9.895,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="10.203,0.375 15.344,6.07 15.344,6.242 10.047,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="10.355,0.375 15.344,5.898 15.344,6.07 10.203,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495C" points="10.512,0.375 15.344,5.73 15.344,5.898 10.355,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495B" points="15.344,5.559 10.664,0.375 10.512,0.375 15.344,5.73 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#39495B" points="10.82,0.375 15.344,5.391 15.344,5.559 10.664,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38495B" points="10.973,0.375 15.344,5.219 15.344,5.391 10.82,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485B" points="11.125,0.375 15.344,5.047 15.344,5.219 10.973,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485A" points="11.281,0.375 15.344,4.875 15.344,5.047 11.125,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37485A" points="11.434,0.375 15.344,4.707 15.344,4.875 11.281,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38475A" points="11.59,0.375 15.344,4.535 15.344,4.707 11.434,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37475A" points="15.344,4.363 11.742,0.375 11.59,0.375 15.344,4.535 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#374659" points="11.898,0.375 15.344,4.195 15.344,4.363 11.742,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="12.051,0.375 15.344,4.023 15.344,4.195 11.898,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="12.203,0.375 15.344,3.852 15.344,4.023 12.051,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="12.359,0.375 15.344,3.68 15.344,3.852 12.203,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="12.512,0.375 15.344,3.512 15.344,3.68 12.359,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="12.668,0.375 15.344,3.344 15.344,3.512 12.512,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354658" points="12.82,0.375 15.344,3.172 15.344,3.344 12.668,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="12.977,0.375 15.344,3 15.344,3.172 12.82,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="13.129,0.375 15.344,2.828 15.344,3 12.977,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="13.281,0.375 15.344,2.656 15.344,2.828 13.129,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="13.438,0.375 15.344,2.488 15.344,2.656 13.281,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.344,2.488 13.438,0.375 15.344,0.375 "/>
</g>
<path fill="#AEADAE" d="M14.969,7.858c0,3.92-3.189,7.109-7.109,7.109S0.75,11.778,0.75,7.858S3.939,0.75,7.859,0.75
S14.969,3.938,14.969,7.858z M7.859,0C3.525,0,0,3.525,0,7.858c0,4.334,3.525,7.859,7.859,7.859s7.859-3.525,7.859-7.859
C15.719,3.525,12.193,0,7.859,0z"/>
<path fill="#FFFFFF" d="M5.208,4.142v7.601H4.163V6.341H2.414V5.582c0.484-0.011,1.716-0.044,1.991-1.44H5.208z"/>
<path fill="#FFFFFF" d="M10.455,11.819c-0.627,0-1.562-0.144-2.211-1.199C7.76,9.817,7.683,8.783,7.683,7.958
c0-0.495,0.022-0.968,0.11-1.43c0.341-1.87,1.518-2.563,2.739-2.563c0.429,0,0.857,0.089,1.231,0.275
c1.122,0.605,1.485,1.947,1.485,3.575C13.249,8.541,13.249,11.819,10.455,11.819z M12.182,7.771c0-0.814-0.044-2.959-1.683-2.959
c-0.297,0-0.594,0.088-0.825,0.242C8.948,5.549,8.75,6.649,8.75,7.925c0,0.804,0.044,3.025,1.727,3.025
C12.028,10.95,12.182,9.091,12.182,7.771z"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 772 B

View File

@ -0,0 +1,189 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
width="17" height="17" viewBox="-0.75 -0.957 17 17" enable-background="new -0.75 -0.957 17 17" xml:space="preserve">
<defs>
</defs>
<g>
<defs>
<circle id="XMLID_6_" cx="7.859" cy="7.859" r="7.484"/>
</defs>
<clipPath id="XMLID_9_">
<use xlink:href="#XMLID_6_" />
</clipPath>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,11.676 3.648,15.344 0.375,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,11.52 3.785,15.344 3.648,15.344 0.375,11.676 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C9D0D5" points="0.375,11.363 3.922,15.344 3.785,15.344 0.375,11.52 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C6CDD3" points="0.375,11.211 4.062,15.344 3.922,15.344 0.375,11.363 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C5CCD2" points="0.375,11.059 4.199,15.344 4.062,15.344 0.375,11.211 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C3C9D0" points="0.375,10.902 4.336,15.344 4.199,15.344 0.375,11.059 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C1C8CE" points="0.375,10.746 4.473,15.344 4.336,15.344 0.375,10.902 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BFC5CC" points="0.375,10.594 4.609,15.344 4.473,15.344 0.375,10.746 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BEC4CB" points="0.375,10.441 4.75,15.344 4.609,15.344 0.375,10.594 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BBC2C9" points="0.375,10.285 4.887,15.344 4.75,15.344 0.375,10.441 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BAC0C8" points="0.375,10.133 5.023,15.344 4.887,15.344 0.375,10.285 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B7BEC6" points="0.375,9.977 5.16,15.344 5.023,15.344 0.375,10.133 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B6BDC5" points="0.375,9.824 5.297,15.344 5.16,15.344 0.375,9.977 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B5BBC3" points="0.375,9.668 5.438,15.344 5.297,15.344 0.375,9.824 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B3BAC2" points="5.574,15.344 0.375,9.516 0.375,9.668 5.438,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B1B7C0" points="5.711,15.344 0.375,9.359 0.375,9.516 5.574,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B0B6BF" points="5.848,15.344 0.375,9.207 0.375,9.359 5.711,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AEB5BE" points="5.984,15.344 0.375,9.051 0.375,9.207 5.848,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ADB3BC" points="6.125,15.344 0.375,8.898 0.375,9.051 5.984,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ABB2BC" points="6.262,15.344 0.375,8.746 0.375,8.898 6.125,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AAB0BA" points="0.375,8.59 6.398,15.344 6.262,15.344 0.375,8.746 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A8AEB8" points="0.375,8.434 6.535,15.344 6.398,15.344 0.375,8.59 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ADB7" points="6.672,15.344 0.375,8.281 0.375,8.434 6.535,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ACB6" points="6.812,15.344 0.375,8.129 0.375,8.281 6.672,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A3AAB4" points="6.949,15.344 0.375,7.973 0.375,8.129 6.812,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A2A8B3" points="7.086,15.344 0.375,7.816 0.375,7.973 6.949,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A0A7B1" points="7.227,15.344 0.375,7.664 0.375,7.816 7.086,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9FA6B0" points="0.375,7.512 7.363,15.344 7.227,15.344 0.375,7.664 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9EA4AF" points="0.375,7.355 7.5,15.344 7.363,15.344 0.375,7.512 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9CA3AE" points="0.375,7.199 7.637,15.344 7.5,15.344 0.375,7.355 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9BA1AD" points="7.773,15.344 0.375,7.047 0.375,7.199 7.637,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9AA0AB" points="7.914,15.344 0.375,6.895 0.375,7.047 7.773,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#989FAA" points="8.047,15.344 0.375,6.738 0.375,6.895 7.914,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#979EAA" points="0.375,6.582 8.188,15.344 8.047,15.344 0.375,6.738 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#969CA8" points="0.375,6.43 8.324,15.344 8.188,15.344 0.375,6.582 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#949BA7" points="0.375,6.277 8.461,15.344 8.324,15.344 0.375,6.43 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9399A5" points="0.375,6.121 8.602,15.344 8.461,15.344 0.375,6.277 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9298A4" points="0.375,5.965 8.738,15.344 8.602,15.344 0.375,6.121 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9097A3" points="0.375,5.812 8.875,15.344 8.738,15.344 0.375,5.965 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8F95A2" points="0.375,5.66 9.012,15.344 8.875,15.344 0.375,5.812 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8E95A1" points="0.375,5.504 9.148,15.344 9.012,15.344 0.375,5.66 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8D93A0" points="0.375,5.352 9.289,15.344 9.148,15.344 0.375,5.504 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8B929F" points="0.375,5.195 9.426,15.344 9.289,15.344 0.375,5.352 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8A919E" points="0.375,5.043 9.562,15.344 9.426,15.344 0.375,5.195 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#898F9D" points="0.375,4.887 9.699,15.344 9.562,15.344 0.375,5.043 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878E9B" points="0.375,4.734 9.836,15.344 9.699,15.344 0.375,4.887 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878D9B" points="0.375,4.578 9.977,15.344 9.836,15.344 0.375,4.734 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#858C9A" points="0.375,4.426 10.113,15.344 9.977,15.344 0.375,4.578 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#848B98" points="0.375,4.27 10.25,15.344 10.113,15.344 0.375,4.426 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#838A97" points="0.375,4.117 10.391,15.344 10.25,15.344 0.375,4.27 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#828997" points="0.375,3.965 10.523,15.344 10.391,15.344 0.375,4.117 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#818895" points="0.375,3.809 10.664,15.344 10.523,15.344 0.375,3.965 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#808794" points="0.375,3.652 10.801,15.344 10.664,15.344 0.375,3.809 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7E8594" points="0.375,3.5 10.938,15.344 10.801,15.344 0.375,3.652 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7D8593" points="0.375,3.348 11.078,15.344 10.938,15.344 0.375,3.5 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7C8392" points="11.211,15.344 0.375,3.191 0.375,3.348 11.078,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7B8290" points="0.375,3.035 11.352,15.344 11.211,15.344 0.375,3.191 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7A8190" points="0.375,2.883 11.488,15.344 11.352,15.344 0.375,3.035 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#79808F" points="0.375,2.73 11.625,15.344 11.488,15.344 0.375,2.883 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#787F8D" points="0.375,2.574 11.762,15.344 11.625,15.344 0.375,2.73 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#777E8D" points="11.898,15.344 0.375,2.418 0.375,2.574 11.762,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767D8C" points="0.375,2.266 12.039,15.344 11.898,15.344 0.375,2.418 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767C8B" points="0.375,2.113 12.176,15.344 12.039,15.344 0.375,2.266 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#747B8A" points="0.375,1.957 12.312,15.344 12.176,15.344 0.375,2.113 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#737A89" points="12.449,15.344 0.375,1.801 0.375,1.957 12.312,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#727989" points="12.59,15.344 0.375,1.648 0.375,1.801 12.449,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#717888" points="0.375,1.496 12.727,15.344 12.59,15.344 0.375,1.648 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#707786" points="0.375,1.34 12.863,15.344 12.727,15.344 0.375,1.496 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6F7686" points="0.375,1.188 13,15.344 12.863,15.344 0.375,1.34 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7585" points="0.375,1.031 13.141,15.344 13,15.344 0.375,1.188 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7584" points="0.375,0.879 13.277,15.344 13.141,15.344 0.375,1.031 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6C7383" points="0.375,0.723 13.414,15.344 13.277,15.344 0.375,0.879 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6B7383" points="0.375,0.684 0.43,0.633 13.551,15.344 13.414,15.344 0.375,0.723 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6A7281" points="0.43,0.633 0.508,0.566 13.688,15.344 13.551,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697181" points="0.508,0.566 0.586,0.496 13.828,15.344 13.688,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697080" points="0.586,0.496 0.664,0.43 13.965,15.344 13.828,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#686F7F" points="0.664,0.43 0.723,0.375 0.75,0.375 14.102,15.344 13.965,15.344 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#676E7E" points="0.891,0.375 14.238,15.344 14.102,15.344 0.75,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#656D7D" points="1.027,0.375 14.375,15.344 14.238,15.344 0.891,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7D" points="1.164,0.375 14.516,15.344 14.375,15.344 1.027,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7C" points="1.301,0.375 14.652,15.344 14.516,15.344 1.164,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#636B7C" points="1.438,0.375 14.789,15.344 14.652,15.344 1.301,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#626B7B" points="1.578,0.375 14.926,15.344 14.789,15.344 1.438,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#616A7A" points="1.715,0.375 15.035,15.312 15,15.344 14.926,15.344 1.578,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#606979" points="1.852,0.375 15.109,15.242 15.035,15.312 1.715,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="1.988,0.375 15.188,15.176 15.109,15.242 1.852,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="2.125,0.375 15.266,15.105 15.188,15.176 1.988,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5E6777" points="2.266,0.375 15.344,15.039 15.266,15.105 2.125,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5D6676" points="15.344,15.039 15.344,15.035 15.344,14.887 2.402,0.375 2.266,0.375
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#5C6576" points="2.539,0.375 15.344,14.73 15.344,14.887 2.402,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="15.344,14.578 2.676,0.375 2.539,0.375 15.344,14.73 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="15.344,14.426 2.816,0.375 2.676,0.375 15.344,14.578 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5A6373" points="2.953,0.375 15.344,14.27 15.344,14.426 2.816,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#596273" points="3.09,0.375 15.344,14.113 15.344,14.27 2.953,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#586172" points="3.227,0.375 15.344,13.961 15.344,14.113 3.09,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#576172" points="3.363,0.375 15.344,13.809 15.344,13.961 3.227,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566071" points="3.5,0.375 15.344,13.652 15.344,13.809 3.363,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566070" points="3.641,0.375 15.344,13.496 15.344,13.652 3.5,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#555F70" points="3.777,0.375 15.344,13.344 15.344,13.496 3.641,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#545E6F" points="3.914,0.375 15.344,13.191 15.344,13.344 3.777,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535E6F" points="4.055,0.375 15.344,13.035 15.344,13.191 3.914,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535D6E" points="4.188,0.375 15.344,12.879 15.344,13.035 4.055,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#525C6D" points="4.328,0.375 15.344,12.727 15.344,12.879 4.188,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#515C6D" points="4.465,0.375 15.344,12.574 15.344,12.727 4.328,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="4.602,0.375 15.344,12.418 15.344,12.574 4.465,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="4.742,0.375 15.344,12.262 15.344,12.418 4.602,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505A6B" points="4.875,0.375 15.344,12.109 15.344,12.262 4.742,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4F596A" points="5.016,0.375 15.344,11.957 15.344,12.109 4.875,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4E596A" points="5.152,0.375 15.344,11.801 15.344,11.957 5.016,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4D5869" points="5.289,0.375 15.344,11.648 15.344,11.801 5.152,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5869" points="5.43,0.375 15.344,11.492 15.344,11.648 5.289,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5768" points="5.566,0.375 15.344,11.34 15.344,11.492 5.43,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5768" points="15.344,11.184 5.703,0.375 5.566,0.375 15.344,11.34 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5667" points="5.84,0.375 15.344,11.031 15.344,11.184 5.703,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4A5567" points="5.977,0.375 15.344,10.875 15.344,11.031 5.84,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#495566" points="6.117,0.375 15.344,10.723 15.344,10.875 5.977,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485566" points="6.254,0.375 15.344,10.566 15.344,10.723 6.117,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485466" points="6.391,0.375 15.344,10.414 15.344,10.566 6.254,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="6.527,0.375 15.344,10.262 15.344,10.414 6.391,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="15.344,10.105 6.664,0.375 6.527,0.375 15.344,10.262 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#465264" points="15.344,9.949 6.805,0.375 6.664,0.375 15.344,10.105 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#455264" points="6.941,0.375 15.344,9.797 15.344,9.949 6.805,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445263" points="7.078,0.375 15.344,9.645 15.344,9.797 6.941,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445163" points="7.215,0.375 15.344,9.488 15.344,9.645 7.078,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445062" points="7.352,0.375 15.344,9.332 15.344,9.488 7.215,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="7.492,0.375 15.344,9.18 15.344,9.332 7.352,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="15.344,9.027 7.629,0.375 7.492,0.375 15.344,9.18 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#424F61" points="15.344,8.871 7.766,0.375 7.629,0.375 15.344,9.027 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#414F61" points="7.902,0.375 15.344,8.715 15.344,8.871 7.766,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#404E60" points="8.039,0.375 15.344,8.562 15.344,8.715 7.902,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4E60" points="8.18,0.375 15.344,8.41 15.344,8.562 8.039,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D60" points="8.316,0.375 15.344,8.254 15.344,8.41 8.18,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D5F" points="8.453,0.375 15.344,8.098 15.344,8.254 8.316,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4D5F" points="8.59,0.375 15.344,7.945 15.344,8.098 8.453,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4C5E" points="8.73,0.375 15.344,7.793 15.344,7.945 8.59,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="8.867,0.375 15.344,7.637 15.344,7.793 8.73,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="9.004,0.375 15.344,7.484 15.344,7.637 8.867,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.141,0.375 15.344,7.332 15.344,7.484 9.004,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.281,0.375 15.344,7.176 15.344,7.332 9.141,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.418,0.375 15.344,7.02 15.344,7.176 9.281,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="9.555,0.375 15.344,6.867 15.344,7.02 9.418,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="9.691,0.375 15.344,6.711 15.344,6.867 9.555,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495C" points="15.344,6.559 9.828,0.375 9.691,0.375 15.344,6.711 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495B" points="9.969,0.375 15.344,6.402 15.344,6.559 9.828,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#39495B" points="15.344,6.25 10.105,0.375 9.969,0.375 15.344,6.402 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38495B" points="10.242,0.375 15.344,6.098 15.344,6.25 10.105,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485B" points="15.344,5.941 10.379,0.375 10.242,0.375 15.344,6.098 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485A" points="10.516,0.375 15.344,5.785 15.344,5.941 10.379,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37485A" points="10.656,0.375 15.344,5.633 15.344,5.785 10.516,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38475A" points="10.793,0.375 15.344,5.48 15.344,5.633 10.656,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37475A" points="10.93,0.375 15.344,5.324 15.344,5.48 10.793,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#374659" points="11.066,0.375 15.344,5.168 15.344,5.324 10.93,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="11.203,0.375 15.344,5.016 15.344,5.168 11.066,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="15.344,4.863 11.344,0.375 11.203,0.375 15.344,5.016 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="11.48,0.375 15.344,4.707 15.344,4.863 11.344,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="11.617,0.375 15.344,4.555 15.344,4.707 11.48,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="11.754,0.375 15.344,4.398 15.344,4.555 11.617,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354658" points="11.891,0.375 15.344,4.246 15.344,4.398 11.754,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="12.031,0.375 15.344,4.09 15.344,4.246 11.891,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.344,3.938 12.168,0.375 12.031,0.375 15.344,4.09 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.344,3.781 12.305,0.375 12.168,0.375 15.344,3.938 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="12.441,0.375 15.344,3.629 15.344,3.781 12.305,0.375 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.344,3.629 12.441,0.375 15.344,0.375 "/>
</g>
<path fill="#AEADAE" d="M14.969,7.859c0,3.92-3.188,7.109-7.108,7.109c-3.921,0-7.11-3.189-7.11-7.109S3.939,0.75,7.86,0.75
C11.78,0.75,14.969,3.939,14.969,7.859z M7.86,0C3.526,0,0,3.525,0,7.859s3.526,7.859,7.86,7.859c4.333,0,7.858-3.525,7.858-7.859
S12.193,0,7.86,0z"/>
<path fill="#FFFFFF" d="M6.235,4.143v7.601H5.19V6.342H3.441V5.583c0.484-0.011,1.716-0.044,1.991-1.44H6.235z"/>
<path fill="#FFFFFF" d="M10.363,4.143v7.601H9.318V6.342H7.569V5.583c0.484-0.011,1.716-0.044,1.991-1.44H10.363z"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 839 B

View File

@ -0,0 +1,194 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
width="17" height="17" viewBox="-0.75 -0.657 17 17" enable-background="new -0.75 -0.657 17 17" xml:space="preserve">
<defs>
</defs>
<g>
<defs>
<circle id="XMLID_6_" cx="7.859" cy="7.859" r="7.484"/>
</defs>
<clipPath id="XMLID_9_">
<use xlink:href="#XMLID_6_" />
</clipPath>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,10.569 4.891,15.343 0.375,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,10.413 5.039,15.343 4.891,15.343 0.375,10.569 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C9D0D5" points="0.375,10.261 5.18,15.343 5.039,15.343 0.375,10.413 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C6CDD3" points="0.375,10.108 5.328,15.343 5.18,15.343 0.375,10.261 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C5CCD2" points="5.473,15.343 0.375,9.952 0.375,10.108 5.328,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C3C9D0" points="0.375,9.8 5.617,15.343 5.473,15.343 0.375,9.952 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C1C8CE" points="0.375,9.647 5.762,15.343 5.617,15.343 0.375,9.8 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BFC5CC" points="0.375,9.495 5.906,15.343 5.762,15.343 0.375,9.647 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BEC4CB" points="0.375,9.339 6.055,15.343 5.906,15.343 0.375,9.495 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BBC2C9" points="0.375,9.187 6.199,15.343 6.055,15.343 0.375,9.339 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BAC0C8" points="6.344,15.343 0.375,9.034 0.375,9.187 6.199,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B7BEC6" points="0.375,8.882 6.488,15.343 6.344,15.343 0.375,9.034 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B6BDC5" points="0.375,8.726 6.633,15.343 6.488,15.343 0.375,8.882 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B5BBC3" points="0.375,8.573 6.781,15.343 6.633,15.343 0.375,8.726 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B3BAC2" points="0.375,8.421 6.926,15.343 6.781,15.343 0.375,8.573 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B1B7C0" points="0.375,8.265 7.07,15.343 6.926,15.343 0.375,8.421 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B0B6BF" points="0.375,8.112 7.215,15.343 7.07,15.343 0.375,8.265 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AEB5BE" points="7.359,15.343 0.375,7.96 0.375,8.112 7.215,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ADB3BC" points="0.375,7.804 7.504,15.343 7.359,15.343 0.375,7.96 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ABB2BC" points="0.375,7.651 7.648,15.343 7.504,15.343 0.375,7.804 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AAB0BA" points="0.375,7.499 7.797,15.343 7.648,15.343 0.375,7.651 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A8AEB8" points="0.375,7.347 7.941,15.343 7.797,15.343 0.375,7.499 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ADB7" points="0.375,7.19 8.086,15.343 7.941,15.343 0.375,7.347 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ACB6" points="0.375,7.038 8.23,15.343 8.086,15.343 0.375,7.19 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A3AAB4" points="0.375,6.886 8.375,15.343 8.23,15.343 0.375,7.038 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A2A8B3" points="0.375,6.733 8.523,15.343 8.375,15.343 0.375,6.886 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A0A7B1" points="0.375,6.577 8.664,15.343 8.523,15.343 0.375,6.733 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9FA6B0" points="0.375,6.425 8.812,15.343 8.664,15.343 0.375,6.577 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9EA4AF" points="0.375,6.272 8.957,15.343 8.812,15.343 0.375,6.425 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9CA3AE" points="0.375,6.116 9.102,15.343 8.957,15.343 0.375,6.272 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9BA1AD" points="0.375,5.964 9.246,15.343 9.102,15.343 0.375,6.116 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9AA0AB" points="0.375,5.812 9.391,15.343 9.246,15.343 0.375,5.964 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#989FAA" points="0.375,5.655 9.539,15.343 9.391,15.343 0.375,5.812 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#979EAA" points="0.375,5.503 9.68,15.343 9.539,15.343 0.375,5.655 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#969CA8" points="0.375,5.351 9.828,15.343 9.68,15.343 0.375,5.503 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#949BA7" points="0.375,5.198 9.973,15.343 9.828,15.343 0.375,5.351 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9399A5" points="0.375,5.046 10.117,15.343 9.973,15.343 0.375,5.198 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9298A4" points="0.375,4.89 10.262,15.343 10.117,15.343 0.375,5.046 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9097A3" points="0.375,4.737 10.406,15.343 10.262,15.343 0.375,4.89 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8F95A2" points="0.375,4.585 10.555,15.343 10.406,15.343 0.375,4.737 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8E95A1" points="0.375,4.429 10.699,15.343 10.555,15.343 0.375,4.585 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8D93A0" points="0.375,4.276 10.844,15.343 10.699,15.343 0.375,4.429 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8B929F" points="0.375,4.124 10.988,15.343 10.844,15.343 0.375,4.276 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8A919E" points="0.375,3.968 11.133,15.343 10.988,15.343 0.375,4.124 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#898F9D" points="0.375,3.815 11.281,15.343 11.133,15.343 0.375,3.968 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878E9B" points="0.375,3.663 11.422,15.343 11.281,15.343 0.375,3.815 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878D9B" points="0.375,3.511 11.57,15.343 11.422,15.343 0.375,3.663 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#858C9A" points="0.375,3.354 11.715,15.343 11.57,15.343 0.375,3.511 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#848B98" points="11.859,15.343 0.375,3.202 0.375,3.354 11.715,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#838A97" points="0.375,3.05 12.004,15.343 11.859,15.343 0.375,3.202 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#828997" points="0.375,2.897 12.148,15.343 12.004,15.343 0.375,3.05 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#818895" points="0.375,2.741 12.297,15.343 12.148,15.343 0.375,2.897 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#808794" points="0.375,2.589 12.441,15.343 12.297,15.343 0.375,2.741 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7E8594" points="12.586,15.343 0.375,2.437 0.375,2.589 12.441,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7D8593" points="0.375,2.28 12.73,15.343 12.586,15.343 0.375,2.437 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7C8392" points="0.375,2.128 12.875,15.343 12.73,15.343 0.375,2.28 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7B8290" points="13.02,15.343 0.375,1.976 0.375,2.128 12.875,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7A8190" points="13.164,15.343 0.375,1.819 0.375,1.976 13.02,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#79808F" points="13.312,15.343 0.375,1.667 0.375,1.819 13.164,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#787F8D" points="0.375,1.515 13.457,15.343 13.312,15.343 0.375,1.667 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#777E8D" points="0.375,1.362 13.602,15.343 13.457,15.343 0.375,1.515 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767D8C" points="0.375,1.206 13.746,15.343 13.602,15.343 0.375,1.362 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767C8B" points="0.375,1.054 13.891,15.343 13.746,15.343 0.375,1.206 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#747B8A" points="0.375,0.901 14.039,15.343 13.891,15.343 0.375,1.054 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#737A89" points="0.375,0.792 0.398,0.772 14.184,15.343 14.039,15.343 0.375,0.901 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#727989" points="0.398,0.772 0.477,0.698 14.328,15.343 14.184,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#717888" points="0.477,0.698 0.551,0.624 14.473,15.343 14.328,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#707786" points="14.617,15.343 0.629,0.554 0.551,0.624 14.473,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6F7686" points="14.766,15.343 0.703,0.483 0.629,0.554 14.617,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7585" points="14.906,15.343 14.906,15.343 0.781,0.409 0.703,0.483 14.766,15.343
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7584" points="0.781,0.409 0.816,0.374 0.895,0.374 14.984,15.269 14.906,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6C7383" points="14.984,15.269 15.059,15.194 1.039,0.374 0.895,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6B7383" points="15.059,15.194 15.137,15.124 1.184,0.374 1.039,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6A7281" points="1.328,0.374 15.211,15.05 15.137,15.124 1.184,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697181" points="1.477,0.374 15.289,14.979 15.211,15.05 1.328,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697080" points="1.617,0.374 15.344,14.882 15.344,14.929 15.289,14.979 1.477,0.374
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#686F7F" points="1.766,0.374 15.344,14.729 15.344,14.882 1.617,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#676E7E" points="1.91,0.374 15.344,14.577 15.344,14.729 1.766,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#656D7D" points="2.055,0.374 15.344,14.421 15.344,14.577 1.91,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7D" points="2.199,0.374 15.344,14.269 15.344,14.421 2.055,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7C" points="2.344,0.374 15.344,14.116 15.344,14.269 2.199,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#636B7C" points="15.344,13.964 2.492,0.374 2.344,0.374 15.344,14.116 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#626B7B" points="2.637,0.374 15.344,13.808 15.344,13.964 2.492,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#616A7A" points="2.781,0.374 15.344,13.655 15.344,13.808 2.637,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#606979" points="15.344,13.499 2.926,0.374 2.781,0.374 15.344,13.655 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="15.344,13.351 3.07,0.374 2.926,0.374 15.344,13.499 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="15.344,13.194 3.219,0.374 3.07,0.374 15.344,13.351 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5E6777" points="3.359,0.374 15.344,13.042 15.344,13.194 3.219,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5D6676" points="3.508,0.374 15.344,12.89 15.344,13.042 3.359,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5C6576" points="3.652,0.374 15.344,12.733 15.344,12.89 3.508,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="3.797,0.374 15.344,12.581 15.344,12.733 3.652,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="3.941,0.374 15.344,12.429 15.344,12.581 3.797,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5A6373" points="4.086,0.374 15.344,12.272 15.344,12.429 3.941,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#596273" points="4.234,0.374 15.344,12.12 15.344,12.272 4.086,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#586172" points="4.375,0.374 15.344,11.968 15.344,12.12 4.234,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#576172" points="4.523,0.374 15.344,11.815 15.344,11.968 4.375,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566071" points="4.668,0.374 15.344,11.663 15.344,11.815 4.523,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566070" points="4.812,0.374 15.344,11.507 15.344,11.663 4.668,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#555F70" points="4.957,0.374 15.344,11.354 15.344,11.507 4.812,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#545E6F" points="5.102,0.374 15.344,11.202 15.344,11.354 4.957,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535E6F" points="5.25,0.374 15.344,11.046 15.344,11.202 5.102,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535D6E" points="5.395,0.374 15.344,10.894 15.344,11.046 5.25,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#525C6D" points="5.539,0.374 15.344,10.741 15.344,10.894 5.395,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#515C6D" points="5.684,0.374 15.344,10.585 15.344,10.741 5.539,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="15.344,10.433 5.828,0.374 5.684,0.374 15.344,10.585 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="15.344,10.28 5.977,0.374 5.828,0.374 15.344,10.433 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505A6B" points="6.117,0.374 15.344,10.128 15.344,10.28 5.977,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4F596A" points="6.266,0.374 15.344,9.972 15.344,10.128 6.117,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4E596A" points="6.41,0.374 15.344,9.819 15.344,9.972 6.266,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4D5869" points="6.555,0.374 15.344,9.667 15.344,9.819 6.41,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5869" points="6.699,0.374 15.344,9.515 15.344,9.667 6.555,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5768" points="15.344,9.358 6.844,0.374 6.699,0.374 15.344,9.515 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5768" points="15.344,9.206 6.992,0.374 6.844,0.374 15.344,9.358 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5667" points="7.137,0.374 15.344,9.054 15.344,9.206 6.992,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4A5567" points="7.281,0.374 15.344,8.897 15.344,9.054 7.137,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#495566" points="7.426,0.374 15.344,8.745 15.344,8.897 7.281,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485566" points="7.57,0.374 15.344,8.593 15.344,8.745 7.426,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485466" points="7.715,0.374 15.344,8.437 15.344,8.593 7.57,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="7.859,0.374 15.344,8.284 15.344,8.437 7.715,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="8.008,0.374 15.344,8.132 15.344,8.284 7.859,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#465264" points="8.152,0.374 15.344,7.976 15.344,8.132 8.008,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#455264" points="8.297,0.374 15.344,7.827 15.344,7.976 8.152,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445263" points="8.441,0.374 15.344,7.671 15.344,7.827 8.297,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445163" points="8.586,0.374 15.344,7.519 15.344,7.671 8.441,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445062" points="8.73,0.374 15.344,7.366 15.344,7.519 8.586,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="8.875,0.374 15.344,7.21 15.344,7.366 8.73,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="9.023,0.374 15.344,7.058 15.344,7.21 8.875,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#424F61" points="9.168,0.374 15.344,6.905 15.344,7.058 9.023,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#414F61" points="15.344,6.749 9.312,0.374 9.168,0.374 15.344,6.905 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#404E60" points="9.457,0.374 15.344,6.597 15.344,6.749 9.312,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4E60" points="9.602,0.374 15.344,6.444 15.344,6.597 9.457,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D60" points="9.75,0.374 15.344,6.288 15.344,6.444 9.602,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D5F" points="9.895,0.374 15.344,6.136 15.344,6.288 9.75,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4D5F" points="15.344,5.983 10.039,0.374 9.895,0.374 15.344,6.136 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4C5E" points="15.344,5.831 10.184,0.374 10.039,0.374 15.344,5.983 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="15.344,5.679 10.328,0.374 10.184,0.374 15.344,5.831 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="10.477,0.374 15.344,5.522 15.344,5.679 10.328,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="10.617,0.374 15.344,5.37 15.344,5.522 10.477,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="10.766,0.374 15.344,5.218 15.344,5.37 10.617,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="10.91,0.374 15.344,5.062 15.344,5.218 10.766,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="11.055,0.374 15.344,4.909 15.344,5.062 10.91,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="15.344,4.757 11.199,0.374 11.055,0.374 15.344,4.909 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495C" points="15.344,4.601 11.344,0.374 11.199,0.374 15.344,4.757 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495B" points="15.344,4.448 11.492,0.374 11.344,0.374 15.344,4.601 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#39495B" points="15.344,4.296 11.637,0.374 11.492,0.374 15.344,4.448 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38495B" points="15.344,4.14 11.781,0.374 11.637,0.374 15.344,4.296 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485B" points="11.926,0.374 15.344,3.987 15.344,4.14 11.781,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485A" points="12.07,0.374 15.344,3.835 15.344,3.987 11.926,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37485A" points="12.215,0.374 15.344,3.683 15.344,3.835 12.07,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38475A" points="12.359,0.374 15.344,3.53 15.344,3.683 12.215,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37475A" points="12.508,0.374 15.344,3.374 15.344,3.53 12.359,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#374659" points="12.652,0.374 15.344,3.222 15.344,3.374 12.508,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="12.797,0.374 15.344,3.069 15.344,3.222 12.652,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="12.941,0.374 15.344,2.913 15.344,3.069 12.797,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="13.086,0.374 15.344,2.761 15.344,2.913 12.941,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="13.23,0.374 15.344,2.608 15.344,2.761 13.086,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="13.375,0.374 15.344,2.452 15.344,2.608 13.23,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354658" points="13.523,0.374 15.344,2.3 15.344,2.452 13.375,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="13.668,0.374 15.344,2.147 15.344,2.3 13.523,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="13.812,0.374 15.344,1.991 15.344,2.147 13.668,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="13.957,0.374 15.344,1.839 15.344,1.991 13.812,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="14.102,0.374 15.344,1.687 15.344,1.839 13.957,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.344,1.687 14.102,0.374 15.344,0.374 "/>
</g>
<path fill="#AEADAE" d="M14.969,7.859c0,3.92-3.189,7.108-7.109,7.108S0.75,11.779,0.75,7.859S3.939,0.75,7.859,0.75
S14.969,3.939,14.969,7.859z M7.859,0C3.525,0,0,3.525,0,7.859c0,4.333,3.525,7.858,7.859,7.858s7.859-3.525,7.859-7.858
C15.719,3.525,12.193,0,7.859,0z"/>
<path fill="#FFFFFF" d="M5.208,4.143v7.601H4.163V6.342H2.414V5.583c0.484-0.011,1.716-0.044,1.991-1.44H5.208z"/>
<path fill="#FFFFFF" d="M13.161,10.786v0.957H7.936v-1.056l0.177-0.154c0.253-0.231,0.506-0.462,0.759-0.682
c0.264-0.242,0.55-0.474,0.813-0.704c1.441-1.222,2.189-1.893,2.189-2.882c0-0.275-0.099-1.31-1.397-1.31
c-1.121,0-1.363,0.803-1.44,1.133C8.959,6.431,8.97,6.672,8.981,6.925L7.914,6.87c0-0.275,0-0.704,0.154-1.188
c0.352-1.078,1.242-1.64,2.452-1.64c1.717,0,2.421,1.078,2.421,2.179c0,1.144-0.639,2.013-2.156,3.256
c-0.265,0.209-0.518,0.418-0.781,0.627c-0.11,0.099-0.671,0.571-0.803,0.682H13.161z"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 850 B

View File

@ -0,0 +1,195 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
width="17" height="17" viewBox="-0.75 -0.357 17 17" enable-background="new -0.75 -0.357 17 17" xml:space="preserve">
<defs>
</defs>
<g>
<defs>
<circle id="XMLID_6_" cx="7.859" cy="7.859" r="7.484"/>
</defs>
<clipPath id="XMLID_9_">
<use xlink:href="#XMLID_6_" />
</clipPath>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,11.256 3.535,15.342 0.375,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,11.064 3.68,15.342 3.535,15.342 0.375,11.256 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C9D0D5" points="0.375,10.877 3.824,15.342 3.68,15.342 0.375,11.064 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C6CDD3" points="0.375,10.689 3.969,15.342 3.824,15.342 0.375,10.877 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C5CCD2" points="0.375,10.502 4.117,15.342 3.969,15.342 0.375,10.689 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C3C9D0" points="4.262,15.342 0.375,10.314 0.375,10.502 4.117,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C1C8CE" points="0.375,10.127 4.406,15.342 4.262,15.342 0.375,10.314 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BFC5CC" points="0.375,9.939 4.551,15.342 4.406,15.342 0.375,10.127 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BEC4CB" points="0.375,9.748 4.699,15.342 4.551,15.342 0.375,9.939 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BBC2C9" points="0.375,9.561 4.844,15.342 4.699,15.342 0.375,9.748 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BAC0C8" points="0.375,9.373 4.988,15.342 4.844,15.342 0.375,9.561 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B7BEC6" points="0.375,9.186 5.133,15.342 4.988,15.342 0.375,9.373 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B6BDC5" points="5.281,15.342 0.375,8.994 0.375,9.186 5.133,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B5BBC3" points="0.375,8.807 5.426,15.342 5.281,15.342 0.375,8.994 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B3BAC2" points="0.375,8.619 5.57,15.342 5.426,15.342 0.375,8.807 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B1B7C0" points="5.719,15.342 0.375,8.432 0.375,8.619 5.57,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B0B6BF" points="0.375,8.244 5.863,15.342 5.719,15.342 0.375,8.432 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AEB5BE" points="0.375,8.057 6.008,15.342 5.863,15.342 0.375,8.244 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ADB3BC" points="0.375,7.865 6.152,15.342 6.008,15.342 0.375,8.057 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ABB2BC" points="0.375,7.678 6.297,15.342 6.152,15.342 0.375,7.865 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AAB0BA" points="6.445,15.342 0.375,7.49 0.375,7.678 6.297,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A8AEB8" points="0.375,7.299 6.59,15.342 6.445,15.342 0.375,7.49 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ADB7" points="6.734,15.342 0.375,7.111 0.375,7.299 6.59,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ACB6" points="0.375,6.924 6.883,15.342 6.734,15.342 0.375,7.111 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A3AAB4" points="0.375,6.736 7.023,15.342 6.883,15.342 0.375,6.924 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A2A8B3" points="7.172,15.342 0.375,6.549 0.375,6.736 7.023,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A0A7B1" points="0.375,6.361 7.316,15.342 7.172,15.342 0.375,6.549 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9FA6B0" points="0.375,6.17 7.461,15.342 7.316,15.342 0.375,6.361 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9EA4AF" points="0.375,5.982 7.609,15.342 7.461,15.342 0.375,6.17 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9CA3AE" points="0.375,5.795 7.754,15.342 7.609,15.342 0.375,5.982 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9BA1AD" points="0.375,5.604 7.898,15.342 7.754,15.342 0.375,5.795 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9AA0AB" points="0.375,5.416 8.043,15.342 7.898,15.342 0.375,5.604 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#989FAA" points="0.375,5.229 8.188,15.342 8.043,15.342 0.375,5.416 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#979EAA" points="0.375,5.041 8.336,15.342 8.188,15.342 0.375,5.229 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#969CA8" points="0.375,4.854 8.48,15.342 8.336,15.342 0.375,5.041 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#949BA7" points="0.375,4.666 8.625,15.342 8.48,15.342 0.375,4.854 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9399A5" points="0.375,4.479 8.773,15.342 8.625,15.342 0.375,4.666 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9298A4" points="0.375,4.287 8.918,15.342 8.773,15.342 0.375,4.479 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9097A3" points="9.062,15.342 0.375,4.1 0.375,4.287 8.918,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8F95A2" points="0.375,3.912 9.207,15.342 9.062,15.342 0.375,4.1 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8E95A1" points="9.352,15.342 0.375,3.725 0.375,3.912 9.207,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8D93A0" points="9.5,15.342 0.375,3.533 0.375,3.725 9.352,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8B929F" points="0.375,3.346 9.645,15.342 9.5,15.342 0.375,3.533 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8A919E" points="0.375,3.158 9.789,15.342 9.645,15.342 0.375,3.346 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#898F9D" points="0.375,2.971 9.938,15.342 9.789,15.342 0.375,3.158 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878E9B" points="0.375,2.783 10.082,15.342 9.938,15.342 0.375,2.971 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878D9B" points="0.375,2.596 10.227,15.342 10.082,15.342 0.375,2.783 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#858C9A" points="0.375,2.408 10.371,15.342 10.227,15.342 0.375,2.596 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#848B98" points="0.375,2.217 10.516,15.342 10.371,15.342 0.375,2.408 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#838A97" points="0.375,2.029 10.664,15.342 10.516,15.342 0.375,2.217 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#828997" points="0.375,1.842 10.809,15.342 10.664,15.342 0.375,2.029 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#818895" points="0.375,1.65 10.953,15.342 10.809,15.342 0.375,1.842 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#808794" points="0.375,1.463 11.102,15.342 10.953,15.342 0.375,1.65 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7E8594" points="0.375,1.275 11.246,15.342 11.102,15.342 0.375,1.463 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7D8593" points="0.375,1.088 11.391,15.342 11.246,15.342 0.375,1.275 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7C8392" points="0.375,0.9 11.539,15.342 11.391,15.342 0.375,1.088 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7B8290" points="0.375,0.713 11.68,15.342 11.539,15.342 0.375,0.9 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7A8190" points="0.375,0.525 11.828,15.342 11.68,15.342 0.375,0.713 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#79808F" points="0.375,0.436 0.426,0.4 11.973,15.342 11.828,15.342 0.375,0.525 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#787F8D" points="0.426,0.4 0.453,0.377 0.551,0.377 12.117,15.342 11.973,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#777E8D" points="0.695,0.377 12.266,15.342 12.117,15.342 0.551,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767D8C" points="0.844,0.377 12.41,15.342 12.266,15.342 0.695,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767C8B" points="0.988,0.377 12.555,15.342 12.41,15.342 0.844,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#747B8A" points="1.133,0.377 12.699,15.342 12.555,15.342 0.988,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#737A89" points="1.281,0.377 12.844,15.342 12.699,15.342 1.133,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#727989" points="1.426,0.377 12.992,15.342 12.844,15.342 1.281,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#717888" points="13.137,15.342 1.57,0.377 1.426,0.377 12.992,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#707786" points="1.715,0.377 13.281,15.342 13.137,15.342 1.57,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6F7686" points="1.859,0.377 13.43,15.342 13.281,15.342 1.715,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7585" points="13.574,15.342 2.008,0.377 1.859,0.377 13.43,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7584" points="2.152,0.377 13.719,15.342 13.574,15.342 2.008,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6C7383" points="2.297,0.377 13.863,15.342 13.719,15.342 2.152,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6B7383" points="2.445,0.377 14.008,15.342 13.863,15.342 2.297,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6A7281" points="2.59,0.377 14.156,15.342 14.008,15.342 2.445,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697181" points="2.734,0.377 14.301,15.342 14.156,15.342 2.59,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697080" points="2.879,0.377 14.445,15.342 14.301,15.342 2.734,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#686F7F" points="3.023,0.377 14.594,15.342 14.445,15.342 2.879,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#676E7E" points="14.734,15.342 3.172,0.377 3.023,0.377 14.594,15.342 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#656D7D" points="3.316,0.377 14.883,15.342 14.734,15.342 3.172,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7D" points="3.461,0.377 15.027,15.342 14.883,15.342 3.316,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7C" points="3.609,0.377 15.172,15.342 15.027,15.342 3.461,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#636B7C" points="3.754,0.377 15.297,15.314 15.262,15.342 15.172,15.342 3.609,0.377
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#626B7B" points="15.297,15.314 15.344,15.279 15.344,15.186 3.898,0.377 3.754,0.377
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#616A7A" points="4.043,0.377 15.344,14.998 15.344,15.186 3.898,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#606979" points="4.188,0.377 15.344,14.811 15.344,14.998 4.043,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="15.344,14.619 4.336,0.377 4.188,0.377 15.344,14.811 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="4.48,0.377 15.344,14.432 15.344,14.619 4.336,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5E6777" points="15.344,14.244 4.625,0.377 4.48,0.377 15.344,14.432 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5D6676" points="4.773,0.377 15.344,14.057 15.344,14.244 4.625,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5C6576" points="4.918,0.377 15.344,13.869 15.344,14.057 4.773,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="5.062,0.377 15.344,13.682 15.344,13.869 4.918,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="5.207,0.377 15.344,13.49 15.344,13.682 5.062,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5A6373" points="15.344,13.303 5.352,0.377 5.207,0.377 15.344,13.49 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#596273" points="5.5,0.377 15.344,13.115 15.344,13.303 5.352,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#586172" points="5.645,0.377 15.344,12.928 15.344,13.115 5.5,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#576172" points="5.789,0.377 15.344,12.74 15.344,12.928 5.645,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566071" points="5.934,0.377 15.344,12.549 15.344,12.74 5.789,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566070" points="6.082,0.377 15.344,12.361 15.344,12.549 5.934,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#555F70" points="6.227,0.377 15.344,12.174 15.344,12.361 6.082,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#545E6F" points="6.371,0.377 15.344,11.986 15.344,12.174 6.227,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535E6F" points="6.516,0.377 15.344,11.799 15.344,11.986 6.371,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535D6E" points="6.664,0.377 15.344,11.607 15.344,11.799 6.516,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#525C6D" points="15.344,11.42 6.809,0.377 6.664,0.377 15.344,11.607 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#515C6D" points="6.953,0.377 15.344,11.232 15.344,11.42 6.809,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="7.102,0.377 15.344,11.045 15.344,11.232 6.953,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="7.246,0.377 15.344,10.854 15.344,11.045 7.102,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505A6B" points="7.391,0.377 15.344,10.666 15.344,10.854 7.246,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4F596A" points="7.535,0.377 15.344,10.479 15.344,10.666 7.391,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4E596A" points="7.68,0.377 15.344,10.291 15.344,10.479 7.535,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4D5869" points="7.828,0.377 15.344,10.104 15.344,10.291 7.68,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5869" points="7.973,0.377 15.344,9.916 15.344,10.104 7.828,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5768" points="15.344,9.725 8.117,0.377 7.973,0.377 15.344,9.916 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5768" points="8.266,0.377 15.344,9.537 15.344,9.725 8.117,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5667" points="15.344,9.35 8.41,0.377 8.266,0.377 15.344,9.537 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4A5567" points="8.555,0.377 15.344,9.158 15.344,9.35 8.41,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#495566" points="8.699,0.377 15.344,8.971 15.344,9.158 8.555,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485566" points="8.844,0.377 15.344,8.783 15.344,8.971 8.699,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485466" points="8.992,0.377 15.344,8.596 15.344,8.783 8.844,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="9.137,0.377 15.344,8.408 15.344,8.596 8.992,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="9.281,0.377 15.344,8.221 15.344,8.408 9.137,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#465264" points="9.426,0.377 15.344,8.033 15.344,8.221 9.281,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#455264" points="9.574,0.377 15.344,7.842 15.344,8.033 9.426,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445263" points="9.719,0.377 15.344,7.654 15.344,7.842 9.574,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445163" points="9.863,0.377 15.344,7.467 15.344,7.654 9.719,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445062" points="10.008,0.377 15.344,7.275 15.344,7.467 9.863,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="10.156,0.377 15.344,7.088 15.344,7.275 10.008,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="10.301,0.377 15.344,6.9 15.344,7.088 10.156,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#424F61" points="10.445,0.377 15.344,6.713 15.344,6.9 10.301,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#414F61" points="10.594,0.377 15.344,6.525 15.344,6.713 10.445,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#404E60" points="10.734,0.377 15.344,6.338 15.344,6.525 10.594,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4E60" points="10.883,0.377 15.344,6.15 15.344,6.338 10.734,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D60" points="11.027,0.377 15.344,5.959 15.344,6.15 10.883,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D5F" points="11.172,0.377 15.344,5.771 15.344,5.959 11.027,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4D5F" points="11.32,0.377 15.344,5.584 15.344,5.771 11.172,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4C5E" points="11.465,0.377 15.344,5.396 15.344,5.584 11.32,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="11.609,0.377 15.344,5.205 15.344,5.396 11.465,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="11.758,0.377 15.344,5.018 15.344,5.205 11.609,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="15.344,4.83 11.898,0.377 11.758,0.377 15.344,5.018 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="12.047,0.377 15.344,4.643 15.344,4.83 11.898,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="15.344,4.455 12.191,0.377 12.047,0.377 15.344,4.643 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="12.336,0.377 15.344,4.268 15.344,4.455 12.191,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="12.484,0.377 15.344,4.076 15.344,4.268 12.336,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495C" points="12.629,0.377 15.344,3.889 15.344,4.076 12.484,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495B" points="12.773,0.377 15.344,3.701 15.344,3.889 12.629,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#39495B" points="12.918,0.377 15.344,3.514 15.344,3.701 12.773,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38495B" points="15.344,3.322 13.062,0.377 12.918,0.377 15.344,3.514 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485B" points="13.211,0.377 15.344,3.135 15.344,3.322 13.062,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485A" points="13.355,0.377 15.344,2.947 15.344,3.135 13.211,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37485A" points="13.5,0.377 15.344,2.76 15.344,2.947 13.355,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38475A" points="13.648,0.377 15.344,2.572 15.344,2.76 13.5,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37475A" points="13.793,0.377 15.344,2.385 15.344,2.572 13.648,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#374659" points="15.344,2.193 13.938,0.377 13.793,0.377 15.344,2.385 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="14.082,0.377 15.344,2.006 15.344,2.193 13.938,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="14.227,0.377 15.344,1.818 15.344,2.006 14.082,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="14.375,0.377 15.344,1.631 15.344,1.818 14.227,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="14.52,0.377 15.344,1.439 15.344,1.631 14.375,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="14.664,0.377 15.344,1.252 15.344,1.439 14.52,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354658" points="15.344,1.064 14.812,0.377 14.664,0.377 15.344,1.252 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="14.957,0.377 15.344,0.877 15.344,1.064 14.812,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.102,0.377 15.344,0.689 15.344,0.877 14.957,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.246,0.377 15.344,0.498 15.344,0.689 15.102,0.377 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.344,0.498 15.246,0.377 15.344,0.377 "/>
</g>
<path fill="#AEADAE" d="M14.969,7.859c0,3.92-3.188,7.108-7.108,7.108c-3.921,0-7.11-3.188-7.11-7.108S3.939,0.75,7.86,0.75
C11.78,0.75,14.969,3.939,14.969,7.859z M7.86,0C3.526,0,0,3.525,0,7.859c0,4.333,3.526,7.858,7.86,7.858
c4.333,0,7.858-3.525,7.858-7.858C15.719,3.525,12.193,0,7.86,0z"/>
<path fill="#FFFFFF" d="M5.208,4.142v7.601H4.163V6.341H2.414V5.582c0.484-0.011,1.716-0.044,1.991-1.44H5.208z"/>
<path fill="#FFFFFF" d="M9.828,7.266c0.418,0.011,1.034,0.032,1.408-0.154c0.23-0.121,0.594-0.407,0.594-1.001
c0-0.792-0.616-1.166-1.342-1.166c-0.539,0-0.892,0.187-1.089,0.363C8.981,5.682,8.926,6.265,8.904,6.528L7.892,6.462
c0.066-0.77,0.309-1.43,0.902-1.914c0.319-0.253,0.869-0.527,1.716-0.527c1.661,0,2.376,1.045,2.376,2.035
c0,0.462-0.165,0.901-0.439,1.198c-0.242,0.253-0.506,0.374-0.66,0.44c0.99,0.253,1.375,1.122,1.375,1.826s-0.341,1.375-0.869,1.771
c-0.308,0.253-0.913,0.562-1.914,0.562c-0.418,0-1.188-0.044-1.837-0.539c-0.869-0.649-0.935-1.606-0.957-2.058l1.034-0.088
c0,0.165,0.011,0.462,0.154,0.814c0.396,0.945,1.242,0.968,1.572,0.968c1.716,0,1.749-1.287,1.749-1.463
c0-0.22-0.044-0.44-0.153-0.638c-0.363-0.639-1.134-0.672-1.617-0.672c-0.066,0-0.209,0-0.495,0.012V7.266z"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 784 B

View File

@ -0,0 +1,190 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
width="17" height="16" viewBox="-0.75 -0.058 17 16" enable-background="new -0.75 -0.058 17 16" xml:space="preserve">
<defs>
</defs>
<g>
<defs>
<circle id="XMLID_6_" cx="7.859" cy="7.858" r="7.484"/>
</defs>
<clipPath id="XMLID_9_">
<use xlink:href="#XMLID_6_" />
</clipPath>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,10.841 4.645,15.341 0.375,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="4.797,15.341 0.375,10.681 0.375,10.841 4.645,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C9D0D5" points="4.953,15.341 0.375,10.521 0.375,10.681 4.797,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C6CDD3" points="0.375,10.356 5.105,15.341 4.953,15.341 0.375,10.521 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C5CCD2" points="0.375,10.196 5.258,15.341 5.105,15.341 0.375,10.356 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C3C9D0" points="0.375,10.036 5.414,15.341 5.258,15.341 0.375,10.196 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C1C8CE" points="0.375,9.872 5.562,15.341 5.414,15.341 0.375,10.036 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BFC5CC" points="0.375,9.708 5.719,15.341 5.562,15.341 0.375,9.872 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BEC4CB" points="5.871,15.341 0.375,9.548 0.375,9.708 5.719,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BBC2C9" points="0.375,9.388 6.023,15.341 5.871,15.341 0.375,9.548 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BAC0C8" points="0.375,9.224 6.18,15.341 6.023,15.341 0.375,9.388 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B7BEC6" points="6.332,15.341 0.375,9.063 0.375,9.224 6.18,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B6BDC5" points="0.375,8.903 6.484,15.341 6.332,15.341 0.375,9.063 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B5BBC3" points="0.375,8.739 6.641,15.341 6.484,15.341 0.375,8.903 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B3BAC2" points="0.375,8.579 6.793,15.341 6.641,15.341 0.375,8.739 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B1B7C0" points="0.375,8.419 6.945,15.341 6.793,15.341 0.375,8.579 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B0B6BF" points="0.375,8.255 7.102,15.341 6.945,15.341 0.375,8.419 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AEB5BE" points="0.375,8.095 7.254,15.341 7.102,15.341 0.375,8.255 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ADB3BC" points="7.406,15.341 0.375,7.931 0.375,8.095 7.254,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ABB2BC" points="0.375,7.771 7.559,15.341 7.406,15.341 0.375,7.931 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AAB0BA" points="0.375,7.606 7.711,15.341 7.559,15.341 0.375,7.771 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A8AEB8" points="0.375,7.446 7.867,15.341 7.711,15.341 0.375,7.606 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ADB7" points="8.02,15.341 0.375,7.286 0.375,7.446 7.867,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ACB6" points="0.375,7.122 8.172,15.341 8.02,15.341 0.375,7.286 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A3AAB4" points="0.375,6.962 8.328,15.341 8.172,15.341 0.375,7.122 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A2A8B3" points="8.48,15.341 0.375,6.802 0.375,6.962 8.328,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A0A7B1" points="0.375,6.638 8.633,15.341 8.48,15.341 0.375,6.802 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9FA6B0" points="0.375,6.478 8.789,15.341 8.633,15.341 0.375,6.638 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9EA4AF" points="0.375,6.317 8.938,15.341 8.789,15.341 0.375,6.478 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9CA3AE" points="0.375,6.153 9.094,15.341 8.938,15.341 0.375,6.317 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9BA1AD" points="0.375,5.989 9.246,15.341 9.094,15.341 0.375,6.153 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9AA0AB" points="0.375,5.829 9.398,15.341 9.246,15.341 0.375,5.989 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#989FAA" points="0.375,5.669 9.555,15.341 9.398,15.341 0.375,5.829 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#979EAA" points="0.375,5.505 9.707,15.341 9.555,15.341 0.375,5.669 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#969CA8" points="0.375,5.345 9.859,15.341 9.707,15.341 0.375,5.505 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#949BA7" points="0.375,5.185 10.016,15.341 9.859,15.341 0.375,5.345 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9399A5" points="10.168,15.341 0.375,5.021 0.375,5.185 10.016,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9298A4" points="0.375,4.86 10.32,15.341 10.168,15.341 0.375,5.021 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9097A3" points="10.473,15.341 0.375,4.696 0.375,4.86 10.32,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8F95A2" points="0.375,4.536 10.629,15.341 10.473,15.341 0.375,4.696 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8E95A1" points="0.375,4.372 10.781,15.341 10.629,15.341 0.375,4.536 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8D93A0" points="0.375,4.212 10.934,15.341 10.781,15.341 0.375,4.372 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8B929F" points="11.086,15.341 0.375,4.052 0.375,4.212 10.934,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8A919E" points="0.375,3.888 11.242,15.341 11.086,15.341 0.375,4.052 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#898F9D" points="0.375,3.728 11.395,15.341 11.242,15.341 0.375,3.888 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878E9B" points="0.375,3.567 11.547,15.341 11.395,15.341 0.375,3.728 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878D9B" points="0.375,3.403 11.703,15.341 11.547,15.341 0.375,3.567 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#858C9A" points="0.375,3.243 11.855,15.341 11.703,15.341 0.375,3.403 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#848B98" points="0.375,3.079 12.008,15.341 11.855,15.341 0.375,3.243 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#838A97" points="0.375,2.919 12.164,15.341 12.008,15.341 0.375,3.079 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#828997" points="0.375,2.755 12.316,15.341 12.164,15.341 0.375,2.919 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#818895" points="0.375,2.595 12.469,15.341 12.316,15.341 0.375,2.755 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#808794" points="0.375,2.435 12.625,15.341 12.469,15.341 0.375,2.595 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7E8594" points="0.375,2.271 12.773,15.341 12.625,15.341 0.375,2.435 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7D8593" points="0.375,2.11 12.93,15.341 12.773,15.341 0.375,2.271 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7C8392" points="0.375,1.95 13.082,15.341 12.93,15.341 0.375,2.11 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7B8290" points="0.375,1.786 13.234,15.341 13.082,15.341 0.375,1.95 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7A8190" points="0.375,1.626 13.391,15.341 13.234,15.341 0.375,1.786 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#79808F" points="0.375,1.462 13.543,15.341 13.391,15.341 0.375,1.626 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#787F8D" points="0.375,1.302 13.695,15.341 13.543,15.341 0.375,1.462 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#777E8D" points="0.375,1.138 13.852,15.341 13.695,15.341 0.375,1.302 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767D8C" points="0.375,0.978 14.004,15.341 13.852,15.341 0.375,1.138 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767C8B" points="0.375,0.817 14.156,15.341 14.004,15.341 0.375,0.978 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#747B8A" points="0.375,0.798 0.445,0.731 14.309,15.341 14.156,15.341 0.375,0.817 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#737A89" points="0.445,0.731 0.527,0.653 14.461,15.341 14.309,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#727989" points="0.527,0.653 0.609,0.575 14.617,15.341 14.461,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#717888" points="0.609,0.575 0.688,0.501 14.77,15.341 14.617,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#707786" points="0.688,0.501 0.77,0.423 14.914,15.333 14.898,15.341 14.77,15.341 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6F7686" points="0.77,0.423 0.82,0.376 0.875,0.376 14.992,15.255 14.914,15.333 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7585" points="1.031,0.376 15.074,15.177 14.992,15.255 0.875,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7584" points="1.184,0.376 15.156,15.103 15.074,15.177 1.031,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6C7383" points="1.336,0.376 15.234,15.024 15.156,15.103 1.184,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6B7383" points="1.492,0.376 15.316,14.95 15.234,15.024 1.336,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6A7281" points="1.645,0.376 15.344,14.817 15.344,14.919 15.316,14.95 1.492,0.376
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#697181" points="1.797,0.376 15.344,14.653 15.344,14.817 1.645,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697080" points="1.949,0.376 15.344,14.493 15.344,14.653 1.797,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#686F7F" points="15.344,14.333 2.105,0.376 1.949,0.376 15.344,14.493 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#676E7E" points="2.258,0.376 15.344,14.169 15.344,14.333 2.105,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#656D7D" points="2.41,0.376 15.344,14.009 15.344,14.169 2.258,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7D" points="2.562,0.376 15.344,13.845 15.344,14.009 2.41,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7C" points="2.719,0.376 15.344,13.685 15.344,13.845 2.562,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#636B7C" points="2.871,0.376 15.344,13.521 15.344,13.685 2.719,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#626B7B" points="3.023,0.376 15.344,13.36 15.344,13.521 2.871,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#616A7A" points="15.344,13.2 3.18,0.376 3.023,0.376 15.344,13.36 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#606979" points="3.332,0.376 15.344,13.036 15.344,13.2 3.18,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="15.344,12.876 3.484,0.376 3.332,0.376 15.344,13.036 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="3.641,0.376 15.344,12.712 15.344,12.876 3.484,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5E6777" points="3.789,0.376 15.344,12.552 15.344,12.712 3.641,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5D6676" points="3.945,0.376 15.344,12.392 15.344,12.552 3.789,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5C6576" points="4.098,0.376 15.344,12.228 15.344,12.392 3.945,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="4.25,0.376 15.344,12.067 15.344,12.228 4.098,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="4.406,0.376 15.344,11.903 15.344,12.067 4.25,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5A6373" points="4.559,0.376 15.344,11.743 15.344,11.903 4.406,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#596273" points="4.711,0.376 15.344,11.583 15.344,11.743 4.559,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#586172" points="15.344,11.419 4.867,0.376 4.711,0.376 15.344,11.583 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#576172" points="5.02,0.376 15.344,11.259 15.344,11.419 4.867,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566071" points="15.344,11.095 5.172,0.376 5.02,0.376 15.344,11.259 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566070" points="5.328,0.376 15.344,10.935 15.344,11.095 5.172,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#555F70" points="5.48,0.376 15.344,10.771 15.344,10.935 5.328,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#545E6F" points="5.633,0.376 15.344,10.61 15.344,10.771 5.48,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535E6F" points="5.785,0.376 15.344,10.45 15.344,10.61 5.633,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535D6E" points="15.344,10.286 5.941,0.376 5.785,0.376 15.344,10.45 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#525C6D" points="6.094,0.376 15.344,10.126 15.344,10.286 5.941,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#515C6D" points="15.344,9.966 6.246,0.376 6.094,0.376 15.344,10.126 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="6.398,0.376 15.344,9.802 15.344,9.966 6.246,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="6.555,0.376 15.344,9.642 15.344,9.802 6.398,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505A6B" points="6.707,0.376 15.344,9.481 15.344,9.642 6.555,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4F596A" points="6.859,0.376 15.344,9.317 15.344,9.481 6.707,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4E596A" points="15.344,9.153 7.016,0.376 6.859,0.376 15.344,9.317 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4D5869" points="7.168,0.376 15.344,8.993 15.344,9.153 7.016,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5869" points="15.344,8.833 7.32,0.376 7.168,0.376 15.344,8.993 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5768" points="7.473,0.376 15.344,8.669 15.344,8.833 7.32,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5768" points="7.625,0.376 15.344,8.509 15.344,8.669 7.473,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5667" points="7.781,0.376 15.344,8.349 15.344,8.509 7.625,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4A5567" points="7.934,0.376 15.344,8.185 15.344,8.349 7.781,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#495566" points="15.344,8.024 8.086,0.376 7.934,0.376 15.344,8.185 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485566" points="8.242,0.376 15.344,7.864 15.344,8.024 8.086,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485466" points="8.395,0.376 15.344,7.7 15.344,7.864 8.242,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="8.547,0.376 15.344,7.536 15.344,7.7 8.395,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="15.344,7.376 8.699,0.376 8.547,0.376 15.344,7.536 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#465264" points="8.855,0.376 15.344,7.216 15.344,7.376 8.699,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#455264" points="9.008,0.376 15.344,7.052 15.344,7.216 8.855,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445263" points="9.16,0.376 15.344,6.892 15.344,7.052 9.008,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445163" points="9.312,0.376 15.344,6.731 15.344,6.892 9.16,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445062" points="9.469,0.376 15.344,6.567 15.344,6.731 9.312,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="9.621,0.376 15.344,6.407 15.344,6.567 9.469,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="9.773,0.376 15.344,6.247 15.344,6.407 9.621,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#424F61" points="9.93,0.376 15.344,6.083 15.344,6.247 9.773,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#414F61" points="10.082,0.376 15.344,5.923 15.344,6.083 9.93,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#404E60" points="10.234,0.376 15.344,5.759 15.344,5.923 10.082,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4E60" points="15.344,5.599 10.391,0.376 10.234,0.376 15.344,5.759 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D60" points="10.543,0.376 15.344,5.435 15.344,5.599 10.391,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D5F" points="10.695,0.376 15.344,5.274 15.344,5.435 10.543,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4D5F" points="10.852,0.376 15.344,5.114 15.344,5.274 10.695,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4C5E" points="11.004,0.376 15.344,4.95 15.344,5.114 10.852,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="15.344,4.79 11.156,0.376 11.004,0.376 15.344,4.95 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="11.309,0.376 15.344,4.626 15.344,4.79 11.156,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="11.461,0.376 15.344,4.466 15.344,4.626 11.309,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="11.617,0.376 15.344,4.306 15.344,4.466 11.461,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="15.344,4.142 11.77,0.376 11.617,0.376 15.344,4.306 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="11.922,0.376 15.344,3.981 15.344,4.142 11.77,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="12.078,0.376 15.344,3.817 15.344,3.981 11.922,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495C" points="12.23,0.376 15.344,3.657 15.344,3.817 12.078,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495B" points="12.383,0.376 15.344,3.497 15.344,3.657 12.23,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#39495B" points="12.539,0.376 15.344,3.333 15.344,3.497 12.383,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38495B" points="12.691,0.376 15.344,3.173 15.344,3.333 12.539,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485B" points="12.844,0.376 15.344,3.013 15.344,3.173 12.691,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485A" points="15.344,2.849 12.996,0.376 12.844,0.376 15.344,3.013 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37485A" points="13.148,0.376 15.344,2.688 15.344,2.849 12.996,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38475A" points="13.305,0.376 15.344,2.524 15.344,2.688 13.148,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37475A" points="13.457,0.376 15.344,2.364 15.344,2.524 13.305,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#374659" points="13.609,0.376 15.344,2.2 15.344,2.364 13.457,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="15.344,2.04 13.766,0.376 13.609,0.376 15.344,2.2 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="13.918,0.376 15.344,1.88 15.344,2.04 13.766,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="14.07,0.376 15.344,1.716 15.344,1.88 13.918,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="15.344,1.556 14.223,0.376 14.07,0.376 15.344,1.716 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="14.379,0.376 15.344,1.396 15.344,1.556 14.223,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354658" points="14.531,0.376 15.344,1.231 15.344,1.396 14.379,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="14.684,0.376 15.344,1.071 15.344,1.231 14.531,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="14.836,0.376 15.344,0.907 15.344,1.071 14.684,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="14.992,0.376 15.344,0.747 15.344,0.907 14.836,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.145,0.376 15.344,0.583 15.344,0.747 14.992,0.376 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.344,0.583 15.145,0.376 15.344,0.376 "/>
</g>
<path fill="#AEADAE" d="M14.969,7.858c0,3.92-3.189,7.109-7.109,7.109S0.75,11.778,0.75,7.858S3.939,0.75,7.859,0.75
S14.969,3.938,14.969,7.858z M7.859,0C3.525,0,0,3.525,0,7.858c0,4.334,3.525,7.859,7.859,7.859s7.859-3.525,7.859-7.859
C15.719,3.525,12.193,0,7.859,0z"/>
<path fill="#FFFFFF" d="M5.208,4.142v7.601H4.163V6.341H2.414V5.582c0.484-0.011,1.716-0.044,1.991-1.44H5.208z"/>
<path fill="#FFFFFF" d="M11.962,9.103h1.144v0.891h-1.144v1.749h-1.022V9.993H7.617V8.938l3.531-4.808h0.813V9.103z M10.939,9.103
l0.065-3.433L8.607,9.103H10.939z"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1004 B

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.058 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="4.645,15.341 0.375,15.341 0.375,10.841 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.681 0.375,10.841 4.645,15.341 4.797,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.521 0.375,10.681 4.797,15.341 4.953,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="5.105,15.341 4.953,15.341 0.375,10.521 0.375,10.356 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="5.258,15.341 5.105,15.341 0.375,10.356 0.375,10.196 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="5.414,15.341 5.258,15.341 0.375,10.196 0.375,10.036 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="5.562,15.341 5.414,15.341 0.375,10.036 0.375,9.872 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="5.719,15.341 5.562,15.341 0.375,9.872 0.375,9.708 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="0.375,9.548 0.375,9.708 5.719,15.341 5.871,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="6.023,15.341 5.871,15.341 0.375,9.548 0.375,9.388 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="6.18,15.341 6.023,15.341 0.375,9.388 0.375,9.224 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="0.375,9.063 0.375,9.224 6.18,15.341 6.332,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="6.484,15.341 6.332,15.341 0.375,9.063 0.375,8.903 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="6.641,15.341 6.484,15.341 0.375,8.903 0.375,8.739 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="6.793,15.341 6.641,15.341 0.375,8.739 0.375,8.579 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="6.945,15.341 6.793,15.341 0.375,8.579 0.375,8.419 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="7.102,15.341 6.945,15.341 0.375,8.419 0.375,8.255 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="7.254,15.341 7.102,15.341 0.375,8.255 0.375,8.095 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="0.375,7.931 0.375,8.095 7.254,15.341 7.406,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="7.559,15.341 7.406,15.341 0.375,7.931 0.375,7.771 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="7.711,15.341 7.559,15.341 0.375,7.771 0.375,7.606 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="7.867,15.341 7.711,15.341 0.375,7.606 0.375,7.446 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="0.375,7.286 0.375,7.446 7.867,15.341 8.02,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="8.172,15.341 8.02,15.341 0.375,7.286 0.375,7.122 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="8.328,15.341 8.172,15.341 0.375,7.122 0.375,6.962 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="0.375,6.802 0.375,6.962 8.328,15.341 8.48,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="8.633,15.341 8.48,15.341 0.375,6.802 0.375,6.638 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="8.789,15.341 8.633,15.341 0.375,6.638 0.375,6.478 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="8.938,15.341 8.789,15.341 0.375,6.478 0.375,6.317 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="9.094,15.341 8.938,15.341 0.375,6.317 0.375,6.153 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="9.246,15.341 9.094,15.341 0.375,6.153 0.375,5.989 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="9.398,15.341 9.246,15.341 0.375,5.989 0.375,5.829 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="9.555,15.341 9.398,15.341 0.375,5.829 0.375,5.669 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="9.707,15.341 9.555,15.341 0.375,5.669 0.375,5.505 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="9.859,15.341 9.707,15.341 0.375,5.505 0.375,5.345 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="10.016,15.341 9.859,15.341 0.375,5.345 0.375,5.185 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="0.375,5.021 0.375,5.185 10.016,15.341 10.168,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="10.32,15.341 10.168,15.341 0.375,5.021 0.375,4.86 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="0.375,4.696 0.375,4.86 10.32,15.341 10.473,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="10.629,15.341 10.473,15.341 0.375,4.696 0.375,4.536 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="10.781,15.341 10.629,15.341 0.375,4.536 0.375,4.372 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="10.934,15.341 10.781,15.341 0.375,4.372 0.375,4.212 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="0.375,4.052 0.375,4.212 10.934,15.341 11.086,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="11.242,15.341 11.086,15.341 0.375,4.052 0.375,3.888 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="11.395,15.341 11.242,15.341 0.375,3.888 0.375,3.728 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="11.547,15.341 11.395,15.341 0.375,3.728 0.375,3.567 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="11.703,15.341 11.547,15.341 0.375,3.567 0.375,3.403 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="11.855,15.341 11.703,15.341 0.375,3.403 0.375,3.243 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="12.008,15.341 11.855,15.341 0.375,3.243 0.375,3.079 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="12.164,15.341 12.008,15.341 0.375,3.079 0.375,2.919 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="12.316,15.341 12.164,15.341 0.375,2.919 0.375,2.755 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="12.469,15.341 12.316,15.341 0.375,2.755 0.375,2.595 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="12.625,15.341 12.469,15.341 0.375,2.595 0.375,2.435 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="12.773,15.341 12.625,15.341 0.375,2.435 0.375,2.271 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="12.93,15.341 12.773,15.341 0.375,2.271 0.375,2.11 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="13.082,15.341 12.93,15.341 0.375,2.11 0.375,1.95 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="13.234,15.341 13.082,15.341 0.375,1.95 0.375,1.786 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="13.391,15.341 13.234,15.341 0.375,1.786 0.375,1.626 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="13.543,15.341 13.391,15.341 0.375,1.626 0.375,1.462 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="13.695,15.341 13.543,15.341 0.375,1.462 0.375,1.302 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="13.852,15.341 13.695,15.341 0.375,1.302 0.375,1.138 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="14.004,15.341 13.852,15.341 0.375,1.138 0.375,0.978 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="14.156,15.341 14.004,15.341 0.375,0.978 0.375,0.817 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="0.445,0.731 14.309,15.341 14.156,15.341 0.375,0.817 0.375,0.798 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="0.527,0.653 14.461,15.341 14.309,15.341 0.445,0.731 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="0.609,0.575 14.617,15.341 14.461,15.341 0.527,0.653 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="0.688,0.501 14.77,15.341 14.617,15.341 0.609,0.575 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="0.77,0.423 14.914,15.333 14.898,15.341 14.77,15.341 0.688,0.501 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="0.82,0.376 0.875,0.376 14.992,15.255 14.914,15.333 0.77,0.423 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="15.074,15.177 14.992,15.255 0.875,0.376 1.031,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="15.156,15.103 15.074,15.177 1.031,0.376 1.184,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="15.234,15.024 15.156,15.103 1.184,0.376 1.336,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="15.316,14.95 15.234,15.024 1.336,0.376 1.492,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="15.344,14.817 15.344,14.919 15.316,14.95 1.492,0.376 1.645,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="15.344,14.653 15.344,14.817 1.645,0.376 1.797,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="15.344,14.493 15.344,14.653 1.797,0.376 1.949,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="2.105,0.376 1.949,0.376 15.344,14.493 15.344,14.333 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="15.344,14.169 15.344,14.333 2.105,0.376 2.258,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="15.344,14.009 15.344,14.169 2.258,0.376 2.41,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="15.344,13.845 15.344,14.009 2.41,0.376 2.562,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="15.344,13.685 15.344,13.845 2.562,0.376 2.719,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="15.344,13.521 15.344,13.685 2.719,0.376 2.871,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="15.344,13.36 15.344,13.521 2.871,0.376 3.023,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="3.18,0.376 3.023,0.376 15.344,13.36 15.344,13.2 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="15.344,13.036 15.344,13.2 3.18,0.376 3.332,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="3.484,0.376 3.332,0.376 15.344,13.036 15.344,12.876 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="15.344,12.712 15.344,12.876 3.484,0.376 3.641,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="15.344,12.552 15.344,12.712 3.641,0.376 3.789,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.344,12.392 15.344,12.552 3.789,0.376 3.945,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="15.344,12.228 15.344,12.392 3.945,0.376 4.098,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="15.344,12.067 15.344,12.228 4.098,0.376 4.25,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="15.344,11.903 15.344,12.067 4.25,0.376 4.406,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="15.344,11.743 15.344,11.903 4.406,0.376 4.559,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="15.344,11.583 15.344,11.743 4.559,0.376 4.711,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="4.867,0.376 4.711,0.376 15.344,11.583 15.344,11.419 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="15.344,11.259 15.344,11.419 4.867,0.376 5.02,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="5.172,0.376 5.02,0.376 15.344,11.259 15.344,11.095 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="15.344,10.935 15.344,11.095 5.172,0.376 5.328,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="15.344,10.771 15.344,10.935 5.328,0.376 5.48,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="15.344,10.61 15.344,10.771 5.48,0.376 5.633,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="15.344,10.45 15.344,10.61 5.633,0.376 5.785,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="5.941,0.376 5.785,0.376 15.344,10.45 15.344,10.286 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="15.344,10.126 15.344,10.286 5.941,0.376 6.094,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="6.246,0.376 6.094,0.376 15.344,10.126 15.344,9.966 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="15.344,9.802 15.344,9.966 6.246,0.376 6.398,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="15.344,9.642 15.344,9.802 6.398,0.376 6.555,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="15.344,9.481 15.344,9.642 6.555,0.376 6.707,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="15.344,9.317 15.344,9.481 6.707,0.376 6.859,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="7.016,0.376 6.859,0.376 15.344,9.317 15.344,9.153 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="15.344,8.993 15.344,9.153 7.016,0.376 7.168,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="7.32,0.376 7.168,0.376 15.344,8.993 15.344,8.833 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="15.344,8.669 15.344,8.833 7.32,0.376 7.473,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="15.344,8.509 15.344,8.669 7.473,0.376 7.625,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="15.344,8.349 15.344,8.509 7.625,0.376 7.781,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="15.344,8.185 15.344,8.349 7.781,0.376 7.934,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="8.086,0.376 7.934,0.376 15.344,8.185 15.344,8.024 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="15.344,7.864 15.344,8.024 8.086,0.376 8.242,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="15.344,7.7 15.344,7.864 8.242,0.376 8.395,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="15.344,7.536 15.344,7.7 8.395,0.376 8.547,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="8.699,0.376 8.547,0.376 15.344,7.536 15.344,7.376 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="15.344,7.216 15.344,7.376 8.699,0.376 8.855,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="15.344,7.052 15.344,7.216 8.855,0.376 9.008,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="15.344,6.892 15.344,7.052 9.008,0.376 9.16,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="15.344,6.731 15.344,6.892 9.16,0.376 9.312,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="15.344,6.567 15.344,6.731 9.312,0.376 9.469,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="15.344,6.407 15.344,6.567 9.469,0.376 9.621,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="15.344,6.247 15.344,6.407 9.621,0.376 9.773,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="15.344,6.083 15.344,6.247 9.773,0.376 9.93,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="15.344,5.923 15.344,6.083 9.93,0.376 10.082,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="15.344,5.759 15.344,5.923 10.082,0.376 10.234,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="10.391,0.376 10.234,0.376 15.344,5.759 15.344,5.599 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="15.344,5.435 15.344,5.599 10.391,0.376 10.543,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="15.344,5.274 15.344,5.435 10.543,0.376 10.695,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="15.344,5.114 15.344,5.274 10.695,0.376 10.852,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="15.344,4.95 15.344,5.114 10.852,0.376 11.004,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="11.156,0.376 11.004,0.376 15.344,4.95 15.344,4.79 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.626 15.344,4.79 11.156,0.376 11.309,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.466 15.344,4.626 11.309,0.376 11.461,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="15.344,4.306 15.344,4.466 11.461,0.376 11.617,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="11.77,0.376 11.617,0.376 15.344,4.306 15.344,4.142 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="15.344,3.981 15.344,4.142 11.77,0.376 11.922,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.817 15.344,3.981 11.922,0.376 12.078,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.657 15.344,3.817 12.078,0.376 12.23,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="15.344,3.497 15.344,3.657 12.23,0.376 12.383,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="15.344,3.333 15.344,3.497 12.383,0.376 12.539,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="15.344,3.173 15.344,3.333 12.539,0.376 12.691,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="15.344,3.013 15.344,3.173 12.691,0.376 12.844,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="12.996,0.376 12.844,0.376 15.344,3.013 15.344,2.849 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="15.344,2.688 15.344,2.849 12.996,0.376 13.148,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="15.344,2.524 15.344,2.688 13.148,0.376 13.305,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="15.344,2.364 15.344,2.524 13.305,0.376 13.457,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="15.344,2.2 15.344,2.364 13.457,0.376 13.609,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="13.766,0.376 13.609,0.376 15.344,2.2 15.344,2.04 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="15.344,1.88 15.344,2.04 13.766,0.376 13.918,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="15.344,1.716 15.344,1.88 13.918,0.376 14.07,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="14.223,0.376 14.07,0.376 15.344,1.716 15.344,1.556 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="15.344,1.396 15.344,1.556 14.223,0.376 14.379,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="15.344,1.231 15.344,1.396 14.379,0.376 14.531,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="15.344,1.071 15.344,1.231 14.531,0.376 14.684,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="15.344,0.907 15.344,1.071 14.684,0.376 14.836,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="15.344,0.747 15.344,0.907 14.836,0.376 14.992,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="15.344,0.583 15.344,0.747 14.992,0.376 15.145,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.145,0.376 15.344,0.376 15.344,0.583 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 5.208,4.142 v 7.601 H 4.163 V 6.341 H 2.414 V 5.582 C 2.898,5.571 4.13,5.538 4.405,4.142 h 0.803 z"
id="path342"
style="fill:#ffffff" />
<path
d="m 12.570798,4.1822658 v 0.946 H 9.1377975 l -0.318,2.024 c 0.472,-0.341 0.935,-0.484 1.5290005,-0.484 1.605,0 2.529,1.21 2.529,2.574 0,1.6060002 -1.166,2.6620002 -2.75,2.6620002 -0.6270005,0 -1.2980005,-0.188 -1.7380005,-0.55 -0.715,-0.572 -0.803,-1.4310002 -0.836,-1.7930002 l 1.045,-0.065 c 0.012,0.164 0.033,0.427 0.154,0.6810002 0.231,0.517 0.748,0.814 1.4079995,0.814 1.178001,0 1.661001,-0.925 1.661001,-1.7380002 0,-0.914 -0.594,-1.694 -1.683001,-1.694 -0.8909995,0 -1.3099995,0.473 -1.5509995,0.759 l -0.868,-0.044 0.582,-4.092 h 4.2690005 z"
id="path342-7"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1013 B

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.058 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="0.375,15.341 0.375,10.841 4.645,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.841 4.645,15.341 4.797,15.341 0.375,10.681 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.681 4.797,15.341 4.953,15.341 0.375,10.521 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="4.953,15.341 0.375,10.521 0.375,10.356 5.105,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="5.105,15.341 0.375,10.356 0.375,10.196 5.258,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="5.258,15.341 0.375,10.196 0.375,10.036 5.414,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="5.414,15.341 0.375,10.036 0.375,9.872 5.562,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="5.562,15.341 0.375,9.872 0.375,9.708 5.719,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="0.375,9.708 5.719,15.341 5.871,15.341 0.375,9.548 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="5.871,15.341 0.375,9.548 0.375,9.388 6.023,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="6.023,15.341 0.375,9.388 0.375,9.224 6.18,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="0.375,9.224 6.18,15.341 6.332,15.341 0.375,9.063 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="6.332,15.341 0.375,9.063 0.375,8.903 6.484,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="6.484,15.341 0.375,8.903 0.375,8.739 6.641,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="6.641,15.341 0.375,8.739 0.375,8.579 6.793,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="6.793,15.341 0.375,8.579 0.375,8.419 6.945,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="6.945,15.341 0.375,8.419 0.375,8.255 7.102,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="7.102,15.341 0.375,8.255 0.375,8.095 7.254,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="0.375,8.095 7.254,15.341 7.406,15.341 0.375,7.931 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="7.406,15.341 0.375,7.931 0.375,7.771 7.559,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="7.559,15.341 0.375,7.771 0.375,7.606 7.711,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="7.711,15.341 0.375,7.606 0.375,7.446 7.867,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="0.375,7.446 7.867,15.341 8.02,15.341 0.375,7.286 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="8.02,15.341 0.375,7.286 0.375,7.122 8.172,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="8.172,15.341 0.375,7.122 0.375,6.962 8.328,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="0.375,6.962 8.328,15.341 8.48,15.341 0.375,6.802 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="8.48,15.341 0.375,6.802 0.375,6.638 8.633,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="8.633,15.341 0.375,6.638 0.375,6.478 8.789,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="8.789,15.341 0.375,6.478 0.375,6.317 8.938,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="8.938,15.341 0.375,6.317 0.375,6.153 9.094,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="9.094,15.341 0.375,6.153 0.375,5.989 9.246,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="9.246,15.341 0.375,5.989 0.375,5.829 9.398,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="9.398,15.341 0.375,5.829 0.375,5.669 9.555,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="9.555,15.341 0.375,5.669 0.375,5.505 9.707,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="9.707,15.341 0.375,5.505 0.375,5.345 9.859,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="9.859,15.341 0.375,5.345 0.375,5.185 10.016,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="0.375,5.185 10.016,15.341 10.168,15.341 0.375,5.021 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="10.168,15.341 0.375,5.021 0.375,4.86 10.32,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="0.375,4.86 10.32,15.341 10.473,15.341 0.375,4.696 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="10.473,15.341 0.375,4.696 0.375,4.536 10.629,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="10.629,15.341 0.375,4.536 0.375,4.372 10.781,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="10.781,15.341 0.375,4.372 0.375,4.212 10.934,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="0.375,4.212 10.934,15.341 11.086,15.341 0.375,4.052 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="11.086,15.341 0.375,4.052 0.375,3.888 11.242,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="11.242,15.341 0.375,3.888 0.375,3.728 11.395,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="11.395,15.341 0.375,3.728 0.375,3.567 11.547,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="11.547,15.341 0.375,3.567 0.375,3.403 11.703,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="11.703,15.341 0.375,3.403 0.375,3.243 11.855,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="11.855,15.341 0.375,3.243 0.375,3.079 12.008,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="12.008,15.341 0.375,3.079 0.375,2.919 12.164,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="12.164,15.341 0.375,2.919 0.375,2.755 12.316,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="12.316,15.341 0.375,2.755 0.375,2.595 12.469,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="12.469,15.341 0.375,2.595 0.375,2.435 12.625,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="12.625,15.341 0.375,2.435 0.375,2.271 12.773,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="12.773,15.341 0.375,2.271 0.375,2.11 12.93,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="12.93,15.341 0.375,2.11 0.375,1.95 13.082,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="13.082,15.341 0.375,1.95 0.375,1.786 13.234,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="13.234,15.341 0.375,1.786 0.375,1.626 13.391,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="13.391,15.341 0.375,1.626 0.375,1.462 13.543,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="13.543,15.341 0.375,1.462 0.375,1.302 13.695,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="13.695,15.341 0.375,1.302 0.375,1.138 13.852,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="13.852,15.341 0.375,1.138 0.375,0.978 14.004,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="14.004,15.341 0.375,0.978 0.375,0.817 14.156,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="14.309,15.341 14.156,15.341 0.375,0.817 0.375,0.798 0.445,0.731 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="14.461,15.341 14.309,15.341 0.445,0.731 0.527,0.653 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="14.617,15.341 14.461,15.341 0.527,0.653 0.609,0.575 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="14.77,15.341 14.617,15.341 0.609,0.575 0.688,0.501 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="14.914,15.333 14.898,15.341 14.77,15.341 0.688,0.501 0.77,0.423 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="0.875,0.376 14.992,15.255 14.914,15.333 0.77,0.423 0.82,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="14.992,15.255 0.875,0.376 1.031,0.376 15.074,15.177 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="15.074,15.177 1.031,0.376 1.184,0.376 15.156,15.103 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="15.156,15.103 1.184,0.376 1.336,0.376 15.234,15.024 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="15.234,15.024 1.336,0.376 1.492,0.376 15.316,14.95 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="15.344,14.919 15.316,14.95 1.492,0.376 1.645,0.376 15.344,14.817 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="15.344,14.817 1.645,0.376 1.797,0.376 15.344,14.653 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="15.344,14.653 1.797,0.376 1.949,0.376 15.344,14.493 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="1.949,0.376 15.344,14.493 15.344,14.333 2.105,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="15.344,14.333 2.105,0.376 2.258,0.376 15.344,14.169 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="15.344,14.169 2.258,0.376 2.41,0.376 15.344,14.009 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="15.344,14.009 2.41,0.376 2.562,0.376 15.344,13.845 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="15.344,13.845 2.562,0.376 2.719,0.376 15.344,13.685 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="15.344,13.685 2.719,0.376 2.871,0.376 15.344,13.521 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="15.344,13.521 2.871,0.376 3.023,0.376 15.344,13.36 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="3.023,0.376 15.344,13.36 15.344,13.2 3.18,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="15.344,13.2 3.18,0.376 3.332,0.376 15.344,13.036 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="3.332,0.376 15.344,13.036 15.344,12.876 3.484,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="15.344,12.876 3.484,0.376 3.641,0.376 15.344,12.712 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="15.344,12.712 3.641,0.376 3.789,0.376 15.344,12.552 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.344,12.552 3.789,0.376 3.945,0.376 15.344,12.392 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="15.344,12.392 3.945,0.376 4.098,0.376 15.344,12.228 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="15.344,12.228 4.098,0.376 4.25,0.376 15.344,12.067 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="15.344,12.067 4.25,0.376 4.406,0.376 15.344,11.903 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="15.344,11.903 4.406,0.376 4.559,0.376 15.344,11.743 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="15.344,11.743 4.559,0.376 4.711,0.376 15.344,11.583 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="4.711,0.376 15.344,11.583 15.344,11.419 4.867,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="15.344,11.419 4.867,0.376 5.02,0.376 15.344,11.259 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="5.02,0.376 15.344,11.259 15.344,11.095 5.172,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="15.344,11.095 5.172,0.376 5.328,0.376 15.344,10.935 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="15.344,10.935 5.328,0.376 5.48,0.376 15.344,10.771 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="15.344,10.771 5.48,0.376 5.633,0.376 15.344,10.61 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="15.344,10.61 5.633,0.376 5.785,0.376 15.344,10.45 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="5.785,0.376 15.344,10.45 15.344,10.286 5.941,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="15.344,10.286 5.941,0.376 6.094,0.376 15.344,10.126 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="6.094,0.376 15.344,10.126 15.344,9.966 6.246,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="15.344,9.966 6.246,0.376 6.398,0.376 15.344,9.802 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="15.344,9.802 6.398,0.376 6.555,0.376 15.344,9.642 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="15.344,9.642 6.555,0.376 6.707,0.376 15.344,9.481 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="15.344,9.481 6.707,0.376 6.859,0.376 15.344,9.317 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="6.859,0.376 15.344,9.317 15.344,9.153 7.016,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="15.344,9.153 7.016,0.376 7.168,0.376 15.344,8.993 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="7.168,0.376 15.344,8.993 15.344,8.833 7.32,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="15.344,8.833 7.32,0.376 7.473,0.376 15.344,8.669 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="15.344,8.669 7.473,0.376 7.625,0.376 15.344,8.509 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="15.344,8.509 7.625,0.376 7.781,0.376 15.344,8.349 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="15.344,8.349 7.781,0.376 7.934,0.376 15.344,8.185 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="7.934,0.376 15.344,8.185 15.344,8.024 8.086,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="15.344,8.024 8.086,0.376 8.242,0.376 15.344,7.864 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="15.344,7.864 8.242,0.376 8.395,0.376 15.344,7.7 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="15.344,7.7 8.395,0.376 8.547,0.376 15.344,7.536 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="8.547,0.376 15.344,7.536 15.344,7.376 8.699,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="15.344,7.376 8.699,0.376 8.855,0.376 15.344,7.216 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="15.344,7.216 8.855,0.376 9.008,0.376 15.344,7.052 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="15.344,7.052 9.008,0.376 9.16,0.376 15.344,6.892 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="15.344,6.892 9.16,0.376 9.312,0.376 15.344,6.731 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="15.344,6.731 9.312,0.376 9.469,0.376 15.344,6.567 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="15.344,6.567 9.469,0.376 9.621,0.376 15.344,6.407 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="15.344,6.407 9.621,0.376 9.773,0.376 15.344,6.247 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="15.344,6.247 9.773,0.376 9.93,0.376 15.344,6.083 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="15.344,6.083 9.93,0.376 10.082,0.376 15.344,5.923 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="15.344,5.923 10.082,0.376 10.234,0.376 15.344,5.759 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="10.234,0.376 15.344,5.759 15.344,5.599 10.391,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="15.344,5.599 10.391,0.376 10.543,0.376 15.344,5.435 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="15.344,5.435 10.543,0.376 10.695,0.376 15.344,5.274 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="15.344,5.274 10.695,0.376 10.852,0.376 15.344,5.114 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="15.344,5.114 10.852,0.376 11.004,0.376 15.344,4.95 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="11.004,0.376 15.344,4.95 15.344,4.79 11.156,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.79 11.156,0.376 11.309,0.376 15.344,4.626 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.626 11.309,0.376 11.461,0.376 15.344,4.466 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="15.344,4.466 11.461,0.376 11.617,0.376 15.344,4.306 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="11.617,0.376 15.344,4.306 15.344,4.142 11.77,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="15.344,4.142 11.77,0.376 11.922,0.376 15.344,3.981 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.981 11.922,0.376 12.078,0.376 15.344,3.817 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.817 12.078,0.376 12.23,0.376 15.344,3.657 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="15.344,3.657 12.23,0.376 12.383,0.376 15.344,3.497 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="15.344,3.497 12.383,0.376 12.539,0.376 15.344,3.333 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="15.344,3.333 12.539,0.376 12.691,0.376 15.344,3.173 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="15.344,3.173 12.691,0.376 12.844,0.376 15.344,3.013 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="12.844,0.376 15.344,3.013 15.344,2.849 12.996,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="15.344,2.849 12.996,0.376 13.148,0.376 15.344,2.688 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="15.344,2.688 13.148,0.376 13.305,0.376 15.344,2.524 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="15.344,2.524 13.305,0.376 13.457,0.376 15.344,2.364 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="15.344,2.364 13.457,0.376 13.609,0.376 15.344,2.2 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="13.609,0.376 15.344,2.2 15.344,2.04 13.766,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="15.344,2.04 13.766,0.376 13.918,0.376 15.344,1.88 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="15.344,1.88 13.918,0.376 14.07,0.376 15.344,1.716 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="14.07,0.376 15.344,1.716 15.344,1.556 14.223,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="15.344,1.556 14.223,0.376 14.379,0.376 15.344,1.396 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="15.344,1.396 14.379,0.376 14.531,0.376 15.344,1.231 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="15.344,1.231 14.531,0.376 14.684,0.376 15.344,1.071 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="15.344,1.071 14.684,0.376 14.836,0.376 15.344,0.907 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="15.344,0.907 14.836,0.376 14.992,0.376 15.344,0.747 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="15.344,0.747 14.992,0.376 15.145,0.376 15.344,0.583 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.344,0.376 15.344,0.583 15.145,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 5.208,4.142 v 7.601 H 4.163 V 6.341 H 2.414 V 5.582 C 2.898,5.571 4.13,5.538 4.405,4.142 h 0.803 z"
id="path342"
style="fill:#ffffff" />
<path
d="m 11.89373,6.1547447 c -0.011,-0.154 -0.021,-0.33 -0.143,-0.572 -0.373,-0.727 -1.066,-0.727 -1.242,-0.727 -0.451,0 -1.0450001,0.11 -1.4630001,0.902 -0.386,0.715 -0.418,1.463 -0.451,2.057 0.11,-0.176 0.231,-0.397 0.572,-0.638 0.517,-0.374 1.0560001,-0.451 1.4400001,-0.451 1.397,0 2.432,1.013 2.432,2.563 0,1.4510003 -0.99,2.5410003 -2.586,2.5410003 -1.1980001,0 -2.0020001,-0.572 -2.4410001,-1.541 -0.165,-0.3730003 -0.407,-1.0450003 -0.407,-2.3320003 0,-1.242 0.264,-2.541 1.209,-3.354 0.594,-0.517 1.2320001,-0.616 1.7170001,-0.616 1.43,0 2.232,0.902 2.354,2.102 l -0.991,0.066 z m -1.419,1.484 c -0.8680001,0 -1.6160001,0.627 -1.6160001,1.617 0,0.7810003 0.473,1.6830003 1.6050001,1.6830003 0.913,0 1.551,-0.671 1.551,-1.6490003 0,-1.035 -0.67,-1.651 -1.54,-1.651 z"
id="path342-9"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 970 B

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.058 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="0.375,15.341 0.375,10.841 4.645,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.841 4.645,15.341 4.797,15.341 0.375,10.681 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.681 4.797,15.341 4.953,15.341 0.375,10.521 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="4.953,15.341 0.375,10.521 0.375,10.356 5.105,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="5.105,15.341 0.375,10.356 0.375,10.196 5.258,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="5.258,15.341 0.375,10.196 0.375,10.036 5.414,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="5.414,15.341 0.375,10.036 0.375,9.872 5.562,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="5.562,15.341 0.375,9.872 0.375,9.708 5.719,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="0.375,9.708 5.719,15.341 5.871,15.341 0.375,9.548 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="5.871,15.341 0.375,9.548 0.375,9.388 6.023,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="6.023,15.341 0.375,9.388 0.375,9.224 6.18,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="0.375,9.224 6.18,15.341 6.332,15.341 0.375,9.063 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="6.332,15.341 0.375,9.063 0.375,8.903 6.484,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="6.484,15.341 0.375,8.903 0.375,8.739 6.641,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="6.641,15.341 0.375,8.739 0.375,8.579 6.793,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="6.793,15.341 0.375,8.579 0.375,8.419 6.945,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="6.945,15.341 0.375,8.419 0.375,8.255 7.102,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="7.102,15.341 0.375,8.255 0.375,8.095 7.254,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="0.375,8.095 7.254,15.341 7.406,15.341 0.375,7.931 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="7.406,15.341 0.375,7.931 0.375,7.771 7.559,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="7.559,15.341 0.375,7.771 0.375,7.606 7.711,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="7.711,15.341 0.375,7.606 0.375,7.446 7.867,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="0.375,7.446 7.867,15.341 8.02,15.341 0.375,7.286 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="8.02,15.341 0.375,7.286 0.375,7.122 8.172,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="8.172,15.341 0.375,7.122 0.375,6.962 8.328,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="0.375,6.962 8.328,15.341 8.48,15.341 0.375,6.802 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="8.48,15.341 0.375,6.802 0.375,6.638 8.633,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="8.633,15.341 0.375,6.638 0.375,6.478 8.789,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="8.789,15.341 0.375,6.478 0.375,6.317 8.938,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="8.938,15.341 0.375,6.317 0.375,6.153 9.094,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="9.094,15.341 0.375,6.153 0.375,5.989 9.246,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="9.246,15.341 0.375,5.989 0.375,5.829 9.398,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="9.398,15.341 0.375,5.829 0.375,5.669 9.555,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="9.555,15.341 0.375,5.669 0.375,5.505 9.707,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="9.707,15.341 0.375,5.505 0.375,5.345 9.859,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="9.859,15.341 0.375,5.345 0.375,5.185 10.016,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="0.375,5.185 10.016,15.341 10.168,15.341 0.375,5.021 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="10.168,15.341 0.375,5.021 0.375,4.86 10.32,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="0.375,4.86 10.32,15.341 10.473,15.341 0.375,4.696 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="10.473,15.341 0.375,4.696 0.375,4.536 10.629,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="10.629,15.341 0.375,4.536 0.375,4.372 10.781,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="10.781,15.341 0.375,4.372 0.375,4.212 10.934,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="0.375,4.212 10.934,15.341 11.086,15.341 0.375,4.052 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="11.086,15.341 0.375,4.052 0.375,3.888 11.242,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="11.242,15.341 0.375,3.888 0.375,3.728 11.395,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="11.395,15.341 0.375,3.728 0.375,3.567 11.547,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="11.547,15.341 0.375,3.567 0.375,3.403 11.703,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="11.703,15.341 0.375,3.403 0.375,3.243 11.855,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="11.855,15.341 0.375,3.243 0.375,3.079 12.008,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="12.008,15.341 0.375,3.079 0.375,2.919 12.164,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="12.164,15.341 0.375,2.919 0.375,2.755 12.316,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="12.316,15.341 0.375,2.755 0.375,2.595 12.469,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="12.469,15.341 0.375,2.595 0.375,2.435 12.625,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="12.625,15.341 0.375,2.435 0.375,2.271 12.773,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="12.773,15.341 0.375,2.271 0.375,2.11 12.93,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="12.93,15.341 0.375,2.11 0.375,1.95 13.082,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="13.082,15.341 0.375,1.95 0.375,1.786 13.234,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="13.234,15.341 0.375,1.786 0.375,1.626 13.391,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="13.391,15.341 0.375,1.626 0.375,1.462 13.543,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="13.543,15.341 0.375,1.462 0.375,1.302 13.695,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="13.695,15.341 0.375,1.302 0.375,1.138 13.852,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="13.852,15.341 0.375,1.138 0.375,0.978 14.004,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="14.004,15.341 0.375,0.978 0.375,0.817 14.156,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="14.309,15.341 14.156,15.341 0.375,0.817 0.375,0.798 0.445,0.731 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="14.461,15.341 14.309,15.341 0.445,0.731 0.527,0.653 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="14.617,15.341 14.461,15.341 0.527,0.653 0.609,0.575 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="14.77,15.341 14.617,15.341 0.609,0.575 0.688,0.501 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="14.914,15.333 14.898,15.341 14.77,15.341 0.688,0.501 0.77,0.423 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="0.875,0.376 14.992,15.255 14.914,15.333 0.77,0.423 0.82,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="14.992,15.255 0.875,0.376 1.031,0.376 15.074,15.177 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="15.074,15.177 1.031,0.376 1.184,0.376 15.156,15.103 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="15.156,15.103 1.184,0.376 1.336,0.376 15.234,15.024 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="15.234,15.024 1.336,0.376 1.492,0.376 15.316,14.95 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="15.344,14.919 15.316,14.95 1.492,0.376 1.645,0.376 15.344,14.817 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="15.344,14.817 1.645,0.376 1.797,0.376 15.344,14.653 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="15.344,14.653 1.797,0.376 1.949,0.376 15.344,14.493 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="1.949,0.376 15.344,14.493 15.344,14.333 2.105,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="15.344,14.333 2.105,0.376 2.258,0.376 15.344,14.169 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="15.344,14.169 2.258,0.376 2.41,0.376 15.344,14.009 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="15.344,14.009 2.41,0.376 2.562,0.376 15.344,13.845 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="15.344,13.845 2.562,0.376 2.719,0.376 15.344,13.685 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="15.344,13.685 2.719,0.376 2.871,0.376 15.344,13.521 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="15.344,13.521 2.871,0.376 3.023,0.376 15.344,13.36 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="3.023,0.376 15.344,13.36 15.344,13.2 3.18,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="15.344,13.2 3.18,0.376 3.332,0.376 15.344,13.036 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="3.332,0.376 15.344,13.036 15.344,12.876 3.484,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="15.344,12.876 3.484,0.376 3.641,0.376 15.344,12.712 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="15.344,12.712 3.641,0.376 3.789,0.376 15.344,12.552 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.344,12.552 3.789,0.376 3.945,0.376 15.344,12.392 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="15.344,12.392 3.945,0.376 4.098,0.376 15.344,12.228 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="15.344,12.228 4.098,0.376 4.25,0.376 15.344,12.067 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="15.344,12.067 4.25,0.376 4.406,0.376 15.344,11.903 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="15.344,11.903 4.406,0.376 4.559,0.376 15.344,11.743 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="15.344,11.743 4.559,0.376 4.711,0.376 15.344,11.583 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="4.711,0.376 15.344,11.583 15.344,11.419 4.867,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="15.344,11.419 4.867,0.376 5.02,0.376 15.344,11.259 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="5.02,0.376 15.344,11.259 15.344,11.095 5.172,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="15.344,11.095 5.172,0.376 5.328,0.376 15.344,10.935 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="15.344,10.935 5.328,0.376 5.48,0.376 15.344,10.771 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="15.344,10.771 5.48,0.376 5.633,0.376 15.344,10.61 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="15.344,10.61 5.633,0.376 5.785,0.376 15.344,10.45 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="5.785,0.376 15.344,10.45 15.344,10.286 5.941,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="15.344,10.286 5.941,0.376 6.094,0.376 15.344,10.126 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="6.094,0.376 15.344,10.126 15.344,9.966 6.246,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="15.344,9.966 6.246,0.376 6.398,0.376 15.344,9.802 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="15.344,9.802 6.398,0.376 6.555,0.376 15.344,9.642 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="15.344,9.642 6.555,0.376 6.707,0.376 15.344,9.481 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="15.344,9.481 6.707,0.376 6.859,0.376 15.344,9.317 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="6.859,0.376 15.344,9.317 15.344,9.153 7.016,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="15.344,9.153 7.016,0.376 7.168,0.376 15.344,8.993 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="7.168,0.376 15.344,8.993 15.344,8.833 7.32,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="15.344,8.833 7.32,0.376 7.473,0.376 15.344,8.669 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="15.344,8.669 7.473,0.376 7.625,0.376 15.344,8.509 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="15.344,8.509 7.625,0.376 7.781,0.376 15.344,8.349 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="15.344,8.349 7.781,0.376 7.934,0.376 15.344,8.185 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="7.934,0.376 15.344,8.185 15.344,8.024 8.086,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="15.344,8.024 8.086,0.376 8.242,0.376 15.344,7.864 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="15.344,7.864 8.242,0.376 8.395,0.376 15.344,7.7 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="15.344,7.7 8.395,0.376 8.547,0.376 15.344,7.536 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="8.547,0.376 15.344,7.536 15.344,7.376 8.699,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="15.344,7.376 8.699,0.376 8.855,0.376 15.344,7.216 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="15.344,7.216 8.855,0.376 9.008,0.376 15.344,7.052 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="15.344,7.052 9.008,0.376 9.16,0.376 15.344,6.892 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="15.344,6.892 9.16,0.376 9.312,0.376 15.344,6.731 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="15.344,6.731 9.312,0.376 9.469,0.376 15.344,6.567 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="15.344,6.567 9.469,0.376 9.621,0.376 15.344,6.407 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="15.344,6.407 9.621,0.376 9.773,0.376 15.344,6.247 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="15.344,6.247 9.773,0.376 9.93,0.376 15.344,6.083 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="15.344,6.083 9.93,0.376 10.082,0.376 15.344,5.923 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="15.344,5.923 10.082,0.376 10.234,0.376 15.344,5.759 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="10.234,0.376 15.344,5.759 15.344,5.599 10.391,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="15.344,5.599 10.391,0.376 10.543,0.376 15.344,5.435 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="15.344,5.435 10.543,0.376 10.695,0.376 15.344,5.274 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="15.344,5.274 10.695,0.376 10.852,0.376 15.344,5.114 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="15.344,5.114 10.852,0.376 11.004,0.376 15.344,4.95 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="11.004,0.376 15.344,4.95 15.344,4.79 11.156,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.79 11.156,0.376 11.309,0.376 15.344,4.626 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.626 11.309,0.376 11.461,0.376 15.344,4.466 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="15.344,4.466 11.461,0.376 11.617,0.376 15.344,4.306 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="11.617,0.376 15.344,4.306 15.344,4.142 11.77,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="15.344,4.142 11.77,0.376 11.922,0.376 15.344,3.981 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.981 11.922,0.376 12.078,0.376 15.344,3.817 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.817 12.078,0.376 12.23,0.376 15.344,3.657 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="15.344,3.657 12.23,0.376 12.383,0.376 15.344,3.497 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="15.344,3.497 12.383,0.376 12.539,0.376 15.344,3.333 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="15.344,3.333 12.539,0.376 12.691,0.376 15.344,3.173 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="15.344,3.173 12.691,0.376 12.844,0.376 15.344,3.013 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="12.844,0.376 15.344,3.013 15.344,2.849 12.996,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="15.344,2.849 12.996,0.376 13.148,0.376 15.344,2.688 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="15.344,2.688 13.148,0.376 13.305,0.376 15.344,2.524 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="15.344,2.524 13.305,0.376 13.457,0.376 15.344,2.364 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="15.344,2.364 13.457,0.376 13.609,0.376 15.344,2.2 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="13.609,0.376 15.344,2.2 15.344,2.04 13.766,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="15.344,2.04 13.766,0.376 13.918,0.376 15.344,1.88 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="15.344,1.88 13.918,0.376 14.07,0.376 15.344,1.716 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="14.07,0.376 15.344,1.716 15.344,1.556 14.223,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="15.344,1.556 14.223,0.376 14.379,0.376 15.344,1.396 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="15.344,1.396 14.379,0.376 14.531,0.376 15.344,1.231 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="15.344,1.231 14.531,0.376 14.684,0.376 15.344,1.071 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="15.344,1.071 14.684,0.376 14.836,0.376 15.344,0.907 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="15.344,0.907 14.836,0.376 14.992,0.376 15.344,0.747 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="15.344,0.747 14.992,0.376 15.145,0.376 15.344,0.583 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.344,0.376 15.344,0.583 15.145,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 5.208,4.142 v 7.601 H 4.163 V 6.341 H 2.414 V 5.582 C 2.898,5.571 4.13,5.538 4.405,4.142 h 0.803 z"
id="path342"
style="fill:#ffffff" />
<path
d="m 7.5491878,5.2803669 v -1.001 h 5.0050002 v 0.88 c -0.352,0.374 -0.858,0.924 -1.518,2.134 -0.595,1.078 -1.134,2.299 -1.431,4.5980001 H 8.4621878 c 0.065,-0.583 0.197,-1.089 0.242,-1.31 0.197,-0.7800001 0.429,-1.4840001 0.7910002,-2.2760001 0.836,-1.892 1.596,-2.706 1.893,-3.025 H 7.5491878 z"
id="path342-0"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1016 B

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.058 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="0.375,15.341 0.375,10.841 4.645,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.841 4.645,15.341 4.797,15.341 0.375,10.681 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.681 4.797,15.341 4.953,15.341 0.375,10.521 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="4.953,15.341 0.375,10.521 0.375,10.356 5.105,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="5.105,15.341 0.375,10.356 0.375,10.196 5.258,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="5.258,15.341 0.375,10.196 0.375,10.036 5.414,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="5.414,15.341 0.375,10.036 0.375,9.872 5.562,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="5.562,15.341 0.375,9.872 0.375,9.708 5.719,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="0.375,9.708 5.719,15.341 5.871,15.341 0.375,9.548 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="5.871,15.341 0.375,9.548 0.375,9.388 6.023,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="6.023,15.341 0.375,9.388 0.375,9.224 6.18,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="0.375,9.224 6.18,15.341 6.332,15.341 0.375,9.063 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="6.332,15.341 0.375,9.063 0.375,8.903 6.484,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="6.484,15.341 0.375,8.903 0.375,8.739 6.641,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="6.641,15.341 0.375,8.739 0.375,8.579 6.793,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="6.793,15.341 0.375,8.579 0.375,8.419 6.945,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="6.945,15.341 0.375,8.419 0.375,8.255 7.102,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="7.102,15.341 0.375,8.255 0.375,8.095 7.254,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="0.375,8.095 7.254,15.341 7.406,15.341 0.375,7.931 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="7.406,15.341 0.375,7.931 0.375,7.771 7.559,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="7.559,15.341 0.375,7.771 0.375,7.606 7.711,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="7.711,15.341 0.375,7.606 0.375,7.446 7.867,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="0.375,7.446 7.867,15.341 8.02,15.341 0.375,7.286 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="8.02,15.341 0.375,7.286 0.375,7.122 8.172,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="8.172,15.341 0.375,7.122 0.375,6.962 8.328,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="0.375,6.962 8.328,15.341 8.48,15.341 0.375,6.802 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="8.48,15.341 0.375,6.802 0.375,6.638 8.633,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="8.633,15.341 0.375,6.638 0.375,6.478 8.789,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="8.789,15.341 0.375,6.478 0.375,6.317 8.938,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="8.938,15.341 0.375,6.317 0.375,6.153 9.094,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="9.094,15.341 0.375,6.153 0.375,5.989 9.246,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="9.246,15.341 0.375,5.989 0.375,5.829 9.398,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="9.398,15.341 0.375,5.829 0.375,5.669 9.555,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="9.555,15.341 0.375,5.669 0.375,5.505 9.707,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="9.707,15.341 0.375,5.505 0.375,5.345 9.859,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="9.859,15.341 0.375,5.345 0.375,5.185 10.016,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="0.375,5.185 10.016,15.341 10.168,15.341 0.375,5.021 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="10.168,15.341 0.375,5.021 0.375,4.86 10.32,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="0.375,4.86 10.32,15.341 10.473,15.341 0.375,4.696 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="10.473,15.341 0.375,4.696 0.375,4.536 10.629,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="10.629,15.341 0.375,4.536 0.375,4.372 10.781,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="10.781,15.341 0.375,4.372 0.375,4.212 10.934,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="0.375,4.212 10.934,15.341 11.086,15.341 0.375,4.052 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="11.086,15.341 0.375,4.052 0.375,3.888 11.242,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="11.242,15.341 0.375,3.888 0.375,3.728 11.395,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="11.395,15.341 0.375,3.728 0.375,3.567 11.547,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="11.547,15.341 0.375,3.567 0.375,3.403 11.703,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="11.703,15.341 0.375,3.403 0.375,3.243 11.855,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="11.855,15.341 0.375,3.243 0.375,3.079 12.008,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="12.008,15.341 0.375,3.079 0.375,2.919 12.164,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="12.164,15.341 0.375,2.919 0.375,2.755 12.316,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="12.316,15.341 0.375,2.755 0.375,2.595 12.469,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="12.469,15.341 0.375,2.595 0.375,2.435 12.625,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="12.625,15.341 0.375,2.435 0.375,2.271 12.773,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="12.773,15.341 0.375,2.271 0.375,2.11 12.93,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="12.93,15.341 0.375,2.11 0.375,1.95 13.082,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="13.082,15.341 0.375,1.95 0.375,1.786 13.234,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="13.234,15.341 0.375,1.786 0.375,1.626 13.391,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="13.391,15.341 0.375,1.626 0.375,1.462 13.543,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="13.543,15.341 0.375,1.462 0.375,1.302 13.695,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="13.695,15.341 0.375,1.302 0.375,1.138 13.852,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="13.852,15.341 0.375,1.138 0.375,0.978 14.004,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="14.004,15.341 0.375,0.978 0.375,0.817 14.156,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="14.309,15.341 14.156,15.341 0.375,0.817 0.375,0.798 0.445,0.731 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="14.461,15.341 14.309,15.341 0.445,0.731 0.527,0.653 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="14.617,15.341 14.461,15.341 0.527,0.653 0.609,0.575 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="14.77,15.341 14.617,15.341 0.609,0.575 0.688,0.501 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="14.914,15.333 14.898,15.341 14.77,15.341 0.688,0.501 0.77,0.423 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="0.875,0.376 14.992,15.255 14.914,15.333 0.77,0.423 0.82,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="14.992,15.255 0.875,0.376 1.031,0.376 15.074,15.177 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="15.074,15.177 1.031,0.376 1.184,0.376 15.156,15.103 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="15.156,15.103 1.184,0.376 1.336,0.376 15.234,15.024 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="15.234,15.024 1.336,0.376 1.492,0.376 15.316,14.95 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="15.344,14.919 15.316,14.95 1.492,0.376 1.645,0.376 15.344,14.817 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="15.344,14.817 1.645,0.376 1.797,0.376 15.344,14.653 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="15.344,14.653 1.797,0.376 1.949,0.376 15.344,14.493 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="1.949,0.376 15.344,14.493 15.344,14.333 2.105,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="15.344,14.333 2.105,0.376 2.258,0.376 15.344,14.169 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="15.344,14.169 2.258,0.376 2.41,0.376 15.344,14.009 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="15.344,14.009 2.41,0.376 2.562,0.376 15.344,13.845 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="15.344,13.845 2.562,0.376 2.719,0.376 15.344,13.685 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="15.344,13.685 2.719,0.376 2.871,0.376 15.344,13.521 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="15.344,13.521 2.871,0.376 3.023,0.376 15.344,13.36 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="3.023,0.376 15.344,13.36 15.344,13.2 3.18,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="15.344,13.2 3.18,0.376 3.332,0.376 15.344,13.036 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="3.332,0.376 15.344,13.036 15.344,12.876 3.484,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="15.344,12.876 3.484,0.376 3.641,0.376 15.344,12.712 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="15.344,12.712 3.641,0.376 3.789,0.376 15.344,12.552 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.344,12.552 3.789,0.376 3.945,0.376 15.344,12.392 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="15.344,12.392 3.945,0.376 4.098,0.376 15.344,12.228 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="15.344,12.228 4.098,0.376 4.25,0.376 15.344,12.067 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="15.344,12.067 4.25,0.376 4.406,0.376 15.344,11.903 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="15.344,11.903 4.406,0.376 4.559,0.376 15.344,11.743 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="15.344,11.743 4.559,0.376 4.711,0.376 15.344,11.583 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="4.711,0.376 15.344,11.583 15.344,11.419 4.867,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="15.344,11.419 4.867,0.376 5.02,0.376 15.344,11.259 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="5.02,0.376 15.344,11.259 15.344,11.095 5.172,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="15.344,11.095 5.172,0.376 5.328,0.376 15.344,10.935 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="15.344,10.935 5.328,0.376 5.48,0.376 15.344,10.771 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="15.344,10.771 5.48,0.376 5.633,0.376 15.344,10.61 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="15.344,10.61 5.633,0.376 5.785,0.376 15.344,10.45 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="5.785,0.376 15.344,10.45 15.344,10.286 5.941,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="15.344,10.286 5.941,0.376 6.094,0.376 15.344,10.126 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="6.094,0.376 15.344,10.126 15.344,9.966 6.246,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="15.344,9.966 6.246,0.376 6.398,0.376 15.344,9.802 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="15.344,9.802 6.398,0.376 6.555,0.376 15.344,9.642 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="15.344,9.642 6.555,0.376 6.707,0.376 15.344,9.481 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="15.344,9.481 6.707,0.376 6.859,0.376 15.344,9.317 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="6.859,0.376 15.344,9.317 15.344,9.153 7.016,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="15.344,9.153 7.016,0.376 7.168,0.376 15.344,8.993 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="7.168,0.376 15.344,8.993 15.344,8.833 7.32,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="15.344,8.833 7.32,0.376 7.473,0.376 15.344,8.669 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="15.344,8.669 7.473,0.376 7.625,0.376 15.344,8.509 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="15.344,8.509 7.625,0.376 7.781,0.376 15.344,8.349 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="15.344,8.349 7.781,0.376 7.934,0.376 15.344,8.185 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="7.934,0.376 15.344,8.185 15.344,8.024 8.086,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="15.344,8.024 8.086,0.376 8.242,0.376 15.344,7.864 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="15.344,7.864 8.242,0.376 8.395,0.376 15.344,7.7 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="15.344,7.7 8.395,0.376 8.547,0.376 15.344,7.536 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="8.547,0.376 15.344,7.536 15.344,7.376 8.699,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="15.344,7.376 8.699,0.376 8.855,0.376 15.344,7.216 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="15.344,7.216 8.855,0.376 9.008,0.376 15.344,7.052 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="15.344,7.052 9.008,0.376 9.16,0.376 15.344,6.892 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="15.344,6.892 9.16,0.376 9.312,0.376 15.344,6.731 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="15.344,6.731 9.312,0.376 9.469,0.376 15.344,6.567 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="15.344,6.567 9.469,0.376 9.621,0.376 15.344,6.407 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="15.344,6.407 9.621,0.376 9.773,0.376 15.344,6.247 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="15.344,6.247 9.773,0.376 9.93,0.376 15.344,6.083 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="15.344,6.083 9.93,0.376 10.082,0.376 15.344,5.923 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="15.344,5.923 10.082,0.376 10.234,0.376 15.344,5.759 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="10.234,0.376 15.344,5.759 15.344,5.599 10.391,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="15.344,5.599 10.391,0.376 10.543,0.376 15.344,5.435 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="15.344,5.435 10.543,0.376 10.695,0.376 15.344,5.274 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="15.344,5.274 10.695,0.376 10.852,0.376 15.344,5.114 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="15.344,5.114 10.852,0.376 11.004,0.376 15.344,4.95 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="11.004,0.376 15.344,4.95 15.344,4.79 11.156,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.79 11.156,0.376 11.309,0.376 15.344,4.626 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.626 11.309,0.376 11.461,0.376 15.344,4.466 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="15.344,4.466 11.461,0.376 11.617,0.376 15.344,4.306 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="11.617,0.376 15.344,4.306 15.344,4.142 11.77,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="15.344,4.142 11.77,0.376 11.922,0.376 15.344,3.981 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.981 11.922,0.376 12.078,0.376 15.344,3.817 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.817 12.078,0.376 12.23,0.376 15.344,3.657 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="15.344,3.657 12.23,0.376 12.383,0.376 15.344,3.497 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="15.344,3.497 12.383,0.376 12.539,0.376 15.344,3.333 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="15.344,3.333 12.539,0.376 12.691,0.376 15.344,3.173 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="15.344,3.173 12.691,0.376 12.844,0.376 15.344,3.013 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="12.844,0.376 15.344,3.013 15.344,2.849 12.996,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="15.344,2.849 12.996,0.376 13.148,0.376 15.344,2.688 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="15.344,2.688 13.148,0.376 13.305,0.376 15.344,2.524 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="15.344,2.524 13.305,0.376 13.457,0.376 15.344,2.364 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="15.344,2.364 13.457,0.376 13.609,0.376 15.344,2.2 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="13.609,0.376 15.344,2.2 15.344,2.04 13.766,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="15.344,2.04 13.766,0.376 13.918,0.376 15.344,1.88 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="15.344,1.88 13.918,0.376 14.07,0.376 15.344,1.716 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="14.07,0.376 15.344,1.716 15.344,1.556 14.223,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="15.344,1.556 14.223,0.376 14.379,0.376 15.344,1.396 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="15.344,1.396 14.379,0.376 14.531,0.376 15.344,1.231 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="15.344,1.231 14.531,0.376 14.684,0.376 15.344,1.071 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="15.344,1.071 14.684,0.376 14.836,0.376 15.344,0.907 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="15.344,0.907 14.836,0.376 14.992,0.376 15.344,0.747 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="15.344,0.747 14.992,0.376 15.145,0.376 15.344,0.583 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.344,0.376 15.344,0.583 15.145,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 5.208,4.142 v 7.601 H 4.163 V 6.341 H 2.414 V 5.582 C 2.898,5.571 4.13,5.538 4.405,4.142 h 0.803 z"
id="path342"
style="fill:#ffffff" />
<path
d="m 13.11573,9.6592658 c 0,1.3870002 -1,2.3320002 -2.738,2.3320002 -1.5509999,0 -2.8500001,-0.748 -2.8500001,-2.3540002 0,-0.439 0.1,-1.023 0.639,-1.529 0.33,-0.297 0.594,-0.385 0.7700002,-0.451 -0.143,-0.055 -0.3640002,-0.153 -0.5830002,-0.385 -0.297,-0.318 -0.463,-0.791 -0.463,-1.23 0,-0.596 0.286,-1.156 0.781,-1.508 0.5830002,-0.418 1.3200002,-0.439 1.6610001,-0.439 2.409,0 2.497,1.781 2.497,1.99 0,0.406 -0.154,1.166 -1.045,1.572 0.364,0.177 1.331,0.65 1.331,2.002 z m -1.033,-0.043 c 0,-0.814 -0.671,-1.451 -1.782,-1.451 -0.9789999,0 -1.7280001,0.537 -1.7280001,1.463 0,0.8120002 0.6050002,1.4510002 1.7500001,1.4510002 1.484,0 1.76,-1.002 1.76,-1.4630002 z m -1.727,-4.643 c -0.275,0 -0.5059999,0.023 -0.7149999,0.1 -0.584,0.221 -0.748,0.67 -0.748,1.057 0,0.582 0.406,1.154 1.4399999,1.154 1.353,0 1.452,-0.902 1.452,-1.166 10e-4,-0.485 -0.275,-1.145 -1.429,-1.145 z"
id="path334"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1010 B

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.058 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="0.375,15.341 0.375,10.841 4.645,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.841 4.645,15.341 4.797,15.341 0.375,10.681 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="0.375,10.681 4.797,15.341 4.953,15.341 0.375,10.521 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="4.953,15.341 0.375,10.521 0.375,10.356 5.105,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="5.105,15.341 0.375,10.356 0.375,10.196 5.258,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="5.258,15.341 0.375,10.196 0.375,10.036 5.414,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="5.414,15.341 0.375,10.036 0.375,9.872 5.562,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="5.562,15.341 0.375,9.872 0.375,9.708 5.719,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="0.375,9.708 5.719,15.341 5.871,15.341 0.375,9.548 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="5.871,15.341 0.375,9.548 0.375,9.388 6.023,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="6.023,15.341 0.375,9.388 0.375,9.224 6.18,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="0.375,9.224 6.18,15.341 6.332,15.341 0.375,9.063 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="6.332,15.341 0.375,9.063 0.375,8.903 6.484,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="6.484,15.341 0.375,8.903 0.375,8.739 6.641,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="6.641,15.341 0.375,8.739 0.375,8.579 6.793,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="6.793,15.341 0.375,8.579 0.375,8.419 6.945,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="6.945,15.341 0.375,8.419 0.375,8.255 7.102,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="7.102,15.341 0.375,8.255 0.375,8.095 7.254,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="0.375,8.095 7.254,15.341 7.406,15.341 0.375,7.931 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="7.406,15.341 0.375,7.931 0.375,7.771 7.559,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="7.559,15.341 0.375,7.771 0.375,7.606 7.711,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="7.711,15.341 0.375,7.606 0.375,7.446 7.867,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="0.375,7.446 7.867,15.341 8.02,15.341 0.375,7.286 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="8.02,15.341 0.375,7.286 0.375,7.122 8.172,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="8.172,15.341 0.375,7.122 0.375,6.962 8.328,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="0.375,6.962 8.328,15.341 8.48,15.341 0.375,6.802 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="8.48,15.341 0.375,6.802 0.375,6.638 8.633,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="8.633,15.341 0.375,6.638 0.375,6.478 8.789,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="8.789,15.341 0.375,6.478 0.375,6.317 8.938,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="8.938,15.341 0.375,6.317 0.375,6.153 9.094,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="9.094,15.341 0.375,6.153 0.375,5.989 9.246,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="9.246,15.341 0.375,5.989 0.375,5.829 9.398,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="9.398,15.341 0.375,5.829 0.375,5.669 9.555,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="9.555,15.341 0.375,5.669 0.375,5.505 9.707,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="9.707,15.341 0.375,5.505 0.375,5.345 9.859,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="9.859,15.341 0.375,5.345 0.375,5.185 10.016,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="0.375,5.185 10.016,15.341 10.168,15.341 0.375,5.021 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="10.168,15.341 0.375,5.021 0.375,4.86 10.32,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="0.375,4.86 10.32,15.341 10.473,15.341 0.375,4.696 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="10.473,15.341 0.375,4.696 0.375,4.536 10.629,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="10.629,15.341 0.375,4.536 0.375,4.372 10.781,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="10.781,15.341 0.375,4.372 0.375,4.212 10.934,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="0.375,4.212 10.934,15.341 11.086,15.341 0.375,4.052 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="11.086,15.341 0.375,4.052 0.375,3.888 11.242,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="11.242,15.341 0.375,3.888 0.375,3.728 11.395,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="11.395,15.341 0.375,3.728 0.375,3.567 11.547,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="11.547,15.341 0.375,3.567 0.375,3.403 11.703,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="11.703,15.341 0.375,3.403 0.375,3.243 11.855,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="11.855,15.341 0.375,3.243 0.375,3.079 12.008,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="12.008,15.341 0.375,3.079 0.375,2.919 12.164,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="12.164,15.341 0.375,2.919 0.375,2.755 12.316,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="12.316,15.341 0.375,2.755 0.375,2.595 12.469,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="12.469,15.341 0.375,2.595 0.375,2.435 12.625,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="12.625,15.341 0.375,2.435 0.375,2.271 12.773,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="12.773,15.341 0.375,2.271 0.375,2.11 12.93,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="12.93,15.341 0.375,2.11 0.375,1.95 13.082,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="13.082,15.341 0.375,1.95 0.375,1.786 13.234,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="13.234,15.341 0.375,1.786 0.375,1.626 13.391,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="13.391,15.341 0.375,1.626 0.375,1.462 13.543,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="13.543,15.341 0.375,1.462 0.375,1.302 13.695,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="13.695,15.341 0.375,1.302 0.375,1.138 13.852,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="13.852,15.341 0.375,1.138 0.375,0.978 14.004,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="14.004,15.341 0.375,0.978 0.375,0.817 14.156,15.341 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="14.309,15.341 14.156,15.341 0.375,0.817 0.375,0.798 0.445,0.731 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="14.461,15.341 14.309,15.341 0.445,0.731 0.527,0.653 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="14.617,15.341 14.461,15.341 0.527,0.653 0.609,0.575 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="14.77,15.341 14.617,15.341 0.609,0.575 0.688,0.501 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="14.914,15.333 14.898,15.341 14.77,15.341 0.688,0.501 0.77,0.423 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="0.875,0.376 14.992,15.255 14.914,15.333 0.77,0.423 0.82,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="14.992,15.255 0.875,0.376 1.031,0.376 15.074,15.177 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="15.074,15.177 1.031,0.376 1.184,0.376 15.156,15.103 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="15.156,15.103 1.184,0.376 1.336,0.376 15.234,15.024 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="15.234,15.024 1.336,0.376 1.492,0.376 15.316,14.95 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="15.344,14.919 15.316,14.95 1.492,0.376 1.645,0.376 15.344,14.817 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="15.344,14.817 1.645,0.376 1.797,0.376 15.344,14.653 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="15.344,14.653 1.797,0.376 1.949,0.376 15.344,14.493 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="1.949,0.376 15.344,14.493 15.344,14.333 2.105,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="15.344,14.333 2.105,0.376 2.258,0.376 15.344,14.169 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="15.344,14.169 2.258,0.376 2.41,0.376 15.344,14.009 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="15.344,14.009 2.41,0.376 2.562,0.376 15.344,13.845 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="15.344,13.845 2.562,0.376 2.719,0.376 15.344,13.685 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="15.344,13.685 2.719,0.376 2.871,0.376 15.344,13.521 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="15.344,13.521 2.871,0.376 3.023,0.376 15.344,13.36 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="3.023,0.376 15.344,13.36 15.344,13.2 3.18,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="15.344,13.2 3.18,0.376 3.332,0.376 15.344,13.036 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="3.332,0.376 15.344,13.036 15.344,12.876 3.484,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="15.344,12.876 3.484,0.376 3.641,0.376 15.344,12.712 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="15.344,12.712 3.641,0.376 3.789,0.376 15.344,12.552 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.344,12.552 3.789,0.376 3.945,0.376 15.344,12.392 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="15.344,12.392 3.945,0.376 4.098,0.376 15.344,12.228 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="15.344,12.228 4.098,0.376 4.25,0.376 15.344,12.067 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="15.344,12.067 4.25,0.376 4.406,0.376 15.344,11.903 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="15.344,11.903 4.406,0.376 4.559,0.376 15.344,11.743 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="15.344,11.743 4.559,0.376 4.711,0.376 15.344,11.583 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="4.711,0.376 15.344,11.583 15.344,11.419 4.867,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="15.344,11.419 4.867,0.376 5.02,0.376 15.344,11.259 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="5.02,0.376 15.344,11.259 15.344,11.095 5.172,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="15.344,11.095 5.172,0.376 5.328,0.376 15.344,10.935 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="15.344,10.935 5.328,0.376 5.48,0.376 15.344,10.771 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="15.344,10.771 5.48,0.376 5.633,0.376 15.344,10.61 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="15.344,10.61 5.633,0.376 5.785,0.376 15.344,10.45 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="5.785,0.376 15.344,10.45 15.344,10.286 5.941,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="15.344,10.286 5.941,0.376 6.094,0.376 15.344,10.126 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="6.094,0.376 15.344,10.126 15.344,9.966 6.246,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="15.344,9.966 6.246,0.376 6.398,0.376 15.344,9.802 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="15.344,9.802 6.398,0.376 6.555,0.376 15.344,9.642 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="15.344,9.642 6.555,0.376 6.707,0.376 15.344,9.481 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="15.344,9.481 6.707,0.376 6.859,0.376 15.344,9.317 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="6.859,0.376 15.344,9.317 15.344,9.153 7.016,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="15.344,9.153 7.016,0.376 7.168,0.376 15.344,8.993 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="7.168,0.376 15.344,8.993 15.344,8.833 7.32,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="15.344,8.833 7.32,0.376 7.473,0.376 15.344,8.669 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="15.344,8.669 7.473,0.376 7.625,0.376 15.344,8.509 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="15.344,8.509 7.625,0.376 7.781,0.376 15.344,8.349 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="15.344,8.349 7.781,0.376 7.934,0.376 15.344,8.185 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="7.934,0.376 15.344,8.185 15.344,8.024 8.086,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="15.344,8.024 8.086,0.376 8.242,0.376 15.344,7.864 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="15.344,7.864 8.242,0.376 8.395,0.376 15.344,7.7 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="15.344,7.7 8.395,0.376 8.547,0.376 15.344,7.536 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="8.547,0.376 15.344,7.536 15.344,7.376 8.699,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="15.344,7.376 8.699,0.376 8.855,0.376 15.344,7.216 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="15.344,7.216 8.855,0.376 9.008,0.376 15.344,7.052 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="15.344,7.052 9.008,0.376 9.16,0.376 15.344,6.892 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="15.344,6.892 9.16,0.376 9.312,0.376 15.344,6.731 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="15.344,6.731 9.312,0.376 9.469,0.376 15.344,6.567 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="15.344,6.567 9.469,0.376 9.621,0.376 15.344,6.407 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="15.344,6.407 9.621,0.376 9.773,0.376 15.344,6.247 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="15.344,6.247 9.773,0.376 9.93,0.376 15.344,6.083 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="15.344,6.083 9.93,0.376 10.082,0.376 15.344,5.923 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="15.344,5.923 10.082,0.376 10.234,0.376 15.344,5.759 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="10.234,0.376 15.344,5.759 15.344,5.599 10.391,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="15.344,5.599 10.391,0.376 10.543,0.376 15.344,5.435 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="15.344,5.435 10.543,0.376 10.695,0.376 15.344,5.274 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="15.344,5.274 10.695,0.376 10.852,0.376 15.344,5.114 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="15.344,5.114 10.852,0.376 11.004,0.376 15.344,4.95 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="11.004,0.376 15.344,4.95 15.344,4.79 11.156,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.79 11.156,0.376 11.309,0.376 15.344,4.626 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="15.344,4.626 11.309,0.376 11.461,0.376 15.344,4.466 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="15.344,4.466 11.461,0.376 11.617,0.376 15.344,4.306 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="11.617,0.376 15.344,4.306 15.344,4.142 11.77,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="15.344,4.142 11.77,0.376 11.922,0.376 15.344,3.981 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.981 11.922,0.376 12.078,0.376 15.344,3.817 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="15.344,3.817 12.078,0.376 12.23,0.376 15.344,3.657 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="15.344,3.657 12.23,0.376 12.383,0.376 15.344,3.497 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="15.344,3.497 12.383,0.376 12.539,0.376 15.344,3.333 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="15.344,3.333 12.539,0.376 12.691,0.376 15.344,3.173 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="15.344,3.173 12.691,0.376 12.844,0.376 15.344,3.013 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="12.844,0.376 15.344,3.013 15.344,2.849 12.996,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="15.344,2.849 12.996,0.376 13.148,0.376 15.344,2.688 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="15.344,2.688 13.148,0.376 13.305,0.376 15.344,2.524 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="15.344,2.524 13.305,0.376 13.457,0.376 15.344,2.364 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="15.344,2.364 13.457,0.376 13.609,0.376 15.344,2.2 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="13.609,0.376 15.344,2.2 15.344,2.04 13.766,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="15.344,2.04 13.766,0.376 13.918,0.376 15.344,1.88 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="15.344,1.88 13.918,0.376 14.07,0.376 15.344,1.716 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="14.07,0.376 15.344,1.716 15.344,1.556 14.223,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="15.344,1.556 14.223,0.376 14.379,0.376 15.344,1.396 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="15.344,1.396 14.379,0.376 14.531,0.376 15.344,1.231 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="15.344,1.231 14.531,0.376 14.684,0.376 15.344,1.071 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="15.344,1.071 14.684,0.376 14.836,0.376 15.344,0.907 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="15.344,0.907 14.836,0.376 14.992,0.376 15.344,0.747 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="15.344,0.747 14.992,0.376 15.145,0.376 15.344,0.583 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.344,0.376 15.344,0.583 15.145,0.376 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 5.208,4.142 v 7.601 H 4.163 V 6.341 H 2.414 V 5.582 C 2.898,5.571 4.13,5.538 4.405,4.142 h 0.803 z"
id="path342"
style="fill:#ffffff" />
<path
d="m 8.5777971,9.6577447 c 0.021,0.198 0.054,0.4730003 0.263,0.7580003 0.342,0.484 0.825,0.539 1.145,0.539 1.4509999,0 1.8369999,-1.5960003 1.8689999,-2.8930003 -0.176,0.253 -0.725,1.046 -2.0019999,1.046 -1.4069996,0 -2.4409996,-0.979 -2.4409996,-2.529 0,-1.463 1.012,-2.586 2.6069995,-2.586 1.705,0 2.32,1.266 2.519,1.75 0.253,0.67 0.308,1.406 0.308,2.123 0,0.34 -0.021,0.682 -0.065,1.021 -0.121,0.814 -0.418,1.5960003 -0.902,2.1230003 -0.692,0.748 -1.528,0.814 -1.9789999,0.814 -0.407,0 -1.331,-0.033 -1.9579996,-0.945 -0.321,-0.473 -0.365,-0.9350003 -0.388,-1.1440003 l 1.0239996,-0.077 z m 1.419,-1.464 c 0.8469999,0 1.6059999,-0.57 1.6059999,-1.594 0,-0.924 -0.627,-1.705 -1.6059999,-1.705 -0.858,0 -1.5509996,0.615 -1.5509996,1.627 0,0.738 0.3849996,1.672 1.5509996,1.672 z"
id="path342-6"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 824 B

View File

@ -0,0 +1,193 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 12.0.1, SVG Export Plug-In -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" [
<!ENTITY ns_flows "http://ns.adobe.com/Flows/1.0/">
<!ENTITY ns_svg "http://www.w3.org/2000/svg">
<!ENTITY ns_xlink "http://www.w3.org/1999/xlink">
]>
<svg version="1.1" xmlns="&ns_svg;" xmlns:xlink="&ns_xlink;" xmlns:a="http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/"
width="17" height="17" viewBox="-0.75 -0.657 17 17" enable-background="new -0.75 -0.657 17 17" xml:space="preserve">
<defs>
</defs>
<g>
<defs>
<circle id="XMLID_6_" cx="7.86" cy="7.859" r="7.485"/>
</defs>
<clipPath id="XMLID_9_">
<use xlink:href="#XMLID_6_" />
</clipPath>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,9.866 4.789,15.343 0.375,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#CBD2D8" points="0.375,9.714 4.91,15.343 4.789,15.343 0.375,9.866 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C9D0D5" points="0.375,9.562 5.031,15.343 4.91,15.343 0.375,9.714 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C6CDD3" points="0.375,9.409 5.156,15.343 5.031,15.343 0.375,9.562 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C5CCD2" points="0.375,9.257 5.281,15.343 5.156,15.343 0.375,9.409 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C3C9D0" points="0.375,9.101 5.402,15.343 5.281,15.343 0.375,9.257 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#C1C8CE" points="0.375,8.952 5.523,15.343 5.402,15.343 0.375,9.101 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BFC5CC" points="0.375,8.796 5.648,15.343 5.523,15.343 0.375,8.952 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BEC4CB" points="0.375,8.644 5.77,15.343 5.648,15.343 0.375,8.796 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BBC2C9" points="0.375,8.491 5.895,15.343 5.77,15.343 0.375,8.644 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#BAC0C8" points="0.375,8.339 6.016,15.343 5.895,15.343 0.375,8.491 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B7BEC6" points="0.375,8.187 6.141,15.343 6.016,15.343 0.375,8.339 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B6BDC5" points="0.375,8.034 6.262,15.343 6.141,15.343 0.375,8.187 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B5BBC3" points="0.375,7.882 6.387,15.343 6.262,15.343 0.375,8.034 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B3BAC2" points="0.375,7.729 6.508,15.343 6.387,15.343 0.375,7.882 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B1B7C0" points="0.375,7.577 6.633,15.343 6.508,15.343 0.375,7.729 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#B0B6BF" points="0.375,7.425 6.754,15.343 6.633,15.343 0.375,7.577 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AEB5BE" points="0.375,7.272 6.875,15.343 6.754,15.343 0.375,7.425 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ADB3BC" points="0.375,7.12 7,15.343 6.875,15.343 0.375,7.272 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#ABB2BC" points="0.375,6.968 7.125,15.343 7,15.343 0.375,7.12 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#AAB0BA" points="0.375,6.815 7.246,15.343 7.125,15.343 0.375,6.968 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A8AEB8" points="0.375,6.663 7.367,15.343 7.246,15.343 0.375,6.815 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ADB7" points="0.375,6.511 7.492,15.343 7.367,15.343 0.375,6.663 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A6ACB6" points="0.375,6.358 7.613,15.343 7.492,15.343 0.375,6.511 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A3AAB4" points="0.375,6.202 7.738,15.343 7.613,15.343 0.375,6.358 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A2A8B3" points="0.375,6.054 7.859,15.343 7.738,15.343 0.375,6.202 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#A0A7B1" points="0.375,5.897 7.984,15.343 7.859,15.343 0.375,6.054 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9FA6B0" points="0.375,5.745 8.105,15.343 7.984,15.343 0.375,5.897 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9EA4AF" points="0.375,5.593 8.227,15.343 8.105,15.343 0.375,5.745 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9CA3AE" points="0.375,5.44 8.352,15.343 8.227,15.343 0.375,5.593 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9BA1AD" points="0.375,5.288 8.477,15.343 8.352,15.343 0.375,5.44 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9AA0AB" points="0.375,5.136 8.598,15.343 8.477,15.343 0.375,5.288 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#989FAA" points="0.375,4.983 8.719,15.343 8.598,15.343 0.375,5.136 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#979EAA" points="0.375,4.831 8.844,15.343 8.719,15.343 0.375,4.983 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#969CA8" points="0.375,4.679 8.965,15.343 8.844,15.343 0.375,4.831 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#949BA7" points="0.375,4.526 9.09,15.343 8.965,15.343 0.375,4.679 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9399A5" points="0.375,4.374 9.211,15.343 9.09,15.343 0.375,4.526 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9298A4" points="0.375,4.222 9.336,15.343 9.211,15.343 0.375,4.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#9097A3" points="0.375,4.069 9.457,15.343 9.336,15.343 0.375,4.222 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8F95A2" points="0.375,3.913 9.578,15.343 9.457,15.343 0.375,4.069 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8E95A1" points="0.375,3.765 9.703,15.343 9.578,15.343 0.375,3.913 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8D93A0" points="0.375,3.608 9.828,15.343 9.703,15.343 0.375,3.765 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8B929F" points="0.375,3.456 9.949,15.343 9.828,15.343 0.375,3.608 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#8A919E" points="0.375,3.304 10.07,15.343 9.949,15.343 0.375,3.456 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#898F9D" points="0.375,3.151 10.195,15.343 10.07,15.343 0.375,3.304 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878E9B" points="0.375,2.999 10.32,15.343 10.195,15.343 0.375,3.151 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#878D9B" points="0.375,2.847 10.441,15.343 10.32,15.343 0.375,2.999 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#858C9A" points="0.375,2.694 10.562,15.343 10.441,15.343 0.375,2.847 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#848B98" points="0.375,2.542 10.688,15.343 10.562,15.343 0.375,2.694 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#838A97" points="0.375,2.39 10.809,15.343 10.688,15.343 0.375,2.542 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#828997" points="0.375,2.237 10.934,15.343 10.809,15.343 0.375,2.39 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#818895" points="0.375,2.085 11.055,15.343 10.934,15.343 0.375,2.237 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#808794" points="0.375,1.933 11.18,15.343 11.055,15.343 0.375,2.085 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7E8594" points="0.375,1.78 11.301,15.343 11.18,15.343 0.375,1.933 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7D8593" points="0.375,1.628 11.422,15.343 11.301,15.343 0.375,1.78 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7C8392" points="0.375,1.476 11.547,15.343 11.422,15.343 0.375,1.628 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7B8290" points="0.375,1.323 11.672,15.343 11.547,15.343 0.375,1.476 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#7A8190" points="0.375,1.171 11.793,15.343 11.672,15.343 0.375,1.323 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#79808F" points="0.375,1.015 11.914,15.343 11.793,15.343 0.375,1.171 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#787F8D" points="0.375,0.866 12.039,15.343 11.914,15.343 0.375,1.015 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#777E8D" points="0.375,0.714 12.164,15.343 12.039,15.343 0.375,0.866 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767D8C" points="0.375,0.558 12.285,15.343 12.164,15.343 0.375,0.714 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#767C8B" points="0.375,0.507 0.422,0.468 12.406,15.343 12.285,15.343 0.375,0.558 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#747B8A" points="0.422,0.468 0.5,0.405 12.531,15.343 12.406,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#737A89" points="0.5,0.405 0.539,0.374 0.594,0.374 12.652,15.343 12.531,15.343 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#727989" points="0.719,0.374 12.773,15.343 12.652,15.343 0.594,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#717888" points="0.84,0.374 12.898,15.343 12.773,15.343 0.719,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#707786" points="0.965,0.374 13.023,15.343 12.898,15.343 0.84,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6F7686" points="1.086,0.374 13.145,15.343 13.023,15.343 0.965,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7585" points="1.211,0.374 13.266,15.343 13.145,15.343 1.086,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6D7584" points="1.332,0.374 13.391,15.343 13.266,15.343 1.211,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6C7383" points="1.457,0.374 13.512,15.343 13.391,15.343 1.332,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6B7383" points="1.578,0.374 13.637,15.343 13.512,15.343 1.457,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#6A7281" points="1.703,0.374 13.758,15.343 13.637,15.343 1.578,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697181" points="1.824,0.374 13.883,15.343 13.758,15.343 1.703,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#697080" points="1.945,0.374 14.004,15.343 13.883,15.343 1.824,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#686F7F" points="2.07,0.374 14.129,15.343 14.004,15.343 1.945,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#676E7E" points="2.195,0.374 14.25,15.343 14.129,15.343 2.07,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#656D7D" points="2.316,0.374 14.375,15.343 14.25,15.343 2.195,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7D" points="2.438,0.374 14.496,15.343 14.375,15.343 2.316,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#646C7C" points="2.562,0.374 14.617,15.343 14.496,15.343 2.438,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#636B7C" points="2.684,0.374 14.742,15.343 14.617,15.343 2.562,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#626B7B" points="2.805,0.374 14.867,15.343 14.742,15.343 2.684,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#616A7A" points="2.93,0.374 14.988,15.343 14.867,15.343 2.805,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#606979" points="3.055,0.374 15.109,15.343 14.988,15.343 2.93,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="3.176,0.374 15.215,15.319 15.18,15.343 15.109,15.343 3.055,0.374
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#5F6878" points="3.297,0.374 15.289,15.257 15.215,15.319 3.176,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5E6777" points="3.422,0.374 15.344,15.175 15.344,15.21 15.289,15.257 3.297,0.374
"/>
<polygon clip-path="url(#XMLID_9_)" fill="#5D6676" points="3.547,0.374 15.344,15.022 15.344,15.175 3.422,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5C6576" points="3.668,0.374 15.344,14.87 15.344,15.022 3.547,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="3.789,0.374 15.344,14.718 15.344,14.87 3.668,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5B6475" points="3.914,0.374 15.344,14.565 15.344,14.718 3.789,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#5A6373" points="4.039,0.374 15.344,14.413 15.344,14.565 3.914,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#596273" points="4.16,0.374 15.344,14.261 15.344,14.413 4.039,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#586172" points="4.281,0.374 15.344,14.108 15.344,14.261 4.16,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#576172" points="4.406,0.374 15.344,13.952 15.344,14.108 4.281,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566071" points="4.527,0.374 15.344,13.804 15.344,13.952 4.406,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#566070" points="4.652,0.374 15.344,13.647 15.344,13.804 4.527,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#555F70" points="4.773,0.374 15.344,13.495 15.344,13.647 4.652,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#545E6F" points="4.898,0.374 15.344,13.343 15.344,13.495 4.773,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535E6F" points="5.02,0.374 15.344,13.19 15.344,13.343 4.898,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#535D6E" points="5.145,0.374 15.344,13.038 15.344,13.19 5.02,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#525C6D" points="5.266,0.374 15.344,12.886 15.344,13.038 5.145,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#515C6D" points="5.391,0.374 15.344,12.733 15.344,12.886 5.266,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="5.512,0.374 15.344,12.581 15.344,12.733 5.391,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505B6C" points="5.633,0.374 15.344,12.429 15.344,12.581 5.512,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#505A6B" points="5.758,0.374 15.344,12.276 15.344,12.429 5.633,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4F596A" points="5.883,0.374 15.344,12.124 15.344,12.276 5.758,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4E596A" points="6.004,0.374 15.344,11.972 15.344,12.124 5.883,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4D5869" points="6.125,0.374 15.344,11.819 15.344,11.972 6.004,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5869" points="6.25,0.374 15.344,11.667 15.344,11.819 6.125,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4C5768" points="6.371,0.374 15.344,11.515 15.344,11.667 6.25,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5768" points="6.496,0.374 15.344,11.358 15.344,11.515 6.371,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4B5667" points="6.617,0.374 15.344,11.21 15.344,11.358 6.496,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#4A5567" points="6.742,0.374 15.344,11.054 15.344,11.21 6.617,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#495566" points="6.863,0.374 15.344,10.901 15.344,11.054 6.742,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485566" points="6.984,0.374 15.344,10.749 15.344,10.901 6.863,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#485466" points="7.109,0.374 15.344,10.597 15.344,10.749 6.984,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="7.23,0.374 15.344,10.444 15.344,10.597 7.109,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#475365" points="7.355,0.374 15.344,10.292 15.344,10.444 7.23,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#465264" points="7.477,0.374 15.344,10.14 15.344,10.292 7.355,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#455264" points="7.602,0.374 15.344,9.987 15.344,10.14 7.477,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445263" points="7.723,0.374 15.344,9.835 15.344,9.987 7.602,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445163" points="7.848,0.374 15.344,9.683 15.344,9.835 7.723,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#445062" points="7.969,0.374 15.344,9.53 15.344,9.683 7.848,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="8.094,0.374 15.344,9.378 15.344,9.53 7.969,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#425062" points="15.344,9.226 8.215,0.374 8.094,0.374 15.344,9.378 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#424F61" points="8.336,0.374 15.344,9.073 15.344,9.226 8.215,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#414F61" points="8.461,0.374 15.344,8.921 15.344,9.073 8.336,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#404E60" points="8.586,0.374 15.344,8.769 15.344,8.921 8.461,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4E60" points="8.707,0.374 15.344,8.616 15.344,8.769 8.586,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D60" points="8.828,0.374 15.344,8.46 15.344,8.616 8.707,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3F4D5F" points="8.953,0.374 15.344,8.312 15.344,8.46 8.828,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4D5F" points="9.074,0.374 15.344,8.155 15.344,8.312 8.953,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3E4C5E" points="9.199,0.374 15.344,8.003 15.344,8.155 9.074,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="9.32,0.374 15.344,7.851 15.344,8.003 9.199,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3D4C5E" points="15.344,7.698 9.445,0.374 9.32,0.374 15.344,7.851 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.566,0.374 15.344,7.546 15.344,7.698 9.445,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.691,0.374 15.344,7.394 15.344,7.546 9.566,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3C4B5D" points="9.812,0.374 15.344,7.241 15.344,7.394 9.691,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="9.938,0.374 15.344,7.089 15.344,7.241 9.812,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3B4A5C" points="10.059,0.374 15.344,6.937 15.344,7.089 9.938,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495C" points="10.18,0.374 15.344,6.784 15.344,6.937 10.059,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#3A495B" points="10.305,0.374 15.344,6.632 15.344,6.784 10.18,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#39495B" points="10.43,0.374 15.344,6.479 15.344,6.632 10.305,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38495B" points="10.551,0.374 15.344,6.327 15.344,6.479 10.43,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485B" points="15.344,6.175 10.672,0.374 10.551,0.374 15.344,6.327 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38485A" points="10.797,0.374 15.344,6.022 15.344,6.175 10.672,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37485A" points="10.918,0.374 15.344,5.87 15.344,6.022 10.797,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#38475A" points="11.043,0.374 15.344,5.718 15.344,5.87 10.918,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#37475A" points="11.164,0.374 15.344,5.562 15.344,5.718 11.043,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#374659" points="11.289,0.374 15.344,5.409 15.344,5.562 11.164,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="11.41,0.374 15.344,5.257 15.344,5.409 11.289,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="11.531,0.374 15.344,5.104 15.344,5.257 11.41,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#364659" points="11.656,0.374 15.344,4.952 15.344,5.104 11.531,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="11.781,0.374 15.344,4.8 15.344,4.952 11.656,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354659" points="11.902,0.374 15.344,4.647 15.344,4.8 11.781,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#354658" points="12.023,0.374 15.344,4.495 15.344,4.647 11.902,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="12.148,0.374 15.344,4.343 15.344,4.495 12.023,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="12.273,0.374 15.344,4.19 15.344,4.343 12.148,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="12.395,0.374 15.344,4.038 15.344,4.19 12.273,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="12.516,0.374 15.344,3.886 15.344,4.038 12.395,0.374 "/>
<polygon clip-path="url(#XMLID_9_)" fill="#344558" points="15.344,3.886 12.516,0.374 15.344,0.374 "/>
</g>
<path fill="#AEADAE" d="M14.97,7.859c0,3.919-3.189,7.108-7.109,7.108c-3.921,0-7.11-3.189-7.11-7.108
c0-3.92,3.189-7.109,7.11-7.109C11.78,0.75,14.97,3.939,14.97,7.859z M7.86,0C3.526,0,0,3.526,0,7.859s3.526,7.858,7.86,7.858
s7.859-3.525,7.859-7.858S12.194,0,7.86,0z"/>
<path fill="#FFFFFF" d="M10.57,10.586v0.957H5.345v-1.056l0.176-0.154c0.253-0.23,0.507-0.462,0.759-0.682
C6.543,9.409,6.83,9.179,7.094,8.946c1.441-1.221,2.189-1.891,2.189-2.881c0-0.275-0.1-1.31-1.397-1.31
c-1.122,0-1.364,0.804-1.44,1.134C6.367,6.229,6.379,6.472,6.39,6.726L5.322,6.67c0-0.274,0-0.704,0.154-1.188
C5.828,4.403,6.72,3.843,7.93,3.843c1.716,0,2.42,1.078,2.42,2.178c0,1.145-0.639,2.014-2.156,3.256
C7.93,9.485,7.677,9.694,7.412,9.903c-0.109,0.1-0.67,0.572-0.803,0.683H10.57z"/>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.258 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="0.375,15.344 0.375,13.379 2.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="2.148,15.344 0.375,13.379 0.375,13.207 2.301,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="0.375,13.207 2.301,15.344 2.457,15.344 0.375,13.039 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="2.457,15.344 0.375,13.039 0.375,12.867 2.609,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="2.609,15.344 0.375,12.867 0.375,12.695 2.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="2.766,15.344 0.375,12.695 0.375,12.523 2.918,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="2.918,15.344 0.375,12.523 0.375,12.352 3.07,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="3.07,15.344 0.375,12.352 0.375,12.184 3.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="3.227,15.344 0.375,12.184 0.375,12.012 3.379,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="3.379,15.344 0.375,12.012 0.375,11.844 3.531,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="3.531,15.344 0.375,11.844 0.375,11.672 3.688,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="3.688,15.344 0.375,11.672 0.375,11.5 3.844,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="3.844,15.344 0.375,11.5 0.375,11.328 3.996,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="3.996,15.344 0.375,11.328 0.375,11.16 4.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="4.148,15.344 0.375,11.16 0.375,10.988 4.305,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="4.305,15.344 0.375,10.988 0.375,10.816 4.457,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="0.375,10.816 4.457,15.344 4.613,15.344 0.375,10.648 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="4.613,15.344 0.375,10.648 0.375,10.477 4.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="4.766,15.344 0.375,10.477 0.375,10.305 4.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="4.922,15.344 0.375,10.305 0.375,10.133 5.074,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="5.074,15.344 0.375,10.133 0.375,9.965 5.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="5.227,15.344 0.375,9.965 0.375,9.797 5.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="5.383,15.344 0.375,9.797 0.375,9.625 5.535,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="5.535,15.344 0.375,9.625 0.375,9.453 5.691,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="0.375,9.453 5.691,15.344 5.844,15.344 0.375,9.281 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="5.844,15.344 0.375,9.281 0.375,9.109 6,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="6,15.344 0.375,9.109 0.375,8.941 6.152,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="0.375,8.941 6.152,15.344 6.305,15.344 0.375,8.77 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="0.375,8.77 6.305,15.344 6.461,15.344 0.375,8.602 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="6.461,15.344 0.375,8.602 0.375,8.43 6.613,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="6.613,15.344 0.375,8.43 0.375,8.258 6.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="6.77,15.344 0.375,8.258 0.375,8.086 6.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="6.922,15.344 0.375,8.086 0.375,7.914 7.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="7.078,15.344 0.375,7.914 0.375,7.746 7.23,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="7.23,15.344 0.375,7.746 0.375,7.574 7.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="7.383,15.344 0.375,7.574 0.375,7.406 7.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="7.539,15.344 0.375,7.406 0.375,7.234 7.691,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="7.691,15.344 0.375,7.234 0.375,7.062 7.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="7.848,15.344 0.375,7.062 0.375,6.891 8,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="8,15.344 0.375,6.891 0.375,6.723 8.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="0.375,6.723 8.156,15.344 8.309,15.344 0.375,6.551 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="8.309,15.344 0.375,6.551 0.375,6.383 8.461,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="8.461,15.344 0.375,6.383 0.375,6.211 8.617,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="8.617,15.344 0.375,6.211 0.375,6.039 8.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="8.77,15.344 0.375,6.039 0.375,5.867 8.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="8.926,15.344 0.375,5.867 0.375,5.695 9.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="9.078,15.344 0.375,5.695 0.375,5.527 9.234,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="0.375,5.527 9.234,15.344 9.387,15.344 0.375,5.355 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="9.387,15.344 0.375,5.355 0.375,5.188 9.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="9.539,15.344 0.375,5.188 0.375,5.016 9.695,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="9.695,15.344 0.375,5.016 0.375,4.844 9.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="9.848,15.344 0.375,4.844 0.375,4.676 10,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="10,15.344 0.375,4.676 0.375,4.504 10.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="10.156,15.344 0.375,4.504 0.375,4.332 10.312,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="0.375,4.332 10.312,15.344 10.465,15.344 0.375,4.164 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="10.465,15.344 0.375,4.164 0.375,3.992 10.617,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="0.375,3.992 10.617,15.344 10.773,15.344 0.375,3.82 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="10.773,15.344 0.375,3.82 0.375,3.648 10.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="10.926,15.344 0.375,3.648 0.375,3.477 11.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="11.082,15.344 0.375,3.477 0.375,3.309 11.234,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="11.234,15.344 0.375,3.309 0.375,3.137 11.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="11.391,15.344 0.375,3.137 0.375,2.969 11.543,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="11.543,15.344 0.375,2.969 0.375,2.797 11.695,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="0.375,2.797 11.695,15.344 11.852,15.344 0.375,2.625 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="11.852,15.344 0.375,2.625 0.375,2.453 12.004,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="12.004,15.344 0.375,2.453 0.375,2.285 12.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="12.156,15.344 0.375,2.285 0.375,2.113 12.312,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="0.375,2.113 12.312,15.344 12.469,15.344 0.375,1.941 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="12.469,15.344 0.375,1.941 0.375,1.773 12.621,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="12.621,15.344 0.375,1.773 0.375,1.602 12.773,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="12.773,15.344 0.375,1.602 0.375,1.43 12.93,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="12.93,15.344 0.375,1.43 0.375,1.262 13.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="13.082,15.344 0.375,1.262 0.375,1.09 13.238,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="13.238,15.344 0.375,1.09 0.375,0.918 13.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="13.391,15.344 0.375,0.918 0.375,0.75 13.547,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="13.699,15.344 13.547,15.344 0.375,0.75 0.375,0.703 0.438,0.648 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="13.852,15.344 13.699,15.344 0.438,0.648 0.523,0.57 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="14.008,15.344 13.852,15.344 0.523,0.57 0.609,0.492 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="14.16,15.344 14.008,15.344 0.609,0.492 0.691,0.418 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="0.809,0.375 14.312,15.344 14.16,15.344 0.691,0.418 0.738,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="14.312,15.344 0.809,0.375 0.961,0.375 14.469,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="14.469,15.344 0.961,0.375 1.117,0.375 14.625,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="14.625,15.344 1.117,0.375 1.27,0.375 14.777,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="14.777,15.344 1.27,0.375 1.426,0.375 14.93,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="14.98,15.344 14.93,15.344 1.426,0.375 1.578,0.375 15.039,15.289 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="15.039,15.289 1.578,0.375 1.734,0.375 15.125,15.215 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="15.125,15.215 1.734,0.375 1.887,0.375 15.207,15.137 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="2.039,0.375 1.887,0.375 15.207,15.137 15.293,15.062 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.344,15.016 15.293,15.062 2.039,0.375 2.195,0.375 15.344,14.945 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="15.344,14.945 2.195,0.375 2.348,0.375 15.344,14.777 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="15.344,14.777 2.348,0.375 2.5,0.375 15.344,14.605 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="15.344,14.605 2.5,0.375 2.656,0.375 15.344,14.434 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="15.344,14.434 2.656,0.375 2.812,0.375 15.344,14.266 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="15.344,14.266 2.812,0.375 2.965,0.375 15.344,14.094 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="15.344,14.094 2.965,0.375 3.117,0.375 15.344,13.922 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="15.344,13.922 3.117,0.375 3.273,0.375 15.344,13.75 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="3.273,0.375 15.344,13.75 15.344,13.582 3.426,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="15.344,13.582 3.426,0.375 3.582,0.375 15.344,13.41 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="15.344,13.41 3.582,0.375 3.734,0.375 15.344,13.238 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="3.734,0.375 15.344,13.238 15.344,13.07 3.891,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="15.344,13.07 3.891,0.375 4.043,0.375 15.344,12.898 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="4.043,0.375 15.344,12.898 15.344,12.727 4.195,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="15.344,12.727 4.195,0.375 4.352,0.375 15.344,12.559 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="15.344,12.559 4.352,0.375 4.504,0.375 15.344,12.387 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="15.344,12.387 4.504,0.375 4.656,0.375 15.344,12.219 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="15.344,12.219 4.656,0.375 4.812,0.375 15.344,12.047 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="15.344,12.047 4.812,0.375 4.969,0.375 15.344,11.875 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="15.344,11.875 4.969,0.375 5.121,0.375 15.344,11.703 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="15.344,11.703 5.121,0.375 5.273,0.375 15.344,11.531 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="15.344,11.531 5.273,0.375 5.43,0.375 15.344,11.363 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="15.344,11.363 5.43,0.375 5.582,0.375 15.344,11.191 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="15.344,11.191 5.582,0.375 5.738,0.375 15.344,11.023 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="15.344,11.023 5.738,0.375 5.891,0.375 15.344,10.852 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="15.344,10.852 5.891,0.375 6.047,0.375 15.344,10.68 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="15.344,10.68 6.047,0.375 6.199,0.375 15.344,10.508 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="15.344,10.508 6.199,0.375 6.352,0.375 15.344,10.34 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="15.344,10.34 6.352,0.375 6.508,0.375 15.344,10.168 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="15.344,10.168 6.508,0.375 6.66,0.375 15.344,10 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="15.344,10 6.66,0.375 6.812,0.375 15.344,9.828 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="15.344,9.828 6.812,0.375 6.969,0.375 15.344,9.656 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="15.344,9.656 6.969,0.375 7.125,0.375 15.344,9.484 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="15.344,9.484 7.125,0.375 7.277,0.375 15.344,9.312 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="15.344,9.312 7.277,0.375 7.43,0.375 15.344,9.145 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="15.344,9.145 7.43,0.375 7.586,0.375 15.344,8.973 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="7.586,0.375 15.344,8.973 15.344,8.805 7.738,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="15.344,8.805 7.738,0.375 7.895,0.375 15.344,8.633 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="15.344,8.633 7.895,0.375 8.047,0.375 15.344,8.461 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="8.047,0.375 15.344,8.461 15.344,8.289 8.203,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="15.344,8.289 8.203,0.375 8.355,0.375 15.344,8.121 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="15.344,8.121 8.355,0.375 8.508,0.375 15.344,7.949 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="15.344,7.949 8.508,0.375 8.664,0.375 15.344,7.781 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="8.664,0.375 15.344,7.781 15.344,7.609 8.816,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="15.344,7.609 8.816,0.375 8.969,0.375 15.344,7.438 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="15.344,7.438 8.969,0.375 9.125,0.375 15.344,7.266 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="15.344,7.266 9.125,0.375 9.281,0.375 15.344,7.094 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="15.344,7.094 9.281,0.375 9.434,0.375 15.344,6.926 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="15.344,6.926 9.434,0.375 9.586,0.375 15.344,6.754 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="15.344,6.754 9.586,0.375 9.742,0.375 15.344,6.586 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="15.344,6.586 9.742,0.375 9.895,0.375 15.344,6.414 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="15.344,6.414 9.895,0.375 10.047,0.375 15.344,6.242 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="15.344,6.242 10.047,0.375 10.203,0.375 15.344,6.07 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="15.344,6.07 10.203,0.375 10.355,0.375 15.344,5.898 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="15.344,5.898 10.355,0.375 10.512,0.375 15.344,5.73 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="10.512,0.375 15.344,5.73 15.344,5.559 10.664,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="15.344,5.559 10.664,0.375 10.82,0.375 15.344,5.391 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="15.344,5.391 10.82,0.375 10.973,0.375 15.344,5.219 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="15.344,5.219 10.973,0.375 11.125,0.375 15.344,5.047 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="15.344,5.047 11.125,0.375 11.281,0.375 15.344,4.875 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="15.344,4.875 11.281,0.375 11.434,0.375 15.344,4.707 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="15.344,4.707 11.434,0.375 11.59,0.375 15.344,4.535 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="11.59,0.375 15.344,4.535 15.344,4.363 11.742,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="15.344,4.363 11.742,0.375 11.898,0.375 15.344,4.195 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="15.344,4.195 11.898,0.375 12.051,0.375 15.344,4.023 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="15.344,4.023 12.051,0.375 12.203,0.375 15.344,3.852 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="15.344,3.852 12.203,0.375 12.359,0.375 15.344,3.68 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="15.344,3.68 12.359,0.375 12.512,0.375 15.344,3.512 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="15.344,3.512 12.512,0.375 12.668,0.375 15.344,3.344 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="15.344,3.344 12.668,0.375 12.82,0.375 15.344,3.172 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="15.344,3.172 12.82,0.375 12.977,0.375 15.344,3 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="15.344,3 12.977,0.375 13.129,0.375 15.344,2.828 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="15.344,2.828 13.129,0.375 13.281,0.375 15.344,2.656 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="15.344,2.656 13.281,0.375 13.438,0.375 15.344,2.488 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.344,0.375 15.344,2.488 13.438,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 10.995084,11.758878 c -0.627,0 -1.5619996,-0.144 -2.2109996,-1.199 -0.484,-0.8030004 -0.561,-1.8370004 -0.561,-2.6620004 0,-0.495 0.022,-0.968 0.11,-1.43 0.341,-1.87 1.518,-2.563 2.7389996,-2.563 0.429,0 0.857,0.089 1.231,0.275 1.122,0.605 1.485,1.947 1.485,3.575 0.001,0.726 0.001,4.0040004 -2.793,4.0040004 z m 1.727,-4.0480004 c 0,-0.814 -0.044,-2.959 -1.683,-2.959 -0.297,0 -0.594,0.088 -0.825,0.242 -0.7259996,0.495 -0.9239996,1.595 -0.9239996,2.871 0,0.804 0.044,3.0250004 1.7269996,3.0250004 1.551,0 1.705,-1.8590004 1.705,-3.1790004 z"
id="path344"
style="fill:#ffffff" />
<path
d="m 7.6479958,10.801878 v 0.957 h -5.225 v -1.056 l 0.176,-0.154 c 0.253,-0.23 0.507,-0.462 0.759,-0.6820004 0.263,-0.242 0.55,-0.472 0.814,-0.7050001 1.441,-1.221 2.189,-1.891 2.189,-2.881 0,-0.275 -0.1,-1.31 -1.397,-1.31 -1.122,0 -1.364,0.804 -1.44,1.134 -0.079,0.34 -0.067,0.583 -0.056,0.837 l -1.068,-0.056 c 0,-0.274 0,-0.704 0.154,-1.188 0.352,-1.079 1.244,-1.639 2.454,-1.639 1.716,0 2.42,1.078 2.42,2.178 0,1.145 -0.639,2.014 -2.156,3.2560001 -0.264,0.208 -0.517,0.417 -0.782,0.6260004 -0.109,0.1 -0.67,0.572 -0.803,0.683 h 3.961 z"
id="path342"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1001 B

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.258 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="0.375,13.379 2.148,15.344 0.375,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="0.375,13.379 0.375,13.207 2.301,15.344 2.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="2.301,15.344 2.457,15.344 0.375,13.039 0.375,13.207 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="0.375,13.039 0.375,12.867 2.609,15.344 2.457,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="0.375,12.867 0.375,12.695 2.766,15.344 2.609,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="0.375,12.695 0.375,12.523 2.918,15.344 2.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="0.375,12.523 0.375,12.352 3.07,15.344 2.918,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="0.375,12.352 0.375,12.184 3.227,15.344 3.07,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="0.375,12.184 0.375,12.012 3.379,15.344 3.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="0.375,12.012 0.375,11.844 3.531,15.344 3.379,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="0.375,11.844 0.375,11.672 3.688,15.344 3.531,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="0.375,11.672 0.375,11.5 3.844,15.344 3.688,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="0.375,11.5 0.375,11.328 3.996,15.344 3.844,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="0.375,11.328 0.375,11.16 4.148,15.344 3.996,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="0.375,11.16 0.375,10.988 4.305,15.344 4.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="0.375,10.988 0.375,10.816 4.457,15.344 4.305,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="4.457,15.344 4.613,15.344 0.375,10.648 0.375,10.816 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="0.375,10.648 0.375,10.477 4.766,15.344 4.613,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="0.375,10.477 0.375,10.305 4.922,15.344 4.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="0.375,10.305 0.375,10.133 5.074,15.344 4.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="0.375,10.133 0.375,9.965 5.227,15.344 5.074,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="0.375,9.965 0.375,9.797 5.383,15.344 5.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="0.375,9.797 0.375,9.625 5.535,15.344 5.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="0.375,9.625 0.375,9.453 5.691,15.344 5.535,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="5.691,15.344 5.844,15.344 0.375,9.281 0.375,9.453 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="0.375,9.281 0.375,9.109 6,15.344 5.844,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="0.375,9.109 0.375,8.941 6.152,15.344 6,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="6.152,15.344 6.305,15.344 0.375,8.77 0.375,8.941 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="6.305,15.344 6.461,15.344 0.375,8.602 0.375,8.77 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="0.375,8.602 0.375,8.43 6.613,15.344 6.461,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="0.375,8.43 0.375,8.258 6.77,15.344 6.613,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="0.375,8.258 0.375,8.086 6.922,15.344 6.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="0.375,8.086 0.375,7.914 7.078,15.344 6.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="0.375,7.914 0.375,7.746 7.23,15.344 7.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="0.375,7.746 0.375,7.574 7.383,15.344 7.23,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="0.375,7.574 0.375,7.406 7.539,15.344 7.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="0.375,7.406 0.375,7.234 7.691,15.344 7.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="0.375,7.234 0.375,7.062 7.848,15.344 7.691,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="0.375,7.062 0.375,6.891 8,15.344 7.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="0.375,6.891 0.375,6.723 8.156,15.344 8,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="8.156,15.344 8.309,15.344 0.375,6.551 0.375,6.723 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="0.375,6.551 0.375,6.383 8.461,15.344 8.309,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="0.375,6.383 0.375,6.211 8.617,15.344 8.461,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="0.375,6.211 0.375,6.039 8.77,15.344 8.617,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="0.375,6.039 0.375,5.867 8.926,15.344 8.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="0.375,5.867 0.375,5.695 9.078,15.344 8.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="0.375,5.695 0.375,5.527 9.234,15.344 9.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="9.234,15.344 9.387,15.344 0.375,5.355 0.375,5.527 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="0.375,5.355 0.375,5.188 9.539,15.344 9.387,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="0.375,5.188 0.375,5.016 9.695,15.344 9.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="0.375,5.016 0.375,4.844 9.848,15.344 9.695,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="0.375,4.844 0.375,4.676 10,15.344 9.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="0.375,4.676 0.375,4.504 10.156,15.344 10,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="0.375,4.504 0.375,4.332 10.312,15.344 10.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="10.312,15.344 10.465,15.344 0.375,4.164 0.375,4.332 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="0.375,4.164 0.375,3.992 10.617,15.344 10.465,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="10.617,15.344 10.773,15.344 0.375,3.82 0.375,3.992 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="0.375,3.82 0.375,3.648 10.926,15.344 10.773,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="0.375,3.648 0.375,3.477 11.082,15.344 10.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="0.375,3.477 0.375,3.309 11.234,15.344 11.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="0.375,3.309 0.375,3.137 11.391,15.344 11.234,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="0.375,3.137 0.375,2.969 11.543,15.344 11.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="0.375,2.969 0.375,2.797 11.695,15.344 11.543,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="11.695,15.344 11.852,15.344 0.375,2.625 0.375,2.797 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="0.375,2.625 0.375,2.453 12.004,15.344 11.852,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="0.375,2.453 0.375,2.285 12.156,15.344 12.004,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="0.375,2.285 0.375,2.113 12.312,15.344 12.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="12.312,15.344 12.469,15.344 0.375,1.941 0.375,2.113 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="0.375,1.941 0.375,1.773 12.621,15.344 12.469,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="0.375,1.773 0.375,1.602 12.773,15.344 12.621,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="0.375,1.602 0.375,1.43 12.93,15.344 12.773,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="0.375,1.43 0.375,1.262 13.082,15.344 12.93,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="0.375,1.262 0.375,1.09 13.238,15.344 13.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="0.375,1.09 0.375,0.918 13.391,15.344 13.238,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="0.375,0.918 0.375,0.75 13.547,15.344 13.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="13.547,15.344 0.375,0.75 0.375,0.703 0.438,0.648 13.699,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="13.699,15.344 0.438,0.648 0.523,0.57 13.852,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="13.852,15.344 0.523,0.57 0.609,0.492 14.008,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="14.008,15.344 0.609,0.492 0.691,0.418 14.16,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="14.312,15.344 14.16,15.344 0.691,0.418 0.738,0.375 0.809,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="0.809,0.375 0.961,0.375 14.469,15.344 14.312,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="0.961,0.375 1.117,0.375 14.625,15.344 14.469,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="1.117,0.375 1.27,0.375 14.777,15.344 14.625,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="1.27,0.375 1.426,0.375 14.93,15.344 14.777,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="14.93,15.344 1.426,0.375 1.578,0.375 15.039,15.289 14.98,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="1.578,0.375 1.734,0.375 15.125,15.215 15.039,15.289 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="1.734,0.375 1.887,0.375 15.207,15.137 15.125,15.215 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="1.887,0.375 15.207,15.137 15.293,15.062 2.039,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.293,15.062 2.039,0.375 2.195,0.375 15.344,14.945 15.344,15.016 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="2.195,0.375 2.348,0.375 15.344,14.777 15.344,14.945 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="2.348,0.375 2.5,0.375 15.344,14.605 15.344,14.777 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="2.5,0.375 2.656,0.375 15.344,14.434 15.344,14.605 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="2.656,0.375 2.812,0.375 15.344,14.266 15.344,14.434 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="2.812,0.375 2.965,0.375 15.344,14.094 15.344,14.266 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="2.965,0.375 3.117,0.375 15.344,13.922 15.344,14.094 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="3.117,0.375 3.273,0.375 15.344,13.75 15.344,13.922 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="15.344,13.75 15.344,13.582 3.426,0.375 3.273,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="3.426,0.375 3.582,0.375 15.344,13.41 15.344,13.582 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="3.582,0.375 3.734,0.375 15.344,13.238 15.344,13.41 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="15.344,13.238 15.344,13.07 3.891,0.375 3.734,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="3.891,0.375 4.043,0.375 15.344,12.898 15.344,13.07 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="15.344,12.898 15.344,12.727 4.195,0.375 4.043,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="4.195,0.375 4.352,0.375 15.344,12.559 15.344,12.727 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="4.352,0.375 4.504,0.375 15.344,12.387 15.344,12.559 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="4.504,0.375 4.656,0.375 15.344,12.219 15.344,12.387 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="4.656,0.375 4.812,0.375 15.344,12.047 15.344,12.219 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="4.812,0.375 4.969,0.375 15.344,11.875 15.344,12.047 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="4.969,0.375 5.121,0.375 15.344,11.703 15.344,11.875 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="5.121,0.375 5.273,0.375 15.344,11.531 15.344,11.703 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="5.273,0.375 5.43,0.375 15.344,11.363 15.344,11.531 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="5.43,0.375 5.582,0.375 15.344,11.191 15.344,11.363 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="5.582,0.375 5.738,0.375 15.344,11.023 15.344,11.191 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="5.738,0.375 5.891,0.375 15.344,10.852 15.344,11.023 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="5.891,0.375 6.047,0.375 15.344,10.68 15.344,10.852 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="6.047,0.375 6.199,0.375 15.344,10.508 15.344,10.68 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="6.199,0.375 6.352,0.375 15.344,10.34 15.344,10.508 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="6.352,0.375 6.508,0.375 15.344,10.168 15.344,10.34 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="6.508,0.375 6.66,0.375 15.344,10 15.344,10.168 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="6.66,0.375 6.812,0.375 15.344,9.828 15.344,10 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="6.812,0.375 6.969,0.375 15.344,9.656 15.344,9.828 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="6.969,0.375 7.125,0.375 15.344,9.484 15.344,9.656 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="7.125,0.375 7.277,0.375 15.344,9.312 15.344,9.484 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="7.277,0.375 7.43,0.375 15.344,9.145 15.344,9.312 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="7.43,0.375 7.586,0.375 15.344,8.973 15.344,9.145 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="15.344,8.973 15.344,8.805 7.738,0.375 7.586,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="7.738,0.375 7.895,0.375 15.344,8.633 15.344,8.805 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="7.895,0.375 8.047,0.375 15.344,8.461 15.344,8.633 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="15.344,8.461 15.344,8.289 8.203,0.375 8.047,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="8.203,0.375 8.355,0.375 15.344,8.121 15.344,8.289 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="8.355,0.375 8.508,0.375 15.344,7.949 15.344,8.121 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="8.508,0.375 8.664,0.375 15.344,7.781 15.344,7.949 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="15.344,7.781 15.344,7.609 8.816,0.375 8.664,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="8.816,0.375 8.969,0.375 15.344,7.438 15.344,7.609 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="8.969,0.375 9.125,0.375 15.344,7.266 15.344,7.438 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="9.125,0.375 9.281,0.375 15.344,7.094 15.344,7.266 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="9.281,0.375 9.434,0.375 15.344,6.926 15.344,7.094 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="9.434,0.375 9.586,0.375 15.344,6.754 15.344,6.926 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="9.586,0.375 9.742,0.375 15.344,6.586 15.344,6.754 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="9.742,0.375 9.895,0.375 15.344,6.414 15.344,6.586 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="9.895,0.375 10.047,0.375 15.344,6.242 15.344,6.414 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="10.047,0.375 10.203,0.375 15.344,6.07 15.344,6.242 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="10.203,0.375 10.355,0.375 15.344,5.898 15.344,6.07 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="10.355,0.375 10.512,0.375 15.344,5.73 15.344,5.898 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="15.344,5.73 15.344,5.559 10.664,0.375 10.512,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="10.664,0.375 10.82,0.375 15.344,5.391 15.344,5.559 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="10.82,0.375 10.973,0.375 15.344,5.219 15.344,5.391 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="10.973,0.375 11.125,0.375 15.344,5.047 15.344,5.219 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="11.125,0.375 11.281,0.375 15.344,4.875 15.344,5.047 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="11.281,0.375 11.434,0.375 15.344,4.707 15.344,4.875 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="11.434,0.375 11.59,0.375 15.344,4.535 15.344,4.707 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="15.344,4.535 15.344,4.363 11.742,0.375 11.59,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="11.742,0.375 11.898,0.375 15.344,4.195 15.344,4.363 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="11.898,0.375 12.051,0.375 15.344,4.023 15.344,4.195 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="12.051,0.375 12.203,0.375 15.344,3.852 15.344,4.023 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="12.203,0.375 12.359,0.375 15.344,3.68 15.344,3.852 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="12.359,0.375 12.512,0.375 15.344,3.512 15.344,3.68 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="12.512,0.375 12.668,0.375 15.344,3.344 15.344,3.512 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="12.668,0.375 12.82,0.375 15.344,3.172 15.344,3.344 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="12.82,0.375 12.977,0.375 15.344,3 15.344,3.172 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="12.977,0.375 13.129,0.375 15.344,2.828 15.344,3 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="13.129,0.375 13.281,0.375 15.344,2.656 15.344,2.828 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="13.281,0.375 13.438,0.375 15.344,2.488 15.344,2.656 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.344,2.488 13.438,0.375 15.344,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 7.6479958,10.801878 v 0.957 h -5.225 v -1.056 l 0.176,-0.154 c 0.253,-0.23 0.507,-0.462 0.759,-0.6820004 0.263,-0.242 0.55,-0.472 0.814,-0.7050001 1.441,-1.221 2.189,-1.891 2.189,-2.881 0,-0.275 -0.1,-1.31 -1.397,-1.31 -1.122,0 -1.364,0.804 -1.44,1.134 -0.079,0.34 -0.067,0.583 -0.056,0.837 l -1.068,-0.056 c 0,-0.274 0,-0.704 0.154,-1.188 0.352,-1.079 1.244,-1.639 2.454,-1.639 1.716,0 2.42,1.078 2.42,2.178 0,1.145 -0.639,2.014 -2.156,3.2560001 -0.264,0.208 -0.517,0.417 -0.782,0.6260004 -0.109,0.1 -0.67,0.572 -0.803,0.683 h 3.961 z"
id="path342"
style="fill:#ffffff" /><path
d="M 10.955393,4.1578767 V 11.758878 H 9.9103925 V 6.3578767 H 8.1613924 v -0.759 c 0.4830001,-0.011 1.7160001,-0.044 1.9910006,-1.441 h 0.803 z"
id="path342-5"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.258 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="0.375,13.379 2.148,15.344 0.375,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="0.375,13.379 0.375,13.207 2.301,15.344 2.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="2.301,15.344 2.457,15.344 0.375,13.039 0.375,13.207 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="0.375,13.039 0.375,12.867 2.609,15.344 2.457,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="0.375,12.867 0.375,12.695 2.766,15.344 2.609,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="0.375,12.695 0.375,12.523 2.918,15.344 2.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="0.375,12.523 0.375,12.352 3.07,15.344 2.918,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="0.375,12.352 0.375,12.184 3.227,15.344 3.07,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="0.375,12.184 0.375,12.012 3.379,15.344 3.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="0.375,12.012 0.375,11.844 3.531,15.344 3.379,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="0.375,11.844 0.375,11.672 3.688,15.344 3.531,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="0.375,11.672 0.375,11.5 3.844,15.344 3.688,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="0.375,11.5 0.375,11.328 3.996,15.344 3.844,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="0.375,11.328 0.375,11.16 4.148,15.344 3.996,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="0.375,11.16 0.375,10.988 4.305,15.344 4.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="0.375,10.988 0.375,10.816 4.457,15.344 4.305,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="4.457,15.344 4.613,15.344 0.375,10.648 0.375,10.816 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="0.375,10.648 0.375,10.477 4.766,15.344 4.613,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="0.375,10.477 0.375,10.305 4.922,15.344 4.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="0.375,10.305 0.375,10.133 5.074,15.344 4.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="0.375,10.133 0.375,9.965 5.227,15.344 5.074,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="0.375,9.965 0.375,9.797 5.383,15.344 5.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="0.375,9.797 0.375,9.625 5.535,15.344 5.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="0.375,9.625 0.375,9.453 5.691,15.344 5.535,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="5.691,15.344 5.844,15.344 0.375,9.281 0.375,9.453 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="0.375,9.281 0.375,9.109 6,15.344 5.844,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="0.375,9.109 0.375,8.941 6.152,15.344 6,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="6.152,15.344 6.305,15.344 0.375,8.77 0.375,8.941 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="6.305,15.344 6.461,15.344 0.375,8.602 0.375,8.77 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="0.375,8.602 0.375,8.43 6.613,15.344 6.461,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="0.375,8.43 0.375,8.258 6.77,15.344 6.613,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="0.375,8.258 0.375,8.086 6.922,15.344 6.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="0.375,8.086 0.375,7.914 7.078,15.344 6.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="0.375,7.914 0.375,7.746 7.23,15.344 7.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="0.375,7.746 0.375,7.574 7.383,15.344 7.23,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="0.375,7.574 0.375,7.406 7.539,15.344 7.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="0.375,7.406 0.375,7.234 7.691,15.344 7.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="0.375,7.234 0.375,7.062 7.848,15.344 7.691,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="0.375,7.062 0.375,6.891 8,15.344 7.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="0.375,6.891 0.375,6.723 8.156,15.344 8,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="8.156,15.344 8.309,15.344 0.375,6.551 0.375,6.723 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="0.375,6.551 0.375,6.383 8.461,15.344 8.309,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="0.375,6.383 0.375,6.211 8.617,15.344 8.461,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="0.375,6.211 0.375,6.039 8.77,15.344 8.617,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="0.375,6.039 0.375,5.867 8.926,15.344 8.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="0.375,5.867 0.375,5.695 9.078,15.344 8.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="0.375,5.695 0.375,5.527 9.234,15.344 9.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="9.234,15.344 9.387,15.344 0.375,5.355 0.375,5.527 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="0.375,5.355 0.375,5.188 9.539,15.344 9.387,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="0.375,5.188 0.375,5.016 9.695,15.344 9.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="0.375,5.016 0.375,4.844 9.848,15.344 9.695,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="0.375,4.844 0.375,4.676 10,15.344 9.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="0.375,4.676 0.375,4.504 10.156,15.344 10,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="0.375,4.504 0.375,4.332 10.312,15.344 10.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="10.312,15.344 10.465,15.344 0.375,4.164 0.375,4.332 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="0.375,4.164 0.375,3.992 10.617,15.344 10.465,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="10.617,15.344 10.773,15.344 0.375,3.82 0.375,3.992 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="0.375,3.82 0.375,3.648 10.926,15.344 10.773,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="0.375,3.648 0.375,3.477 11.082,15.344 10.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="0.375,3.477 0.375,3.309 11.234,15.344 11.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="0.375,3.309 0.375,3.137 11.391,15.344 11.234,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="0.375,3.137 0.375,2.969 11.543,15.344 11.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="0.375,2.969 0.375,2.797 11.695,15.344 11.543,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="11.695,15.344 11.852,15.344 0.375,2.625 0.375,2.797 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="0.375,2.625 0.375,2.453 12.004,15.344 11.852,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="0.375,2.453 0.375,2.285 12.156,15.344 12.004,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="0.375,2.285 0.375,2.113 12.312,15.344 12.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="12.312,15.344 12.469,15.344 0.375,1.941 0.375,2.113 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="0.375,1.941 0.375,1.773 12.621,15.344 12.469,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="0.375,1.773 0.375,1.602 12.773,15.344 12.621,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="0.375,1.602 0.375,1.43 12.93,15.344 12.773,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="0.375,1.43 0.375,1.262 13.082,15.344 12.93,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="0.375,1.262 0.375,1.09 13.238,15.344 13.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="0.375,1.09 0.375,0.918 13.391,15.344 13.238,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="0.375,0.918 0.375,0.75 13.547,15.344 13.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="13.547,15.344 0.375,0.75 0.375,0.703 0.438,0.648 13.699,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="13.699,15.344 0.438,0.648 0.523,0.57 13.852,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="13.852,15.344 0.523,0.57 0.609,0.492 14.008,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="14.008,15.344 0.609,0.492 0.691,0.418 14.16,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="14.312,15.344 14.16,15.344 0.691,0.418 0.738,0.375 0.809,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="0.809,0.375 0.961,0.375 14.469,15.344 14.312,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="0.961,0.375 1.117,0.375 14.625,15.344 14.469,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="1.117,0.375 1.27,0.375 14.777,15.344 14.625,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="1.27,0.375 1.426,0.375 14.93,15.344 14.777,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="14.93,15.344 1.426,0.375 1.578,0.375 15.039,15.289 14.98,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="1.578,0.375 1.734,0.375 15.125,15.215 15.039,15.289 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="1.734,0.375 1.887,0.375 15.207,15.137 15.125,15.215 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="1.887,0.375 15.207,15.137 15.293,15.062 2.039,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.293,15.062 2.039,0.375 2.195,0.375 15.344,14.945 15.344,15.016 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="2.195,0.375 2.348,0.375 15.344,14.777 15.344,14.945 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="2.348,0.375 2.5,0.375 15.344,14.605 15.344,14.777 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="2.5,0.375 2.656,0.375 15.344,14.434 15.344,14.605 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="2.656,0.375 2.812,0.375 15.344,14.266 15.344,14.434 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="2.812,0.375 2.965,0.375 15.344,14.094 15.344,14.266 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="2.965,0.375 3.117,0.375 15.344,13.922 15.344,14.094 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="3.117,0.375 3.273,0.375 15.344,13.75 15.344,13.922 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="15.344,13.75 15.344,13.582 3.426,0.375 3.273,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="3.426,0.375 3.582,0.375 15.344,13.41 15.344,13.582 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="3.582,0.375 3.734,0.375 15.344,13.238 15.344,13.41 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="15.344,13.238 15.344,13.07 3.891,0.375 3.734,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="3.891,0.375 4.043,0.375 15.344,12.898 15.344,13.07 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="15.344,12.898 15.344,12.727 4.195,0.375 4.043,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="4.195,0.375 4.352,0.375 15.344,12.559 15.344,12.727 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="4.352,0.375 4.504,0.375 15.344,12.387 15.344,12.559 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="4.504,0.375 4.656,0.375 15.344,12.219 15.344,12.387 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="4.656,0.375 4.812,0.375 15.344,12.047 15.344,12.219 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="4.812,0.375 4.969,0.375 15.344,11.875 15.344,12.047 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="4.969,0.375 5.121,0.375 15.344,11.703 15.344,11.875 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="5.121,0.375 5.273,0.375 15.344,11.531 15.344,11.703 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="5.273,0.375 5.43,0.375 15.344,11.363 15.344,11.531 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="5.43,0.375 5.582,0.375 15.344,11.191 15.344,11.363 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="5.582,0.375 5.738,0.375 15.344,11.023 15.344,11.191 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="5.738,0.375 5.891,0.375 15.344,10.852 15.344,11.023 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="5.891,0.375 6.047,0.375 15.344,10.68 15.344,10.852 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="6.047,0.375 6.199,0.375 15.344,10.508 15.344,10.68 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="6.199,0.375 6.352,0.375 15.344,10.34 15.344,10.508 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="6.352,0.375 6.508,0.375 15.344,10.168 15.344,10.34 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="6.508,0.375 6.66,0.375 15.344,10 15.344,10.168 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="6.66,0.375 6.812,0.375 15.344,9.828 15.344,10 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="6.812,0.375 6.969,0.375 15.344,9.656 15.344,9.828 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="6.969,0.375 7.125,0.375 15.344,9.484 15.344,9.656 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="7.125,0.375 7.277,0.375 15.344,9.312 15.344,9.484 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="7.277,0.375 7.43,0.375 15.344,9.145 15.344,9.312 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="7.43,0.375 7.586,0.375 15.344,8.973 15.344,9.145 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="15.344,8.973 15.344,8.805 7.738,0.375 7.586,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="7.738,0.375 7.895,0.375 15.344,8.633 15.344,8.805 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="7.895,0.375 8.047,0.375 15.344,8.461 15.344,8.633 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="15.344,8.461 15.344,8.289 8.203,0.375 8.047,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="8.203,0.375 8.355,0.375 15.344,8.121 15.344,8.289 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="8.355,0.375 8.508,0.375 15.344,7.949 15.344,8.121 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="8.508,0.375 8.664,0.375 15.344,7.781 15.344,7.949 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="15.344,7.781 15.344,7.609 8.816,0.375 8.664,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="8.816,0.375 8.969,0.375 15.344,7.438 15.344,7.609 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="8.969,0.375 9.125,0.375 15.344,7.266 15.344,7.438 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="9.125,0.375 9.281,0.375 15.344,7.094 15.344,7.266 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="9.281,0.375 9.434,0.375 15.344,6.926 15.344,7.094 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="9.434,0.375 9.586,0.375 15.344,6.754 15.344,6.926 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="9.586,0.375 9.742,0.375 15.344,6.586 15.344,6.754 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="9.742,0.375 9.895,0.375 15.344,6.414 15.344,6.586 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="9.895,0.375 10.047,0.375 15.344,6.242 15.344,6.414 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="10.047,0.375 10.203,0.375 15.344,6.07 15.344,6.242 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="10.203,0.375 10.355,0.375 15.344,5.898 15.344,6.07 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="10.355,0.375 10.512,0.375 15.344,5.73 15.344,5.898 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="15.344,5.73 15.344,5.559 10.664,0.375 10.512,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="10.664,0.375 10.82,0.375 15.344,5.391 15.344,5.559 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="10.82,0.375 10.973,0.375 15.344,5.219 15.344,5.391 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="10.973,0.375 11.125,0.375 15.344,5.047 15.344,5.219 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="11.125,0.375 11.281,0.375 15.344,4.875 15.344,5.047 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="11.281,0.375 11.434,0.375 15.344,4.707 15.344,4.875 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="11.434,0.375 11.59,0.375 15.344,4.535 15.344,4.707 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="15.344,4.535 15.344,4.363 11.742,0.375 11.59,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="11.742,0.375 11.898,0.375 15.344,4.195 15.344,4.363 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="11.898,0.375 12.051,0.375 15.344,4.023 15.344,4.195 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="12.051,0.375 12.203,0.375 15.344,3.852 15.344,4.023 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="12.203,0.375 12.359,0.375 15.344,3.68 15.344,3.852 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="12.359,0.375 12.512,0.375 15.344,3.512 15.344,3.68 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="12.512,0.375 12.668,0.375 15.344,3.344 15.344,3.512 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="12.668,0.375 12.82,0.375 15.344,3.172 15.344,3.344 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="12.82,0.375 12.977,0.375 15.344,3 15.344,3.172 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="12.977,0.375 13.129,0.375 15.344,2.828 15.344,3 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="13.129,0.375 13.281,0.375 15.344,2.656 15.344,2.828 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="13.281,0.375 13.438,0.375 15.344,2.488 15.344,2.656 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.344,2.488 13.438,0.375 15.344,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 7.6479958,10.801878 v 0.957 h -5.225 v -1.056 l 0.176,-0.154 c 0.253,-0.23 0.507,-0.462 0.759,-0.6820004 0.263,-0.242 0.55,-0.472 0.814,-0.7050001 1.441,-1.221 2.189,-1.891 2.189,-2.881 0,-0.275 -0.1,-1.31 -1.397,-1.31 -1.122,0 -1.364,0.804 -1.44,1.134 -0.079,0.34 -0.067,0.583 -0.056,0.837 l -1.068,-0.056 c 0,-0.274 0,-0.704 0.154,-1.188 0.352,-1.079 1.244,-1.639 2.454,-1.639 1.716,0 2.42,1.078 2.42,2.178 0,1.145 -0.639,2.014 -2.156,3.2560001 -0.264,0.208 -0.517,0.417 -0.782,0.6260004 -0.109,0.1 -0.67,0.572 -0.803,0.683 h 3.961 z"
id="path342"
style="fill:#ffffff" /><path
d="m 13.386392,10.801878 v 0.957 H 8.1613924 v -1.056 l 0.176,-0.154 c 0.253,-0.23 0.507,-0.462 0.759,-0.6820004 0.263,-0.2419999 0.55,-0.4719999 0.814,-0.7049999 1.4409996,-1.221 2.1889996,-1.891 2.1889996,-2.881 0,-0.275 -0.1,-1.31 -1.397,-1.31 -1.1219996,0 -1.3639996,0.804 -1.4399996,1.134 -0.079,0.34 -0.067,0.583 -0.056,0.837 l -1.068,-0.056 c 0,-0.274 0,-0.704 0.154,-1.188 0.352,-1.079 1.244,-1.639 2.4539996,-1.639 1.716,0 2.42,1.078 2.42,2.178 0,1.145 -0.639,2.014 -2.156,3.256 -0.264,0.2079999 -0.517,0.4169999 -0.782,0.6260003 -0.109,0.1 -0.6699996,0.572 -0.8029996,0.683 h 3.9609996 z"
id="path342-8"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.258 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="0.375,13.379 2.148,15.344 0.375,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="0.375,13.379 0.375,13.207 2.301,15.344 2.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="2.301,15.344 2.457,15.344 0.375,13.039 0.375,13.207 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="0.375,13.039 0.375,12.867 2.609,15.344 2.457,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="0.375,12.867 0.375,12.695 2.766,15.344 2.609,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="0.375,12.695 0.375,12.523 2.918,15.344 2.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="0.375,12.523 0.375,12.352 3.07,15.344 2.918,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="0.375,12.352 0.375,12.184 3.227,15.344 3.07,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="0.375,12.184 0.375,12.012 3.379,15.344 3.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="0.375,12.012 0.375,11.844 3.531,15.344 3.379,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="0.375,11.844 0.375,11.672 3.688,15.344 3.531,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="0.375,11.672 0.375,11.5 3.844,15.344 3.688,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="0.375,11.5 0.375,11.328 3.996,15.344 3.844,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="0.375,11.328 0.375,11.16 4.148,15.344 3.996,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="0.375,11.16 0.375,10.988 4.305,15.344 4.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="0.375,10.988 0.375,10.816 4.457,15.344 4.305,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="4.457,15.344 4.613,15.344 0.375,10.648 0.375,10.816 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="0.375,10.648 0.375,10.477 4.766,15.344 4.613,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="0.375,10.477 0.375,10.305 4.922,15.344 4.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="0.375,10.305 0.375,10.133 5.074,15.344 4.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="0.375,10.133 0.375,9.965 5.227,15.344 5.074,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="0.375,9.965 0.375,9.797 5.383,15.344 5.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="0.375,9.797 0.375,9.625 5.535,15.344 5.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="0.375,9.625 0.375,9.453 5.691,15.344 5.535,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="5.691,15.344 5.844,15.344 0.375,9.281 0.375,9.453 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="0.375,9.281 0.375,9.109 6,15.344 5.844,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="0.375,9.109 0.375,8.941 6.152,15.344 6,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="6.152,15.344 6.305,15.344 0.375,8.77 0.375,8.941 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="6.305,15.344 6.461,15.344 0.375,8.602 0.375,8.77 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="0.375,8.602 0.375,8.43 6.613,15.344 6.461,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="0.375,8.43 0.375,8.258 6.77,15.344 6.613,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="0.375,8.258 0.375,8.086 6.922,15.344 6.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="0.375,8.086 0.375,7.914 7.078,15.344 6.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="0.375,7.914 0.375,7.746 7.23,15.344 7.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="0.375,7.746 0.375,7.574 7.383,15.344 7.23,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="0.375,7.574 0.375,7.406 7.539,15.344 7.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="0.375,7.406 0.375,7.234 7.691,15.344 7.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="0.375,7.234 0.375,7.062 7.848,15.344 7.691,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="0.375,7.062 0.375,6.891 8,15.344 7.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="0.375,6.891 0.375,6.723 8.156,15.344 8,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="8.156,15.344 8.309,15.344 0.375,6.551 0.375,6.723 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="0.375,6.551 0.375,6.383 8.461,15.344 8.309,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="0.375,6.383 0.375,6.211 8.617,15.344 8.461,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="0.375,6.211 0.375,6.039 8.77,15.344 8.617,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="0.375,6.039 0.375,5.867 8.926,15.344 8.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="0.375,5.867 0.375,5.695 9.078,15.344 8.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="0.375,5.695 0.375,5.527 9.234,15.344 9.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="9.234,15.344 9.387,15.344 0.375,5.355 0.375,5.527 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="0.375,5.355 0.375,5.188 9.539,15.344 9.387,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="0.375,5.188 0.375,5.016 9.695,15.344 9.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="0.375,5.016 0.375,4.844 9.848,15.344 9.695,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="0.375,4.844 0.375,4.676 10,15.344 9.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="0.375,4.676 0.375,4.504 10.156,15.344 10,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="0.375,4.504 0.375,4.332 10.312,15.344 10.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="10.312,15.344 10.465,15.344 0.375,4.164 0.375,4.332 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="0.375,4.164 0.375,3.992 10.617,15.344 10.465,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="10.617,15.344 10.773,15.344 0.375,3.82 0.375,3.992 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="0.375,3.82 0.375,3.648 10.926,15.344 10.773,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="0.375,3.648 0.375,3.477 11.082,15.344 10.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="0.375,3.477 0.375,3.309 11.234,15.344 11.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="0.375,3.309 0.375,3.137 11.391,15.344 11.234,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="0.375,3.137 0.375,2.969 11.543,15.344 11.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="0.375,2.969 0.375,2.797 11.695,15.344 11.543,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="11.695,15.344 11.852,15.344 0.375,2.625 0.375,2.797 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="0.375,2.625 0.375,2.453 12.004,15.344 11.852,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="0.375,2.453 0.375,2.285 12.156,15.344 12.004,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="0.375,2.285 0.375,2.113 12.312,15.344 12.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="12.312,15.344 12.469,15.344 0.375,1.941 0.375,2.113 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="0.375,1.941 0.375,1.773 12.621,15.344 12.469,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="0.375,1.773 0.375,1.602 12.773,15.344 12.621,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="0.375,1.602 0.375,1.43 12.93,15.344 12.773,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="0.375,1.43 0.375,1.262 13.082,15.344 12.93,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="0.375,1.262 0.375,1.09 13.238,15.344 13.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="0.375,1.09 0.375,0.918 13.391,15.344 13.238,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="0.375,0.918 0.375,0.75 13.547,15.344 13.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="13.547,15.344 0.375,0.75 0.375,0.703 0.438,0.648 13.699,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="13.699,15.344 0.438,0.648 0.523,0.57 13.852,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="13.852,15.344 0.523,0.57 0.609,0.492 14.008,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="14.008,15.344 0.609,0.492 0.691,0.418 14.16,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="14.312,15.344 14.16,15.344 0.691,0.418 0.738,0.375 0.809,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="0.809,0.375 0.961,0.375 14.469,15.344 14.312,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="0.961,0.375 1.117,0.375 14.625,15.344 14.469,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="1.117,0.375 1.27,0.375 14.777,15.344 14.625,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="1.27,0.375 1.426,0.375 14.93,15.344 14.777,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="14.93,15.344 1.426,0.375 1.578,0.375 15.039,15.289 14.98,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="1.578,0.375 1.734,0.375 15.125,15.215 15.039,15.289 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="1.734,0.375 1.887,0.375 15.207,15.137 15.125,15.215 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="1.887,0.375 15.207,15.137 15.293,15.062 2.039,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.293,15.062 2.039,0.375 2.195,0.375 15.344,14.945 15.344,15.016 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="2.195,0.375 2.348,0.375 15.344,14.777 15.344,14.945 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="2.348,0.375 2.5,0.375 15.344,14.605 15.344,14.777 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="2.5,0.375 2.656,0.375 15.344,14.434 15.344,14.605 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="2.656,0.375 2.812,0.375 15.344,14.266 15.344,14.434 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="2.812,0.375 2.965,0.375 15.344,14.094 15.344,14.266 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="2.965,0.375 3.117,0.375 15.344,13.922 15.344,14.094 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="3.117,0.375 3.273,0.375 15.344,13.75 15.344,13.922 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="15.344,13.75 15.344,13.582 3.426,0.375 3.273,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="3.426,0.375 3.582,0.375 15.344,13.41 15.344,13.582 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="3.582,0.375 3.734,0.375 15.344,13.238 15.344,13.41 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="15.344,13.238 15.344,13.07 3.891,0.375 3.734,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="3.891,0.375 4.043,0.375 15.344,12.898 15.344,13.07 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="15.344,12.898 15.344,12.727 4.195,0.375 4.043,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="4.195,0.375 4.352,0.375 15.344,12.559 15.344,12.727 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="4.352,0.375 4.504,0.375 15.344,12.387 15.344,12.559 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="4.504,0.375 4.656,0.375 15.344,12.219 15.344,12.387 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="4.656,0.375 4.812,0.375 15.344,12.047 15.344,12.219 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="4.812,0.375 4.969,0.375 15.344,11.875 15.344,12.047 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="4.969,0.375 5.121,0.375 15.344,11.703 15.344,11.875 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="5.121,0.375 5.273,0.375 15.344,11.531 15.344,11.703 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="5.273,0.375 5.43,0.375 15.344,11.363 15.344,11.531 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="5.43,0.375 5.582,0.375 15.344,11.191 15.344,11.363 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="5.582,0.375 5.738,0.375 15.344,11.023 15.344,11.191 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="5.738,0.375 5.891,0.375 15.344,10.852 15.344,11.023 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="5.891,0.375 6.047,0.375 15.344,10.68 15.344,10.852 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="6.047,0.375 6.199,0.375 15.344,10.508 15.344,10.68 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="6.199,0.375 6.352,0.375 15.344,10.34 15.344,10.508 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="6.352,0.375 6.508,0.375 15.344,10.168 15.344,10.34 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="6.508,0.375 6.66,0.375 15.344,10 15.344,10.168 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="6.66,0.375 6.812,0.375 15.344,9.828 15.344,10 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="6.812,0.375 6.969,0.375 15.344,9.656 15.344,9.828 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="6.969,0.375 7.125,0.375 15.344,9.484 15.344,9.656 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="7.125,0.375 7.277,0.375 15.344,9.312 15.344,9.484 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="7.277,0.375 7.43,0.375 15.344,9.145 15.344,9.312 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="7.43,0.375 7.586,0.375 15.344,8.973 15.344,9.145 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="15.344,8.973 15.344,8.805 7.738,0.375 7.586,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="7.738,0.375 7.895,0.375 15.344,8.633 15.344,8.805 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="7.895,0.375 8.047,0.375 15.344,8.461 15.344,8.633 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="15.344,8.461 15.344,8.289 8.203,0.375 8.047,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="8.203,0.375 8.355,0.375 15.344,8.121 15.344,8.289 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="8.355,0.375 8.508,0.375 15.344,7.949 15.344,8.121 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="8.508,0.375 8.664,0.375 15.344,7.781 15.344,7.949 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="15.344,7.781 15.344,7.609 8.816,0.375 8.664,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="8.816,0.375 8.969,0.375 15.344,7.438 15.344,7.609 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="8.969,0.375 9.125,0.375 15.344,7.266 15.344,7.438 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="9.125,0.375 9.281,0.375 15.344,7.094 15.344,7.266 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="9.281,0.375 9.434,0.375 15.344,6.926 15.344,7.094 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="9.434,0.375 9.586,0.375 15.344,6.754 15.344,6.926 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="9.586,0.375 9.742,0.375 15.344,6.586 15.344,6.754 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="9.742,0.375 9.895,0.375 15.344,6.414 15.344,6.586 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="9.895,0.375 10.047,0.375 15.344,6.242 15.344,6.414 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="10.047,0.375 10.203,0.375 15.344,6.07 15.344,6.242 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="10.203,0.375 10.355,0.375 15.344,5.898 15.344,6.07 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="10.355,0.375 10.512,0.375 15.344,5.73 15.344,5.898 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="15.344,5.73 15.344,5.559 10.664,0.375 10.512,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="10.664,0.375 10.82,0.375 15.344,5.391 15.344,5.559 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="10.82,0.375 10.973,0.375 15.344,5.219 15.344,5.391 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="10.973,0.375 11.125,0.375 15.344,5.047 15.344,5.219 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="11.125,0.375 11.281,0.375 15.344,4.875 15.344,5.047 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="11.281,0.375 11.434,0.375 15.344,4.707 15.344,4.875 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="11.434,0.375 11.59,0.375 15.344,4.535 15.344,4.707 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="15.344,4.535 15.344,4.363 11.742,0.375 11.59,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="11.742,0.375 11.898,0.375 15.344,4.195 15.344,4.363 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="11.898,0.375 12.051,0.375 15.344,4.023 15.344,4.195 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="12.051,0.375 12.203,0.375 15.344,3.852 15.344,4.023 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="12.203,0.375 12.359,0.375 15.344,3.68 15.344,3.852 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="12.359,0.375 12.512,0.375 15.344,3.512 15.344,3.68 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="12.512,0.375 12.668,0.375 15.344,3.344 15.344,3.512 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="12.668,0.375 12.82,0.375 15.344,3.172 15.344,3.344 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="12.82,0.375 12.977,0.375 15.344,3 15.344,3.172 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="12.977,0.375 13.129,0.375 15.344,2.828 15.344,3 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="13.129,0.375 13.281,0.375 15.344,2.656 15.344,2.828 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="13.281,0.375 13.438,0.375 15.344,2.488 15.344,2.656 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.344,2.488 13.438,0.375 15.344,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 7.6479958,10.801878 v 0.957 h -5.225 v -1.056 l 0.176,-0.154 c 0.253,-0.23 0.507,-0.462 0.759,-0.6820004 0.263,-0.242 0.55,-0.472 0.814,-0.7050001 1.441,-1.221 2.189,-1.891 2.189,-2.881 0,-0.275 -0.1,-1.31 -1.397,-1.31 -1.122,0 -1.364,0.804 -1.44,1.134 -0.079,0.34 -0.067,0.583 -0.056,0.837 l -1.068,-0.056 c 0,-0.274 0,-0.704 0.154,-1.188 0.352,-1.079 1.244,-1.639 2.454,-1.639 1.716,0 2.42,1.078 2.42,2.178 0,1.145 -0.639,2.014 -2.156,3.2560001 -0.264,0.208 -0.517,0.417 -0.782,0.6260004 -0.109,0.1 -0.67,0.572 -0.803,0.683 h 3.961 z"
id="path342"
style="fill:#ffffff" /><path
d="m 10.405393,7.3072869 c 0.418,0.011 1.034,0.033 1.408,-0.154 0.23,-0.121 0.594,-0.407 0.594,-1.001 0,-0.792 -0.615,-1.166 -1.342,-1.166 -0.539,0 -0.891,0.187 -1.0890003,0.363 -0.417,0.374 -0.473,0.957 -0.495,1.222 l -1.0110003,-0.066 c 0.066,-0.77 0.309,-1.43 0.9020003,-1.914 0.318,-0.253 0.8690003,-0.529 1.7150003,-0.529 1.662,0 2.377,1.045 2.377,2.035 0,0.462 -0.165,0.902 -0.44,1.199 -0.241,0.253 -0.506,0.374 -0.659,0.44 0.989,0.253 1.375,1.122 1.375,1.826 0,0.7040001 -0.342,1.3750001 -0.869,1.7710001 -0.309,0.252 -0.914,0.561 -1.914,0.561 -0.418,0 -1.1880003,-0.044 -1.8380003,-0.539 -0.8700003,-0.648 -0.9350003,-1.6050002 -0.9580003,-2.0560001 l 1.0350003,-0.088 c 0,0.164 0.01,0.462 0.153,0.8140001 0.396,0.945 1.2430003,0.967 1.5730003,0.967 1.716,0 1.748,-1.2870001 1.748,-1.4630001 0,-0.22 -0.043,-0.439 -0.153,-0.638 -0.362,-0.637 -1.132,-0.67 -1.617,-0.67 -0.065,0 -0.209,0 -0.495,0.011 v -0.925 z"
id="path342-8"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -0,0 +1,865 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
width="17"
height="16"
viewBox="-0.75 -0.258 17 16"
id="svg2"
xml:space="preserve">
<defs
id="defs4">
</defs>
<g
id="g6">
<defs
id="defs8">
<circle
cx="7.8590002"
cy="7.8579998"
r="7.4840002"
id="XMLID_6_" />
</defs>
<clipPath
id="XMLID_9_">
<use
id="use12"
x="0"
y="0"
width="17"
height="16"
xlink:href="#XMLID_6_" />
</clipPath>
<polygon
points="0.375,13.379 2.148,15.344 0.375,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon14"
style="fill:#cbd2d8" />
<polygon
points="0.375,13.379 0.375,13.207 2.301,15.344 2.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon16"
style="fill:#cbd2d8" />
<polygon
points="2.301,15.344 2.457,15.344 0.375,13.039 0.375,13.207 "
clip-path="url(#XMLID_9_)"
id="polygon18"
style="fill:#c9d0d5" />
<polygon
points="0.375,13.039 0.375,12.867 2.609,15.344 2.457,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon20"
style="fill:#c6cdd3" />
<polygon
points="0.375,12.867 0.375,12.695 2.766,15.344 2.609,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon22"
style="fill:#c5ccd2" />
<polygon
points="0.375,12.695 0.375,12.523 2.918,15.344 2.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon24"
style="fill:#c3c9d0" />
<polygon
points="0.375,12.523 0.375,12.352 3.07,15.344 2.918,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon26"
style="fill:#c1c8ce" />
<polygon
points="0.375,12.352 0.375,12.184 3.227,15.344 3.07,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon28"
style="fill:#bfc5cc" />
<polygon
points="0.375,12.184 0.375,12.012 3.379,15.344 3.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon30"
style="fill:#bec4cb" />
<polygon
points="0.375,12.012 0.375,11.844 3.531,15.344 3.379,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon32"
style="fill:#bbc2c9" />
<polygon
points="0.375,11.844 0.375,11.672 3.688,15.344 3.531,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon34"
style="fill:#bac0c8" />
<polygon
points="0.375,11.672 0.375,11.5 3.844,15.344 3.688,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon36"
style="fill:#b7bec6" />
<polygon
points="0.375,11.5 0.375,11.328 3.996,15.344 3.844,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon38"
style="fill:#b6bdc5" />
<polygon
points="0.375,11.328 0.375,11.16 4.148,15.344 3.996,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon40"
style="fill:#b5bbc3" />
<polygon
points="0.375,11.16 0.375,10.988 4.305,15.344 4.148,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon42"
style="fill:#b3bac2" />
<polygon
points="0.375,10.988 0.375,10.816 4.457,15.344 4.305,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon44"
style="fill:#b1b7c0" />
<polygon
points="4.457,15.344 4.613,15.344 0.375,10.648 0.375,10.816 "
clip-path="url(#XMLID_9_)"
id="polygon46"
style="fill:#b0b6bf" />
<polygon
points="0.375,10.648 0.375,10.477 4.766,15.344 4.613,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon48"
style="fill:#aeb5be" />
<polygon
points="0.375,10.477 0.375,10.305 4.922,15.344 4.766,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon50"
style="fill:#adb3bc" />
<polygon
points="0.375,10.305 0.375,10.133 5.074,15.344 4.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon52"
style="fill:#abb2bc" />
<polygon
points="0.375,10.133 0.375,9.965 5.227,15.344 5.074,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon54"
style="fill:#aab0ba" />
<polygon
points="0.375,9.965 0.375,9.797 5.383,15.344 5.227,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon56"
style="fill:#a8aeb8" />
<polygon
points="0.375,9.797 0.375,9.625 5.535,15.344 5.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon58"
style="fill:#a6adb7" />
<polygon
points="0.375,9.625 0.375,9.453 5.691,15.344 5.535,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon60"
style="fill:#a6acb6" />
<polygon
points="5.691,15.344 5.844,15.344 0.375,9.281 0.375,9.453 "
clip-path="url(#XMLID_9_)"
id="polygon62"
style="fill:#a3aab4" />
<polygon
points="0.375,9.281 0.375,9.109 6,15.344 5.844,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon64"
style="fill:#a2a8b3" />
<polygon
points="0.375,9.109 0.375,8.941 6.152,15.344 6,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon66"
style="fill:#a0a7b1" />
<polygon
points="6.152,15.344 6.305,15.344 0.375,8.77 0.375,8.941 "
clip-path="url(#XMLID_9_)"
id="polygon68"
style="fill:#9fa6b0" />
<polygon
points="6.305,15.344 6.461,15.344 0.375,8.602 0.375,8.77 "
clip-path="url(#XMLID_9_)"
id="polygon70"
style="fill:#9ea4af" />
<polygon
points="0.375,8.602 0.375,8.43 6.613,15.344 6.461,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon72"
style="fill:#9ca3ae" />
<polygon
points="0.375,8.43 0.375,8.258 6.77,15.344 6.613,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon74"
style="fill:#9ba1ad" />
<polygon
points="0.375,8.258 0.375,8.086 6.922,15.344 6.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon76"
style="fill:#9aa0ab" />
<polygon
points="0.375,8.086 0.375,7.914 7.078,15.344 6.922,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon78"
style="fill:#989faa" />
<polygon
points="0.375,7.914 0.375,7.746 7.23,15.344 7.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon80"
style="fill:#979eaa" />
<polygon
points="0.375,7.746 0.375,7.574 7.383,15.344 7.23,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon82"
style="fill:#969ca8" />
<polygon
points="0.375,7.574 0.375,7.406 7.539,15.344 7.383,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon84"
style="fill:#949ba7" />
<polygon
points="0.375,7.406 0.375,7.234 7.691,15.344 7.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon86"
style="fill:#9399a5" />
<polygon
points="0.375,7.234 0.375,7.062 7.848,15.344 7.691,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon88"
style="fill:#9298a4" />
<polygon
points="0.375,7.062 0.375,6.891 8,15.344 7.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon90"
style="fill:#9097a3" />
<polygon
points="0.375,6.891 0.375,6.723 8.156,15.344 8,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon92"
style="fill:#8f95a2" />
<polygon
points="8.156,15.344 8.309,15.344 0.375,6.551 0.375,6.723 "
clip-path="url(#XMLID_9_)"
id="polygon94"
style="fill:#8e95a1" />
<polygon
points="0.375,6.551 0.375,6.383 8.461,15.344 8.309,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon96"
style="fill:#8d93a0" />
<polygon
points="0.375,6.383 0.375,6.211 8.617,15.344 8.461,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon98"
style="fill:#8b929f" />
<polygon
points="0.375,6.211 0.375,6.039 8.77,15.344 8.617,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon100"
style="fill:#8a919e" />
<polygon
points="0.375,6.039 0.375,5.867 8.926,15.344 8.77,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon102"
style="fill:#898f9d" />
<polygon
points="0.375,5.867 0.375,5.695 9.078,15.344 8.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon104"
style="fill:#878e9b" />
<polygon
points="0.375,5.695 0.375,5.527 9.234,15.344 9.078,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon106"
style="fill:#878d9b" />
<polygon
points="9.234,15.344 9.387,15.344 0.375,5.355 0.375,5.527 "
clip-path="url(#XMLID_9_)"
id="polygon108"
style="fill:#858c9a" />
<polygon
points="0.375,5.355 0.375,5.188 9.539,15.344 9.387,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon110"
style="fill:#848b98" />
<polygon
points="0.375,5.188 0.375,5.016 9.695,15.344 9.539,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon112"
style="fill:#838a97" />
<polygon
points="0.375,5.016 0.375,4.844 9.848,15.344 9.695,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon114"
style="fill:#828997" />
<polygon
points="0.375,4.844 0.375,4.676 10,15.344 9.848,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon116"
style="fill:#818895" />
<polygon
points="0.375,4.676 0.375,4.504 10.156,15.344 10,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon118"
style="fill:#808794" />
<polygon
points="0.375,4.504 0.375,4.332 10.312,15.344 10.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon120"
style="fill:#7e8594" />
<polygon
points="10.312,15.344 10.465,15.344 0.375,4.164 0.375,4.332 "
clip-path="url(#XMLID_9_)"
id="polygon122"
style="fill:#7d8593" />
<polygon
points="0.375,4.164 0.375,3.992 10.617,15.344 10.465,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon124"
style="fill:#7c8392" />
<polygon
points="10.617,15.344 10.773,15.344 0.375,3.82 0.375,3.992 "
clip-path="url(#XMLID_9_)"
id="polygon126"
style="fill:#7b8290" />
<polygon
points="0.375,3.82 0.375,3.648 10.926,15.344 10.773,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon128"
style="fill:#7a8190" />
<polygon
points="0.375,3.648 0.375,3.477 11.082,15.344 10.926,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon130"
style="fill:#79808f" />
<polygon
points="0.375,3.477 0.375,3.309 11.234,15.344 11.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon132"
style="fill:#787f8d" />
<polygon
points="0.375,3.309 0.375,3.137 11.391,15.344 11.234,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon134"
style="fill:#777e8d" />
<polygon
points="0.375,3.137 0.375,2.969 11.543,15.344 11.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon136"
style="fill:#767d8c" />
<polygon
points="0.375,2.969 0.375,2.797 11.695,15.344 11.543,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon138"
style="fill:#767c8b" />
<polygon
points="11.695,15.344 11.852,15.344 0.375,2.625 0.375,2.797 "
clip-path="url(#XMLID_9_)"
id="polygon140"
style="fill:#747b8a" />
<polygon
points="0.375,2.625 0.375,2.453 12.004,15.344 11.852,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon142"
style="fill:#737a89" />
<polygon
points="0.375,2.453 0.375,2.285 12.156,15.344 12.004,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon144"
style="fill:#727989" />
<polygon
points="0.375,2.285 0.375,2.113 12.312,15.344 12.156,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon146"
style="fill:#717888" />
<polygon
points="12.312,15.344 12.469,15.344 0.375,1.941 0.375,2.113 "
clip-path="url(#XMLID_9_)"
id="polygon148"
style="fill:#707786" />
<polygon
points="0.375,1.941 0.375,1.773 12.621,15.344 12.469,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon150"
style="fill:#6f7686" />
<polygon
points="0.375,1.773 0.375,1.602 12.773,15.344 12.621,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon152"
style="fill:#6d7585" />
<polygon
points="0.375,1.602 0.375,1.43 12.93,15.344 12.773,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon154"
style="fill:#6d7584" />
<polygon
points="0.375,1.43 0.375,1.262 13.082,15.344 12.93,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon156"
style="fill:#6c7383" />
<polygon
points="0.375,1.262 0.375,1.09 13.238,15.344 13.082,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon158"
style="fill:#6b7383" />
<polygon
points="0.375,1.09 0.375,0.918 13.391,15.344 13.238,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon160"
style="fill:#6a7281" />
<polygon
points="0.375,0.918 0.375,0.75 13.547,15.344 13.391,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon162"
style="fill:#697181" />
<polygon
points="13.547,15.344 0.375,0.75 0.375,0.703 0.438,0.648 13.699,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon164"
style="fill:#697080" />
<polygon
points="13.699,15.344 0.438,0.648 0.523,0.57 13.852,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon166"
style="fill:#686f7f" />
<polygon
points="13.852,15.344 0.523,0.57 0.609,0.492 14.008,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon168"
style="fill:#676e7e" />
<polygon
points="14.008,15.344 0.609,0.492 0.691,0.418 14.16,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon170"
style="fill:#656d7d" />
<polygon
points="14.312,15.344 14.16,15.344 0.691,0.418 0.738,0.375 0.809,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon172"
style="fill:#646c7d" />
<polygon
points="0.809,0.375 0.961,0.375 14.469,15.344 14.312,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon174"
style="fill:#646c7c" />
<polygon
points="0.961,0.375 1.117,0.375 14.625,15.344 14.469,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon176"
style="fill:#636b7c" />
<polygon
points="1.117,0.375 1.27,0.375 14.777,15.344 14.625,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon178"
style="fill:#626b7b" />
<polygon
points="1.27,0.375 1.426,0.375 14.93,15.344 14.777,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon180"
style="fill:#616a7a" />
<polygon
points="14.93,15.344 1.426,0.375 1.578,0.375 15.039,15.289 14.98,15.344 "
clip-path="url(#XMLID_9_)"
id="polygon182"
style="fill:#606979" />
<polygon
points="1.578,0.375 1.734,0.375 15.125,15.215 15.039,15.289 "
clip-path="url(#XMLID_9_)"
id="polygon184"
style="fill:#5f6878" />
<polygon
points="1.734,0.375 1.887,0.375 15.207,15.137 15.125,15.215 "
clip-path="url(#XMLID_9_)"
id="polygon186"
style="fill:#5f6878" />
<polygon
points="1.887,0.375 15.207,15.137 15.293,15.062 2.039,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon188"
style="fill:#5e6777" />
<polygon
points="15.293,15.062 2.039,0.375 2.195,0.375 15.344,14.945 15.344,15.016 "
clip-path="url(#XMLID_9_)"
id="polygon190"
style="fill:#5d6676" />
<polygon
points="2.195,0.375 2.348,0.375 15.344,14.777 15.344,14.945 "
clip-path="url(#XMLID_9_)"
id="polygon192"
style="fill:#5c6576" />
<polygon
points="2.348,0.375 2.5,0.375 15.344,14.605 15.344,14.777 "
clip-path="url(#XMLID_9_)"
id="polygon194"
style="fill:#5b6475" />
<polygon
points="2.5,0.375 2.656,0.375 15.344,14.434 15.344,14.605 "
clip-path="url(#XMLID_9_)"
id="polygon196"
style="fill:#5b6475" />
<polygon
points="2.656,0.375 2.812,0.375 15.344,14.266 15.344,14.434 "
clip-path="url(#XMLID_9_)"
id="polygon198"
style="fill:#5a6373" />
<polygon
points="2.812,0.375 2.965,0.375 15.344,14.094 15.344,14.266 "
clip-path="url(#XMLID_9_)"
id="polygon200"
style="fill:#596273" />
<polygon
points="2.965,0.375 3.117,0.375 15.344,13.922 15.344,14.094 "
clip-path="url(#XMLID_9_)"
id="polygon202"
style="fill:#586172" />
<polygon
points="3.117,0.375 3.273,0.375 15.344,13.75 15.344,13.922 "
clip-path="url(#XMLID_9_)"
id="polygon204"
style="fill:#576172" />
<polygon
points="15.344,13.75 15.344,13.582 3.426,0.375 3.273,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon206"
style="fill:#566071" />
<polygon
points="3.426,0.375 3.582,0.375 15.344,13.41 15.344,13.582 "
clip-path="url(#XMLID_9_)"
id="polygon208"
style="fill:#566070" />
<polygon
points="3.582,0.375 3.734,0.375 15.344,13.238 15.344,13.41 "
clip-path="url(#XMLID_9_)"
id="polygon210"
style="fill:#555f70" />
<polygon
points="15.344,13.238 15.344,13.07 3.891,0.375 3.734,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon212"
style="fill:#545e6f" />
<polygon
points="3.891,0.375 4.043,0.375 15.344,12.898 15.344,13.07 "
clip-path="url(#XMLID_9_)"
id="polygon214"
style="fill:#535e6f" />
<polygon
points="15.344,12.898 15.344,12.727 4.195,0.375 4.043,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon216"
style="fill:#535d6e" />
<polygon
points="4.195,0.375 4.352,0.375 15.344,12.559 15.344,12.727 "
clip-path="url(#XMLID_9_)"
id="polygon218"
style="fill:#525c6d" />
<polygon
points="4.352,0.375 4.504,0.375 15.344,12.387 15.344,12.559 "
clip-path="url(#XMLID_9_)"
id="polygon220"
style="fill:#515c6d" />
<polygon
points="4.504,0.375 4.656,0.375 15.344,12.219 15.344,12.387 "
clip-path="url(#XMLID_9_)"
id="polygon222"
style="fill:#505b6c" />
<polygon
points="4.656,0.375 4.812,0.375 15.344,12.047 15.344,12.219 "
clip-path="url(#XMLID_9_)"
id="polygon224"
style="fill:#505b6c" />
<polygon
points="4.812,0.375 4.969,0.375 15.344,11.875 15.344,12.047 "
clip-path="url(#XMLID_9_)"
id="polygon226"
style="fill:#505a6b" />
<polygon
points="4.969,0.375 5.121,0.375 15.344,11.703 15.344,11.875 "
clip-path="url(#XMLID_9_)"
id="polygon228"
style="fill:#4f596a" />
<polygon
points="5.121,0.375 5.273,0.375 15.344,11.531 15.344,11.703 "
clip-path="url(#XMLID_9_)"
id="polygon230"
style="fill:#4e596a" />
<polygon
points="5.273,0.375 5.43,0.375 15.344,11.363 15.344,11.531 "
clip-path="url(#XMLID_9_)"
id="polygon232"
style="fill:#4d5869" />
<polygon
points="5.43,0.375 5.582,0.375 15.344,11.191 15.344,11.363 "
clip-path="url(#XMLID_9_)"
id="polygon234"
style="fill:#4c5869" />
<polygon
points="5.582,0.375 5.738,0.375 15.344,11.023 15.344,11.191 "
clip-path="url(#XMLID_9_)"
id="polygon236"
style="fill:#4c5768" />
<polygon
points="5.738,0.375 5.891,0.375 15.344,10.852 15.344,11.023 "
clip-path="url(#XMLID_9_)"
id="polygon238"
style="fill:#4b5768" />
<polygon
points="5.891,0.375 6.047,0.375 15.344,10.68 15.344,10.852 "
clip-path="url(#XMLID_9_)"
id="polygon240"
style="fill:#4b5667" />
<polygon
points="6.047,0.375 6.199,0.375 15.344,10.508 15.344,10.68 "
clip-path="url(#XMLID_9_)"
id="polygon242"
style="fill:#4a5567" />
<polygon
points="6.199,0.375 6.352,0.375 15.344,10.34 15.344,10.508 "
clip-path="url(#XMLID_9_)"
id="polygon244"
style="fill:#495566" />
<polygon
points="6.352,0.375 6.508,0.375 15.344,10.168 15.344,10.34 "
clip-path="url(#XMLID_9_)"
id="polygon246"
style="fill:#485566" />
<polygon
points="6.508,0.375 6.66,0.375 15.344,10 15.344,10.168 "
clip-path="url(#XMLID_9_)"
id="polygon248"
style="fill:#485466" />
<polygon
points="6.66,0.375 6.812,0.375 15.344,9.828 15.344,10 "
clip-path="url(#XMLID_9_)"
id="polygon250"
style="fill:#475365" />
<polygon
points="6.812,0.375 6.969,0.375 15.344,9.656 15.344,9.828 "
clip-path="url(#XMLID_9_)"
id="polygon252"
style="fill:#475365" />
<polygon
points="6.969,0.375 7.125,0.375 15.344,9.484 15.344,9.656 "
clip-path="url(#XMLID_9_)"
id="polygon254"
style="fill:#465264" />
<polygon
points="7.125,0.375 7.277,0.375 15.344,9.312 15.344,9.484 "
clip-path="url(#XMLID_9_)"
id="polygon256"
style="fill:#455264" />
<polygon
points="7.277,0.375 7.43,0.375 15.344,9.145 15.344,9.312 "
clip-path="url(#XMLID_9_)"
id="polygon258"
style="fill:#445263" />
<polygon
points="7.43,0.375 7.586,0.375 15.344,8.973 15.344,9.145 "
clip-path="url(#XMLID_9_)"
id="polygon260"
style="fill:#445163" />
<polygon
points="15.344,8.973 15.344,8.805 7.738,0.375 7.586,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon262"
style="fill:#445062" />
<polygon
points="7.738,0.375 7.895,0.375 15.344,8.633 15.344,8.805 "
clip-path="url(#XMLID_9_)"
id="polygon264"
style="fill:#425062" />
<polygon
points="7.895,0.375 8.047,0.375 15.344,8.461 15.344,8.633 "
clip-path="url(#XMLID_9_)"
id="polygon266"
style="fill:#425062" />
<polygon
points="15.344,8.461 15.344,8.289 8.203,0.375 8.047,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon268"
style="fill:#424f61" />
<polygon
points="8.203,0.375 8.355,0.375 15.344,8.121 15.344,8.289 "
clip-path="url(#XMLID_9_)"
id="polygon270"
style="fill:#414f61" />
<polygon
points="8.355,0.375 8.508,0.375 15.344,7.949 15.344,8.121 "
clip-path="url(#XMLID_9_)"
id="polygon272"
style="fill:#404e60" />
<polygon
points="8.508,0.375 8.664,0.375 15.344,7.781 15.344,7.949 "
clip-path="url(#XMLID_9_)"
id="polygon274"
style="fill:#3f4e60" />
<polygon
points="15.344,7.781 15.344,7.609 8.816,0.375 8.664,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon276"
style="fill:#3f4d60" />
<polygon
points="8.816,0.375 8.969,0.375 15.344,7.438 15.344,7.609 "
clip-path="url(#XMLID_9_)"
id="polygon278"
style="fill:#3f4d5f" />
<polygon
points="8.969,0.375 9.125,0.375 15.344,7.266 15.344,7.438 "
clip-path="url(#XMLID_9_)"
id="polygon280"
style="fill:#3e4d5f" />
<polygon
points="9.125,0.375 9.281,0.375 15.344,7.094 15.344,7.266 "
clip-path="url(#XMLID_9_)"
id="polygon282"
style="fill:#3e4c5e" />
<polygon
points="9.281,0.375 9.434,0.375 15.344,6.926 15.344,7.094 "
clip-path="url(#XMLID_9_)"
id="polygon284"
style="fill:#3d4c5e" />
<polygon
points="9.434,0.375 9.586,0.375 15.344,6.754 15.344,6.926 "
clip-path="url(#XMLID_9_)"
id="polygon286"
style="fill:#3d4c5e" />
<polygon
points="9.586,0.375 9.742,0.375 15.344,6.586 15.344,6.754 "
clip-path="url(#XMLID_9_)"
id="polygon288"
style="fill:#3c4b5d" />
<polygon
points="9.742,0.375 9.895,0.375 15.344,6.414 15.344,6.586 "
clip-path="url(#XMLID_9_)"
id="polygon290"
style="fill:#3c4b5d" />
<polygon
points="9.895,0.375 10.047,0.375 15.344,6.242 15.344,6.414 "
clip-path="url(#XMLID_9_)"
id="polygon292"
style="fill:#3c4b5d" />
<polygon
points="10.047,0.375 10.203,0.375 15.344,6.07 15.344,6.242 "
clip-path="url(#XMLID_9_)"
id="polygon294"
style="fill:#3b4a5c" />
<polygon
points="10.203,0.375 10.355,0.375 15.344,5.898 15.344,6.07 "
clip-path="url(#XMLID_9_)"
id="polygon296"
style="fill:#3b4a5c" />
<polygon
points="10.355,0.375 10.512,0.375 15.344,5.73 15.344,5.898 "
clip-path="url(#XMLID_9_)"
id="polygon298"
style="fill:#3a495c" />
<polygon
points="15.344,5.73 15.344,5.559 10.664,0.375 10.512,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon300"
style="fill:#3a495b" />
<polygon
points="10.664,0.375 10.82,0.375 15.344,5.391 15.344,5.559 "
clip-path="url(#XMLID_9_)"
id="polygon302"
style="fill:#39495b" />
<polygon
points="10.82,0.375 10.973,0.375 15.344,5.219 15.344,5.391 "
clip-path="url(#XMLID_9_)"
id="polygon304"
style="fill:#38495b" />
<polygon
points="10.973,0.375 11.125,0.375 15.344,5.047 15.344,5.219 "
clip-path="url(#XMLID_9_)"
id="polygon306"
style="fill:#38485b" />
<polygon
points="11.125,0.375 11.281,0.375 15.344,4.875 15.344,5.047 "
clip-path="url(#XMLID_9_)"
id="polygon308"
style="fill:#38485a" />
<polygon
points="11.281,0.375 11.434,0.375 15.344,4.707 15.344,4.875 "
clip-path="url(#XMLID_9_)"
id="polygon310"
style="fill:#37485a" />
<polygon
points="11.434,0.375 11.59,0.375 15.344,4.535 15.344,4.707 "
clip-path="url(#XMLID_9_)"
id="polygon312"
style="fill:#38475a" />
<polygon
points="15.344,4.535 15.344,4.363 11.742,0.375 11.59,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon314"
style="fill:#37475a" />
<polygon
points="11.742,0.375 11.898,0.375 15.344,4.195 15.344,4.363 "
clip-path="url(#XMLID_9_)"
id="polygon316"
style="fill:#374659" />
<polygon
points="11.898,0.375 12.051,0.375 15.344,4.023 15.344,4.195 "
clip-path="url(#XMLID_9_)"
id="polygon318"
style="fill:#364659" />
<polygon
points="12.051,0.375 12.203,0.375 15.344,3.852 15.344,4.023 "
clip-path="url(#XMLID_9_)"
id="polygon320"
style="fill:#364659" />
<polygon
points="12.203,0.375 12.359,0.375 15.344,3.68 15.344,3.852 "
clip-path="url(#XMLID_9_)"
id="polygon322"
style="fill:#364659" />
<polygon
points="12.359,0.375 12.512,0.375 15.344,3.512 15.344,3.68 "
clip-path="url(#XMLID_9_)"
id="polygon324"
style="fill:#354659" />
<polygon
points="12.512,0.375 12.668,0.375 15.344,3.344 15.344,3.512 "
clip-path="url(#XMLID_9_)"
id="polygon326"
style="fill:#354659" />
<polygon
points="12.668,0.375 12.82,0.375 15.344,3.172 15.344,3.344 "
clip-path="url(#XMLID_9_)"
id="polygon328"
style="fill:#354658" />
<polygon
points="12.82,0.375 12.977,0.375 15.344,3 15.344,3.172 "
clip-path="url(#XMLID_9_)"
id="polygon330"
style="fill:#344558" />
<polygon
points="12.977,0.375 13.129,0.375 15.344,2.828 15.344,3 "
clip-path="url(#XMLID_9_)"
id="polygon332"
style="fill:#344558" />
<polygon
points="13.129,0.375 13.281,0.375 15.344,2.656 15.344,2.828 "
clip-path="url(#XMLID_9_)"
id="polygon334"
style="fill:#344558" />
<polygon
points="13.281,0.375 13.438,0.375 15.344,2.488 15.344,2.656 "
clip-path="url(#XMLID_9_)"
id="polygon336"
style="fill:#344558" />
<polygon
points="15.344,2.488 13.438,0.375 15.344,0.375 "
clip-path="url(#XMLID_9_)"
id="polygon338"
style="fill:#344558" />
</g>
<path
d="m 14.969,7.858 c 0,3.92 -3.189,7.109 -7.109,7.109 -3.92,0 -7.11,-3.189 -7.11,-7.109 0,-3.92 3.189,-7.108 7.109,-7.108 3.92,0 7.11,3.188 7.11,7.108 z M 7.859,0 C 3.525,0 0,3.525 0,7.858 c 0,4.334 3.525,7.859 7.859,7.859 4.334,0 7.859,-3.525 7.859,-7.859 C 15.719,3.525 12.193,0 7.859,0 z"
id="path340"
style="fill:#aeadae" />
<path
d="m 7.6479958,10.801878 v 0.957 h -5.225 v -1.056 l 0.176,-0.154 c 0.253,-0.23 0.507,-0.462 0.759,-0.6820004 0.263,-0.242 0.55,-0.472 0.814,-0.7050001 1.441,-1.221 2.189,-1.891 2.189,-2.881 0,-0.275 -0.1,-1.31 -1.397,-1.31 -1.122,0 -1.364,0.804 -1.44,1.134 -0.079,0.34 -0.067,0.583 -0.056,0.837 l -1.068,-0.056 c 0,-0.274 0,-0.704 0.154,-1.188 0.352,-1.079 1.244,-1.639 2.454,-1.639 1.716,0 2.42,1.078 2.42,2.178 0,1.145 -0.639,2.014 -2.156,3.2560001 -0.264,0.208 -0.517,0.417 -0.782,0.6260004 -0.109,0.1 -0.67,0.572 -0.803,0.683 h 3.961 z"
id="path342"
style="fill:#ffffff" /><path
d="m 12.530325,9.1188778 h 1.144 v 0.8920002 h -1.144 v 1.748 h -1.023 v -1.748 H 8.1843249 V 8.9538778 l 3.5310001,-4.807 h 0.814 v 4.972 z m -1.023,0 0.066,-3.432 -2.3979997,3.432 h 2.3319997 z"
id="path342-8"
style="fill:#ffffff" /></svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Some files were not shown because too many files have changed in this diff Show More