font-awesome-more-sass-rails 2.1 → 3.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/Gemfile +1 -1
- data/README.md +15 -16
- data/app/assets/fonts/fontawesome-corp-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-corp-webfont.svg +179 -0
- data/app/assets/fonts/fontawesome-corp-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-corp-webfont.woff +0 -0
- data/app/assets/fonts/fontawesome-ext-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-ext-webfont.svg +233 -0
- data/app/assets/fonts/fontawesome-ext-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-ext-webfont.woff +0 -0
- data/app/assets/fonts/fontawesome-social-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-social-webfont.svg +371 -0
- data/app/assets/fonts/fontawesome-social-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-social-webfont.woff +0 -0
- data/app/assets/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fontawesome-webfont.svg +284 -0
- data/app/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/stylesheets/font-awesome-more-ie7.min.css +22 -0
- data/app/assets/stylesheets/font-awesome-more.scss +651 -0
- data/font-awesome-more-sass-rails.gemspec +1 -0
- data/lib/font-awesome-more-sass-rails/version.rb +1 -1
- metadata +27 -18
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.svg +0 -525
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/stylesheets/_font-awesome-more-ie7.css +0 -288
- data/vendor/assets/stylesheets/_font-awesome-more.scss +0 -378
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
OTdiMDg3MTI1ZjRjN2UxZjZmZDgyZjgxNWVjNjY1MDU1ZDVmODAxMQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
MjQ2MzBlNmRmYzRlNTEzNGYwNjRkNWFhZGY3MDQyMzkxOTc2MGI0NQ==
|
7
|
+
!binary "U0hBNTEy":
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
N2M2ZTM4ODc4ZWZhN2NiNmRiOWQ0NWYwMjMzNWNjOWI3MjgxZjM3ZWM3NDY4
|
10
|
+
MjViNTMxOWZiNDk5OGMxODA5M2M1NDg4Y2YzY2U5YjNkODVkYjE1NDMzOWI2
|
11
|
+
YzUyZTA5ZWViNDA1YzQ4MTczZDY5NzljNzJmOGE3MmYzMWE4OWY=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NjdjN2JhMjMyMDljNTkxMGQyMTI0NTc4OGM1MWQ1ZjJiZTIyMjVjZDJhMTcx
|
14
|
+
M2RiNjhjNzJlYzk4OWVkNzI1YmRmZDM0OTk5NDY1ZWJlZTY4MjQyYjhlZTM0
|
15
|
+
N2E0NTU0MmMwMzM3ZjI2Yzk0MTUyNTNlYjIyMTU5ODJmYzc0ZDE=
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,45 +1,44 @@
|
|
1
|
-
# Font Awesome More 2
|
1
|
+
# Font Awesome More 3.0.2 + SASS + Rails
|
2
2
|
|
3
3
|
With SCSS and fonts from [Font Awesome More](http://gregoryloucas.github.com/Font-Awesome-More), `font-awesome-more-sass-rails` is a gem to integrate Font Awesome More to your Rails application.
|
4
4
|
|
5
5
|
This gem was built over `font-awesome-sass-rails`, a [gem](https://github.com/littlebtc/font-awesome-sass-rails) by [Hsiao-Ting Yu](https://github.com/littlebtc).
|
6
6
|
|
7
|
-
It supports Rails 3.1.1 and
|
7
|
+
It supports Rails 3.1.1 and newer.
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
11
|
-
Add `font-awesome-more-sass-rails` gem to your `
|
11
|
+
Add `font-awesome-more-sass-rails` gem to your `Gemfile`:
|
12
12
|
|
13
|
-
|
14
|
-
gem 'sass-rails', " ~> x.x.x"
|
15
|
-
gem 'coffee-rails', "~> x.x.x"
|
16
|
-
gem 'uglifier'
|
17
|
-
gem 'font-awesome-more-sass-rails'
|
18
|
-
end
|
13
|
+
gem 'font-awesome-more-sass-rails'
|
19
14
|
|
20
|
-
Then
|
15
|
+
Then add the stylesheet to your Rails assets. The simplest way to apply Font Awesome More site-wide is to add a `require` statement in `app/assets/stylesheets/application.css`:
|
21
16
|
|
22
|
-
|
17
|
+
*= require font-awesome-more
|
23
18
|
|
24
19
|
That's it!
|
25
20
|
|
26
|
-
|
21
|
+
If you want to manage where the stylesheet will be used or just prefer SCSS, you can use `@import` in a SCSS file (e.g. a new file named `libs.css.scss`) to import the stylesheet:
|
27
22
|
|
28
|
-
@import 'bootstrap';
|
29
23
|
@import 'font-awesome-more';
|
30
24
|
|
25
|
+
(By default Rails will import all SCSS files in `app/assets/stylesheets`, you can change this behavior by modifying `application.css`.)
|
26
|
+
|
27
|
+
You can also use it with the SASS-converted Bootstrap gem, like [bootstrap-sass](https://github.com/thomas-mcdonald/bootstrap-sass) or [anjlab-bootstrap-rails](https://github.com/anjlab/bootstrap-rails). Just require/import font-awesome-more right after bootstrap.
|
28
|
+
|
31
29
|
### IE7 Support
|
32
30
|
|
33
|
-
This gem also includes `font-awesome-more-ie7`, the stylesheet for IE7 support bundled with Font Awesome
|
31
|
+
This gem also includes `font-awesome-more-ie7`, the stylesheet for IE7 support bundled with Font Awesome 3.0.
|
34
32
|
|
35
33
|
Use this stylesheet with [conditional comment](http://en.wikipedia.org/wiki/Conditional_comment) may be the best way to support IE7. But it can be difficult when it comes to assets pipeline. See this article on StackOverflow for a workaround: [Using Rails 3.1 assets pipeline to conditionally use certain css](http://stackoverflow.com/questions/7134034/using-rails-3-1-assets-pipeline-to-conditionally-use-certain-css)
|
36
34
|
|
37
35
|
When you try this workaround, in your `application-ie.css`, append:
|
38
36
|
|
39
|
-
|
37
|
+
*= require font-awesome-more-ie7.min
|
40
38
|
|
41
39
|
## License
|
42
40
|
|
43
|
-
The font
|
41
|
+
The font from [Font Awesome](http://fortawesome.github.com/Font-Awesome) is under [SIL Open Font License](http://scripts.sil.org/OFL).
|
42
|
+
The SASS & CSS from [Font Awesome](http://fortawesome.github.com/Font-Awesome) is under the [MIT License](http://opensource.org/licenses/mit-license.html).
|
44
43
|
|
45
44
|
Others are under MIT license.
|
Binary file
|
@@ -0,0 +1,179 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<metadata>
|
5
|
+
This is a custom SVG font generated by IcoMoon.
|
6
|
+
<iconset grid="16"></iconset>
|
7
|
+
</metadata>
|
8
|
+
<defs>
|
9
|
+
<font id="Font-Awesome-More" horiz-adv-x="1792" >
|
10
|
+
<font-face units-per-em="1792" ascent="1541" descent="-251" />
|
11
|
+
<missing-glyph horiz-adv-x="1792" />
|
12
|
+
<glyph unicode="" d="M 1536.00,1125.00l0.00-960.00 c0.00-79.328-28.224-147.20-84.64-203.36C 1395.20-94.776, 1327.328-123.00, 1248.00-123.00L 288.00-123.00 c-79.328,0.00-147.168,28.224-203.52,84.64
|
13
|
+
C 28.128,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.128,147.136, 84.48,203.552C 140.832,1384.872, 208.672,1413.00, 288.00,1413.00l 960.00,0.00 c 79.328,0.00, 147.20-28.128, 203.36-84.448
|
14
|
+
C 1507.776,1272.136, 1536.00,1204.328, 1536.00,1125.00z M 128.00,320.168c0.00-3.424, 2.336-8.096, 6.976-11.52C 306.048,156.552, 525.984,69.00, 768.00,69.00
|
15
|
+
c 157.088,0.00, 330.464,44.928, 464.32,123.296c 22.08,12.672, 39.52,24.192, 53.504,34.528c 22.112,15.008, 2.336,41.472-20.928,32.288
|
16
|
+
c-5.856-3.424-24.448-10.368-32.576-13.856c-147.808-56.416-297.92-84.096-450.336-84.096c-228.096,0.00-438.688,55.328-633.024,167.04
|
17
|
+
C 140.80,333.96, 133.856,332.808, 130.336,327.048C 129.184,324.744, 128.00,322.44, 128.00,320.168z M 685.376,445.704c 77.984,0.00, 138.464,5.76, 225.76,99.072
|
18
|
+
c 3.488-3.456, 8.16-11.52, 16.32-21.92c 8.128-11.488, 13.952-19.584, 17.44-23.04c 6.976-8.032, 23.296-26.496, 45.376-44.896
|
19
|
+
c 12.80-5.792, 24.448-4.64, 33.76,2.272c 5.824,4.608, 40.704,34.592, 104.704,89.856c 5.824,4.672, 9.312,10.368, 9.312,16.128
|
20
|
+
c0.00,5.792-2.336,11.552-7.008,18.464c-12.768,16.128-20.896,27.616-26.72,35.68c-10.496,13.824-25.632,49.536-25.632,89.888l0.00,211.936
|
21
|
+
c0.00,1.152,0.00,12.672,0.00,32.256c0.00,19.584,0.00,31.136,0.00,34.592c0.00,5.76-1.152,51.808-4.672,62.176c-1.152,4.64-3.456,13.856-7.008,26.496
|
22
|
+
c-3.456,12.672-6.976,23.04-10.432,29.984c-8.16,13.792-22.112,33.376-37.248,48.384C 969.312,1197.928, 900.672,1221.00, 812.224,1221.00l-29.088,0.00
|
23
|
+
c-138.464-8.064-251.328-70.272-278.08-207.36c-1.184-3.456-1.184-5.76-1.184-8.032c0.00-10.40, 7.008-17.312, 19.808-20.736l 133.824-16.128
|
24
|
+
c 12.768,2.272, 19.744,11.488, 23.296,26.464c 10.432,49.568, 51.168,77.184, 102.368,81.792l 9.312,0.00 c 69.824,0.00, 93.088-35.68, 93.088-133.632l0.00-19.552
|
25
|
+
c-94.24-8.064-173.376-11.488-257.152-47.232c-91.936-38.016-147.808-115.264-147.808-221.216C 480.576,521.736, 565.568,445.704, 685.376,445.704z
|
26
|
+
M 885.536,815.464l0.00-28.736 c0.00-24.224,0.00-42.624,0.00-52.992c-1.184-21.92-9.312-61.056-26.752-89.888c-17.472-33.44-43.104-54.144-75.648-62.176
|
27
|
+
c-1.152,0.00-4.672,0.00-8.128-1.184c-4.672-1.12-8.16-1.12-10.496-1.12c-51.20,0.00-83.744,39.20-83.744,99.072
|
28
|
+
C 680.736,810.92, 795.936,815.464, 885.536,815.464z M 1169.44,299.40c 1.184-1.152, 4.672-2.272, 9.344-2.272c 32.576,4.608, 73.28,9.184, 100.064,9.184
|
29
|
+
c 36.064,0.00, 56.992-4.608, 65.152-13.856c 3.488-3.424, 4.672-10.336, 4.672-18.40c0.00-26.496-13.984-72.608-43.072-139.36
|
30
|
+
c-2.336-5.76-1.184-10.368, 3.488-12.672c 1.152-1.152, 3.456-1.152, 4.64-1.152c 3.488,0.00, 7.008,1.152, 10.496,4.64
|
31
|
+
C 1376.576,170.376, 1408.00,254.472, 1408.00,308.616l0.00,8.096 c0.00,9.184-1.184,16.096-4.672,20.704c-7.008,8.032-27.936,13.792-62.848,17.248
|
32
|
+
c-6.976,1.152-13.984,2.304-22.112,1.152c-55.84-1.152-103.552-12.672-141.984-39.136c-3.456-3.488-5.792-5.824-6.976-9.248
|
33
|
+
C 1168.288,304.008, 1165.984,302.888, 1169.44,299.40z" horiz-adv-x="1536" />
|
34
|
+
<glyph unicode="" d="M 3.04,221.064c 4.544,7.68, 13.60,9.216, 24.192,1.536c 252.64-148.992, 526.432-222.72, 822.912-222.72c 198.144,0.00, 393.28,36.864, 585.44,112.128
|
35
|
+
c 10.56,4.64, 34.752,13.856, 42.336,18.432c 30.24,12.288, 55.968-23.04, 27.232-43.008c-18.144-13.856-40.832-29.184-69.568-46.08
|
36
|
+
C 1261.60-63.096, 1036.224-123.00, 832.00-123.00c-314.656,0.00-600.544,116.736-822.912,319.488C 3.04,201.096,0.00,207.24,0.00,211.848
|
37
|
+
C0.00,214.92, 1.536,217.992, 3.04,221.064z M 458.336,658.824c0.00,141.312, 72.64,244.256, 192.128,294.944c 108.928,47.584, 211.776,52.224, 334.304,62.976l0.00,26.08
|
38
|
+
c0.00,130.56-30.24,178.176-121.024,178.176l-12.096,0.00 c-66.56-6.144-119.488-43.008-133.088-109.056c-4.576-19.968-13.632-32.256-30.24-35.328l-173.984,21.504
|
39
|
+
c-16.672,4.608-25.76,13.824-25.76,27.648c0.00,3.072,0.00,6.112, 1.536,10.752C 524.896,1319.304, 671.648,1402.248, 851.648,1413.00l 37.856,0.00
|
40
|
+
c 114.944,0.00, 204.192-30.72, 269.248-90.624c 19.648-19.968, 37.824-46.08, 48.416-64.512c 4.544-9.216, 9.088-23.072, 13.60-39.936
|
41
|
+
c 4.576-16.896, 7.584-29.184, 9.088-35.328c 4.544-13.824, 6.048-75.264, 6.048-82.944c0.00-4.608,0.00-19.968,0.00-46.08c0.00-26.08,0.00-41.472,0.00-43.008l0.00-282.624
|
42
|
+
c0.00-53.76, 19.648-101.376, 33.28-119.808c 7.552-10.752, 18.144-26.08, 34.752-47.584c 6.048-9.216, 9.088-16.896, 9.088-24.608s-4.544-15.328-12.096-21.504
|
43
|
+
c-83.20-73.728-128.608-113.664-136.16-119.808c-12.096-9.216-27.232-10.752-43.84-3.072c-28.736,24.576-49.952,49.152-59.008,59.904
|
44
|
+
c-4.544,4.608-12.096,15.328-22.688,30.72c-10.592,13.824-16.672,24.576-21.184,29.184c-113.472-124.448-192.128-132.096-293.472-132.096
|
45
|
+
C 568.80,379.272, 458.336,480.648, 458.336,658.824z M 718.56,689.544c0.00-79.84, 42.336-132.096, 108.896-132.096c 3.04,0.00, 7.552,0.00, 13.632,1.536
|
46
|
+
c 4.512,1.568, 9.056,1.568, 10.56,1.568c 42.336,10.752, 75.648,38.368, 98.336,82.944c 22.688,38.40, 33.248,90.624, 34.784,119.808c0.00,13.824,0.00,38.40,0.00,70.656
|
47
|
+
l0.00,38.368 C 868.32,872.328, 718.56,866.184, 718.56,689.544z M 1353.888,194.952c 1.536,4.64, 4.576,7.68, 9.056,12.32
|
48
|
+
c 49.952,35.328, 111.968,50.688, 184.576,52.224c 10.592,1.536, 19.68,0.00, 28.736-1.536c 45.376-4.64, 72.608-12.32, 81.696-23.072
|
49
|
+
C 1662.464,228.744, 1664.00,219.528, 1664.00,207.24l0.00-10.752 c0.00-72.224-40.864-184.352-108.896-244.256c-4.576-4.608-9.088-6.112-13.664-6.112
|
50
|
+
c-1.504,0.00-4.512,0.00-6.016,1.536c-6.048,3.072-7.552,9.216-4.544,16.896c 37.824,89.056, 55.968,150.528, 55.968,185.856
|
51
|
+
c0.00,10.752-1.504,19.968-6.048,24.576c-10.592,12.32-37.824,18.432-84.672,18.432c-34.816,0.00-87.744-6.112-130.08-12.288
|
52
|
+
c-6.048,0.00-10.592,1.536-12.128,3.072C 1349.344,188.808, 1352.384,190.344, 1353.888,194.952z" horiz-adv-x="1664" />
|
53
|
+
<glyph unicode="" d="M 1426.272,981.00c-60.32,0.00-109.728-50.432-109.728-112.00l0.00-448.00 c0.00-61.536, 49.408-112.00, 109.728-112.00S 1536.00,359.464, 1536.00,421.00L 1536.00,869.00
|
54
|
+
C 1536.00,930.568, 1486.592,981.00, 1426.272,981.00z M 109.728,981.00C 49.376,981.00,0.00,930.568,0.00,869.00l0.00-448.00 c0.00-61.536, 49.376-112.00, 109.728-112.00
|
55
|
+
c 60.32,0.00, 109.728,50.464, 109.728,112.00L 219.456,869.00 C 219.424,930.568, 170.016,981.00, 109.728,981.00z M 274.272,253.00c0.00-92.768, 73.696-168.00, 164.576-168.00l 54.88,0.00 l0.00-224.00
|
56
|
+
c0.00-61.536, 49.408-112.00, 109.728-112.00s 109.728,50.464, 109.728,112.00l0.00,224.00 l 109.696,0.00 l0.00-224.00 c0.00-61.536, 49.408-112.00, 109.728-112.00s 109.728,50.464, 109.728,112.00l0.00,224.00 l 54.88,0.00
|
57
|
+
c 90.88,0.00, 164.576,75.232, 164.576,168.00L 1261.792,869.00 L 274.272,869.00 L 274.272,253.00 z M 971.392,1384.36l 69.312,136.192c 3.456,6.784, 0.992,15.296-5.728,18.848
|
58
|
+
c-6.752,3.552-15.104,0.864-18.56-5.984l-70.464-138.24C 890.816,1417.00, 830.848,1429.00, 768.00,1429.00s-122.816-12.00-177.984-33.792l-70.464,138.24
|
59
|
+
c-3.456,6.848-11.808,9.504-18.56,5.984c-6.72-3.552-9.216-12.064-5.728-18.848l 69.312-136.192C 409.376,1312.552, 296.80,1161.128, 277.376,981.00
|
60
|
+
l 981.216,0.00 C 1239.20,1161.128, 1126.624,1312.552, 971.392,1384.36z M 548.576,1067.912c-44.00,0.00-79.424,36.16-79.424,81.088s 35.424,81.088, 79.424,81.088
|
61
|
+
c 44.032,0.00, 79.424-36.16, 79.424-81.088S 592.608,1067.912, 548.576,1067.912z M 987.424,1067.912c-44.032,0.00-79.424,36.16-79.424,81.088
|
62
|
+
s 35.392,81.088, 79.424,81.088c 44.00,0.00, 79.424-36.16, 79.424-81.088S 1031.424,1067.912, 987.424,1067.912z" horiz-adv-x="1536" />
|
63
|
+
<glyph unicode="" d="M 1120.00,1041.32l0.00-603.104 c0.00-36.096-25.536-65.152-60.00-80.256c-34.496-15.616-70.016-23.104-100.032-23.104c-29.984,0.00-65.472,7.456-99.968,23.104
|
64
|
+
C 825.472,373.064, 800.00,402.12, 800.00,438.216c0.00,36.064, 25.472,65.152, 60.00,80.768c 34.496,15.072, 70.016,22.656, 99.968,22.656
|
65
|
+
c 35.04,0.00, 67.008-7.04, 96.032-20.992l0.00,289.12 l-384.00-127.616l0.00-381.824 c0.00-36.064-25.472-65.152-60.00-80.224C 577.504,204.52, 542.016,197.00, 512.032,197.00
|
66
|
+
c-30.016,0.00-65.536,7.52-100.032,23.136C 377.536,235.176, 352.00,264.296, 352.00,300.328c0.00,36.096, 25.536,65.216, 60.00,80.768
|
67
|
+
c 34.496,15.104, 70.016,22.656, 100.032,22.656c 34.976,0.00, 66.976-7.008, 95.968-20.992L 608.00,903.432 c0.00,22.08, 14.016,42.592, 33.984,49.568l 416.00,137.888
|
68
|
+
C 1062.016,1092.424, 1066.496,1093.00, 1072.00,1093.00C 1098.496,1093.00, 1120.00,1069.864, 1120.00,1041.32z M 1536.00,645.00c0.00-424.16-343.84-768.00-768.00-768.00S0.00,220.84,0.00,645.00S 343.84,1413.00, 768.00,1413.00
|
69
|
+
S 1536.00,1069.16, 1536.00,645.00z M 1408.00,645.00c0.00,352.896-287.104,640.00-640.00,640.00S 128.00,997.896, 128.00,645.00s 287.104-640.00, 640.00-640.00S 1408.00,292.104, 1408.00,645.00z" horiz-adv-x="1536" />
|
70
|
+
<glyph unicode="" d="M 1069.056,596.84c-1.984,194.528, 162.368,287.84, 169.696,292.48c-92.32,132.032-236.192,150.112-287.392,152.192
|
71
|
+
c-122.432,12.128-238.88-70.40-300.992-70.40c-61.984,0.00-157.856,68.64-259.328,66.816c-133.44-1.952-256.48-75.776-325.152-192.576
|
72
|
+
c-138.656-235.04-35.488-583.264, 99.584-773.888c 66.016-93.312, 144.768-198.112, 248.128-194.368c 99.52,3.872, 137.184,62.944, 257.536,62.944
|
73
|
+
s 154.144-62.944, 259.488-60.992c 107.104,1.952, 174.976,95.104, 240.544,188.672c 75.808,108.256, 107.04,213.056, 108.864,218.432
|
74
|
+
C 1277.632,287.208, 1071.168,364.488, 1069.056,596.84z M 871.136,1167.72C 926.016,1232.744, 963.04,1322.984, 952.928,1413.00
|
75
|
+
c-79.04-3.136-174.816-51.424-231.488-116.32c-50.912-57.568-95.392-149.44-83.488-237.632C 726.144,1052.296, 816.224,1102.824, 871.136,1167.72z" horiz-adv-x="1408" />
|
76
|
+
<glyph unicode="" d="M0.00,1117.032l 704.00-229.024l0.00-1007.68 L0.00,119.112L0.00,1117.032 z M 896.00-123.00l 704.00,242.112L 1600.00,1110.472 l-704.00-219.20L 896.00-123.00 z M 800.00,997.00l 640.00,219.712L 799.328,1413.00L 128.00,1216.712L 800.00,997.00z" horiz-adv-x="1664" />
|
77
|
+
<glyph unicode="" d="M 1536.00,1125.00l0.00-960.00 c0.00-79.328-28.224-147.20-84.64-203.36C 1395.20-94.776, 1327.328-123.00, 1248.00-123.00L 288.00-123.00 c-79.328,0.00-147.168,28.224-203.52,84.64
|
78
|
+
C 28.128,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.128,147.136, 84.48,203.552C 140.832,1384.872, 208.672,1413.00, 288.00,1413.00l 960.00,0.00 c 79.328,0.00, 147.20-28.128, 203.36-84.448
|
79
|
+
C 1507.776,1272.136, 1536.00,1204.328, 1536.00,1125.00z M 128.00,1193.576l0.00-676.064 l 0.864,0.00 C 138.432,283.88, 420.48,96.424, 768.00,96.424c 353.472,0.00, 640.00,193.856, 640.00,433.056
|
80
|
+
s-286.528,433.088-640.00,433.088c-154.656,0.00-296.608-37.152-407.264-99.04L 360.736,1193.576 L 128.00,1193.576 z M 768.00,818.216c-224.896,0.00-407.264-129.216-407.264-288.704
|
81
|
+
c0.00-159.456, 182.336-288.704, 407.264-288.704c 224.992,0.00, 407.264,129.248, 407.264,288.704C 1175.264,689.00, 992.992,818.216, 768.00,818.216z M 768.00,338.696
|
82
|
+
c-148.64,0.00-269.248,85.408-269.248,190.816c0.00,105.472, 120.64,190.848, 269.248,190.848c 148.736,0.00, 269.248-85.376, 269.248-190.848
|
83
|
+
C 1037.248,424.104, 916.736,338.696, 768.00,338.696z" horiz-adv-x="1536" />
|
84
|
+
<glyph unicode="" d="M0.00,1413.00l0.00-946.496 l 1.248,0.00 C 14.624,139.40, 409.472-123.00, 896.00-123.00c 494.88,0.00, 896.00,271.392, 896.00,606.304S 1390.88,1089.64, 896.00,1089.64
|
85
|
+
c-216.544,0.00-415.232-52.00-570.144-138.624L 325.856,1413.00 L0.00,1413.00 z M 896.00,887.496c 315.008,0.00, 570.144-180.896, 570.144-404.192S 1211.008,79.08, 896.00,79.08
|
86
|
+
c-314.88,0.00-570.144,180.928-570.144,404.224S 581.12,887.496, 896.00,887.496z M 519.072,483.304c0.00,147.648, 168.832,267.168, 376.928,267.168
|
87
|
+
c 208.256,0.00, 376.928-119.488, 376.928-267.168c0.00-147.584-168.672-267.168-376.928-267.168C 687.904,216.168, 519.072,335.72, 519.072,483.304z" />
|
88
|
+
<glyph unicode="" d="M0.00,643.048C0.00,1088.136, 323.872,1413.00, 768.48,1413.00C 1212.128,1413.00, 1536.00,1088.136, 1536.00,643.048c0.00-376.768-226.112-668.032-593.152-751.648
|
89
|
+
c-9.568,17.312-26.816,44.224-51.712,80.736c-25.888,37.504-44.064,66.304-53.664,86.496c 66.08-26.912, 110.176-40.384, 133.184-40.384
|
90
|
+
c 16.288,0.00, 24.896,25.984, 24.896,77.888c0.00,96.128-8.64,144.192-25.856,144.192c-25.92,0.00-76.672-28.832-150.432-85.568c0.00,14.432-7.648,21.152-23.04,19.232
|
91
|
+
l-7.648,0.00 c-27.776,70.176-41.184,133.632-41.184,190.336c0.00,14.40, 1.92,29.792, 4.768,47.104c 93.92-47.104, 170.528-70.176, 229.024-70.176
|
92
|
+
c 61.28,0.00, 242.40,46.144, 242.40,88.448c0.00,13.472-8.64,20.192-26.848,20.192c-23.968,0.00-63.264-3.84-115.904-10.56
|
93
|
+
c-47.008-6.752-85.312-10.592-115.968-10.592c-57.504,0.00-142.752,30.784-142.752,80.736c0.00,3.84, 0.928,7.68, 1.888,11.52
|
94
|
+
c 2.912,1.952, 4.80,3.84, 7.68,4.80l 8.64,0.00 c 2.88-0.96, 9.60-1.952, 12.48-1.952c 3.808-0.928, 8.64-0.928, 14.368-0.928
|
95
|
+
c 11.488,0.00, 24.896-0.96, 40.224-3.84c 15.328-2.912, 27.776-3.84, 38.336-3.84c 62.272,0.00, 345.888,102.848, 345.888,144.16
|
96
|
+
c0.00,24.032-51.68,34.624-82.368,34.624c-29.696,0.00-82.40-15.36-159.072-39.392c-30.656-10.592-53.664-17.312-68.96-21.152
|
97
|
+
c 4.768,18.24, 6.688,35.552, 6.688,49.984c0.00,92.288-59.392,250.88-128.416,313.376c-27.776,25.952-65.152,42.272-112.096,50.944
|
98
|
+
c-56.544,73.984-203.168,148.032-297.984,148.032c-9.60,0.00-23.968-1.952-43.136-5.792c-12.448-2.88-24.896-4.80-36.416-6.72l-33.568-48.064l 8.64-1.952
|
99
|
+
c 7.68,0.00, 19.168,0.96, 33.568,2.912c 13.408,2.88, 24.896,3.84, 33.536,3.84c 34.496,0.00, 74.72-7.68, 120.736-22.112
|
100
|
+
c-26.848-13.44-51.744-23.072-75.712-29.792c-0.96-0.96-7.648-1.952-20.128-3.84c-19.168-0.96-38.304-4.80-50.784-13.472
|
101
|
+
c-6.72-4.80-9.60-10.56-9.60-18.24c 54.624,6.72, 97.76,9.60, 129.376,9.60c 39.296,0.00, 69.952-3.84, 92.928-10.56c-157.12-19.232-247.232-110.528-247.232-271.072
|
102
|
+
c0.00-27.872, 1.952-53.856, 5.76-76.896c 20.128-126.88, 58.432-312.384, 113.088-556.544c 28.704-132.672, 47.872-221.056, 57.472-264.32L 529.92-123.00
|
103
|
+
C 199.328-19.192,0.00,286.472,0.00,643.048z M 489.664,718.984c0.00,26.944, 25.856,52.864, 52.672,52.864c 12.448,0.00, 23.936-5.76, 36.416-16.352
|
104
|
+
c 10.56-12.512, 16.288-24.032, 16.288-36.544c0.00-26.912-25.856-52.832-52.672-52.832C 514.528,666.152, 489.664,691.112, 489.664,718.984z M 550.976,736.328
|
105
|
+
c0.00-8.672, 4.768-12.512, 14.368-12.512c 8.608,0.00, 13.408,3.84, 13.408,12.512s-4.80,13.472-13.408,13.472
|
106
|
+
C 555.744,749.768, 550.976,744.968, 550.976,736.328z M 847.072,749.768c0.00,24.032, 23.008,45.152, 45.024,45.152c 23.936,0.00, 45.024-21.12, 45.024-45.152
|
107
|
+
c0.00-23.104-21.088-45.184-45.024-45.184C 869.088,704.584, 847.072,726.696, 847.072,749.768z M 900.704,765.16c0.00-8.672, 3.808-12.512, 11.488-12.512
|
108
|
+
c 8.64,0.00, 12.448,3.84, 12.448,12.512c0.00,7.68-3.808,11.52-12.448,11.52C 904.544,776.68, 900.704,772.84, 900.704,765.16z" horiz-adv-x="1664" />
|
109
|
+
<glyph unicode="" d="M 264.256,1411.912C 272.096,1412.488, 279.936,1413.00, 288.00,1413.00l 167.52,0.00 c 10.592-5.472, 20.864-11.776, 30.816-19.232c 37.248-27.744, 66.592-63.168, 87.744-105.984
|
110
|
+
c 21.28-42.656, 37.568-87.04, 49.088-132.992c 11.52-45.92, 17.216-89.184, 17.216-129.888c0.00-67.936-15.20-122.464-45.472-163.616
|
111
|
+
c-30.144-41.12-79.104-61.632-146.624-61.632c-35.52,0.00-69.28,8.768-101.344,26.496c-32.032,17.568-59.168,40.544-81.44,68.704
|
112
|
+
c-22.208,28.192-41.696,59.936-58.368,95.36c-16.736,35.296-29.088,70.56-37.088,105.984c-7.968,35.296-12.032,68.864-12.032,100.896
|
113
|
+
c0.00,65.184, 17.696,121.248, 53.216,168.096C 226.24,1385.096, 244.032,1400.488, 264.256,1411.912z M 303.104,490.28c 51.584,7.872, 103.84,12.352, 156.736,13.728
|
114
|
+
c-44.544,56.416-66.944,107.104-66.944,151.904c0.00,8.192, 0.768,16.192, 2.176,23.872c 1.28,7.872, 3.008,14.496, 5.216,19.872
|
115
|
+
c 2.048,5.568, 4.896,12.80, 8.384,22.048c 3.456,9.056, 5.856,16.48, 7.264,21.888c-27.776-3.392-52.224-5.088-73.056-5.088
|
116
|
+
c-103.744,0.00-192.64,33.28-266.816,99.84C 43.328,867.72, 18.272,900.616,0.00,936.616l0.00-548.928 c 42.048,28.288, 89.056,50.496, 141.312,65.952
|
117
|
+
C 197.664,470.248, 251.648,482.44, 303.104,490.28z M 1451.36,1328.552C 1395.20,1384.872, 1327.328,1413.00, 1248.00,1413.00L 818.88,1413.00 l-119.456,0.00 c 39.04-29.024, 70.464-66.336, 93.472-112.896
|
118
|
+
c 27.136-55.008, 40.672-112.48, 40.672-172.256c0.00-50.40-8.064-94.912-24.00-134.048c-16.096-39.136-35.488-70.56-58.528-94.272
|
119
|
+
c-22.912-23.712-45.952-45.76-68.80-65.792c-23.04-20.032-42.496-40.672-58.592-62.08c-15.936-21.408-23.968-44.384-23.968-68.864
|
120
|
+
c0.00-17.568, 5.888-34.976, 17.184-51.904c 11.52-16.96, 26.528-33.28, 45.024-48.992c 18.432-15.552, 38.784-31.904, 61.056-48.832
|
121
|
+
c 22.24-16.928, 44.512-35.904, 66.784-56.544c 22.208-20.80, 42.56-43.168, 61.056-67.328c 18.464-24.192, 33.44-52.992, 44.96-86.592
|
122
|
+
c 11.36-33.76, 17.216-69.792, 17.216-108.64c0.00-108.608-48.768-204.448-146.176-287.328c-32.896-27.648-70.144-50.528-110.816-69.60L 1248.00-122.968
|
123
|
+
c 79.328,0.00, 147.20,28.224, 203.36,84.64C 1507.776,17.80, 1536.00,85.672, 1536.00,165.00L 1536.00,1125.00 C 1536.00,1204.328, 1507.776,1272.136, 1451.36,1328.552z M 751.04,224.232
|
124
|
+
c-3.456,11.264-9.504,22.944-18.176,35.296c-8.672,12.16-16.064,22.496-21.92,30.976c-5.984,8.48-15.168,18.464-27.776,30.016
|
125
|
+
c-12.48,11.552-22.08,20.352-28.608,26.016c-6.624,5.888-17.824,14.496-33.44,26.048c-15.584,11.52-26.496,19.392-32.384,23.392
|
126
|
+
c-5.952,4.00-17.344,11.872-34.528,23.392c-17.024,11.552-27.616,18.656-31.744,21.44c-11.84,1.376-29.312,1.984-52.256,1.984
|
127
|
+
c-37.568,0.00-74.464-2.304-110.624-7.104c-36.32-4.768-73.888-13.248-112.832-25.408c-39.008-12.352-73.088-27.904-102.272-47.008
|
128
|
+
C 115.20,344.36, 91.232,318.824, 72.448,286.92c-18.816-31.872-28.192-68.256-28.192-109.056c0.00-46.208, 12.32-87.52, 36.992-123.712
|
129
|
+
c 24.768-36.384, 57.12-65.024, 97.152-85.664c 40.096-20.80, 81.92-36.224, 125.824-46.368c 43.84-10.176, 88.064-15.264, 132.576-15.264
|
130
|
+
c 41.024,0.00, 80.352,4.16, 117.44,12.64c 37.248,8.48, 72.256,21.728, 104.96,39.744c 32.768,18.016, 58.688,42.976, 77.792,75.04
|
131
|
+
c 19.104,31.872, 28.736,69.152, 28.736,112.00c0.00,14.336-1.632,28.032-4.736,41.28C 757.824,200.776, 754.656,213.128, 751.04,224.232z" horiz-adv-x="1536" />
|
132
|
+
<glyph unicode="" d="M 897.408,75.976c0.00,14.048-1.60,27.488-4.672,40.512c-3.104,12.992-6.208,25.088-9.76,36.00c-3.392,11.04-9.344,22.496-17.856,34.592
|
133
|
+
c-8.512,11.936-15.776,22.08-21.504,30.40c-5.888,8.32-14.88,18.112-27.264,29.472c-12.256,11.328-21.696,19.936-28.064,25.536
|
134
|
+
c-6.496,5.76-17.472,14.208-32.80,25.568c-15.328,11.328-25.984,19.04-31.744,22.976c-5.856,3.936-17.024,11.648-33.92,22.976
|
135
|
+
c-16.672,11.328-27.104,18.304-31.136,21.024c-11.616,1.344-28.768,1.984-51.296,1.984c-36.832,0.00-73.056-2.272-108.544-6.976
|
136
|
+
c-35.616-4.672-72.48-12.992-110.72-24.928c-38.24-12.096-71.712-27.36-100.352-46.08c-28.704-18.624-52.256-43.68-70.688-75.008
|
137
|
+
c-18.432-31.296-27.616-66.976-27.616-107.008c0.00-45.344, 12.064-85.888, 36.288-121.408c 24.32-35.68, 56.064-63.776, 95.328-84.032
|
138
|
+
c 39.328-20.416, 80.384-35.52, 123.424-45.504c 43.04-9.984, 86.40-14.976, 130.048-14.976c 40.288,0.00, 78.848,4.096, 115.232,12.416
|
139
|
+
c 36.576,8.32, 70.912,21.312, 103.008,39.008c 32.16,17.696, 57.60,42.144, 76.32,73.60C 887.936-2.648, 897.408,33.928, 897.408,75.976z M 774.432,938.024
|
140
|
+
c0.00,39.936-5.568,82.40-16.864,127.424c-11.328,45.056-27.296,88.608-48.192,130.464c-20.736,42.016-49.536,76.768-86.08,104.00
|
141
|
+
c-36.384,27.36-77.248,41.088-122.336,41.088c-63.456,0.00-112.704-22.976-147.52-69.056c-34.88-45.984-52.224-100.96-52.224-164.928
|
142
|
+
c0.00-31.392, 3.968-64.384, 11.776-99.008c 7.872-34.752, 19.968-69.376, 36.416-104.00c 16.384-34.752, 35.456-65.92, 57.28-93.568
|
143
|
+
c 21.856-27.648, 48.48-50.176, 79.904-67.424c 31.424-17.376, 64.576-25.984, 99.392-25.984c 66.272,0.00, 114.272,20.128, 143.872,60.48
|
144
|
+
C 759.552,817.864, 774.432,871.368, 774.432,938.024z M 640.32,1413.00L 1088.00,1413.00 l-138.432-79.072l-138.272,0.00 c 48.64-29.952, 86.112-71.936, 112.736-125.92
|
145
|
+
s 39.936-110.336, 39.936-168.992c0.00-49.44-7.904-93.12-23.552-131.52c-15.776-38.368-34.816-69.216-57.408-92.512c-22.496-23.296-45.088-44.864-67.52-64.544
|
146
|
+
c-22.592-19.648-41.696-39.936-57.472-60.928c-15.648-20.992-23.52-43.52-23.52-67.552c0.00-17.248, 5.76-34.304, 16.864-50.944
|
147
|
+
c 11.328-16.672, 26.016-32.672, 44.16-48.064c 18.08-15.296, 38.048-31.328, 59.936-47.936c 21.824-16.64, 43.648-35.232, 65.504-55.456
|
148
|
+
c 21.824-20.416, 41.792-42.336, 59.904-66.048s 32.80-52.00, 44.128-84.96c 11.168-33.088, 16.896-68.48, 16.896-106.56c0.00-106.56-47.872-200.608-143.424-281.92
|
149
|
+
C 794.56-207.32, 651.20-251.00, 468.128-251.00c-40.288,0.00-80.992,3.328-122.336,9.984s-83.008,17.856-125.024,33.568c-41.984,15.584-79.072,34.944-111.104,57.92
|
150
|
+
c-32.16,23.136-58.40,52.736-78.944,89.024C 10.208-24.12,0.00,16.392,0.00,61.00c0.00,40.672, 12.64,85.696, 37.952,135.008
|
151
|
+
c 21.856,42.624, 54.592,79.488, 98.336,110.496c 43.648,30.976, 93.216,54.688, 148.512,71.04c 55.296,16.32, 108.256,28.288, 158.72,35.968
|
152
|
+
c 50.624,7.712, 101.888,12.128, 153.792,13.472c-43.68,55.328-65.664,105.056-65.664,149.024c0.00,8.032, 0.736,15.872, 2.144,23.424
|
153
|
+
c 1.248,7.712, 2.944,14.208, 5.088,19.488c 2.016,5.44, 4.80,12.576, 8.224,21.632c 3.392,8.896, 5.76,16.16, 7.136,21.472
|
154
|
+
c-27.264-3.328-51.264-4.992-71.68-4.992c-101.792,0.00-188.992,32.672-261.792,97.984c-72.704,65.312-109.088,147.36-109.088,245.952
|
155
|
+
c0.00,93.408, 32.448,176.864, 97.312,250.624c 64.896,73.632, 144.864,120.768, 239.776,141.408C 512.864,1406.344, 576.672,1413.00, 640.32,1413.00z" horiz-adv-x="1152" />
|
156
|
+
<glyph unicode="" d="M 1451.36,1328.552C 1395.20,1384.872, 1327.328,1413.00, 1248.00,1413.00L 288.00,1413.00 C 208.672,1413.00, 140.832,1384.872, 84.48,1328.552C 28.128,1272.136,0.00,1204.328,0.00,1125.00l0.00-960.00
|
157
|
+
c0.00-79.328, 28.128-147.20, 84.48-203.36C 140.832-94.776, 208.672-123.00, 288.00-123.00l 960.00,0.00 c 79.328,0.00, 147.20,28.224, 203.36,84.64C 1507.776,17.80, 1536.00,85.672, 1536.00,165.00L 1536.00,1125.00
|
158
|
+
C 1536.00,1204.328, 1507.776,1272.136, 1451.36,1328.552z M 1088.00,431.752L 1024.00,133.00l-149.248,192.00L 512.00,5.00L 128.00,1285.00l 1280.00-640.00L 1088.00,431.752z M 256.00,1157.00l 768.00-618.752l0.00-106.496 L 992.00,325.00
|
159
|
+
l-85.376,106.752L 256.00,1157.00z" horiz-adv-x="1536" />
|
160
|
+
<glyph unicode="" d="M 1536.00,645.00l-384.00-256.00l-128.00-384.00l-128.00,256.00L 384.00-123.00L0.00,1413.00L 1536.00,645.00z M 128.00,1285.00l 768.00-896.00l 128.00-128.00l0.00,128.00 l0.00,128.00 L 128.00,1285.00z" horiz-adv-x="1664" />
|
161
|
+
<glyph unicode="" d="M 695.648,645.192c-80.512,41.184-158.688,61.984-232.608,61.984c-10.08,0.00-20.096-0.288-30.176-0.992
|
162
|
+
c-94.528-8.00-180.576-32.672-236.064-51.936c-14.624-5.216-29.696-10.944-45.184-17.152L0.00,113.96c 104.192,38.368, 196.384,56.992, 280.704,56.992
|
163
|
+
c 136.32,0.00, 235.328-50.816, 317.12-102.944c 38.816,130.976, 131.808,446.784, 159.36,541.28C 737.12,621.544, 716.608,633.96, 695.648,645.192z M 891.648,512.136
|
164
|
+
l-152.672-527.52C 784.224-41.048, 936.576-123.00, 1053.312-123.00c 94.048,0.00, 199.552,24.032, 321.92,73.504l 145.888,507.232
|
165
|
+
c-99.168-31.808-193.952-47.904-282.784-47.904C 1076.48,409.80, 963.136,462.088, 891.648,512.136z M 494.208,885.544
|
166
|
+
c 130.112-1.152, 226.368-50.624, 306.112-101.60l 156.576,532.992c-32.896,18.784-119.552,65.728-182.048,81.664C 733.60,1408.04, 690.464,1413.00, 644.512,1413.00
|
167
|
+
c-87.424-1.632-182.944-23.424-291.648-66.784L 203.552,824.552c 109.344,41.024, 203.616,60.96, 290.272,60.96
|
168
|
+
C 493.92,885.544, 494.208,885.544, 494.208,885.544z M 1728.00,1172.104c-99.232-38.208-196.128-57.696-288.512-57.696c-154.72,0.00-269.024,53.44-342.88,104.672
|
169
|
+
l-155.168-534.656c 104.32-66.528, 216.608-100.512, 334.368-100.512c 96.096,0.00, 195.68,23.20, 296.16,68.544l-0.256,3.488l 6.272,1.60L 1728.00,1172.104z" />
|
170
|
+
<glyph unicode="" d="M 0.576,636.424L0.00,1177.416l 665.568,90.368l0.00-631.328 L 0.576,636.456 z M 776.512,1283.88L 1663.744,1413.00l0.00-776.576 L 776.512,636.424 L 776.512,1283.88 z M 1664.00,525.576L 1663.744-251.00
|
171
|
+
l-887.264,124.80L 776.48,525.576 L 1664.00,525.576 z M 665.568-112.056L 0.544-20.92L 0.48,525.576l 665.088,0.00 L 665.568-112.056 z" />
|
172
|
+
<glyph unicode="" d="M 1491.488,427.784l-26.144,748.832c-1.088,31.648, 23.328,57.568, 54.272,57.568l 225.152,0.00 c 30.944,0.00, 51.808-25.536, 46.368-56.672l-130.816-749.728
|
173
|
+
M 1688.48,182.984c0.00-55.456-44.32-100.80-98.496-100.80l-28.128,0.00 c-54.144,0.00-98.464,45.344-98.464,100.80l0.00,28.768 c0.00,55.456, 44.32,100.80, 98.464,100.80l 28.128,0.00
|
174
|
+
c 54.176,0.00, 98.496-45.344, 98.496-100.80L 1688.48,182.984 z M 675.392,1234.184C 302.40,1234.184,0.00,976.296,0.00,658.184c0.00-318.144, 302.432-576.00, 675.424-576.00
|
175
|
+
s 675.392,257.856, 675.392,576.00C 1350.816,976.296, 1048.416,1234.184, 675.392,1234.184z M 1125.664,773.384l-130.592,0.00 l-207.104-211.904l0.00-133.696 L 956.80,427.784 l0.00-115.20 L 506.56,312.584 l0.00,115.20
|
176
|
+
l 168.832,0.00 L 675.392,561.48 l-319.648,327.136L 281.792,888.616 l0.00,115.20 l 336.992,0.00 l0.00-115.20 l-73.984,0.00 l 186.912-191.264l 56.288,57.568l0.00,133.696 l 337.696,0.00 L 1125.696,773.384 z" />
|
177
|
+
<glyph unicode=" " horiz-adv-x="896" />
|
178
|
+
<glyph class="hidden" unicode="" d="M0,1541L 1792 -251L0 -251 z" horiz-adv-x="0" />
|
179
|
+
</font></defs></svg>
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,233 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
4
|
+
<metadata>
|
5
|
+
This is a custom SVG font generated by IcoMoon.
|
6
|
+
<iconset grid="16"></iconset>
|
7
|
+
</metadata>
|
8
|
+
<defs>
|
9
|
+
<font id="Font-Awesome-More" horiz-adv-x="1792" >
|
10
|
+
<font-face units-per-em="1792" ascent="1541" descent="-251" />
|
11
|
+
<missing-glyph horiz-adv-x="1792" />
|
12
|
+
<glyph unicode="" d="M 1451.36,1328.552C 1395.20,1384.872, 1327.328,1413.00, 1248.00,1413.00L 288.00,1413.00 C 208.672,1413.00, 140.832,1384.872, 84.48,1328.552C 28.128,1272.136,0.00,1204.328,0.00,1125.00l0.00-960.00
|
13
|
+
c0.00-79.328, 28.128-147.20, 84.48-203.36C 140.832-94.776, 208.672-123.00, 288.00-123.00l 960.00,0.00 c 79.328,0.00, 147.20,28.224, 203.36,84.64C 1507.776,17.80, 1536.00,85.672, 1536.00,165.00L 1536.00,1125.00
|
14
|
+
C 1536.00,1204.328, 1507.776,1272.136, 1451.36,1328.552z M 623.68,5.00C 386.336,5.00, 192.00,195.304, 192.00,426.376c0.00,163.136, 100.096,313.792, 253.664,380.608l 9.312-124.608
|
15
|
+
c-89.632-55.488-145.472-152.896-145.472-258.24c0.00-166.528, 140.768-303.584, 314.176-303.584c 158.272,0.00, 294.368,116.672, 309.536,269.60l 76.768-152.896
|
16
|
+
C 936.672,96.744, 785.44,5.00, 623.68,5.00z M 1120.00,133.00l-192.00,416.00L 512.00,549.00 l-47.712,567.232c-9.312,15.872-14.016,33.984-14.016,55.488
|
17
|
+
c0.00,62.304, 52.416,113.28, 116.416,113.28s 116.352-50.976, 116.352-113.28c0.00-60.032-47.712-106.176-107.04-110.72l 32.00-224.00l 288.00,0.00 l0.00-128.00 l-256.00,0.00 l0.00-64.00 l 384.00,0.00 l 160.00-384.00l 128.00,64.00l 32.00-96.00L 1120.00,133.00z" horiz-adv-x="1536" />
|
18
|
+
<glyph unicode="" d="M 576.704,389.512c0.00-106.592-86.688-193.344-193.216-193.344c-105.984,0.00-192.224,86.752-192.224,193.344c0.00,106.048, 86.208,192.384, 192.224,192.384
|
19
|
+
C 490.016,581.864, 576.704,495.56, 576.704,389.512z M 1151.52,581.832c-105.984,0.00-192.256-86.304-192.256-192.416c0.00-106.56, 86.24-193.28, 192.256-193.28
|
20
|
+
c 53.504,0.00, 98.24,18.752, 136.80,57.312c 37.952,37.888, 56.416,82.336, 56.416,135.968C 1344.736,495.528, 1258.048,581.832, 1151.52,581.832z M 1536.00,1125.00l0.00-960.00
|
21
|
+
c0.00-79.328-28.224-147.20-84.64-203.36C 1395.20-94.776, 1327.328-123.00, 1248.00-123.00L 288.00-123.00 c-79.328,0.00-147.168,28.224-203.52,84.64C 28.128,17.80,0.00,85.672,0.00,165.00L0.00,1125.00
|
22
|
+
c0.00,79.328, 28.128,147.136, 84.48,203.552C 140.832,1384.872, 208.672,1413.00, 288.00,1413.00l 960.00,0.00 c 79.328,0.00, 147.20-28.128, 203.36-84.448C 1507.776,1272.136, 1536.00,1204.328, 1536.00,1125.00z M 800.00,1093.00
|
23
|
+
c0.00-53.088, 43.04-96.00, 96.448-96.00C 948.896,997.00, 992.00,1039.912, 992.00,1093.00c0.00,53.152-43.104,96.00-95.552,96.00c-27.168,0.00-49.664-9.312-68.352-27.936
|
24
|
+
C 809.344,1142.408, 800.00,1120.04, 800.00,1093.00z M 640.00,389.512C 640.00,530.824, 525.824,645.00, 383.488,645.00C 242.176,645.00, 128.00,530.824, 128.00,389.512C 128.00,247.176, 242.176,133.00, 383.488,133.00
|
25
|
+
C 525.824,133.00, 640.00,247.176, 640.00,389.512z M 894.88,773.00l 188.416,0.00 c 36.896,0.00, 53.952,25.376, 38.784,50.944C 1114.528,836.328, 1101.248,837.00, 1083.296,837.00l-162.848,0.00
|
26
|
+
l-107.008,166.048c-1.92,2.848-4.704,4.768-7.584,9.568c-6.592,7.52-32.16,26.048-57.728,26.048c-23.648,2.784-44.512-5.024-61.568-23.936
|
27
|
+
l-205.44-207.008c-14.176-15.136-20.80-33.152-20.80-55.008c0.00-31.264, 10.592-55.136, 38.016-71.232L 704.00,564.84l0.00-219.136 c0.00-31.328, 33.216-56.896, 64.48-56.896
|
28
|
+
c 30.304,0.00, 63.52,25.60, 63.52,56.896l0.00,274.144 c0.00,25.12-18.40,53.12-48.704,67.328l-122.208,63.552l 130.176,129.952l 63.168-91.776
|
29
|
+
C 865.76,771.816, 878.784,773.00, 894.88,773.00z M 1408.00,389.448C 1408.00,530.824, 1292.864,645.00, 1151.52,645.00S 896.00,530.824, 896.00,389.448C 896.00,248.136, 1010.176,133.00, 1151.52,133.00
|
30
|
+
c 70.208,0.00, 131.04,25.248, 181.60,75.808C 1382.752,258.376, 1408.00,319.24, 1408.00,389.448z" horiz-adv-x="1536" />
|
31
|
+
<glyph unicode="" d="M 1111.744,701.00l-31.264,239.616C 1075.616,971.848, 1064.864,997.00, 1030.688,997.00l-267.552,0.00 l-257.824,0.00 c-34.176,0.00-44.928-29.024-49.824-60.256
|
32
|
+
l-31.264-240.96C 420.352,667.464, 431.104,645.00, 457.44,645.00l 306.656,0.00 l 314.464,0.00 C 1104.896,645.00, 1115.648,672.68, 1111.744,701.00zM 480.864,513.192c-32.224,0.00-57.60-26.40-57.60-57.664c0.00-32.224, 25.376-57.632, 57.60-57.632c 31.264,0.00, 57.664,25.408, 57.664,57.632
|
33
|
+
C 538.528,486.792, 512.128,513.192, 480.864,513.192zM 596.128,1029.00l 167.008,0.00 l 176.736,0.00 c 22.464,0.00, 31.264,28.128, 23.424,44.736C 958.432,1082.44, 950.624,1093.00, 939.872,1093.00l-175.776,0.00 l-167.968,0.00
|
34
|
+
c-22.464,0.00-31.264-28.096-22.464-44.672C 577.568,1039.56, 585.376,1029.00, 596.128,1029.00zM 1055.136,513.192c-31.264,0.00-57.632-26.40-57.632-57.664c0.00-32.224, 26.368-57.632, 57.632-57.632c 32.224,0.00, 57.60,25.408, 57.60,57.632
|
35
|
+
C 1112.704,486.792, 1087.328,513.192, 1055.136,513.192zM 1451.36,1328.552C 1395.20,1384.872, 1327.328,1413.00, 1248.00,1413.00L 288.00,1413.00 C 208.672,1413.00, 140.832,1384.872, 84.48,1328.552C 28.128,1272.136,0.00,1204.328,0.00,1125.00l0.00-960.00
|
36
|
+
c0.00-79.328, 28.128-147.20, 84.48-203.36C 140.832-94.776, 208.672-123.00, 288.00-123.00l 960.00,0.00 c 79.328,0.00, 147.20,28.224, 203.36,84.64C 1507.776,17.80, 1536.00,85.672, 1536.00,165.00L 1536.00,1125.00
|
37
|
+
C 1536.00,1204.328, 1507.776,1272.136, 1451.36,1328.552z M 1184.00,261.00l-64.00,0.00 l0.00-66.208 c0.00-26.336-13.728-43.936-34.24-54.656C 1045.76,119.592, 992.00,143.016, 992.00,194.792L 992.00,261.00
|
38
|
+
l-227.904,0.00 l-0.96,0.00 L 544.00,261.00 l0.00-66.208 c0.00-26.336-13.696-43.936-33.28-54.656C 470.72,119.592, 416.00,143.016, 416.00,194.792L 416.00,261.00 l-64.00,0.00 L 352.00,692.84 l 39.968,312.512
|
39
|
+
c 10.816,51.744, 38.912,77.152, 100.512,101.568c 55.616,23.424, 184.48,48.832, 275.296,49.824c 90.848-0.96, 219.456-26.368, 275.168-49.824
|
40
|
+
c 61.536-24.416, 90.272-49.824, 101.088-101.568L 1184.00,692.84L 1184.00,261.00 z" horiz-adv-x="1536" />
|
41
|
+
<glyph unicode="" d="M 1536.00,1125.00l0.00-960.00 c0.00-79.328-28.224-147.20-84.64-203.36C 1395.20-94.776, 1327.328-123.00, 1248.00-123.00L 288.00-123.00 c-79.328,0.00-147.168,28.224-203.52,84.64
|
42
|
+
C 28.128,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.128,147.136, 84.48,203.552C 140.832,1384.872, 208.672,1413.00, 288.00,1413.00l 960.00,0.00 c 79.328,0.00, 147.20-28.128, 203.36-84.448
|
43
|
+
C 1507.776,1272.136, 1536.00,1204.328, 1536.00,1125.00z M 768.00,727.208L 768.00,727.208L 415.104,727.208 l 67.392,176.128c 9.344,29.28, 25.856,43.424, 49.472,43.424L 768.00,946.76 l0.00,0.00l 234.784,0.00
|
44
|
+
c 24.864,0.00, 41.376-14.144, 50.72-43.424l 67.392-176.128L 768.00,727.208 z M 470.56,563.976c0.00-42.144-34.208-77.504-75.424-77.504
|
45
|
+
c-41.376,0.00-75.552,35.328-75.552,77.504c0.00,42.304, 34.176,76.352, 75.552,76.352c 19.968,0.00, 37.792-7.04, 53.024-22.304
|
46
|
+
C 463.52,602.696, 470.56,585.096, 470.56,563.976z M 1216.448,563.976c0.00-42.144-34.176-77.504-75.552-77.504c-42.432,0.00-75.424,35.328-75.424,77.504
|
47
|
+
c0.00,42.304, 32.992,76.352, 75.424,76.352C 1182.24,640.328, 1216.448,606.28, 1216.448,563.976z M 1214.016,722.472l-89.696,226.56
|
48
|
+
C 1104.384,1001.928, 1062.976,1029.00, 1002.784,1029.00l-126.144,0.00 l-215.968,0.00 l-127.424,0.00 c-60.192,0.00-101.60-27.072-121.568-79.968l-89.696-226.56
|
49
|
+
C 278.272,716.648, 224.00,669.736, 224.00,599.24l0.00-288.80 l 87.36,0.00 l0.00-92.672 c0.00-35.296, 14.048-59.872, 41.216-74.016c 54.336-29.344, 121.60,3.584, 121.60,74.016l0.00,92.672 L 768.00,310.44 l0.00,0.00
|
50
|
+
l 293.824,0.00 l0.00-92.672 c0.00-35.296, 14.144-59.872, 41.28-74.016c 54.272-29.344, 121.536,3.584, 121.536,74.016l0.00,92.672 L 1312.00,310.44 L 1312.00,599.24
|
51
|
+
C 1312.00,669.736, 1257.696,716.648, 1214.016,722.472z" horiz-adv-x="1536" />
|
52
|
+
<glyph unicode="" d="M 1536.00,1125.00l0.00-960.00 c0.00-79.328-28.224-147.20-84.64-203.36C 1395.20-94.776, 1327.328-123.00, 1248.00-123.00L 288.00-123.00 c-79.328,0.00-147.168,28.224-203.52,84.64
|
53
|
+
C 28.128,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.128,147.136, 84.48,203.552C 140.832,1384.872, 208.672,1413.00, 288.00,1413.00l 960.00,0.00 c 79.328,0.00, 147.20-28.128, 203.36-84.448
|
54
|
+
C 1507.776,1272.136, 1536.00,1204.328, 1536.00,1125.00z M 768.00,746.984L 768.00,746.984L 415.104,746.984 l 67.392,181.984c 9.344,30.272, 25.856,44.896, 49.472,44.896L 768.00,973.864 l0.00,0.00l 234.784,0.00
|
55
|
+
c 24.864,0.00, 41.376-14.624, 50.72-44.896l 67.392-181.984L 768.00,746.984 z M 470.56,578.312c0.00-43.552-34.208-80.064-75.424-80.064
|
56
|
+
c-41.376,0.00-75.552,36.512-75.552,80.064c0.00,43.712, 34.176,78.88, 75.552,78.88c 19.968,0.00, 37.792-7.264, 53.024-23.072
|
57
|
+
C 463.52,618.312, 470.56,600.168, 470.56,578.312z M 1216.448,578.312c0.00-43.552-34.176-80.064-75.552-80.064c-42.432,0.00-75.424,36.512-75.424,80.064
|
58
|
+
c0.00,43.712, 32.992,78.88, 75.424,78.88C 1182.24,657.192, 1216.448,622.024, 1216.448,578.312z M 1214.016,742.088l-89.696,234.112
|
59
|
+
c-19.968,54.624-61.376,82.56-121.568,82.56l-126.144,0.00 l0.00,61.76 c0.00,24.352-11.904,36.48-34.336,36.48L 768.00,1157.00 l0.00,0.00l-73.152,0.00 c-22.40,0.00-34.176-12.128-34.176-36.48l0.00-61.76
|
60
|
+
l-127.424,0.00 c-60.192,0.00-101.60-27.936-121.568-82.56l-89.696-234.112C 278.272,736.072, 224.00,687.592, 224.00,614.792l0.00-298.432 l 87.36,0.00 l0.00-95.744
|
61
|
+
c0.00-36.512, 14.048-61.92, 41.216-76.544c 54.336-30.272, 121.60,3.68, 121.60,76.544l0.00,95.744 L 768.00,316.36 l0.00,0.00l 293.824,0.00 l0.00-95.744 c0.00-36.512, 14.144-61.92, 41.28-76.544
|
62
|
+
c 54.272-30.272, 121.536,3.68, 121.536,76.544l0.00,95.744 L 1312.00,316.36 l0.00,298.432 C 1312.00,687.592, 1257.696,736.072, 1214.016,742.088z" horiz-adv-x="1536" />
|
63
|
+
<glyph unicode="" d="M 1536.00,1125.00l0.00-960.00 c0.00-79.328-28.224-147.20-84.64-203.36C 1395.20-94.776, 1327.328-123.00, 1248.00-123.00L 288.00-123.00 c-79.328,0.00-147.168,28.224-203.52,84.64
|
64
|
+
C 28.128,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.128,147.136, 84.48,203.552C 140.832,1384.872, 208.672,1413.00, 288.00,1413.00l 960.00,0.00 c 79.328,0.00, 147.20-28.128, 203.36-84.448
|
65
|
+
C 1507.776,1272.136, 1536.00,1204.328, 1536.00,1125.00z M 1110.016,1157.00L 425.984,1157.00 C 383.008,1157.00, 352.00,1129.256, 352.00,1086.76l0.00-489.248 L 416.00,645.00l0.00,160.00 c 7.008,62.24, 72.00,96.00, 136.00,96.00l 432.00,0.00
|
66
|
+
c 64.00,0.00, 128.992-33.76, 136.00-96.00l0.00-160.00 l 64.00-47.488L 1184.00,1086.76 C 1184.00,1129.256, 1152.992,1157.00, 1110.016,1157.00z M 1056.00,773.00c-4.00,43.488-20.00,64.00-64.00,64.00L 544.00,837.00
|
67
|
+
c-44.00,0.00-60.00-20.512-64.00-64.00l0.00-160.00 l-128.00-96.00l0.00-224.00 l 32.00,0.00 l0.00-96.80 C 384.00,157.672, 424.992,133.00, 464.00,133.00s 80.00,24.672, 80.00,63.20L 544.00,293.00 l 448.00,0.00 l0.00-96.80
|
68
|
+
C 992.00,157.672, 1032.992,133.00, 1072.00,133.00s 80.00,24.672, 80.00,63.20L 1152.00,293.00 l 32.00,0.00 l0.00,224.00 l-128.00,96.00L 1056.00,773.00 z M 448.576,389.00C 413.536,389.00, 384.00,417.448, 384.00,453.576
|
69
|
+
C 384.00,488.552, 413.536,517.00, 448.576,517.00c 17.504,0.00, 32.80-6.56, 44.832-18.56C 505.44,486.376, 512.00,471.048, 512.00,453.576C 512.00,417.448, 483.552,389.00, 448.576,389.00z
|
70
|
+
M 896.00,389.00l-256.00,0.00 l0.00,108.288 C 640.00,507.144, 647.328,517.00, 657.312,517.00l 220.672,0.00 C 888.00,517.00, 896.00,507.144, 896.00,497.288L 896.00,389.00 z M 512.00,645.00l0.00,96.00 c 3.008,22.72, 8.992,32.00, 32.00,32.00l 448.00,0.00
|
71
|
+
c 23.008,0.00, 28.992-9.28, 32.00-32.00l0.00-96.00 L 512.00,645.00 z M 1152.00,453.576C 1152.00,417.448, 1123.328,389.00, 1088.00,389.00s-64.00,28.448-64.00,64.576C 1024.00,488.552, 1052.672,517.00, 1088.00,517.00
|
72
|
+
S 1152.00,488.552, 1152.00,453.576z" horiz-adv-x="1536" />
|
73
|
+
<glyph unicode="" d="M 127.904,5.032L 1152.00,5.032 l0.00,768.00 L 735.968,773.032 c-26.656,0.00-49.312,9.28-68.032,27.968c-18.624,18.688-27.968,41.312-27.968,68.032L 639.968,1285.00 L 127.904,1285.00 L 127.904,5.032 z
|
74
|
+
M 768.00,900.968l 298.944,0.00 L 768.00,1200.008L 768.00,900.968 z M 1279.936,773.032L 1279.936-27.00 c0.00-26.656-9.28-49.344-27.968-68.032C 1233.28-113.656, 1210.656-123.00, 1183.936-123.00L 96.00-123.00
|
75
|
+
c-26.72,0.00-49.344,9.344-68.032,27.968C 9.28-76.344,0.00-53.656,0.00-27.00L0.00,1317.00 c0.00,26.592, 9.28,49.344, 27.968,68.00C 46.656,1403.592, 69.28,1413.00, 96.00,1413.00l 543.968,0.00
|
76
|
+
c 26.656,0.00, 56.032-6.656, 87.968-20.00c 32.032-13.408, 57.344-29.344, 76.064-48.00l 408.00-408.032c 18.624-18.624, 34.656-43.936, 48.00-75.968
|
77
|
+
C 1273.312,828.968, 1279.936,799.688, 1279.936,773.032zM 598.08,901.00c-34.432,0.00-63.008-19.68-71.168-49.312c-14.816-55.936-1.568-133.888, 23.52-233.344l-2.944-7.296
|
78
|
+
c-18.048-44.928-41.536-91.84-60.448-129.664l-2.56-5.12c-18.784-37.632-36.64-71.328-53.088-100.352l-10.176-5.568
|
79
|
+
c-1.408-0.704-33.824-18.24-41.248-22.848c-69.504-42.40-114.176-91.072-122.656-133.344c-5.248-26.144, 4.384-50.656, 25.792-63.04l 17.60-9.088
|
80
|
+
C 312.544,136.072, 325.056,133.00, 337.952,133.00c 55.904,0.00, 109.792,54.016, 184.864,185.824c 73.248,23.744, 155.232,43.584, 228.192,55.328
|
81
|
+
c 64.512-35.296, 139.904-58.656, 190.496-58.656c 11.20,0.00, 21.088,1.12, 29.44,3.424c 16.32,4.384, 30.016,14.208, 38.688,27.488
|
82
|
+
c 12.256,18.912, 16.80,44.544, 13.12,74.08c-2.336,17.824-15.136,30.56-18.816,34.176C 983.552,475.176, 947.328,485.00, 889.856,485.00l-5.088,0.00
|
83
|
+
c-29.952,0.00-64.768-1.568-101.28-6.368c-13.312,8.128-27.232,17.504-37.952,27.776c-34.784,33.152-64.256,79.264-83.584,129.888
|
84
|
+
c 0.608,2.56, 1.184,5.376, 1.888,8.416c 1.472,8.704, 10.272,60.864, 14.944,109.952c-11.968,6.016-23.296,13.568-33.408,23.68
|
85
|
+
c-7.584,7.616-13.632,15.936-18.944,24.608c 1.024-8.032, 1.664-16.544, 1.824-24.864c 0.672-33.984-7.136-57.92-16.768-75.52
|
86
|
+
c-8.00,26.144-11.84,67.36-11.84,94.336c0.00,0.00-0.608,51.488, 5.888,51.488c 1.60,0.00, 3.104-0.608, 4.576-1.472C 608.864,854.088, 608.00,861.384, 608.00,869.032
|
87
|
+
L 608.00,900.68 C 604.352,900.776, 598.08,901.00, 598.08,901.00z M 328.416,196.488c 8.00,22.368, 39.616,66.528, 86.40,105.632c 2.976,2.464, 10.208,9.44, 16.832,15.84
|
88
|
+
C 382.72,238.28, 349.984,206.536, 328.416,196.488z M 889.696,417.00c 25.792,0.00, 33.408,0.096, 58.528-6.432c 25.184-6.56, 25.504-19.904, 21.184-22.624
|
89
|
+
c-4.288-2.688-16.672-4.352-24.64-4.352c-25.696,0.00-57.376,11.968-101.888,31.488C 859.968,416.328, 875.648,417.00, 889.696,417.00z M 606.72,560.072
|
90
|
+
c 23.808-44.256, 53.44-81.856, 88.256-112.00c 4.32-3.776, 8.96-7.52, 13.824-11.296c-70.88-14.336-132.064-31.808-185.984-52.896
|
91
|
+
c 9.76,17.984, 20.00,36.864, 30.432,56.992C 578.72,489.928, 594.752,528.392, 606.72,560.072z" horiz-adv-x="1248" />
|
92
|
+
<glyph unicode="" d="M 127.904,5.032L 1152.00,5.032 l0.00,768.00 L 735.968,773.032 c-26.656,0.00-49.312,9.28-68.032,27.968c-18.624,18.688-27.968,41.312-27.968,68.032L 639.968,1285.00 L 127.904,1285.00 L 127.904,5.032 z
|
93
|
+
M 768.00,900.968l 298.944,0.00 L 768.00,1200.008L 768.00,900.968 z M 1279.936,773.032L 1279.936-27.00 c0.00-26.656-9.28-49.344-27.968-68.032C 1233.28-113.656, 1210.656-123.00, 1183.936-123.00L 96.00-123.00
|
94
|
+
c-26.72,0.00-49.344,9.344-68.032,27.968C 9.28-76.344,0.00-53.656,0.00-27.00L0.00,1317.00 c0.00,26.592, 9.28,49.344, 27.968,68.00C 46.656,1403.592, 69.28,1413.00, 96.00,1413.00l 543.968,0.00
|
95
|
+
c 26.656,0.00, 56.032-6.656, 87.968-20.00c 32.032-13.408, 57.344-29.344, 76.064-48.00l 408.00-408.032c 18.624-18.624, 34.656-43.936, 48.00-75.968
|
96
|
+
C 1273.312,828.968, 1279.936,799.688, 1279.936,773.032z M 932.224,741.00l-180.512,0.00 l-127.744-185.088L 496.224,741.00l-180.48,0.00 l 216.352-318.208L 287.968,69.00l 349.888,0.00 l0.00,120.192
|
97
|
+
l-80.736,0.00 l 66.88,98.432L 772.608,69.00l 187.36,0.00 L 715.84,422.792L 932.224,741.00z" horiz-adv-x="1280" />
|
98
|
+
<glyph unicode="" d="M 127.904,5.032L 1152.00,5.032 l0.00,768.00 L 735.968,773.032 c-26.656,0.00-49.312,9.28-68.032,27.968c-18.624,18.688-27.968,41.312-27.968,68.032L 639.968,1285.00 L 127.904,1285.00 L 127.904,5.032 z
|
99
|
+
M 768.00,900.968l 298.944,0.00 L 768.00,1200.008L 768.00,900.968 z M 1279.936,773.032L 1279.936-27.00 c0.00-26.656-9.28-49.344-27.968-68.032C 1233.28-113.656, 1210.656-123.00, 1183.936-123.00L 96.00-123.00
|
100
|
+
c-26.72,0.00-49.344,9.344-68.032,27.968C 9.28-76.344,0.00-53.656,0.00-27.00L0.00,1317.00 c0.00,26.592, 9.28,49.344, 27.968,68.00C 46.656,1403.592, 69.28,1413.00, 96.00,1413.00l 543.968,0.00
|
101
|
+
c 26.656,0.00, 56.032-6.656, 87.968-20.00c 32.032-13.408, 57.344-29.344, 76.064-48.00l 408.00-408.032c 18.624-18.624, 34.656-43.936, 48.00-75.968
|
102
|
+
C 1273.312,828.968, 1279.936,799.688, 1279.936,773.032zM 729.568,312.232l 264.32,0.00 C 973.088,209.96, 882.72,133.00, 774.336,133.00c-123.712,0.00-224.00,100.288-224.00,224.00c0.00,108.384, 76.96,198.752, 179.232,219.488L 729.568,312.232 z
|
103
|
+
M 863.968,670.632c 123.68,0.00, 224.00-100.32, 224.00-224.00c0.00-15.36-1.60-30.368-4.512-44.832l-264.32,0.00 L 819.136,666.12 C 833.632,669.064, 848.64,670.632, 863.968,670.632zM 191.968,643.40L 479.968,643.40L 479.968,546.792L 191.968,546.792zM 191.968,432.456L 479.968,432.456L 479.968,342.344L 191.968,342.344zM 191.968,228.008L 479.968,228.008L 479.968,131.40L 191.968,131.40z" horiz-adv-x="1280" />
|
104
|
+
<glyph unicode="" d="M 127.904,5.032L 1152.00,5.032 l0.00,768.00 L 735.968,773.032 c-26.656,0.00-49.312,9.28-68.032,27.968c-18.624,18.688-27.968,41.312-27.968,68.032L 639.968,1285.00 L 127.904,1285.00 L 127.904,5.032 z
|
105
|
+
M 768.00,900.968l 298.944,0.00 L 768.00,1200.008L 768.00,900.968 z M 1279.936,773.032L 1279.936-27.00 c0.00-26.656-9.28-49.344-27.968-68.032C 1233.28-113.656, 1210.656-123.00, 1183.936-123.00L 96.00-123.00
|
106
|
+
c-26.72,0.00-49.344,9.344-68.032,27.968C 9.28-76.344,0.00-53.656,0.00-27.00L0.00,1317.00 c0.00,26.592, 9.28,49.344, 27.968,68.00C 46.656,1403.592, 69.28,1413.00, 96.00,1413.00l 543.968,0.00
|
107
|
+
c 26.656,0.00, 56.032-6.656, 87.968-20.00c 32.032-13.408, 57.344-29.344, 76.064-48.00l 408.00-408.032c 18.624-18.624, 34.656-43.936, 48.00-75.968
|
108
|
+
C 1273.312,828.968, 1279.936,799.688, 1279.936,773.032z M 804.48,620.488l 56.96,0.00 l-65.696-296.992l-85.44,417.536l-137.152,0.00 l-99.328-417.536L 399.36,741.032
|
109
|
+
L 255.968,741.032 L 401.60,69.00l 140.192,0.00 l 98.176,397.44L 727.84,69.00l 129.184,0.00 l 166.944,672.032L 804.48,741.032 L 804.48,620.488 z" horiz-adv-x="1280" />
|
110
|
+
<glyph unicode="" d="M 127.936,5.032l 1024.096,0.00 l0.00,768.00 L 736.00,773.032 c-26.656,0.00-49.312,9.28-68.032,27.968C 649.344,819.688, 640.00,842.312, 640.00,869.032L 640.00,1285.00 L 127.936,1285.00 L 127.936,5.032 z
|
111
|
+
M 768.032,900.968l 298.944,0.00 l-298.944,299.04L 768.032,900.968 z M 1279.968,773.032L 1279.968-27.00 c0.00-26.656-9.28-49.344-27.968-68.032C 1233.312-113.656, 1210.688-123.00, 1183.968-123.00
|
112
|
+
L 96.032-123.00 c-26.72,0.00-49.344,9.344-68.032,27.968C 9.312-76.344, 0.032-53.656, 0.032-27.00L 0.032,1317.00 c0.00,26.592, 9.28,49.344, 27.968,68.00
|
113
|
+
C 46.688,1403.592, 69.312,1413.00, 96.032,1413.00L 640.00,1413.00 c 26.656,0.00, 56.032-6.656, 87.968-20.00c 32.032-13.408, 57.344-29.344, 76.064-48.00l 408.00-408.032
|
114
|
+
c 18.624-18.624, 34.656-43.936, 48.00-75.968C 1273.344,828.968, 1279.968,799.688, 1279.968,773.032zM 384.00,645.00l0.00-128.00 L 256.00,517.00 l0.00-341.344 C 256.00,152.136, 275.136,133.00, 298.688,133.00l 170.656,0.00 C 492.864,133.00, 512.00,152.136, 512.00,175.656L 512.00,517.00 l0.00,128.00 L 384.00,645.00 z M 448.00,261.00l-128.00,0.00 l0.00,128.00 l 128.00,0.00 L 448.00,261.00 z M 384.00,645.00L 256.00,645.00
|
115
|
+
l0.00,128.00 l 128.00,0.00 L 384.00,645.00 z M 512.00,773.00l-128.00,0.00 l0.00,128.00 l 128.00,0.00 L 512.00,773.00 z M 384.00,901.00L 256.00,901.00 l0.00,128.00 l 128.00,0.00 L 384.00,901.00 z M 512.00,1029.00l-128.00,0.00 l0.00,128.00 l 128.00,0.00 L 512.00,1029.00 z" horiz-adv-x="1280" />
|
116
|
+
<glyph unicode="" d="M0.00,1413.00l 139.712-1497.664L 766.944-251.00l 629.12,166.56L 1536.00,1413.00L0.00,1413.00 z M 1199.904,912.20l-0.576,0.00 L 768.00,727.048l 415.68,0.00 l-49.056-555.328l-366.112-102.656
|
117
|
+
L 768.192,69.00l-0.224,0.00 L 767.68,69.00 l-366.496,102.752l-25.024,284.128l 179.584,0.00 l 12.80-144.48l 199.136-54.304l 0.512,0.256l 199.20,54.272l 20.736,234.496L 368.128,546.12
|
118
|
+
l-12.384,180.928L 800.00,912.20L 351.008,912.20 L 320.00,1093.00l 896.00,0.00 L 1199.904,912.20z" horiz-adv-x="1536" />
|
119
|
+
<glyph unicode="" d="M0.00,1413.00l 139.712-1497.664L 766.944-251.00l 629.12,166.56L 1536.00,1413.00L0.00,1413.00 z M 1199.904,912.20l-0.576,0.00 L 515.584,912.20 l 16.224-185.12L 1183.68,727.08 l-49.056-555.328
|
120
|
+
l-366.112-102.656L 768.192,69.00l-0.224,0.00 L 767.68,69.00 l-366.496,102.752l-25.024,284.128l 179.584,0.00 l 12.80-144.48l 199.136-54.304l 0.512,0.256l 199.20,54.272
|
121
|
+
l 20.736,234.496L 368.128,546.12 L 320.00,1093.00l 896.00,0.00 L 1199.904,912.20z" horiz-adv-x="1536" />
|
122
|
+
<glyph unicode="" d="M 1627.136,1035.208L 861.824,1406.184C 852.448,1410.728, 842.208,1413.00, 832.00,1413.00s-20.448-2.272-29.824-6.816L 36.864,1035.208
|
123
|
+
c-22.624-10.944-36.832-33.344-36.832-57.824c0.00-24.512, 14.24-46.88, 36.832-57.824L 802.176,548.68c 9.376-4.576, 19.584-6.816, 29.824-6.816
|
124
|
+
s 20.448,2.24, 29.824,6.816l 765.312,370.912c 22.592,10.944, 36.832,33.312, 36.832,57.824C 1663.968,1001.864, 1649.728,1024.296, 1627.136,1035.208zM 36.832,587.176l 765.344-370.976c 9.376-4.576, 19.584-6.816, 29.824-6.816s 20.448,2.24, 29.824,6.816l 765.344,370.976
|
125
|
+
C 1649.76,598.12, 1664.00,620.488, 1664.00,645.00c0.00,24.48-14.24,46.848-36.80,57.792l-34.112,16.544c-9.376,4.608-19.616,6.88-29.856,6.88
|
126
|
+
s-20.448-2.272-29.824-6.848L 832.00,379.304L 130.56,719.336c-9.376,4.576-19.616,6.848-29.824,6.848c-10.208,0.00-20.448-2.272-29.856-6.88
|
127
|
+
l-34.08-16.544C 14.24,691.848,0.00,669.48,0.00,645.00C0.00,620.488, 14.24,598.12, 36.832,587.176zM 1627.072,370.408l-34.048,16.512c-9.344,4.544-19.552,6.816-29.792,6.816s-20.448-2.272-29.824-6.816L 832.00,46.92L 130.56,386.92
|
128
|
+
c-9.376,4.544-19.616,6.816-29.824,6.816s-20.416-2.272-29.792-6.816l-34.016-16.512c-22.592-10.912-36.864-33.28-36.864-57.792
|
129
|
+
c0.00-24.48, 14.24-46.912, 36.832-57.856l 765.312-370.976C 811.552-120.728, 821.792-123.00, 832.00-123.00s 20.448,2.272, 29.824,6.816l 765.28,370.976
|
130
|
+
c 22.592,10.944, 36.832,33.376, 36.832,57.824C 1663.936,337.096, 1649.664,359.464, 1627.072,370.408z" horiz-adv-x="1664" />
|
131
|
+
<glyph unicode="" d="M 1637.856,1042.504l-390.08,233.408c-18.048,12.128-36.064,12.128-55.072,0.00L 832.448,1058.12L 471.328,1275.912c-19.008,12.128-37.024,12.128-55.072,0.00
|
132
|
+
L 26.208,1042.504C 9.024,1032.104,0.00,1016.488,0.00,995.656l0.00-935.36 c0.00-19.936, 9.024-36.416, 28.00-47.68c 18.08-9.60, 36.128-9.60, 55.104,0.80l 360.224,216.96
|
133
|
+
l 361.152-216.96c 18.976-11.232, 36.992-11.232, 55.968,0.00l 360.256,216.96l 361.152-216.96c 8.128-5.152, 18.048-7.744, 28.00-7.744
|
134
|
+
c 8.128,0.00, 17.12,2.592, 27.072,6.944C 1654.976,23.88, 1664.00,39.464, 1664.00,60.296l0.00,935.36 C 1664.00,1016.488, 1654.976,1032.104, 1637.856,1042.504z M 390.016,1132.712
|
135
|
+
l0.00-807.776 l-280.768-168.352L 109.248,964.392 L 390.016,1132.712z M 777.408,964.392l0.00-807.808 l-279.904,168.352L 497.504,1132.712 L 777.408,964.392z M 1166.496,1132.712l0.00-807.776
|
136
|
+
l-279.904-168.352L 886.592,964.392 L 1166.496,1132.712z M 1555.584,964.392l0.00-807.808 l-280.704,168.352L 1274.88,1132.712 L 1555.584,964.392z" />
|
137
|
+
<glyph unicode="" d="M 659.36,407.24c-66.144,66.176-98.688,144.672-98.688,237.76c0.00,185.024, 151.392,336.448, 336.448,336.448S 1232.448,830.024, 1232.448,645.00
|
138
|
+
s-150.272-336.448-335.328-336.448C 804.064,308.552, 725.568,341.096, 659.36,407.24z M 1673.152,1093.544L 897.12,1093.544 c-188.416,0.00-352.128-116.64-418.272-285.952
|
139
|
+
L 228.768,1241.64C 395.872,1428.872, 635.84,1541.00, 897.12,1541.00C 1221.216,1541.00, 1512.736,1366.088, 1673.152,1093.544z M 897.12,197.576c 24.672,0.00, 47.136,1.12, 67.296,4.48
|
140
|
+
l-251.232-433.984c-201.824,41.504-383.488,154.784-509.088,308.416C 78.496,228.968,0.00,433.064,0.00,645.00c0.00,160.352, 40.352,309.504, 120.00,448.544l 385.76-667.232
|
141
|
+
C 583.136,287.272, 731.168,197.576, 897.12,197.576z M 1193.184,981.448l 533.792,0.00 C 1770.72,873.768, 1792.00,761.64, 1792.00,645.00
|
142
|
+
c0.00-242.208-100.896-473.216-261.312-633.568C 1370.368-148.952, 1139.36-251.00, 897.12-251.00l 384.64,667.232c 41.504,70.656, 62.816,146.944, 62.816,228.768
|
143
|
+
C 1344.576,776.232, 1287.36,896.20, 1193.184,981.448z" />
|
144
|
+
<glyph unicode="" d="M 1767.424,821.448l 20.864,133.344c 0.96-6.976, 1.984-17.92, 2.976-30.848c 1.984-27.84,0.00-125.376-8.928-208.00
|
145
|
+
c-8.928-83.584-34.816-211.968-73.664-315.424c-39.808-103.52-110.432-224.928-199.008-314.496c-88.608-89.568-224.928-169.184-384.16-208.96
|
146
|
+
c-58.72-12.928-112.48-20.896-163.20-23.904c-0.992,0.00-3.008,0.00-6.016,0.00c-2.976-0.96-5.984-0.96-6.976-0.96c-47.744-4.00-95.488-4.00-142.304,0.00
|
147
|
+
c-273.664,20.864-507.52,164.192-658.784,423.936c-72.64,125.376-112.448,243.808-120.416,355.296c-4.96-30.88-10.944-61.728-10.944-74.656l-0.992-8.928
|
148
|
+
c-8.96,130.336, 0.992,238.848, 27.872,324.416c-16.928-30.848-32.832-69.664-39.808-86.56L0.00,772.68c 18.912,106.464, 43.776,189.056, 72.672,247.776
|
149
|
+
c0.00,4.96, 4.00,14.944, 11.936,29.888c 7.968,14.912, 18.912,31.808, 31.84,49.728l0.00,9.984 c-4.992,82.592, 7.968,159.232, 25.888,203.04
|
150
|
+
c 17.92,43.776, 40.80,77.60, 53.728,90.56c 6.976,6.944, 9.984,9.952, 10.976,9.952l0.00-0.992 c 1.984-54.752, 30.848-108.48, 87.552-159.232
|
151
|
+
c 12.928-3.008, 25.888-4.96, 37.856-4.96c 60.672,12.928, 121.408,11.936, 183.072-4.00c 38.848,49.792, 100.576,82.592, 185.12,97.536
|
152
|
+
c 33.856,4.96, 50.752,5.984, 51.744,1.984l0.00-0.96 c-68.672-38.816-108.48-96.544-121.408-171.168c 8.928-20.896, 19.904-41.824, 51.744-62.72
|
153
|
+
c 14.944-10.944, 31.84-15.936, 48.768-15.936l 77.60,0.00 l0.00,0.00c 38.816-0.96, 59.712-4.96, 61.728-10.944c 0.992,0.00, 0.992-0.992, 0.992-1.984l0.00,0.00l0.00-0.992
|
154
|
+
c0.00-1.984,0.00-2.976, 0.992-3.968l0.00-8.928 l0.00-0.992 l0.00-3.968 l0.00-0.992 c-0.992-0.992-0.992-0.992-0.992-1.984l0.00-1.984 l0.00-0.992
|
155
|
+
c-0.992-21.92-9.984-38.816-26.88-51.744l-0.992-0.992c-0.992-0.992-0.992-0.992-1.984-0.992c-0.992-0.992-0.992-0.992-0.992-1.984
|
156
|
+
c-0.96,0.00-2.976-0.992-5.984-2.976c-6.976-4.00-18.912-10.976-27.872-17.952c-50.752-30.848-108.48-70.624-112.448-83.552l0.00,0.00l0.00-1.984 l-0.992,0.00
|
157
|
+
c 11.936-35.84, 19.904-83.584, 14.944-90.56c 0.992-12.928, 0.992-24.864,0.00-33.856c-24.864,13.952-51.744,22.912-78.624,26.88
|
158
|
+
c-0.992,0.00-15.904-4.96-19.872-6.976c-4.992-1.984-16.928-8.928-21.92-12.928c-4.96-4.96-10.976-13.952-13.952-21.92
|
159
|
+
c-8.96-22.88-9.984-38.816-5.984-53.76c 3.968-15.904, 13.952-38.784, 41.824-62.656c 26.848-23.904, 76.608-58.752, 129.344-62.72
|
160
|
+
c 51.744-4.96, 76.64,4.96, 121.44,24.864c 21.888,8.96, 36.768,14.944, 45.76,16.928c 75.648,19.904, 138.304-10.976, 171.20-47.776
|
161
|
+
c 24.864-28.832, 5.984-62.688-28.864-54.72c-1.984,0.992-4.992,1.984-9.984,0.992s-7.968-1.984-9.952-0.992
|
162
|
+
c-1.984,0.00-5.984-0.992-10.976-3.008c-4.96-2.976-8.928-3.968-10.912-4.96c-4.96-1.984-18.912-10.944-25.888-14.944
|
163
|
+
c-6.976-3.968-20.896-12.928-28.864-18.912s-23.872-17.92-34.848-24.864l-0.992,0.00 c-54.72-40.768-184.096-60.672-252.736-44.768
|
164
|
+
c 0.96,0.00, 0.96-0.992, 1.984-1.984c 55.744-36.832, 75.648-51.776, 148.288-87.584c 72.672-35.808, 118.432-45.792, 198.048-45.792
|
165
|
+
c 79.584-0.992, 142.272,25.888, 218.944,92.576c 38.784,32.832, 74.624,75.616, 109.472,128.384c 10.944,20.896, 15.904,23.872, 14.944,8.928
|
166
|
+
c0.00-4.96-7.968-40.80-23.904-109.44c-3.968-14.944-4.96-22.912-3.008-21.92c 40.80,27.872, 72.672,95.52, 84.608,168.192
|
167
|
+
c 10.944,72.64, 15.936,158.208, 4.96,221.92c 25.888-11.936, 45.824-34.848, 59.712-69.696c 1.984-3.968, 3.008-4.928, 4.00-2.976
|
168
|
+
c 28.864,87.584, 34.848,253.792, 6.976,348.352c 26.88-7.968, 57.696-44.80, 70.624-69.696l 10.976-19.904c-30.88,148.288-114.432,257.76-250.784,326.432
|
169
|
+
c-41.824,20.896-91.552,37.824-149.28,50.72c 52.736,15.936, 120.416,24.864, 155.264,24.864l 24.864,0.992c-12.928,19.904-57.728,40.80-104.48,53.76
|
170
|
+
c-46.784,12.928-93.60,25.888-123.392,31.872c-14.944,2.976-22.912,3.968-22.912,3.968l-4.96,0.00 l 5.984,0.00 c 8.96,3.008, 23.904,4.96, 42.784,5.984
|
171
|
+
c 37.824,3.008, 151.264-9.952, 267.68-48.768c 64.704-20.896, 125.408-65.696, 161.248-108.48c 34.816-42.784, 60.704-84.608, 71.648-109.44l 7.936-18.944
|
172
|
+
c-0.992,3.008,0.00,8.96, 0.992,16.928c 1.984,14.912-8.928,72.64-32.832,128.384c 0.992,0.00, 3.008,0.00, 4.00,0.00c 0.992-0.992, 4.96-3.008, 9.952-7.968
|
173
|
+
c 4.992-4.96, 9.984-11.936, 15.936-20.896c 10.912-17.92, 30.848-58.72, 51.712-111.424c 20.896-54.752, 45.824-189.12, 57.76-273.696L 1767.424,821.448z" />
|
174
|
+
<glyph unicode="" d="M 641.184,475.016l 710.88,0.00 l 434.528,0.00 c 3.264,33.536, 5.44,63.808, 5.44,90.816c0.00,146.112-36.832,280.256-110.528,404.672
|
175
|
+
c 73.696,189.312, 68.256,353.728-26.016,447.84c-60.672,60.608-186.368,74.656-351.072,40.064C 1220.928,1441.128, 1134.24,1413.00, 1043.232,1372.968
|
176
|
+
c-27.104,1.088-47.68,2.112-61.76,2.112c-186.40,0.00-366.272-65.984-501.728-174.144c-135.456-108.192-239.52-263.936-282.848-438.112
|
177
|
+
c 121.344,155.744, 247.072,263.968, 410.72,341.856c-5.472-4.32-24.96-23.808-58.528-57.344c-34.688-34.592-55.264-54.048-60.672-59.456
|
178
|
+
C 319.328,819.048, 180.608,611.336, 103.68,430.696c-76.928-180.672-114.88-350.496-100.768-470.592c 14.08-121.184, 82.336-186.08, 198.304-205.568
|
179
|
+
c 116.00-19.488, 254.688,12.96, 413.984,90.88c 117.024-58.432, 239.488-87.648, 366.272-87.648c 232.96,0.00, 450.784,99.52, 600.32,265.088
|
180
|
+
c 74.784,82.176, 130.016,176.352, 165.824,282.336L 1309.792,305.192 c-60.672-113.60-179.872-187.168-313.152-187.168c-133.312,0.00-252.512,73.568-313.152,187.168
|
181
|
+
c-28.192,51.904-42.272,108.192-42.272,168.768L 641.216,475.016 z M 1321.76,687.048L 642.272,687.048 c 9.728,180.672, 158.176,321.312, 339.20,321.312
|
182
|
+
C 1162.40,1008.36, 1311.968,867.72, 1321.76,687.048z M 1652.256,1328.584c 59.552-61.664, 62.816-168.736, 7.552-319.136
|
183
|
+
c-91.008,138.432-222.112,245.60-377.088,307.264C 1450.656,1390.248, 1579.616,1396.744, 1652.256,1328.584z M 173.024-148.12c-76.96,82.208-56.32,241.28, 47.68,443.552
|
184
|
+
c 60.672-176.352, 183.136-323.456, 343.52-421.92C 385.44-207.64, 247.808-217.336, 173.024-148.12z" />
|
185
|
+
<glyph unicode="" d="M 841.024,1541.00C 598.816,1541.00, 384.64,1450.152, 236.64,1297.672C 88.608,1144.04,0.00,916.36,0.00,652.84c0.00-187.296, 53.824-371.20, 153.632-522.56
|
186
|
+
c 98.688-151.392, 233.248-269.152, 409.312-333.056C 651.52-235.32, 743.456-251.00, 841.024-251.00c 197.376,0.00, 381.28,68.416, 516.96,182.784
|
187
|
+
c 135.68,114.40, 238.88,266.912, 291.552,446.304c 25.824,88.608, 39.264,180.576, 39.264,274.752c0.00,264.672-90.816,493.408-241.088,645.952
|
188
|
+
C 1297.44,1451.272, 1082.144,1541.00, 841.024,1541.00z M 1152.768,668.552c0.00-77.376-1.12-127.84-5.60-209.728c-4.512-81.856-12.352-136.80-26.912-210.816
|
189
|
+
c-14.592-74.016-34.784-123.36-66.176-176.064c-32.512-53.856-70.624-85.216-124.48-106.528c-26.912-10.08-56.064-15.712-88.608-15.712
|
190
|
+
c-62.784,0.00-116.608,23.552-155.84,56.096c-39.264,32.512-69.536,91.936-90.848,145.792c-21.312,53.824-34.784,136.80-42.624,198.464
|
191
|
+
c-7.84,61.696-12.32,156.992-13.44,215.328c-1.12,29.152-1.12,63.936-1.12,103.20c0.00,108.736, 3.328,187.264, 13.44,285.952
|
192
|
+
c 10.08,97.568, 26.944,165.984, 58.304,235.488c 30.272,69.536, 70.656,111.04, 130.08,137.952c 30.272,13.44, 63.904,20.192, 102.016,20.192
|
193
|
+
c 76.288,0.00, 137.952-29.152, 180.576-74.016c 42.592-45.984, 75.136-118.848, 94.176-193.984c 17.952-75.136, 30.272-177.152, 34.784-265.76
|
194
|
+
C 1151.648,770.60, 1152.768,721.256, 1152.768,668.552z" />
|
195
|
+
<glyph unicode="" d="M 841.056,1428.872c-39.264,0.00-80.736-3.36-124.48-8.992l-2.24,4.512c 50.464,36.992, 32.544,84.096, 2.24,103.168
|
196
|
+
C 702.016,1536.488, 684.064,1541.00, 662.752,1541.00c-8.96,0.00-17.952-1.12-28.032-3.36c-52.672-12.32-87.456-49.344-79.616-88.576
|
197
|
+
c 5.632-23.552, 23.552-39.264, 53.856-47.136l0.00-5.60 C 253.44,1294.28,0.00,969.096,0.00,588.936c0.00-227.648, 96.448-445.184, 246.72-594.336S 612.288-251.00, 841.056-251.00
|
198
|
+
c 227.648,0.00, 444.064,96.448, 594.336,245.60c 150.24,149.152, 245.60,366.688, 245.60,594.336c0.00,227.616-95.328,445.184-245.60,594.336
|
199
|
+
C 1285.12,1332.392, 1068.704,1428.872, 841.056,1428.872z M 583.136,1455.784c-4.48,22.40, 21.312,47.104, 58.304,54.944c 8.992,1.12, 15.712,2.24, 21.312,2.24
|
200
|
+
c 28.032,0.00, 50.464-12.352, 53.856-29.152c 2.208-13.472-4.512-25.792-20.192-38.112c-25.824,19.072-61.696,11.232-79.616-16.80
|
201
|
+
C 596.608,1434.472, 585.376,1443.432, 583.136,1455.784z M 1290.752,138.12c-77.376-77.376-167.104-130.08-271.36-160.352l-74.016,119.968l-19.072-140.16
|
202
|
+
c-31.392-3.36-59.424-5.632-85.216-5.632c-170.464,0.00-330.816,66.144-450.816,186.144c-77.376,77.376-131.20,168.224-161.472,272.512l 119.968,73.984
|
203
|
+
l-139.04,19.104c-4.512,28.032-6.752,57.184-6.752,85.216c0.00,348.736, 248.96,549.472, 458.656,612.288l 74.016-121.12l 19.072,140.192
|
204
|
+
c 31.392,3.36, 59.424,5.60, 85.216,5.60c 170.464,0.00, 330.816-66.144, 450.816-186.112c 77.376-77.408, 131.20-168.224, 161.472-272.512l-119.968-74.016
|
205
|
+
l 139.04-19.072c 4.512-28.032, 6.752-56.064, 6.752-85.216C 1478.016,415.112, 1415.232,264.84, 1290.752,138.12z M 1013.76,679.752l 262.40,344.288L 931.904,762.76
|
206
|
+
c-25.824,13.472-53.856,21.312-83.008,22.432l-89.728,187.264L 753.60,765.00c-21.312-10.08-41.504-25.824-60.576-47.104l-111.008,39.232l 80.704-85.216
|
207
|
+
c-10.08-22.40-16.80-47.104-17.952-75.136l-187.296-89.728l 207.456-4.48c0.00-1.12, 1.12-3.36, 2.24-4.512l-262.40-344.288l 344.256,261.312
|
208
|
+
c 25.824-13.472, 53.856-21.312, 83.008-22.432l 89.728-187.296l 5.60,207.456c 23.552,12.352, 43.744,28.032, 60.576,47.104l 111.008-39.264l-80.704,85.216
|
209
|
+
c 10.08,22.432, 16.80,47.136, 17.952,75.168l 187.296,89.696l-207.456,5.632C 1016.00,677.544, 1014.88,678.664, 1013.76,679.752z M 841.056,757.128L 841.056,762.76
|
210
|
+
L 841.056,757.128 z M 805.184,753.768c 12.32,2.24, 24.672,3.328, 35.872,3.328c 2.24,0.00, 5.60,0.00, 11.232,0.00c 4.48-1.088, 7.84-1.088, 10.08-1.088l0.00,0.00
|
211
|
+
c 14.56-2.24, 29.152-6.752, 43.712-12.352l-124.48-95.328l-95.328-125.60c-4.512,10.08-7.84,21.28-10.08,31.36
|
212
|
+
C 657.152,645.00, 714.336,734.728, 805.184,753.768z M 928.544,445.384L 928.544,445.384c-36.992-21.28-62.816-24.672-88.608-24.672
|
213
|
+
c-2.24,0.00-5.60,0.00-10.08,1.12c-5.60,0.00-8.96,0.00-11.232,0.00l0.00,1.12 l0.00-1.12 c-14.56,2.24-29.152,6.72-43.712,12.352l 124.48,95.328l 95.328,125.60
|
214
|
+
c 4.512-10.08, 7.84-21.312, 10.08-31.392C 1019.36,553.064, 987.968,481.288, 928.544,445.384z" />
|
215
|
+
<glyph unicode="" d="M 1536.00,1125.00l0.00-960.00 c0.00-79.328-28.224-147.20-84.64-203.36C 1395.20-94.776, 1327.328-123.00, 1248.00-123.00L 288.00-123.00 c-79.328,0.00-147.168,28.224-203.52,84.64
|
216
|
+
C 28.128,17.80,0.00,85.672,0.00,165.00L0.00,1125.00 c0.00,79.328, 28.128,147.136, 84.48,203.552C 140.832,1384.872, 208.672,1413.00, 288.00,1413.00l 960.00,0.00 c 79.328,0.00, 147.20-28.128, 203.36-84.448
|
217
|
+
C 1507.776,1272.136, 1536.00,1204.328, 1536.00,1125.00z M 494.464,371.496c-27.136,27.104-60.16,40.80-98.976,40.80c-38.688,0.00-71.648-13.728-98.848-40.80
|
218
|
+
C 269.504,344.36, 256.00,311.336, 256.00,272.52c0.00-38.688, 13.504-71.68, 40.672-98.88C 323.84,146.504, 356.80,133.00, 395.488,133.00c 38.816,0.00, 71.84,13.504, 98.976,40.672
|
219
|
+
c 27.104,27.20, 40.768,60.192, 40.768,98.88C 535.264,311.336, 521.568,344.36, 494.464,371.496z M 848.992,405.672
|
220
|
+
c-32.64,70.816-76.672,133.728-131.968,188.448c-54.72,55.328-117.60,99.36-188.416,132.00c-70.784,32.672-144.96,52.32-222.432,58.432L 302.464,784.552
|
221
|
+
c-12.576,0.00-23.04-4.00-31.264-12.224C 261.12,763.528, 256.00,752.168, 256.00,738.088l0.00-98.208 c0.00-12.192, 4.00-22.432, 12.00-31.36
|
222
|
+
c 8.00-8.64, 18.08-13.44, 30.176-14.40c 111.04-10.592, 205.952-55.488, 284.672-134.208c 78.688-78.72, 123.584-173.60, 134.176-284.672
|
223
|
+
c 0.928-12.096, 5.792-22.176, 14.464-30.176C 740.352,137.00, 750.592,133.00, 762.816,133.00l 98.176,0.00 c 14.048,0.00, 25.504,5.12, 34.176,15.232
|
224
|
+
c 9.312,9.728, 13.312,21.28, 12.352,34.976C 901.28,260.68, 881.632,334.92, 848.992,405.672z M 1192.672,546.472
|
225
|
+
c-51.936,116.032-123.136,219.20-213.888,309.408c-90.24,90.72-193.28,161.92-309.312,213.856c-116.128,51.872-237.824,80.96-364.80,87.296L 302.464,1157.032
|
226
|
+
c-12.576,0.00-23.264-4.416-32.00-13.152C 260.832,1135.144, 256.00,1124.008, 256.00,1110.504l0.00-104.00 c0.00-12.128, 4.192-22.816, 12.672-31.776
|
227
|
+
c 8.512-8.928, 18.784-13.60, 30.88-14.08c 104.288-6.24, 203.328-31.04, 297.056-74.112c 93.92-43.136, 175.296-99.296, 244.448-168.416
|
228
|
+
c 69.088-69.12, 125.216-150.592, 168.384-244.448c 43.136-93.76, 67.552-192.80, 73.344-297.12c 0.608-12.064, 5.248-22.336, 14.208-30.88
|
229
|
+
C 1105.92,137.192, 1116.672,133.00, 1129.408,133.00l 103.968,0.00 c 13.472,0.00, 24.672,4.832, 33.44,14.464c 9.728,9.728, 14.016,21.056, 13.024,34.176
|
230
|
+
C 1273.60,308.68, 1244.544,430.376, 1192.672,546.472z" horiz-adv-x="1536" />
|
231
|
+
<glyph unicode=" " horiz-adv-x="896" />
|
232
|
+
<glyph class="hidden" unicode="" d="M0,1541L 1792 -251L0 -251 z" horiz-adv-x="0" />
|
233
|
+
</font></defs></svg>
|