Merge branch 'landing-page'

This commit is contained in:
Justine Arreche 2015-04-08 10:33:21 +02:00
commit 89fb73c931
73 changed files with 4102 additions and 105 deletions

View File

@ -0,0 +1,22 @@
`import Ember from 'ember'`
`import Ajax from 'travis/utils/ajax'`
`import config from 'travis/config/environment'`
TravisStatusComponent = Ember.Component.extend
status: null
statusPageStatusUrl: (->
config.statusPageStatusUrl
).property()
didInsertElement: ->
if url = @get('statusPageStatusUrl')
self = this
@getStatus(url).then (response) ->
if response.status and response.status.indicator
self.set('status', response.status.indicator)
getStatus: (url) ->
$.ajax(url)
`export default TravisStatusComponent`

View File

@ -0,0 +1,5 @@
`import Ember from 'ember'`
Controller = Ember.Controller.extend()
`export default Controller`

View File

@ -50,14 +50,10 @@ Controller = Ember.ArrayController.extend
Visibility.every @config.intervals.updateTimes, @updateTimes.bind(this)
recentRepos: (->
Ember.ArrayProxy.extend(
isLoadedBinding: 'repos.isLoaded'
repos: Repo.withLastBuild(@store)
sorted: Ember.computed.sort('repos', 'sortedReposKeys')
content: limit('sorted', 'limit')
sortedReposKeys: ['sortOrder:asc']
limit: 30
).create()
# I return an empty array here, because we're removing left sidebar, but
# I don't want to refactor too much code (it will be all changed anyway
# when we switch to new dashboard)
[]
).property()
updateTimes: ->
@ -69,9 +65,6 @@ Controller = Ember.ArrayController.extend
@set('tab', tab)
this["view_#{tab}".camelize()](params)
viewRecent: ->
@set('content', @get('recentRepos'))
viewOwned: ->
@set('content', @get('userRepos'))

View File

@ -18,4 +18,8 @@ Controller = Ember.Controller.extend
return false
}
showCta: (->
!@get('auth.signedIn') && !@get('config.pro') && !@get('landingPage')
).property('auth.signedIn', 'landingPage')
`export default Controller`

View File

@ -0,0 +1,7 @@
`import { timeAgoInWords, safe } from 'travis/utils/helpers'`
`import Ember from "ember"`
helper = Ember.Handlebars.makeBoundHelper (value, options) ->
safe timeAgoInWords(value) || 'currently running'
`export default helper`

View File

@ -108,12 +108,12 @@ Repo = Model.extend
).property('_lastBuildDuration', 'lastBuildStartedAt', 'lastBuildFinishedAt')
sortOrder: (->
# cuz sortAscending seems buggy when set to false
if lastBuildFinishedAt = @get('lastBuildFinishedAt')
- new Date(lastBuildFinishedAt).getTime()
state = @get('lastBuildState')
if state != 'passed' && state != 'failed'
0
else
- new Date('9999').getTime() - parseInt(@get('lastBuildId'))
).property('lastBuildFinishedAt', 'lastBuildId')
parseInt(@get('lastBuildId'))
).property('lastBuildId', 'lastBuildState')
stats: (->
if @get('slug')

View File

@ -3,8 +3,26 @@
`import Location from 'travis/utils/location'`
Router = Ember.Router.extend
# TODO: we should use TravisLocation here
location: if Ember.testing then 'none' else 'travis'
location: (->
if Ember.testing
'none'
else
# this is needed, because in the location
# we need to decide if repositories or home needs
# to be displayed, based on the current login status
#
# we should probably think about a more general way to
# do this, location should not know about auth status
Location.create(auth: @container.lookup('auth:main'))
).property()
# TODO: this is needed, because in the original version
# the router tries to run `this.location`, which fails
# with computed properties. It can be removed once this is
# changed in Ember.js
generate: ->
url = this.router.generate.apply(this.router, arguments)
return this.get('location').formatURL(url)
handleURL: (url) ->
url = url.replace(/#.*?$/, '')
@ -45,7 +63,8 @@ Router.map ->
@route 'first_sync'
@route 'insufficient_oauth_permissions'
@route 'auth', path: '/auth'
@route 'auth'
@route 'home'
@resource 'profile', path: '/profile', ->
@resource 'accounts', path: '/', ->

View File

@ -51,6 +51,6 @@ Route = TravisRoute.extend BuildFaviconMixin,
if @get('config').pro
@transitionTo('auth')
else
@transitionTo('main')
@transitionTo('home')
`export default Route`

68
app/routes/home.coffee Normal file
View File

@ -0,0 +1,68 @@
`import BasicRoute from 'travis/routes/basic'`
`import config from 'travis/config/environment'`
`import limit from 'travis/utils/computed-limit'`
Route = BasicRoute.extend
init: ->
store = @store
repos = Ember.ArrayProxy.extend(
isLoadedBinding: 'repos.isLoaded'
repos: @store.filter 'repo', (repo) ->
buildId = repo.get('lastBuildId')
if store.hasRecordForId('build', buildId)
state = repo.get('lastBuild.state')
state == 'passed' || state == 'failed'
external: []
withExternal: Ember.computed.union('repos', 'external')
sorted: Ember.computed.sort('withExternal', 'sortedReposKeys')
content: limit('sorted', 'limit')
sortedReposKeys: ['sortOrder:desc']
limit: 3
).create()
@set('repos', repos)
setInterval =>
@set('letMoreReposThrough', true)
, 5000
setTimeout =>
unless repos.get('length')
@store.find('repo').then (reposFromRequest) ->
repos.get('external').pushObjects reposFromRequest.toArray().slice(0, 3)
, 10000
@_super.apply this, arguments
activate: ->
if !config.pro && @pusher
@pusher.subscribeAll(['common'])
@store.addPusherEventHandlerGuard('landing-page', (event, data) =>
@allowMoreRepos(event, data)
)
@_super.apply(this, arguments)
@controllerFor('top').set('landingPage', true)
allowMoreRepos: (event, data) ->
if @get('repos.length') < 3
return true
if event == 'build:finished' &&
['passed', 'failed'].indexOf(data.build.state) != -1 &&
@get('letMoreReposThrough')
@set('letMoreReposThrough', false)
return true
deactivate: ->
@_super.apply(this, arguments)
@store.removePusherEventHandlerGuard('landing-page')
@controllerFor('top').set('landingPage', false)
setupController: (controller, model) ->
controller.set('repos', @get('repos'))
`export default Route`

View File

@ -14,8 +14,7 @@ Route = TravisRoute.extend
setupController: (controller)->
# TODO: this is redundant with repositories and recent routes
toActivate = if @signedIn() then 'owned' else 'recent'
@container.lookup('controller:repos').activate(toActivate)
@container.lookup('controller:repos').activate('owned')
activate: ->
# subscribe to pusher only if we're at a main route

View File

@ -2,7 +2,9 @@
Route = TravisRoute.extend
redirect: ->
target = if @signedIn() then 'repositories' else 'recent'
@transitionTo("main.#{target}")
if @signedIn()
@transitionTo('main.repositories')
else
@transitionTo('home')
`export default Route`

View File

@ -1,15 +1,7 @@
`import TravisRoute from 'travis/routes/basic'`
`import MainTabRoute from 'travis/routes/main-tab'`
`import Ember from 'ember'`
Route = MainTabRoute.extend
reposTabName: 'recent'
activate: ->
@_super.apply(this, arguments)
@store.set('isRecentTabOpen', true)
deactivate: ->
@_super.apply(this, arguments)
@store.set('isRecentTabOpen', false)
Route = Ember.Route.extend
redirect: ->
@transitionTo('main')
`export default Route`

View File

@ -3,8 +3,7 @@
Route = TravisRoute.extend
setupController: ->
$('body').attr('id', 'simple')
toActivate = if @signedIn() then 'owned' else 'recent'
@container.lookup('controller:repos').activate(toActivate)
@container.lookup('controller:repos').activate('owned')
@_super.apply(this, arguments)
renderTemplate: ->

View File

@ -5,11 +5,20 @@ Store = DS.Store.extend
defaultAdapter: 'application'
adapter: 'application'
receivePusherEvent: (event, data) ->
[name, type] = event.split(':')
init: ->
@_super.apply(this, arguments)
@set('pusherEventHandlerGuards', {})
addPusherEventHandlerGuard: (name, callback) ->
@get('pusherEventHandlerGuards')[name] = callback
removePusherEventHandlerGuard: (name) ->
delete @get('pusherEventHandlerGuards')[name]
canHandleEvent: (event, data) ->
[name, type] = event.split(':')
auth = @container.lookup('auth:main')
if !@get('isRecentTabOpen') && event != 'job:log' && auth.get('signedIn') &&
if event != 'job:log' && auth.get('signedIn') &&
!config.pro && !config.enterprise
# if recent repos hasn't been opened yet, we can safely
# drop any events that doesn't belong to repos owned by
@ -22,7 +31,18 @@ Store = DS.Store.extend
else if name == 'build'
id = data.repository.id
return if !@hasRecordForId('repo', id) && !permissions.contains(id)
return @hasRecordForId('repo', id) || permissions.contains(id)
for name, callback of @get('pusherEventHandlerGuards')
unless callback(event, data)
return false
return true
receivePusherEvent: (event, data) ->
[name, type] = event.split(':')
return unless @canHandleEvent(event, data)
if name == 'job' && data.job?.commit
@pushPayload(commits: [data.job.commit])

View File

@ -19,6 +19,7 @@
// @import "app/left";
@import "app/loading";
@import "app/main/annotations";
@import "app/landing";
@import "app/main/list";
@import "app/main/log";
@import "app/main/sponsors";

554
app/styles/app/landing.sass Normal file
View File

@ -0,0 +1,554 @@
.top.landing-page .topbar,
.wrapper.centered .topbar,
.wrapper.centered #top .cta p,
.top.landing-page .cta p
margin: 0 auto
max-width: 1024px
.top.landing-page .topbar
background-color: #fff
.button--signin
background-color: #ffffff
background-image: inline-image('landing-page/signingithub.svg')
background-size: 16px 16px
border: 2px solid #e4e7e7
color: #a0a8a8
.button--signin:hover
background-color: #73c78d
background-image: inline-image('landing-page/signingithub-hover.svg')
border: 2px solid #73c78d
color: #fff
.wrapper.centered .topbar
max-width: 1024px
.wrapper.centered #top,
.wrapper.centered .topbar,
.wrapper.non-centered .topbar
background-color: #eff0ec
#landing
margin: 0 auto 170px auto
font-weight: 300
overflow: hidden
h1
font-size: 5em
line-height: 1em
font-weight: 300
color: #8f9294
margin-bottom: 0
h2
font-size: 3.3em
line-height: 1.15em
font-weight: 300
color: #39a85b
p
font-color: #606162
font-size: 1.7em
font-weight: 300
.hero, .oss-testing, .customers, .recent-builds, .free-for-oss, .private-repos, .features-list, .build-flows, .user-testimonials
padding: 70px 0 70px 0
h1, h2
margin-top: 0
p
line-height: 1.5em
.hero.z-1
text-align: center
position: relative
z-index: 1
.landing-centered-wrapper
max-width: 1024px
margin: 0 auto
> .columns.medium-6:first-child
padding-right: 2em
> .columns.medium-6:last-child
padding-left: 2em
#laptop
margin-bottom: -192px
#laptop img
border: 2px solid #d8dadc
border-radius: 2px
.hero
background-color: #faf9f6
h1
color: #339999
line-height: 1.2em
margin-bottom: 0
p
margin: 0
line-height: 1.5em
br.mobile-break
display: none
.button
background-color: #39a85b
color: #fff
font-size: 2em
font-weight: 300
padding: 0.5em
margin: 1.3em 0 1.3em 0
border-radius: 4px
border: 0
&:hover
background-color: #73c78d
.sign-in-mascot
padding-right: 10px
.oss-testing
background-color: #ffffff
text-align: center
position: relative
z-index: 1000
h2
margin: 0
p
margin-top: 0.5em
margin-bottom: 2em
br.mobile-break
display: none
.customers
text-align: center
.left
text-align: left
padding: 0 0 0 12%
.recent-builds
background-color: #faf9f6
text-align: center
min-height: 44rem
h2
color: #db4141
text-align: right
margin: 0
a
color: #828282
p
text-align: right
margin-top: 0.5em
margin-bottom: 2em
img
margin-bottom: 20px
ul
padding-left: 0
li
background-color: #fff
border-radius: 4px
color: #828282
font-weight: 400
margin-bottom: 20px
list-style-type: none
position: relative
height: 120px
width: 100%
padding: 10px 0 0 60px
text-align: left
.tile-status
position: absolute
top: 0
left: 0
bottom: 0
.owner, .name
display: block
.owner
font-size: 14px
line-height: 1.8em
.name
font-size: 22px
.state
display: inline-block
margin-left: 4px
.commit, .number, .branch, .finished-at
position: absolute
display: block
background-repeat: no-repeat
background-position: left center
padding-left: 23px
.number
left: 60px
top: 65px
background-image: inline-image('svg/build-number-icon.svg')
.commit
left: 251px
top: 65px
background-image: inline-image('svg/commit-icon.svg')
.branch
left: 250px
top: 90px
background-image: inline-image('dashboard/branch.svg')
background-size: 19px 19px
.finished-at
left: 60px
top: 90px
background-image: inline-image('svg/finished-icon.svg')
background-size: 19px 19px
&.started .tile-status,
&.created .tile-status,
&.received .tile-status,
&.queued .tile-status
background-color: $start-color
&.failed .tile-status
background-color: $fail-color
&.errored .tile-status
background-color: $error-color
&.canceled .tile-status
background-color: $cancel-color
&.passed .tile-status
background-color: $pass-color
&.inactive .tile-status
background-color: $cancel-color
&.started .owner,
&.started .name,
&.created .owner,
&.created .name,
&.received .owner,
&.received .name,
&.queued .owner,
&.queued .name
color: $start-color
&.failed .owner,
&.failed .name
color: $fail-color
&.errored .owner,
&.errored .name
color: $error-color
&.canceled .owner,
&.canceled .name
color: $cancel-color
&.passed .owner,
&.passed .name
color: $pass-color
&.inactive .owner,
&.inactive .name
color: $cancel-color
.free-for-oss
text-align: center
h1
margin-bottom: 0.3em
p
margin: 0
span.bold-italic
font-weight: 600
font-style: italic
br.mobile-no-break
display: inline-block
.private-repos
text-align: center
h2
color: #339999
margin: 0
text-align: right
p
margin-top: 0.5em
margin-bottom: 2em
text-align: right
a
text-decoration: underline
.mobile-envelope
display: none
.desktop-envelope
display: inline-block
.features-list
background-color: #faf9f6
h2
margin: 0
h3
font-size: 1.4em
font-weight: 300
color: #413c3c
text-align: center
margin-bottom: 35px
padding-top: 40px
p
font-size: 1.15em
font-weight: 300
color: #606162
text-align: center
br.mobile-break
display: none
.features-callouts
text-align: center
@media #{$medium-only}
float: none
#f-co-1, #f-co-2, #f-co-3, #f-co-4
background-repeat: no-repeat;
background-position: 50% 0
height: 32px
#f-co-1, #f-co-2, #f-co-3, #f-co-4
background-image: url('../images/landing-page/features-callouts-1.svg')
#f-co-2
background-image: url('../images/landing-page/features-callouts-2.svg')
#f-co-3
background-image: url('../images/landing-page/features-callouts-3.svg')
#f-co-4
background-image: url('../images/landing-page/features-callouts-4.svg')
.features-checked
padding-left: 30px
@media #{$medium-only}
float: none
h2
@media #{$medium-only}
width: grid-calc(8, 12)
margin: 1em auto
ul
@media #{$medium-only}
width: grid-calc(5, 12)
margin: auto
ul
@include resetul
margin-top: 1.6rem;
li
font-color: #606162
font-size: 1.7em
line-height: 1.7em
&:before
@extend %icon
content: ""
background-image: url('../images/landing-page/features-check.svg')
width: 0.7em
height: 0.7em
margin-right: .3em
.build-flows
text-align: center
h2
color: #909295
h2#pr-bf-margin
margin-top: 90px
.branch-bf
.bf
display: inline-block
width: 120px
p
font-size: 1em
line-height: 1.5em
color: #5f6062
.divider-line-horizontal
width: 50px
height: 3px
background: #eaeaec
display: inline-block
margin-bottom: 75px
.divider-line-vertical
display: none
.user-testimonials
margin-bottom: 50px
h2
color: #418793
text-align: right
p
font-size: 1.2em
font-weight: 300
color: #606162
margin: 0
display: inline-block
img.avatar
max-width: 81px
float: right
img.social
margin: -2px 3px 0 15px
display: inline-block
.author
font-weight: 500
margin: 6px 0 0 0
.title
margin: 0 0 20px 0
a
font-size: 1.2em
a:hover
text-decoration: underline
@media (max-width: 900px)
.oss-testing br.mobile-break
display: inline-block
.landing-centered-wrapper
width: 100%
@media (max-width: 1024px)
.features-list .features-checked
margin-top: 40px
.features-list .features-checked h2
text-align: center
@media (max-width: 886px)
#hero-copy
display: block
width: 100%
text-align: center
.hero h1
max-width: 100%
.hero p
text-align: center
max-width: 100%
.hero br.mobile-break
display: inline-block
.features-list .features-callouts
padding: 0 60px 0 60px
.features-list .features-checked
padding: 0 60px 0 60px
@media (max-width: 846px)
.build-flows .branch-bf .bf
width: 100%
display: block
clear: all
.build-flows .branch-bf .bf img
width: 120px
height: 120px
.build-flows .branch-bf .bf p
font-size: 1.5em
.build-flows .branch-bf .divider-line-horizontal
display: none
.build-flows .branch-bf .divider-line-vertical
width: 3px
height: 40px
background: #eaeaec
display: inline-block
margin-bottom: 10px
@media (max-width: 797px)
.customers .left
text-align: center
padding: 20px 0 0 0
.recent-builds h2
text-align: center
.recent-builds p
text-align: center
.free-for-oss br.mobile-no-break
display: none
.private-repos .desktop-envelope
display: none
.private-repos .mobile-envelope
display: inline-block
margin-bottom: 40px
.private-repos h2
text-align: center
.private-repos p
text-align: center
.user-testimonials
margin-bottom: 50px
.user-testimonials h2
text-align: center
.user-testimonails p
text-align: center
@media (max-width: 640px)
.user-testimonials
margin-bottom: 140px
@media (max-width: 608px)
br.mobile-break
display: inline-break
.landing-vert-center-m
@media #{$medium-up}
position: relative
transform: translateY(65%)
.landing-vert-center-s
@media #{$medium-up}
position: relative
overflow: auto
transform: translateY(7%)

View File

@ -47,11 +47,13 @@
.wrapper
overflow: hidden
.wrapper.non-centered
#main,
#left
margin-bottom: -99999px
padding-bottom: 100034px
@media #{$large-up}
#left, #right, .wrapper-main
@ -63,30 +65,35 @@
margin-left: -100%
max-width: 325px
.wrapper-main
.non-centered .wrapper-main
width: grid-calc(18, 24)
float: left
margin-left: grid-calc(6, 24)
overflow: visible
.centered .wrapper-main
max-width: 1024px
margin-left: auto
margin-right: auto
@media #{$xlarge-up}
#left
width: grid-calc(7, 36)
.wrapper-main
.non-centered .wrapper-main
width: grid-calc(29, 36)
margin-left: grid-calc(7, 36)
@media #{$xxlarge-up}
#left
width: grid-calc(6, 36)
.wrapper-main
.non-centered .wrapper-main
width: grid-calc(30, 36)
margin-left: grid-calc(6, 36)
@media screen and (min-width: 2200px)
#left
width: grid-calc(5, 36)
.wrapper-main
.non-centered .wrapper-main
width: grid-calc(31, 36)
margin-left: grid-calc(5, 36)

View File

@ -214,3 +214,5 @@ $db-text-color: #ACAAAA
h2, h3, p, button, .db-status
opacity: .7
.dashboard .topbar
background-color: transparent !important

View File

@ -2,11 +2,14 @@
* Footer on the dashboard
*/
$footer-height: 204px
a
color : $color-link
text-decoration : none
footer
position: relative
padding : 20px 0
background-color : $footer-bg-color
min-height : 334px
@ -24,12 +27,11 @@ footer
height: auto
@media (min-width: 640px)
.wrapper
padding-bottom: 204px
padding-bottom: $footer-height + 50
footer
margin-top: -204px
min-height: 204px
margin-top: - $footer-height
min-height: $footer-height
footer h3
font-size : 15px
@ -43,6 +45,9 @@ footer .row p
display : inline-block
margin : 0
footer .row
max-width: 1024px
footer .row ul,
footer .row li
display : block
@ -62,7 +67,6 @@ footer a:active
text-decoration : underline
.status-circle
background : $pass-color
display : inline-block
height : 11px
width : 11px
@ -72,3 +76,16 @@ footer a:active
-webkit-border-radius : 100px
-moz-border-radius : 100px
vertical-align: middle
.status-circle.none
background: #2fcc66
.status-circle.degraded
background: #f1c40f
.status-circle.minor
background: #e67e22
.status-circle.major
background: #e74c3c

View File

@ -75,7 +75,7 @@ $sb-font-size: 14px
.icon--plus:after
color: $teal1
&:after
bottom: 0
bottom: -3px
@media (min-width: #{lower-bound($large-range)})
ul

View File

@ -1,5 +1,35 @@
$top-height: 55px
#auth #top .cta
display: none
#top .cta
border-bottom: 2px solid #E4E4E4
border-top: 2px solid #E4E4E4
line-height: 2.7em
font-size: 16px
color: #71AE76
text-align: right
padding-right: 20px
background-color: #fff
p
position: relative
margin-top: 0
margin-bottom: 0
padding-top: 0
padding-bottom: 0
.arrow
display: block
position: absolute
top: -11px
right: 66px
background-image: inline-image('cta-arrow.svg')
background-repeat: no-repeat
width: 20px
height: 12px
.logo
position: relative
margin: 0 1.5rem 0 1.3rem
@ -39,7 +69,7 @@ $top-height: 55px
.topbar
font-size: $font-size-m
background-color: #eff0ec
background-color: #eff0ec
color: $grey1
a
@ -84,7 +114,7 @@ $top-height: 55px
height: $top-height
> li
display: inline-block
margin-right: 1rem
margin-right: 1rem
a
height: $top-height
line-height: $top-height + 2px

View File

@ -1,11 +1,14 @@
.icon
width: 1em
height: 1em
%icon
display: inline-block
background:
size: 100%
repeat: no-repeat
.icon
width: 1em
height: 1em
@extend %icon
.icon-cal,
.icon--cal
background-image: inline-image('svg/finished-icon.svg')

View File

@ -0,0 +1,8 @@
{{#if statusPageStatusUrl}}
<h3>Travis CI Status</h3>
<ul>
<li><div {{bind-attr class=":status-circle status"}}>Status:</div>
<a href="http://www.traviscistatus.com/">Travis CI Status</a>
</li>
</ul>
{{/if}}

View File

@ -1,5 +1,5 @@
<div class="row">
<div class="small-6 medium-4 large-4 columns">
<div class="small-6 medium-6 large-6 columns">
<img src="/images/dashboard/footer-logo.svg">
</div>
<div class="small-6 medium-2 large-2 columns">
@ -16,7 +16,7 @@
<li><a href="http://docs.travis-ci.com/">Documentation</a></li>
<li><a href="http://blog.travis-ci.com/">Blog</a></li>
<li><a href="mailto:support@travis-ci.com">Email</a></li>
<li><a href="https://travisci.campfirenow.com">Live Chat</a></li>
<li><a href="https://chat.travis-ci.com">Live Chat</a></li>
<li><a href="https://twitter.com/travisci">Twitter</a></li>
</ul>
</div>
@ -31,11 +31,6 @@
</div>
{{/if}}
<div class="small-6 medium-2 large-2 columns">
<h3>Travis CI Status</h3>
<ul>
<li><div class="status-circle">Status:</div>
<a href="http://www.traviscistatus.com/">Travis CI Status</a>
</li>
</ul>
{{travis-status}}
</div>
</div>

255
app/templates/home.hbs Normal file
View File

@ -0,0 +1,255 @@
<div id="landing">
<div class="row hero z-1">
<div class="landing-centered-wrapper">
<div class="large-12 columns" id="hero-copy">
<h1>Test and deploy with confidence</h1>
<p>Easily sync your github projects with Travis CI<br class="mobile-break"> and youll be testing your code in minutes!</p>
<a href="#" class="button"><img src="../images/landing-page/sign-in-mascot.svg" class="sign-in-mascot">Sign Up</a>
</div>
<div class="large-12 columns laptop-wrapper">
<div id="laptop">
<img src="../images/landing-page/laptop.png">
</div>
</div>
</div>
</div>
<div class="row oss-testing">
<div class="landing-centered-wrapper">
<div class="large-12 columns">
<h2>The home of<br class="mobile-break"> open source testing</h2>
<p>Over 200k open source projects<br class="mobile-break"> and 126k users are testing on Travis CI.</p>
<img src="../images/landing-page/customer-numbers.svg">
</div>
</div>
</div>
<div class="row customers">
<div class="landing-centered-wrapper">
<div class="medium-6 columns">
<img src="../images/landing-page/customers-temp-together.svg">
</div>
<div class="medium-6 columns">
<p class="left">Some pretty awesome companies<br> and projects are using us.</p>
</div>
</div>
</div>
<div class="row recent-builds">
<div class="landing-centered-wrapper">
<div class="medium-6 columns">
<div class="landing-vert-center-m">
<h2>Every minute theres<br>a new build being run</h2>
<p>Here are just a few projects<br>currently running on Travis CI</p>
</div>
</div>
<div class="medium-6 columns">
<ul class="repos">
{{#each repo in repos}}
<li {{bind-attr class=":repo repo.lastBuild.state"}}>
<span class="tile-status">
<span {{bind-attr class=":icon :icon-status repo.lastBuild.state"}}></span>
</span>
<span class="owner">{{repo.owner}}</span>
<span class="name">{{repo.name}}</span>
{{#link-to "build" repo repo.lastBuild.id class="number"}}{{repo.lastBuild.number}} <span class="state">{{repo.lastBuild.state}}</span>{{/link-to}}
<span class="commit">{{format-sha repo.lastBuild.commit.sha}}</span>
<span class="branch">{{repo.lastBuild.branch}}</span>
<span class="finished-at">
{{landing-page-last-build-time repo.lastBuild.finishedAt}}
</span>
</li>
{{else}}
<span class="sync-spinner sync-spinner--grey"><i></i><i></i><i></i></span>
{{/each}}
</ul>
</div>
</div>
</div>
<div class="row free-for-oss">
<div class="landing-centered-wrapper">
<div class="large-12 columns">
<h1>Testing your open source<br class="mobile-no-break"> project is 10,000% free</h1>
<p><span class="bold-italic">Seriously. Always.</span> We like to think of it as our way of giving<br>back to a community that gives us so much as well.</p>
</div>
</div>
</div>
<div class="row private-repos">
<div class="landing-centered-wrapper">
<div class="medium-6 columns mobile-envelope">
<img src="../images/landing-page/envelope.svg">
</div>
<div class="medium-6 columns">
<div class="landing-vert-center-s">
<h2>Have a private project<br>youd like to test?</h2>
<p>Travis CI for private repositories has<br><a href="http://travis-ci.com/plans" target="_blank">plans</a> for every size project.</p>
</div>
</div>
<div class="medium-6 columns desktop-envelope">
<img src="../images/landing-page/envelope.svg">
</div>
</div>
</div>
<div class="row features-list">
<div class="landing-centered-wrapper">
<div class="large-6 columns features-callouts">
<div class="landing-vert-center-s">
<div class="medium-6 columns">
<h3 id="f-co-1">Get set up in seconds</h3>
<p>Login with GitHub, tell Travis CI to test a project, and then push to GitHub. Could it be any simpler!</p>
</div>
<div class="medium-6 columns">
<h3 id="f-co-2">Multi-language support</h3>
<p>Make sure your code runs against all versions of your favorite language without breaking a sweat.</p>
</div>
<div class="medium-6 columns">
<h3 id="f-co-3">Test your pull requests</h3>
<p>Make sure every Pull Request to your project is tested before merging.</p>
</div>
<div class="medium-6 columns">
<h3 id="f-co-4">Deploy to s3 and Heroku</h3>
<p>Updating staging or production as soon as your tests pass has never been easier!</p>
</div>
</div>
</div>
<div class="large-6 columns features-checked">
<h2>Features created to<br class="mobile-break"> help your projects and teams</h2>
<ul>
<li>Watch your tests as they run</li>
<li>Keep your config with your code</li>
<li>Slack, HipChat, Emails and more</li>
<li>A clean VM for every build</li>
<li>Run your tests in parallel</li>
<li>Linux and Mac (and iOS) supported</li>
<li>Great API and command line tool</li>
<li>Did we say Free for Open Source already?</li>
</ul>
</div>
</div>
</div>
<div class="row build-flows">
<div class="landing-centered-wrapper">
<div class="large-12 columns">
<h2>Branch build flow</h2>
<div class="branch-bf">
<div class="bf">
<img src="../images/landing-page/push-icon-1.svg">
<p>You push your<br>code to github</p>
</div>
<div class="divider-line-horizontal">
</div>
<div class="divider-line-vertical">
</div>
<div class="bf">
<img src="../images/landing-page/push-icon-2.svg">
<p>github triggers<br>Travis CI to build</p>
</div>
<div class="divider-line-horizontal">
</div>
<div class="divider-line-vertical">
</div>
<div class="bf">
<img src="../images/landing-page/push-icon-3.svg">
<p>Hooray!<br>Your build passes!</p>
</div>
<div class="divider-line-horizontal">
</div>
<div class="divider-line-vertical">
</div>
<div class="bf">
<img src="../images/landing-page/push-icon-4.svg">
<p>Travis CI deploys<br>to Heroku</p>
</div>
<div class="divider-line-horizontal">
</div>
<div class="divider-line-vertical">
</div>
<div class="bf">
<img src="../images/landing-page/push-icon-5.svg">
<p>Travis CI tells the<br>team all is good</p>
</div>
</div>
<h2 id="pr-bf-margin">Pull Request build flow</h2>
<div class="branch-bf">
<div class="bf">
<img src="../images/landing-page/pull-icon-1.svg">
<p>A pull request<br>is created</p>
</div>
<div class="divider-line-horizontal">
</div>
<div class="divider-line-vertical">
</div>
<div class="bf">
<img src="../images/landing-page/pull-icon-2.svg">
<p>github tells Travis CI the build is mergeable</p>
</div>
<div class="divider-line-horizontal">
</div>
<div class="divider-line-vertical">
</div>
<div class="bf">
<img src="../images/landing-page/push-icon-3.svg">
<p>Hooray!<br>Your build passes!</p>
</div>
<div class="divider-line-horizontal">
</div>
<div class="divider-line-vertical">
</div>
<div class="bf">
<img src="../images/landing-page/pull-icon-4.svg">
<p>Travis CI updates the PR that it passed</p>
</div>
<div class="divider-line-horizontal">
</div>
<div class="divider-line-vertical">
</div>
<div class="bf">
<img src="../images/landing-page/pull-icon-5.svg">
<p>You merge in<br>the PR goodness</p>
</div>
</div>
</div>
</div>
</div>
<div class="row user-testimonials">
<div class="landing-centered-wrapper">
<div class="medium-6 columns">
<h2>Some people have said some pretty nice things about us</h2>
</div>
<div class="medium-6 columns">
<div class="small-3 columns">
<img src="../images/landing-page/dhh.png" class="avatar">
</div>
<div class="small-9 columns">
<p>Travis CI makes it so much easier for us to coordinate the thousands of commits and contributors that flow through the Rails code base. The test suite for such a large project is vast, and we wouldnt be catching issues as quickly or smoothly without the help of Travis.</p>
<p class="author">David Heinemeier Hansson</p> <img src="../images/landing-page/twitter.svg" class="social"><a href="https://twitter.com/dhh" alt="DHH Twitter" target="_blank">dhh</a>
<p class="title">Creator of Ruby on Rails</p>
</div>
<div class="small-3 columns">
<img src="../images/landing-page/chris.png" class="avatar">
</div>
<div class="small-9 columns">
<p>We love Travis CI at @TwitterOSS and use it for the majority of our open source projects on GitHub. Travis CI is simple to use, we love their API to build tooling and adore the new container infrastructure for speedier builds.</p>
<p class="author">Chris Aniszczyk</p> <img src="../images/landing-page/twitter.svg" class="social"><a href="https://twitter.com/cra" alt="Chris Twitter" target="_blank">cra</a>
<p class="title">Head of Open Source at Twitter</p>
</div>
<div class="small-3 columns">
<img src="../images/landing-page/alex.png" class="avatar">
</div>
<div class="small-9 columns">
<p>Not only is Travis CI the best way to test your software, it is the right way. rm -rf jenkins &amp;&amp; touch .travis.yml</p>
<p class="author">Alex Gaynor</p> <img src="../images/landing-page/github.svg" class="social"><a href="https://github.com/alex" alt="Alex github" target="_blank">alex</a>
<p class="title">PyPy and Python Core Team Member</p>
</div>
</div>
</div>
</div>
</div>

View File

@ -1,14 +1,15 @@
<div class="centered">
<div class="wrapper wrapper-dashboard">
<header id="top" class="top">
<div class="wrapper wrapper-dashboard">
<header id="top" class="top">
<div class="centered">
{{render "top"}}
</header>
</div>
</header>
<div class="centered">
{{yield}}
</div>
<footer>
{{render "footer"}}
</footer>
</div>
<footer>
{{render "footer"}}
</footer>

View File

@ -1,5 +1,5 @@
<div class="wrapper">
<div {{bind-attr class=":wrapper auth.signedIn:non-centered:centered"}}>
<header id="top" class="top">
{{render "top"}}
</header>
@ -12,8 +12,11 @@
</div>
</div>
<aside id="left">
<aside id="left" {{bind-attr class="auth.signedIn::hidden"}}>
{{outlet "left"}}
</aside>
</div>
<footer {{bind-attr class="auth.signedIn:hidden"}}>
{{render "footer"}}
</footer>

View File

@ -0,0 +1,11 @@
<div id="top" class="top landing-page">
{{render "top"}}
</div>
{{render "flash"}}
{{yield}}
<footer>
{{render "footer"}}
</footer>

View File

@ -1,14 +1,20 @@
<header id="top" class="topbar">
<div class="wrapper">
<header id="top" class="topbar">
<div class="centered">
{{render "top"}}
</div>
</header>
<div class="centered">
{{render "top"}}
</div>
</header>
{{render "flash"}}
<div id="main" class="main" role="main">
{{yield}}
<div class="centered">
{{render "flash"}}
<div id="main" class="main" role="main">
{{yield}}
{{outlet "left"}}
{{outlet "left"}}
</div>
</div>
</div>
<footer>
{{render "footer"}}
</footer>

View File

@ -4,12 +4,6 @@
<a href="#" {{action "showMyRepositories"}}>My Repositories</a>
</li>
{{#unless config.pro}}
<li id="tab_recent" {{bind-attr class="view.classRecent"}}>
{{#link-to "main.recent"}}Recent{{/link-to}}
</li>
{{/unless}}
{{#if config.pro}}
<li id="tab_running" {{bind-attr class="view.classRunning"}}>
<a href="#" {{action "showRunningJobs"}}>Running ({{startedJobsCount}}/{{allJobsCount}})</a>

View File

@ -70,4 +70,13 @@
{{/if}}
</li>
</ul>
</div>
</div>
{{#if showCta}}
<div class="cta">
<p>
<span class="arrow"></span>
Help make Open Source a better place and start building better software today!
</p>
</div>
{{/if}}

View File

@ -1,8 +1,29 @@
`import Ember from 'ember'`
Location = Ember.HistoryLocation.extend
init: ->
@_super.apply this, arguments
if auth = @get('auth')
# location's getURL is first called before we even
# get to routes, so autoSignIn won't be called in
# such case
auth.autoSignIn() unless auth.get('signedIn')
getURL: ->
location = @get('location')
location.pathname + location.search + location.hash
url = this._super.apply(this, arguments)
if location.pathname == '/'
if @get('auth.signedIn')
return '/repositories'
else
return '/home'
url
formatURL: (logicalPath) ->
if logicalPath == '/repositories' || logicalPath == '/home'
'/'
else
@_super.apply this, arguments
`export default Location`

6
app/views/home.coffee Normal file
View File

@ -0,0 +1,6 @@
`import BasicView from 'travis/views/basic'`
View = BasicView.extend
layoutName: 'layouts/landing-page'
`export default View`

View File

@ -29,7 +29,8 @@ module.exports = function(environment) {
pro: false,
enterprise: false,
endpoints: {},
intervals: { updateTimes: 1000 }
intervals: { updateTimes: 1000 },
statusPageStatusUrl: 'https://pnpcptp8xh9k.statuspage.io/api/v2/status.json'
};
if (typeof process !== 'undefined') {

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="20" height="12" version="1.1" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(10, 1), rotate(45)" fill="white">
<rect x="0" y="0" width="20" height="20"
style="fill: white; stroke-width: 2; stroke: #E4E4E4;" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 320 B

View File

@ -2,11 +2,10 @@
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="63.279px" height="62.667px" viewBox="0 -12.362 63.279 62.667" enable-background="new 0 -12.362 63.279 62.667"
xml:space="preserve">
<path fill="#9B9A89" d="M48.08,14.523c-1.927-7.34-8.605-12.754-16.55-12.754S16.906,7.184,14.98,14.523H1.529v8.533h13.403
c1.863,7.431,8.587,12.936,16.597,12.936s14.732-5.504,16.596-12.936h13.404v-8.533H48.08z M31.529,27.457
c-3.229,0-6.042-1.774-7.521-4.401c-0.701-1.248-1.103-2.688-1.103-4.221c0-1.571,0.42-3.043,1.154-4.312
c1.49-2.577,4.276-4.312,7.469-4.312s5.978,1.733,7.469,4.312c0.734,1.27,1.154,2.741,1.154,4.312c0,1.534-0.401,2.974-1.104,4.221
width="63.279px" height="62.667px" viewBox="0 0 63.279 62.667" enable-background="new 0 0 63.279 62.667" xml:space="preserve">
<path fill="#D0CFCE" d="M48.08,14.523c-1.927-7.34-8.604-12.754-16.55-12.754S16.906,7.184,14.98,14.523H1.529v8.533h13.403
c1.862,7.431,8.587,12.936,16.597,12.936s14.732-5.504,16.596-12.936h13.404v-8.533H48.08z M31.529,27.457
c-3.229,0-6.042-1.774-7.521-4.401c-0.7-1.248-1.103-2.688-1.103-4.221c0-1.571,0.42-3.043,1.154-4.312
c1.489-2.577,4.275-4.312,7.469-4.312s5.978,1.733,7.469,4.312c0.734,1.27,1.154,2.741,1.154,4.312c0,1.534-0.401,2.974-1.104,4.221
C37.571,25.683,34.758,27.457,31.529,27.457z"/>
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1009 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@ -0,0 +1,222 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="503.188px" height="128.655px" viewBox="0 0 503.188 128.655" enable-background="new 0 0 503.188 128.655"
xml:space="preserve">
<g opacity="0.2">
<path fill="#DCDDDE" d="M72.426,7.641c3.342,0,6.073,2.734,6.073,6.074v47.733H53.36h-6.134H7.641V13.715
c0-3.34,2.733-6.074,6.074-6.074H72.426 M72.426,0H13.715C6.153,0,0,6.153,0,13.715v47.733v7.641h7.641h39.585h6.134H78.5h7.641
v-7.641V13.715C86.141,6.153,79.988,0,72.426,0L72.426,0z"/>
<path fill="#DCDDDE" d="M155.836,7.641c3.341,0,6.074,2.734,6.074,6.074v47.733h-16.611h-8.354h-21.707h-8.633H91.052V13.715
c0-3.34,2.731-6.074,6.073-6.074H155.836 M155.836,0H97.125c-7.562,0-13.714,6.153-13.714,13.715v47.733v7.641h7.641h15.554h8.633
h21.707h8.354h16.611h7.641v-7.641V13.715C169.552,6.153,163.399,0,155.836,0L155.836,0z"/>
<path fill="#DCDDDE" d="M239.246,7.641c3.341,0,6.073,2.734,6.073,6.074v47.733h-10.971h-6.143h-35.127h-6.142H174.46V13.715
c0-3.34,2.733-6.074,6.073-6.074H239.246 M239.246,0h-58.712c-7.562,0-13.714,6.153-13.714,13.715v47.733v7.641h7.641h12.477h6.142
h35.127h6.143h10.971h7.641v-7.641V13.715C252.959,6.153,246.808,0,239.246,0L239.246,0z"/>
<path fill="#DCDDDE" d="M322.655,7.641c3.341,0,6.074,2.734,6.074,6.074v47.733h-11.992h-6.142h-35.127h-6.142h-11.455V13.715
c0-3.34,2.731-6.074,6.072-6.074H322.655 M322.655,0h-58.711c-7.562,0-13.713,6.153-13.713,13.715v47.733v7.641h7.641h11.455h6.142
h35.127h6.142h11.992h7.641v-7.641V13.715C336.37,6.153,330.217,0,322.655,0L322.655,0z"/>
<path fill="#DCDDDE" d="M406.064,7.641c3.341,0,6.073,2.734,6.073,6.074v47.733h-11.063h-6.142h-35.127h-6.142H341.28V13.715
c0-3.34,2.732-6.074,6.073-6.074H406.064 M406.064,0h-58.711c-7.562,0-13.714,6.153-13.714,13.715v47.733v7.641h7.641h12.384h6.142
h35.127h6.142h11.063h7.641v-7.641V13.715C419.778,6.153,413.626,0,406.064,0L406.064,0z"/>
<path fill="#DCDDDE" d="M489.474,7.641c3.341,0,6.073,2.734,6.073,6.074v47.733h-12.083h-6.142h-35.127h-6.141H424.69V13.715
c0-3.34,2.732-6.074,6.073-6.074H489.474 M489.474,0h-58.711c-7.562,0-13.714,6.153-13.714,13.715v47.733v7.641h7.641h11.365h6.141
h35.127h6.142h12.083h7.641v-7.641V13.715C503.188,6.153,497.037,0,489.474,0L489.474,0z"/>
<path fill="#DCDDDE" d="M78.5,65.686v49.255c0,3.341-2.731,6.073-6.073,6.073H13.715c-3.341,0-6.074-2.732-6.074-6.073V65.686
h39.585h6.134H78.5 M86.141,58.045H78.5H53.36h-6.134H7.641H0v7.641v49.255c0,7.562,6.153,13.714,13.715,13.714h58.711
c7.562,0,13.714-6.151,13.714-13.714V65.686V58.045L86.141,58.045z"/>
<path fill="#DCDDDE" d="M161.911,65.686v49.255c0,3.341-2.733,6.073-6.074,6.073H97.125c-3.342,0-6.073-2.732-6.073-6.073V65.686
h49.759h6.876H161.911 M169.552,58.045h-7.641h-14.224h-6.876H91.052h-7.641v7.641v49.255c0,7.562,6.152,13.714,13.714,13.714
h58.711c7.562,0,13.715-6.151,13.715-13.714V65.686V58.045L169.552,58.045z"/>
<path fill="#DCDDDE" d="M245.319,65.686v49.255c0,3.341-2.732,6.073-6.073,6.073h-58.712c-3.34,0-6.073-2.732-6.073-6.073V65.686
h12.448h6.131h35.204h6.13H245.319 M252.959,58.045h-7.641h-10.945h-6.13H193.04h-6.131H174.46h-7.641v7.641v49.255
c0,7.562,6.152,13.714,13.714,13.714h58.712c7.562,0,13.714-6.151,13.714-13.714V65.686V58.045L252.959,58.045z"/>
<path fill="#DCDDDE" d="M328.729,65.686v49.255c0,3.341-2.733,6.073-6.074,6.073h-58.711c-3.341,0-6.072-2.732-6.072-6.073V65.686
h11.427h6.132h35.203h6.131H328.729 M336.37,58.045h-7.641h-11.965h-6.131H275.43h-6.132h-11.427h-7.641v7.641v49.255
c0,7.562,6.152,13.714,13.713,13.714h58.711c7.562,0,13.715-6.151,13.715-13.714V65.686V58.045L336.37,58.045z"/>
<path fill="#DCDDDE" d="M412.137,65.686v49.255c0,3.341-2.732,6.073-6.073,6.073h-58.711c-3.341,0-6.073-2.732-6.073-6.073V65.686
h12.355h6.131h35.204h6.13H412.137 M419.778,58.045h-7.641H401.1h-6.13h-35.204h-6.131H341.28h-7.641v7.641v49.255
c0,7.562,6.151,13.714,13.714,13.714h58.711c7.562,0,13.714-6.151,13.714-13.714V65.686V58.045L419.778,58.045z"/>
<path fill="#DCDDDE" d="M495.547,65.686v49.255c0,3.341-2.732,6.073-6.073,6.073h-58.711c-3.341,0-6.073-2.732-6.073-6.073V65.686
h11.337h6.13h35.204h6.13H495.547 M503.188,58.045h-7.641h-12.057h-6.13h-35.204h-6.13H424.69h-7.641v7.641v49.255
c0,7.562,6.151,13.714,13.714,13.714h58.711c7.562,0,13.714-6.151,13.714-13.714V65.686V58.045L503.188,58.045z"/>
</g>
<g>
<path fill="#D0E8CF" d="M78.5,13.715c0-3.34-2.731-6.074-6.073-6.074H13.715c-3.341,0-6.074,2.734-6.074,6.074v47.733H78.5V13.715z
"/>
<path fill="#B3DBB2" d="M7.641,114.941c0,3.341,2.733,6.073,6.074,6.073h58.711c3.342,0,6.073-2.732,6.073-6.073V65.686H7.641
V114.941z"/>
<path fill="#D0E8CF" d="M161.911,13.715c0-3.34-2.733-6.074-6.074-6.074H97.125c-3.342,0-6.073,2.734-6.073,6.074v47.733h70.858
V13.715z"/>
<path fill="#B3DBB2" d="M91.052,114.941c0,3.341,2.731,6.073,6.073,6.073h58.711c3.341,0,6.074-2.732,6.074-6.073V65.686H91.052
V114.941z"/>
<path fill="#D0E8CF" d="M245.319,13.715c0-3.34-2.732-6.074-6.073-6.074h-58.712c-3.34,0-6.073,2.734-6.073,6.074v47.733h70.858
V13.715z"/>
<path fill="#B3DBB2" d="M174.46,114.941c0,3.341,2.733,6.073,6.073,6.073h58.712c3.341,0,6.073-2.732,6.073-6.073V65.686H174.46
V114.941z"/>
<path fill="#B3DBB2" d="M257.872,114.941c0,3.341,2.731,6.073,6.072,6.073h58.711c3.341,0,6.074-2.732,6.074-6.073V65.686h-70.857
V114.941z"/>
<path fill="#D0E8CF" d="M328.729,13.715c0-3.34-2.733-6.074-6.074-6.074h-58.711c-3.341,0-6.072,2.734-6.072,6.074v47.733h70.857
V13.715z"/>
<path fill="#B3DBB2" d="M341.28,114.941c0,3.341,2.732,6.073,6.073,6.073h58.711c3.341,0,6.073-2.732,6.073-6.073V65.686H341.28
V114.941z"/>
<path fill="#D0E8CF" d="M412.137,13.715c0-3.34-2.732-6.074-6.073-6.074h-58.711c-3.341,0-6.073,2.734-6.073,6.074v47.733h70.857
V13.715z"/>
<path fill="#D0E8CF" d="M495.547,13.715c0-3.34-2.732-6.074-6.073-6.074h-58.711c-3.341,0-6.073,2.734-6.073,6.074v47.733h70.857
V13.715z"/>
<path fill="#B3DBB2" d="M424.69,114.941c0,3.341,2.732,6.073,6.073,6.073h58.711c3.341,0,6.073-2.732,6.073-6.073V65.686H424.69
V114.941z"/>
</g>
<path fill="none" d="M360.328,73.917c0.39,3.474,1.185,6.719,2.386,9.737c1.2,3.02,2.97,5.536,5.308,7.547
c2.336,2.013,5.452,3.019,9.348,3.019c3.895,0,7.011-1.006,9.349-3.019c2.336-2.011,4.104-4.527,5.306-7.547
c1.201-3.019,1.997-6.264,2.386-9.737c0.328-2.919,0.51-5.655,0.562-8.23h-35.204C359.819,68.261,360,70.998,360.328,73.917z"/>
<path fill="none" d="M392.023,44.85c-1.202-2.984-2.97-5.485-5.306-7.498c-2.338-2.012-5.454-3.018-9.349-3.018
c-3.896,0-7.012,1.006-9.348,3.018c-2.338,2.013-4.107,4.514-5.308,7.498c-1.201,2.987-1.996,6.232-2.386,9.737
c-0.271,2.431-0.439,4.712-0.522,6.861h35.127c-0.083-2.149-0.253-4.431-0.523-6.861C394.02,51.083,393.224,47.837,392.023,44.85z"
/>
<path fill="#39A85B" d="M360.328,54.587c0.39-3.505,1.185-6.75,2.386-9.737c1.2-2.984,2.97-5.485,5.308-7.498
c2.336-2.012,5.452-3.018,9.348-3.018c3.895,0,7.011,1.006,9.349,3.018c2.336,2.013,4.104,4.514,5.306,7.498
c1.201,2.987,1.997,6.232,2.386,9.737c0.271,2.431,0.44,4.712,0.523,6.861h6.142c-0.11-3.073-0.398-6.204-0.871-9.393
c-0.617-4.153-1.785-7.919-3.505-11.296c-1.721-3.375-4.123-6.149-7.207-8.325c-3.083-2.174-7.124-3.262-12.122-3.262
c-4.935,0-8.959,1.088-12.074,3.262c-3.116,2.176-5.535,4.95-7.255,8.325c-1.722,3.377-2.89,7.143-3.506,11.296
c-0.472,3.169-0.758,6.3-0.87,9.393h6.142C359.888,59.299,360.057,57.018,360.328,54.587z"/>
<path fill="#39A85B" d="M394.409,73.917c-0.389,3.474-1.185,6.719-2.386,9.737c-1.202,3.02-2.97,5.536-5.306,7.547
c-2.338,2.013-5.454,3.019-9.349,3.019c-3.896,0-7.012-1.006-9.348-3.019c-2.338-2.011-4.107-4.527-5.308-7.547
c-1.201-3.019-1.996-6.264-2.386-9.737c-0.327-2.919-0.509-5.655-0.562-8.23h-6.131c0.062,3.529,0.352,7.131,0.898,10.812
c0.616,4.155,1.784,7.921,3.506,11.295c1.72,3.377,4.139,6.136,7.255,8.277c3.115,2.142,7.14,3.214,12.074,3.214
c4.998,0,9.039-1.072,12.122-3.214c3.084-2.142,5.486-4.9,7.207-8.277c1.72-3.374,2.888-7.14,3.505-11.295
c0.542-3.655,0.832-7.257,0.897-10.812h-6.13C394.918,68.261,394.737,70.998,394.409,73.917z"/>
<path fill="#39A85B" d="M64.526,56.537c0.959-2.384,1.441-5.032,1.441-7.947c0-3.243-0.547-6.092-1.64-8.542
s-2.616-4.486-4.569-6.109c-1.954-1.622-4.238-2.847-6.854-3.676c-2.617-0.827-5.449-1.242-8.494-1.242
c-3.774,0-7.069,0.614-9.883,1.838c-2.816,1.227-5.15,2.931-7.004,5.116c-1.854,2.185-3.229,4.785-4.122,7.798
c-0.894,3.014-1.308,6.308-1.241,9.884h6.258c-0.066-2.583,0.182-5.032,0.745-7.351c0.562-2.317,1.473-4.371,2.731-6.159
c1.258-1.788,2.896-3.211,4.917-4.271c2.019-1.06,4.453-1.59,7.302-1.59c2.118,0,4.122,0.314,6.009,0.943
c1.888,0.631,3.542,1.557,4.967,2.781c1.423,1.227,2.549,2.717,3.378,4.47c0.827,1.756,1.241,3.76,1.241,6.011
c0,2.78-0.481,5.182-1.44,7.201c-0.935,1.967-2.328,3.886-4.172,5.757h7.785C62.939,59.917,63.823,58.282,64.526,56.537z"/>
<path fill="#39A85B" d="M47.441,67.016c-2.418,1.688-4.852,3.345-7.302,4.967c-2.45,1.623-4.834,3.312-7.151,5.066
c-2.319,1.755-4.405,3.691-6.258,5.811c-1.854,2.12-3.345,4.504-4.47,7.152c-1.127,2.649-1.724,5.696-1.789,9.139h45.793v-5.762
H27.624c0.397-2.317,1.391-4.453,2.98-6.407c1.589-1.952,3.427-3.758,5.513-5.413s4.255-3.162,6.507-4.52
c2.25-1.357,4.205-2.599,5.86-3.726c2.317-1.456,4.52-3.029,6.605-4.718c1.145-0.927,2.212-1.903,3.218-2.92h-9.048
C48.668,66.137,48.064,66.581,47.441,67.016z"/>
<polygon fill="#39A85B" points="134.352,38.755 134.55,38.755 134.55,61.449 140.312,61.449 140.312,29.617 134.649,29.617
112.469,61.449 118.627,61.449 "/>
<polygon fill="#39A85B" points="134.55,76.602 108.127,76.602 115.691,65.686 109.517,65.686 102.465,75.807 102.465,81.867
134.55,81.867 134.55,99.151 140.312,99.151 140.312,81.867 150.742,81.867 150.742,76.602 140.312,76.602 140.312,65.686
134.55,65.686 "/>
<g>
<path fill="none" d="M195.434,70.351c-0.768,2.234-1.15,4.649-1.15,7.25c0,2.467,0.333,4.8,1,7c0.666,2.2,1.716,4.117,3.15,5.75
c1.433,1.634,3.25,2.917,5.45,3.85c2.2,0.935,4.833,1.4,7.899,1.4c2.533,0,4.816-0.483,6.851-1.45c2.032-0.966,3.8-2.266,5.3-3.9
c1.5-1.633,2.65-3.55,3.45-5.75c0.8-2.199,1.2-4.5,1.2-6.899c0-2.533-0.385-4.933-1.15-7.2c-0.635-1.875-1.512-3.534-2.603-5
h-26.727C196.968,66.862,196.067,68.503,195.434,70.351z"/>
<path fill="none" d="M461.549,59.101c-2.734,0-5.185,0.484-7.35,1.45c-0.576,0.257-1.126,0.543-1.655,0.85H470.3
c-0.511-0.307-1.042-0.593-1.601-0.85C466.599,59.585,464.215,59.101,461.549,59.101z"/>
<path fill="none" d="M294.008,58.301c-3.2,0-6.167,0.717-8.9,2.149c-0.552,0.289-1.077,0.61-1.588,0.95h20.799
c-0.956-0.656-1.991-1.225-3.11-1.7C299.008,58.768,296.608,58.301,294.008,58.301z"/>
<path fill="none" d="M211.684,59.101c-2.734,0-5.185,0.484-7.35,1.45c-0.577,0.257-1.125,0.543-1.655,0.85h17.755
c-0.511-0.307-1.042-0.593-1.601-0.85C216.734,59.585,214.35,59.101,211.684,59.101z"/>
<path fill="#39A85B" d="M193.684,55.151c0.466-3.633,1.4-7.016,2.8-10.15c1.4-3.133,3.366-5.732,5.9-7.8
c2.532-2.065,5.833-3.1,9.899-3.1s7.383,1.2,9.95,3.6c2.565,2.4,4.116,5.534,4.65,9.4h6.3c-0.734-6.2-2.935-10.8-6.6-13.8
c-3.668-3-8.635-4.5-14.9-4.5c-3.8,0-7.067,0.667-9.8,2c-2.734,1.334-5.018,3.066-6.851,5.199c-1.834,2.135-3.3,4.518-4.399,7.15
c-1.101,2.635-1.95,5.234-2.55,7.8c-0.601,2.567-0.984,4.984-1.15,7.25c-0.087,1.188-0.15,2.25-0.192,3.2h6.367
C193.221,59.391,193.406,57.315,193.684,55.151z"/>
<path fill="#39A85B" d="M227.434,70.713c0.766,2.268,1.15,4.667,1.15,7.2c0,2.399-0.4,4.7-1.2,6.899c-0.8,2.2-1.95,4.117-3.45,5.75
c-1.5,1.635-3.268,2.935-5.3,3.9c-2.034,0.967-4.317,1.45-6.851,1.45c-3.066,0-5.699-0.466-7.899-1.4
c-2.2-0.933-4.018-2.216-5.45-3.85c-1.435-1.633-2.484-3.55-3.15-5.75c-0.667-2.2-1-4.533-1-7c0-2.601,0.383-5.016,1.15-7.25
c0.633-1.848,1.534-3.489,2.671-4.95h-4.921h-0.2h-6.285c0.075,6.122,0.549,11.346,1.435,15.65c0.966,4.699,2.45,8.517,4.45,11.449
c2,2.935,4.532,5.051,7.6,6.351c3.065,1.3,6.732,1.95,11,1.95c3.466,0,6.65-0.585,9.55-1.75c2.9-1.166,5.4-2.801,7.5-4.9
c2.101-2.1,3.733-4.6,4.9-7.5c1.165-2.9,1.75-6.05,1.75-9.45c0-3.399-0.55-6.532-1.65-9.399c-0.321-0.838-0.693-1.631-1.091-2.4
h-7.311C225.922,67.179,226.799,68.838,227.434,70.713z"/>
<path fill="#39A85B" d="M204.334,60.551c2.165-0.966,4.615-1.45,7.35-1.45c2.666,0,5.05,0.484,7.15,1.45
c0.559,0.257,1.089,0.543,1.601,0.85h9.021c-0.287-0.337-0.563-0.682-0.871-1c-2-2.065-4.418-3.683-7.25-4.85
c-2.835-1.166-6.018-1.75-9.551-1.75c-4,0-7.684,1.066-11.05,3.199c-1.956,1.24-3.616,2.711-4.998,4.4h6.943
C203.209,61.094,203.758,60.808,204.334,60.551z"/>
<path fill="#39A85B" d="M285.108,60.451c2.733-1.433,5.7-2.149,8.9-2.149c2.6,0,5,0.467,7.2,1.399
c1.119,0.476,2.154,1.044,3.11,1.7h8.909c-0.432-0.556-0.886-1.091-1.37-1.6c-2.034-2.133-4.5-3.801-7.399-5
c-2.9-1.2-6.15-1.801-9.75-1.801c-2.801,0-5.535,0.567-8.2,1.7c-2.667,1.135-4.867,2.734-6.601,4.8l-0.199-0.199l4.5-23.2h30.6
v-5.8h-35l-5.826,31.1h9.538C284.031,61.061,284.556,60.74,285.108,60.451z"/>
<path fill="#39A85B" d="M310.558,69.583c0.9,2.199,1.35,4.6,1.35,7.199c0,2.535-0.399,4.95-1.199,7.25
c-0.801,2.301-1.968,4.335-3.5,6.101c-1.535,1.767-3.367,3.167-5.5,4.2c-2.135,1.034-4.567,1.55-7.301,1.55
c-2.399,0-4.634-0.383-6.699-1.15c-2.067-0.766-3.867-1.865-5.4-3.3c-1.534-1.433-2.75-3.15-3.65-5.15
c-0.899-2-1.384-4.199-1.449-6.6h-6.301c0.066,3.334,0.7,6.334,1.9,9c1.2,2.667,2.815,4.917,4.85,6.75
c2.033,1.834,4.434,3.234,7.2,4.2c2.766,0.966,5.783,1.45,9.05,1.45c3.333,0,6.483-0.585,9.45-1.75
c2.966-1.166,5.55-2.801,7.75-4.9s3.933-4.6,5.2-7.5c1.266-2.9,1.9-6.05,1.9-9.45c0-3.532-0.551-6.782-1.65-9.75
c-0.263-0.708-0.556-1.39-0.871-2.05h-7.31C309.239,66.868,309.976,68.16,310.558,69.583z"/>
<path fill="#39A85B" d="M479.301,70.713c0.766,2.268,1.15,4.667,1.15,7.2c0,2.399-0.4,4.7-1.2,6.899c-0.8,2.2-1.95,4.117-3.45,5.75
c-1.5,1.635-3.268,2.935-5.3,3.9c-2.034,0.967-4.317,1.45-6.851,1.45c-3.066,0-5.699-0.466-7.899-1.4
c-2.2-0.933-4.018-2.216-5.45-3.85c-1.435-1.633-2.484-3.55-3.15-5.75c-0.667-2.2-1-4.533-1-7c0-2.601,0.383-5.016,1.15-7.25
c0.634-1.848,1.534-3.489,2.671-4.95h-4.921h-0.2h-6.284c0.074,6.122,0.548,11.346,1.435,15.65c0.966,4.699,2.45,8.517,4.45,11.449
c2,2.935,4.532,5.051,7.6,6.351c3.065,1.3,6.732,1.95,11,1.95c3.466,0,6.65-0.585,9.55-1.75c2.9-1.166,5.4-2.801,7.5-4.9
c2.101-2.1,3.733-4.6,4.9-7.5c1.165-2.9,1.75-6.05,1.75-9.45c0-3.399-0.55-6.532-1.65-9.399c-0.321-0.838-0.693-1.631-1.092-2.4
h-7.311C477.79,67.179,478.666,68.838,479.301,70.713z"/>
<path fill="#39A85B" d="M445.551,55.151c0.466-3.633,1.4-7.016,2.8-10.15c1.4-3.133,3.366-5.732,5.9-7.8
c2.532-2.065,5.833-3.1,9.899-3.1s7.383,1.2,9.95,3.6c2.565,2.4,4.116,5.534,4.65,9.4h6.3c-0.734-6.2-2.935-10.8-6.6-13.8
c-3.668-3-8.635-4.5-14.9-4.5c-3.8,0-7.067,0.667-9.8,2c-2.734,1.334-5.018,3.066-6.851,5.199c-1.834,2.135-3.3,4.518-4.399,7.15
c-1.101,2.635-1.95,5.234-2.55,7.8c-0.601,2.567-0.984,4.984-1.15,7.25c-0.088,1.188-0.15,2.25-0.192,3.2h6.367
C445.088,59.391,445.273,57.315,445.551,55.151z"/>
<path fill="#39A85B" d="M454.2,60.551c2.165-0.966,4.615-1.45,7.35-1.45c2.666,0,5.05,0.484,7.15,1.45
c0.559,0.257,1.09,0.543,1.601,0.85h9.021c-0.286-0.337-0.563-0.682-0.871-1c-2-2.065-4.418-3.683-7.25-4.85
c-2.835-1.166-6.018-1.75-9.551-1.75c-4,0-7.684,1.066-11.05,3.199c-1.956,1.24-3.615,2.711-4.997,4.4h6.942
C453.074,61.094,453.624,60.808,454.2,60.551z"/>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M21.776,66.719c0,1.577-0.896,2.867-1.993,2.867s-1.993-1.29-1.993-2.867v-7.713
c0-1.577,0.896-2.867,1.993-2.867s1.993,1.29,1.993,2.867V66.719z"/>
</g>
<g>
<path fill="#FFFFFF" d="M69.522,66.719c0,1.577-0.896,2.867-1.993,2.867s-1.993-1.29-1.993-2.867v-7.713
c0-1.577,0.896-2.867,1.993-2.867s1.993,1.29,1.993,2.867V66.719z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M104.366,66.719c0,1.577-0.897,2.867-1.994,2.867c-1.096,0-1.993-1.29-1.993-2.867v-7.713
c0-1.577,0.897-2.867,1.993-2.867c1.097,0,1.994,1.29,1.994,2.867V66.719z"/>
</g>
<g>
<path fill="#FFFFFF" d="M152.112,66.719c0,1.577-0.897,2.867-1.994,2.867c-1.096,0-1.993-1.29-1.993-2.867v-7.713
c0-1.577,0.897-2.867,1.993-2.867c1.097,0,1.994,1.29,1.994,2.867V66.719z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M271.071,66.719c0,1.577-0.896,2.867-1.993,2.867s-1.993-1.29-1.993-2.867v-7.713
c0-1.577,0.896-2.867,1.993-2.867s1.993,1.29,1.993,2.867V66.719z"/>
</g>
<g>
<path fill="#FFFFFF" d="M318.817,66.719c0,1.577-0.896,2.867-1.993,2.867s-1.993-1.29-1.993-2.867v-7.713
c0-1.577,0.896-2.867,1.993-2.867s1.993,1.29,1.993,2.867V66.719z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M355.188,66.719c0,1.577-0.896,2.867-1.993,2.867s-1.993-1.29-1.993-2.867v-7.713
c0-1.577,0.896-2.867,1.993-2.867s1.993,1.29,1.993,2.867V66.719z"/>
</g>
<g>
<path fill="#FFFFFF" d="M402.935,66.719c0,1.577-0.897,2.867-1.993,2.867c-1.097,0-1.994-1.29-1.994-2.867v-7.713
c0-1.577,0.897-2.867,1.994-2.867c1.096,0,1.993,1.29,1.993,2.867V66.719z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M438.542,66.719c0,1.577-0.897,2.867-1.994,2.867c-1.096,0-1.993-1.29-1.993-2.867v-7.713
c0-1.577,0.897-2.867,1.993-2.867c1.097,0,1.994,1.29,1.994,2.867V66.719z"/>
</g>
<g>
<path fill="#FFFFFF" d="M486.288,66.719c0,1.577-0.897,2.867-1.994,2.867c-1.096,0-1.993-1.29-1.993-2.867v-7.713
c0-1.577,0.897-2.867,1.993-2.867c1.097,0,1.994,1.29,1.994,2.867V66.719z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M187.717,66.719c0,1.577-0.896,2.867-1.992,2.867c-1.097,0-1.994-1.29-1.994-2.867v-7.713
c0-1.577,0.897-2.867,1.994-2.867c1.096,0,1.992,1.29,1.992,2.867V66.719z"/>
</g>
<g>
<path fill="#FFFFFF" d="M235.464,66.719c0,1.577-0.897,2.867-1.993,2.867c-1.098,0-1.994-1.29-1.994-2.867v-7.713
c0-1.577,0.896-2.867,1.994-2.867c1.096,0,1.993,1.29,1.993,2.867V66.719z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="127.108px" height="26.356px" viewBox="0 0 127.108 26.356" enable-background="new 0 0 127.108 26.356"
xml:space="preserve">
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M59.963,13.366c0-3.516,0-7.033,0.002-10.547
c0-0.301,0.002-0.602,0.015-0.9c0.013-0.35,0.196-0.536,0.546-0.596c1.389-0.24,2.775-0.496,4.164-0.734
c0.406-0.068,0.678,0.095,0.698,0.532c0.021,0.472,0.02,0.943,0.02,1.415c0.001,1.757-0.013,3.515,0.003,5.273
c0.009,0.939,0.03,0.934,0.934,0.785c1.732-0.285,3.442-0.433,5.221-0.132c2.51,0.423,3.963,2.167,4.086,4.701
c0.118,2.395,0.152,4.809-0.006,7.199c-0.213,3.217-1.806,4.904-5.05,5.621c-2.261,0.498-4.58,0.455-6.894,0.119
c-0.84-0.121-1.689-0.236-2.54-0.32c-1.117-0.109-1.184-0.172-1.194-1.354c-0.012-1.457-0.002-2.916-0.004-4.373
C59.963,17.825,59.963,15.594,59.963,13.366z M65.414,17.637c0,1.07,0.009,2.143-0.004,3.215
c-0.008,0.523,0.186,0.809,0.744,0.793c0.686-0.016,1.378,0.041,2.059-0.025c1.102-0.107,1.781-0.855,1.798-1.953
c0.022-1.674,0.022-3.346,0.001-5.018c-0.016-1.104-0.541-1.619-1.643-1.725c-0.748-0.074-1.439,0.17-2.139,0.359
c-0.557,0.154-0.842,0.521-0.825,1.137C65.432,15.493,65.412,16.565,65.414,17.637z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M117.057,15.479c1.097-1.729,2.195-3.459,3.291-5.19
c0.229-0.361,0.459-0.723,0.678-1.091c0.291-0.489,0.707-0.699,1.28-0.69c1.331,0.019,2.659-0.014,3.987,0.014
c0.893,0.017,1.014,0.23,0.553,0.977c-1.328,2.149-2.637,4.311-4.045,6.409c-0.566,0.848-0.543,1.475-0.013,2.322
c1.387,2.211,2.679,4.484,4.001,6.736c0.527,0.902,0.438,1.059-0.643,1.076c-1.242,0.018-2.488-0.025-3.729,0.014
c-0.748,0.023-1.171-0.314-1.526-0.936c-1.068-1.855-2.18-3.686-3.281-5.521c-0.171-0.285-0.311-0.607-0.756-0.852
c0,0.705,0,1.332,0,1.957c0,1.416,0.018,2.83-0.009,4.246c-0.019,0.912-0.17,1.066-1.048,1.086c-1.242,0.029-2.488,0.027-3.73,0
c-0.781-0.016-0.83-0.1-0.875-0.93c-0.012-0.213-0.002-0.43-0.002-0.645c0-7.16,0-14.322,0-21.484
c0-0.258,0.004-0.515,0.007-0.772c0.005-0.492,0.214-0.805,0.729-0.895c1.346-0.237,2.687-0.502,4.033-0.73
c0.516-0.087,0.824,0.181,0.872,0.699c0.031,0.341,0.022,0.685,0.022,1.027c0,3.946,0,7.891,0,11.836c0,0.426,0,0.852,0,1.275
C116.922,15.44,116.989,15.459,117.057,15.479z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M53.413,19.073c-1.2,0-2.399-0.014-3.601,0.008
c-0.398,0.008-0.896-0.172-1.111,0.381c-0.19,0.494,0.027,1.312,0.471,1.639c0.455,0.334,0.965,0.533,1.551,0.543
c2.012,0.029,4.02,0.02,6.002-0.402c1.048-0.223,1.178-0.104,1.194,1.006c0.015,0.857,0,1.715,0,2.572
c0.001,0.551-0.233,0.846-0.806,0.961c-2.79,0.553-5.588,0.787-8.406,0.279c-3.882-0.701-5.222-2.859-5.641-6.197
c-0.262-2.096-0.248-4.264,0.135-6.398c0.398-2.226,1.551-3.808,3.675-4.547c2.856-0.992,5.702-0.972,8.481,0.372
c1.613,0.78,2.414,2.182,2.772,3.806c0.36,1.629,0.376,3.312,0.29,4.982c-0.041,0.797-0.203,0.967-1.021,0.986
c-1.328,0.027-2.656,0.006-3.985,0.006C53.413,19.071,53.413,19.071,53.413,19.073z M50.639,15.2c0-0.002,0-0.006,0-0.01
c0.512,0,1.023,0.006,1.535-0.004c0.35-0.004,0.522-0.186,0.58-0.541c0.191-1.164-0.621-2.111-1.913-2.207
c-1.185-0.09-2.165,0.725-2.186,1.812c-0.017,0.783,0.081,0.904,0.833,0.947C49.871,15.219,50.256,15.2,50.639,15.2z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M92.676,17.25c0,1.07,0.074,2.148-0.016,3.213
c-0.16,1.883-0.971,3.463-2.574,4.523c-1.277,0.848-2.745,1.189-4.256,1.289c-1.196,0.078-2.393,0.023-3.571-0.262
c-2.706-0.654-4.767-2.467-5.097-5.393c-0.275-2.445-0.32-4.865,0.086-7.281c0.326-1.956,1.492-3.437,3.262-4.197
c2.955-1.272,6.006-1.273,8.959,0.104c2.109,0.984,3.037,2.808,3.2,5.046c0.071,0.98,0.013,1.971,0.013,2.957
C92.68,17.25,92.678,17.25,92.676,17.25z M82.631,17.278c0,0.812-0.002,1.623,0,2.436c0,0.387,0.043,0.752,0.305,1.08
c0.615,0.77,1.854,1.1,2.93,0.746c0.894-0.291,1.355-0.955,1.372-2.074c0.022-1.408,0.022-2.816,0.001-4.227
c-0.025-1.879-1.971-2.974-3.619-2.045c-0.633,0.357-1.026,0.865-0.996,1.652C82.656,15.657,82.631,16.467,82.631,17.278z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M94.193,16.963c0.092-1.049-0.137-2.375,0.172-3.695
c0.588-2.524,2.205-4.029,4.627-4.641c2.277-0.576,4.566-0.526,6.819,0.271c1.733,0.616,2.889,1.803,3.534,3.479
c0.273,0.709,0.5,1.487,0.516,2.239c0.045,2.221,0.266,4.455-0.231,6.654c-0.493,2.174-1.813,3.643-3.903,4.406
c-2.244,0.816-4.537,0.801-6.818,0.23c-2.85-0.711-4.658-3.047-4.715-5.975C94.178,19.034,94.193,18.133,94.193,16.963z
M104.244,17.356c0,0,0.002,0,0.004,0c0-0.773,0-1.545,0-2.316c0-0.043,0-0.084-0.002-0.129c-0.039-0.977-0.516-1.623-1.407-1.902
c-1.72-0.537-3.139,0.422-3.198,2.215c-0.047,1.369-0.004,2.742-0.014,4.113c-0.007,0.814,0.147,1.582,0.943,1.961
c0.922,0.439,1.898,0.566,2.826-0.02c0.531-0.336,0.873-0.797,0.854-1.482C104.225,18.983,104.244,18.168,104.244,17.356z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M26.532,19.411c0,1.887,0.014,3.773-0.007,5.66
c-0.008,0.887-0.082,0.951-0.957,0.973c-0.943,0.023-1.887,0.008-2.831,0.004c-0.255-0.002-0.61,0.047-0.71-0.189
c-0.381-0.887-0.973-0.451-1.495-0.27c-1.263,0.436-2.53,0.75-3.89,0.717c-3.487-0.084-5.352-2.895-4.953-6.109
c0.059-0.465,0.154-0.932,0.301-1.375c0.498-1.518,1.732-2.182,3.148-2.551c0.867-0.227,1.764-0.336,2.672-0.289
c0.599,0.031,1.205,0.051,1.799-0.01c0.498-0.049,1.184,0.338,1.435-0.439c0.183-0.568-0.322-1.709-0.831-2.033
c-0.455-0.291-0.961-0.33-1.483-0.328c-1.372,0.008-2.745,0.01-4.116,0c-1.246-0.01-1.246-0.021-1.053-1.21
c0.143-0.886,0.059-1.79,0.289-2.678c0.129-0.491,0.279-0.776,0.816-0.764c2.607,0.062,5.238-0.251,7.817,0.295
c2.544,0.538,3.724,1.957,4.036,5.066c0.01,0.086,0.003,0.172,0.003,0.258c0,1.758,0,3.516,0,5.273
C26.525,19.411,26.529,19.411,26.532,19.411z M19.371,19.86c0,0.008,0,0.014,0,0.021c-0.381,0-0.768-0.035-1.146,0.008
c-0.578,0.066-0.91,0.412-0.957,1.006c-0.049,0.633,0.252,1.139,0.855,1.225c0.756,0.109,1.523,0.139,2.244-0.232
c0.648-0.334,0.88-0.848,0.688-1.57c-0.158-0.598-0.651-0.418-1.045-0.453C19.797,19.844,19.584,19.86,19.371,19.86z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M2.816,19.547c0-1.803,0.014-3.602-0.004-5.402
c-0.01-0.908-0.055-0.93-0.943-0.973c-1.861-0.092-1.861-0.092-1.862-1.961c0-0.558-0.021-1.116,0.008-1.672
c0.042-0.815,0.198-0.954,0.99-1.024c0.544-0.049,1.214,0.227,1.606-0.184c0.467-0.492,0.156-1.229,0.201-1.858
c0.055-0.809-0.105-1.637,0.109-2.431c0.689-2.55,2.113-3.751,5-3.992c1.191-0.101,2.398-0.016,3.6-0.026
c0.498-0.004,0.835,0.15,0.834,0.718c-0.002,1.07,0,2.143,0,3.215c0,0.469-0.227,0.715-0.703,0.719
c-0.6,0.005-1.201-0.021-1.799,0.023c-1.002,0.078-1.465,0.55-1.576,1.526C8.266,6.31,8.266,6.395,8.266,6.48
c0.001,2.372-0.189,2.002,1.939,2.035c0.473,0.008,0.943,0.008,1.416,0.005c0.555-0.006,0.785,0.28,0.713,0.809
c-0.148,1.057-0.328,2.108-0.463,3.166c-0.061,0.479-0.305,0.674-0.762,0.67c-0.471-0.002-0.943,0.002-1.414,0.004
c-1.426,0.008-1.433,0.008-1.434,1.389c-0.002,3.258,0,6.514,0.002,9.771c0.004,1.854,0.077,1.717-1.771,1.719
c-0.9,0-1.801,0.016-2.701-0.008c-0.881-0.021-0.957-0.086-0.966-0.965C2.804,23.233,2.818,21.389,2.816,19.547z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M33.723,17.342c0,0.729-0.012,1.457,0.002,2.186
c0.027,1.428,0.582,2.021,2.016,2.105c1.544,0.092,3.076-0.027,4.594-0.344c0.25-0.053,0.502-0.119,0.756-0.133
c0.352-0.021,0.584,0.166,0.589,0.525c0.015,1.115,0.019,2.23,0.004,3.344c-0.005,0.383-0.223,0.641-0.613,0.719
c-2.571,0.502-5.151,0.904-7.755,0.26c-2.721-0.674-4.619-2.498-5.049-5.621c-0.312-2.27-0.361-4.533,0.082-6.766
c0.489-2.448,1.926-4.167,4.413-4.853c1.878-0.52,3.769-0.692,5.71-0.312c0.748,0.147,1.533,0.12,2.279,0.332
c0.84,0.239,0.93,0.334,0.949,1.256c0.018,0.815,0.021,1.63-0.003,2.443c-0.026,0.9-0.2,1.029-1.112,0.861
c-1.515-0.281-3.035-0.506-4.584-0.434c-0.432,0.02-0.843,0.074-1.248,0.246c-0.666,0.287-1.02,0.76-1.021,1.482
c-0.003,0.902,0,1.803,0,2.703C33.728,17.342,33.725,17.342,33.723,17.342z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@ -0,0 +1,80 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="125.746px" height="37.983px" viewBox="0.344 -5.286 125.746 37.983" enable-background="new 0.344 -5.286 125.746 37.983"
xml:space="preserve">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M31.017,13.696c0,5.044,0,10.088,0,15.134
c0,2.371-1.496,3.867-3.869,3.867c-7.598,0.001-15.195,0.001-22.791,0c-2.443-0.003-4.008-1.545-4.01-3.971
c-0.005-9.988-0.005-19.976,0-29.964c0-2.062,0.999-3.476,2.755-3.953c0.319-0.088,0.64-0.092,0.964-0.094
c7.779-0.001,15.559-0.002,23.338,0.002c2.086,0,3.609,1.522,3.61,3.602c0.005,5.126,0.001,10.252,0.001,15.377
C31.017,13.696,31.017,13.696,31.017,13.696z M1.704,13.699c0,4.923,0.037,9.849-0.021,14.771C1.665,30.023,2.8,31.38,4.537,31.365
c7.456-0.062,14.913-0.024,22.37-0.027c1.787,0,2.827-1.034,2.828-2.827c0.002-9.889,0.002-19.776-0.002-29.666
c0-0.26-0.014-0.528-0.074-0.781c-0.332-1.362-1.289-2.065-2.834-2.066C19.45-4.007,12.073-4.006,4.698-4.006
c-1.979,0-2.992,1.012-2.993,2.994C1.704,3.893,1.705,8.796,1.704,13.699z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M38.284,13.415c0-3.424-0.002-6.848,0.001-10.271
c0.001-0.813,0.038-0.849,0.864-0.853c0.588-0.004,1.176-0.004,1.764,0c0.781,0.005,0.803,0.025,0.803,0.833
c0.003,1.904-0.002,3.809,0.003,5.714c0.002,0.733,0.006,0.722,0.696,0.51c1.787-0.548,3.592-1.026,5.487-0.777
c2.083,0.274,3.365,1.642,3.394,3.769c0.052,3.87,0.014,7.74,0.027,11.609c0.001,0.467-0.213,0.597-0.629,0.59
c-0.689-0.013-1.379-0.026-2.066,0.006c-0.557,0.023-0.75-0.198-0.744-0.747c0.02-1.985,0.008-3.971,0.006-5.956
c0-1.661,0.004-3.322,0-4.984c-0.002-1.09-0.361-1.438-1.47-1.439c-1.482-0.004-2.878,0.398-4.263,0.875
c-0.472,0.163-0.438,0.526-0.438,0.889c-0.003,2.674-0.002,5.349-0.002,8.021c0,0.853,0.002,1.703-0.001,2.554
c-0.003,0.741-0.038,0.774-0.802,0.78c-0.566,0.002-1.134,0.002-1.701,0c-0.904-0.003-0.929-0.024-0.93-0.912
C38.282,20.22,38.282,16.818,38.284,13.415z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M100.934,8.72c0,1.804-0.009,3.606,0.01,5.408
c0.003,0.288-0.206,0.752,0.238,0.831c0.471,0.083,1.015,0.241,1.438-0.191c0.625-0.64,1.164-1.348,1.678-2.077
c0.713-1.015,1.308-2.098,1.812-3.227c0.175-0.392,0.408-0.545,0.835-0.531c0.851,0.026,1.701,0.004,2.552,0.01
c0.658,0.005,0.711,0.079,0.411,0.644c-1.069,2.011-2.321,3.9-3.909,5.542c-0.43,0.444-0.431,0.734-0.062,1.216
c1.779,2.32,3.272,4.822,4.58,7.438c0.335,0.671,0.29,0.748-0.462,0.752c-0.871,0.007-1.742-0.014-2.613,0.008
c-0.453,0.012-0.687-0.171-0.853-0.594c-0.895-2.275-2.032-4.413-3.677-6.249c-0.258-0.287-1.518-0.469-1.817-0.257
c-0.224,0.156-0.155,0.402-0.156,0.615c-0.006,1.903-0.021,3.809,0.007,5.712c0.009,0.578-0.172,0.809-0.762,0.775
c-0.666-0.036-1.338-0.032-2.004,0c-0.539,0.023-0.697-0.198-0.695-0.717c0.017-3.16,0.009-6.319,0.009-9.479
c-0.001-3.747-0.001-7.494,0.001-11.242c0-0.794,0.02-0.811,0.82-0.814c0.609-0.003,1.217,0.028,1.822-0.009
c0.597-0.038,0.822,0.155,0.811,0.786C100.909,4.952,100.934,6.836,100.934,8.72z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M62.784,17.276c-1.498,0-2.998,0.016-4.497-0.008
c-0.502-0.009-0.688,0.161-0.665,0.668c0.034,0.712,0.115,1.414,0.303,2.1c0.353,1.302,1.033,1.849,2.39,1.926
c1.876,0.106,3.659-0.335,5.415-0.927c1.023-0.345,1.023-0.347,1.245,0.702c0.35,1.646,0.348,1.643-1.263,2.21
c-2.029,0.713-4.094,1.148-6.258,0.889c-3.246-0.39-4.735-1.798-5.109-5.067c-0.367-3.219-0.219-6.429,0.494-9.604
c0.11-0.494,0.344-0.767,0.838-0.902c2.51-0.682,5.057-0.963,7.638-0.634c2.606,0.332,4.062,2.032,4.405,4.952
c0.123,1.049,0.112,2.101,0.131,3.152c0.008,0.43-0.148,0.558-0.568,0.551C65.784,17.264,64.284,17.276,62.784,17.276z
M61.021,14.901c0.951,0,1.902,0.001,2.854-0.001c0.223-0.002,0.439,0.008,0.534-0.281c0.466-1.444-0.61-3.087-2.137-3.183
c-1.253-0.079-2.508-0.015-3.757,0.132c-0.426,0.05-0.653,0.264-0.705,0.69c-0.081,0.683-0.179,1.362-0.197,2.053
c-0.014,0.461,0.182,0.604,0.614,0.595C59.157,14.89,60.089,14.901,61.021,14.901z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M94.61,16.603c0.063,1.41-0.101,2.811-0.602,4.159
c-0.799,2.152-2.339,3.461-4.573,3.921c-2.049,0.42-4.068,0.326-6.009-0.534c-1.099-0.488-1.96-1.274-2.423-2.366
c-1.35-3.183-1.369-6.424-0.102-9.628c0.787-1.986,2.409-3.028,4.46-3.455c1.265-0.263,2.536-0.259,3.804-0.063
c3.08,0.474,4.887,2.354,5.311,5.465C94.588,14.926,94.638,15.751,94.61,16.603z M91.29,16.598c0-0.974-0.063-1.938-0.307-2.888
c-0.342-1.332-1.197-2.049-2.547-2.251c-2.625-0.393-4.292,0.601-4.807,2.986c-0.377,1.741-0.349,3.506,0.074,5.238
c0.292,1.194,1.028,1.988,2.312,2.195c0.707,0.111,1.414,0.148,2.115,0.049c1.287-0.181,2.185-0.892,2.669-2.11
C91.212,18.782,91.292,17.697,91.29,16.598z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M126.076,15.784c0,1.986-0.019,3.971,0.012,5.956
c0.008,0.548-0.189,0.84-0.673,1.075c-2.374,1.161-4.848,1.941-7.501,2.082c-0.875,0.048-1.742,0.017-2.583-0.264
c-1.43-0.474-2.125-1.555-2.381-2.962c-0.09-0.495-0.114-1.006-0.116-1.511c-0.009-3.465-0.006-6.93-0.004-10.394
c0.001-0.799,0.029-0.821,0.815-0.827c0.668-0.004,1.339,0.025,2.005-0.022c0.504-0.036,0.613,0.161,0.611,0.624
c-0.015,3.587-0.009,7.173-0.008,10.758c0,1.338,0.374,1.712,1.701,1.667c1.366-0.048,2.685-0.344,3.978-0.788
c0.482-0.165,0.635-0.462,0.633-0.959c-0.016-3.443-0.008-6.888-0.008-10.333c0.001-0.944,0.003-0.944,0.939-0.946
c0.627-0.001,1.257,0.025,1.883-0.007c0.538-0.029,0.708,0.194,0.703,0.711C126.065,11.691,126.076,13.739,126.076,15.784z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M70.632,17.607c0-2.005,0.012-4.008-0.009-6.014
c-0.005-0.487,0.151-0.773,0.603-0.992c2.16-1.044,4.445-1.605,6.824-1.839c0.344-0.034,0.488,0.111,0.488,0.441
c0,0.628-0.01,1.255,0.006,1.882c0.01,0.42-0.189,0.56-0.586,0.59c-0.989,0.073-1.965,0.239-2.932,0.473
c-0.662,0.16-0.9,0.474-0.894,1.174c0.036,3.442,0.017,6.886,0.017,10.328c0,0.852-0.032,0.884-0.891,0.887
c-0.607,0.002-1.215,0.005-1.822,0c-0.744-0.009-0.801-0.059-0.803-0.794C70.629,21.698,70.632,19.654,70.632,17.607z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M23.734,19.312c0,2.492-0.012,4.983,0.008,7.476
c0.004,0.521-0.156,0.727-0.695,0.705c-0.871-0.034-1.742-0.008-2.613-0.009c-0.886-0.003-0.887-0.004-0.887-0.871
c-0.001-3.585,0-7.17,0-10.756c0-1.135-0.02-2.27,0.005-3.402c0.013-0.613-0.291-0.944-0.827-1.117
c-0.691-0.224-1.401-0.187-2.107-0.098c-2.898,0.365-5.617,1.366-8.338,2.363c-0.756,0.277-0.787,0.271-0.787-0.521
C7.488,8.889,7.493,4.696,7.47,0.502C7.467-0.028,7.656-0.159,8.137-0.15c0.991,0.021,1.985,0.021,2.978-0.012
c0.537-0.018,0.695,0.192,0.689,0.713c-0.02,2.472-0.01,4.943-0.008,7.414c0.001,0.799,0.004,0.793,0.787,0.546
c2.057-0.651,4.146-1.109,6.324-1.015c1.027,0.045,2.017,0.261,2.898,0.802c1.334,0.817,1.871,2.108,1.896,3.6
c0.043,2.471,0.012,4.942,0.012,7.414C23.72,19.312,23.727,19.312,23.734,19.312z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M19.833,5.353c-0.607,0-1.215-0.004-1.822,0.002
c-0.346,0.002-0.536-0.066-0.266-0.438c1.063-1.463,1.91-3.051,2.662-4.69c0.131-0.288,0.346-0.368,0.631-0.368
c1.234,0.003,2.47,0.008,3.705-0.001c0.484-0.004,0.554,0.188,0.359,0.599c-0.773,1.635-1.714,3.165-2.826,4.592
c-0.184,0.235-0.4,0.312-0.682,0.308C21.007,5.347,20.419,5.352,19.833,5.353z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M7.534,23.116c0-1.252,0-2.505,0-3.759
c0-0.135-0.068-0.311,0.094-0.378c0.162-0.066,0.246,0.106,0.342,0.199c1.193,1.179,2.377,2.365,3.576,3.539
c0.287,0.281,0.318,0.489,0.007,0.796c-1.2,1.171-2.374,2.369-3.564,3.553c-0.103,0.101-0.193,0.312-0.386,0.204
c-0.136-0.078-0.082-0.259-0.082-0.395c-0.004-1.254-0.002-2.507-0.002-3.76C7.523,23.116,7.529,23.116,7.534,23.116z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="101.428px" height="26.355px" viewBox="14.845 0.001 101.428 26.355" enable-background="new 14.845 0.001 101.428 26.355"
xml:space="preserve">
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M14.85,8.674c0.047-0.043,0.107-0.055,0.167-0.069
c1.263-0.343,2.525-0.685,3.788-1.025c0.033-0.01,0.068-0.018,0.103-0.022c0.038-0.007,0.071,0.006,0.091,0.036
c0.044,0.065,0.087,0.131,0.123,0.201c0.148,0.278,0.246,0.577,0.32,0.884c0.04,0.169,0.075,0.34,0.113,0.511
c0.018,0.076,0.07,0.092,0.134,0.038c0.021-0.017,0.038-0.035,0.06-0.052c0.045-0.041,0.09-0.083,0.136-0.123
c0.586-0.509,1.239-0.905,1.972-1.168c0.386-0.139,0.783-0.236,1.191-0.292c0.471-0.065,0.94-0.073,1.411-0.032
c0.925,0.078,1.771,0.376,2.509,0.952c0.373,0.293,0.699,0.63,0.984,1.011c0.062,0.083,0.126,0.166,0.19,0.249
c0.021,0.026,0.067,0.028,0.094,0.004c0.039-0.034,0.077-0.069,0.116-0.105c0.264-0.254,0.533-0.503,0.82-0.732
c0.452-0.359,0.935-0.673,1.465-0.906c0.516-0.225,1.051-0.372,1.609-0.44c0.515-0.064,1.029-0.072,1.543-0.031
c0.648,0.052,1.275,0.198,1.873,0.459c0.461,0.2,0.877,0.465,1.232,0.825c0.33,0.335,0.574,0.722,0.734,1.164
c0.09,0.246,0.154,0.499,0.199,0.758c0.062,0.361,0.102,0.725,0.119,1.093c0.029,0.558,0.035,1.116,0.035,1.675
c-0.001,3.858,0,7.718,0,11.576c0,0.097-0.004,0.192-0.007,0.289c-0.001,0.028-0.036,0.067-0.065,0.073
c-0.025,0.006-0.051,0.013-0.076,0.014c-0.053,0.002-0.105,0.001-0.157,0.001c-1.292,0.001-2.585,0.001-3.876,0
c-0.07,0-0.141-0.006-0.209-0.011c-0.042-0.003-0.078-0.045-0.08-0.088c-0.003-0.096-0.006-0.192-0.006-0.288
c0-3.789,0-7.578,0-11.367c0-0.2-0.001-0.401-0.01-0.603c-0.011-0.297-0.033-0.593-0.098-0.883
c-0.025-0.11-0.061-0.219-0.101-0.325c-0.118-0.311-0.349-0.495-0.67-0.562c-0.302-0.064-0.605-0.073-0.911-0.025
c-0.269,0.04-0.527,0.115-0.78,0.215c-0.698,0.274-1.315,0.681-1.878,1.172c-0.026,0.022-0.049,0.051-0.075,0.08
c-0.005,0.04-0.012,0.083-0.013,0.127c-0.001,0.087,0,0.174,0,0.262c0,3.964,0,7.927,0,11.892c0,0.095-0.001,0.191-0.005,0.287
c-0.001,0.07-0.042,0.109-0.116,0.114c-0.077,0.003-0.156,0.004-0.234,0.004c-1.213,0.001-2.427,0.001-3.641,0
c-0.07,0-0.141,0.001-0.21-0.001c-0.026-0.001-0.052-0.008-0.077-0.011c-0.029-0.005-0.066-0.041-0.069-0.07
c-0.005-0.034-0.008-0.068-0.009-0.104c-0.002-0.087-0.001-0.175-0.001-0.262c0-3.562,0-7.124,0-10.686
c0-0.28-0.005-0.559-0.005-0.838c-0.002-0.298-0.028-0.594-0.066-0.889c-0.025-0.198-0.066-0.396-0.143-0.583
c-0.022-0.056-0.046-0.113-0.073-0.168c-0.138-0.271-0.356-0.448-0.651-0.525c-0.281-0.074-0.566-0.095-0.857-0.071
c-0.43,0.035-0.841,0.146-1.238,0.311c-0.512,0.213-0.979,0.5-1.406,0.852c-0.047,0.039-0.092,0.081-0.139,0.12
c-0.051,0.043-0.069,0.098-0.069,0.162c0,0.035-0.002,0.069-0.002,0.104c0,0.078,0,0.157,0,0.235c0,4.017,0,8.032,0,12.048
c0,0.097-0.005,0.192-0.007,0.289c-0.001,0.029-0.037,0.066-0.066,0.072c-0.025,0.006-0.051,0.013-0.077,0.014
c-0.06,0.002-0.122,0.001-0.183,0.001c-1.274,0.001-2.549,0.001-3.824,0c-0.087,0-0.174-0.008-0.261-0.013
c-0.026-0.002-0.066-0.045-0.069-0.07c-0.003-0.034-0.008-0.068-0.008-0.104c-0.002-0.096-0.001-0.191-0.001-0.288
c0-4.076,0.001-8.153-0.002-12.231c0-0.488-0.019-0.978-0.046-1.466c-0.021-0.418-0.062-0.834-0.138-1.248
c-0.081-0.439-0.2-0.867-0.401-1.269C14.856,8.759,14.836,8.721,14.85,8.674z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M101.089,9.944c0.074-0.051,0.129-0.094,0.186-0.13
c0.455-0.278,0.922-0.537,1.404-0.762c0.744-0.347,1.496-0.673,2.271-0.943c0.619-0.215,1.252-0.383,1.898-0.491
c0.387-0.064,0.777-0.117,1.172-0.128c0.209-0.006,0.418-0.022,0.627-0.029c0.385-0.012,0.77,0.016,1.15,0.051
c0.645,0.06,1.277,0.183,1.891,0.404c0.469,0.17,0.914,0.389,1.318,0.685c0.637,0.464,1.111,1.056,1.398,1.792
c0.146,0.385,0.236,0.785,0.289,1.193c0.055,0.407,0.059,0.818,0.066,1.229c0.014,0.611-0.008,1.222-0.014,1.833
c-0.004,0.393-0.01,0.786-0.018,1.178c-0.014,0.698-0.025,1.396-0.041,2.096c-0.01,0.479-0.021,0.96-0.031,1.439
c-0.01,0.507-0.012,1.013,0.035,1.518c0.023,0.252,0.061,0.503,0.125,0.748c0.127,0.474,0.359,0.889,0.697,1.242
c0.182,0.19,0.377,0.364,0.582,0.527c0.055,0.042,0.107,0.089,0.16,0.135c0.02,0.02,0.021,0.051,0.01,0.072
c-0.027,0.045-0.059,0.087-0.092,0.126c-0.172,0.199-0.344,0.396-0.516,0.595c-0.514,0.594-1.027,1.188-1.543,1.781
c-0.021,0.027-0.047,0.053-0.068,0.079c-0.182,0.21-0.168,0.212-0.412,0.096c-0.541-0.258-1.031-0.587-1.465-1.002
c-0.258-0.249-0.486-0.524-0.672-0.833c-0.027-0.045-0.057-0.087-0.086-0.13c-0.016-0.021-0.055-0.027-0.072-0.014
c-0.037,0.033-0.078,0.066-0.117,0.103c-0.193,0.188-0.396,0.367-0.605,0.539c-0.568,0.472-1.215,0.784-1.926,0.968
c-0.33,0.084-0.666,0.141-1.004,0.18c-0.516,0.062-1.029,0.062-1.543,0.035c-0.691-0.035-1.371-0.144-2.029-0.361
c-0.367-0.121-0.717-0.273-1.053-0.467c-0.883-0.513-1.523-1.239-1.916-2.182c-0.193-0.462-0.314-0.942-0.383-1.439
c-0.082-0.608-0.086-1.219-0.031-1.828c0.053-0.604,0.188-1.188,0.426-1.747c0.324-0.765,0.816-1.399,1.473-1.907
c0.457-0.355,0.963-0.63,1.5-0.845c0.578-0.232,1.174-0.393,1.783-0.512c0.48-0.094,0.967-0.159,1.451-0.198
c0.498-0.041,0.994-0.077,1.492-0.071c0.42,0.008,0.838-0.01,1.256,0.021c0.01,0.001,0.018-0.001,0.027-0.001
c0.029-0.001,0.072-0.034,0.076-0.061c0.004-0.035,0.01-0.07,0.01-0.104c0.006-0.445-0.004-0.891-0.031-1.336
c-0.012-0.217-0.047-0.434-0.1-0.645c-0.039-0.154-0.09-0.302-0.164-0.441c-0.145-0.273-0.361-0.47-0.646-0.586
c-0.244-0.098-0.502-0.145-0.764-0.163c-0.742-0.051-1.463,0.064-2.168,0.289c-0.635,0.201-1.238,0.475-1.824,0.788
c-0.43,0.23-0.848,0.483-1.258,0.751c-0.059,0.039-0.119,0.074-0.178,0.109c-0.029,0.018-0.074,0.004-0.094-0.025
c-0.041-0.065-0.084-0.132-0.125-0.198c-0.207-0.346-0.41-0.69-0.617-1.036c-0.346-0.585-0.693-1.17-1.041-1.756
C101.177,10.106,101.14,10.035,101.089,9.944z M110.113,19.725c0.014-0.58,0.027-1.112,0.039-1.644
c0.008-0.335,0.014-0.321-0.33-0.326c-0.357-0.003-0.715,0.023-1.07,0.039c-0.43,0.02-0.852,0.078-1.27,0.171
c-0.256,0.058-0.504,0.14-0.74,0.256c-0.477,0.234-0.811,0.595-0.98,1.104c-0.031,0.099-0.061,0.2-0.08,0.303
c-0.082,0.423-0.107,0.848-0.047,1.275c0.064,0.43,0.219,0.824,0.498,1.163c0.404,0.49,0.938,0.716,1.562,0.711
c0.352-0.002,0.691-0.081,1.018-0.219c0.465-0.195,0.863-0.486,1.223-0.837c0.107-0.105,0.156-0.219,0.156-0.369
C110.093,20.794,110.105,20.235,110.113,19.725z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M56.533,16.696c0.013,0.355-0.019,0.801-0.053,1.244
c-0.063,0.812-0.194,1.611-0.433,2.392c-0.367,1.205-0.98,2.271-1.833,3.198c-0.452,0.493-0.952,0.924-1.521,1.273
c-0.676,0.418-1.406,0.695-2.181,0.861c-0.8,0.171-1.608,0.228-2.423,0.193c-0.895-0.039-1.766-0.205-2.604-0.535
c-1.24-0.49-2.26-1.272-3.064-2.335c-0.555-0.729-0.961-1.538-1.256-2.403c-0.197-0.579-0.336-1.173-0.434-1.777
c-0.146-0.909-0.187-1.824-0.144-2.742c0.051-1.077,0.225-2.135,0.567-3.159c0.299-0.893,0.711-1.727,1.279-2.48
c0.988-1.314,2.273-2.199,3.858-2.644c0.421-0.118,0.851-0.192,1.285-0.24c0.488-0.055,0.976-0.06,1.465-0.034
c0.921,0.046,1.818,0.222,2.675,0.575c0.625,0.259,1.203,0.599,1.724,1.031c0.983,0.816,1.752,1.798,2.278,2.964
c0.255,0.568,0.436,1.16,0.561,1.769c0.111,0.549,0.18,1.103,0.215,1.66C56.52,15.873,56.535,16.239,56.533,16.696z
M45.692,16.519c0.004,0.846,0.029,1.533,0.095,2.221c0.038,0.408,0.093,0.814,0.169,1.217c0.064,0.336,0.15,0.663,0.268,0.983
c0.178,0.483,0.485,0.862,0.915,1.145c0.318,0.208,0.664,0.342,1.039,0.409c0.366,0.067,0.731,0.057,1.091-0.027
c0.514-0.117,0.922-0.401,1.236-0.824c0.161-0.218,0.291-0.455,0.395-0.705c0.139-0.332,0.238-0.674,0.316-1.023
c0.143-0.641,0.208-1.291,0.249-1.944c0.021-0.34,0.026-0.681,0.032-1.021c0.01-0.559-0.008-1.117-0.028-1.675
c-0.001-0.061-0.004-0.122-0.011-0.183c-0.039-0.398-0.07-0.8-0.137-1.195c-0.064-0.379-0.146-0.753-0.268-1.118
c-0.082-0.249-0.186-0.489-0.322-0.714c-0.273-0.458-0.658-0.783-1.154-0.983c-0.228-0.093-0.465-0.147-0.708-0.173
c-0.642-0.069-1.232,0.07-1.754,0.458c-0.425,0.315-0.717,0.734-0.897,1.23c-0.062,0.171-0.114,0.348-0.164,0.523
c-0.172,0.616-0.253,1.247-0.302,1.882C45.71,15.559,45.682,16.115,45.692,16.519z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M64.861,7.842c2.051,0,4.104,0,6.154,0
c0.096,0,0.193,0.003,0.289,0.009c0.055,0.002,0.094,0.044,0.096,0.104c0.004,0.052,0.006,0.104,0.006,0.157
c0,0.89,0,1.781,0,2.671c0,0.044-0.002,0.088-0.002,0.132c0,0.054-0.018,0.103-0.047,0.147c-0.031,0.051-0.066,0.102-0.102,0.151
c-2.086,3.016-4.172,6.031-6.258,9.046c-0.406,0.589-0.814,1.177-1.221,1.767c-0.04,0.058-0.076,0.117-0.113,0.175
c-0.018,0.031,0.003,0.078,0.035,0.084c0.035,0.004,0.07,0.012,0.104,0.013c0.088,0.003,0.176,0.001,0.262,0.001
c2.41,0,4.82,0,7.229,0c0.105,0,0.209,0.007,0.314,0.012c0.033,0.002,0.064,0.044,0.059,0.072
c-0.014,0.042-0.023,0.084-0.039,0.125c-0.088,0.256-0.176,0.512-0.264,0.768c-0.227,0.659-0.453,1.32-0.682,1.979
c-0.018,0.05-0.035,0.099-0.055,0.147c-0.023,0.054-0.066,0.078-0.123,0.082c-0.035,0.002-0.07,0.003-0.105,0.003
c-0.051,0.001-0.104,0-0.156,0c-4.086,0-8.172,0.001-12.258,0c-0.096,0-0.191-0.007-0.287-0.012
c-0.03-0.002-0.068-0.039-0.072-0.067c-0.004-0.044-0.01-0.086-0.01-0.129c0-0.83,0.002-1.66-0.002-2.489
c0-0.112,0.035-0.201,0.099-0.289c0.251-0.346,0.499-0.694,0.749-1.042c2.008-2.792,4.015-5.585,6.022-8.378
c0.418-0.582,0.838-1.162,1.254-1.745c0.045-0.062,0.102-0.119,0.119-0.199c0.004-0.013-0.006-0.036-0.018-0.043
c-0.021-0.012-0.049-0.021-0.072-0.022c-0.096-0.003-0.193-0.004-0.289-0.004c-2.245,0-4.488,0-6.731-0.001
c-0.105,0-0.209-0.002-0.314-0.007c-0.07-0.003-0.105-0.044-0.111-0.118c-0.004-0.053-0.006-0.104-0.006-0.157
c0-0.89,0-1.781,0-2.672c0-0.061,0.008-0.121,0.013-0.183c0.003-0.031,0.037-0.067,0.065-0.071
c0.035-0.007,0.07-0.014,0.104-0.014c0.096-0.002,0.191-0.002,0.288-0.002C60.809,7.842,62.835,7.842,64.861,7.842z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M87.087,11.308c0,2.496-0.002,4.992,0,7.488
c0,0.49,0.004,0.978,0.012,1.467c0.008,0.331,0.025,0.662,0.045,0.993c0.012,0.192,0.041,0.382,0.086,0.569
c0.037,0.146,0.096,0.281,0.168,0.41c0.105,0.191,0.264,0.322,0.463,0.407c0.258,0.109,0.525,0.117,0.797,0.08
c0.051-0.007,0.104-0.017,0.154-0.019c0.016-0.001,0.037,0.012,0.043,0.023c0.023,0.047,0.043,0.096,0.059,0.146
c0.08,0.276,0.156,0.553,0.236,0.83c0.143,0.494,0.287,0.987,0.426,1.483c0.072,0.245,0.07,0.237-0.16,0.315
c-0.465,0.156-0.939,0.26-1.426,0.324c-0.348,0.047-0.697,0.062-1.045,0.071c-0.252,0.008-0.506-0.015-0.758-0.042
c-0.426-0.047-0.842-0.147-1.242-0.303c-0.467-0.183-0.896-0.431-1.268-0.77c-0.375-0.341-0.662-0.741-0.85-1.211
c-0.131-0.325-0.24-0.656-0.303-1.001c-0.041-0.224-0.07-0.447-0.09-0.674c-0.059-0.724-0.057-1.448-0.057-2.172
c-0.002-4.713-0.002-9.427-0.002-14.14c0-0.419-0.018-0.837-0.027-1.257c-0.004-0.175-0.006-0.349-0.012-0.524
c-0.008-0.296-0.008-0.593-0.043-0.888c-0.006-0.053-0.006-0.104-0.008-0.157c-0.014-0.41-0.055-0.818-0.094-1.227
c-0.014-0.139-0.02-0.278-0.027-0.418c-0.002-0.041,0.031-0.084,0.076-0.095c0.17-0.042,0.338-0.083,0.508-0.122
c0.971-0.219,1.941-0.438,2.91-0.655c0.332-0.075,0.664-0.152,0.996-0.227c0.049-0.011,0.102-0.009,0.154-0.009
c0.014,0.001,0.031,0.017,0.039,0.029c0.014,0.022,0.021,0.048,0.025,0.072c0.031,0.216,0.068,0.432,0.09,0.647
c0.027,0.27,0.045,0.54,0.062,0.81c0.055,0.907,0.061,1.814,0.061,2.723C87.085,6.629,87.087,8.969,87.087,11.308z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M96.673,11.295c0,2.427-0.002,4.854,0,7.281
c0,0.549,0.004,1.1,0.016,1.649c0.004,0.331,0.021,0.662,0.041,0.994c0.012,0.191,0.041,0.381,0.084,0.568
c0.039,0.173,0.111,0.331,0.197,0.482c0.096,0.165,0.232,0.283,0.404,0.359c0.152,0.066,0.312,0.109,0.482,0.11
c0.156,0.002,0.312,0,0.469-0.039c0.043-0.011,0.084,0.018,0.1,0.061c0.018,0.042,0.031,0.083,0.043,0.124
c0.221,0.771,0.441,1.543,0.662,2.314c0.014,0.051,0.025,0.103,0.033,0.153c0.008,0.034-0.014,0.075-0.041,0.088
c-0.041,0.018-0.08,0.036-0.123,0.05c-0.336,0.116-0.684,0.206-1.037,0.271c-0.359,0.066-0.723,0.1-1.09,0.124
c-0.352,0.023-0.699,0.013-1.047-0.021c-0.729-0.072-1.42-0.28-2.047-0.667c-0.562-0.346-1.01-0.805-1.303-1.399
c-0.176-0.353-0.301-0.726-0.383-1.11c-0.059-0.291-0.094-0.586-0.113-0.883c-0.045-0.68-0.047-1.36-0.047-2.041
c0-4.679,0-9.358,0-14.037c0-0.585-0.006-1.169-0.037-1.755c-0.008-0.13-0.01-0.261-0.014-0.393
c-0.008-0.471-0.051-0.94-0.088-1.41c-0.027-0.321-0.057-0.644-0.086-0.966c-0.002-0.025-0.004-0.052-0.004-0.078
c-0.002-0.054,0.029-0.097,0.088-0.112c0.025-0.006,0.051-0.01,0.076-0.016c0.451-0.103,0.902-0.205,1.354-0.307
c0.979-0.223,1.957-0.445,2.934-0.666c0.045-0.009,0.088-0.017,0.129-0.022c0.072-0.012,0.117,0.021,0.129,0.095
c0.047,0.284,0.09,0.569,0.115,0.856c0.086,0.931,0.102,1.864,0.102,2.799C96.673,6.268,96.673,8.781,96.673,11.295z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M78.667,16.466c0,2.873,0,5.744,0,8.616
c0,0.097,0,0.192-0.006,0.289c-0.004,0.067-0.025,0.104-0.117,0.111c-0.043,0.004-0.088,0.004-0.131,0.004
c-1.371,0-2.74,0.001-4.111,0c-0.053,0-0.104-0.008-0.156-0.013c-0.029-0.003-0.064-0.041-0.068-0.07
c-0.004-0.025-0.008-0.053-0.01-0.078c0-0.078,0-0.156,0-0.235c0-5.518,0-11.034,0-16.552c0-0.097,0-0.191,0.004-0.288
c0.002-0.057,0.039-0.104,0.092-0.113c0.109-0.019,0.223-0.038,0.334-0.056c0.285-0.046,0.57-0.088,0.854-0.132
c0.414-0.064,0.828-0.129,1.242-0.195c0.49-0.077,0.982-0.157,1.473-0.234c0.137-0.023,0.275-0.046,0.414-0.065
c0.043-0.006,0.086-0.003,0.129,0.001c0.014,0.001,0.031,0.018,0.037,0.032c0.01,0.022,0.018,0.05,0.018,0.074
c0.002,0.097,0.004,0.192,0.004,0.289C78.667,10.723,78.667,13.595,78.667,16.466z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M76.345,5.813c-1.156,0.02-2.363-0.78-2.697-2.128
c-0.426-1.721,0.701-3.139,2.07-3.479c0.631-0.157,1.246-0.125,1.84,0.146c0.801,0.366,1.312,0.991,1.553,1.833
c0.086,0.295,0.123,0.6,0.105,0.906c-0.076,1.48-1.148,2.461-2.285,2.67C76.741,5.796,76.55,5.812,76.345,5.813z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="53.267px" height="66.942px" viewBox="0 0 53.267 66.942" enable-background="new 0 0 53.267 66.942" xml:space="preserve">
<g>
<g>
<path fill="#CCCCC9" d="M31.726,52.193c0,0-4.505-9.927-4.505-20.877s4.86-15.914,6.909-17.705
c2.046-1.792,6.703-4.606,11.002-4.606c4.297,0,6.805,2.814,6.805,2.814l1.33-1.79c0,0-7.164-7.012-16.271-7.012
c-9.109,0-17.295,6.756-21.134,13.561C12.024,23.385,5.577,36.075,5.577,49.532l0.153,2.661H31.726z"/>
<polygon fill="#CCCCC9" points="35.868,47.64 30.726,47.332 29.729,43.826 34.025,43.826 "/>
<polygon fill="#CCCCC9" points="28.577,31.75 28.373,35.153 32.44,36.969 32.312,33.746 "/>
<polygon fill="#CCCCC9" points="29.909,22.846 28.655,25.406 31.954,28.245 32.772,25.048 "/>
<polygon fill="#CCCCC9" points="31.774,16.655 33.822,14.838 35.844,17.705 34.667,19.802 "/>
<polygon fill="#CCCCC9" points="37.813,11.795 40.577,11.077 40.96,12.64 39.094,14.149 "/>
<polygon fill="#CCCCC9" points="46.256,10.516 46.256,11.974 48.866,12.331 48.866,11.104 "/>
<polygon fill="#CCCCC9" points="49.454,6.243 50.093,5.372 46.846,2.967 46.743,4.809 "/>
<polygon fill="#CCCCC9" points="33.259,0 33.848,2.763 37.839,2.763 37.454,0.128 "/>
<polygon fill="#CCCCC9" points="25.046,1.51 27.452,4.146 24.177,6.037 21.875,3.198 "/>
<polygon fill="#CCCCC9" points="14.122,9.874 17.603,12.179 14.941,15.3 11.41,12.945 "/>
<polygon fill="#CCCCC9" points="5.475,22.795 10.003,24.562 8.569,28.373 3.966,26.915 "/>
<polygon fill="#CCCCC9" points="5.679,39.452 4.81,44.517 0,44.005 0.587,39.092 "/>
<path fill="#CCCCC9" d="M9.575,63.048c2.016-0.251,2.762-2.381,2.762-3.973c0-1.593-0.787-2.726-2.149-3.263
c-1.362-0.537-3.933-0.44-3.933-0.44H2.974v11.57h2.974v-2.993l2.649,2.629h4.547L9.575,63.048z M8.635,60.532H6.064v-2.014h2.571
V60.532z"/>
<g>
<path fill="#CCCCC9" d="M23.946,58.039c0-0.787-0.634-2.629-3.262-2.629s-0.018,0-2.609,0c-2.59,0-3.127,1.861-3.127,2.858
s0,8.328,0,8.328h3.031v-1.938h2.937v1.938h3.031C23.946,66.597,23.946,58.825,23.946,58.039z M20.838,61.435h-2.821v-3.107
h2.821V61.435z"/>
</g>
<rect x="26.959" y="55.428" fill="#CCCCC9" width="3.128" height="11.016"/>
<polygon fill="#CCCCC9" points="36.438,63.316 36.438,55.428 33.312,55.428 33.312,63.316 33.312,66.443 36.438,66.443
40.853,66.443 40.853,63.316 "/>
<path fill="#CCCCC9" d="M48.45,59.558c-0.285,0-1.279,0-2.418,0l-0.211-0.022v-1.056h5.026V55.41c-1.927,0-4.253-0.003-4.698,0
c-2.42,0.018-3.705,1.323-3.705,2.845c0,0.328,0,0.642,0,1.172c0,2.833,3.014,3.197,4.012,3.197c0.247,0,0.805,0,1.504,0
l0.05,0.023c0,0,0.537,0.016,0.537,0.7c0,0.684-0.537,0.663-0.537,0.663h-5.412v2.685c1.929,0,4.638,0,5.084,0
c2.314,0,3.704-1.246,3.704-2.77c0-0.326,0-0.639,0-1.169C51.386,59.922,49.448,59.558,48.45,59.558z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,473 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="463.218px" height="125.637px" viewBox="0 0 463.218 125.637" enable-background="new 0 0 463.218 125.637"
xml:space="preserve">
<g>
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M361.795,12.246c0.047-0.043,0.107-0.055,0.166-0.069
c1.264-0.343,2.525-0.685,3.789-1.025c0.033-0.01,0.068-0.018,0.102-0.022c0.039-0.007,0.072,0.006,0.092,0.036
c0.043,0.065,0.086,0.131,0.123,0.201c0.148,0.278,0.246,0.577,0.32,0.884c0.039,0.169,0.074,0.34,0.113,0.511
c0.018,0.076,0.07,0.092,0.133,0.038c0.021-0.017,0.039-0.035,0.061-0.052c0.045-0.041,0.09-0.083,0.135-0.123
c0.586-0.509,1.24-0.905,1.973-1.168c0.385-0.139,0.783-0.236,1.191-0.292c0.471-0.065,0.939-0.073,1.41-0.032
c0.926,0.078,1.771,0.376,2.51,0.952c0.373,0.293,0.699,0.63,0.984,1.011c0.062,0.083,0.125,0.166,0.189,0.249
c0.021,0.026,0.068,0.028,0.094,0.004c0.039-0.034,0.078-0.069,0.117-0.105c0.264-0.254,0.533-0.503,0.82-0.732
c0.451-0.359,0.934-0.673,1.465-0.906c0.516-0.225,1.051-0.372,1.609-0.44c0.514-0.064,1.029-0.072,1.543-0.031
c0.648,0.052,1.275,0.198,1.873,0.459c0.461,0.2,0.877,0.465,1.232,0.825c0.33,0.335,0.574,0.722,0.734,1.164
c0.09,0.246,0.154,0.499,0.199,0.758c0.061,0.361,0.102,0.725,0.119,1.093c0.029,0.558,0.035,1.116,0.035,1.675
c-0.002,3.858,0,7.718,0,11.576c0,0.097-0.004,0.192-0.008,0.289c0,0.028-0.035,0.067-0.064,0.073
c-0.025,0.006-0.051,0.013-0.076,0.014c-0.053,0.002-0.105,0.001-0.158,0.001c-1.291,0.001-2.584,0.001-3.875,0
c-0.07,0-0.141-0.006-0.209-0.011c-0.043-0.003-0.078-0.045-0.08-0.088c-0.004-0.096-0.006-0.192-0.006-0.288
c0-3.789,0-7.578,0-11.367c0-0.2-0.002-0.401-0.01-0.603c-0.012-0.297-0.033-0.593-0.098-0.883
c-0.025-0.11-0.061-0.219-0.102-0.325c-0.117-0.311-0.348-0.495-0.67-0.562c-0.301-0.064-0.605-0.073-0.91-0.025
c-0.27,0.04-0.527,0.115-0.781,0.215c-0.697,0.274-1.314,0.681-1.877,1.172c-0.027,0.022-0.049,0.051-0.076,0.08
c-0.004,0.04-0.012,0.083-0.012,0.127c-0.002,0.087,0,0.174,0,0.262c0,3.964,0,7.927,0,11.892c0,0.095-0.002,0.191-0.006,0.287
c0,0.07-0.041,0.109-0.115,0.114c-0.078,0.003-0.156,0.004-0.234,0.004c-1.213,0.001-2.428,0.001-3.641,0
c-0.07,0-0.141,0.001-0.211-0.001c-0.025-0.001-0.051-0.008-0.076-0.011c-0.029-0.005-0.066-0.041-0.07-0.07
c-0.004-0.034-0.008-0.068-0.008-0.104c-0.002-0.087-0.002-0.175-0.002-0.262c0-3.562,0-7.124,0-10.686
c0-0.28-0.004-0.559-0.004-0.838c-0.002-0.298-0.029-0.594-0.066-0.889c-0.025-0.198-0.066-0.396-0.143-0.583
c-0.023-0.056-0.047-0.113-0.074-0.168c-0.137-0.271-0.355-0.448-0.65-0.525c-0.281-0.074-0.566-0.095-0.857-0.071
c-0.43,0.035-0.842,0.146-1.238,0.311c-0.512,0.213-0.979,0.5-1.406,0.852c-0.047,0.039-0.092,0.081-0.139,0.12
c-0.051,0.043-0.07,0.098-0.07,0.162c0,0.035-0.002,0.069-0.002,0.104c0,0.078,0,0.157,0,0.235c0,4.017,0,8.032,0,12.048
c0,0.097-0.004,0.192-0.006,0.289c-0.002,0.029-0.037,0.066-0.066,0.072c-0.025,0.006-0.051,0.013-0.078,0.014
c-0.059,0.002-0.121,0.001-0.182,0.001c-1.275,0.001-2.549,0.001-3.824,0c-0.088,0-0.174-0.008-0.262-0.013
c-0.025-0.002-0.066-0.045-0.068-0.07c-0.004-0.034-0.008-0.068-0.008-0.104c-0.002-0.096-0.002-0.191-0.002-0.288
c0-4.076,0.002-8.153-0.002-12.231c0-0.488-0.018-0.978-0.045-1.466c-0.021-0.418-0.062-0.834-0.139-1.248
c-0.08-0.439-0.199-0.867-0.4-1.269C361.801,12.331,361.779,12.293,361.795,12.246z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M448.033,13.516c0.074-0.051,0.129-0.094,0.186-0.13
c0.455-0.278,0.922-0.537,1.404-0.762c0.744-0.347,1.496-0.673,2.271-0.943c0.619-0.215,1.252-0.383,1.898-0.491
c0.387-0.064,0.777-0.117,1.172-0.128c0.209-0.006,0.418-0.022,0.627-0.029c0.385-0.012,0.77,0.016,1.15,0.051
c0.645,0.06,1.277,0.183,1.891,0.404c0.469,0.17,0.914,0.389,1.318,0.685c0.637,0.464,1.111,1.056,1.398,1.792
c0.146,0.385,0.236,0.785,0.289,1.193c0.055,0.407,0.059,0.818,0.066,1.229c0.014,0.611-0.008,1.222-0.014,1.833
c-0.004,0.393-0.01,0.786-0.018,1.178c-0.014,0.698-0.025,1.396-0.041,2.096c-0.01,0.479-0.021,0.96-0.031,1.439
c-0.01,0.507-0.012,1.013,0.035,1.518c0.023,0.252,0.061,0.503,0.125,0.748c0.127,0.474,0.359,0.889,0.697,1.242
c0.182,0.19,0.377,0.364,0.582,0.527c0.055,0.042,0.107,0.089,0.16,0.135c0.02,0.02,0.021,0.051,0.01,0.072
c-0.027,0.045-0.059,0.087-0.092,0.126c-0.172,0.199-0.344,0.396-0.516,0.595c-0.514,0.594-1.027,1.188-1.543,1.781
c-0.021,0.027-0.047,0.053-0.068,0.079c-0.182,0.21-0.168,0.212-0.412,0.096c-0.541-0.258-1.031-0.587-1.465-1.002
c-0.258-0.249-0.486-0.524-0.672-0.833c-0.027-0.045-0.057-0.087-0.086-0.13c-0.016-0.021-0.055-0.027-0.072-0.014
c-0.037,0.033-0.078,0.066-0.117,0.103c-0.193,0.188-0.396,0.367-0.605,0.539c-0.568,0.472-1.215,0.784-1.926,0.968
c-0.33,0.084-0.666,0.141-1.004,0.18c-0.516,0.062-1.029,0.062-1.543,0.035c-0.691-0.035-1.371-0.144-2.029-0.361
c-0.367-0.121-0.717-0.273-1.053-0.467c-0.883-0.513-1.523-1.239-1.916-2.182c-0.193-0.462-0.314-0.942-0.383-1.439
c-0.082-0.608-0.086-1.219-0.031-1.828c0.053-0.604,0.188-1.188,0.426-1.747c0.324-0.765,0.816-1.399,1.473-1.907
c0.457-0.355,0.963-0.63,1.5-0.845c0.578-0.232,1.174-0.393,1.783-0.512c0.48-0.094,0.967-0.159,1.451-0.198
c0.498-0.041,0.994-0.077,1.492-0.071c0.42,0.008,0.838-0.01,1.256,0.021c0.01,0.001,0.018-0.001,0.027-0.001
c0.029-0.001,0.072-0.034,0.076-0.061c0.004-0.035,0.01-0.07,0.01-0.104c0.006-0.445-0.004-0.891-0.031-1.336
c-0.012-0.217-0.047-0.434-0.1-0.645c-0.039-0.154-0.09-0.302-0.164-0.441c-0.145-0.273-0.361-0.47-0.646-0.586
c-0.244-0.098-0.502-0.145-0.764-0.163c-0.742-0.051-1.463,0.064-2.168,0.289c-0.635,0.201-1.238,0.475-1.824,0.788
c-0.43,0.23-0.848,0.483-1.258,0.751c-0.059,0.039-0.119,0.074-0.178,0.109c-0.029,0.018-0.074,0.004-0.094-0.025
c-0.041-0.065-0.084-0.132-0.125-0.198c-0.207-0.346-0.41-0.69-0.617-1.036c-0.346-0.585-0.693-1.17-1.041-1.756
C448.121,13.678,448.084,13.607,448.033,13.516z M457.057,23.297c0.014-0.58,0.027-1.112,0.039-1.644
c0.008-0.335,0.014-0.321-0.33-0.326c-0.357-0.003-0.715,0.023-1.07,0.039c-0.43,0.02-0.852,0.078-1.27,0.171
c-0.256,0.058-0.504,0.14-0.74,0.256c-0.477,0.234-0.811,0.595-0.98,1.104c-0.031,0.099-0.061,0.2-0.08,0.303
c-0.082,0.423-0.107,0.848-0.047,1.275c0.064,0.43,0.219,0.824,0.498,1.163c0.404,0.49,0.938,0.716,1.562,0.711
c0.352-0.002,0.691-0.081,1.018-0.219c0.465-0.195,0.863-0.486,1.223-0.837c0.107-0.105,0.156-0.219,0.156-0.369
C457.037,24.366,457.049,23.807,457.057,23.297z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M403.477,20.268c0.014,0.355-0.018,0.801-0.053,1.244
c-0.062,0.812-0.193,1.611-0.432,2.392c-0.367,1.205-0.98,2.271-1.834,3.198c-0.451,0.493-0.951,0.924-1.52,1.273
c-0.676,0.418-1.406,0.695-2.182,0.861c-0.799,0.171-1.607,0.228-2.422,0.193c-0.895-0.039-1.766-0.205-2.604-0.535
c-1.24-0.49-2.26-1.272-3.064-2.335c-0.555-0.729-0.961-1.538-1.256-2.403c-0.197-0.579-0.336-1.173-0.434-1.777
c-0.146-0.909-0.188-1.824-0.145-2.742c0.051-1.077,0.225-2.135,0.568-3.159c0.299-0.893,0.711-1.727,1.279-2.48
c0.988-1.314,2.273-2.199,3.857-2.644c0.422-0.118,0.852-0.192,1.285-0.24c0.488-0.055,0.977-0.06,1.465-0.034
c0.922,0.046,1.818,0.222,2.676,0.575c0.625,0.259,1.203,0.599,1.723,1.031c0.984,0.816,1.752,1.798,2.279,2.964
c0.254,0.568,0.436,1.16,0.561,1.769c0.111,0.549,0.18,1.103,0.215,1.66C403.465,19.445,403.479,19.811,403.477,20.268z
M392.637,20.091c0.004,0.846,0.029,1.533,0.094,2.221c0.039,0.408,0.094,0.814,0.17,1.217c0.064,0.336,0.15,0.663,0.268,0.983
c0.178,0.483,0.484,0.862,0.914,1.145c0.318,0.208,0.664,0.342,1.039,0.409c0.367,0.067,0.732,0.057,1.092-0.027
c0.514-0.117,0.922-0.401,1.236-0.824c0.16-0.218,0.291-0.455,0.395-0.705c0.139-0.332,0.238-0.674,0.316-1.023
c0.143-0.641,0.207-1.291,0.248-1.944c0.021-0.34,0.027-0.681,0.033-1.021c0.01-0.559-0.008-1.117-0.029-1.675
c0-0.061-0.004-0.122-0.01-0.183c-0.039-0.398-0.07-0.8-0.137-1.195c-0.064-0.379-0.146-0.753-0.268-1.118
c-0.082-0.249-0.186-0.489-0.322-0.714c-0.273-0.458-0.658-0.783-1.154-0.983c-0.229-0.093-0.465-0.147-0.709-0.173
c-0.641-0.069-1.232,0.07-1.754,0.458c-0.424,0.315-0.717,0.734-0.896,1.23c-0.062,0.171-0.115,0.348-0.164,0.523
c-0.172,0.616-0.254,1.247-0.303,1.882C392.654,19.131,392.627,19.688,392.637,20.091z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M411.805,11.414c2.051,0,4.104,0,6.154,0
c0.096,0,0.193,0.003,0.289,0.009c0.055,0.002,0.094,0.044,0.096,0.104c0.004,0.052,0.006,0.104,0.006,0.157
c0,0.89,0,1.781,0,2.671c0,0.044-0.002,0.088-0.002,0.132c0,0.054-0.018,0.103-0.047,0.147c-0.031,0.051-0.066,0.102-0.102,0.151
c-2.086,3.016-4.172,6.031-6.258,9.046c-0.406,0.589-0.814,1.177-1.221,1.767c-0.041,0.058-0.076,0.117-0.113,0.175
c-0.018,0.031,0.002,0.078,0.035,0.084c0.035,0.004,0.07,0.012,0.104,0.013c0.088,0.003,0.176,0.001,0.262,0.001
c2.41,0,4.82,0,7.229,0c0.105,0,0.209,0.007,0.314,0.012c0.033,0.002,0.064,0.044,0.059,0.072
c-0.014,0.042-0.023,0.084-0.039,0.125c-0.088,0.256-0.176,0.512-0.264,0.768c-0.227,0.659-0.453,1.32-0.682,1.979
c-0.018,0.05-0.035,0.099-0.055,0.147c-0.023,0.054-0.066,0.078-0.123,0.082c-0.035,0.002-0.07,0.003-0.105,0.003
c-0.051,0.001-0.104,0-0.156,0c-4.086,0-8.172,0.001-12.258,0c-0.096,0-0.191-0.007-0.287-0.012
c-0.031-0.002-0.068-0.039-0.072-0.067c-0.004-0.044-0.01-0.086-0.01-0.129c0-0.83,0.002-1.66-0.002-2.489
c0-0.112,0.035-0.201,0.098-0.289c0.252-0.346,0.5-0.694,0.75-1.042c2.008-2.792,4.014-5.585,6.021-8.378
c0.418-0.582,0.838-1.162,1.254-1.745c0.045-0.062,0.102-0.119,0.119-0.199c0.004-0.013-0.006-0.036-0.018-0.043
c-0.021-0.012-0.049-0.021-0.072-0.022c-0.096-0.003-0.193-0.004-0.289-0.004c-2.244,0-4.488,0-6.73-0.001
c-0.105,0-0.209-0.002-0.314-0.007c-0.07-0.003-0.105-0.044-0.111-0.118c-0.004-0.053-0.006-0.104-0.006-0.157
c0-0.89,0-1.781,0-2.672c0-0.061,0.008-0.121,0.012-0.183c0.004-0.031,0.037-0.067,0.066-0.071
c0.035-0.007,0.07-0.014,0.104-0.014c0.096-0.002,0.191-0.002,0.289-0.002C407.754,11.414,409.779,11.414,411.805,11.414z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M434.031,14.88c0,2.496-0.002,4.992,0,7.488
c0,0.49,0.004,0.978,0.012,1.467c0.008,0.331,0.025,0.662,0.045,0.993c0.012,0.192,0.041,0.382,0.086,0.569
c0.037,0.146,0.096,0.281,0.168,0.41c0.105,0.191,0.264,0.322,0.463,0.407c0.258,0.109,0.525,0.117,0.797,0.08
c0.051-0.007,0.104-0.017,0.154-0.019c0.016-0.001,0.037,0.012,0.043,0.023c0.023,0.047,0.043,0.096,0.059,0.146
c0.08,0.276,0.156,0.553,0.236,0.83c0.143,0.494,0.287,0.987,0.426,1.483c0.072,0.245,0.07,0.237-0.16,0.315
c-0.465,0.156-0.939,0.26-1.426,0.324c-0.348,0.047-0.697,0.062-1.045,0.071c-0.252,0.008-0.506-0.015-0.758-0.042
c-0.426-0.047-0.842-0.147-1.242-0.303c-0.467-0.183-0.896-0.431-1.268-0.77c-0.375-0.341-0.662-0.741-0.85-1.211
c-0.131-0.325-0.24-0.656-0.303-1.001c-0.041-0.224-0.07-0.447-0.09-0.674c-0.059-0.724-0.057-1.448-0.057-2.172
c-0.002-4.713-0.002-9.427-0.002-14.14c0-0.419-0.018-0.837-0.027-1.257c-0.004-0.175-0.006-0.349-0.012-0.524
c-0.008-0.296-0.008-0.593-0.043-0.888c-0.006-0.053-0.006-0.104-0.008-0.157c-0.014-0.41-0.055-0.818-0.094-1.227
c-0.014-0.139-0.02-0.278-0.027-0.418c-0.002-0.041,0.031-0.084,0.076-0.095c0.17-0.042,0.338-0.083,0.508-0.122
c0.971-0.219,1.941-0.438,2.91-0.655c0.332-0.075,0.664-0.152,0.996-0.227c0.049-0.011,0.102-0.009,0.154-0.009
c0.014,0.001,0.031,0.017,0.039,0.029c0.014,0.022,0.021,0.048,0.025,0.072c0.031,0.216,0.068,0.432,0.09,0.647
c0.027,0.27,0.045,0.54,0.062,0.81c0.055,0.907,0.061,1.814,0.061,2.723C434.029,10.201,434.031,12.541,434.031,14.88z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M443.617,14.867c0,2.427-0.002,4.854,0,7.281
c0,0.549,0.004,1.1,0.016,1.649c0.004,0.331,0.021,0.662,0.041,0.994c0.012,0.191,0.041,0.381,0.084,0.568
c0.039,0.173,0.111,0.331,0.197,0.482c0.096,0.165,0.232,0.283,0.404,0.359c0.152,0.066,0.312,0.109,0.482,0.11
c0.156,0.002,0.312,0,0.469-0.039c0.043-0.011,0.084,0.018,0.1,0.061c0.018,0.042,0.031,0.083,0.043,0.124
c0.221,0.771,0.441,1.543,0.662,2.314c0.014,0.051,0.025,0.103,0.033,0.153c0.008,0.034-0.014,0.075-0.041,0.088
c-0.041,0.018-0.08,0.036-0.123,0.05c-0.336,0.116-0.684,0.206-1.037,0.271c-0.359,0.066-0.723,0.1-1.09,0.124
c-0.352,0.023-0.699,0.013-1.047-0.021c-0.729-0.072-1.42-0.28-2.047-0.667c-0.562-0.346-1.01-0.805-1.303-1.399
c-0.176-0.353-0.301-0.726-0.383-1.11c-0.059-0.291-0.094-0.586-0.113-0.883c-0.045-0.68-0.047-1.36-0.047-2.041
c0-4.679,0-9.358,0-14.037c0-0.585-0.006-1.169-0.037-1.755c-0.008-0.13-0.01-0.261-0.014-0.393
c-0.008-0.471-0.051-0.94-0.088-1.41c-0.027-0.321-0.057-0.644-0.086-0.966c-0.002-0.025-0.004-0.052-0.004-0.078
c-0.002-0.054,0.029-0.097,0.088-0.112c0.025-0.006,0.051-0.01,0.076-0.016c0.451-0.103,0.902-0.205,1.354-0.307
c0.979-0.223,1.957-0.445,2.934-0.666c0.045-0.009,0.088-0.017,0.129-0.022c0.072-0.012,0.117,0.021,0.129,0.095
c0.047,0.284,0.09,0.569,0.115,0.856c0.086,0.931,0.102,1.864,0.102,2.799C443.617,9.84,443.617,12.354,443.617,14.867z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M425.611,20.038c0,2.873,0,5.744,0,8.616
c0,0.097,0,0.192-0.006,0.289c-0.004,0.067-0.025,0.104-0.117,0.111c-0.043,0.004-0.088,0.004-0.131,0.004
c-1.371,0-2.74,0.001-4.111,0c-0.053,0-0.104-0.008-0.156-0.013c-0.029-0.003-0.064-0.041-0.068-0.07
c-0.004-0.025-0.008-0.053-0.01-0.078c0-0.078,0-0.156,0-0.235c0-5.518,0-11.034,0-16.552c0-0.097,0-0.191,0.004-0.288
c0.002-0.057,0.039-0.104,0.092-0.113c0.109-0.019,0.223-0.038,0.334-0.056c0.285-0.046,0.57-0.088,0.854-0.132
c0.414-0.064,0.828-0.129,1.242-0.195c0.49-0.077,0.982-0.157,1.473-0.234c0.137-0.023,0.275-0.046,0.414-0.065
c0.043-0.006,0.086-0.003,0.129,0.001c0.014,0.001,0.031,0.018,0.037,0.032c0.01,0.022,0.018,0.05,0.018,0.074
c0.002,0.097,0.004,0.192,0.004,0.289C425.611,14.295,425.611,17.167,425.611,20.038z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M423.289,9.385c-1.156,0.02-2.363-0.78-2.697-2.128
c-0.426-1.721,0.701-3.139,2.07-3.479c0.631-0.157,1.246-0.125,1.84,0.146c0.801,0.366,1.312,0.991,1.553,1.833
c0.086,0.295,0.123,0.6,0.105,0.906c-0.076,1.48-1.148,2.461-2.285,2.67C423.686,9.368,423.494,9.384,423.289,9.385z"/>
</g>
</g>
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M59.963,17.556c0-3.516,0-7.032,0.002-10.547
c0-0.301,0.002-0.602,0.015-0.9c0.013-0.35,0.196-0.536,0.546-0.596c1.389-0.24,2.775-0.496,4.164-0.734
c0.406-0.068,0.678,0.095,0.698,0.532c0.021,0.472,0.02,0.943,0.02,1.415c0.001,1.757-0.013,3.515,0.003,5.273
c0.009,0.939,0.03,0.934,0.934,0.785c1.732-0.285,3.442-0.433,5.221-0.132c2.51,0.423,3.963,2.167,4.086,4.7
c0.118,2.396,0.152,4.81-0.006,7.2c-0.213,3.216-1.806,4.903-5.05,5.62c-2.261,0.498-4.58,0.455-6.894,0.119
c-0.84-0.121-1.689-0.235-2.54-0.32c-1.117-0.109-1.184-0.171-1.194-1.354c-0.012-1.457-0.002-2.915-0.004-4.373
C59.963,22.016,59.963,19.785,59.963,17.556z M65.415,21.827c0,1.071,0.009,2.144-0.004,3.215
c-0.008,0.523,0.186,0.809,0.744,0.794c0.686-0.017,1.378,0.04,2.059-0.026c1.102-0.107,1.781-0.855,1.798-1.953
c0.022-1.673,0.022-3.346,0.001-5.017c-0.016-1.104-0.541-1.62-1.643-1.726c-0.748-0.074-1.439,0.17-2.139,0.36
c-0.557,0.153-0.842,0.521-0.825,1.137C65.432,19.683,65.413,20.755,65.415,21.827z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M117.057,19.669c1.097-1.729,2.195-3.459,3.291-5.189
c0.229-0.361,0.459-0.723,0.678-1.091c0.291-0.489,0.707-0.699,1.28-0.69c1.331,0.019,2.659-0.014,3.987,0.014
c0.893,0.017,1.014,0.23,0.553,0.977c-1.328,2.149-2.637,4.312-4.045,6.409c-0.566,0.847-0.543,1.475-0.013,2.321
c1.387,2.212,2.679,4.484,4.001,6.737c0.527,0.901,0.438,1.058-0.643,1.075c-1.242,0.019-2.488-0.024-3.729,0.015
c-0.748,0.023-1.171-0.315-1.526-0.936c-1.068-1.856-2.18-3.687-3.281-5.521c-0.171-0.286-0.311-0.608-0.756-0.853
c0,0.705,0,1.332,0,1.958c0,1.415,0.018,2.83-0.009,4.246c-0.019,0.911-0.17,1.066-1.048,1.086
c-1.242,0.028-2.488,0.027-3.73-0.001c-0.781-0.016-0.83-0.099-0.875-0.93c-0.012-0.213-0.002-0.429-0.002-0.644
c0-7.161,0-14.322,0-21.484c0-0.258,0.004-0.515,0.007-0.772c0.005-0.492,0.214-0.805,0.729-0.895
c1.346-0.237,2.687-0.502,4.033-0.73c0.516-0.087,0.824,0.181,0.872,0.699c0.031,0.341,0.022,0.685,0.022,1.027
c0,3.946,0,7.891,0,11.837c0,0.425,0,0.851,0,1.275C116.922,19.63,116.99,19.65,117.057,19.669z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M53.414,23.264c-1.2,0-2.399-0.015-3.601,0.007
c-0.398,0.008-0.896-0.171-1.111,0.382c-0.19,0.494,0.027,1.312,0.471,1.638c0.455,0.334,0.965,0.534,1.551,0.543
c2.012,0.03,4.02,0.021,6.002-0.402c1.048-0.223,1.178-0.104,1.194,1.007c0.015,0.857,0,1.715,0,2.571
c0.001,0.551-0.233,0.847-0.806,0.961c-2.79,0.554-5.588,0.788-8.406,0.279c-3.882-0.701-5.222-2.858-5.641-6.197
c-0.262-2.095-0.248-4.264,0.135-6.398c0.398-2.226,1.551-3.808,3.675-4.547c2.856-0.992,5.702-0.972,8.481,0.372
c1.613,0.78,2.414,2.182,2.772,3.806c0.36,1.629,0.376,3.312,0.29,4.983c-0.041,0.796-0.203,0.967-1.021,0.985
c-1.328,0.028-2.656,0.007-3.985,0.007C53.414,23.261,53.414,23.262,53.414,23.264z M50.639,19.391c0-0.003,0-0.007,0-0.011
c0.512,0,1.023,0.006,1.535-0.003c0.35-0.004,0.522-0.186,0.58-0.542c0.191-1.163-0.621-2.111-1.913-2.207
c-1.185-0.09-2.165,0.725-2.186,1.813c-0.017,0.783,0.081,0.903,0.833,0.946C49.872,19.409,50.256,19.391,50.639,19.391z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M92.676,21.44c0,1.071,0.074,2.148-0.016,3.214
c-0.16,1.883-0.971,3.462-2.574,4.523c-1.277,0.848-2.745,1.189-4.256,1.288c-1.196,0.078-2.393,0.024-3.571-0.261
c-2.706-0.655-4.767-2.468-5.097-5.394c-0.275-2.444-0.32-4.864,0.086-7.28c0.326-1.956,1.492-3.438,3.262-4.197
c2.955-1.272,6.006-1.273,8.959,0.104c2.109,0.984,3.037,2.808,3.2,5.046c0.071,0.98,0.013,1.972,0.013,2.957
C92.68,21.44,92.678,21.44,92.676,21.44z M82.631,21.469c0,0.812-0.002,1.622,0,2.435c0,0.387,0.043,0.752,0.305,1.08
c0.615,0.771,1.854,1.101,2.93,0.747c0.894-0.292,1.355-0.956,1.372-2.074c0.022-1.409,0.022-2.817,0.001-4.227
c-0.025-1.879-1.971-2.975-3.619-2.046c-0.633,0.358-1.026,0.866-0.996,1.653C82.657,19.847,82.631,20.658,82.631,21.469z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M94.194,21.154c0.092-1.05-0.137-2.376,0.172-3.696
c0.588-2.523,2.205-4.028,4.627-4.641c2.277-0.576,4.566-0.526,6.819,0.271c1.733,0.616,2.889,1.803,3.534,3.479
c0.273,0.71,0.5,1.487,0.516,2.238c0.045,2.221,0.266,4.455-0.231,6.655c-0.493,2.173-1.813,3.642-3.903,4.405
c-2.244,0.817-4.537,0.801-6.818,0.231c-2.85-0.711-4.658-3.048-4.715-5.976C94.178,23.224,94.194,22.323,94.194,21.154z
M104.245,21.546c0,0,0.002,0,0.004,0c0-0.773,0-1.545,0-2.315c0-0.043,0-0.085-0.002-0.129
c-0.039-0.978-0.516-1.624-1.407-1.902c-1.72-0.537-3.139,0.422-3.198,2.214c-0.047,1.369-0.004,2.742-0.014,4.113
c-0.007,0.814,0.147,1.582,0.943,1.961c0.922,0.439,1.898,0.567,2.826-0.02c0.531-0.335,0.873-0.797,0.854-1.481
C104.225,23.174,104.245,22.359,104.245,21.546z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M26.533,23.601c0,1.887,0.014,3.774-0.007,5.661
c-0.008,0.886-0.082,0.95-0.957,0.973c-0.943,0.022-1.887,0.007-2.831,0.003c-0.255-0.002-0.61,0.048-0.71-0.188
c-0.381-0.887-0.973-0.452-1.495-0.27c-1.263,0.436-2.53,0.749-3.89,0.716c-3.487-0.084-5.352-2.895-4.953-6.109
c0.059-0.465,0.154-0.932,0.301-1.375c0.498-1.518,1.732-2.182,3.148-2.551c0.867-0.227,1.764-0.336,2.672-0.289
c0.599,0.032,1.205,0.052,1.799-0.009c0.498-0.05,1.184,0.338,1.435-0.44c0.183-0.568-0.322-1.709-0.831-2.033
c-0.455-0.291-0.961-0.329-1.483-0.327c-1.372,0.007-2.745,0.01-4.116-0.001c-1.246-0.009-1.246-0.021-1.053-1.21
c0.143-0.886,0.059-1.79,0.289-2.678c0.129-0.491,0.279-0.776,0.816-0.764c2.607,0.062,5.238-0.251,7.817,0.295
c2.544,0.538,3.724,1.957,4.036,5.065c0.01,0.086,0.003,0.172,0.003,0.258c0,1.758,0,3.516,0,5.273
C26.526,23.601,26.53,23.601,26.533,23.601z M19.372,24.051c0,0.007,0,0.013,0,0.021c-0.381,0-0.768-0.035-1.146,0.008
c-0.578,0.066-0.91,0.413-0.957,1.007c-0.049,0.632,0.252,1.138,0.855,1.225c0.756,0.108,1.523,0.139,2.244-0.233
c0.648-0.333,0.88-0.848,0.688-1.57c-0.158-0.597-0.651-0.417-1.045-0.452C19.797,24.035,19.584,24.051,19.372,24.051z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M2.817,23.737c0-1.802,0.014-3.602-0.004-5.401
c-0.01-0.909-0.055-0.93-0.943-0.974c-1.861-0.091-1.861-0.091-1.862-1.961c0-0.558-0.021-1.116,0.008-1.672
c0.042-0.815,0.198-0.954,0.99-1.024c0.544-0.049,1.214,0.227,1.606-0.184c0.467-0.492,0.156-1.229,0.201-1.858
c0.055-0.809-0.105-1.637,0.109-2.431c0.689-2.55,2.113-3.751,5-3.992c1.191-0.101,2.398-0.016,3.6-0.026
c0.498-0.004,0.835,0.15,0.834,0.718c-0.002,1.07,0,2.143,0,3.215c0,0.469-0.227,0.715-0.703,0.719
c-0.6,0.005-1.201-0.021-1.799,0.023c-1.002,0.078-1.465,0.55-1.576,1.526c-0.012,0.085-0.012,0.17-0.012,0.256
c0.001,2.372-0.189,2.002,1.939,2.035c0.473,0.008,0.943,0.008,1.416,0.005c0.555-0.006,0.785,0.28,0.713,0.809
c-0.148,1.057-0.328,2.108-0.463,3.165c-0.061,0.479-0.305,0.674-0.762,0.671c-0.471-0.003-0.943,0.002-1.414,0.004
c-1.426,0.007-1.433,0.007-1.434,1.389c-0.002,3.258,0,6.514,0.002,9.771c0.004,1.854,0.077,1.716-1.771,1.718
c-0.9,0-1.801,0.016-2.701-0.007c-0.881-0.022-0.957-0.087-0.966-0.965C2.804,27.423,2.819,25.58,2.817,23.737z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M33.723,21.532c0,0.729-0.012,1.458,0.002,2.186
c0.027,1.429,0.582,2.021,2.016,2.105c1.544,0.093,3.076-0.027,4.594-0.344c0.25-0.053,0.502-0.119,0.756-0.133
c0.352-0.021,0.584,0.166,0.589,0.526c0.015,1.114,0.019,2.23,0.004,3.343c-0.005,0.383-0.223,0.642-0.613,0.719
c-2.571,0.502-5.151,0.905-7.755,0.261c-2.721-0.675-4.619-2.499-5.049-5.622c-0.312-2.27-0.361-4.533,0.082-6.765
c0.489-2.448,1.926-4.167,4.413-4.854c1.878-0.52,3.769-0.692,5.71-0.312c0.748,0.147,1.533,0.12,2.279,0.332
c0.84,0.239,0.93,0.334,0.949,1.256c0.018,0.815,0.021,1.63-0.003,2.443c-0.026,0.9-0.2,1.028-1.112,0.86
c-1.515-0.281-3.035-0.506-4.584-0.434c-0.432,0.021-0.843,0.074-1.248,0.247c-0.666,0.286-1.02,0.759-1.021,1.482
c-0.003,0.901,0,1.802,0,2.702C33.728,21.532,33.725,21.532,33.723,21.532z"/>
</g>
</g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M206.306,18.981c0,5.044,0,10.088,0,15.134
c0,2.371-1.496,3.867-3.869,3.867c-7.598,0.001-15.195,0.001-22.791,0c-2.443-0.003-4.008-1.545-4.01-3.971
c-0.005-9.988-0.005-19.976,0-29.964c0-2.062,0.999-3.476,2.755-3.953c0.319-0.088,0.64-0.092,0.964-0.094
c7.779-0.001,15.559-0.002,23.338,0.002c2.086,0,3.609,1.522,3.61,3.602c0.005,5.126,0.001,10.252,0.001,15.377
C206.306,18.981,206.306,18.981,206.306,18.981z M176.994,18.985c0,4.923,0.037,9.849-0.021,14.771
c-0.018,1.552,1.117,2.909,2.854,2.895c7.456-0.062,14.913-0.024,22.37-0.027c1.787,0,2.827-1.034,2.828-2.827
c0.002-9.889,0.002-19.776-0.002-29.666c0-0.26-0.014-0.528-0.074-0.781c-0.332-1.362-1.289-2.065-2.834-2.066
c-7.375-0.004-14.752-0.003-22.127-0.003c-1.979,0-2.992,1.012-2.993,2.994C176.994,9.179,176.995,14.082,176.994,18.985z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M213.574,18.701c0-3.424-0.002-6.848,0.001-10.271
c0.001-0.813,0.038-0.849,0.864-0.853c0.588-0.004,1.176-0.004,1.764,0c0.781,0.005,0.803,0.025,0.803,0.833
c0.003,1.904-0.002,3.809,0.003,5.714c0.002,0.733,0.006,0.722,0.696,0.51c1.787-0.548,3.592-1.026,5.487-0.777
c2.083,0.274,3.365,1.642,3.394,3.769c0.052,3.87,0.014,7.74,0.027,11.609c0.001,0.467-0.213,0.597-0.629,0.59
c-0.689-0.013-1.379-0.026-2.066,0.006c-0.557,0.023-0.75-0.198-0.744-0.747c0.02-1.985,0.008-3.971,0.006-5.956
c0-1.661,0.004-3.322,0-4.984c-0.002-1.09-0.361-1.438-1.47-1.439c-1.482-0.004-2.878,0.398-4.263,0.875
c-0.472,0.163-0.438,0.526-0.438,0.889c-0.003,2.674-0.002,5.349-0.002,8.021c0,0.853,0.002,1.703-0.001,2.554
c-0.003,0.741-0.038,0.774-0.802,0.78c-0.566,0.002-1.134,0.002-1.701,0c-0.904-0.003-0.929-0.024-0.93-0.912
C213.572,25.506,213.572,22.104,213.574,18.701z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M276.223,14.006c0,1.804-0.008,3.606,0.01,5.408
c0.004,0.288-0.205,0.752,0.238,0.831c0.471,0.083,1.016,0.241,1.439-0.191c0.625-0.64,1.164-1.348,1.678-2.077
c0.713-1.015,1.307-2.098,1.811-3.227c0.176-0.392,0.408-0.545,0.836-0.531c0.85,0.026,1.701,0.004,2.551,0.01
c0.658,0.005,0.711,0.079,0.412,0.644c-1.07,2.011-2.322,3.9-3.91,5.542c-0.43,0.444-0.43,0.734-0.062,1.216
c1.779,2.32,3.273,4.822,4.58,7.438c0.336,0.671,0.291,0.748-0.461,0.752c-0.871,0.007-1.742-0.014-2.613,0.008
c-0.453,0.012-0.688-0.171-0.854-0.594c-0.895-2.275-2.031-4.413-3.676-6.249c-0.258-0.287-1.518-0.469-1.818-0.257
c-0.223,0.156-0.154,0.402-0.156,0.615c-0.006,1.903-0.021,3.809,0.008,5.712c0.008,0.578-0.172,0.809-0.762,0.775
c-0.666-0.036-1.338-0.032-2.004,0c-0.539,0.023-0.697-0.198-0.695-0.717c0.016-3.16,0.008-6.319,0.008-9.479
c0-3.747,0-7.494,0.002-11.242c0-0.794,0.02-0.811,0.82-0.814c0.609-0.003,1.217,0.028,1.822-0.009
c0.596-0.038,0.822,0.155,0.811,0.786C276.199,10.238,276.223,12.122,276.223,14.006z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M238.074,22.562c-1.498,0-2.998,0.016-4.498-0.008
c-0.502-0.009-0.688,0.161-0.664,0.668c0.033,0.712,0.115,1.414,0.303,2.1c0.352,1.302,1.033,1.849,2.389,1.926
c1.877,0.106,3.66-0.335,5.416-0.927c1.023-0.345,1.023-0.347,1.244,0.702c0.35,1.646,0.348,1.643-1.262,2.21
c-2.029,0.713-4.094,1.148-6.258,0.889c-3.246-0.39-4.736-1.798-5.11-5.067c-0.367-3.219-0.219-6.429,0.494-9.604
c0.11-0.494,0.344-0.767,0.838-0.902c2.51-0.682,5.057-0.963,7.637-0.634c2.607,0.332,4.062,2.032,4.406,4.952
c0.123,1.049,0.111,2.101,0.131,3.152c0.008,0.43-0.148,0.558-0.568,0.551C241.074,22.55,239.574,22.562,238.074,22.562z
M236.311,20.187c0.951,0,1.902,0.001,2.854-0.001c0.223-0.002,0.439,0.008,0.533-0.281c0.467-1.444-0.609-3.087-2.137-3.183
c-1.252-0.079-2.508-0.015-3.756,0.132c-0.426,0.05-0.654,0.264-0.705,0.69c-0.082,0.683-0.18,1.362-0.197,2.053
c-0.014,0.461,0.182,0.604,0.613,0.595C234.447,20.176,235.379,20.187,236.311,20.187z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M269.898,21.889c0.064,1.41-0.1,2.811-0.602,4.159
c-0.799,2.152-2.338,3.461-4.572,3.921c-2.049,0.42-4.068,0.326-6.01-0.534c-1.098-0.488-1.959-1.274-2.422-2.366
c-1.35-3.183-1.369-6.424-0.102-9.628c0.787-1.986,2.408-3.028,4.459-3.455c1.266-0.263,2.537-0.259,3.805-0.063
c3.08,0.474,4.887,2.354,5.311,5.465C269.877,20.212,269.928,21.037,269.898,21.889z M266.58,21.884
c0-0.974-0.064-1.938-0.307-2.888c-0.342-1.332-1.197-2.049-2.547-2.251c-2.625-0.393-4.293,0.601-4.807,2.986
c-0.377,1.741-0.35,3.506,0.074,5.238c0.291,1.194,1.027,1.988,2.312,2.195c0.707,0.111,1.414,0.148,2.115,0.049
c1.287-0.181,2.184-0.892,2.668-2.11C266.502,24.068,266.582,22.982,266.58,21.884z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M301.365,21.07c0,1.986-0.018,3.971,0.012,5.956
c0.008,0.548-0.189,0.84-0.672,1.075c-2.375,1.161-4.848,1.941-7.502,2.082c-0.875,0.048-1.742,0.017-2.582-0.264
c-1.43-0.474-2.125-1.555-2.381-2.962c-0.09-0.495-0.115-1.006-0.117-1.511c-0.008-3.465-0.006-6.93-0.004-10.394
c0.002-0.799,0.029-0.821,0.816-0.827c0.668-0.004,1.338,0.025,2.004-0.022c0.504-0.036,0.613,0.161,0.611,0.624
c-0.014,3.587-0.008,7.173-0.008,10.758c0,1.338,0.375,1.712,1.701,1.667c1.367-0.048,2.686-0.344,3.979-0.788
c0.482-0.165,0.635-0.462,0.633-0.959c-0.016-3.443-0.008-6.888-0.008-10.333c0-0.944,0.002-0.944,0.939-0.946
c0.627-0.001,1.256,0.025,1.883-0.007c0.537-0.029,0.707,0.194,0.703,0.711C301.354,16.977,301.365,19.024,301.365,21.07z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M245.922,22.893c0-2.005,0.012-4.008-0.01-6.014
c-0.004-0.487,0.152-0.773,0.604-0.992c2.16-1.044,4.445-1.605,6.824-1.839c0.344-0.034,0.488,0.111,0.488,0.441
c0,0.628-0.01,1.255,0.006,1.882c0.01,0.42-0.189,0.56-0.586,0.59c-0.99,0.073-1.965,0.239-2.932,0.473
c-0.662,0.16-0.9,0.474-0.895,1.174c0.037,3.442,0.018,6.886,0.018,10.328c0,0.852-0.033,0.884-0.891,0.887
c-0.607,0.002-1.215,0.005-1.822,0c-0.744-0.009-0.801-0.059-0.803-0.794C245.918,26.983,245.922,24.939,245.922,22.893z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M199.023,24.598c0,2.492-0.012,4.983,0.008,7.476
c0.004,0.521-0.156,0.727-0.695,0.705c-0.871-0.034-1.742-0.008-2.613-0.009c-0.886-0.003-0.887-0.004-0.887-0.871
c-0.001-3.585,0-7.17,0-10.756c0-1.135-0.02-2.27,0.005-3.402c0.013-0.613-0.291-0.944-0.827-1.117
c-0.691-0.224-1.401-0.187-2.107-0.098c-2.898,0.365-5.617,1.366-8.338,2.363c-0.756,0.277-0.787,0.271-0.787-0.521
c-0.004-4.193,0.002-8.387-0.021-12.58c-0.003-0.53,0.187-0.661,0.667-0.652c0.991,0.021,1.985,0.021,2.978-0.012
c0.537-0.018,0.695,0.192,0.689,0.713c-0.02,2.472-0.01,4.943-0.008,7.414c0.001,0.799,0.004,0.793,0.787,0.546
c2.057-0.651,4.146-1.109,6.324-1.015c1.027,0.045,2.017,0.261,2.898,0.802c1.334,0.817,1.871,2.108,1.896,3.6
c0.043,2.471,0.012,4.942,0.012,7.414C199.009,24.598,199.016,24.598,199.023,24.598z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M195.123,10.639c-0.607,0-1.215-0.004-1.822,0.002
c-0.346,0.002-0.536-0.066-0.266-0.438c1.063-1.463,1.91-3.051,2.662-4.69c0.131-0.288,0.346-0.368,0.631-0.368
c1.234,0.003,2.47,0.008,3.705-0.001c0.484-0.004,0.554,0.188,0.359,0.599c-0.773,1.635-1.714,3.165-2.826,4.592
c-0.184,0.235-0.4,0.312-0.682,0.308C196.296,10.633,195.708,10.638,195.123,10.639z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M182.824,28.402c0-1.252,0-2.505,0-3.759
c0-0.135-0.068-0.311,0.094-0.378c0.162-0.066,0.246,0.106,0.342,0.199c1.193,1.179,2.377,2.365,3.576,3.539
c0.287,0.281,0.318,0.489,0.007,0.796c-1.2,1.171-2.374,2.369-3.564,3.553c-0.103,0.101-0.193,0.312-0.386,0.204
c-0.136-0.078-0.082-0.259-0.082-0.395c-0.004-1.254-0.002-2.507-0.002-3.76C182.812,28.402,182.818,28.402,182.824,28.402z"/>
</g>
</g>
<g>
<g>
<g>
<path fill="#CCCCC9" d="M62.964,110.889c0,0-4.505-9.928-4.505-20.877c0-10.951,4.861-15.914,6.909-17.705
c2.046-1.793,6.703-4.607,11.001-4.607c4.297,0,6.805,2.814,6.805,2.814l1.33-1.789c0,0-7.165-7.012-16.271-7.012
c-9.109,0-17.295,6.756-21.134,13.561c-3.837,6.807-10.284,19.496-10.284,32.953l0.153,2.662H62.964z"/>
<polygon fill="#CCCCC9" points="67.107,106.334 61.965,106.028 60.968,102.522 65.264,102.522 "/>
<polygon fill="#CCCCC9" points="59.816,90.446 59.612,93.848 63.679,95.665 63.551,92.442 "/>
<polygon fill="#CCCCC9" points="61.148,81.542 59.894,84.102 63.193,86.94 64.012,83.743 "/>
<polygon fill="#CCCCC9" points="63.014,75.35 65.061,73.534 67.083,76.401 65.906,78.497 "/>
<polygon fill="#CCCCC9" points="69.053,70.491 71.816,69.772 72.199,71.334 70.333,72.844 "/>
<polygon fill="#CCCCC9" points="77.495,69.211 77.495,70.668 80.105,71.026 80.105,69.799 "/>
<polygon fill="#CCCCC9" points="80.693,64.938 81.332,64.067 78.084,61.662 77.982,63.504 "/>
<polygon fill="#CCCCC9" points="64.497,58.695 65.086,61.458 69.078,61.458 68.693,58.823 "/>
<polygon fill="#CCCCC9" points="56.285,60.205 58.69,62.842 55.416,64.733 53.114,61.894 "/>
<polygon fill="#CCCCC9" points="45.36,68.569 48.841,70.874 46.18,73.995 42.648,71.641 "/>
<polygon fill="#CCCCC9" points="36.714,81.491 41.242,83.256 39.808,87.069 35.205,85.61 "/>
<polygon fill="#CCCCC9" points="36.917,98.147 36.048,103.211 31.239,102.7 31.826,97.788 "/>
<path fill="#CCCCC9" d="M40.814,121.743c2.016-0.25,2.762-2.381,2.762-3.973s-0.787-2.725-2.149-3.262
c-1.362-0.537-3.933-0.441-3.933-0.441h-3.281v11.57h2.974v-2.992l2.649,2.629h4.547L40.814,121.743z M39.874,119.227h-2.571
v-2.014h2.571V119.227z"/>
<g>
<path fill="#CCCCC9" d="M55.185,116.735c0-0.787-0.634-2.629-3.262-2.629s-0.018,0-2.609,0c-2.59,0-3.127,1.861-3.127,2.857
c0,0.998,0,8.328,0,8.328h3.031v-1.938h2.937v1.938h3.031C55.185,125.292,55.185,117.52,55.185,116.735z M52.077,120.129h-2.821
v-3.107h2.821V120.129z"/>
</g>
<rect x="58.198" y="114.124" fill="#CCCCC9" width="3.128" height="11.016"/>
<polygon fill="#CCCCC9" points="67.677,122.012 67.677,114.124 64.55,114.124 64.55,122.012 64.55,125.139 67.677,125.139
72.091,125.139 72.091,122.012 "/>
<path fill="#CCCCC9" d="M79.689,118.252c-0.286,0-1.28,0-2.419,0l-0.21-0.021v-1.057h5.026v-3.068c-1.927,0-4.253-0.004-4.699,0
c-2.42,0.018-3.705,1.322-3.705,2.844c0,0.328,0,0.643,0,1.172c0,2.834,3.014,3.197,4.013,3.197c0.247,0,0.804,0,1.504,0
l0.049,0.023c0,0,0.537,0.016,0.537,0.701c0,0.684-0.537,0.662-0.537,0.662h-5.412v2.686c1.929,0,4.638,0,5.084,0
c2.314,0,3.705-1.246,3.705-2.77c0-0.326,0-0.639,0-1.17C82.625,118.618,80.687,118.252,79.689,118.252z"/>
</g>
</g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M148.72,93.829c0-1.045,0.018-2.09-0.004-3.135
c-0.029-1.357,0.902-2.373,1.869-2.711c1.258-0.439,2.615-0.025,3.347,1.004c0.324,0.459,0.534,0.973,0.53,1.562
c-0.013,1.875-0.012,3.748,0,5.621c0.006,0.824,0.195,1.594,0.83,2.186c0.836,0.775,1.812,1.043,2.891,0.65
c1.189-0.434,1.82-1.348,1.846-2.6c0.039-1.91,0.016-3.824,0.012-5.734c-0.004-1.348,1.011-2.541,2.238-2.785
c2.047-0.41,3.587,1.059,3.578,2.893c-0.008,1.873,0.025,3.748-0.012,5.621c-0.021,1.055,0.816,2.293,1.826,2.619
c1.202,0.389,2.359,0.041,3.14-0.941c0.396-0.498,0.55-1.049,0.549-1.664c-0.003-1.836-0.013-3.672,0.003-5.508
c0.008-0.881,0.273-1.68,0.949-2.295c0.883-0.807,1.916-1.021,3.012-0.604c1.177,0.449,1.83,1.363,1.846,2.645
c0.023,2.051,0.041,4.104-0.004,6.154c-0.043,2.025-0.814,3.799-2.16,5.297c-0.82,0.916-1.797,1.658-2.931,2.156
c-0.724,0.316-1.483,0.521-2.27,0.635c-1.364,0.197-2.692,0.057-3.988-0.389c-0.886-0.303-1.699-0.74-2.427-1.338
c-0.452-0.371-0.514-0.355-0.975,0.016c-1.652,1.328-3.557,1.9-5.654,1.783c-2.41-0.131-4.418-1.168-5.986-2.975
c-1.332-1.537-2.076-3.338-2.058-5.412C148.726,95.665,148.719,94.747,148.72,93.829L148.72,93.829z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M140.311,92.813c-1.44,0-2.882,0-4.321,0.002
c-0.478,0.002-0.498,0.021-0.5,0.496c-0.002,0.855,0.03,1.709-0.009,2.562c-0.067,1.479,1.394,2.939,2.923,2.92
c2.04-0.031,4.08-0.018,6.119-0.006c1.238,0.008,2.146,0.605,2.701,1.686c0.541,1.053,0.505,2.111-0.178,3.111
c-0.637,0.93-1.523,1.395-2.651,1.395c-2.04,0-4.079,0.033-6.118-0.01c-1.383-0.031-2.709-0.32-3.965-0.977
c-1.246-0.652-2.27-1.537-3.134-2.611c-1.009-1.254-1.604-2.699-1.812-4.301c-0.062-0.484-0.074-0.965-0.074-1.449
c0.001-4.016-0.023-8.031,0.01-12.047c0.018-1.908,1.333-2.992,3.093-3.062c1.495-0.059,2.749,1.102,3.01,2.486
c0.161,0.863,0.062,1.73,0.078,2.594c0.024,1.145-0.11,1.012,1.034,1.014c2.626,0.004,5.252,0.014,7.878-0.004
c1.468-0.008,2.786,1.051,3.093,2.367c0.329,1.412-0.363,2.906-1.674,3.559c-0.391,0.193-0.816,0.279-1.258,0.279
c-1.416-0.004-2.83,0-4.245,0C140.311,92.815,140.311,92.815,140.311,92.813z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M230.566,98.092c-1.529,0-3.06,0-4.59,0
c-0.558,0-0.654,0.166-0.385,0.664c0.318,0.592,0.912,0.814,1.486,0.994c1.312,0.408,2.652,0.5,3.987,0.084
c0.595-0.186,1.166-0.443,1.724-0.721c0.693-0.348,1.404-0.557,2.201-0.424c1.662,0.271,2.162,1.986,1.252,3.326
c-1.07,1.58-2.688,2.225-4.445,2.631c-1.399,0.324-2.828,0.418-4.252,0.316c-1.604-0.113-3.114-0.561-4.484-1.473
c-0.86-0.572-1.614-1.236-2.248-2.041c-0.895-1.133-1.424-2.426-1.637-3.855c-0.221-1.49-0.108-2.955,0.408-4.363
c0.615-1.68,1.626-3.062,3.213-3.977c1.471-0.848,3.059-1.221,4.741-1.262c1.239-0.031,2.472,0.012,3.681,0.309
c1.299,0.32,2.477,0.85,3.555,1.682c1.262,0.975,2.098,2.203,2.592,3.68c0.363,1.082,0.5,2.189,0.01,3.281
c-0.148,0.33-0.365,0.604-0.717,0.762c-0.564,0.254-1.145,0.4-1.771,0.391C233.445,98.081,232.006,98.092,230.566,98.092z
M228.49,94.19c0.865,0,1.732,0.004,2.598-0.004c0.36-0.002,0.444-0.125,0.305-0.453c-0.151-0.357-0.368-0.664-0.731-0.85
c-1.119-0.568-2.285-0.672-3.487-0.342c-0.663,0.182-1.277,0.457-1.564,1.154c-0.157,0.385-0.089,0.49,0.319,0.492
C226.783,94.194,227.635,94.19,228.49,94.19z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M212.562,89.295c0.866-0.002,1.733-0.008,2.6,0
c1.988,0.016,3.586,2.289,2.689,4.254c-0.609,1.34-1.666,1.934-3.092,1.943c-1.555,0.01-3.109,0-4.664,0
c-0.457,0-0.512,0.049-0.482,0.508c0.021,0.328,0.063,0.658,0.122,0.982c0.219,1.219,1.28,1.758,2.386,1.795
c0.954,0.029,1.91,0.004,2.867,0.008c2.049,0.006,3.553,1.922,3.012,3.896c-0.348,1.268-1.561,2.279-2.918,2.293
c-1.083,0.014-2.169,0.051-3.249-0.006c-2.335-0.123-4.396-0.896-6.01-2.676c-0.71-0.781-1.13-1.701-1.485-2.68
c-0.652-1.787-0.912-3.652-1.142-5.521c-0.106-0.869-0.101-1.75-0.17-2.625c-0.14-1.756-0.083-3.516-0.058-5.271
c0.015-1.088,0.029-2.189,0.204-3.27c0.184-1.133,1.269-2.148,2.396-2.344c1.653-0.293,2.955,0.545,3.527,1.998
c0.17,0.43,0.197,0.895,0.201,1.352c0.013,1.605,0.004,3.211,0.008,4.818c0,0.51,0.033,0.543,0.543,0.543
C210.751,89.297,211.657,89.295,212.562,89.295z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M193.086,86.071c0,0.893-0.001,1.785,0,2.676
c0.001,0.543,0.007,0.547,0.564,0.549c1.759,0,3.519-0.006,5.277,0.002c1.542,0.004,2.919,1.357,2.974,2.895
c0.057,1.611-1.045,2.881-2.291,3.172c-0.381,0.088-0.777,0.131-1.174,0.129c-1.491,0-2.982,0-4.475,0.002
c-0.476,0-0.486,0.02-0.498,0.498c-0.014,0.57,0.074,1.127,0.352,1.623c0.455,0.816,1.225,1.127,2.104,1.16
c0.954,0.037,1.912,0.031,2.868,0.004c1.27-0.037,2.162,0.631,2.77,1.613c0.584,0.945,0.459,2.637-0.449,3.541
c-0.776,0.775-1.639,1.057-2.672,1.047c-0.867-0.01-1.734,0.02-2.601-0.006c-2.401-0.07-4.521-0.84-6.178-2.639
c-0.907-0.984-1.37-2.213-1.742-3.48c-0.509-1.732-0.771-3.504-0.934-5.293c-0.089-0.986-0.196-1.975-0.165-2.969
c0.02-0.627-0.086-1.246-0.074-1.869c0.03-1.666,0.1-3.332,0.148-4.998c0.029-1.021,0.395-1.896,1.198-2.535
c0.854-0.682,1.85-0.859,2.88-0.518c1.072,0.357,1.771,1.119,2.059,2.229c0.043,0.17,0.055,0.352,0.056,0.529
C193.09,84.311,193.087,85.19,193.086,86.071z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M238.672,99.112c0-0.945,0-1.889,0-2.832
c0-2.008,0.672-3.779,1.973-5.289c1.43-1.656,3.229-2.693,5.426-2.98c0.139-0.02,0.279-0.018,0.42-0.018
c1.619-0.002,3.238,0.018,4.855-0.006c1.178-0.016,1.986,0.535,2.527,1.535c0.523,0.967,0.42,1.91-0.131,2.83
c-0.539,0.9-1.342,1.312-2.381,1.307c-1.275-0.008-2.551-0.016-3.824,0.004c-0.746,0.01-1.461,0.131-2.074,0.631
c-0.689,0.559-1.043,1.27-1.049,2.145c-0.012,1.848,0.004,3.695-0.01,5.545c-0.004,0.801-0.252,1.52-0.828,2.109
c-1.102,1.131-2.686,1.133-3.838,0.217c-0.709-0.562-1.078-1.299-1.068-2.217C238.678,101.1,238.672,100.104,238.672,99.112z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M185.054,96.913c0,1.658-0.004,3.314,0.002,4.973
c0.002,1.074-0.454,1.857-1.322,2.518c-1.906,1.449-4.646-0.041-4.816-2.168c-0.025-0.318-0.059-0.633-0.059-0.951
c0-2.971-0.004-5.939,0.004-8.91c0.002-0.369,0.03-0.742,0.104-1.102c0.265-1.305,1.459-2.328,2.898-2.42
c1.127-0.072,2.491,0.672,2.961,1.902c0.154,0.4,0.232,0.799,0.231,1.225C185.05,93.625,185.054,95.27,185.054,96.913z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M185.055,83.555c0.107,1.664-1.44,3.125-2.993,3.141
c-1.723,0.014-3.182-1.346-3.175-3.051c0.007-1.781,1.325-3.107,3.071-3.143C183.671,80.469,185.044,81.842,185.055,83.555z"/>
</g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M320.878,76.834c1.083,1.312,1.896,2.756,2.124,4.471
c0.24,1.814-0.036,3.531-0.981,5.201c-0.821-1.078-1.874-1.605-3.136-1.729c-0.357-0.033-0.863,0.084-1.035-0.107
c-0.2-0.221-0.074-0.713-0.152-1.074c-0.178-0.836-0.309-1.695-0.614-2.484c-0.296-0.766-0.784-1.459-1.22-2.24
c1.102-0.98,2.396-1.656,3.932-1.854c0.232-0.029,0.457-0.119,0.686-0.184C320.613,76.834,320.746,76.834,320.878,76.834z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M385.086,105.174c-0.125,0.057-0.173,0.062-0.2,0.092
c-3.155,3.256-8.157,2.371-9.974-1.762c-1.322-3.01-0.537-6.617,1.86-8.549c2.007-1.615,5.244-1.742,7.149-0.268
c0.409,0.318,0.79,0.672,1.227,1.045c0-0.199,0-0.428,0-0.658c0-2.248-0.01-4.498,0.004-6.748
c0.008-1.283,1.053-1.986,2.078-1.418c0.541,0.301,0.711,0.795,0.709,1.391c-0.006,3.506-0.003,7.012-0.003,10.52
c0,2.227,0.001,4.455-0.001,6.682c-0.001,1.016-0.488,1.605-1.329,1.625c-0.862,0.02-1.386-0.527-1.46-1.523
C385.137,105.475,385.112,105.35,385.086,105.174z M385.146,100.452c0-0.133,0.002-0.266,0-0.396
c-0.041-2-1.541-3.732-3.412-3.943c-2.168-0.244-3.953,0.898-4.471,2.941c-0.16,0.627-0.197,1.309-0.166,1.959
c0.123,2.596,2.55,4.359,5.055,3.713C384.066,104.233,385.148,102.686,385.146,100.452z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M423.15,98.934c0.34-0.223,0.543-0.338,0.727-0.479
c1.729-1.332,3.455-2.67,5.182-4.006c0.139-0.107,0.277-0.217,0.422-0.318c0.66-0.467,1.396-0.412,1.834,0.131
c0.482,0.604,0.402,1.221-0.281,1.785c-0.834,0.688-1.693,1.344-2.539,2.014c-0.549,0.436-1.094,0.873-1.709,1.365
c0.705,0.822,1.359,1.588,2.02,2.35c0.926,1.066,1.859,2.123,2.779,3.195c0.408,0.475,0.539,1.006,0.197,1.578
c-0.301,0.51-0.801,0.67-1.312,0.514c-0.352-0.105-0.688-0.385-0.941-0.668c-1.398-1.559-2.77-3.143-4.145-4.725
c-0.625-0.717-0.588-0.676-1.354-0.168c-0.68,0.453-0.973,0.984-0.895,1.807c0.072,0.768,0.027,1.543,0.012,2.316
c-0.021,0.93-0.578,1.514-1.4,1.498c-0.818-0.014-1.285-0.531-1.287-1.504c-0.006-5.779-0.006-11.561,0-17.34
c0.002-0.945,0.57-1.596,1.328-1.578c0.801,0.02,1.357,0.676,1.359,1.652c0.008,3.221,0.004,6.441,0.004,9.662
C423.15,98.27,423.15,98.522,423.15,98.934z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M398.605,101.266c-1.456,0.002-2.912,0.012-4.367-0.004
c-0.518-0.006-0.639,0.168-0.518,0.682c0.418,1.773,1.886,2.959,3.689,3.033c1.59,0.064,2.934-0.438,4.105-1.488
c0.571-0.514,1.186-0.508,1.639-0.029c0.414,0.434,0.398,1.098-0.115,1.594c-2.09,2.02-4.592,2.688-7.367,1.926
c-2.696-0.742-4.344-2.648-4.775-5.371c-0.768-4.842,3.012-7.932,6.516-7.955c3.531-0.025,6.23,2.59,6.562,5.734
c0.021,0.197,0.085,0.389,0.104,0.586c0.081,0.852-0.307,1.285-1.172,1.291C401.473,101.272,400.039,101.266,398.605,101.266z
M393.766,99.305c0.133,0.043,0.193,0.08,0.254,0.08c2.268,0.006,4.536,0.006,6.805,0.014c0.443,0,0.506-0.215,0.406-0.598
c-0.791-3.004-4.145-3.525-6.02-2.152C394.331,97.293,393.803,98.174,393.766,99.305z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M351.208,101.266c-1.435,0-2.868,0.018-4.302-0.008
c-0.527-0.01-0.638,0.176-0.549,0.67c0.291,1.598,1.857,2.941,3.479,3.045c1.685,0.107,3.116-0.406,4.367-1.514
c0.544-0.48,1.161-0.471,1.579-0.02c0.402,0.438,0.372,1.102-0.104,1.613c-1.129,1.213-2.57,1.834-4.164,2.133
c-3.206,0.6-6.405-1.17-7.599-4.186c-1.584-3.996,0.734-8.451,4.958-9.217c4.626-0.838,7.685,2.512,7.815,6.338
c0.026,0.791-0.324,1.135-1.113,1.141C354.121,101.272,352.664,101.266,351.208,101.266z M353.903,99.399
c-0.017-0.287,0.005-0.469-0.04-0.631c-0.375-1.371-1.631-2.953-4.023-2.814c-1.627,0.094-3.064,1.254-3.418,2.889
c-0.111,0.508,0.15,0.559,0.534,0.559c1.673-0.004,3.347-0.002,5.021-0.002C352.589,99.399,353.201,99.399,353.903,99.399z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M359.393,102.532c0.064-1.385-0.015-2.793,0.221-4.148
c0.506-2.922,3.252-4.939,6.313-4.805c2.958,0.129,5.493,2.404,5.714,5.342c0.171,2.281,0.125,4.578,0.129,6.869
c0.002,0.9-0.652,1.547-1.408,1.535c-0.828-0.012-1.367-0.641-1.369-1.613c-0.004-1.896,0.012-3.793-0.01-5.689
c-0.006-0.502-0.061-1.018-0.19-1.5c-0.463-1.721-1.849-2.598-3.735-2.414c-1.502,0.148-2.707,1.48-2.801,3.123
c-0.045,0.814-0.068,1.629-0.077,2.445c-0.013,1.299,0.003,2.602-0.006,3.902c-0.007,1.09-0.534,1.752-1.372,1.756
c-0.833,0.004-1.345-0.662-1.347-1.758c-0.001-1.016-0.001-2.029-0.001-3.043C359.434,102.532,359.414,102.532,359.393,102.532z"
/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M337.76,96.309c-0.423-0.029-0.652-0.059-0.881-0.059
c-1.764-0.004-3.527,0-5.291-0.004c-0.779-0.002-1.326-0.438-1.357-1.059c-0.031-0.627,0.534-1.113,1.357-1.115
c2.82-0.008,5.643-0.002,8.464-0.004c0.583-0.002,1.104,0.104,1.374,0.701c0.274,0.617,0.014,1.102-0.38,1.564
c-2.112,2.484-4.222,4.971-6.33,7.459c-0.192,0.229-0.372,0.467-0.667,0.838c0.396,0.029,0.622,0.061,0.848,0.061
c1.74,0.004,3.482,0,5.224,0.004c0.862,0.002,1.348,0.406,1.35,1.104c0.003,0.684-0.511,1.15-1.331,1.152
c-2.821,0.01-5.643,0.004-8.465,0.004c-0.603,0-1.072-0.227-1.332-0.793c-0.25-0.545,0.004-0.984,0.34-1.385
c2.096-2.496,4.199-4.99,6.298-7.486C337.203,97.026,337.412,96.749,337.76,96.309z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M412.048,93.694c1.438-0.074,2.812,0.279,4.126,0.9
c0.793,0.375,1.068,0.883,0.809,1.492c-0.273,0.641-0.891,0.834-1.669,0.508c-1.386-0.58-2.813-0.877-4.313-0.615
c-0.341,0.059-0.697,0.15-0.994,0.32c-0.807,0.459-0.859,1.518-0.076,2.016c0.475,0.303,1.035,0.475,1.566,0.682
c1.148,0.443,2.332,0.807,3.447,1.32c1.346,0.621,2.248,1.598,2.141,3.238c-0.104,1.557-0.988,2.555-2.327,3.094
c-2.756,1.111-5.438,0.729-7.995-0.689c-0.461-0.256-0.795-0.664-0.639-1.254c0.2-0.758,0.814-1.016,1.547-0.619
c1.308,0.709,2.686,1.135,4.176,0.988c0.643-0.062,1.314-0.217,1.892-0.498c1.071-0.52,1.104-1.699,0.062-2.273
c-0.784-0.432-1.665-0.684-2.491-1.047c-1.043-0.457-2.162-0.818-3.094-1.445c-2.09-1.41-1.895-4.129,0.303-5.373
C409.605,93.821,410.787,93.627,412.048,93.694z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M315.177,86.602c-0.774-1.025-1.718-1.646-2.946-1.797
c-0.174-0.021-0.336-0.199-0.483-0.326c-1.455-1.244-3.14-1.926-5.052-2.002c-0.475-0.018-0.631-0.191-0.582-0.635
c0.182-1.656,0.736-3.164,1.812-4.451c0.123-0.146,0.358-0.275,0.545-0.281c4.072-0.125,7.775,3.326,8.008,7.414
c0.031,0.553-0.043,0.975-0.546,1.295C315.664,85.991,315.475,86.286,315.177,86.602z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M318.981,101.979c-0.858,1.795-2.122,3.059-3.831,3.871
c-0.165,0.08-0.436,0.047-0.616-0.031c-3.856-1.629-5.792-7-3.862-10.691c0.02-0.039,0.056-0.068,0.104-0.125
c0.787,0.568,1.53,1.191,2.355,1.674c0.947,0.555,1.713,1.197,2.244,2.203c0.652,1.23,1.754,2.07,2.969,2.744
C318.534,101.729,318.723,101.836,318.981,101.979z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M316.119,97.493c1.088-0.791,2.113-1.549,3.156-2.279
c0.158-0.109,0.429-0.178,0.605-0.125c2.073,0.619,4.049,0.322,5.975-0.566c0.077-0.037,0.166-0.047,0.295-0.08
c0.549,0.885,0.773,1.871,0.867,2.871c0.062,0.672-0.062,1.359-0.07,2.041c-0.006,0.607-0.354,0.885-0.867,1.1
c-3.544,1.475-7.639,0.361-9.798-2.684C316.22,97.682,316.173,97.584,316.119,97.493z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M307.641,90.624c0.697,1.098,1.355,2.102,1.973,3.131
c0.094,0.154,0.082,0.467-0.012,0.629c-0.902,1.545-1.341,3.199-1.224,4.988c0.033,0.502,0.119,0.998,0.188,1.57
c-0.192,0.059-0.391,0.16-0.596,0.176c-1.437,0.105-2.854,0.07-4.223-0.488c-0.58-0.238-0.889-0.541-1.002-1.217
c-0.594-3.586,1.41-7.338,4.743-8.744C307.568,90.635,307.655,90.62,307.641,90.624z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M320.776,93.774c0.288-0.412,0.593-0.814,0.86-1.238
c0.781-1.238,1.242-2.562,1.059-4.061c-0.025-0.207,0.099-0.477,0.237-0.65c0.787-0.984,1.288-2.102,1.558-3.318
c0.092-0.414,0.246-0.496,0.635-0.379c1.579,0.475,2.945,1.293,4.006,2.555c0.201,0.24,0.297,0.701,0.229,1.014
c-0.704,3.244-3.587,5.812-6.874,6.166c-0.552,0.061-1.106,0.092-1.66,0.137C320.811,93.924,320.793,93.848,320.776,93.774z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M302.955,92.192c-1.487-1.262-2.441-2.77-2.791-4.633
c-0.039-0.201,0.072-0.482,0.205-0.654c2.179-2.852,6.742-3.752,9.987-1.939c-0.171,0.092-0.31,0.168-0.451,0.24
c-1.297,0.662-2.036,1.727-2.187,3.166c-0.062,0.6-0.273,0.918-0.893,1.096c-1.321,0.373-2.406,1.166-3.34,2.166
C303.325,91.805,303.161,91.975,302.955,92.192z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 48 KiB

View File

@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="124.93px" height="24.499px" viewBox="1.843 1.217 124.93 24.499" enable-background="new 1.843 1.217 124.93 24.499"
xml:space="preserve">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M21.278,14.543c0-1.045,0.018-2.09-0.004-3.135
c-0.029-1.356,0.902-2.373,1.869-2.71c1.258-0.439,2.615-0.025,3.347,1.004c0.324,0.458,0.534,0.972,0.53,1.562
c-0.013,1.874-0.012,3.748,0,5.621c0.006,0.824,0.195,1.594,0.83,2.186c0.836,0.775,1.812,1.043,2.891,0.65
c1.189-0.434,1.82-1.348,1.846-2.6c0.039-1.91,0.016-3.825,0.012-5.735c-0.004-1.348,1.011-2.54,2.238-2.785
c2.047-0.41,3.587,1.06,3.578,2.894c-0.008,1.873,0.025,3.748-0.012,5.621c-0.021,1.055,0.816,2.293,1.826,2.619
c1.202,0.389,2.359,0.041,3.14-0.941c0.396-0.498,0.55-1.049,0.549-1.664c-0.003-1.836-0.013-3.671,0.003-5.507
c0.008-0.882,0.273-1.68,0.949-2.295c0.883-0.807,1.916-1.021,3.012-0.604c1.177,0.449,1.83,1.363,1.846,2.644
c0.023,2.051,0.041,4.104-0.004,6.155c-0.043,2.025-0.814,3.799-2.16,5.297c-0.82,0.916-1.797,1.658-2.931,2.156
c-0.724,0.316-1.483,0.521-2.27,0.635c-1.364,0.197-2.692,0.057-3.988-0.389c-0.886-0.303-1.699-0.74-2.427-1.338
c-0.452-0.371-0.514-0.355-0.975,0.016c-1.652,1.328-3.557,1.9-5.654,1.783c-2.41-0.131-4.418-1.168-5.986-2.975
c-1.332-1.537-2.076-3.338-2.058-5.412C21.284,16.379,21.277,15.461,21.278,14.543L21.278,14.543z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M12.869,13.528c-1.44,0-2.882-0.001-4.321,0.001
c-0.478,0.002-0.498,0.022-0.5,0.497c-0.002,0.855,0.03,1.709-0.009,2.562c-0.067,1.479,1.394,2.939,2.923,2.92
c2.04-0.031,4.08-0.018,6.119-0.006c1.238,0.008,2.146,0.605,2.701,1.686c0.541,1.053,0.505,2.111-0.178,3.111
c-0.637,0.93-1.523,1.395-2.651,1.395c-2.04,0-4.079,0.033-6.118-0.01c-1.383-0.031-2.709-0.32-3.965-0.977
c-1.246-0.652-2.27-1.537-3.134-2.611c-1.009-1.254-1.604-2.699-1.812-4.301C1.862,17.311,1.85,16.83,1.85,16.346
c0.001-4.015-0.023-8.031,0.01-12.047c0.018-1.907,1.333-2.992,3.093-3.062c1.495-0.059,2.749,1.103,3.01,2.487
c0.161,0.862,0.062,1.729,0.078,2.593c0.024,1.146-0.11,1.012,1.034,1.015c2.626,0.004,5.252,0.013,7.878-0.004
c1.468-0.009,2.786,1.051,3.093,2.366c0.329,1.412-0.363,2.906-1.674,3.56c-0.391,0.193-0.816,0.279-1.258,0.278
c-1.416-0.003-2.83,0-4.245,0C12.869,13.529,12.869,13.529,12.869,13.528z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M103.124,18.807c-1.529,0-3.061,0-4.59,0
c-0.559,0-0.654,0.166-0.385,0.664c0.318,0.592,0.912,0.814,1.486,0.994c1.312,0.408,2.652,0.5,3.986,0.084
c0.596-0.186,1.166-0.443,1.725-0.721c0.693-0.348,1.404-0.557,2.201-0.424c1.662,0.271,2.162,1.986,1.252,3.326
c-1.07,1.58-2.688,2.225-4.445,2.631c-1.398,0.324-2.828,0.418-4.252,0.316c-1.604-0.113-3.115-0.561-4.484-1.473
c-0.861-0.572-1.615-1.236-2.248-2.041c-0.895-1.133-1.424-2.426-1.637-3.855c-0.221-1.49-0.109-2.955,0.408-4.363
c0.615-1.679,1.625-3.062,3.213-3.977c1.471-0.847,3.059-1.22,4.74-1.261c1.24-0.031,2.473,0.012,3.682,0.309
c1.299,0.319,2.477,0.849,3.555,1.682c1.262,0.975,2.098,2.202,2.592,3.679c0.363,1.082,0.5,2.189,0.01,3.281
c-0.148,0.33-0.365,0.604-0.717,0.762c-0.564,0.254-1.145,0.4-1.771,0.391C106.003,18.795,104.564,18.807,103.124,18.807z
M101.048,14.905c0.865,0,1.732,0.004,2.598-0.004c0.359-0.002,0.443-0.125,0.305-0.453c-0.15-0.357-0.367-0.664-0.73-0.849
c-1.119-0.568-2.285-0.672-3.488-0.342c-0.662,0.181-1.277,0.457-1.564,1.154c-0.156,0.385-0.088,0.49,0.32,0.492
C99.341,14.908,100.193,14.905,101.048,14.905z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M85.12,10.01c0.865-0.001,1.732-0.007,2.6,0
c1.988,0.016,3.586,2.29,2.689,4.254c-0.609,1.34-1.666,1.934-3.092,1.943c-1.555,0.01-3.109,0-4.664,0
c-0.457,0-0.512,0.049-0.482,0.508c0.02,0.328,0.062,0.658,0.121,0.982c0.219,1.219,1.281,1.758,2.387,1.795
c0.953,0.029,1.91,0.004,2.867,0.008c2.049,0.006,3.553,1.922,3.012,3.896c-0.348,1.268-1.561,2.279-2.918,2.293
c-1.084,0.014-2.17,0.051-3.25-0.006c-2.334-0.123-4.395-0.896-6.01-2.676c-0.709-0.781-1.129-1.701-1.484-2.68
c-0.652-1.787-0.912-3.652-1.143-5.521c-0.105-0.869-0.1-1.75-0.17-2.625c-0.139-1.757-0.082-3.516-0.057-5.271
c0.014-1.089,0.029-2.19,0.203-3.27c0.184-1.134,1.27-2.148,2.396-2.345c1.652-0.292,2.955,0.545,3.527,1.998
c0.17,0.431,0.197,0.896,0.201,1.353c0.012,1.605,0.004,3.211,0.008,4.818c0,0.51,0.033,0.542,0.543,0.543
C83.31,10.011,84.214,10.01,85.12,10.01z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M65.644,6.785c0,0.893,0,1.785,0,2.677
c0.002,0.542,0.008,0.547,0.564,0.548c1.76,0,3.52-0.006,5.277,0.002c1.543,0.004,2.92,1.358,2.975,2.896
c0.057,1.611-1.045,2.88-2.291,3.171c-0.381,0.088-0.777,0.131-1.174,0.129c-1.492,0-2.982,0-4.475,0.002
c-0.477,0-0.486,0.02-0.498,0.498c-0.014,0.57,0.074,1.127,0.352,1.623c0.455,0.816,1.225,1.127,2.104,1.16
c0.955,0.037,1.912,0.031,2.869,0.004c1.27-0.037,2.162,0.631,2.77,1.613c0.584,0.945,0.459,2.637-0.449,3.541
c-0.777,0.775-1.639,1.057-2.672,1.047c-0.867-0.01-1.734,0.02-2.602-0.006c-2.4-0.07-4.521-0.84-6.177-2.639
c-0.907-0.984-1.37-2.213-1.742-3.48c-0.509-1.732-0.771-3.504-0.934-5.293c-0.089-0.986-0.196-1.975-0.165-2.969
c0.02-0.626-0.086-1.245-0.074-1.868c0.03-1.666,0.1-3.332,0.148-4.998c0.029-1.021,0.395-1.897,1.198-2.536
c0.854-0.681,1.85-0.858,2.88-0.517c1.073,0.357,1.772,1.119,2.059,2.229c0.043,0.17,0.055,0.352,0.055,0.528
C65.648,5.025,65.646,5.905,65.644,6.785z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M111.23,19.826c0-0.945,0-1.889,0-2.832
c0-2.008,0.672-3.779,1.973-5.289c1.43-1.657,3.229-2.694,5.426-2.981c0.139-0.02,0.279-0.017,0.42-0.017
c1.619-0.002,3.238,0.017,4.855-0.006c1.178-0.016,1.986,0.535,2.527,1.535c0.523,0.966,0.42,1.91-0.131,2.83
c-0.539,0.9-1.342,1.312-2.381,1.306c-1.275-0.008-2.551-0.016-3.824,0.004c-0.746,0.01-1.461,0.131-2.074,0.631
c-0.689,0.559-1.043,1.27-1.049,2.145c-0.012,1.848,0.004,3.695-0.01,5.545c-0.004,0.801-0.252,1.52-0.828,2.109
c-1.102,1.131-2.686,1.133-3.838,0.217c-0.709-0.562-1.078-1.299-1.068-2.217C111.236,21.815,111.23,20.819,111.23,19.826z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M57.612,17.627c0,1.658-0.004,3.314,0.002,4.973
c0.002,1.074-0.454,1.857-1.322,2.518c-1.906,1.449-4.646-0.041-4.816-2.168c-0.025-0.318-0.059-0.633-0.059-0.951
c0-2.971-0.004-5.939,0.004-8.911c0.002-0.368,0.03-0.741,0.104-1.101c0.265-1.305,1.459-2.328,2.898-2.42
c1.127-0.072,2.491,0.671,2.961,1.901c0.154,0.401,0.232,0.8,0.231,1.226C57.608,14.34,57.612,15.985,57.612,17.627z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CBCBC8" d="M57.613,4.269c0.107,1.665-1.44,3.126-2.993,3.141
c-1.723,0.015-3.182-1.346-3.175-3.05c0.007-1.781,1.325-3.107,3.071-3.143C56.229,1.184,57.602,2.556,57.613,4.269z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@ -0,0 +1,88 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="131.821px" height="30.5px" viewBox="0 0 131.821 30.5" enable-background="new 0 0 131.821 30.5" xml:space="preserve">
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M20.722,0c1.083,1.312,1.896,2.755,2.124,4.471
c0.241,1.813-0.036,3.531-0.981,5.201c-0.821-1.078-1.874-1.605-3.136-1.729c-0.356-0.034-0.862,0.083-1.034-0.107
c-0.201-0.222-0.075-0.714-0.152-1.075c-0.178-0.836-0.31-1.694-0.615-2.483c-0.295-0.767-0.784-1.46-1.22-2.241
c1.102-0.979,2.397-1.655,3.931-1.853c0.233-0.029,0.458-0.12,0.687-0.184C20.458,0,20.59,0,20.722,0z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M84.931,28.339c-0.125,0.057-0.174,0.063-0.201,0.092
c-3.154,3.256-8.157,2.372-9.974-1.762c-1.322-3.01-0.537-6.616,1.86-8.548c2.008-1.616,5.244-1.743,7.149-0.269
c0.409,0.318,0.79,0.672,1.228,1.045c0-0.199,0-0.428,0-0.657c0-2.249-0.011-4.499,0.004-6.748
c0.008-1.283,1.053-1.987,2.077-1.419c0.541,0.302,0.712,0.795,0.71,1.391c-0.007,3.506-0.004,7.013-0.004,10.52
c0,2.228,0.002,4.455,0,6.682c-0.002,1.016-0.488,1.606-1.33,1.625c-0.862,0.02-1.385-0.526-1.459-1.522
C84.981,28.641,84.956,28.515,84.931,28.339z M84.991,23.616c0-0.133,0.002-0.265-0.001-0.396c-0.04-1.999-1.54-3.731-3.411-3.942
c-2.168-0.244-3.953,0.898-4.472,2.94c-0.159,0.628-0.196,1.309-0.166,1.959c0.124,2.596,2.55,4.359,5.055,3.714
C83.91,27.397,84.993,25.852,84.991,23.616z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M122.994,22.099c0.341-0.223,0.544-0.338,0.727-0.478
c1.729-1.333,3.455-2.67,5.182-4.006c0.14-0.107,0.277-0.218,0.422-0.319c0.661-0.467,1.396-0.412,1.835,0.132
c0.482,0.603,0.402,1.22-0.282,1.784c-0.833,0.688-1.693,1.344-2.539,2.015c-0.549,0.436-1.094,0.873-1.709,1.364
c0.706,0.822,1.36,1.589,2.021,2.35c0.925,1.066,1.859,2.124,2.779,3.195c0.408,0.476,0.539,1.007,0.197,1.579
c-0.302,0.509-0.802,0.669-1.312,0.514c-0.352-0.105-0.688-0.385-0.941-0.668c-1.398-1.56-2.771-3.144-4.146-4.725
c-0.625-0.718-0.588-0.677-1.353-0.168c-0.68,0.452-0.974,0.984-0.896,1.807c0.072,0.767,0.028,1.543,0.012,2.315
c-0.021,0.931-0.577,1.514-1.399,1.499c-0.819-0.015-1.285-0.532-1.287-1.504c-0.006-5.78-0.006-11.561,0-17.341
c0.002-0.945,0.57-1.595,1.327-1.577c0.802,0.019,1.357,0.675,1.36,1.651c0.007,3.221,0.003,6.441,0.003,9.662
C122.994,21.435,122.994,21.687,122.994,22.099z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M98.449,24.432c-1.456,0.001-2.911,0.011-4.366-0.005
c-0.518-0.006-0.64,0.169-0.519,0.682c0.419,1.774,1.886,2.959,3.689,3.033c1.591,0.064,2.935-0.438,4.106-1.488
c0.57-0.513,1.185-0.507,1.639-0.029c0.414,0.435,0.398,1.098-0.115,1.594c-2.09,2.021-4.593,2.688-7.368,1.926
c-2.696-0.741-4.343-2.648-4.774-5.371c-0.769-4.841,3.011-7.931,6.516-7.955c3.53-0.024,6.229,2.59,6.562,5.735
c0.021,0.197,0.084,0.389,0.104,0.586c0.08,0.851-0.308,1.284-1.173,1.29C101.316,24.437,99.883,24.431,98.449,24.432z
M93.61,22.471c0.133,0.042,0.193,0.08,0.254,0.08c2.268,0.006,4.535,0.006,6.804,0.013c0.444,0,0.507-0.215,0.406-0.597
c-0.79-3.005-4.145-3.525-6.02-2.152C94.175,20.458,93.647,21.339,93.61,22.471z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M51.052,24.431c-1.434,0.001-2.869,0.019-4.302-0.008
c-0.526-0.009-0.637,0.177-0.548,0.67c0.29,1.598,1.857,2.942,3.479,3.046c1.685,0.107,3.116-0.406,4.367-1.514
c0.544-0.481,1.162-0.472,1.579-0.02c0.402,0.437,0.372,1.101-0.104,1.612c-1.129,1.213-2.57,1.834-4.164,2.133
c-3.206,0.601-6.405-1.169-7.599-4.185c-1.583-3.996,0.734-8.452,4.958-9.217c4.626-0.839,7.685,2.512,7.815,6.338
c0.027,0.79-0.323,1.134-1.112,1.14C53.965,24.438,52.509,24.431,51.052,24.431z M53.748,22.564
c-0.016-0.288,0.004-0.469-0.04-0.632c-0.375-1.371-1.63-2.952-4.023-2.814c-1.627,0.095-3.065,1.254-3.418,2.89
c-0.11,0.508,0.151,0.559,0.535,0.558c1.673-0.004,3.347-0.001,5.021-0.001C52.433,22.564,53.045,22.564,53.748,22.564z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M59.237,25.696c0.063-1.385-0.015-2.793,0.22-4.147
c0.506-2.922,3.252-4.939,6.314-4.805c2.958,0.129,5.494,2.404,5.714,5.341c0.17,2.281,0.125,4.578,0.129,6.869
c0.002,0.901-0.652,1.548-1.409,1.536c-0.828-0.013-1.366-0.641-1.368-1.614c-0.004-1.896,0.012-3.793-0.01-5.689
c-0.006-0.502-0.061-1.017-0.191-1.5c-0.463-1.721-1.848-2.598-3.735-2.413c-1.502,0.147-2.708,1.479-2.8,3.123
c-0.046,0.814-0.069,1.629-0.078,2.444c-0.012,1.3,0.003,2.602-0.006,3.903c-0.007,1.09-0.534,1.751-1.373,1.756
c-0.833,0.004-1.344-0.663-1.346-1.758c-0.001-1.016,0-2.029,0-3.043C59.278,25.697,59.258,25.697,59.237,25.696z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M37.604,19.474c-0.423-0.028-0.652-0.058-0.881-0.059
c-1.764-0.004-3.527,0.001-5.29-0.004c-0.779-0.002-1.326-0.438-1.358-1.058c-0.031-0.628,0.535-1.113,1.357-1.116
c2.821-0.008,5.643-0.001,8.464-0.004c0.583-0.001,1.105,0.104,1.374,0.702c0.275,0.616,0.015,1.101-0.379,1.563
c-2.113,2.484-4.222,4.972-6.33,7.46c-0.193,0.228-0.372,0.466-0.667,0.837c0.396,0.029,0.622,0.062,0.847,0.062
c1.741,0.004,3.483,0,5.224,0.003c0.862,0.003,1.348,0.406,1.35,1.104c0.002,0.684-0.511,1.15-1.331,1.152
c-2.821,0.011-5.643,0.004-8.464,0.005c-0.603,0-1.072-0.227-1.332-0.793c-0.25-0.546,0.003-0.984,0.339-1.385
c2.097-2.497,4.2-4.991,6.298-7.486C37.047,20.19,37.256,19.914,37.604,19.474z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M111.892,16.858c1.438-0.074,2.812,0.279,4.126,0.9
c0.794,0.376,1.068,0.883,0.81,1.492c-0.273,0.642-0.891,0.834-1.67,0.508c-1.385-0.579-2.812-0.877-4.312-0.614
c-0.342,0.059-0.697,0.15-0.995,0.319c-0.806,0.46-0.859,1.518-0.076,2.016c0.475,0.303,1.035,0.475,1.567,0.682
c1.148,0.443,2.332,0.807,3.446,1.321c1.346,0.621,2.248,1.598,2.141,3.238c-0.103,1.556-0.988,2.554-2.327,3.093
c-2.756,1.112-5.438,0.729-7.994-0.689c-0.461-0.256-0.796-0.663-0.64-1.253c0.2-0.758,0.815-1.016,1.547-0.619
c1.308,0.708,2.686,1.135,4.177,0.987c0.643-0.062,1.314-0.216,1.891-0.497c1.071-0.52,1.105-1.7,0.062-2.274
c-0.784-0.431-1.664-0.684-2.49-1.047c-1.044-0.457-2.162-0.817-3.095-1.445c-2.089-1.409-1.894-4.129,0.303-5.373
C109.45,16.986,110.632,16.793,111.892,16.858z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M15.021,9.768c-0.774-1.025-1.718-1.646-2.947-1.798
c-0.173-0.021-0.335-0.199-0.483-0.326c-1.455-1.244-3.14-1.926-5.051-2.001C6.064,5.625,5.909,5.45,5.958,5.007
C6.139,3.351,6.694,1.844,7.77,0.556C7.893,0.409,8.128,0.28,8.315,0.274c4.072-0.125,7.774,3.326,8.007,7.414
c0.032,0.554-0.043,0.975-0.545,1.296C15.509,9.155,15.319,9.45,15.021,9.768z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M18.826,25.145c-0.858,1.794-2.123,3.058-3.831,3.871
c-0.166,0.08-0.436,0.046-0.617-0.031c-3.857-1.63-5.792-7.001-3.862-10.692c0.019-0.038,0.056-0.068,0.104-0.125
c0.787,0.568,1.53,1.191,2.354,1.674c0.948,0.555,1.713,1.197,2.245,2.203c0.652,1.23,1.754,2.071,2.969,2.745
C18.378,24.895,18.567,25.001,18.826,25.145z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M15.963,20.657c1.088-0.791,2.113-1.549,3.157-2.279
c0.158-0.109,0.429-0.177,0.606-0.124c2.073,0.619,4.049,0.322,5.974-0.567c0.077-0.036,0.166-0.046,0.294-0.08
c0.55,0.886,0.774,1.871,0.868,2.872c0.063,0.672-0.063,1.358-0.07,2.04c-0.006,0.608-0.354,0.885-0.868,1.1
c-3.543,1.476-7.638,0.362-9.797-2.684C16.064,20.847,16.017,20.749,15.963,20.657z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M7.485,13.788c0.697,1.098,1.354,2.103,1.972,3.131
c0.094,0.155,0.083,0.467-0.012,0.629c-0.901,1.546-1.34,3.2-1.223,4.988c0.033,0.502,0.119,0.999,0.189,1.57
c-0.193,0.06-0.391,0.161-0.596,0.177c-1.437,0.105-2.854,0.069-4.223-0.489c-0.581-0.238-0.889-0.54-1.001-1.216
C1.997,18.991,4,15.24,7.333,13.834C7.413,13.801,7.5,13.784,7.485,13.788z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M20.621,16.938c0.288-0.412,0.592-0.814,0.86-1.238
c0.782-1.238,1.242-2.562,1.059-4.061c-0.025-0.207,0.099-0.477,0.237-0.65c0.787-0.984,1.289-2.101,1.558-3.318
c0.091-0.414,0.246-0.496,0.634-0.378c1.58,0.474,2.945,1.292,4.006,2.555c0.202,0.24,0.297,0.701,0.229,1.014
c-0.704,3.244-3.587,5.812-6.874,6.166c-0.552,0.06-1.107,0.092-1.661,0.137C20.654,17.089,20.637,17.014,20.621,16.938z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#CCCCC9" d="M2.799,15.357c-1.487-1.263-2.441-2.77-2.792-4.633
c-0.038-0.202,0.072-0.482,0.205-0.655c2.179-2.852,6.743-3.752,9.988-1.939c-0.171,0.092-0.31,0.168-0.451,0.24
c-1.297,0.663-2.036,1.727-2.186,3.166c-0.063,0.6-0.273,0.919-0.894,1.096c-1.321,0.374-2.406,1.167-3.34,2.167
C3.169,14.971,3.005,15.141,2.799,15.357z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@ -0,0 +1,149 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="298.708px" height="242.575px" viewBox="0 0 298.708 242.575" enable-background="new 0 0 298.708 242.575"
xml:space="preserve">
<path fill="#FFFFFF" d="M298.661,100.503L298.661,100.503c0.002-0.002,0-0.002,0-0.002l0.047-0.7l-0.406-0.06
c-5.012-10.791-14.729-15.059-14.729-15.059S196.567,33.07,183.06,25.701c-13.509-7.368-17.548-11.408-23.981-11.84
c-6.433-0.432-24.513,8.053-24.513,8.053s-92.252,38.768-107.73,44.73c-12.385,4.771-15.748,11.34-16.601,13.783l-0.212,0.002
L0.454,223.038l288.11,19.065l0.574,0.308l0.019-0.269h0.002l-0.002-0.004L298.661,100.503z"/>
<g>
<g>
<path fill="#DC4242" d="M298.661,100.5l0.047-0.699l-0.406-0.06c-5.012-10.791-14.729-15.059-14.729-15.059
S196.567,33.07,183.06,25.701c-13.509-7.368-17.548-11.408-23.981-11.84c-6.433-0.432-24.513,8.053-24.513,8.053
s-92.252,38.768-107.73,44.73c-12.385,4.771-15.748,11.34-16.601,13.783l-0.212,0.002l-0.647,9.657L9.577,90.1
c0.839-2.465,4.188-9.204,16.632-14.104c15.487-6.099,107.798-45.741,107.798-45.741s18.092-8.674,24.525-8.241
c6.434,0.432,10.469,4.544,23.967,12.039c13.5,7.494,100.444,59.996,100.444,59.996s9.746,4.352,14.733,15.384l0.383,0.026
l0.602-8.955h0.002C298.663,100.501,298.661,100.501,298.661,100.5z"/>
</g>
</g>
<path fill="#EF4137" d="M298.014,110.154l0.046-0.695l-0.384-0.026C297.788,109.676,297.909,109.904,298.014,110.154z"/>
<g>
<g>
<g>
<path fill="#EFEFEF" d="M296.429,113.738c0.312,1.453-0.622,2.896-2.075,3.208L63.22,166.495
c-1.453,0.312-2.896-0.623-3.208-2.076L36.089,52.816c-0.312-1.453,0.622-2.896,2.075-3.208L269.295,0.06
c1.453-0.312,2.896,0.622,3.207,2.075L296.429,113.738z"/>
</g>
</g>
</g>
<path fill="#DB4B4B" d="M289.139,242.411l9.568-142.609c0,0-26.559-1.513-52.027,8.896c-25.469,10.407-85.078,36.024-85.078,36.024
s-9.669,3.658-9.975,8.216c-0.308,4.558,1.834,16.817,1.834,16.817L289.139,242.411z"/>
<g>
<g>
<path fill="#F9F9FA" d="M288.917,122.82c0.271,1.462-0.705,2.878-2.166,3.146L54.283,168.825
c-1.461,0.268-2.877-0.707-3.146-2.168L30.445,54.41c-0.27-1.461,0.705-2.877,2.166-3.146L265.079,8.406
c1.461-0.269,2.877,0.706,3.146,2.168L288.917,122.82z"/>
</g>
</g>
<g>
<g>
<path fill="#7F8082" d="M221.625,12.859c-0.246-0.293-0.652-0.393-0.99-0.239c-0.344,0.155-0.532,0.52-0.465,0.903
c0.018,0.092,0.045,0.182,0.072,0.274c0.268,0.972,0.536,1.942,0.807,2.915l1.65-0.305c-0.267-0.959-0.533-1.918-0.8-2.879
C221.836,13.294,221.79,13.054,221.625,12.859z"/>
<path fill="#7F8082" d="M230.918,10.82c-0.146-0.523-0.527-0.775-0.986-0.671c-0.455,0.104-0.727,0.562-0.625,1.072
c0.031,0.159,0.082,0.315,0.125,0.472c0.314,1.137,4.117,14.831,5.709,20.54c0.247,0.888,0.1,1.674-0.533,2.327
c-1.242,1.287-3.37,0.751-3.859-0.97c-0.767-2.706-1.508-5.421-2.261-8.134c-0.889-3.208-1.778-6.415-2.667-9.624
c-0.623-2.253-1.246-4.509-1.865-6.764c-0.51-1.863,0.721-3.981,2.57-4.531c2.225-0.659,4.352,0.507,4.971,2.743
c0.662,2.38,1.32,4.76,1.981,7.139l1.651-0.303c-0.68-2.445-1.356-4.892-2.034-7.337c-0.089-0.327-0.197-0.644-0.345-0.952
c-1.045-2.213-3.51-3.5-5.938-3.094c-2.396,0.4-4.297,2.391-4.603,4.781c-0.123,0.963,0.054,1.887,0.306,2.801
c0.538,1.943,1.077,3.885,1.614,5.828c1.539,5.555,3.078,11.107,4.619,16.661c0.131,0.469,0.283,0.931,0.424,1.397
c0.656,2.192,3.289,3.393,5.459,2.379c1.656-0.774,2.674-2.736,2.205-4.436C235.231,26.327,231.276,12.112,230.918,10.82z"/>
</g>
</g>
<g opacity="0.4">
<g>
<g>
<path fill="#969696" d="M260.534,48.519c-0.119-0.651-0.396-1.207-0.85-1.684c-0.922-0.965-2.021-1.311-3.338-1.068
c-8.072,1.487-16.146,2.965-24.219,4.445c-2.4,0.44-4.803,0.874-7.199,1.323c-1.996,0.376-3.196,2.132-2.834,4.116
c2.322,12.66,4.644,25.32,6.97,37.977c0.041,0.229,0.089,0.459,0.174,0.671c0.476,1.188,1.976,2.47,3.884,2.104
c1.903-0.364,3.81-0.703,5.713-1.052c0.143-0.025,0.285-0.054,0.482-0.087c0.391,2.132,0.771,4.206,1.174,6.402
c1.346-1.955,2.614-3.807,3.905-5.688c1.879,1.297,3.735,2.579,5.591,3.861c0.032-0.021,0.062-0.041,0.094-0.061
c-0.381-2.085-0.765-4.169-1.152-6.279c0.197-0.038,0.357-0.066,0.517-0.096c5.07-0.93,10.136-1.877,15.208-2.78
c2.186-0.39,3.146-2.624,2.864-4.134C265.161,73.84,262.853,61.177,260.534,48.519z M264.061,85.908
c0.126,0.778-0.583,1.595-1.447,1.764c-0.842,0.166-1.689,0.312-2.535,0.467c-3.74,0.688-7.481,1.372-11.223,2.059
c-0.16,0.03-0.318,0.06-0.516,0.096c-0.194-1.064-0.385-2.104-0.582-3.178c-3.221,0.591-6.399,1.174-9.623,1.765
c0.191,1.043,0.381,2.084,0.576,3.154c-0.153,0.037-0.269,0.073-0.385,0.095c-1.406,0.26-2.818,0.498-4.222,0.781
c-0.964,0.195-2.013-0.475-2.149-1.489c-0.209-1.524-0.539-3.031-0.822-4.576c10.679-1.96,21.33-3.913,32.033-5.876
C263.472,82.637,263.795,84.267,264.061,85.908z M262.59,77.729c-0.176,0.041-0.313,0.079-0.455,0.104
c-8.248,1.516-16.496,3.024-24.742,4.549c-0.383,0.072-0.484-0.035-0.551-0.392c-1.698-9.31-3.406-18.617-5.114-27.923
c-0.024-0.133-0.049-0.265-0.079-0.43c8.571-1.572,17.104-3.137,25.66-4.706C259.066,58.516,260.825,68.099,262.59,77.729z"/>
<path fill="#969696" d="M238.622,55.66c-1.055,0.193-2.084,0.383-3.145,0.578c0.197,1.08,0.391,2.128,0.58,3.165
c1.072-0.196,2.111-0.388,3.145-0.577C239.006,57.755,238.815,56.716,238.622,55.66z"/>
<path fill="#969696" d="M242.15,74.897c-1.063,0.194-2.103,0.386-3.157,0.579c0.193,1.06,0.383,2.096,0.577,3.154
c1.091-0.2,2.125-0.391,3.158-0.58C242.534,76.979,242.342,75.942,242.15,74.897z"/>
<path fill="#969696" d="M240.978,68.477c-1.06,0.193-2.095,0.384-3.155,0.577c0.2,1.085,0.391,2.121,0.58,3.156
c1.066-0.194,2.104-0.386,3.153-0.578C241.36,70.572,241.172,69.537,240.978,68.477z"/>
<path fill="#969696" d="M239.807,62.089c-1.07,0.197-2.105,0.387-3.155,0.58c0.193,1.057,0.384,2.091,0.575,3.136
c1.066-0.195,2.102-0.386,3.156-0.579C240.189,64.175,240.002,63.151,239.807,62.089z"/>
</g>
</g>
<g enable-background="new ">
<path fill="#669999" d="M81.359,85.776l8.426-1.545c5.027-0.922,9.366,0.185,10.392,5.778c0.994,5.418-2.707,8.585-7.593,9.481
l-3.187,0.584l1.436,7.824l-5.24,0.961L81.359,85.776z M91.506,95.408c2.867-0.526,4.015-2.054,3.573-4.462
c-0.442-2.406-2.092-3.02-4.854-2.513l-2.867,0.526l1.279,6.976L91.506,95.408z"/>
<path fill="#669999" d="M119.513,102.64l-5.952-7.509l-2.832,0.52l1.526,8.32l-5.24,0.961l-4.233-23.084l8.32-1.526
c4.886-0.896,9.233,0.063,10.239,5.551c0.624,3.399-0.645,5.863-2.886,7.409l6.899,8.286L119.513,102.64z M109.969,91.509
l2.655-0.487c2.727-0.5,3.999-1.941,3.583-4.207c-0.415-2.267-2.045-2.772-4.771-2.272l-2.656,0.487L109.969,91.509z"/>
<path fill="#669999" d="M124.558,77.854l5.24-0.961l4.233,23.084l-5.239,0.961L124.558,77.854z"/>
<path fill="#669999" d="M132.205,76.451l5.523-1.013l4.771,10.25c1.135,2.391,2.023,4.643,3.199,7.062l0.142-0.026
c0.24-2.679,0.272-5.1,0.483-7.737l0.753-11.264l5.346-0.98l-2.742,24.363l-6.267,1.149L132.205,76.451z"/>
<path fill="#669999" d="M168.29,88.021l-7.08,1.298l-0.41,5.747l-5.311,0.974l3.025-24.415l6.23-1.143l11.492,21.753l-5.523,1.013
L168.29,88.021z M166.483,84.144l-0.957-2.02c-1.059-2.184-2.162-4.8-3.24-7.09l-0.143,0.026c-0.082,2.54-0.225,5.348-0.441,7.766
l-0.176,2.228L166.483,84.144z"/>
<path fill="#669999" d="M178.334,72.528l-6.373,1.169l-0.807-4.39l17.916-3.286l0.805,4.39l-6.338,1.162l3.43,18.694l-5.205,0.955
L178.334,72.528z"/>
<path fill="#669999" d="M192.649,65.365l14.48-2.656l0.805,4.39l-9.24,1.695l0.85,4.639l7.861-1.441l0.799,4.355l-7.861,1.441
l0.975,5.31l9.594-1.76l0.807,4.391l-14.836,2.721L192.649,65.365z"/>
</g>
<g enable-background="new ">
<path fill="#262626" d="M138.81,103.91c0.899-0.165,1.694,0.141,2.234,0.555l-0.43,0.709c-0.481-0.352-1.017-0.541-1.639-0.426
c-1.44,0.265-2.183,1.616-1.838,3.495c0.349,1.902,1.479,2.934,2.921,2.669c0.715-0.131,1.189-0.528,1.574-1.158l0.649,0.489
c-0.461,0.799-1.136,1.34-2.093,1.515c-1.902,0.349-3.586-0.843-4.039-3.31C135.705,106.015,136.873,104.265,138.81,103.91z"/>
<path fill="#262626" d="M142.37,107.271c-0.444-2.42,0.624-4.129,2.526-4.478c1.891-0.347,3.498,0.884,3.939,3.292
c0.446,2.433-0.611,4.199-2.502,4.546C144.432,110.98,142.816,109.704,142.37,107.271z M147.846,106.267
c-0.345-1.879-1.446-2.88-2.795-2.633c-1.359,0.25-2.034,1.576-1.689,3.455c0.347,1.891,1.459,2.95,2.818,2.7
C147.528,109.542,148.191,108.157,147.846,106.267z"/>
<path fill="#262626" d="M149.718,102.051l0.992-0.182l3.615,4.246l1.105,1.418l0.045-0.008c-0.186-0.752-0.422-1.591-0.568-2.386
l-0.717-3.908l0.912-0.167l1.387,7.562l-0.992,0.182l-3.604-4.259l-1.105-1.407l-0.045,0.009c0.186,0.752,0.402,1.546,0.549,2.342
l0.725,3.953l-0.91,0.167L149.718,102.051z"/>
<path fill="#262626" d="M157.12,100.694l4.367-0.801l0.148,0.808l-3.398,0.624l0.469,2.559l2.881-0.529l0.148,0.807l-2.881,0.529
l0.621,3.389l-0.969,0.178L157.12,100.694z"/>
<path fill="#262626" d="M162.756,99.66l0.969-0.177l1.387,7.562l-0.969,0.177L162.756,99.66z"/>
<path fill="#262626" d="M165.708,99.118l1.891-0.347c2.328-0.427,3.82,0.693,4.262,3.091c0.441,2.409-0.547,4.044-2.828,4.462
l-1.938,0.355L165.708,99.118z M168.772,105.562c1.764-0.323,2.447-1.604,2.096-3.518c-0.35-1.901-1.432-2.799-3.195-2.476
l-0.863,0.159l1.1,5.994L168.772,105.562z"/>
<path fill="#262626" d="M172.752,97.827l4.355-0.799l0.148,0.808l-3.389,0.622l0.436,2.374l2.859-0.524l0.15,0.818l-2.859,0.524
l0.504,2.743l3.504-0.643l0.15,0.818l-4.473,0.82L172.752,97.827z"/>
<path fill="#262626" d="M178.77,96.723l0.99-0.182l3.615,4.246l1.105,1.418l0.047-0.008c-0.186-0.752-0.424-1.591-0.568-2.386
l-0.717-3.908l0.91-0.167l1.387,7.562l-0.992,0.182l-3.604-4.259l-1.104-1.407l-0.047,0.009c0.186,0.752,0.402,1.546,0.549,2.342
l0.725,3.953l-0.91,0.167L178.77,96.723z"/>
<path fill="#262626" d="M187.899,95.883l-2.295,0.421l-0.148-0.808L191,94.479l0.148,0.808l-2.293,0.421l1.238,6.754l-0.957,0.175
L187.899,95.883z"/>
<path fill="#262626" d="M192.293,94.243l0.967-0.178l1.389,7.562l-0.969,0.178L192.293,94.243z"/>
<path fill="#262626" d="M199.69,98.32l-2.756,0.505l-0.303,2.438l-0.98,0.18l1.172-8.031l1.084-0.199l3.945,7.092l-1.014,0.186
L199.69,98.32z M199.305,97.592l-0.568-1.088c-0.42-0.792-0.814-1.578-1.217-2.41l-0.045,0.009
c-0.082,0.92-0.172,1.794-0.283,2.684l-0.156,1.221L199.305,97.592z"/>
<path fill="#262626" d="M201.469,92.56l0.969-0.178l1.236,6.743l3.297-0.604l0.15,0.818l-4.266,0.782L201.469,92.56z"/>
</g>
</g>
<path fill="#DB4B4B" d="M0.454,223.038L10.023,80.43c0,0,26.524,2.051,50.374,15.767c23.85,13.718,79.501,47.068,79.501,47.068
s9.096,4.917,8.789,9.474c-0.306,4.561-4.064,16.424-4.064,16.424L0.454,223.038z"/>
<path fill="#DC4242" stroke="#C13736" stroke-width="0.7832" stroke-miterlimit="10" d="M289.159,242.142
c-4.893-11.367-15.091-15.82-15.091-15.82s-87.006-51.612-100.514-58.981c-13.507-7.369-17.548-11.408-23.98-11.84
c-6.434-0.433-24.514,8.054-24.514,8.054s-92.25,38.767-107.729,44.729c-15.478,5.963-16.877,14.754-16.877,14.754L289.159,242.142z
"/>
<circle fill="#FFFFFF" stroke="#E2E2E2" stroke-width="0.7832" stroke-miterlimit="10" cx="149.822" cy="163.865" r="23.911"/>
<path opacity="0.8" fill="#EEB2A5" enable-background="new " d="M159.631,162.456l-2.248-0.188l0.309-3.721
c0.303-3.604-2.375-6.764-5.98-7.063c-0.043-0.005-0.076-0.008-0.125-0.012c-0.031-0.003-0.078-0.005-0.114-0.007
c-3.603-0.303-6.764,2.373-7.065,5.979l-0.31,3.716l-2.248-0.188c-0.542-0.043-1.024,0.364-1.07,0.905l-1.015,12.186
c-0.045,0.542,0.362,1.023,0.905,1.068l17.781,1.482c0.545,0.045,1.026-0.361,1.071-0.904l1.017-12.185
C160.581,162.981,160.174,162.499,159.631,162.456z M151.786,167.711c-0.129,0.17-0.295,0.326-0.474,0.438
c-0.168,0.104-0.22,0.228-0.231,0.41c-0.064,0.869-0.14,1.737-0.215,2.604c-0.046,0.498-0.309,0.834-0.699,0.928
c-0.565,0.136-1.103-0.256-1.106-0.859c-0.003-0.518,0.077-1.037,0.12-1.559c-0.007,0-0.011,0-0.019,0
c0.034-0.416,0.06-0.832,0.109-1.243c0.025-0.211-0.029-0.343-0.19-0.486c-0.7-0.636-0.748-1.71-0.13-2.43
c0.637-0.742,1.74-0.847,2.5-0.235C152.206,165.885,152.359,166.956,151.786,167.711z M147.357,161.432l0.309-3.717
c0.15-1.793,1.731-3.141,3.534-2.99c0.043,0.003,0.155,0.014,0.155,0.014s0.054,0.004,0.084,0.008
c1.794,0.147,3.136,1.739,2.985,3.529l-0.312,3.721L147.357,161.432z"/>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="32px" height="32px" viewBox="0 0 32 32" enable-background="new 0 0 32 32" xml:space="preserve">
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M15.762,0C7.059,0,0,7.058,0,15.765
c0,6.963,4.518,12.872,10.781,14.958c0.788,0.145,1.076-0.342,1.076-0.76c0-0.375-0.013-1.367-0.021-2.682
c-4.386,0.953-5.31-2.113-5.31-2.113c-0.716-1.82-1.75-2.307-1.75-2.307c-1.431-0.979,0.108-0.957,0.108-0.957
c1.582,0.111,2.416,1.623,2.416,1.623c1.405,2.41,3.688,1.715,4.586,1.311c0.143-1.02,0.55-1.713,1-2.107
c-3.5-0.398-7.18-1.75-7.18-7.792c0-1.721,0.614-3.127,1.623-4.23C7.167,10.31,6.626,8.707,7.484,6.539c0,0,1.324-0.426,4.333,1.614
c1.259-0.348,2.607-0.525,3.947-0.529c1.339,0.004,2.688,0.182,3.946,0.529c3.011-2.04,4.33-1.614,4.33-1.614
c0.86,2.168,0.32,3.771,0.158,4.169c1.01,1.104,1.619,2.51,1.619,4.23c0,6.057-3.684,7.387-7.196,7.778
c0.565,0.488,1.069,1.449,1.069,2.922c0,2.107-0.019,3.807-0.019,4.324c0,0.42,0.284,0.91,1.083,0.756
c6.26-2.088,10.771-7.992,10.771-14.954C31.527,7.058,24.468,0,15.762,0z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="38.684px" height="30.748px" viewBox="0 0 38.684 30.748" enable-background="new 0 0 38.684 30.748" xml:space="preserve">
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M26.16,12.392c-2.185,6.103-4.356,12.172-6.568,18.356
c-2.208-6.168-4.381-12.239-6.57-18.356C17.411,12.392,21.752,12.392,26.16,12.392z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M18.3,30.604C12.212,24.517,6.167,18.471,0.051,12.353
c0.588,0,1.119,0,1.651,0c3.001,0,6.005,0.003,9.008-0.003c0.259,0,0.429,0.036,0.542,0.327c2.325,5.921,4.663,11.835,6.998,17.75
C18.267,30.472,18.275,30.521,18.3,30.604z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M38.684,12.355c-5.87,6.153-11.648,12.211-17.428,18.272
c-0.018-0.012-0.035-0.021-0.053-0.033c0.43-1.137,0.855-2.275,1.285-3.414c1.809-4.81,3.623-9.618,5.424-14.433
c0.111-0.298,0.253-0.396,0.567-0.393c3.191,0.009,6.384,0.002,9.576,0C38.229,12.355,38.399,12.355,38.684,12.355z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M25.132,10.77c-4.05,0-8.026,0-12.097,0
c2.026-3.096,4.021-6.144,6.049-9.239C21.106,4.619,23.102,7.669,25.132,10.77z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M28.09,10.771c1.455-3.357,2.895-6.678,4.371-10.084
c2.09,3.387,4.139,6.709,6.219,10.084C35.123,10.771,31.639,10.771,28.09,10.771z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M26.698,10.106c-2.201-3.388-4.362-6.714-6.558-10.09
c3.495,0,6.938,0,10.427,0C29.275,3.382,27.999,6.713,26.698,10.106z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M7.932,0c3.492,0,6.92,0,10.445,0
c-2.314,3.382-4.588,6.711-6.908,10.106C10.281,6.711,9.116,3.382,7.932,0z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M0,10.77C2.243,7.403,4.456,4.083,6.719,0.688
c1.246,3.394,2.465,6.716,3.699,10.082C6.937,10.77,3.504,10.77,0,10.77z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="38.684px" height="30.748px" viewBox="0 0 38.684 30.748" enable-background="new 0 0 38.684 30.748" xml:space="preserve">
<g>
<g>
<g>
<g>
<path fill="#B8BABC" d="M13.479,23.3V9.866c1.22-0.707,2.04-2.027,2.04-3.535c0-2.264-1.833-4.096-4.093-4.096
c-2.261,0-4.091,1.832-4.091,4.096c0,1.514,0.827,2.836,2.052,3.547v13.409c-1.226,0.711-2.052,2.033-2.052,3.553
c0,2.26,1.832,4.092,4.091,4.092c2.26,0,4.093-1.832,4.093-4.092C15.519,25.325,14.698,24.005,13.479,23.3z M11.426,4.273
c1.136,0,2.057,0.925,2.057,2.062c0,1.138-0.921,2.055-2.057,2.055c-1.138,0-2.058-0.917-2.058-2.055
C9.368,5.198,10.288,4.273,11.426,4.273z M11.426,28.899c-1.138,0-2.058-0.918-2.058-2.055c0-1.139,0.922-2.061,2.058-2.061
s2.057,0.922,2.057,2.061C13.483,27.981,12.562,28.899,11.426,28.899z"/>
</g>
</g>
<g>
<g>
<path fill="#B8BABC" d="M29.852,23.286V10.358c0-6.452-5.854-6.061-5.854-6.061h-2.311V0.183L15.56,6.331l6.128,6.133v-4.1
h2.311c1.782,0,1.76,1.994,1.76,1.994v12.944c-1.217,0.705-2.034,2.023-2.034,3.537c0,2.26,1.832,4.092,4.092,4.092
c2.262,0,4.093-1.832,4.093-4.092C31.908,25.319,31.079,23.993,29.852,23.286z M27.815,28.899c-1.138,0-2.058-0.918-2.058-2.055
c0-1.139,0.92-2.061,2.058-2.061c1.137,0,2.058,0.922,2.058,2.061C29.873,27.981,28.952,28.899,27.815,28.899z"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="24.388px" height="30.749px" viewBox="0 0 24.388 30.749" enable-background="new 0 0 24.388 30.749" xml:space="preserve">
<path fill-rule="evenodd" clip-rule="evenodd" fill="#B8BABC" d="M24.384,2.479c0-0.229-0.016-0.461-0.065-0.681
c-0.286-1.182-1.12-1.796-2.464-1.796C15.448-0.001,9.032,0,2.624,0C0.901,0,0.02,0.883,0.02,2.603c0,4.261,0,8.524,0,12.786
c0,4.283,0.03,8.562-0.02,12.845c-0.012,1.348,0.973,2.529,2.481,2.514c6.484-0.053,12.966-0.02,19.448-0.021
c1.553,0,2.456-0.898,2.457-2.459C24.39,19.671,24.388,11.073,24.384,2.479z M8.578,23.919c-1.042,1.02-2.062,2.064-3.094,3.088
c-0.091,0.092-0.172,0.273-0.336,0.18c-0.118-0.064-0.073-0.223-0.074-0.34c-0.003-1.092-0.002-2.184-0.002-3.268
c0.005,0,0.011,0,0.017,0c0-1.092-0.001-2.182,0-3.268c0-0.119-0.06-0.271,0.081-0.33c0.138-0.061,0.215,0.092,0.294,0.174
c1.042,1.025,2.067,2.053,3.112,3.072C8.824,23.474,8.85,23.654,8.578,23.919z M18.573,27.38c-0.757-0.029-1.517-0.01-2.274-0.012
c-0.768-0.002-0.77-0.002-0.77-0.75c0-3.119,0-6.236,0-9.354c0-0.985-0.016-1.97,0.005-2.958c0.007-0.535-0.255-0.819-0.718-0.969
c-0.601-0.199-1.222-0.166-1.832-0.082c-2.519,0.312-4.888,1.183-7.251,2.049c-0.656,0.242-0.682,0.234-0.683-0.454
C5.044,11.21,5.053,7.562,5.033,3.921C5.03,3.459,5.192,3.348,5.609,3.349C6.474,3.37,7.339,3.37,8.199,3.343
c0.468-0.02,0.604,0.166,0.601,0.619C8.784,6.109,8.786,8.257,8.79,10.407c0.001,0.691,0.003,0.688,0.687,0.475
c1.788-0.568,3.603-0.963,5.496-0.883c0.896,0.04,1.754,0.228,2.521,0.697c1.159,0.708,1.625,1.832,1.65,3.131
c0.031,2.146,0.007,4.293,0.007,6.442c0.006,0,0.013,0,0.019,0c0,2.168-0.01,4.336,0.006,6.498
C19.175,27.218,19.039,27.4,18.573,27.38z M20.359,3.878c-0.676,1.424-1.488,2.75-2.456,3.992c-0.161,0.203-0.349,0.271-0.591,0.267
c-0.511-0.009-1.021-0.003-1.531-0.002c-0.533,0-1.057-0.004-1.59,0.002C13.89,8.14,13.728,8.08,13.962,7.758
c0.924-1.274,1.662-2.655,2.315-4.077c0.112-0.252,0.3-0.323,0.55-0.323c1.072,0.004,2.145,0.009,3.217-0.002
C20.464,3.353,20.525,3.522,20.359,3.878z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="20px" height="18.666px" viewBox="-0.001 0 20 18.666" enable-background="new -0.001 0 20 18.666" xml:space="preserve">
<path fill="#3CA85B" d="M19.864,3.064c0.258-0.408,0.135-0.969-0.265-1.231l-2.576-1.696c-0.402-0.26-0.945-0.141-1.208,0.271
L8.417,12.285c-0.26,0.414-0.801,0.534-1.206,0.269L3.005,9.77c-0.399-0.261-0.946-0.143-1.202,0.271L0.14,12.707
c-0.264,0.412-0.146,0.976,0.254,1.238l6.59,4.389c0.406,0.271,1.118,0.401,1.59,0.295l0.989-0.221
c0.467-0.098,1.065-0.523,1.316-0.94L19.864,3.064z"/>
</svg>

After

Width:  |  Height:  |  Size: 888 B

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="15.379px" height="15.001px" viewBox="0 0 15.379 15.001" enable-background="new 0 0 15.379 15.001" xml:space="preserve">
<path fill-rule="evenodd" clip-rule="evenodd" fill="#939598" d="M7.688,0C3.443,0,0,3.443,0,7.69c0,3.396,2.203,6.276,5.26,7.296
c0.385,0.07,0.523-0.169,0.523-0.372c0-0.183-0.006-0.664-0.008-1.308c-2.141,0.468-2.592-1.027-2.592-1.027
c-0.35-0.893-0.854-1.127-0.854-1.127c-0.697-0.479,0.053-0.469,0.053-0.469c0.771,0.057,1.178,0.791,1.178,0.791
c0.686,1.176,1.799,0.838,2.236,0.643c0.072-0.498,0.271-0.836,0.49-1.029c-1.707-0.196-3.504-0.855-3.504-3.803
c0-0.835,0.299-1.521,0.793-2.061C3.498,5.031,3.234,4.248,3.652,3.188c0,0,0.645-0.205,2.113,0.789
c0.613-0.17,1.27-0.255,1.924-0.259c0.654,0.004,1.312,0.089,1.926,0.259c1.467-0.994,2.111-0.789,2.111-0.789
c0.418,1.061,0.154,1.844,0.076,2.037c0.494,0.539,0.791,1.226,0.791,2.061c0,2.959-1.797,3.604-3.51,3.796
c0.275,0.236,0.52,0.706,0.52,1.424c0,1.029-0.008,1.856-0.008,2.109c0,0.206,0.141,0.448,0.527,0.372
c3.053-1.023,5.256-3.901,5.256-7.296C15.379,3.443,11.936,0,7.688,0z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="65.5px" height="65.5px" viewBox="0 0 65.5 65.5" enable-background="new 0 0 65.5 65.5" xml:space="preserve">
<g>
<g>
<path fill="#EDEEEE" d="M32.753,65.25c-17.92,0-32.5-14.578-32.5-32.499c0-17.921,14.58-32.5,32.5-32.5
c17.92,0,32.5,14.579,32.5,32.5C65.253,50.672,50.673,65.25,32.753,65.25z M32.753,3.251c-16.266,0-29.5,13.233-29.5,29.5
c0,16.266,13.234,29.499,29.5,29.499c16.266,0,29.5-13.232,29.5-29.499C62.253,16.485,49.019,3.251,32.753,3.251z"/>
</g>
<g>
<path fill="#418793" d="M26.87,41.135V25.992c1.374-0.796,2.3-2.285,2.3-3.986c0-2.553-2.066-4.616-4.614-4.616
s-4.612,2.063-4.612,4.616c0,1.706,0.932,3.199,2.314,4v15.116c-1.383,0.799-2.314,2.293-2.314,4.006
c0,2.547,2.065,4.611,4.612,4.611c2.548,0,4.614-2.066,4.614-4.611C29.17,43.418,28.244,41.932,26.87,41.135z M24.556,19.688
c1.282,0,2.319,1.042,2.319,2.323c0,1.283-1.037,2.317-2.319,2.317s-2.321-1.034-2.321-2.317
C22.234,20.73,23.273,19.688,24.556,19.688z M24.556,47.45c-1.282,0-2.321-1.037-2.321-2.316c0-1.283,1.041-2.324,2.321-2.324
s2.319,1.041,2.319,2.324C26.875,46.413,25.838,47.45,24.556,47.45z"/>
<path fill="#418793" d="M45.327,41.122V26.548c0-7.275-6.597-6.833-6.597-6.833h-2.606v-4.638l-6.907,6.93l6.907,6.913V24.3h2.606
c2.008,0,1.982,2.248,1.982,2.248v14.591c-1.372,0.795-2.293,2.281-2.293,3.988c0,2.547,2.064,4.611,4.612,4.611
c2.55,0,4.614-2.064,4.614-4.611C47.646,43.413,46.713,41.918,45.327,41.122z M43.032,47.45c-1.282,0-2.319-1.037-2.319-2.316
c0-1.283,1.037-2.324,2.319-2.324c1.281,0,2.319,1.041,2.319,2.324C45.352,46.413,44.313,47.45,43.032,47.45z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,50 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="65.5px" height="65.5px" viewBox="0 0 65.5 65.5" enable-background="new 0 0 65.5 65.5" xml:space="preserve">
<g>
<g>
<path fill="#EDEEEE" d="M32.753,65.25c-17.92,0-32.5-14.578-32.5-32.499c0-17.921,14.58-32.5,32.5-32.5
c17.921,0,32.5,14.58,32.5,32.5C65.253,50.672,50.674,65.25,32.753,65.25z M32.753,3.251c-16.266,0-29.5,13.234-29.5,29.5
c0,16.266,13.234,29.499,29.5,29.499c16.267,0,29.5-13.232,29.5-29.499C62.253,16.485,49.02,3.251,32.753,3.251z"/>
</g>
<g>
<g>
<g>
<path fill="#939598" d="M16.186,21.915v24.023h32V21.915H16.186z M24.956,23.314c0.491,0,0.891,0.398,0.891,0.89
c0,0.492-0.399,0.891-0.891,0.891c-0.492,0-0.89-0.398-0.89-0.891C24.066,23.713,24.464,23.314,24.956,23.314z M22.084,23.314
c0.491,0,0.89,0.398,0.89,0.89c0,0.492-0.398,0.891-0.89,0.891s-0.89-0.398-0.89-0.891
C21.194,23.713,21.593,23.314,22.084,23.314z M18.321,24.204c0-0.491,0.398-0.89,0.89-0.89c0.492,0,0.89,0.398,0.89,0.89
c0,0.492-0.397,0.891-0.89,0.891C18.72,25.095,18.321,24.696,18.321,24.204z M45.516,43.268h-26.66V26.812h26.66V43.268z"/>
</g>
<g>
<rect x="21.083" y="29.173" fill="#939598" width="15.721" height="1.779"/>
</g>
<g>
<rect x="21.083" y="32.735" fill="#939598" width="11.713" height="1.779"/>
</g>
<g>
<rect x="21.083" y="36.297" fill="#939598" width="20.619" height="1.779"/>
</g>
</g>
<g>
<g>
<path fill="#2EB459" d="M46.241,34.239c-4.47,0-8.107-3.637-8.107-8.107c0-4.47,3.638-8.107,8.107-8.107
c4.469,0,8.105,3.637,8.105,8.107C54.347,30.602,50.71,34.239,46.241,34.239z"/>
<path fill="#FFFFFF" d="M46.241,18.548c4.188,0,7.582,3.396,7.582,7.584c0,4.188-3.395,7.583-7.582,7.583
c-4.189,0-7.584-3.396-7.584-7.583C38.657,21.943,42.052,18.548,46.241,18.548 M46.241,17.502c-4.759,0-8.63,3.871-8.63,8.63
c0,4.758,3.871,8.629,8.63,8.629c4.758,0,8.628-3.871,8.628-8.629C54.869,21.373,50.999,17.502,46.241,17.502L46.241,17.502z"/>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M48.901,22.258l-3.314,5.201c-0.117,0.183-0.359,0.235-0.541,0.119l-1.885-1.217
c-0.18-0.117-0.422-0.065-0.539,0.117l-0.744,1.168c-0.117,0.18-0.064,0.424,0.115,0.541l2.953,1.923
c0.18,0.117,0.5,0.176,0.709,0.131l0.443-0.099c0.211-0.045,0.479-0.229,0.592-0.412l4.023-6.308
c0.113-0.182,0.061-0.426-0.121-0.542l-1.152-0.74C49.261,22.024,49.017,22.077,48.901,22.258z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@ -0,0 +1,147 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="65.5px" height="65.5px" viewBox="0 0 65.5 65.5" enable-background="new 0 0 65.5 65.5" xml:space="preserve">
<g>
<g>
<g>
<path fill="none" d="M63.652,35.139c-0.01,0.129-0.018,0.256-0.029,0.383C63.635,35.395,63.643,35.268,63.652,35.139z"/>
</g>
<g>
<path fill="none" d="M63.328,37.854c-0.011,0.062-0.022,0.123-0.033,0.186C63.306,37.977,63.317,37.917,63.328,37.854z"/>
</g>
<g>
<path fill="none" d="M63.626,30.01c0.011,0.133,0.02,0.265,0.03,0.396C63.646,30.274,63.638,30.143,63.626,30.01z"/>
</g>
<g>
<polygon fill="none" points="3.386,22.827 3.386,22.827 3.386,22.828 "/>
</g>
<g>
<path fill="none" d="M2.212,38.042c-0.011-0.062-0.023-0.127-0.033-0.189C2.188,37.915,2.201,37.979,2.212,38.042z"/>
</g>
<g>
<path fill="none" d="M2.168,27.707c0.008-0.047,0.018-0.094,0.025-0.141C2.186,27.613,2.176,27.66,2.168,27.707z"/>
</g>
<g>
<path fill="none" d="M1.883,35.524c-0.011-0.129-0.02-0.258-0.029-0.385C1.863,35.266,1.871,35.395,1.883,35.524z"/>
</g>
<g>
<polygon fill="none" points="3.436,42.823 3.437,42.825 3.437,42.827 "/>
</g>
<g>
<path fill="none" d="M1.851,30.408c0.01-0.133,0.019-0.267,0.03-0.398C1.869,30.142,1.86,30.275,1.851,30.408z"/>
</g>
<g>
<path fill="none" d="M63.313,27.568c0.008,0.046,0.017,0.092,0.024,0.137C63.33,27.66,63.321,27.614,63.313,27.568z"/>
</g>
<g>
<path fill="#DFEFDA" d="M3.387,22.826c0.228-0.676,0.474-1.342,0.745-1.995C3.859,21.484,3.614,22.15,3.387,22.826z"/>
</g>
<g>
<path fill="#DFEFDA" d="M3.386,22.827L3.386,22.827c-0.517,1.531-0.916,3.115-1.192,4.74c-0.008,0.047-0.018,0.094-0.025,0.141
c-0.125,0.758-0.219,1.526-0.287,2.303c-0.012,0.132-0.021,0.266-0.03,0.398c-0.059,0.773-0.098,1.555-0.098,2.344
c0,0.805,0.04,1.598,0.101,2.387c0.01,0.127,0.019,0.256,0.029,0.385c0.07,0.783,0.167,1.561,0.296,2.328
c0.01,0.062,0.022,0.127,0.033,0.189c0.285,1.641,0.693,3.238,1.224,4.781l0.001,0.002l58.633,0.002
c0.531-1.545,0.94-3.145,1.226-4.787c0.011-0.062,0.022-0.123,0.033-0.186c0.128-0.768,0.225-1.547,0.295-2.332
c0.012-0.127,0.02-0.254,0.029-0.383c0.061-0.789,0.101-1.582,0.101-2.387c0-0.79-0.038-1.57-0.097-2.346
c-0.011-0.132-0.02-0.264-0.03-0.396c-0.069-0.775-0.163-1.545-0.288-2.305c-0.008-0.045-0.017-0.091-0.024-0.137
c-0.276-1.626-0.676-3.211-1.193-4.742H3.386z"/>
</g>
<g>
<path fill="#DFEFDA" d="M62.12,22.827c-0.227-0.673-0.471-1.337-0.742-1.987C61.648,21.491,61.894,22.154,62.12,22.827
L62.12,22.827z"/>
</g>
<g>
<polygon fill="#6DBF5D" points="3.437,42.827 3.438,42.831 3.437,42.827 "/>
</g>
<g>
<path fill="#6DBF5D" d="M61.313,44.827c0.276-0.654,0.523-1.324,0.756-2H3.437c0.001,0,0.001,0.002,0.002,0.004
c0.231,0.674,0.479,1.342,0.755,1.996H61.313z"/>
</g>
<g>
<polygon fill="#6DBF5D" points="4.134,20.827 4.132,20.831 4.134,20.827 "/>
</g>
<g>
<polygon fill="#6DBF5D" points="61.373,20.827 61.373,20.827 61.378,20.839 "/>
</g>
<g>
<polygon fill="#6DBF5D" points="3.387,22.826 3.386,22.827 3.386,22.827 "/>
</g>
<g>
<path fill="#6DBF5D" d="M62.12,22.827c-0.227-0.673-0.472-1.336-0.742-1.987c-0.002-0.004-0.003-0.009-0.005-0.013H4.134
c-0.001,0.001-0.001,0.003-0.002,0.004c-0.271,0.653-0.518,1.319-0.745,1.995l-0.001,0.001H62.12z"/>
</g>
<g>
<path fill="#DFEFDA" d="M63.656,30.406c0.059,0.775,0.097,1.556,0.097,2.346C63.753,31.962,63.714,31.182,63.656,30.406z"/>
</g>
<g>
<path fill="#DFEFDA" d="M63.753,32.752c0,0.805-0.04,1.598-0.101,2.387C63.713,34.35,63.753,33.557,63.753,32.752z"/>
</g>
<g>
<path fill="#DFEFDA" d="M63.313,27.568c-0.274-1.627-0.676-3.21-1.193-4.742l0,0C62.638,24.357,63.037,25.942,63.313,27.568z"/>
</g>
<g>
<path fill="#DFEFDA" d="M63.338,27.705c0.125,0.76,0.219,1.529,0.288,2.305C63.558,29.233,63.462,28.465,63.338,27.705z"/>
</g>
<g>
<path fill="#DFEFDA" d="M62.069,42.827L62.069,42.827c0.531-1.545,0.942-3.143,1.226-4.787
C63.01,39.682,62.601,41.282,62.069,42.827z"/>
</g>
<g>
<path fill="#DFEFDA" d="M63.623,35.522c-0.07,0.785-0.167,1.564-0.295,2.332C63.455,37.084,63.554,36.309,63.623,35.522z"/>
</g>
<g>
<path fill="#DFEFDA" d="M1.753,32.752c0-0.789,0.039-1.57,0.098-2.344C1.792,31.183,1.753,31.963,1.753,32.752z"/>
</g>
<g>
<path fill="#DFEFDA" d="M1.854,35.139c-0.061-0.789-0.101-1.582-0.101-2.387C1.753,33.557,1.794,34.35,1.854,35.139z"/>
</g>
<g>
<path fill="#DFEFDA" d="M2.193,27.566c0.276-1.625,0.676-3.209,1.192-4.739C2.869,24.357,2.468,25.94,2.193,27.566z"/>
</g>
<g>
<path fill="#DFEFDA" d="M3.436,42.823c-0.53-1.543-0.938-3.141-1.224-4.781C2.494,39.682,2.905,41.28,3.436,42.823z"/>
</g>
<g>
<path fill="#DFEFDA" d="M2.179,37.852c-0.129-0.768-0.226-1.545-0.296-2.328C1.953,36.309,2.051,37.084,2.179,37.852z"/>
</g>
<g>
<path fill="#DFEFDA" d="M1.881,30.01c0.068-0.776,0.162-1.545,0.287-2.303C2.044,28.465,1.949,29.233,1.881,30.01z"/>
</g>
</g>
<g>
<g>
<path fill="#EDEEEE" d="M32.753,65.25c-17.921,0-32.5-14.578-32.5-32.499c0-17.921,14.579-32.5,32.5-32.5s32.5,14.579,32.5,32.5
C65.253,50.672,50.674,65.25,32.753,65.25z M32.753,3.251c-16.267,0-29.5,13.233-29.5,29.5c0,16.266,13.233,29.499,29.5,29.499
s29.5-13.232,29.5-29.499C62.253,16.485,49.02,3.251,32.753,3.251z"/>
</g>
</g>
<g>
<path fill="#6DBF5D" d="M13.111,28.629h1.702l2.546,7.198h-1.631l-0.475-1.48h-2.65l-0.488,1.48h-1.573L13.111,28.629z
M13.012,33.106h1.843l-0.909-2.832L13.012,33.106z"/>
<path fill="#6DBF5D" d="M19.638,35.827h-1.392v-7.198h1.392V35.827z"/>
<path fill="#6DBF5D" d="M22.405,35.827h-1.392v-7.198h1.392V35.827z"/>
<path fill="#6DBF5D" d="M27.972,29.869h-1.411v-1.284h1.411V29.869z M26.561,30.504h1.411v5.323h-1.411V30.504z"/>
<path fill="#6DBF5D" d="M30.44,34.127c0.029,0.246,0.093,0.422,0.191,0.527c0.173,0.186,0.493,0.277,0.961,0.277
c0.275,0,0.493-0.041,0.655-0.121c0.162-0.082,0.243-0.203,0.243-0.367c0-0.156-0.065-0.275-0.196-0.355
c-0.13-0.082-0.615-0.223-1.455-0.42c-0.605-0.15-1.031-0.338-1.278-0.562c-0.248-0.221-0.371-0.54-0.371-0.957
c0-0.491,0.193-0.914,0.58-1.267c0.386-0.354,0.93-0.53,1.632-0.53c0.665,0,1.207,0.133,1.627,0.397
c0.419,0.266,0.659,0.724,0.722,1.375h-1.392c-0.02-0.179-0.07-0.32-0.152-0.425c-0.153-0.188-0.414-0.283-0.783-0.283
c-0.304,0-0.52,0.047-0.648,0.142s-0.193,0.205-0.193,0.332c0,0.159,0.068,0.275,0.205,0.347c0.138,0.075,0.622,0.203,1.453,0.386
c0.555,0.13,0.97,0.327,1.247,0.59c0.273,0.268,0.41,0.602,0.41,1.002c0,0.527-0.196,0.957-0.59,1.291
c-0.393,0.334-1.001,0.5-1.822,0.5c-0.839,0-1.457-0.176-1.856-0.529c-0.4-0.354-0.6-0.803-0.6-1.35H30.44z"/>
<path fill="#6DBF5D" d="M40.211,30.504h1.411l0.811,3.833l0.83-3.833h1.45l-1.543,5.323h-1.431l-0.835-3.877l-0.845,3.877h-1.445
l-1.494-5.323h1.494l0.83,3.819L40.211,30.504z"/>
<path fill="#6DBF5D" d="M48.947,30.611c0.371,0.167,0.678,0.429,0.92,0.788c0.218,0.315,0.359,0.683,0.424,1.1
c0.038,0.245,0.053,0.597,0.046,1.056h-3.876c0.021,0.535,0.207,0.908,0.557,1.123c0.212,0.135,0.468,0.201,0.767,0.201
c0.317,0,0.575-0.082,0.773-0.244c0.107-0.088,0.203-0.211,0.286-0.367h1.421c-0.038,0.316-0.21,0.637-0.517,0.963
c-0.477,0.518-1.144,0.775-2.002,0.775c-0.708,0-1.333-0.219-1.875-0.654c-0.541-0.438-0.812-1.146-0.812-2.131
c0-0.922,0.244-1.629,0.733-2.121c0.488-0.492,1.123-0.738,1.902-0.738C48.159,30.362,48.576,30.445,48.947,30.611z
M46.865,31.813c-0.196,0.203-0.32,0.478-0.37,0.824h2.397c-0.025-0.369-0.149-0.649-0.371-0.841s-0.497-0.287-0.825-0.287
C47.339,31.51,47.062,31.611,46.865,31.813z"/>
<path fill="#6DBF5D" d="M52.656,35.827h-1.392v-7.198h1.392V35.827z"/>
<path fill="#6DBF5D" d="M55.424,35.827h-1.392v-7.198h1.392V35.827z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="65.5px" height="65.5px" viewBox="0 0 65.5 65.5" enable-background="new 0 0 65.5 65.5" xml:space="preserve">
<g>
<g>
<path fill="#EDEEEE" d="M32.753,65.25c-17.921,0-32.5-14.578-32.5-32.499c0-17.921,14.579-32.5,32.5-32.5s32.5,14.579,32.5,32.5
C65.253,50.672,50.674,65.25,32.753,65.25z M32.753,3.251c-16.267,0-29.5,13.233-29.5,29.5c0,16.266,13.233,29.499,29.5,29.499
s29.5-13.232,29.5-29.499C62.253,16.485,49.02,3.251,32.753,3.251z"/>
</g>
<path fill="#4FA5A2" d="M47.431,30.87c-1.68,0-3.144,0.927-3.909,2.294c-3.857-0.018-7.014-1.619-9.383-4.761
c-0.835-1.107-1.434-2.231-1.843-3.142c0.983-0.822,1.609-2.057,1.609-3.439c0-2.474-2.005-4.479-4.479-4.479
c-2.473,0-4.479,2.005-4.479,4.479c0,1.672,0.917,3.129,2.274,3.899l-0.001-0.001v14.706c-1.382,0.764-2.318,2.232-2.318,3.924
c0,2.473,2.005,4.479,4.479,4.479c2.473,0,4.479-2.006,4.479-4.479c0-1.654-0.896-3.096-2.229-3.871v-8.186
c3.106,3.454,7.191,5.272,11.914,5.282c0.772,1.346,2.223,2.25,3.885,2.25c2.474,0,4.479-2.004,4.479-4.477
C51.909,32.875,49.904,30.87,47.431,30.87z M27.188,21.823c0-1.236,1.003-2.239,2.239-2.239s2.239,1.003,2.239,2.239
s-1.003,2.24-2.239,2.24S27.188,23.059,27.188,21.823z M29.382,46.588c-1.237,0-2.239-1.002-2.239-2.238
c0-1.238,1.002-2.24,2.239-2.24c1.236,0,2.239,1.002,2.239,2.24C31.621,45.586,30.618,46.588,29.382,46.588z M47.431,37.588
c-1.236,0-2.239-1.004-2.239-2.24s1.003-2.238,2.239-2.238c1.237,0,2.239,1.002,2.239,2.238S48.668,37.588,47.431,37.588z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="65.5px" height="65.5px" viewBox="0 0 65.5 65.5" enable-background="new 0 0 65.5 65.5" xml:space="preserve">
<g>
<g>
<path fill="#EDEEEE" d="M32.75,65.249c-17.92,0-32.499-14.579-32.499-32.499S14.83,0.251,32.75,0.251S65.249,14.83,65.249,32.75
S50.67,65.249,32.75,65.249z M32.75,3.251c-16.266,0-29.499,13.233-29.499,29.499c0,16.266,13.233,29.499,29.499,29.499
c16.266,0,29.499-13.233,29.499-29.499C62.249,16.484,49.016,3.251,32.75,3.251z"/>
</g>
<g>
<path fill="#797A7D" d="M37.924,40.609c0.807,0.691,1.526,2.063,1.526,4.162c0,3.006-0.028,5.434-0.028,6.166
c0,0.184,0.041,0.375,0.122,0.545h-11.39c0.086-0.17,0.125-0.361,0.125-0.545c0-0.533-0.021-1.944-0.032-3.82
c-6.254,1.359-7.571-3.014-7.571-3.014c-1.023-2.6-2.495-3.291-2.495-3.291c-2.04-1.394,0.153-1.365,0.153-1.365
c2.256,0.16,3.443,2.32,3.443,2.32c2.004,3.432,5.259,2.441,6.541,1.862c0.203-1.453,0.784-2.44,1.429-3.003
c-4.989-0.568-10.24-2.496-10.24-11.11c0-2.455,0.876-4.461,2.315-6.033c-0.233-0.568-1.005-2.854,0.221-5.945
c0,0,1.885-0.606,6.178,2.303c1.797-0.498,3.716-0.749,5.63-0.757c1.91,0.008,3.83,0.259,5.629,0.757
c4.291-2.909,6.172-2.303,6.172-2.303c1.229,3.092,0.455,5.377,0.224,5.945c1.438,1.572,2.312,3.578,2.312,6.033
C48.186,38.154,42.932,40.051,37.924,40.609z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="65.5px" height="65.5px" viewBox="0 0 65.5 65.5" enable-background="new 0 0 65.5 65.5" xml:space="preserve">
<g>
<g>
<path fill="#EDEEEE" d="M32.748,65.249c-17.918,0-32.495-14.579-32.495-32.499c0-17.919,14.577-32.498,32.495-32.498
c17.92,0,32.499,14.579,32.499,32.498C65.247,50.669,50.668,65.249,32.748,65.249z M32.748,3.251
c-16.264,0-29.495,13.233-29.495,29.498c0,16.266,13.231,29.499,29.495,29.499c16.266,0,29.499-13.233,29.499-29.499
C62.247,16.484,49.014,3.251,32.748,3.251z"/>
</g>
<g>
<g>
<path fill="#418793" d="M46.663,32.552h-3.861h-1.291v1.289c0,4.836-3.932,8.762-8.763,8.762c-4.835,0-8.768-3.926-8.768-8.762
s3.933-8.76,8.768-8.76c0.37,0,0.726,0.019,1.088,0.062v3.891v3.116l2.204-2.197l6.915-6.951l0.915-0.905l-0.915-0.909
l-6.915-6.932l-2.204-2.201v3.11v3.51c-0.362-0.025-0.725-0.04-1.088-0.04c-8.396,0-15.207,6.819-15.207,15.207
c0,8.387,6.812,15.211,15.207,15.211c8.389,0,15.209-6.824,15.209-15.211v-1.289H46.663z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,173 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="65.5px" height="65.5px" viewBox="0 0 65.5 65.5" enable-background="new 0 0 65.5 65.5" xml:space="preserve">
<g>
<g>
<path fill="#EDEEEE" d="M32.75,65.249c-17.919,0-32.497-14.578-32.497-32.499c0-17.92,14.578-32.499,32.497-32.499
c17.92,0,32.499,14.579,32.499,32.499C65.249,50.67,50.67,65.249,32.75,65.249z M32.75,3.251
c-16.265,0-29.497,13.233-29.497,29.499c0,16.266,13.232,29.499,29.497,29.499c16.266,0,29.499-13.232,29.499-29.499
C62.249,16.484,49.016,3.251,32.75,3.251z"/>
</g>
<g>
<g>
<g>
<path fill="#E6C9A9" d="M47.536,36.883c-0.092-0.068-0.967-0.57-1.396-0.811c-0.004-7.709-6.246-13.958-13.939-13.958
c-7.7,0-13.938,6.254-13.938,13.961c0,0.021,0,0.041,0,0.059l0,0c0,0,0,0.01,0.002,0.016c0,0.162,0,0.318,0.008,0.482
c-0.536,0.293-1.41,0.779-1.495,0.854c-0.1,0.082-0.174,0.285-0.069,1.236c0.08,0.713,0.33,1.811,0.584,2.633
c0.168,0.529,0.338,0.945,0.461,1.074c0.365,0.061,1.159-0.045,1.589-0.164c-0.019-0.08-0.043-0.162-0.062-0.246
c0.684,2.537,1.809,5.305,3.643,7.016c3.148,2.941,6.611,3.734,8.543,3.938c0,0,0.282,0.076,0.766,0.055
c0.478,0.021,0.763-0.055,0.763-0.055c1.935-0.203,5.395-0.996,8.539-3.938c1.921-1.789,3.065-4.729,3.736-7.352
c-0.003,0.02-0.009,0.035-0.013,0.053c0.448,0.094,1.109,0.16,1.432,0.098c0.15-0.16,0.34-0.723,0.515-1.395
c0.191-0.748,0.36-1.641,0.418-2.275C47.707,37.18,47.633,36.969,47.536,36.883z"/>
</g>
<g opacity="0.6">
<path fill="#D8D5D5" d="M18.398,33.913c0,0,11.169-2.77,27.55-0.301l-0.721,6.346l-3.003,1.977l-7.45-1.256l-1.218-3.99
l-2.961-0.074l-1.142,4.18l-7.676,1.711l-3.043-2.016L18.398,33.913z"/>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M39.146,35.131c0,0.275-0.221,0.5-0.496,0.5s-0.502-0.225-0.502-0.5c0-0.277,0.227-0.502,0.502-0.502
S39.146,34.854,39.146,35.131z"/>
</g>
<g>
<path fill="#353434" d="M39.755,36.602c0.054-0.152,0.072-0.357,0.048-0.635c-0.101-1.059-0.976-1.811-1.759-1.711
c-0.693,0.094-1.105,0.834-1.095,1.736c-0.002,0.137,0.004,0.273,0.022,0.418c0.138,1.055,0.777,0.9,1.562,0.799
c0.076-0.01,0.152-0.02,0.227-0.029c0.086-0.01,0.171-0.02,0.251-0.037c0.761-0.105,1.305-0.195,1.761-0.059
C40.766,37.081,40.453,36.651,39.755,36.602z M38.601,34.821c0.221-0.031,0.414,0.107,0.429,0.299
c0.024,0.189-0.136,0.359-0.356,0.391c-0.222,0.025-0.418-0.109-0.438-0.299C38.212,35.02,38.377,34.848,38.601,34.821z
M36.957,36.165c0,0.061,0.007,0.119,0.015,0.178C36.964,36.284,36.957,36.225,36.957,36.165z"/>
</g>
</g>
<g>
<g>
<circle fill="#FFFFFF" cx="26.746" cy="35.168" r="0.498"/>
</g>
<g>
<path fill="#353434" d="M23.83,37.124c0.457-0.139,0.998-0.047,1.757,0.061c0.08,0.014,0.166,0.023,0.252,0.033
c0.076,0.01,0.149,0.02,0.232,0.027c0.781,0.104,1.422,0.26,1.554-0.793c0.022-0.141,0.026-0.287,0.026-0.422
c0.011-0.898-0.405-1.641-1.098-1.736c-0.782-0.1-1.658,0.654-1.756,1.717c-0.028,0.273-0.007,0.475,0.048,0.627
C24.146,36.688,23.833,37.118,23.83,37.124z M27.166,35.25c-0.024,0.188-0.22,0.316-0.438,0.295
c-0.223-0.023-0.383-0.201-0.367-0.391c0.026-0.186,0.221-0.324,0.441-0.295C27.02,34.883,27.183,35.061,27.166,35.25z
M27.625,36.379c0.008-0.057,0.017-0.121,0.019-0.18C27.642,36.258,27.633,36.323,27.625,36.379z"/>
</g>
</g>
<g>
<path fill="#545960" d="M46.911,32.436c-0.948-0.203-3.465-0.713-6.156-1.027c-3.424-0.4-7.302-0.599-13.63-0.229
c-6.324,0.369-9.776,1.266-9.776,1.266l1.108,8.313l3.254,2.281l8.202-1.824l1.207-3.99c0.035-0.1,0.115-0.178,0.219-0.189
c0.309-0.051,0.575-0.074,0.804-0.074c0.227,0,0.496,0.023,0.803,0.074c0.103,0.012,0.185,0.09,0.212,0.189l1.245,4.09
l8.248,0.936l3.16-2.215L46.911,32.436z M44.646,39.553l-2.238,1.562c-0.052,0.039-0.117,0.057-0.183,0.049l-6.745-0.768
c-0.106-0.008-0.197-0.088-0.228-0.189l-1.219-3.998c-0.322-0.084-1.16-0.281-1.891-0.281c-0.734,0-1.567,0.197-1.895,0.281
l-1.212,3.998c-0.022,0.068-0.072,0.125-0.138,0.162c-0.021,0.01-0.041,0.02-0.064,0.021l-6.744,1.502
c-0.022,0.004-0.044,0.008-0.06,0.008c-0.059,0-0.113-0.018-0.156-0.051l-2.236-1.566c-0.064-0.041-0.106-0.111-0.115-0.186
l-0.736-5.625c2.18-0.41,7.297-1.225,13.397-1.225c5.989,0,11.047,0.799,13.296,1.223l-0.721,4.896
C44.749,39.44,44.71,39.51,44.646,39.553z"/>
</g>
<g>
<path fill="#A41E28" d="M46.417,45.309c-0.019,0.002-0.032,0.01-0.045,0.021c-0.035,0.014-0.064,0.031-0.095,0.039
c-0.028,0.014-0.047,0.025-0.076,0.037c-0.021,0.01-0.041,0.018-0.06,0.029c-0.029,0.014-0.058,0.027-0.093,0.043
c-0.013,0.008-0.024,0.012-0.037,0.02c-0.032,0.016-0.069,0.033-0.103,0.049c-0.008,0.006-0.015,0.01-0.019,0.014
c-0.043,0.014-0.08,0.033-0.109,0.049c-0.006,0.004-0.006,0.006-0.013,0.01c-0.078,0.037-0.154,0.072-0.228,0.111
c-0.024,0.016-0.052,0.027-0.076,0.041c-0.449,0.234-1.041,0.35-1.803,0.35c-0.45,0-0.891-0.037-1.385-0.08
c-0.981-0.088-2.646-0.283-2.662-0.289l-0.127-0.01l-0.098-0.086c-0.018-0.01-1.475-1.172-2.651-2.096
c-0.046-0.037-0.091-0.076-0.134-0.109c-0.124-0.107-0.124-0.107-0.197-0.107c-0.377,0-1.472,0.342-3.875,1.088l-0.151,0.047
l-0.141-0.055c-0.019-0.004-1.597-0.588-3.487-0.588c-0.156,0-0.309,0.002-0.459,0.01c-0.19,0.01-1.249,0.516-2.612,2.662
l-0.087,0.139L25.439,46.7c-0.019,0.008-2.363,0.76-4.841,1.467l-0.162,0.047l-0.149-0.068
c-0.017-0.004-0.676-0.311-1.425-0.654c-0.104-0.088-0.197-0.17-0.281-0.246c-0.066-0.029-0.135-0.061-0.205-0.094
c0.04,0.055,0.077,0.109,0.111,0.168c-0.034-0.018-0.071-0.037-0.111-0.053c0.04,0.016,0.077,0.035,0.111,0.053
c0.131,0.189,0.268,0.393,0.413,0.596c0.266,0.383,0.542,0.779,0.823,1.15c0.125,0.168,0.249,0.328,0.368,0.488
c0.987,1.271,2.235,2.451,4.626,2.451c0.304,0,0.619-0.02,0.947-0.059c0.078-0.012,0.149-0.014,0.223-0.023
c0.072-0.006,0.14-0.018,0.21-0.023c2.08-0.242,2.646-0.342,2.965-0.395c0.081-0.018,0.156-0.029,0.227-0.039
c0.029-0.006,0.062-0.012,0.091-0.018c0.014,0,0.718-0.09,1.407-0.422c0.473-0.23,0.936-0.574,1.169-1.086
c0.575-1.287,0.692-1.598,0.695-1.611l0.203-0.533c0.019-0.029,0.039-0.055,0.068-0.074l0,0v0.002
c0.014,0.008,0.028,0.016,0.039,0.025l0.123,0.166h0.002c0.022,0.02,0.043,0.035,0.062,0.051
c-0.014-0.008-0.028-0.021-0.039-0.029l0.31,0.377c0.004,0,0.014,0.014,0.034,0.039c0.165,0.188,0.836,0.967,1.628,1.754
c0.608,0.602,1.335,0.906,2.175,0.906c0.285,0,0.586-0.041,0.889-0.113c0.283-0.066,0.588-0.141,0.895-0.219
c0.933-0.219,1.961-0.461,2.646-0.641c0.046-0.016,0.091-0.023,0.132-0.037c0.095-0.023,0.188-0.045,0.264-0.066
c0.126-0.039,0.259-0.068,0.403-0.102c0.825-0.193,1.959-0.457,2.56-1.66c0.165-0.33,0.355-0.699,0.549-1.07
c0.262-0.521,0.541-1.051,0.793-1.529c0.036-0.076,0.077-0.148,0.11-0.217c0.022-0.041,0.046-0.078,0.062-0.115
C46.512,45.266,46.467,45.286,46.417,45.309z M34.083,48.584c0.056,0.039,0.113,0.086,0.167,0.123
C34.2,48.672,34.139,48.625,34.083,48.584z M35.719,49.668c0.128,0.064,0.261,0.133,0.379,0.172
C35.979,49.801,35.847,49.733,35.719,49.668z M45.156,46.608c-0.311,0.508-0.686,0.973-1.124,1.352
C44.471,47.581,44.846,47.116,45.156,46.608L45.156,46.608l0.002-0.004L45.156,46.608l0.002-0.004l0,0v0.004H45.156
L45.156,46.608z"/>
</g>
<g>
<path fill="#9A7F62" d="M29.812,42.239c0,0,1.184,0.74,2.36,0.74c1.179,0,2.543-1.053,2.543-1.053s-0.245,1.736-2.522,1.736
C29.913,43.663,29.812,42.239,29.812,42.239z"/>
</g>
<g opacity="0.4">
<path fill="#A99580" d="M45.389,41.215c-0.044,0.174-0.085,0.346-0.132,0.521c0.448,0.094,1.109,0.16,1.432,0.098
c0.15-0.16,0.34-0.723,0.515-1.395C46.804,40.817,46.112,41.334,45.389,41.215z"/>
</g>
<g opacity="0.4">
<path fill="#A99580" d="M17.292,41.356c0.168,0.529,0.338,0.945,0.461,1.074c0.365,0.061,1.159-0.045,1.589-0.164
c-0.019-0.08-0.043-0.162-0.062-0.246C18.523,42.137,17.791,41.739,17.292,41.356z"/>
</g>
<g>
<g>
<path fill="#D6BE36" d="M47.777,28.334c-0.009-0.121-0.026-0.242-0.044-0.363c-0.01-0.083-0.028-0.172-0.045-0.257
c-0.325-0.265-0.697-0.497-1.086-0.71c-0.418-0.235-0.854-0.439-1.299-0.635c-0.078-0.034-0.248-0.104-0.248-0.104
l-0.111-0.405c0,0-0.007-0.021-0.013-0.029c-2.008-4.929-6.292-8.293-11.139-8.986c-0.342-0.049-0.695-0.082-1.043-0.105
c-0.354-0.021-0.706-0.026-1.063-0.021C26,16.831,20.865,20.64,18.8,26.375c-0.068,0.225-0.095,0.402-0.338,0.527
c-0.432,0.221-0.865,0.435-1.273,0.682c-0.381,0.229-0.738,0.477-1.061,0.753c-0.011,0.086-0.021,0.177-0.03,0.261
c-0.009,0.121-0.022,0.236-0.029,0.36c-0.01,0.138-0.019,0.271-0.019,0.407c0,0.107-0.004,0.218,0,0.323
c0,0.343,0.027,0.688,0.062,1.032c0.016,0.141,0.035,0.281,0.057,0.428c0.053,0.351,0.125,0.708,0.213,1.057
c0.028,0.122,0.068,0.244,0.102,0.363c0.072,0.236,0.145,0.463,0.236,0.68c0.041,0.096,0.078,0.193,0.127,0.285
c0.141,0.025,0.311,0.051,0.492,0.08l0.367-0.674c0,0,3.359-1.826,13.83-2.036c0,0,7.746-0.412,14.774,1.393
c0,0,0.411,0.139,0.459,0.488c0.034,0.293-0.12,0.444-0.173,0.489c0.188-0.053,0.662-0.518,0.699-0.625
c0.08-0.227,0.152-0.459,0.21-0.691c0.039-0.146,0.073-0.304,0.103-0.458c0.065-0.321,0.117-0.647,0.156-0.979
c0.052-0.483,0.078-0.975,0.062-1.457C47.818,28.816,47.806,28.574,47.777,28.334z"/>
</g>
<g>
<path fill="#C1A82F" d="M27.207,29.118c0,0-4.351,0.541-4.509,0.563c-0.148,0.02-0.335-0.082-0.404-0.255
c-0.375-1.004-0.348-3.001-0.348-3.001c0.031-1.208,0.304-2.146,0.724-3.149c0.419-1.004,4.531-3.182,4.415-2.687
c-0.304,1.243-0.508,3.178-0.346,5.544C26.868,27.982,27.207,29.118,27.207,29.118z"/>
</g>
<g>
<path fill="#C1A82F" d="M36.659,28.91c0,0,4.363,0.426,4.524,0.441c0.147,0.02,0.335-0.085,0.395-0.26
c0.352-1.018,0.271-3.015,0.271-3.015c-0.065-1.203-0.358-2.134-0.809-3.131c-0.442-0.987-4.61-3.056-4.477-2.565
c0.327,1.236,0.588,3.166,0.489,5.532C36.976,27.761,36.659,28.91,36.659,28.91z"/>
</g>
<g>
<polygon fill="#A41E28" points="28.75,19.552 28.791,21.639 30.055,21.611 30.036,20.79 31.221,20.764 31.312,25.311
30.629,25.325 30.661,26.719 33.425,26.668 33.397,25.271 32.717,25.285 32.631,20.738 33.812,20.716 33.828,21.539
35.095,21.511 35.056,19.43 "/>
</g>
<g>
<path fill="#B59F31" d="M47.203,30.051c-1.803-0.619-4.615-1.462-6.664-1.738c0.009-0.009-5.216-0.589-8.222-0.461
c-9.247,0.398-14.843,2.187-16.262,2.863c0,0.015,0.046,0.385,0.046,0.393c0.053,0.392,0.102,0.609,0.169,0.874
c0.029,0.126,0.064,0.256,0.111,0.427c0.069,0.27,0.268,1.135,0.353,1.395c0.045,0.109,0.083,0.217,0.128,0.326
c0.144,0.031,0.312,0.061,0.494,0.094l0.371-0.775c0,0,3.352-2.124,13.822-2.342c0,0,7.744-0.459,14.777,1.652l0.273,0.549
c0.281-0.047,0.578-0.348,0.71-0.747c0.092-0.253,0.154-0.527,0.212-0.797c0.037-0.177,0.069-0.354,0.101-0.532
c0.032-0.178,0.058-0.358,0.082-0.545C47.729,30.538,47.614,30.19,47.203,30.051z"/>
</g>
</g>
</g>
</g>
<g>
<g>
<g>
<path fill="#2EB459" d="M44.775,29.307c-4.472,0-8.109-3.637-8.109-8.105c0-4.472,3.638-8.109,8.109-8.109
c4.469,0,8.104,3.638,8.104,8.109C52.88,25.67,49.244,29.307,44.775,29.307z"/>
</g>
<g>
<path fill="#FFFFFF" d="M44.775,13.615c4.185,0,7.581,3.397,7.581,7.586c0,4.188-3.396,7.582-7.581,7.582
c-4.19,0-7.586-3.395-7.586-7.582C37.189,17.012,40.585,13.615,44.775,13.615 M44.775,12.569c-4.76,0-8.632,3.873-8.632,8.632
c0,4.758,3.872,8.628,8.632,8.628c4.757,0,8.627-3.87,8.627-8.628C53.402,16.441,49.532,12.569,44.775,12.569L44.775,12.569z"/>
</g>
</g>
<g>
<g>
<g>
<path fill="#FFFFFF" d="M47.436,17.325l-3.312,5.201c-0.121,0.185-0.362,0.236-0.541,0.121l-1.887-1.22
c-0.179-0.115-0.422-0.063-0.537,0.119l-0.747,1.169c-0.115,0.179-0.063,0.42,0.118,0.541l2.952,1.921
c0.177,0.118,0.496,0.176,0.707,0.131l0.445-0.098c0.21-0.045,0.477-0.227,0.592-0.412l4.022-6.307
c0.109-0.185,0.062-0.428-0.121-0.543l-1.154-0.739C47.792,17.093,47.551,17.146,47.436,17.325z"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="65.5px" height="65.5px" viewBox="0 0 65.5 65.5" enable-background="new 0 0 65.5 65.5" xml:space="preserve">
<g>
<g>
<path fill="#EDEEEE" d="M32.752,65.249c-17.92,0-32.499-14.578-32.499-32.499c0-17.92,14.579-32.499,32.499-32.499
S65.251,14.83,65.251,32.75C65.251,50.67,50.672,65.249,32.752,65.249z M32.752,3.251c-16.266,0-29.499,13.233-29.499,29.499
c0,16.266,13.233,29.499,29.499,29.499c16.266,0,29.499-13.232,29.499-29.499C62.251,16.484,49.018,3.251,32.752,3.251z"/>
</g>
<g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#726AB0" d="M22.469,40.538c-0.113-0.121-0.223-0.334-0.42-0.25
s-0.111,0.301-0.111,0.467c0,1.539,0,3.078,0,4.625c-0.01,0-0.021,0-0.026,0c0,1.531,0,3.074,0.002,4.619
c0.004,0.164-0.06,0.389,0.105,0.479c0.232,0.131,0.348-0.123,0.477-0.25c1.459-1.449,2.903-2.928,4.376-4.367
c0.387-0.375,0.348-0.633-0.004-0.98C25.391,43.438,23.939,41.983,22.469,40.538z"/>
</g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#726AB0" d="M34.809,23.541c0.749-0.01,1.496-0.002,2.245-0.002
c0.725-0.002,1.446-0.011,2.168,0.002c0.344,0.006,0.607-0.095,0.834-0.378c1.372-1.756,2.521-3.634,3.475-5.646
c0.234-0.503,0.148-0.744-0.44-0.738c-1.519,0.013-3.04,0.006-4.551,0.001c-0.357,0-0.621,0.101-0.781,0.46
c-0.924,2.01-1.968,3.964-3.271,5.766C34.152,23.459,34.385,23.547,34.809,23.541z"/>
</g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#726AB0" d="M22.845,33.68c3.342-1.229,6.695-2.459,10.257-2.901
c0.864-0.118,1.742-0.165,2.59,0.114c0.654,0.214,1.026,0.618,1.017,1.375c-0.029,1.398-0.01,2.789-0.01,4.181
c0,4.406,0,8.812,0,13.227c0,1.059,0.004,1.059,1.09,1.061c1.072,0.002,2.148-0.027,3.216,0.016
c0.663,0.025,0.855-0.227,0.855-0.867c-0.026-3.062-0.01-6.125-0.01-9.188c-0.009,0-0.019,0-0.028,0
c0-3.043,0.038-6.078-0.009-9.111c-0.037-1.834-0.693-3.429-2.335-4.429c-1.087-0.663-2.294-0.927-3.565-0.984
c-2.677-0.115-5.245,0.443-7.77,1.249c-0.969,0.299-0.973,0.307-0.975-0.673c-0.005-3.039-0.007-6.077,0.019-9.11
c0.006-0.646-0.193-0.903-0.854-0.88c-1.215,0.039-2.437,0.039-3.66,0.011c-0.589-0.003-0.819,0.153-0.815,0.806
c0.027,5.15,0.019,10.312,0.022,15.461C21.884,34.006,21.917,34.018,22.845,33.68z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="65.5px" height="65.5px" viewBox="0 0 65.5 65.5" enable-background="new 0 0 65.5 65.5" xml:space="preserve">
<g>
<g>
<path fill="#EDEEEE" d="M32.748,65.249C14.83,65.249,0.253,50.67,0.253,32.75c0-17.92,14.577-32.499,32.495-32.499
c17.92,0,32.499,14.579,32.499,32.499C65.247,50.67,50.668,65.249,32.748,65.249z M32.748,3.251
c-16.264,0-29.495,13.233-29.495,29.499c0,16.266,13.231,29.499,29.495,29.499c16.266,0,29.499-13.232,29.499-29.499
C62.247,16.484,49.014,3.251,32.748,3.251z"/>
</g>
<g>
<g>
<polygon fill="none" points="28.913,31.727 30.861,37.528 36.832,35.528 34.838,29.699 "/>
</g>
<g>
<path fill="#E9A722" d="M39.725,43.991c0.407,1.195,1.524,1.947,2.72,1.947c0.309,0,0.621-0.053,0.93-0.156
c1.506-0.512,2.305-2.148,1.794-3.654l-1.026-2.986l-5.448,1.828L39.725,43.991z"/>
</g>
<g>
<path fill="#E9A722" d="M37.399,19.406c-0.513-1.501-2.149-2.305-3.651-1.788c-1.503,0.511-2.305,2.146-1.79,3.652l1.021,2.986
l5.441-1.861L37.399,19.406z"/>
</g>
<g>
<polygon fill="#E9A722" points="36.832,35.528 42.282,33.7 40.282,27.837 34.838,29.699 "/>
</g>
<g>
<path fill="#3EB791" d="M28.259,47.856c0.403,1.209,1.526,1.965,2.728,1.965c0.303,0,0.615-0.051,0.918-0.15
c1.502-0.504,2.318-2.137,1.809-3.643l-1.021-3.047l-5.454,1.832L28.259,47.856z"/>
</g>
<g>
<path fill="#3EB791" d="M26.09,23.308c-0.502-1.508-2.134-2.316-3.638-1.814c-1.51,0.505-2.318,2.139-1.812,3.645l1,2.992
l5.443-1.86L26.09,23.308z"/>
</g>
<g>
<polygon fill="#3EB791" points="28.913,31.727 23.473,33.584 25.407,39.358 30.861,37.528 "/>
</g>
<g>
<path fill="#6EC8DB" d="M43.253,26.824c1.504-0.516,2.307-2.148,1.792-3.653c-0.513-1.504-2.15-2.308-3.65-1.793l-2.975,1.017
l1.862,5.442L43.253,26.824z"/>
</g>
<g>
<polygon fill="#6EC8DB" points="34.838,29.699 32.979,24.256 27.083,26.271 28.913,31.727 "/>
</g>
<g>
<path fill="#6EC8DB" d="M18.675,29.143c-1.508,0.52-2.307,2.152-1.796,3.657c0.409,1.191,1.526,1.945,2.724,1.945
c0.309,0,0.621-0.053,0.93-0.154l2.94-1.006l-1.833-5.454L18.675,29.143z"/>
</g>
<g>
<rect x="33.755" y="23.171" transform="matrix(0.3238 0.9461 -0.9461 0.3238 49.4134 -17.0441)" fill="#658439" width="5.752" height="5.751"/>
</g>
<g>
<polygon fill="#1A927C" points="27.083,26.271 21.64,28.131 23.473,33.584 28.913,31.727 "/>
</g>
<g>
<path fill="#DF1864" d="M48.938,34.5c-0.51-1.502-2.14-2.316-3.644-1.815L42.282,33.7l1.859,5.441l2.983-1
C48.627,37.633,49.438,36.008,48.938,34.5z"/>
</g>
<g>
<path fill="#DF1864" d="M22.569,40.309c-1.506,0.506-2.318,2.141-1.811,3.645c0.401,1.201,1.522,1.965,2.725,1.965
c0.305,0,0.612-0.053,0.919-0.154l2.836-0.951l-1.831-5.455L22.569,40.309z"/>
</g>
<g>
<polygon fill="#DF1864" points="30.861,37.528 32.692,42.981 38.693,40.969 36.832,35.528 "/>
</g>
<g>
<polygon fill="#CB2027" points="36.832,35.528 38.693,40.969 44.142,39.141 42.282,33.7 "/>
</g>
<g>
<rect x="26.173" y="38.293" transform="matrix(-0.3182 -0.948 0.948 -0.3182 -0.7356 81.8098)" fill="#351138" width="5.754" height="5.754"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,58 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="37px" height="37px" viewBox="0 0 37 37" enable-background="new 0 0 37 37" xml:space="preserve">
<g>
<path fill="#F5F4F0" d="M23.119,19.085c0.189-0.003,0.344-0.159,0.337-0.348c0-0.189-0.16-0.342-0.35-0.338
c-0.191,0.007-0.342,0.159-0.338,0.348C22.771,18.938,22.929,19.09,23.119,19.085z"/>
<path fill="#F5F4F0" d="M13.636,25.689l1.615-1.452c0.139-0.124,0.326-0.191,0.508-0.172l2.748,0.209l2.555-0.542
c0.182-0.038,0.371-0.002,0.524,0.104l1.882,1.285l1.914,0.189c0.195-0.479,0.355-0.979,0.475-1.494
c-0.032-0.001-0.064-0.003-0.097-0.008l-5.25-0.721c-0.255-0.033-0.468-0.208-0.551-0.451l-0.933-2.7
c-0.123-0.085-0.725-0.038-1.005,0.104l-0.946,2.653c-0.078,0.218-0.262,0.383-0.489,0.435l-5.148,1.186
c-0.032,0.008-0.066,0.012-0.101,0.015c0.184,0.615,0.432,1.222,0.738,1.803L13.636,25.689z"/>
<path fill="#F5F4F0" d="M14.144,18.656c-0.189,0-0.34,0.159-0.333,0.351c0.004,0.191,0.165,0.343,0.354,0.334
c0.189-0.006,0.336-0.165,0.334-0.352C14.491,18.8,14.335,18.652,14.144,18.656z"/>
<path fill="#F5F4F0" d="M19.065,29.721c-0.101,0.198-0.293,0.337-0.514,0.368l-1.717,0.245c0.541,0.158,1.105,0.247,1.691,0.247
c0.775,0,1.539-0.163,2.267-0.458l-1.447-0.967L19.065,29.721z"/>
<path fill="#F5F4F0" d="M25.813,26.72l-2.652-0.263c-0.113-0.01-0.221-0.051-0.314-0.114l-1.787-1.218l-2.364,0.501
c-0.065,0.013-0.128,0.02-0.193,0.013l-2.558-0.195l-1.517,1.365c-0.078,0.068-0.171,0.121-0.27,0.146l-2.751,0.78
c-0.122,0.03-0.244,0.036-0.363,0.002l1.603,1.82l5.359-0.766l0.466-0.934c0.089-0.174,0.246-0.304,0.434-0.354
c0.19-0.055,0.391-0.02,0.554,0.093l2.022,1.351l4.502-1.039l0.955-1.544l-0.813,0.312C26.026,26.716,25.923,26.729,25.813,26.72z"
/>
<path fill="#F5F4F0" d="M28.026,13.846c-0.004,0-0.008,0-0.01,0c-0.147,0-0.285-0.05-0.398-0.132
c-1.771-0.554-3.602-0.944-5.467-1.162c-0.372-0.043-0.64-0.381-0.596-0.755c0.043-0.37,0.348-0.642,0.756-0.596
c1.614,0.188,3.206,0.502,4.759,0.933c-1.08-3.277-4.539-5.63-8.524-5.63c-3.979,0-7.441,2.353-8.523,5.627
c1.41-0.391,2.854-0.683,4.32-0.875c0.391-0.047,0.716,0.217,0.764,0.587c0.048,0.374-0.215,0.715-0.587,0.764
c-1.744,0.228-3.457,0.605-5.116,1.128c-0.066,0.035-0.139,0.059-0.217,0.068c-0.568,0.184-1.133,0.385-1.688,0.604
c-0.065,0.306-0.103,0.768-0.036,1.444c0.047,0.468,0.135,0.878,0.263,1.226c7.015-1.771,14.605-1.773,21.635-0.002
c0.128-0.347,0.216-0.756,0.263-1.224c0.059-0.576,0.045-1.068-0.035-1.444C29.071,14.204,28.552,14.019,28.026,13.846z
M20.666,13.137v1.7c0,0.375-0.305,0.681-0.681,0.681h-2.784c-0.376,0-0.681-0.306-0.681-0.681v-1.7
c0-0.328,0.23-0.601,0.539-0.666v-1.028h-1.268c-0.375,0-0.681-0.305-0.681-0.681V8.513c0-0.376,0.306-0.681,0.681-0.681h5.604
c0.376,0,0.681,0.305,0.681,0.681v2.249c0,0.376-0.305,0.681-0.681,0.681h-1.272v1.028C20.434,12.534,20.666,12.809,20.666,13.137z
"/>
<path fill="#F5F4F0" d="M20.483,10.081h0.232V9.193h-4.243v0.888h0.229c0.014-0.364,0.312-0.655,0.68-0.655h0.358
c0.376,0,0.681,0.305,0.681,0.681v3.03c0,0.328-0.23,0.602-0.539,0.666v0.354h1.424v-0.354c-0.311-0.063-0.543-0.338-0.543-0.666
v-3.03c0-0.376,0.305-0.681,0.681-0.681h0.359C20.17,9.426,20.47,9.717,20.483,10.081z"/>
<path fill="#F5F4F0" d="M18.423,0C8.248,0,0,8.248,0,18.424c0,10.174,8.248,18.422,18.423,18.422s18.423-8.248,18.423-18.422
C36.846,8.248,28.598,0,18.423,0z M30.976,15.986c-0.088,0.887-0.309,1.639-0.652,2.23c-0.154,0.266-0.465,0.396-0.764,0.314
c-0.062-0.017-0.127-0.032-0.189-0.049L28.368,22c-0.037,0.165-0.136,0.31-0.274,0.406l-0.729,0.507
c0.011,0.065,0.012,0.133,0.003,0.202c-0.081,0.609-0.212,1.203-0.386,1.775l1.355-0.521c0.273-0.108,0.581-0.025,0.77,0.2
c0.186,0.225,0.207,0.544,0.053,0.792l-2.17,3.504c-0.094,0.154-0.248,0.265-0.425,0.305l-2.685,0.62
c-1.521,1.345-3.393,2.151-5.354,2.151c-1.52,0-2.919-0.475-4.139-1.26l-1.913,0.273c-0.032,0.005-0.063,0.007-0.096,0.007
c-0.193,0-0.382-0.083-0.511-0.23L8.06,26.406c-0.211-0.239-0.227-0.59-0.041-0.849c0.187-0.257,0.521-0.352,0.817-0.229
l1.692,0.718c-0.359-0.805-0.621-1.64-0.77-2.47c-0.014-0.078-0.013-0.155,0-0.229l-0.79-0.597
c-0.144-0.108-0.237-0.27-0.263-0.449L8.048,18.4c-0.176,0.045-0.35,0.088-0.523,0.135c-0.059,0.017-0.117,0.023-0.176,0.023
c-0.238,0-0.466-0.126-0.588-0.34c-0.346-0.594-0.564-1.346-0.652-2.234c-0.094-0.944-0.03-1.728,0.191-2.322
c0.065-0.182,0.205-0.324,0.383-0.396c0.594-0.241,1.197-0.464,1.807-0.667c0.9-4.281,5.143-7.457,10.057-7.457
c4.924,0,9.158,3.175,10.059,7.461c0.605,0.202,1.205,0.422,1.795,0.66c0.178,0.072,0.316,0.215,0.383,0.393
C31.006,14.256,31.071,15.038,30.976,15.986z"/>
<path fill="#F5F4F0" d="M9.374,18.088l0.641,3.749l1.428,1.079l4.476-1.031l0.902-2.531c0.046-0.129,0.132-0.24,0.243-0.322
c0.076-0.055,0.771-0.54,1.633-0.54c1.018,0,1.457,0.655,1.506,0.73l0.903,2.575l4.576,0.627l1.42-0.985l0.946-3.277
C21.953,16.784,15.473,16.76,9.374,18.088z M13.976,20.897c-0.063,0-0.127,0-0.191,0c-0.078,0-0.146,0.004-0.218,0
c-0.655,0-1.073-0.027-1.444,0.169c0.012-0.021,0.177-0.381,0.76-0.531c-0.063-0.146-0.106-0.341-0.117-0.619
c-0.037-1.053,0.613-1.92,1.285-1.928c0.674-0.004,1.14,0.851,1.156,1.906C15.213,20.956,14.652,20.889,13.976,20.897z
M23.171,17.729c0.675-0.02,1.289,0.814,1.369,1.867c0.023,0.293-0.01,0.509-0.08,0.663c0.623-0.075,0.767,0.352,0.773,0.374
c-0.454-0.218-0.951,0.062-1.852,0.076c-0.68,0.023-1.237,0.032-1.278-1.024C22.064,18.626,22.501,17.754,23.171,17.729z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="16px" height="15.605px" viewBox="0 0 16 15.605" enable-background="new 0 0 16 15.605" xml:space="preserve">
<path fill="#FFFFFF" d="M7.998,0C3.582,0,0,3.582,0,8c0,3.534,2.289,6.533,5.473,7.59c0.396,0.074,0.545-0.172,0.545-0.385
c0-0.188-0.01-0.692-0.01-1.358c-2.227,0.481-2.697-1.074-2.697-1.074c-0.365-0.925-0.889-1.17-0.889-1.17
c-0.727-0.496,0.055-0.486,0.055-0.486c0.805,0.057,1.227,0.825,1.227,0.825c0.711,1.222,1.871,0.868,2.328,0.665
c0.07-0.518,0.277-0.869,0.508-1.071c-1.777-0.202-3.643-0.888-3.643-3.953c0-0.874,0.312-1.586,0.822-2.146
C3.635,5.232,3.363,4.418,3.797,3.317c0,0,0.672-0.213,2.199,0.82C6.633,3.96,7.32,3.872,8,3.87c0.677,0.002,1.365,0.09,2.003,0.269
c1.524-1.034,2.195-0.82,2.195-0.82c0.438,1.102,0.163,1.915,0.079,2.117C12.79,5.997,13.1,6.709,13.1,7.582
c0,3.073-1.871,3.75-3.651,3.946c0.288,0.25,0.54,0.736,0.54,1.484c0,1.067-0.008,1.93-0.008,2.192c0,0.213,0.146,0.463,0.552,0.385
C13.708,14.53,16,11.535,16,8C16,3.582,12.416,0,7.998,0"/>
</svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="16px" height="15.605px" viewBox="0 0 16 15.605" enable-background="new 0 0 16 15.605" xml:space="preserve">
<path fill-rule="evenodd" clip-rule="evenodd" fill="#A0A9A9" d="M7.998,0C3.582,0,0,3.582,0,8c0,3.534,2.289,6.533,5.473,7.59
c0.396,0.074,0.545-0.172,0.545-0.385c0-0.189-0.01-0.693-0.01-1.359c-2.227,0.482-2.697-1.074-2.697-1.074
c-0.365-0.925-0.889-1.17-0.889-1.17c-0.727-0.496,0.055-0.486,0.055-0.486c0.805,0.057,1.227,0.825,1.227,0.825
c0.711,1.222,1.871,0.868,2.328,0.665c0.07-0.517,0.277-0.869,0.508-1.071c-1.777-0.202-3.643-0.888-3.643-3.953
c0-0.874,0.312-1.586,0.822-2.147C3.635,5.232,3.363,4.418,3.797,3.317c0,0,0.672-0.213,2.199,0.82C6.633,3.96,7.32,3.872,8,3.87
c0.677,0.002,1.365,0.09,2.003,0.268c1.525-1.034,2.195-0.82,2.195-0.82c0.438,1.102,0.164,1.915,0.08,2.117
c0.512,0.562,0.822,1.274,0.822,2.147c0,3.073-1.871,3.75-3.652,3.946c0.289,0.25,0.541,0.736,0.541,1.484
c0,1.068-0.008,1.93-0.008,2.193c0,0.213,0.146,0.463,0.551,0.385C13.708,14.53,16,11.535,16,8C16,3.582,12.416,0,7.998,0"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,288 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="399.645px" height="117.895px" viewBox="0 0 399.645 117.895" enable-background="new 0 0 399.645 117.895"
xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M399.645,113.895c0,2.2-1.8,4-4,4H4.752c-2.2,0-4-1.8-4-4V4.395c0-2.2,1.8-4,4-4h390.893c2.2,0,4,1.8,4,4
V113.895z"/>
</g>
<g>
<path fill="#39A668" d="M4,0C1.8,0,0,1.624,0,3.609v110.582c0,1.986,1.8,3.61,4,3.61h31V0H4z"/>
</g>
<g>
<path fill="#39A668" d="M53.559,19.746h1.02l0.105,1.32h0.045c0.495-0.915,1.245-1.5,2.07-1.5c0.315,0,0.54,0.045,0.78,0.15
l-0.24,1.079c-0.24-0.074-0.405-0.119-0.705-0.119c-0.615,0-1.35,0.449-1.845,1.68v4.68h-1.23V19.746z"/>
<path fill="#39A668" d="M62.917,22.416c0-0.93-0.315-1.83-1.5-1.83c-0.855,0-1.605,0.391-2.175,0.78l-0.495-0.854
c0.675-0.436,1.695-0.945,2.865-0.945c1.785,0,2.535,1.185,2.535,3v4.47h-1.02l-0.105-0.87h-0.03
c-0.705,0.57-1.515,1.05-2.415,1.05c-1.229,0-2.145-0.765-2.145-2.069C58.432,23.557,59.812,22.762,62.917,22.416z M60.922,26.227
c0.705,0,1.29-0.346,1.995-0.976v-2.024c-2.445,0.3-3.27,0.899-3.27,1.83C59.647,25.881,60.202,26.227,60.922,26.227z"/>
<path fill="#39A668" d="M66.086,17.451c0-0.479,0.375-0.795,0.855-0.795s0.855,0.315,0.855,0.795c0,0.466-0.375,0.795-0.855,0.795
S66.086,17.917,66.086,17.451z M66.311,19.746h1.23v7.29h-1.23V19.746z"/>
<path fill="#39A668" d="M69.792,16.356h1.23v9.3c0,0.39,0.165,0.54,0.345,0.54c0.075,0,0.135,0,0.27-0.03l0.165,0.93
c-0.165,0.075-0.375,0.12-0.705,0.12c-0.93,0-1.305-0.585-1.305-1.649V16.356z"/>
<path fill="#39A668" d="M73.52,25.386c0.63,0.511,1.275,0.87,2.145,0.87c0.96,0,1.44-0.51,1.44-1.14c0-0.75-0.87-1.08-1.665-1.38
c-1.035-0.375-2.175-0.87-2.175-2.1c0-1.17,0.93-2.07,2.505-2.07c0.915,0,1.71,0.375,2.265,0.825l-0.585,0.779
c-0.495-0.375-1.02-0.645-1.665-0.645c-0.915,0-1.335,0.495-1.335,1.05c0,0.675,0.795,0.945,1.62,1.26
c1.05,0.391,2.22,0.825,2.22,2.205c0,1.186-0.945,2.175-2.67,2.175c-1.035,0-2.025-0.435-2.715-1.005L73.52,25.386z"/>
<path fill="#39A668" d="M56.1,51.979v3.771h-1.885V39.86h1.563l0.161,1.288h0.069c1.012-0.851,2.253-1.563,3.564-1.563
c2.874,0,4.415,2.23,4.415,5.702c0,3.795-2.277,6.025-4.829,6.025c-1.035,0-2.07-0.483-3.104-1.288L56.1,51.979z M58.836,49.726
c1.839,0,3.196-1.679,3.196-4.438c0-2.46-0.828-4.116-2.943-4.116c-0.943,0-1.886,0.529-2.99,1.518v5.864
C57.112,49.403,58.101,49.726,58.836,49.726z"/>
<path fill="#39A668" d="M66.793,39.86h1.563l0.161,2.023h0.069c0.759-1.402,1.909-2.299,3.173-2.299
c0.483,0,0.828,0.068,1.196,0.229l-0.368,1.655c-0.368-0.114-0.621-0.184-1.081-0.184c-0.943,0-2.07,0.69-2.829,2.575v7.175
h-1.885V39.86z"/>
<path fill="#39A668" d="M78.924,39.585c2.737,0,5.174,2.139,5.174,5.887c0,3.702-2.438,5.841-5.174,5.841
c-2.736,0-5.174-2.139-5.174-5.841C73.75,41.724,76.188,39.585,78.924,39.585z M78.924,49.748c1.932,0,3.22-1.725,3.22-4.276
c0-2.576-1.288-4.323-3.22-4.323c-1.908,0-3.219,1.747-3.219,4.323C75.705,48.023,77.016,49.748,78.924,49.748z"/>
<path fill="#39A668" d="M91.519,39.585c1.472,0,2.506,0.62,3.266,1.333l-0.943,1.219c-0.667-0.574-1.357-0.988-2.253-0.988
c-2.024,0-3.496,1.747-3.496,4.323c0,2.552,1.403,4.276,3.449,4.276c1.058,0,1.955-0.528,2.622-1.126l0.851,1.241
c-1.012,0.896-2.3,1.449-3.633,1.449c-2.966,0-5.243-2.139-5.243-5.841C86.138,41.724,88.645,39.585,91.519,39.585z"/>
<path fill="#39A668" d="M97.209,34.664h1.862v11.083h0.069l4.76-5.887h2.093l-3.749,4.484l4.254,6.691h-2.07l-3.265-5.381
l-2.093,2.438v2.943h-1.862V34.664z"/>
<path fill="#39A668" d="M112.265,39.585c2.851,0,4.461,2.046,4.461,5.242c0,0.392-0.023,0.759-0.069,1.035h-7.542
c0.138,2.414,1.586,3.932,3.725,3.932c1.058,0,1.955-0.345,2.782-0.873l0.667,1.241c-0.966,0.621-2.162,1.15-3.679,1.15
c-2.989,0-5.358-2.185-5.358-5.841S109.712,39.585,112.265,39.585z M115.07,44.62c0-2.276-1.012-3.541-2.759-3.541
c-1.563,0-2.989,1.288-3.219,3.541H115.07z"/>
<path fill="#39A668" d="M119.751,41.401h-1.656v-1.426l1.748-0.115l0.23-3.127h1.587v3.127h3.012v1.541h-3.012v6.209
c0,1.379,0.437,2.161,1.725,2.161c0.391,0,0.896-0.161,1.265-0.299l0.368,1.426c-0.621,0.207-1.379,0.414-2.069,0.414
c-2.392,0-3.196-1.519-3.196-3.726V41.401z"/>
<path fill="#39A668" d="M127.305,48.507c0.966,0.781,1.955,1.334,3.289,1.334c1.472,0,2.208-0.782,2.208-1.748
c0-1.149-1.334-1.655-2.553-2.115c-1.586-0.575-3.334-1.334-3.334-3.22c0-1.794,1.426-3.173,3.84-3.173
c1.402,0,2.621,0.574,3.472,1.265l-0.897,1.195c-0.759-0.575-1.563-0.988-2.552-0.988c-1.403,0-2.047,0.759-2.047,1.609
c0,1.035,1.219,1.448,2.483,1.932c1.61,0.598,3.403,1.265,3.403,3.38c0,1.816-1.449,3.335-4.093,3.335
c-1.587,0-3.104-0.667-4.162-1.541L127.305,48.507z"/>
<path fill="#39A668" d="M136.22,44.552h5.289V46h-5.289V44.552z"/>
<path fill="#39A668" d="M144.35,39.86h1.563l0.161,2.023h0.069c0.759-1.402,1.909-2.299,3.173-2.299
c0.483,0,0.828,0.068,1.196,0.229l-0.368,1.655c-0.368-0.114-0.621-0.184-1.081-0.184c-0.943,0-2.07,0.69-2.829,2.575v7.175
h-1.885V39.86z"/>
<path fill="#39A668" d="M158.645,43.954c0-1.426-0.483-2.806-2.299-2.806c-1.311,0-2.46,0.598-3.334,1.195l-0.759-1.311
c1.035-0.667,2.599-1.448,4.392-1.448c2.736,0,3.886,1.816,3.886,4.599v6.853h-1.563l-0.161-1.334h-0.046
c-1.081,0.874-2.323,1.61-3.702,1.61c-1.886,0-3.289-1.173-3.289-3.174C151.769,45.701,153.885,44.482,158.645,43.954z
M155.586,49.794c1.081,0,1.978-0.528,3.058-1.494v-3.104c-3.748,0.46-5.013,1.38-5.013,2.806
C153.632,49.266,154.483,49.794,155.586,49.794z"/>
<path fill="#39A668" d="M163.448,36.343c0-0.736,0.575-1.219,1.311-1.219s1.311,0.482,1.311,1.219
c0,0.713-0.575,1.219-1.311,1.219S163.448,37.056,163.448,36.343z M163.793,39.86h1.885v11.176h-1.885V39.86z"/>
<path fill="#39A668" d="M169.072,34.664h1.885v14.257c0,0.598,0.253,0.827,0.529,0.827c0.115,0,0.207,0,0.414-0.046l0.253,1.426
c-0.253,0.115-0.575,0.185-1.081,0.185c-1.426,0-2-0.897-2-2.53V34.664z"/>
<path fill="#39A668" d="M174.734,48.507c0.966,0.781,1.955,1.334,3.289,1.334c1.472,0,2.208-0.782,2.208-1.748
c0-1.149-1.334-1.655-2.553-2.115c-1.586-0.575-3.334-1.334-3.334-3.22c0-1.794,1.426-3.173,3.84-3.173
c1.402,0,2.621,0.574,3.472,1.265l-0.897,1.195c-0.759-0.575-1.563-0.988-2.552-0.988c-1.403,0-2.047,0.759-2.047,1.609
c0,1.035,1.219,1.448,2.483,1.932c1.61,0.598,3.403,1.265,3.403,3.38c0,1.816-1.449,3.335-4.093,3.335
c-1.587,0-3.104-0.667-4.162-1.541L174.734,48.507z"/>
</g>
<g>
<g>
<path fill="#989697" d="M257.664,73.431c1.86,0,2.91,1.336,2.91,3.42c0,0.256-0.016,0.496-0.045,0.676h-4.92
c0.09,1.574,1.035,2.564,2.43,2.564c0.69,0,1.275-0.225,1.815-0.57l0.435,0.811c-0.63,0.404-1.41,0.75-2.399,0.75
c-1.95,0-3.495-1.426-3.495-3.811S256,73.431,257.664,73.431z M259.494,76.716c0-1.484-0.66-2.311-1.8-2.311
c-1.021,0-1.95,0.842-2.1,2.311H259.494z"/>
<path fill="#989697" d="M262.365,70.222h1.23v2.91l-0.031,1.318c0.66-0.584,1.471-1.02,2.281-1.02
c1.889,0,2.895,1.455,2.895,3.705c0,2.49-1.485,3.945-3.15,3.945c-0.675,0-1.439-0.33-2.084-0.9h-0.046l-0.104,0.721h-0.99
V70.222z M265.38,80.046c1.2,0,2.085-1.096,2.085-2.895c0-1.605-0.54-2.686-1.92-2.686c-0.615,0-1.26,0.346-1.949,0.99v3.824
C264.24,79.835,264.9,80.046,265.38,80.046z"/>
<path fill="#989697" d="M270.304,78.966c0.569,0.57,1.29,1.096,2.415,1.096c1.17,0,2.1-0.855,2.1-2.191
c0-1.318-0.811-2.1-2.04-2.1c-0.659,0-1.065,0.211-1.635,0.586l-0.66-0.42l0.315-4.605h4.785v1.064h-3.705l-0.256,2.836
c0.451-0.24,0.885-0.391,1.471-0.391c1.635,0,2.97,0.93,2.97,3s-1.56,3.24-3.226,3.24c-1.529,0-2.475-0.645-3.135-1.305
L270.304,78.966z"/>
<path fill="#989697" d="M281.033,71.226c-0.27-0.119-0.555-0.18-0.824-0.18c-0.689,0-1.02,0.48-1.02,1.41v1.154h1.545v1.006
h-1.545v6.285h-1.23v-6.285h-0.99v-0.93l0.99-0.076v-1.154c0-1.484,0.675-2.414,2.13-2.414c0.45,0,0.885,0.104,1.215,0.24
L281.033,71.226z"/>
<path fill="#989697" d="M286.755,72.396h-4.77v-1.064h6.165v0.766c-2.266,2.895-2.73,5.07-2.896,8.805h-1.274
C284.145,77.302,284.865,75.021,286.755,72.396z"/>
<path fill="#989697" d="M294.277,72.396h-4.77v-1.064h6.164v0.766c-2.264,2.895-2.729,5.07-2.895,8.805h-1.275
C291.668,77.302,292.388,75.021,294.277,72.396z"/>
<path fill="#989697" d="M296.609,76.087c0-3.211,1.154-4.936,3.074-4.936c1.904,0,3.061,1.725,3.061,4.936
c0,3.209-1.156,4.994-3.061,4.994C297.764,81.081,296.609,79.296,296.609,76.087z M301.543,76.087
c0-2.807-0.75-3.945-1.859-3.945c-1.125,0-1.875,1.139-1.875,3.945c0,2.805,0.75,4.004,1.875,4.004
C300.793,80.091,301.543,78.892,301.543,76.087z"/>
</g>
<g>
<path fill="#D1D0D0" d="M244.044,66.109c0,0-0.963-0.311-3.162,1.18c-0.92-0.257-1.906-0.383-2.885-0.388
c-0.98,0.005-1.965,0.131-2.881,0.388c-2.203-1.49-3.172-1.18-3.172-1.18c-0.625,1.587-0.229,2.759-0.111,3.05
c-0.736,0.805-1.186,1.831-1.186,3.089c0,4.414,2.689,5.399,5.246,5.691c-0.328,0.288-0.627,0.796-0.73,1.542
c-0.656,0.29-2.324,0.8-3.352-0.957c0,0-0.607-1.107-1.766-1.189c0,0-1.125-0.012-0.078,0.699c0,0,0.754,0.354,1.279,1.685
c0,0,0.676,2.243,3.879,1.544c0.006,0.962,0.016,1.687,0.016,1.962c0,0.156-0.061,0.325-0.189,0.437
c0.971,0.267,1.988,0.422,3.045,0.422c1.055,0,2.072-0.155,3.043-0.42c-0.129-0.113-0.188-0.282-0.188-0.438
c0-0.379,0.014-1.621,0.014-3.162c0-1.073-0.367-1.776-0.781-2.136c2.566-0.283,5.26-1.254,5.26-5.679
c0-1.258-0.449-2.284-1.186-3.089C244.278,68.868,244.675,67.696,244.044,66.109z"/>
</g>
</g>
<g>
<g>
<path fill="#989697" d="M82.377,104.185c2.88-2.864,4.5-4.59,4.5-6.135c0-1.095-0.6-1.875-1.815-1.875
c-0.795,0-1.485,0.511-2.04,1.155l-0.705-0.705c0.795-0.87,1.65-1.455,2.895-1.455c1.77,0,2.865,1.125,2.865,2.82
c0,1.8-1.635,3.585-3.9,5.955c0.525-0.045,1.11-0.091,1.605-0.091h2.775v1.065h-6.18V104.185z"/>
<path fill="#989697" d="M93.492,97.63h1.02l0.105,1.05h0.045c0.63-0.689,1.395-1.229,2.265-1.229c1.11,0,1.709,0.525,2.01,1.395
c0.765-0.824,1.515-1.395,2.4-1.395c1.5,0,2.22,0.99,2.22,2.85v4.62h-1.23v-4.455c0-1.364-0.435-1.949-1.35-1.949
c-0.57,0-1.155,0.375-1.83,1.125v5.279h-1.23v-4.455c0-1.364-0.435-1.949-1.365-1.949c-0.54,0-1.155,0.375-1.83,1.125v5.279
h-1.23V97.63z"/>
<path fill="#989697" d="M105.534,95.335c0-0.479,0.375-0.795,0.855-0.795s0.855,0.315,0.855,0.795
c0,0.466-0.375,0.795-0.855,0.795S105.534,95.801,105.534,95.335z M105.759,97.63h1.23v7.29h-1.23V97.63z"/>
<path fill="#989697" d="M109.24,97.63h1.02l0.105,1.05h0.045c0.69-0.689,1.44-1.229,2.445-1.229c1.53,0,2.22,0.99,2.22,2.85v4.62
h-1.23v-4.455c0-1.364-0.42-1.949-1.38-1.949c-0.75,0-1.26,0.39-1.995,1.125v5.279h-1.23V97.63z"/>
<path fill="#989697" d="M117.233,97.63h1.245v4.455c0,1.365,0.405,1.95,1.365,1.95c0.75,0,1.26-0.375,1.95-1.23V97.63h1.245v7.29
h-1.02l-0.105-1.14h-0.045c-0.675,0.795-1.41,1.319-2.4,1.319c-1.545,0-2.235-0.989-2.235-2.85V97.63z"/>
<path fill="#989697" d="M125.587,98.635h-1.08v-0.93l1.14-0.075l0.15-2.04h1.035v2.04h1.965v1.005h-1.965v4.05
c0,0.9,0.285,1.41,1.125,1.41c0.255,0,0.585-0.104,0.825-0.194l0.24,0.93c-0.405,0.135-0.9,0.27-1.35,0.27
c-1.56,0-2.085-0.989-2.085-2.43V98.635z"/>
<path fill="#989697" d="M132.934,97.45c1.86,0,2.91,1.335,2.91,3.42c0,0.255-0.015,0.495-0.045,0.675h-4.92
c0.09,1.575,1.035,2.565,2.43,2.565c0.69,0,1.275-0.226,1.815-0.57l0.435,0.81c-0.63,0.405-1.41,0.75-2.4,0.75
c-1.95,0-3.495-1.425-3.495-3.81S131.269,97.45,132.934,97.45z M134.763,100.735c0-1.485-0.66-2.311-1.8-2.311
c-1.02,0-1.95,0.841-2.1,2.311H134.763z"/>
<path fill="#989697" d="M137.5,103.27c0.63,0.511,1.275,0.87,2.145,0.87c0.96,0,1.44-0.51,1.44-1.14c0-0.75-0.87-1.08-1.665-1.38
c-1.035-0.375-2.175-0.87-2.175-2.1c0-1.17,0.93-2.07,2.505-2.07c0.915,0,1.71,0.375,2.265,0.825l-0.585,0.779
c-0.495-0.375-1.02-0.645-1.665-0.645c-0.915,0-1.335,0.495-1.335,1.05c0,0.675,0.795,0.945,1.62,1.26
c1.05,0.391,2.22,0.825,2.22,2.205c0,1.186-0.945,2.175-2.67,2.175c-1.035,0-2.025-0.435-2.715-1.005L137.5,103.27z"/>
<path fill="#989697" d="M151.134,100.3c0-0.93-0.315-1.83-1.5-1.83c-0.855,0-1.605,0.391-2.175,0.78l-0.495-0.854
c0.675-0.436,1.695-0.945,2.865-0.945c1.785,0,2.535,1.185,2.535,3v4.47h-1.02l-0.105-0.87h-0.03
c-0.705,0.57-1.515,1.05-2.415,1.05c-1.229,0-2.145-0.765-2.145-2.069C146.649,101.44,148.029,100.646,151.134,100.3z
M149.139,104.11c0.705,0,1.29-0.346,1.995-0.976v-2.024c-2.445,0.3-3.27,0.899-3.27,1.83
C147.864,103.765,148.419,104.11,149.139,104.11z"/>
<path fill="#989697" d="M155.021,104.665v-0.061c-0.36-0.225-0.645-0.614-0.645-1.185c0-0.615,0.42-1.095,0.795-1.35v-0.061
c-0.48-0.39-0.945-1.095-0.945-1.965c0-1.59,1.26-2.595,2.745-2.595c0.405,0,0.765,0.075,1.035,0.18h2.535v0.945h-1.5
c0.345,0.33,0.6,0.885,0.6,1.5c0,1.56-1.185,2.535-2.67,2.535c-0.36,0-0.765-0.091-1.095-0.255
c-0.255,0.225-0.465,0.465-0.465,0.869c0,0.466,0.3,0.795,1.29,0.795h1.41c1.695,0,2.55,0.525,2.55,1.74
c0,1.35-1.425,2.52-3.69,2.52c-1.785,0-3.015-0.704-3.015-1.965C153.956,105.7,154.361,105.115,155.021,104.665z M157.15,107.425
c1.395,0,2.31-0.72,2.31-1.485c0-0.675-0.525-0.899-1.47-0.899h-1.26c-0.285,0-0.63-0.03-0.945-0.12
c-0.525,0.375-0.75,0.81-0.75,1.229C155.036,106.93,155.831,107.425,157.15,107.425z M158.516,100.045
c0-1.064-0.69-1.694-1.545-1.694s-1.545,0.63-1.545,1.694c0,1.065,0.705,1.74,1.545,1.74S158.516,101.11,158.516,100.045z"/>
<path fill="#989697" d="M164.728,97.45c1.785,0,3.375,1.395,3.375,3.84c0,2.415-1.59,3.81-3.375,3.81
c-1.785,0-3.375-1.395-3.375-3.81C161.353,98.845,162.942,97.45,164.728,97.45z M164.728,104.08c1.26,0,2.1-1.125,2.1-2.79
c0-1.68-0.84-2.82-2.1-2.82c-1.245,0-2.1,1.141-2.1,2.82C162.627,102.955,163.482,104.08,164.728,104.08z"/>
</g>
<g>
<g>
<rect x="56.764" y="97.151" fill="#F4F4F4" width="13.258" height="9.406"/>
</g>
<g>
<g>
<g>
<g>
<g>
<path fill="#D1D0D0" d="M62.949,102.36c-0.2,0.143-0.39,0.283-0.569,0.422c-0.189,0.148-0.355,0.308-0.498,0.482
c-0.144,0.176-0.26,0.382-0.342,0.608c-0.087,0.227-0.102,0.416-0.102,0.416c-0.016,0.21-0.029,0.425-0.029,0.476
c0,0.052,0.166,0.096,0.367,0.096h3.028c0.202,0,0.367-0.172,0.367-0.383v-0.456c0-0.21-0.165-0.38-0.367-0.38h-1.228
c-0.201,0-0.337-0.03-0.301-0.064c0,0,0,0,0.036-0.029c0.146-0.122,0.295-0.233,0.45-0.335
c0.158-0.112,0.315-0.22,0.473-0.33c0.168-0.116,0.318-0.252,0.45-0.396c0.138-0.151,0.247-0.323,0.333-0.52
c0.085-0.195,0.128-0.433,0.128-0.701c0-0.263-0.05-0.502-0.146-0.718c-0.098-0.209-0.229-0.394-0.393-0.536
c-0.163-0.144-0.353-0.255-0.567-0.331c-0.207-0.074-0.433-0.114-0.664-0.114c-0.302,0-0.573,0.057-0.811,0.165
c-0.239,0.11-0.439,0.267-0.599,0.464c-0.155,0.195-0.273,0.428-0.352,0.687c-0.074,0.256-0.083,0.447-0.083,0.447
c-0.01,0.212-0.016,0.423-0.014,0.475s0.168,0.092,0.37,0.092h0.524c0.202,0,0.367-0.042,0.367-0.095
s0.006-0.201,0.01-0.331c0,0,0,0,0.027-0.118c0.018-0.11,0.054-0.211,0.1-0.301c0.043-0.082,0.099-0.146,0.17-0.194
c0.062-0.046,0.145-0.067,0.244-0.067c0.154,0,0.276,0.048,0.37,0.142c0.095,0.096,0.14,0.226,0.14,0.409
c0,0.114-0.022,0.209-0.069,0.296c-0.057,0.099-0.125,0.189-0.207,0.268"/>
</g>
</g>
</g>
</g>
<g>
<path fill="#D1D0D0" d="M69.381,92.102H57.404c-0.796,0-1.446,0.581-1.446,1.472v12.984v0.898v0.146h0.028
c0.065,0.283,0.301,0.499,0.59,0.499h13.633c0.289,0,0.523-0.216,0.59-0.499h0.028v-0.146v-0.898V93.573
C70.827,92.683,70.317,92.102,69.381,92.102z M69.194,106.558H57.591v-9.406h11.604V106.558z"/>
</g>
</g>
</g>
</g>
<g>
<g>
<path fill="#D1D0D0" d="M241.085,98.565c-0.609-2.324-2.725-4.039-5.242-4.039c-2.516,0-4.631,1.715-5.24,4.039h-4.26v2.703
h4.244c0.592,2.352,2.721,4.096,5.256,4.096c2.537,0,4.666-1.744,5.256-4.096h4.246v-2.703H241.085z M235.843,102.661
c-1.021,0-1.912-0.562-2.381-1.393c-0.223-0.396-0.35-0.852-0.35-1.338c0-0.498,0.133-0.963,0.367-1.365
c0.471-0.816,1.354-1.365,2.363-1.365c1.012,0,1.893,0.549,2.365,1.365c0.232,0.402,0.365,0.867,0.365,1.365
c0,0.486-0.125,0.941-0.35,1.338C237.757,102.099,236.866,102.661,235.843,102.661z"/>
</g>
<g>
<path fill="#989697" d="M254.935,97.26h1.021l0.104,1.05h0.045c0.63-0.689,1.396-1.229,2.265-1.229c1.11,0,1.71,0.525,2.01,1.395
c0.766-0.824,1.516-1.395,2.4-1.395c1.5,0,2.22,0.99,2.22,2.85v4.62h-1.229v-4.455c0-1.364-0.436-1.949-1.35-1.949
c-0.57,0-1.156,0.375-1.83,1.125v5.279h-1.23v-4.455c0-1.364-0.436-1.949-1.365-1.949c-0.539,0-1.154,0.375-1.83,1.125v5.279
h-1.229V97.26z"/>
<path fill="#989697" d="M271.27,99.93c0-0.93-0.314-1.83-1.5-1.83c-0.855,0-1.605,0.391-2.176,0.78l-0.494-0.854
c0.675-0.436,1.695-0.945,2.865-0.945c1.785,0,2.535,1.185,2.535,3v4.47h-1.021l-0.104-0.87h-0.031
c-0.705,0.57-1.514,1.05-2.414,1.05c-1.23,0-2.145-0.765-2.145-2.069C266.785,101.07,268.164,100.275,271.27,99.93z
M269.274,103.74c0.705,0,1.29-0.346,1.995-0.976v-2.024c-2.445,0.3-3.27,0.899-3.27,1.83
C268,103.395,268.555,103.74,269.274,103.74z"/>
<path fill="#989697" d="M274.545,102.899c0.631,0.511,1.275,0.87,2.145,0.87c0.961,0,1.44-0.51,1.44-1.14
c0-0.75-0.87-1.08-1.665-1.38c-1.035-0.375-2.175-0.87-2.175-2.1c0-1.17,0.931-2.07,2.505-2.07c0.915,0,1.71,0.375,2.266,0.825
l-0.586,0.779c-0.494-0.375-1.02-0.645-1.664-0.645c-0.916,0-1.336,0.495-1.336,1.05c0,0.675,0.795,0.945,1.621,1.26
c1.049,0.391,2.219,0.825,2.219,2.205c0,1.186-0.944,2.175-2.67,2.175c-1.034,0-2.024-0.435-2.715-1.005L274.545,102.899z"/>
<path fill="#989697" d="M281.355,98.265h-1.08v-0.93l1.14-0.075l0.149-2.04h1.035v2.04h1.965v1.005H282.6v4.05
c0,0.9,0.285,1.41,1.125,1.41c0.256,0,0.586-0.104,0.825-0.194l0.24,0.93c-0.405,0.135-0.9,0.27-1.351,0.27
c-1.56,0-2.084-0.989-2.084-2.43V98.265z"/>
<path fill="#989697" d="M288.702,97.08c1.86,0,2.909,1.335,2.909,3.42c0,0.255-0.015,0.495-0.045,0.675h-4.92
c0.091,1.575,1.035,2.565,2.431,2.565c0.69,0,1.274-0.226,1.815-0.57l0.435,0.81c-0.63,0.405-1.41,0.75-2.399,0.75
c-1.951,0-3.496-1.425-3.496-3.81S287.037,97.08,288.702,97.08z M290.531,100.365c0-1.485-0.659-2.311-1.799-2.311
c-1.021,0-1.95,0.841-2.1,2.311H290.531z"/>
<path fill="#989697" d="M293.403,97.26h1.021l0.104,1.32h0.045c0.495-0.915,1.245-1.5,2.069-1.5c0.315,0,0.541,0.045,0.781,0.15
l-0.24,1.079c-0.24-0.074-0.405-0.119-0.705-0.119c-0.615,0-1.35,0.449-1.846,1.68v4.68h-1.229V97.26z"/>
</g>
</g>
<g>
<path fill="#939598" d="M82.234,78.921c0.57,0.6,1.32,1.14,2.445,1.14c1.155,0,1.98-0.69,1.98-1.755c0-1.14-0.78-1.905-3.06-1.905
v-0.944c2.04,0,2.715-0.78,2.715-1.785c0-0.931-0.63-1.516-1.65-1.516c-0.795,0-1.47,0.405-2.04,0.976l-0.66-0.78
c0.735-0.689,1.62-1.2,2.745-1.2c1.665,0,2.865,0.886,2.865,2.431c0,1.154-0.705,1.89-1.74,2.279v0.061
c1.155,0.27,2.07,1.109,2.07,2.43c0,1.695-1.395,2.729-3.15,2.729c-1.53,0-2.505-0.645-3.15-1.35L82.234,78.921z"/>
<path fill="#939598" d="M89.11,80.165c2.88-2.864,4.5-4.59,4.5-6.135c0-1.095-0.6-1.875-1.815-1.875
c-0.795,0-1.485,0.511-2.04,1.155l-0.705-0.705c0.795-0.87,1.65-1.455,2.895-1.455c1.77,0,2.865,1.125,2.865,2.82
c0,1.8-1.635,3.585-3.9,5.955c0.525-0.045,1.11-0.091,1.605-0.091h2.775V80.9h-6.18V80.165z"/>
<path fill="#939598" d="M98.312,75.876v-0.061c-0.705-0.495-1.335-1.2-1.335-2.205c0-1.47,1.17-2.46,2.715-2.46
c1.665,0,2.7,1.065,2.7,2.551c0,1.005-0.735,1.859-1.32,2.31v0.06c0.855,0.495,1.665,1.17,1.665,2.46c0,1.425-1.23,2.55-3.09,2.55
c-1.8,0-3.135-1.109-3.135-2.625C96.512,77.211,97.413,76.355,98.312,75.876z M99.677,80.165c1.11,0,1.875-0.689,1.875-1.68
c0-1.229-1.215-1.68-2.595-2.234c-0.765,0.51-1.335,1.215-1.335,2.085C97.623,79.4,98.507,80.165,99.677,80.165z M101.327,73.761
c0-0.945-0.615-1.695-1.665-1.695c-0.885,0-1.545,0.615-1.545,1.545c0,1.141,1.05,1.62,2.205,2.07
C100.967,75.11,101.327,74.466,101.327,73.761z"/>
<path fill="#939598" d="M109.315,72.936c-0.39-0.465-0.975-0.75-1.575-0.75c-1.335,0-2.46,1.035-2.52,4.065
c0.6-0.735,1.455-1.2,2.235-1.2c1.65,0,2.729,0.99,2.729,2.955c0,1.829-1.29,3.074-2.834,3.074c-1.875,0-3.3-1.529-3.3-4.604
c0-3.84,1.74-5.325,3.645-5.325c1.035,0,1.77,0.436,2.31,1.021L109.315,72.936z M109.015,78.006c0-1.245-0.585-2.025-1.77-2.025
c-0.6,0-1.35,0.36-1.995,1.26c0.15,1.86,0.885,2.865,2.1,2.865C108.295,80.105,109.015,79.266,109.015,78.006z"/>
<path fill="#939598" d="M116.275,81.516v2.46h-1.23V73.61h1.02l0.105,0.84h0.045c0.66-0.555,1.47-1.02,2.325-1.02
c1.875,0,2.88,1.455,2.88,3.72c0,2.475-1.485,3.93-3.15,3.93c-0.675,0-1.35-0.314-2.025-0.84L116.275,81.516z M118.06,80.046
c1.2,0,2.085-1.096,2.085-2.896c0-1.604-0.54-2.685-1.92-2.685c-0.615,0-1.23,0.345-1.95,0.99v3.824
C116.935,79.835,117.58,80.046,118.06,80.046z"/>
<path fill="#939598" d="M127.298,76.28c0-0.93-0.315-1.83-1.5-1.83c-0.855,0-1.605,0.391-2.175,0.78l-0.495-0.854
c0.675-0.436,1.695-0.945,2.865-0.945c1.785,0,2.535,1.185,2.535,3v4.47h-1.02l-0.105-0.87h-0.03
c-0.705,0.57-1.515,1.05-2.415,1.05c-1.229,0-2.145-0.765-2.145-2.069C122.813,77.421,124.193,76.626,127.298,76.28z
M125.303,80.091c0.705,0,1.29-0.346,1.995-0.976v-2.024c-2.445,0.3-3.27,0.899-3.27,1.83
C124.028,79.745,124.583,80.091,125.303,80.091z"/>
<path fill="#939598" d="M130.574,79.25c0.63,0.511,1.275,0.87,2.145,0.87c0.96,0,1.44-0.51,1.44-1.14c0-0.75-0.87-1.08-1.665-1.38
c-1.035-0.375-2.175-0.87-2.175-2.1c0-1.17,0.93-2.07,2.505-2.07c0.915,0,1.71,0.375,2.265,0.825l-0.585,0.779
c-0.495-0.375-1.02-0.645-1.665-0.645c-0.915,0-1.335,0.495-1.335,1.05c0,0.675,0.795,0.945,1.62,1.26
c1.05,0.391,2.22,0.825,2.22,2.205c0,1.186-0.945,2.175-2.67,2.175c-1.035,0-2.025-0.435-2.715-1.005L130.574,79.25z"/>
<path fill="#939598" d="M136.979,79.25c0.63,0.511,1.275,0.87,2.145,0.87c0.96,0,1.44-0.51,1.44-1.14c0-0.75-0.87-1.08-1.665-1.38
c-1.035-0.375-2.175-0.87-2.175-2.1c0-1.17,0.93-2.07,2.505-2.07c0.915,0,1.71,0.375,2.265,0.825l-0.585,0.779
c-0.495-0.375-1.02-0.645-1.665-0.645c-0.915,0-1.335,0.495-1.335,1.05c0,0.675,0.795,0.945,1.62,1.26
c1.05,0.391,2.22,0.825,2.22,2.205c0,1.186-0.945,2.175-2.67,2.175c-1.035,0-2.025-0.435-2.715-1.005L136.979,79.25z"/>
<path fill="#939598" d="M146.211,73.431c1.86,0,2.91,1.335,2.91,3.42c0,0.255-0.015,0.495-0.045,0.675h-4.92
c0.09,1.575,1.035,2.565,2.43,2.565c0.69,0,1.275-0.226,1.815-0.57l0.435,0.81c-0.63,0.405-1.41,0.75-2.4,0.75
c-1.95,0-3.495-1.425-3.495-3.81S144.546,73.431,146.211,73.431z M148.041,76.716c0-1.485-0.66-2.311-1.8-2.311
c-1.02,0-1.95,0.841-2.1,2.311H148.041z"/>
<path fill="#939598" d="M153.62,73.431c0.84,0,1.395,0.315,2.04,0.84l-0.06-1.245v-2.805h1.245V80.9h-1.02l-0.105-0.854h-0.045
c-0.57,0.555-1.35,1.034-2.205,1.034c-1.83,0-3.015-1.38-3.015-3.81C150.455,74.9,151.955,73.431,153.62,73.431z M153.74,80.046
c0.675,0,1.26-0.33,1.86-1.006v-3.81c-0.615-0.555-1.17-0.765-1.77-0.765c-1.17,0-2.1,1.125-2.1,2.79
C151.73,78.995,152.465,80.046,153.74,80.046z"/>
</g>
<g>
<g>
<path fill="#D1D0D0" d="M71.35,73.624c0.785,0,1.426-0.638,1.426-1.424c0-0.787-0.641-1.426-1.426-1.426h-3.732l0.246-3.15
c0.061-0.785-0.523-1.47-1.312-1.532c-0.784-0.061-1.469,0.525-1.529,1.31l-0.266,3.373h-3.164l0.249-3.15
c0.062-0.785-0.525-1.47-1.31-1.532c-0.785-0.061-1.471,0.525-1.533,1.31l-0.265,3.373h-3.535c-0.788,0-1.426,0.639-1.426,1.426
c0,0.786,0.638,1.424,1.426,1.424h3.312l-0.274,3.488h-3.989c-0.786,0-1.424,0.639-1.424,1.427s0.638,1.425,1.424,1.425h3.766
l-0.281,3.587c-0.062,0.785,0.524,1.471,1.309,1.532c0.039,0.005,0.076,0.005,0.113,0.005c0.736,0,1.361-0.566,1.42-1.313
l0.298-3.811h3.164l-0.282,3.587c-0.062,0.785,0.526,1.471,1.31,1.532c0.037,0.005,0.075,0.005,0.113,0.005
c0.737,0,1.358-0.566,1.421-1.313l0.299-3.811h3.502c0.788,0,1.425-0.637,1.425-1.425s-0.637-1.427-1.425-1.427h-3.279
l0.273-3.488H71.35z M64.26,77.112h-3.164l0.274-3.488h3.161L64.26,77.112z"/>
</g>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M17.942,8.353c-4.142,0-7.5,3.358-7.5,7.5s3.358,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5
S22.085,8.353,17.942,8.353z M21.982,13.601l-3.713,5.822c-0.104,0.169-0.353,0.34-0.545,0.381l-0.409,0.089
c-0.194,0.043-0.489-0.011-0.656-0.118l-2.725-1.775c-0.165-0.106-0.214-0.334-0.105-0.5l0.688-1.078
c0.105-0.168,0.332-0.215,0.497-0.109l1.739,1.125c0.167,0.107,0.391,0.059,0.498-0.108l3.058-4.802
c0.108-0.166,0.332-0.215,0.499-0.109l1.064,0.686C22.038,13.209,22.089,13.435,21.982,13.601z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,237 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="399.645px" height="117.895px" viewBox="0 0 399.645 117.895" enable-background="new 0 0 399.645 117.895"
xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M398.909,112.402c0,2.2-1.8,4-4,4H4.017c-2.2,0-4-1.8-4-4V2.902c0-2.2,1.8-4,4-4h390.893c2.2,0,4,1.8,4,4
V112.402z"/>
</g>
<g>
<g>
<path fill="#D1D0D0" d="M244.013,65.282c0,0-0.962-0.311-3.161,1.18c-0.921-0.257-1.906-0.383-2.885-0.388
c-0.981,0.005-1.966,0.131-2.882,0.388c-2.203-1.49-3.171-1.18-3.171-1.18c-0.626,1.587-0.229,2.759-0.111,3.05
c-0.737,0.805-1.187,1.831-1.187,3.089c0,4.414,2.69,5.399,5.247,5.691c-0.329,0.288-0.628,0.796-0.731,1.542
c-0.655,0.29-2.323,0.8-3.351-0.957c0,0-0.608-1.107-1.767-1.189c0,0-1.124-0.012-0.077,0.699c0,0,0.754,0.354,1.279,1.685
c0,0,0.675,2.243,3.879,1.544c0.005,0.962,0.016,1.687,0.016,1.962c0,0.156-0.061,0.325-0.19,0.437
c0.971,0.267,1.988,0.422,3.045,0.422c1.055,0,2.073-0.155,3.044-0.42c-0.13-0.113-0.188-0.282-0.188-0.438
c0-0.379,0.015-1.621,0.015-3.162c0-1.073-0.368-1.776-0.782-2.136c2.567-0.283,5.26-1.254,5.26-5.679
c0-1.258-0.449-2.284-1.186-3.089C244.248,68.041,244.645,66.869,244.013,65.282z"/>
</g>
<g>
<g>
<rect x="56.733" y="96.324" fill="#F4F4F4" width="13.258" height="9.406"/>
</g>
<g>
<g>
<g>
<g>
<g>
<path fill="#D1D0D0" d="M62.919,101.533c-0.201,0.143-0.391,0.283-0.57,0.422c-0.188,0.148-0.355,0.308-0.498,0.482
c-0.143,0.176-0.259,0.382-0.342,0.608c-0.086,0.227-0.102,0.416-0.102,0.416c-0.015,0.21-0.029,0.425-0.029,0.476
c0,0.052,0.167,0.096,0.368,0.096h3.028c0.201,0,0.367-0.172,0.367-0.383v-0.456c0-0.21-0.166-0.38-0.367-0.38h-1.229
c-0.201,0-0.336-0.03-0.301-0.064c0,0,0,0,0.037-0.029c0.145-0.122,0.295-0.233,0.449-0.335
c0.159-0.112,0.316-0.22,0.473-0.33c0.169-0.116,0.318-0.252,0.451-0.396c0.138-0.151,0.246-0.323,0.332-0.52
c0.086-0.195,0.129-0.433,0.129-0.701c0-0.263-0.051-0.502-0.146-0.718c-0.098-0.209-0.23-0.394-0.393-0.536
c-0.164-0.144-0.353-0.255-0.568-0.331c-0.206-0.074-0.432-0.114-0.664-0.114c-0.301,0-0.572,0.057-0.81,0.165
c-0.239,0.11-0.44,0.267-0.599,0.464c-0.156,0.195-0.273,0.428-0.352,0.687c-0.074,0.256-0.084,0.447-0.084,0.447
c-0.009,0.212-0.015,0.423-0.013,0.475c0.001,0.052,0.167,0.092,0.37,0.092h0.524c0.202,0,0.366-0.042,0.366-0.095
s0.007-0.201,0.011-0.331c0,0,0,0,0.026-0.118c0.018-0.11,0.055-0.211,0.1-0.301c0.043-0.082,0.1-0.146,0.17-0.194
c0.062-0.046,0.145-0.067,0.245-0.067c0.153,0,0.276,0.048,0.37,0.142c0.094,0.096,0.139,0.226,0.139,0.409
c0,0.114-0.021,0.209-0.068,0.296c-0.057,0.099-0.125,0.189-0.207,0.268"/>
</g>
</g>
</g>
</g>
<g>
<path fill="#D1D0D0" d="M69.351,91.274H57.374c-0.796,0-1.446,0.581-1.446,1.472v12.984v0.898v0.146h0.028
c0.065,0.283,0.301,0.499,0.59,0.499h13.633c0.289,0,0.523-0.216,0.59-0.499h0.027v-0.146v-0.898V92.746
C70.796,91.855,70.286,91.274,69.351,91.274z M69.163,105.73H57.561v-9.406h11.603V105.73z"/>
</g>
</g>
</g>
<g>
<path fill="#D1D0D0" d="M241.054,97.738c-0.609-2.324-2.725-4.039-5.241-4.039c-2.516,0-4.631,1.715-5.24,4.039h-4.26v2.703
h4.244c0.591,2.352,2.72,4.096,5.256,4.096s4.666-1.744,5.256-4.096h4.245v-2.703H241.054z M235.812,101.834
c-1.022,0-1.913-0.562-2.382-1.393c-0.222-0.396-0.35-0.852-0.35-1.338c0-0.498,0.134-0.963,0.367-1.365
c0.471-0.816,1.354-1.365,2.364-1.365s1.893,0.549,2.365,1.365c0.232,0.402,0.365,0.867,0.365,1.365
c0,0.486-0.126,0.941-0.35,1.338C237.726,101.271,236.835,101.834,235.812,101.834z"/>
</g>
<g>
<g>
<path fill="#D1D0D0" d="M71.319,72.797c0.785,0,1.426-0.638,1.426-1.424c0-0.787-0.641-1.426-1.426-1.426h-3.732l0.246-3.15
c0.061-0.785-0.523-1.47-1.312-1.532c-0.783-0.061-1.469,0.525-1.529,1.31l-0.266,3.373h-3.164l0.25-3.15
c0.062-0.785-0.525-1.47-1.311-1.532c-0.785-0.061-1.471,0.525-1.533,1.31l-0.264,3.373h-3.535
c-0.789,0-1.426,0.639-1.426,1.426c0,0.786,0.637,1.424,1.426,1.424h3.311l-0.273,3.488h-3.99c-0.785,0-1.424,0.639-1.424,1.427
s0.639,1.425,1.424,1.425h3.766L57.7,82.724c-0.062,0.785,0.525,1.471,1.309,1.532c0.039,0.005,0.076,0.005,0.113,0.005
c0.736,0,1.361-0.566,1.42-1.313l0.299-3.811h3.164l-0.283,3.587c-0.061,0.785,0.527,1.471,1.311,1.532
c0.037,0.005,0.074,0.005,0.113,0.005c0.736,0,1.357-0.566,1.42-1.313l0.299-3.811h3.502c0.789,0,1.426-0.637,1.426-1.425
s-0.637-1.427-1.426-1.427h-3.279l0.273-3.488H71.319z M64.229,76.285h-3.164l0.273-3.488h3.162L64.229,76.285z"/>
</g>
</g>
</g>
<g>
<path fill="#DC4242" d="M3.641-1.494c-2.2,0-4,1.624-4,3.609v110.582c0,1.986,1.8,3.61,4,3.61h31V-1.494H3.641z"/>
</g>
<g>
<path fill="#DC4242" d="M53.199,13.25h1.02l0.105,1.32h0.045c0.495-0.915,1.245-1.5,2.07-1.5c0.315,0,0.54,0.045,0.78,0.15
l-0.24,1.079c-0.24-0.074-0.405-0.119-0.705-0.119c-0.615,0-1.35,0.449-1.845,1.68v4.68h-1.23V13.25z"/>
<path fill="#DC4242" d="M62.558,15.92c0-0.93-0.315-1.83-1.5-1.83c-0.855,0-1.605,0.391-2.175,0.78l-0.495-0.854
c0.675-0.436,1.695-0.945,2.865-0.945c1.785,0,2.535,1.185,2.535,3v4.47h-1.02l-0.105-0.87h-0.03
c-0.705,0.57-1.515,1.05-2.415,1.05c-1.229,0-2.145-0.765-2.145-2.069C58.073,17.061,59.453,16.266,62.558,15.92z M60.562,19.73
c0.705,0,1.29-0.346,1.995-0.976V16.73c-2.445,0.3-3.27,0.899-3.27,1.83C59.288,19.385,59.842,19.73,60.562,19.73z"/>
<path fill="#DC4242" d="M69.01,13.07c0.96,0,1.635,0.405,2.13,0.87l-0.615,0.795c-0.435-0.375-0.885-0.646-1.47-0.646
c-1.32,0-2.28,1.141-2.28,2.82c0,1.665,0.915,2.79,2.25,2.79c0.69,0,1.275-0.345,1.71-0.735l0.555,0.811
c-0.66,0.585-1.5,0.944-2.37,0.944c-1.935,0-3.42-1.395-3.42-3.81C65.5,14.465,67.135,13.07,69.01,13.07z"/>
<path fill="#DC4242" d="M72.759,9.86h1.215v7.229h0.045l3.105-3.84h1.365l-2.445,2.925l2.775,4.365h-1.35l-2.13-3.51l-1.365,1.59
v1.92h-1.215V9.86z"/>
<path fill="#DC4242" d="M53.855,33.364h1.563l0.161,2.023h0.069c0.759-1.402,1.909-2.299,3.173-2.299
c0.483,0,0.828,0.068,1.196,0.229l-0.368,1.655c-0.368-0.114-0.621-0.184-1.081-0.184c-0.943,0-2.07,0.69-2.829,2.575v7.175
h-1.885V33.364z"/>
<path fill="#DC4242" d="M68.15,37.458c0-1.426-0.482-2.806-2.299-2.806c-1.311,0-2.46,0.598-3.334,1.195l-0.759-1.311
c1.035-0.667,2.599-1.448,4.392-1.448c2.736,0,3.886,1.816,3.886,4.599v6.853h-1.563l-0.161-1.334h-0.046
c-1.081,0.874-2.323,1.61-3.702,1.61c-1.886,0-3.289-1.173-3.289-3.174C61.274,39.205,63.39,37.986,68.15,37.458z M65.092,43.298
c1.081,0,1.978-0.528,3.058-1.494v-3.104c-3.748,0.46-5.013,1.38-5.013,2.806C63.137,42.77,63.988,43.298,65.092,43.298z"/>
<path fill="#DC4242" d="M77.987,33.089c1.472,0,2.506,0.62,3.266,1.333l-0.943,1.219c-0.667-0.574-1.357-0.988-2.253-0.988
c-2.024,0-3.496,1.747-3.496,4.323c0,2.552,1.403,4.276,3.449,4.276c1.058,0,1.955-0.528,2.622-1.126l0.851,1.241
c-1.012,0.896-2.3,1.449-3.633,1.449c-2.966,0-5.243-2.139-5.243-5.841C72.606,35.228,75.113,33.089,77.987,33.089z"/>
<path fill="#DC4242" d="M83.678,28.168h1.862v11.083h0.069l4.76-5.887h2.093l-3.749,4.484l4.254,6.691h-2.07l-3.265-5.381
l-2.093,2.438v2.943h-1.862V28.168z"/>
</g>
<g>
<g>
<path fill="#989697" d="M257.305,71.939c1.86,0,2.91,1.335,2.91,3.42c0,0.255-0.016,0.495-0.045,0.675h-4.92
c0.09,1.575,1.035,2.565,2.43,2.565c0.69,0,1.275-0.226,1.815-0.57l0.435,0.81c-0.63,0.405-1.41,0.75-2.399,0.75
c-1.95,0-3.495-1.425-3.495-3.81S255.641,71.939,257.305,71.939z M259.135,75.225c0-1.485-0.66-2.311-1.8-2.311
c-1.021,0-1.95,0.841-2.1,2.311H259.135z"/>
<path fill="#989697" d="M262.006,68.729h1.23v2.91l-0.031,1.319c0.66-0.585,1.471-1.02,2.281-1.02
c1.889,0,2.895,1.455,2.895,3.705c0,2.489-1.485,3.944-3.15,3.944c-0.675,0-1.439-0.33-2.084-0.899h-0.046l-0.104,0.72h-0.99
V68.729z M265.021,78.555c1.2,0,2.085-1.096,2.085-2.896c0-1.604-0.54-2.685-1.92-2.685c-0.615,0-1.26,0.345-1.949,0.99v3.824
C263.881,78.344,264.541,78.555,265.021,78.555z"/>
<path fill="#989697" d="M269.944,77.475c0.569,0.569,1.29,1.095,2.415,1.095c1.17,0,2.1-0.855,2.1-2.19
c0-1.319-0.811-2.1-2.04-2.1c-0.659,0-1.065,0.21-1.635,0.585l-0.66-0.42l0.315-4.604h4.785v1.064h-3.705l-0.256,2.835
c0.451-0.24,0.885-0.39,1.471-0.39c1.635,0,2.97,0.93,2.97,3c0,2.069-1.56,3.239-3.226,3.239c-1.529,0-2.475-0.645-3.135-1.305
L269.944,77.475z"/>
<path fill="#989697" d="M280.674,69.734c-0.27-0.12-0.555-0.18-0.824-0.18c-0.689,0-1.02,0.479-1.02,1.41v1.154h1.545v1.005
h-1.545v6.285h-1.23v-6.285h-0.99v-0.93l0.99-0.075v-1.154c0-1.485,0.675-2.415,2.13-2.415c0.45,0,0.885,0.104,1.215,0.24
L280.674,69.734z"/>
<path fill="#989697" d="M286.396,70.904h-4.77V69.84h6.165v0.765c-2.266,2.895-2.73,5.07-2.896,8.805h-1.274
C283.785,75.81,284.506,73.529,286.396,70.904z"/>
<path fill="#989697" d="M293.918,70.904h-4.77V69.84h6.164v0.765c-2.264,2.895-2.729,5.07-2.895,8.805h-1.275
C291.309,75.81,292.028,73.529,293.918,70.904z"/>
<path fill="#989697" d="M296.25,74.595c0-3.21,1.154-4.936,3.074-4.936c1.904,0,3.061,1.726,3.061,4.936
s-1.156,4.994-3.061,4.994C297.404,79.589,296.25,77.805,296.25,74.595z M301.184,74.595c0-2.806-0.75-3.945-1.859-3.945
c-1.125,0-1.875,1.14-1.875,3.945c0,2.805,0.75,4.005,1.875,4.005C300.434,78.6,301.184,77.399,301.184,74.595z"/>
</g>
</g>
<g>
<g>
<path fill="#989697" d="M85.45,100.788h-1.305v2.64h-1.17v-2.64H78.67v-0.811l4.095-6.119h1.38v5.939h1.305V100.788z
M82.975,99.798v-2.774c0-0.511,0.045-1.335,0.075-1.846h-0.06c-0.24,0.465-0.51,0.886-0.78,1.351l-2.235,3.27H82.975z"/>
<path fill="#989697" d="M90.13,96.138h1.02l0.105,1.05H91.3c0.63-0.689,1.395-1.229,2.265-1.229c1.11,0,1.709,0.525,2.01,1.395
c0.765-0.824,1.515-1.395,2.4-1.395c1.5,0,2.22,0.99,2.22,2.85v4.62h-1.23v-4.455c0-1.364-0.435-1.949-1.35-1.949
c-0.57,0-1.155,0.375-1.83,1.125v5.279h-1.23v-4.455c0-1.364-0.435-1.949-1.365-1.949c-0.54,0-1.155,0.375-1.83,1.125v5.279
h-1.23V96.138z"/>
<path fill="#989697" d="M102.172,93.843c0-0.479,0.375-0.795,0.855-0.795s0.855,0.315,0.855,0.795
c0,0.466-0.375,0.795-0.855,0.795S102.172,94.309,102.172,93.843z M102.397,96.138h1.23v7.29h-1.23V96.138z"/>
<path fill="#989697" d="M105.878,96.138h1.02l0.105,1.05h0.045c0.69-0.689,1.44-1.229,2.445-1.229c1.53,0,2.22,0.99,2.22,2.85
v4.62h-1.23v-4.455c0-1.364-0.42-1.949-1.38-1.949c-0.75,0-1.26,0.39-1.995,1.125v5.279h-1.23V96.138z"/>
<path fill="#989697" d="M113.871,96.138h1.245v4.455c0,1.365,0.405,1.95,1.365,1.95c0.75,0,1.26-0.375,1.95-1.23v-5.175h1.245
v7.29h-1.02l-0.105-1.14h-0.045c-0.675,0.795-1.41,1.319-2.4,1.319c-1.545,0-2.235-0.989-2.235-2.85V96.138z"/>
<path fill="#989697" d="M122.225,97.143h-1.08v-0.93l1.14-0.075l0.15-2.04h1.035v2.04h1.965v1.005h-1.965v4.05
c0,0.9,0.285,1.41,1.125,1.41c0.255,0,0.585-0.104,0.825-0.194l0.24,0.93c-0.405,0.135-0.9,0.27-1.35,0.27
c-1.56,0-2.085-0.989-2.085-2.43V97.143z"/>
<path fill="#989697" d="M129.572,95.958c1.86,0,2.91,1.335,2.91,3.42c0,0.255-0.015,0.495-0.045,0.675h-4.92
c0.09,1.575,1.035,2.565,2.43,2.565c0.69,0,1.275-0.226,1.815-0.57l0.435,0.81c-0.63,0.405-1.41,0.75-2.4,0.75
c-1.95,0-3.495-1.425-3.495-3.81S127.907,95.958,129.572,95.958z M131.401,99.243c0-1.485-0.66-2.311-1.8-2.311
c-1.02,0-1.95,0.841-2.1,2.311H131.401z"/>
<path fill="#989697" d="M134.138,101.777c0.63,0.511,1.275,0.87,2.145,0.87c0.96,0,1.44-0.51,1.44-1.14
c0-0.75-0.87-1.08-1.665-1.38c-1.035-0.375-2.175-0.87-2.175-2.1c0-1.17,0.93-2.07,2.505-2.07c0.915,0,1.71,0.375,2.265,0.825
l-0.585,0.779c-0.495-0.375-1.02-0.645-1.665-0.645c-0.915,0-1.335,0.495-1.335,1.05c0,0.675,0.795,0.945,1.62,1.26
c1.05,0.391,2.22,0.825,2.22,2.205c0,1.186-0.945,2.175-2.67,2.175c-1.035,0-2.025-0.435-2.715-1.005L134.138,101.777z"/>
<path fill="#989697" d="M147.772,98.808c0-0.93-0.315-1.83-1.5-1.83c-0.855,0-1.605,0.391-2.175,0.78l-0.495-0.854
c0.675-0.436,1.695-0.945,2.865-0.945c1.785,0,2.535,1.185,2.535,3v4.47h-1.02l-0.105-0.87h-0.03
c-0.705,0.57-1.515,1.05-2.415,1.05c-1.229,0-2.145-0.765-2.145-2.069C143.288,99.948,144.667,99.153,147.772,98.808z
M145.777,102.618c0.705,0,1.29-0.346,1.995-0.976v-2.024c-2.445,0.3-3.27,0.899-3.27,1.83
C144.502,102.272,145.058,102.618,145.777,102.618z"/>
<path fill="#989697" d="M151.659,103.173v-0.061c-0.36-0.225-0.645-0.614-0.645-1.185c0-0.615,0.42-1.095,0.795-1.35v-0.061
c-0.48-0.39-0.945-1.095-0.945-1.965c0-1.59,1.26-2.595,2.745-2.595c0.405,0,0.765,0.075,1.035,0.18h2.535v0.945h-1.5
c0.345,0.33,0.6,0.885,0.6,1.5c0,1.56-1.185,2.535-2.67,2.535c-0.36,0-0.765-0.091-1.095-0.255
c-0.255,0.225-0.465,0.465-0.465,0.869c0,0.466,0.3,0.795,1.29,0.795h1.41c1.695,0,2.55,0.525,2.55,1.74
c0,1.35-1.425,2.52-3.69,2.52c-1.785,0-3.015-0.704-3.015-1.965C150.594,104.208,150.999,103.623,151.659,103.173z
M153.789,105.933c1.395,0,2.31-0.72,2.31-1.485c0-0.675-0.525-0.899-1.47-0.899h-1.26c-0.285,0-0.63-0.03-0.945-0.12
c-0.525,0.375-0.75,0.81-0.75,1.229C151.674,105.438,152.469,105.933,153.789,105.933z M155.154,98.553
c0-1.064-0.69-1.694-1.545-1.694s-1.545,0.63-1.545,1.694c0,1.065,0.705,1.74,1.545,1.74S155.154,99.618,155.154,98.553z"/>
<path fill="#989697" d="M161.366,95.958c1.785,0,3.375,1.395,3.375,3.84c0,2.415-1.59,3.81-3.375,3.81
c-1.785,0-3.375-1.395-3.375-3.81C157.991,97.353,159.581,95.958,161.366,95.958z M161.366,102.588c1.26,0,2.1-1.125,2.1-2.79
c0-1.68-0.84-2.82-2.1-2.82c-1.245,0-2.1,1.141-2.1,2.82C159.266,101.463,160.121,102.588,161.366,102.588z"/>
</g>
</g>
<g>
<g>
<path fill="#989697" d="M256.043,95.768h1.02l0.105,1.05h0.045c0.63-0.689,1.395-1.229,2.266-1.229
c1.109,0,1.709,0.525,2.01,1.395c0.764-0.824,1.514-1.395,2.399-1.395c1.5,0,2.22,0.99,2.22,2.85v4.62h-1.23v-4.455
c0-1.364-0.435-1.949-1.35-1.949c-0.57,0-1.154,0.375-1.83,1.125v5.279h-1.229v-4.455c0-1.364-0.435-1.949-1.364-1.949
c-0.541,0-1.156,0.375-1.83,1.125v5.279h-1.23V95.768z"/>
<path fill="#989697" d="M272.378,98.438c0-0.93-0.315-1.83-1.5-1.83c-0.854,0-1.604,0.391-2.175,0.78l-0.495-0.854
c0.675-0.436,1.694-0.945,2.864-0.945c1.785,0,2.535,1.185,2.535,3v4.47h-1.02l-0.105-0.87h-0.029
c-0.705,0.57-1.516,1.05-2.416,1.05c-1.229,0-2.145-0.765-2.145-2.069C267.893,99.578,269.273,98.783,272.378,98.438z
M270.383,102.248c0.705,0,1.29-0.346,1.995-0.976v-2.024c-2.445,0.3-3.271,0.899-3.271,1.83
C269.107,101.902,269.662,102.248,270.383,102.248z"/>
<path fill="#989697" d="M275.654,101.407c0.629,0.511,1.274,0.87,2.145,0.87c0.959,0,1.439-0.51,1.439-1.14
c0-0.75-0.869-1.08-1.664-1.38c-1.035-0.375-2.176-0.87-2.176-2.1c0-1.17,0.93-2.07,2.505-2.07c0.915,0,1.71,0.375,2.265,0.825
l-0.584,0.779c-0.496-0.375-1.021-0.645-1.666-0.645c-0.914,0-1.334,0.495-1.334,1.05c0,0.675,0.795,0.945,1.619,1.26
c1.051,0.391,2.221,0.825,2.221,2.205c0,1.186-0.945,2.175-2.67,2.175c-1.035,0-2.025-0.435-2.715-1.005L275.654,101.407z"/>
<path fill="#989697" d="M282.463,96.772h-1.08v-0.93l1.141-0.075l0.15-2.04h1.035v2.04h1.965v1.005h-1.965v4.05
c0,0.9,0.284,1.41,1.125,1.41c0.254,0,0.584-0.104,0.824-0.194l0.24,0.93c-0.405,0.135-0.9,0.27-1.35,0.27
c-1.561,0-2.086-0.989-2.086-2.43V96.772z"/>
<path fill="#989697" d="M289.811,95.588c1.859,0,2.91,1.335,2.91,3.42c0,0.255-0.016,0.495-0.045,0.675h-4.92
c0.09,1.575,1.035,2.565,2.43,2.565c0.689,0,1.275-0.226,1.814-0.57l0.436,0.81c-0.631,0.405-1.41,0.75-2.4,0.75
c-1.949,0-3.494-1.425-3.494-3.81S288.146,95.588,289.811,95.588z M291.641,98.873c0-1.485-0.66-2.311-1.801-2.311
c-1.02,0-1.949,0.841-2.1,2.311H291.641z"/>
<path fill="#989697" d="M294.512,95.768h1.02l0.105,1.32h0.045c0.495-0.915,1.245-1.5,2.07-1.5c0.314,0,0.539,0.045,0.779,0.15
l-0.24,1.079c-0.239-0.074-0.404-0.119-0.705-0.119c-0.614,0-1.35,0.449-1.844,1.68v4.68h-1.23V95.768z"/>
</g>
</g>
<g>
<path fill="#939598" d="M78.307,77.804c0.39,0.465,0.975,0.765,1.575,0.765c1.35,0,2.49-1.05,2.535-4.11
c-0.6,0.766-1.455,1.23-2.25,1.23c-1.65,0-2.715-0.99-2.715-2.955c0-1.83,1.29-3.075,2.82-3.075c1.89,0,3.3,1.53,3.3,4.605
c0,3.84-1.74,5.324-3.645,5.324c-1.02,0-1.785-0.435-2.31-1.005L78.307,77.804z M82.386,73.483c-0.165-1.86-0.9-2.85-2.115-2.85
c-0.93,0-1.665,0.84-1.665,2.1c0,1.245,0.585,2.025,1.77,2.025C80.991,74.759,81.741,74.398,82.386,73.483z"/>
<path fill="#939598" d="M91.515,76.769H90.21v2.64h-1.17v-2.64h-4.305v-0.811l4.095-6.119h1.38v5.939h1.305V76.769z M89.04,75.778
v-2.774c0-0.511,0.045-1.335,0.075-1.846h-0.06c-0.24,0.465-0.51,0.886-0.78,1.351l-2.235,3.27H89.04z"/>
<path fill="#939598" d="M92.106,78.673c2.88-2.864,4.5-4.59,4.5-6.135c0-1.095-0.6-1.875-1.815-1.875
c-0.795,0-1.485,0.511-2.04,1.155l-0.705-0.705c0.795-0.87,1.65-1.455,2.895-1.455c1.77,0,2.865,1.125,2.865,2.82
c0,1.8-1.635,3.585-3.9,5.955c0.525-0.045,1.11-0.091,1.605-0.091h2.775v1.065h-6.18V78.673z"/>
<path fill="#939598" d="M106.506,69.733c-0.27-0.12-0.555-0.18-0.825-0.18c-0.69,0-1.02,0.479-1.02,1.41v1.154h1.545v1.005h-1.545
v6.285h-1.23v-6.285h-0.99v-0.93l0.99-0.075v-1.154c0-1.485,0.675-2.415,2.13-2.415c0.45,0,0.885,0.104,1.215,0.24L106.506,69.733
z"/>
<path fill="#939598" d="M111.709,74.788c0-0.93-0.315-1.83-1.5-1.83c-0.855,0-1.605,0.391-2.175,0.78l-0.495-0.854
c0.675-0.436,1.695-0.945,2.865-0.945c1.785,0,2.535,1.185,2.535,3v4.47h-1.02l-0.105-0.87h-0.03
c-0.705,0.57-1.515,1.05-2.415,1.05c-1.229,0-2.145-0.765-2.145-2.069C107.225,75.929,108.604,75.134,111.709,74.788z
M109.714,78.599c0.705,0,1.29-0.346,1.995-0.976v-2.024c-2.445,0.3-3.27,0.899-3.27,1.83
C108.439,78.253,108.994,78.599,109.714,78.599z"/>
<path fill="#939598" d="M114.879,69.823c0-0.479,0.375-0.795,0.855-0.795s0.855,0.315,0.855,0.795
c0,0.466-0.375,0.795-0.855,0.795S114.879,70.289,114.879,69.823z M115.104,72.118h1.23v7.29h-1.23V72.118z"/>
<path fill="#939598" d="M118.585,68.729h1.23v9.3c0,0.39,0.165,0.54,0.345,0.54c0.075,0,0.135,0,0.27-0.03l0.165,0.93
c-0.165,0.075-0.375,0.12-0.705,0.12c-0.93,0-1.305-0.585-1.305-1.649V68.729z"/>
<path fill="#939598" d="M124.932,71.938c1.86,0,2.91,1.335,2.91,3.42c0,0.255-0.015,0.495-0.045,0.675h-4.92
c0.09,1.575,1.035,2.565,2.43,2.565c0.69,0,1.275-0.226,1.815-0.57l0.435,0.81c-0.63,0.405-1.41,0.75-2.4,0.75
c-1.95,0-3.495-1.425-3.495-3.81S123.267,71.938,124.932,71.938z M126.761,75.224c0-1.485-0.66-2.311-1.8-2.311
c-1.02,0-1.95,0.841-2.1,2.311H126.761z"/>
<path fill="#939598" d="M132.34,71.938c0.84,0,1.395,0.315,2.04,0.84l-0.06-1.245v-2.805h1.245v10.68h-1.02l-0.105-0.854h-0.045
c-0.57,0.555-1.35,1.034-2.205,1.034c-1.83,0-3.015-1.38-3.015-3.81C129.175,73.408,130.675,71.938,132.34,71.938z M132.46,78.554
c0.675,0,1.26-0.33,1.86-1.006v-3.81c-0.615-0.555-1.17-0.765-1.77-0.765c-1.17,0-2.1,1.125-2.1,2.79
C130.45,77.503,131.185,78.554,132.46,78.554z"/>
</g>
<g>
<g>
<path fill="#FFFFFF" d="M17.755,6.772c-4.141,0-7.5,3.359-7.5,7.5c0,4.143,3.359,7.5,7.5,7.5s7.5-3.357,7.5-7.5
C25.255,10.132,21.896,6.772,17.755,6.772z M21.729,16.679l-1.654,1.655l-2.096-2.096l-2.096,2.096l-1.654-1.655l2.096-2.095
l-2.096-2.097l1.654-1.653l2.096,2.095l2.096-2.095l1.654,1.653l-2.096,2.096L21.729,16.679z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,255 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="399.645px" height="117.895px" viewBox="0 0 399.645 117.895" enable-background="new 0 0 399.645 117.895"
xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M399.645,113.896c0,2.2-1.8,4-4,4H4.752c-2.2,0-4-1.8-4-4V4.396c0-2.2,1.8-4,4-4h390.893c2.2,0,4,1.8,4,4
V113.896z"/>
</g>
<g>
<path fill="#D1C929" d="M4.753,0c-2.2,0-4,1.624-4,3.609v110.582c0,1.986,1.8,3.61,4,3.61h31V0H4.753z"/>
</g>
<g>
<path fill="#A49934" d="M54.327,14.744h1.23v8.115c0,1.484-0.54,2.43-1.995,2.43c-0.45,0-0.825-0.09-1.08-0.195l0.255-0.93
c0.18,0.06,0.435,0.12,0.69,0.12c0.72,0,0.9-0.54,0.9-1.425V14.744z M54.102,12.449c0-0.479,0.375-0.795,0.855-0.795
c0.465,0,0.84,0.315,0.84,0.795c0,0.466-0.375,0.795-0.84,0.795C54.477,13.244,54.102,12.915,54.102,12.449z"/>
<path fill="#A49934" d="M57.82,14.744h1.02l0.105,1.32h0.045c0.495-0.915,1.245-1.5,2.07-1.5c0.315,0,0.54,0.045,0.78,0.15
l-0.24,1.079c-0.24-0.074-0.405-0.119-0.705-0.119c-0.615,0-1.35,0.449-1.845,1.68v4.68h-1.23V14.744z"/>
<path fill="#A49934" d="M63.084,14.744h1.245v4.455c0,1.365,0.405,1.95,1.365,1.95c0.75,0,1.26-0.375,1.95-1.23v-5.175h1.245v7.29
h-1.02l-0.105-1.14H67.72c-0.675,0.795-1.41,1.319-2.4,1.319c-1.545,0-2.235-0.989-2.235-2.85V14.744z"/>
<path fill="#A49934" d="M71.156,11.354h1.23v2.91l-0.03,1.319c0.66-0.585,1.47-1.02,2.28-1.02c1.89,0,2.895,1.455,2.895,3.705
c0,2.489-1.485,3.944-3.15,3.944c-0.675,0-1.44-0.33-2.084-0.899h-0.045l-0.105,0.72h-0.99V11.354z M74.171,21.18
c1.2,0,2.085-1.096,2.085-2.896c0-1.604-0.54-2.685-1.92-2.685c-0.615,0-1.26,0.345-1.95,0.99v3.824
C73.031,20.969,73.691,21.18,74.171,21.18z"/>
<path fill="#A49934" d="M79.348,24.149c0.825,0,1.35-0.66,1.65-1.561l0.165-0.54l-2.925-7.305h1.275l1.485,4.035
c0.225,0.63,0.48,1.38,0.705,2.055h0.06c0.21-0.66,0.42-1.41,0.615-2.055l1.305-4.035h1.2l-2.745,7.89
c-0.51,1.44-1.26,2.535-2.729,2.535c-0.33,0-0.615-0.06-0.855-0.149l0.24-0.976C78.942,24.089,79.167,24.149,79.348,24.149z"/>
<path fill="#A49934" d="M54.99,34.858h1.885v12.44c0,2.276-0.828,3.726-3.058,3.726c-0.69,0-1.265-0.139-1.656-0.299l0.391-1.426
c0.276,0.092,0.667,0.184,1.058,0.184c1.104,0,1.38-0.828,1.38-2.185V34.858z M54.645,31.341c0-0.736,0.575-1.219,1.311-1.219
c0.713,0,1.288,0.482,1.288,1.219c0,0.713-0.575,1.219-1.288,1.219C55.22,32.56,54.645,32.054,54.645,31.341z"/>
<path fill="#A49934" d="M60.287,34.858h1.563l0.161,2.023h0.069c0.759-1.402,1.909-2.299,3.173-2.299
c0.483,0,0.828,0.068,1.196,0.229l-0.368,1.655c-0.368-0.114-0.621-0.184-1.081-0.184c-0.943,0-2.07,0.69-2.829,2.575v7.175
h-1.885V34.858z"/>
<path fill="#A49934" d="M68.307,34.858h1.908v6.83c0,2.092,0.621,2.989,2.093,2.989c1.149,0,1.932-0.575,2.989-1.886v-7.934h1.909
v11.176h-1.564l-0.161-1.748h-0.069c-1.035,1.219-2.161,2.024-3.679,2.024c-2.368,0-3.426-1.519-3.426-4.369V34.858z"/>
<path fill="#A49934" d="M80.623,29.662h1.885v4.461l-0.046,2.023c1.012-0.896,2.253-1.563,3.495-1.563
c2.897,0,4.438,2.23,4.438,5.68c0,3.817-2.277,6.048-4.829,6.048c-1.035,0-2.208-0.506-3.196-1.38h-0.069l-0.161,1.104h-1.518
V29.662z M85.245,44.724c1.839,0,3.196-1.679,3.196-4.438c0-2.46-0.828-4.116-2.943-4.116c-0.943,0-1.932,0.529-2.99,1.518v5.864
C83.497,44.401,84.509,44.724,85.245,44.724z"/>
<path fill="#A49934" d="M93.13,49.276c1.265,0,2.069-1.012,2.529-2.392l0.253-0.827l-4.484-11.199h1.955l2.276,6.186
c0.345,0.966,0.736,2.116,1.081,3.15h0.092c0.322-1.012,0.644-2.161,0.943-3.15l2-6.186h1.84l-4.208,12.096
c-0.782,2.207-1.932,3.886-4.186,3.886c-0.506,0-0.942-0.092-1.311-0.229l0.368-1.495C92.51,49.185,92.854,49.276,93.13,49.276z"
/>
</g>
<g>
<path fill="#FFFFFF" d="M18.877,8.43c-4.141,0-7.5,3.357-7.5,7.5c0,4.141,3.359,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5
C26.377,11.787,23.02,8.43,18.877,8.43z M14.816,17.296c-0.829,0-1.5-0.671-1.5-1.5s0.671-1.5,1.5-1.5c0.828,0,1.5,0.671,1.5,1.5
S15.645,17.296,14.816,17.296z M18.818,17.296c-0.829,0-1.5-0.671-1.5-1.5s0.671-1.5,1.5-1.5c0.828,0,1.5,0.671,1.5,1.5
S19.646,17.296,18.818,17.296z M22.822,17.296c-0.829,0-1.5-0.671-1.5-1.5s0.671-1.5,1.5-1.5c0.828,0,1.5,0.671,1.5,1.5
S23.65,17.296,22.822,17.296z"/>
</g>
<g>
<g>
<g>
<path fill="#D1D0D0" d="M244.954,66.776c0,0-0.962-0.311-3.161,1.18c-0.921-0.257-1.906-0.383-2.885-0.388
c-0.981,0.005-1.966,0.131-2.882,0.388c-2.203-1.49-3.171-1.18-3.171-1.18c-0.626,1.587-0.229,2.759-0.111,3.05
c-0.737,0.805-1.187,1.831-1.187,3.089c0,4.414,2.69,5.399,5.247,5.691c-0.329,0.288-0.628,0.796-0.731,1.542
c-0.655,0.29-2.323,0.8-3.351-0.957c0,0-0.608-1.107-1.767-1.189c0,0-1.124-0.012-0.077,0.699c0,0,0.754,0.354,1.279,1.685
c0,0,0.675,2.243,3.879,1.544c0.005,0.962,0.016,1.687,0.016,1.962c0,0.156-0.061,0.325-0.19,0.437
c0.971,0.267,1.988,0.422,3.045,0.422c1.055,0,2.073-0.155,3.044-0.42c-0.13-0.113-0.188-0.282-0.188-0.438
c0-0.379,0.015-1.621,0.015-3.162c0-1.073-0.368-1.776-0.782-2.136c2.567-0.283,5.26-1.254,5.26-5.679
c0-1.258-0.449-2.284-1.186-3.089C245.189,69.535,245.586,68.363,244.954,66.776z"/>
</g>
<g>
<g>
<rect x="57.675" y="97.818" fill="#F4F4F4" width="13.258" height="9.406"/>
</g>
<g>
<g>
<g>
<g>
<g>
<path fill="#D1D0D0" d="M63.86,103.027c-0.201,0.143-0.391,0.283-0.57,0.422c-0.188,0.148-0.355,0.308-0.498,0.482
c-0.143,0.176-0.259,0.382-0.342,0.608c-0.086,0.227-0.102,0.416-0.102,0.416c-0.015,0.21-0.029,0.425-0.029,0.476
c0,0.052,0.167,0.096,0.368,0.096h3.028c0.201,0,0.367-0.172,0.367-0.383v-0.456c0-0.21-0.166-0.38-0.367-0.38h-1.229
c-0.201,0-0.336-0.03-0.301-0.064c0,0,0,0,0.037-0.029c0.145-0.122,0.295-0.233,0.449-0.335
c0.159-0.112,0.316-0.22,0.473-0.33c0.169-0.116,0.318-0.252,0.451-0.396c0.138-0.151,0.246-0.323,0.332-0.52
c0.086-0.195,0.129-0.433,0.129-0.701c0-0.263-0.051-0.502-0.146-0.718c-0.098-0.209-0.23-0.394-0.393-0.536
c-0.164-0.144-0.353-0.255-0.568-0.331c-0.206-0.074-0.432-0.114-0.664-0.114c-0.301,0-0.572,0.057-0.81,0.165
c-0.239,0.11-0.44,0.267-0.599,0.464c-0.156,0.195-0.273,0.428-0.352,0.687c-0.074,0.256-0.084,0.447-0.084,0.447
c-0.009,0.212-0.015,0.423-0.013,0.475c0.001,0.052,0.167,0.092,0.37,0.092h0.524c0.202,0,0.366-0.042,0.366-0.095
s0.007-0.201,0.011-0.331c0,0,0,0,0.026-0.118c0.018-0.11,0.055-0.211,0.1-0.301c0.043-0.082,0.1-0.146,0.17-0.194
c0.062-0.046,0.145-0.067,0.245-0.067c0.153,0,0.276,0.048,0.37,0.142c0.094,0.096,0.139,0.226,0.139,0.409
c0,0.114-0.021,0.209-0.068,0.296c-0.057,0.099-0.125,0.189-0.207,0.268"/>
</g>
</g>
</g>
</g>
<g>
<path fill="#D1D0D0" d="M70.292,92.769H58.315c-0.796,0-1.446,0.581-1.446,1.472v12.984v0.898v0.146h0.028
c0.065,0.283,0.301,0.499,0.59,0.499H71.12c0.289,0,0.523-0.216,0.59-0.499h0.027v-0.146v-0.898V94.24
C71.737,93.35,71.228,92.769,70.292,92.769z M70.104,107.225H58.502v-9.406h11.603V107.225z"/>
</g>
</g>
</g>
<g>
<path fill="#D1D0D0" d="M241.995,99.232c-0.609-2.324-2.725-4.039-5.241-4.039c-2.516,0-4.631,1.715-5.24,4.039h-4.26v2.703
h4.244c0.591,2.352,2.72,4.096,5.256,4.096s4.666-1.744,5.256-4.096h4.245v-2.703H241.995z M236.754,103.328
c-1.022,0-1.913-0.562-2.382-1.393c-0.222-0.396-0.35-0.852-0.35-1.338c0-0.498,0.134-0.963,0.367-1.365
c0.471-0.816,1.354-1.365,2.364-1.365s1.893,0.549,2.365,1.365c0.232,0.402,0.365,0.867,0.365,1.365
c0,0.486-0.126,0.941-0.35,1.338C238.667,102.766,237.776,103.328,236.754,103.328z"/>
</g>
<g>
<g>
<path fill="#D1D0D0" d="M72.261,74.291c0.785,0,1.426-0.638,1.426-1.424c0-0.787-0.641-1.426-1.426-1.426h-3.732l0.246-3.15
c0.061-0.785-0.523-1.47-1.312-1.532c-0.783-0.061-1.469,0.525-1.529,1.31l-0.266,3.373h-3.164l0.25-3.15
c0.062-0.785-0.525-1.47-1.311-1.532c-0.785-0.061-1.471,0.525-1.533,1.31l-0.264,3.373H56.11
c-0.789,0-1.426,0.639-1.426,1.426c0,0.786,0.637,1.424,1.426,1.424h3.311l-0.273,3.488h-3.99
c-0.785,0-1.424,0.639-1.424,1.427s0.639,1.425,1.424,1.425h3.766l-0.281,3.587c-0.062,0.785,0.525,1.471,1.309,1.532
c0.039,0.005,0.076,0.005,0.113,0.005c0.736,0,1.361-0.566,1.42-1.313l0.299-3.811h3.164l-0.283,3.587
c-0.061,0.785,0.527,1.471,1.311,1.532c0.037,0.005,0.074,0.005,0.113,0.005c0.736,0,1.357-0.566,1.42-1.313l0.299-3.811h3.502
c0.789,0,1.426-0.637,1.426-1.425s-0.637-1.427-1.426-1.427h-3.279l0.273-3.488H72.261z M65.171,77.779h-3.164l0.273-3.488
h3.162L65.171,77.779z"/>
</g>
</g>
</g>
<g>
<g>
<path fill="#989697" d="M258.248,73.434c1.859,0,2.91,1.335,2.91,3.42c0,0.255-0.016,0.495-0.045,0.675h-4.92
c0.09,1.575,1.035,2.565,2.43,2.565c0.689,0,1.275-0.226,1.814-0.57l0.436,0.81c-0.631,0.405-1.41,0.75-2.4,0.75
c-1.949,0-3.494-1.425-3.494-3.81S256.583,73.434,258.248,73.434z M260.078,76.719c0-1.485-0.66-2.311-1.801-2.311
c-1.02,0-1.949,0.841-2.1,2.311H260.078z"/>
<path fill="#989697" d="M262.949,70.224h1.229v2.91l-0.03,1.319c0.66-0.585,1.471-1.02,2.28-1.02
c1.89,0,2.895,1.455,2.895,3.705c0,2.489-1.485,3.944-3.149,3.944c-0.676,0-1.44-0.33-2.085-0.899h-0.046l-0.104,0.72h-0.989
V70.224z M265.963,80.049c1.201,0,2.086-1.096,2.086-2.896c0-1.604-0.541-2.685-1.92-2.685c-0.615,0-1.26,0.345-1.95,0.99v3.824
C264.824,79.838,265.483,80.049,265.963,80.049z"/>
<path fill="#989697" d="M270.887,78.969c0.57,0.569,1.291,1.095,2.415,1.095c1.17,0,2.101-0.855,2.101-2.19
c0-1.319-0.811-2.1-2.041-2.1c-0.659,0-1.064,0.21-1.635,0.585l-0.66-0.42l0.315-4.604h4.785v1.064h-3.705l-0.255,2.835
c0.45-0.24,0.885-0.39,1.47-0.39c1.636,0,2.97,0.93,2.97,3c0,2.069-1.56,3.239-3.225,3.239c-1.529,0-2.475-0.645-3.135-1.305
L270.887,78.969z"/>
<path fill="#989697" d="M281.617,71.229c-0.27-0.12-0.555-0.18-0.824-0.18c-0.69,0-1.021,0.479-1.021,1.41v1.154h1.545v1.005
h-1.545v6.285h-1.229v-6.285h-0.99v-0.93l0.99-0.075v-1.154c0-1.485,0.674-2.415,2.129-2.415c0.451,0,0.885,0.104,1.215,0.24
L281.617,71.229z"/>
<path fill="#989697" d="M287.338,72.398h-4.77v-1.064h6.165v0.765c-2.265,2.895-2.729,5.07-2.896,8.805h-1.274
C284.729,77.304,285.449,75.023,287.338,72.398z"/>
<path fill="#989697" d="M294.861,72.398h-4.77v-1.064h6.164v0.765c-2.265,2.895-2.73,5.07-2.895,8.805h-1.275
C292.251,77.304,292.971,75.023,294.861,72.398z"/>
<path fill="#989697" d="M297.192,76.089c0-3.21,1.155-4.936,3.075-4.936c1.904,0,3.06,1.726,3.06,4.936s-1.155,4.994-3.06,4.994
C298.348,81.083,297.192,79.299,297.192,76.089z M302.127,76.089c0-2.806-0.75-3.945-1.859-3.945
c-1.125,0-1.875,1.14-1.875,3.945c0,2.805,0.75,4.005,1.875,4.005C301.377,80.094,302.127,78.894,302.127,76.089z"/>
</g>
</g>
</g>
<g>
<path fill="#989697" d="M83.394,72.055h-4.77V70.99h6.165v0.765c-2.265,2.895-2.73,5.07-2.895,8.805h-1.275
C80.784,76.96,81.504,74.68,83.394,72.055z"/>
<path fill="#989697" d="M86.454,78.58c0.57,0.6,1.32,1.14,2.445,1.14c1.155,0,1.98-0.69,1.98-1.755c0-1.14-0.78-1.905-3.06-1.905
v-0.944c2.04,0,2.715-0.78,2.715-1.785c0-0.931-0.63-1.516-1.65-1.516c-0.795,0-1.47,0.405-2.04,0.976l-0.66-0.78
c0.735-0.689,1.62-1.2,2.745-1.2c1.665,0,2.865,0.886,2.865,2.431c0,1.154-0.705,1.89-1.74,2.279v0.061
c1.155,0.27,2.07,1.109,2.07,2.43c0,1.695-1.395,2.729-3.15,2.729c-1.53,0-2.505-0.645-3.15-1.35L86.454,78.58z"/>
<path fill="#989697" d="M93.33,79.824c2.88-2.864,4.5-4.59,4.5-6.135c0-1.095-0.6-1.875-1.815-1.875
c-0.795,0-1.485,0.511-2.04,1.155l-0.705-0.705c0.795-0.87,1.65-1.455,2.895-1.455c1.77,0,2.865,1.125,2.865,2.82
c0,1.8-1.635,3.585-3.9,5.955c0.525-0.045,1.11-0.091,1.605-0.091h2.775v1.065h-6.18V79.824z"/>
<path fill="#989697" d="M106.858,77.92h-1.305v2.64h-1.17v-2.64h-4.305v-0.811l4.095-6.119h1.38v5.939h1.305V77.92z
M104.383,76.93v-2.774c0-0.511,0.045-1.335,0.075-1.846h-0.06c-0.24,0.465-0.51,0.886-0.78,1.351l-2.235,3.27H104.383z"/>
<path fill="#989697" d="M111.343,78.909c0.63,0.511,1.275,0.87,2.145,0.87c0.96,0,1.44-0.51,1.44-1.14
c0-0.75-0.87-1.08-1.665-1.38c-1.035-0.375-2.175-0.87-2.175-2.1c0-1.17,0.93-2.07,2.505-2.07c0.915,0,1.71,0.375,2.265,0.825
l-0.585,0.779c-0.495-0.375-1.02-0.645-1.665-0.645c-0.915,0-1.335,0.495-1.335,1.05c0,0.675,0.795,0.945,1.62,1.26
c1.05,0.391,2.22,0.825,2.22,2.205c0,1.186-0.945,2.175-2.67,2.175c-1.035,0-2.025-0.435-2.715-1.005L111.343,78.909z"/>
<path fill="#989697" d="M118.153,74.274h-1.08v-0.93l1.14-0.075l0.15-2.04h1.035v2.04h1.965v1.005h-1.965v4.05
c0,0.9,0.285,1.41,1.125,1.41c0.255,0,0.585-0.104,0.825-0.194l0.24,0.93c-0.405,0.135-0.9,0.27-1.35,0.27
c-1.56,0-2.085-0.989-2.085-2.43V74.274z"/>
<path fill="#989697" d="M127.114,75.939c0-0.93-0.315-1.83-1.5-1.83c-0.855,0-1.605,0.391-2.175,0.78l-0.495-0.854
c0.675-0.436,1.695-0.945,2.865-0.945c1.785,0,2.535,1.185,2.535,3v4.47h-1.02l-0.105-0.87h-0.03
c-0.705,0.57-1.515,1.05-2.415,1.05c-1.229,0-2.145-0.765-2.145-2.069C122.629,77.08,124.009,76.285,127.114,75.939z
M125.119,79.75c0.705,0,1.29-0.346,1.995-0.976V76.75c-2.445,0.3-3.27,0.899-3.27,1.83
C123.844,79.404,124.398,79.75,125.119,79.75z"/>
<path fill="#989697" d="M130.531,73.27h1.02l0.105,1.32h0.045c0.495-0.915,1.245-1.5,2.07-1.5c0.315,0,0.54,0.045,0.78,0.15
l-0.24,1.079c-0.24-0.074-0.405-0.119-0.705-0.119c-0.615,0-1.35,0.449-1.845,1.68v4.68h-1.23V73.27z"/>
<path fill="#989697" d="M136.457,74.274h-1.08v-0.93l1.14-0.075l0.15-2.04h1.035v2.04h1.965v1.005h-1.965v4.05
c0,0.9,0.285,1.41,1.125,1.41c0.255,0,0.585-0.104,0.825-0.194l0.24,0.93c-0.405,0.135-0.9,0.27-1.35,0.27
c-1.56,0-2.085-0.989-2.085-2.43V74.274z"/>
<path fill="#989697" d="M143.804,73.09c1.86,0,2.91,1.335,2.91,3.42c0,0.255-0.015,0.495-0.045,0.675h-4.92
c0.09,1.575,1.035,2.565,2.43,2.565c0.69,0,1.275-0.226,1.815-0.57l0.435,0.81c-0.63,0.405-1.41,0.75-2.4,0.75
c-1.95,0-3.495-1.425-3.495-3.81S142.139,73.09,143.804,73.09z M145.633,76.375c0-1.485-0.66-2.311-1.8-2.311
c-1.02,0-1.95,0.841-2.1,2.311H145.633z"/>
<path fill="#989697" d="M151.212,73.09c0.84,0,1.395,0.315,2.04,0.84l-0.06-1.245V69.88h1.245v10.68h-1.02l-0.105-0.854h-0.045
c-0.57,0.555-1.35,1.034-2.205,1.034c-1.83,0-3.015-1.38-3.015-3.81C148.047,74.56,149.547,73.09,151.212,73.09z M151.332,79.705
c0.675,0,1.26-0.33,1.86-1.006v-3.81c-0.615-0.555-1.17-0.765-1.77-0.765c-1.17,0-2.1,1.125-2.1,2.79
C149.322,78.654,150.057,79.705,151.332,79.705z"/>
</g>
<g>
<path fill="#989697" d="M83.727,97.452c0.96,0,1.635,0.405,2.13,0.87l-0.615,0.795c-0.435-0.375-0.885-0.646-1.47-0.646
c-1.32,0-2.28,1.141-2.28,2.82c0,1.665,0.915,2.79,2.25,2.79c0.69,0,1.275-0.345,1.71-0.735l0.555,0.811
c-0.66,0.585-1.5,0.944-2.37,0.944c-1.935,0-3.42-1.395-3.42-3.81C80.217,98.847,81.852,97.452,83.727,97.452z"/>
<path fill="#989697" d="M87.378,97.632h1.245v4.455c0,1.365,0.405,1.95,1.365,1.95c0.75,0,1.26-0.375,1.95-1.23v-5.175h1.245v7.29
h-1.02l-0.105-1.14h-0.045c-0.675,0.795-1.41,1.319-2.4,1.319c-1.545,0-2.235-0.989-2.235-2.85V97.632z"/>
<path fill="#989697" d="M95.454,97.632h1.02l0.105,1.32h0.045c0.495-0.915,1.245-1.5,2.07-1.5c0.315,0,0.54,0.045,0.78,0.15
l-0.24,1.079c-0.24-0.074-0.405-0.119-0.705-0.119c-0.615,0-1.35,0.449-1.845,1.68v4.68h-1.23V97.632z"/>
<path fill="#989697" d="M100.734,97.632h1.02l0.105,1.32h0.045c0.495-0.915,1.245-1.5,2.07-1.5c0.315,0,0.54,0.045,0.78,0.15
l-0.24,1.079c-0.24-0.074-0.405-0.119-0.705-0.119c-0.615,0-1.35,0.449-1.845,1.68v4.68h-1.23V97.632z"/>
<path fill="#989697" d="M108.571,97.452c1.86,0,2.91,1.335,2.91,3.42c0,0.255-0.015,0.495-0.045,0.675h-4.92
c0.09,1.575,1.035,2.565,2.43,2.565c0.69,0,1.275-0.226,1.815-0.57l0.435,0.81c-0.63,0.405-1.41,0.75-2.4,0.75
c-1.95,0-3.495-1.425-3.495-3.81S106.906,97.452,108.571,97.452z M110.401,100.737c0-1.485-0.66-2.311-1.8-2.311
c-1.02,0-1.95,0.841-2.1,2.311H110.401z"/>
<path fill="#989697" d="M113.272,97.632h1.02l0.105,1.05h0.045c0.69-0.689,1.44-1.229,2.445-1.229c1.53,0,2.22,0.99,2.22,2.85
v4.62h-1.23v-4.455c0-1.364-0.42-1.949-1.38-1.949c-0.75,0-1.26,0.39-1.995,1.125v5.279h-1.23V97.632z"/>
<path fill="#989697" d="M121.505,98.637h-1.08v-0.93l1.14-0.075l0.15-2.04h1.035v2.04h1.965v1.005h-1.965v4.05
c0,0.9,0.285,1.41,1.125,1.41c0.255,0,0.585-0.104,0.825-0.194l0.24,0.93c-0.405,0.135-0.9,0.27-1.35,0.27
c-1.56,0-2.085-0.989-2.085-2.43V98.637z"/>
<path fill="#989697" d="M126.236,94.242h1.23v9.3c0,0.39,0.165,0.54,0.345,0.54c0.075,0,0.135,0,0.27-0.03l0.165,0.93
c-0.165,0.075-0.375,0.12-0.705,0.12c-0.93,0-1.305-0.585-1.305-1.649V94.242z"/>
<path fill="#989697" d="M130.007,107.037c0.825,0,1.35-0.66,1.65-1.561l0.165-0.54l-2.925-7.305h1.275l1.485,4.035
c0.225,0.63,0.48,1.38,0.705,2.055h0.06c0.21-0.66,0.42-1.41,0.615-2.055l1.305-4.035h1.2l-2.745,7.89
c-0.51,1.44-1.26,2.535-2.729,2.535c-0.33,0-0.615-0.06-0.855-0.149l0.24-0.976C129.602,106.977,129.827,107.037,130.007,107.037z
"/>
<path fill="#989697" d="M139.982,97.632h1.02l0.105,1.32h0.045c0.495-0.915,1.245-1.5,2.07-1.5c0.315,0,0.54,0.045,0.78,0.15
l-0.24,1.079c-0.24-0.074-0.405-0.119-0.705-0.119c-0.615,0-1.35,0.449-1.845,1.68v4.68h-1.23V97.632z"/>
<path fill="#989697" d="M145.247,97.632h1.245v4.455c0,1.365,0.405,1.95,1.365,1.95c0.75,0,1.26-0.375,1.95-1.23v-5.175h1.245
v7.29h-1.02l-0.105-1.14h-0.045c-0.675,0.795-1.41,1.319-2.4,1.319c-1.545,0-2.235-0.989-2.235-2.85V97.632z"/>
<path fill="#989697" d="M153.318,97.632h1.02l0.105,1.05h0.045c0.69-0.689,1.44-1.229,2.445-1.229c1.53,0,2.22,0.99,2.22,2.85
v4.62h-1.23v-4.455c0-1.364-0.42-1.949-1.38-1.949c-0.75,0-1.26,0.39-1.995,1.125v5.279h-1.23V97.632z"/>
<path fill="#989697" d="M161.369,97.632h1.02l0.105,1.05h0.045c0.69-0.689,1.44-1.229,2.445-1.229c1.53,0,2.22,0.99,2.22,2.85
v4.62h-1.23v-4.455c0-1.364-0.42-1.949-1.38-1.949c-0.75,0-1.26,0.39-1.995,1.125v5.279h-1.23V97.632z"/>
<path fill="#989697" d="M169.166,95.337c0-0.479,0.375-0.795,0.855-0.795s0.855,0.315,0.855,0.795
c0,0.466-0.375,0.795-0.855,0.795S169.166,95.803,169.166,95.337z M169.391,97.632h1.23v7.29h-1.23V97.632z"/>
<path fill="#989697" d="M172.872,97.632h1.02l0.105,1.05h0.045c0.69-0.689,1.44-1.229,2.445-1.229c1.53,0,2.22,0.99,2.22,2.85
v4.62h-1.23v-4.455c0-1.364-0.42-1.949-1.38-1.949c-0.75,0-1.26,0.39-1.995,1.125v5.279h-1.23V97.632z"/>
<path fill="#989697" d="M181.416,104.667v-0.061c-0.36-0.225-0.645-0.614-0.645-1.185c0-0.615,0.42-1.095,0.795-1.35v-0.061
c-0.48-0.39-0.945-1.095-0.945-1.965c0-1.59,1.26-2.595,2.745-2.595c0.405,0,0.765,0.075,1.035,0.18h2.535v0.945h-1.5
c0.345,0.33,0.6,0.885,0.6,1.5c0,1.56-1.185,2.535-2.67,2.535c-0.36,0-0.765-0.091-1.095-0.255
c-0.255,0.225-0.465,0.465-0.465,0.869c0,0.466,0.3,0.795,1.29,0.795h1.41c1.695,0,2.55,0.525,2.55,1.74
c0,1.35-1.425,2.52-3.69,2.52c-1.785,0-3.015-0.704-3.015-1.965C180.351,105.702,180.756,105.117,181.416,104.667z
M183.546,107.427c1.395,0,2.31-0.72,2.31-1.485c0-0.675-0.525-0.899-1.47-0.899h-1.26c-0.285,0-0.63-0.03-0.945-0.12
c-0.525,0.375-0.75,0.81-0.75,1.229C181.431,106.932,182.226,107.427,183.546,107.427z M184.911,100.047
c0-1.064-0.69-1.694-1.545-1.694s-1.545,0.63-1.545,1.694c0,1.065,0.705,1.74,1.545,1.74S184.911,101.112,184.911,100.047z"/>
</g>
<g>
<path fill="#989697" d="M257.155,97.585h1.021l0.104,1.051h0.045c0.63-0.689,1.396-1.23,2.265-1.23c1.11,0,1.71,0.525,2.01,1.395
c0.766-0.824,1.516-1.395,2.4-1.395c1.5,0,2.22,0.99,2.22,2.85v4.621h-1.229v-4.455c0-1.365-0.436-1.949-1.35-1.949
c-0.57,0-1.156,0.375-1.83,1.125v5.279h-1.23v-4.455c0-1.365-0.436-1.949-1.365-1.949c-0.539,0-1.154,0.375-1.83,1.125v5.279
h-1.229V97.585z"/>
<path fill="#989697" d="M273.49,100.255c0-0.93-0.314-1.83-1.5-1.83c-0.855,0-1.605,0.391-2.176,0.781l-0.494-0.855
c0.675-0.436,1.695-0.945,2.865-0.945c1.785,0,2.535,1.186,2.535,3v4.471H273.7l-0.104-0.871h-0.031
c-0.705,0.57-1.514,1.051-2.414,1.051c-1.23,0-2.145-0.766-2.145-2.07C269.006,101.396,270.385,100.601,273.49,100.255z
M271.495,104.065c0.705,0,1.29-0.346,1.995-0.975v-2.025c-2.445,0.301-3.27,0.9-3.27,1.83
C270.221,103.72,270.775,104.065,271.495,104.065z"/>
<path fill="#989697" d="M276.766,103.226c0.631,0.51,1.275,0.869,2.145,0.869c0.961,0,1.44-0.51,1.44-1.139
c0-0.75-0.87-1.08-1.665-1.381c-1.035-0.375-2.175-0.869-2.175-2.1c0-1.17,0.931-2.07,2.505-2.07c0.915,0,1.71,0.375,2.266,0.826
l-0.586,0.779c-0.494-0.375-1.02-0.645-1.664-0.645c-0.916,0-1.336,0.494-1.336,1.049c0,0.676,0.795,0.945,1.621,1.26
c1.049,0.391,2.219,0.826,2.219,2.205c0,1.186-0.944,2.176-2.67,2.176c-1.034,0-2.024-0.436-2.715-1.006L276.766,103.226z"/>
<path fill="#989697" d="M283.576,98.591h-1.08v-0.93l1.14-0.076l0.149-2.039h1.035v2.039h1.965v1.006h-1.965v4.049
c0,0.9,0.285,1.41,1.125,1.41c0.256,0,0.586-0.104,0.825-0.193l0.24,0.93c-0.405,0.135-0.9,0.27-1.351,0.27
c-1.56,0-2.084-0.99-2.084-2.43V98.591z"/>
<path fill="#989697" d="M290.923,97.405c1.86,0,2.909,1.336,2.909,3.42c0,0.256-0.015,0.496-0.045,0.676h-4.92
c0.091,1.574,1.035,2.564,2.431,2.564c0.69,0,1.274-0.225,1.815-0.57l0.435,0.811c-0.63,0.404-1.41,0.75-2.399,0.75
c-1.951,0-3.496-1.426-3.496-3.811S289.258,97.405,290.923,97.405z M292.752,100.69c0-1.484-0.659-2.311-1.799-2.311
c-1.021,0-1.95,0.842-2.1,2.311H292.752z"/>
<path fill="#989697" d="M295.624,97.585h1.021l0.104,1.32h0.045c0.495-0.914,1.245-1.5,2.069-1.5c0.315,0,0.541,0.045,0.781,0.15
l-0.24,1.08c-0.24-0.074-0.405-0.119-0.705-0.119c-0.615,0-1.35,0.449-1.846,1.68v4.68h-1.229V97.585z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="15px" height="12.191px" viewBox="0 0 15 12.191" enable-background="new 0 0 15 12.191" xml:space="preserve">
<path fill="#939598" d="M15,1.443c-0.553,0.245-1.146,0.412-1.768,0.484c0.635-0.381,1.123-0.982,1.352-1.701
c-0.594,0.352-1.252,0.607-1.951,0.746C12.068,0.375,11.27,0,10.383,0C8.686,0,7.307,1.378,7.307,3.078
c0,0.242,0.027,0.477,0.082,0.701C4.828,3.651,2.561,2.426,1.043,0.564C0.779,1.02,0.625,1.547,0.625,2.111
c0,1.067,0.545,2.011,1.371,2.562C1.49,4.656,1.018,4.518,0.602,4.288c0,0.013,0,0.026,0,0.039c0,1.49,1.061,2.733,2.467,3.018
C2.812,7.414,2.541,7.452,2.262,7.452c-0.201,0-0.395-0.019-0.582-0.055c0.393,1.222,1.529,2.111,2.875,2.136
c-1.053,0.826-2.379,1.318-3.822,1.318c-0.246,0-0.492-0.016-0.732-0.044c1.361,0.874,2.98,1.384,4.717,1.384
c5.662,0,8.756-4.689,8.756-8.756c0-0.133-0.004-0.267-0.01-0.397C14.064,2.602,14.586,2.062,15,1.443z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,19 @@
`import { test, moduleForComponent } from 'ember-qunit'`
server = null
moduleForComponent 'travis-status', 'TravisStatusComponent', {}
test 'adds incident class to .status-circle', ->
expect 3
# creates the component instance
component = @subject()
component.getStatus = ->
new Ember.RSVP.Promise (resolve, reject) ->
resolve({ status: { indicator: 'major' } })
ok !component.get('status'), 'status is initially not set'
@append()
equal component.get('status'), 'major', 'status is updated from the API'
ok component.$('.status-circle').hasClass('major'), 'status class is set on .status-circle'

View File

@ -169,7 +169,7 @@ class Travis::Web::App
end
def title
default_title = "Travis CI - Free Hosted Continuous Integration Platform for the Open Source Community"
default_title = "Travis CI - Test and deploy your code in confidence"
ENV['SITE_TITLE'] || default_title
end