Compare commits
10 Commits
242274a779
...
ad5f761610
| Author | SHA1 | Date | |
|---|---|---|---|
| ad5f761610 | |||
| d10efaae05 | |||
| 0191485de1 | |||
| 47e342dd22 | |||
| 49155a44d4 | |||
| 679950e082 | |||
| d4abee9a72 | |||
| c879fec870 | |||
| 0e70e21a4d | |||
| 27431971dc |
18091
doc/ARTES FINALES/1 AF TARJETAS AGUA.pdf
Normal file
2565
doc/ARTES FINALES/2 AFTARJETAS AGUA.pdf
Normal file
1284
doc/ARTES FINALES/LOGO BUENO TIENDA A.OSCURO AZUL.pdf
Normal file
1268
doc/ARTES FINALES/LOGO BUENO TIENDA GRIS AZUL.pdf
Normal file
1184
doc/ARTES FINALES/LOGO BUENO TIENDA NEGRO BASE.pdf
Normal file
1005
doc/ARTES FINALES/MANGA CAMISETA AWA.pdf
Normal file
1248
doc/ARTES FINALES/negativo LOGO CAMISETA TIENDA AGUA con slogan.pdf
Normal file
1468
doc/ARTES FINALES/positivo LOGO CAMISETA TIENDA AGUA con slogan.pdf
Normal file
BIN
doc/FOTOS/ALPARGATES.jpg
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
doc/FOTOS/AWA BLANCAS.jpg
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
doc/FOTOS/AWA GRIS.jpg
Normal file
|
After Width: | Height: | Size: 1.9 MiB |
BIN
doc/FOTOS/AWA NEGRA.jpg
Normal file
|
After Width: | Height: | Size: 3.1 MiB |
BIN
doc/FOTOS/BOLSOS.jpg
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
doc/FOTOS/FAMOUS.jpg
Normal file
|
After Width: | Height: | Size: 7.3 MiB |
BIN
doc/FOTOS/HUGO Y BARBI INAGURACION.jpg
Normal file
|
After Width: | Height: | Size: 90 KiB |
BIN
doc/FOTOS/INVENTOS.jpg
Normal file
|
After Width: | Height: | Size: 5.9 MiB |
BIN
doc/FOTOS/NIXON.jpg
Normal file
|
After Width: | Height: | Size: 1.8 MiB |
BIN
doc/FOTOS/TABLA.jpg
Normal file
|
After Width: | Height: | Size: 104 KiB |
BIN
doc/FOTOS/TIENDA DE NOCHE.jpg
Normal file
|
After Width: | Height: | Size: 71 KiB |
BIN
doc/FOTOS/TIENDA ENTRADA.jpg
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
doc/FOTOS/alpargatas1.jpeg
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
doc/FOTOS/alpargatas2.jpeg
Normal file
|
After Width: | Height: | Size: 104 KiB |
BIN
doc/FOTOS/havaianas1.jpeg
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
doc/Fuentes/handwriting-markerlitterbox-icg-regular.ttf
Normal file
BIN
doc/Fuentes/hectic.ttf
Normal file
BIN
doc/Logo AWA.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
doc/Logo-AWA-2.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
doc/PSD/ESCUELA.psd
Normal file
BIN
doc/PSD/FILOSOFIA.psd
Normal file
BIN
doc/PSD/GALERIA.psd
Normal file
BIN
doc/PSD/LA TIENDA.psd
Normal file
BIN
doc/PSD/LINKS.psd
Normal file
BIN
doc/PSD/MONITORES.psd
Normal file
BIN
doc/PSD/Plantilla WEB agua.psd
Normal file
BIN
doc/PSD/TARIFAS.psd
Normal file
BIN
doc/entrada.gif
Normal file
|
After Width: | Height: | Size: 84 KiB |
540
src/.htaccess
Normal file
@ -0,0 +1,540 @@
|
||||
# Apache configuration file
|
||||
# httpd.apache.org/docs/2.2/mod/quickreference.html
|
||||
|
||||
# Note .htaccess files are an overhead, this logic should be in your Apache
|
||||
# config if possible: httpd.apache.org/docs/2.2/howto/htaccess.html
|
||||
|
||||
# Techniques in here adapted from all over, including:
|
||||
# Kroc Camen: camendesign.com/.htaccess
|
||||
# perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/
|
||||
# Sample .htaccess file of CMS MODx: modxcms.com
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Better website experience for IE users
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Force the latest IE version, in various cases when it may fall back to IE7 mode
|
||||
# github.com/rails/rails/commit/123eb25#commitcomment-118920
|
||||
# Use ChromeFrame if it's installed for a better experience for the poor IE folk
|
||||
|
||||
<IfModule mod_headers.c>
|
||||
Header set X-UA-Compatible "IE=Edge,chrome=1"
|
||||
# mod_headers can't match by content-type, but we don't want to send this header on *everything*...
|
||||
<FilesMatch "\.(js|css|gif|png|jpe?g|pdf|xml|oga|ogg|m4a|ogv|mp4|m4v|webm|svg|svgz|eot|ttf|otf|woff|ico|webp|appcache|manifest|htc|crx|oex|xpi|safariextz|vcf)$" >
|
||||
Header unset X-UA-Compatible
|
||||
</FilesMatch>
|
||||
</IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Cross-domain AJAX requests
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Serve cross-domain Ajax requests, disabled by default.
|
||||
# enable-cors.org
|
||||
# code.google.com/p/html5security/wiki/CrossOriginRequestSecurity
|
||||
|
||||
# <IfModule mod_headers.c>
|
||||
# Header set Access-Control-Allow-Origin "*"
|
||||
# </IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# CORS-enabled images (@crossorigin)
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Send CORS headers if browsers request them; enabled by default for images.
|
||||
# developer.mozilla.org/en/CORS_Enabled_Image
|
||||
# blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
|
||||
# hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
|
||||
# wiki.mozilla.org/Security/Reviews/crossoriginAttribute
|
||||
|
||||
<IfModule mod_setenvif.c>
|
||||
<IfModule mod_headers.c>
|
||||
# mod_headers, y u no match by Content-Type?!
|
||||
<FilesMatch "\.(gif|png|jpe?g|svg|svgz|ico|webp)$">
|
||||
SetEnvIf Origin ":" IS_CORS
|
||||
Header set Access-Control-Allow-Origin "*" env=IS_CORS
|
||||
</FilesMatch>
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Webfont access
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Allow access from all domains for webfonts.
|
||||
# Alternatively you could only whitelist your
|
||||
# subdomains like "subdomain.example.com".
|
||||
|
||||
<IfModule mod_headers.c>
|
||||
<FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css)$">
|
||||
Header set Access-Control-Allow-Origin "*"
|
||||
</FilesMatch>
|
||||
</IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Proper MIME type for all files
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# JavaScript
|
||||
# Normalize to standard type (it's sniffed in IE anyways)
|
||||
# tools.ietf.org/html/rfc4329#section-7.2
|
||||
AddType application/javascript js jsonp
|
||||
AddType application/json json
|
||||
|
||||
# Audio
|
||||
AddType audio/ogg oga ogg
|
||||
AddType audio/mp4 m4a f4a f4b
|
||||
|
||||
# Video
|
||||
AddType video/ogg ogv
|
||||
AddType video/mp4 mp4 m4v f4v f4p
|
||||
AddType video/webm webm
|
||||
AddType video/x-flv flv
|
||||
|
||||
# SVG
|
||||
# Required for svg webfonts on iPad
|
||||
# twitter.com/FontSquirrel/status/14855840545
|
||||
AddType image/svg+xml svg svgz
|
||||
AddEncoding gzip svgz
|
||||
|
||||
# Webfonts
|
||||
AddType application/vnd.ms-fontobject eot
|
||||
AddType application/x-font-ttf ttf ttc
|
||||
AddType font/opentype otf
|
||||
AddType application/x-font-woff woff
|
||||
|
||||
# Assorted types
|
||||
AddType image/x-icon ico
|
||||
AddType image/webp webp
|
||||
AddType text/cache-manifest appcache manifest
|
||||
AddType text/x-component htc
|
||||
AddType application/xml rss atom xml rdf
|
||||
AddType application/x-chrome-extension crx
|
||||
AddType application/x-opera-extension oex
|
||||
AddType application/x-xpinstall xpi
|
||||
AddType application/octet-stream safariextz
|
||||
AddType application/x-web-app-manifest+json webapp
|
||||
AddType text/x-vcard vcf
|
||||
AddType application/x-shockwave-flash swf
|
||||
AddType text/vtt vtt
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Allow concatenation from within specific js and css files
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# e.g. Inside of script.combined.js you could have
|
||||
# <!--#include file="libs/jquery-1.5.0.min.js" -->
|
||||
# <!--#include file="plugins/jquery.idletimer.js" -->
|
||||
# and they would be included into this single file.
|
||||
|
||||
# This is not in use in the boilerplate as it stands. You may
|
||||
# choose to use this technique if you do not have a build process.
|
||||
|
||||
#<FilesMatch "\.combined\.js$">
|
||||
# Options +Includes
|
||||
# AddOutputFilterByType INCLUDES application/javascript application/json
|
||||
# SetOutputFilter INCLUDES
|
||||
#</FilesMatch>
|
||||
|
||||
#<FilesMatch "\.combined\.css$">
|
||||
# Options +Includes
|
||||
# AddOutputFilterByType INCLUDES text/css
|
||||
# SetOutputFilter INCLUDES
|
||||
#</FilesMatch>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Gzip compression
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
<IfModule mod_deflate.c>
|
||||
|
||||
# Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/
|
||||
<IfModule mod_setenvif.c>
|
||||
<IfModule mod_headers.c>
|
||||
SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
|
||||
RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
|
||||
</IfModule>
|
||||
</IfModule>
|
||||
|
||||
# Compress all output labeled with one of the following MIME-types
|
||||
<IfModule mod_filter.c>
|
||||
AddOutputFilterByType DEFLATE application/atom+xml \
|
||||
application/javascript \
|
||||
application/json \
|
||||
application/rss+xml \
|
||||
application/vnd.ms-fontobject \
|
||||
application/x-font-ttf \
|
||||
application/xhtml+xml \
|
||||
application/xml \
|
||||
font/opentype \
|
||||
image/svg+xml \
|
||||
image/x-icon \
|
||||
text/css \
|
||||
text/html \
|
||||
text/plain \
|
||||
text/x-component \
|
||||
text/xml
|
||||
</IfModule>
|
||||
|
||||
</IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Expires headers (for better cache control)
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# These are pretty far-future expires headers.
|
||||
# They assume you control versioning with filename-based cache busting
|
||||
# Additionally, consider that outdated proxies may miscache
|
||||
# www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/
|
||||
|
||||
# If you don't use filenames to version, lower the CSS and JS to something like
|
||||
# "access plus 1 week".
|
||||
|
||||
<IfModule mod_expires.c>
|
||||
ExpiresActive on
|
||||
|
||||
# Perhaps better to whitelist expires rules? Perhaps.
|
||||
ExpiresDefault "access plus 1 month"
|
||||
|
||||
# cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5)
|
||||
ExpiresByType text/cache-manifest "access plus 0 seconds"
|
||||
|
||||
# Your document html
|
||||
ExpiresByType text/html "access plus 0 seconds"
|
||||
|
||||
# Data
|
||||
ExpiresByType text/xml "access plus 0 seconds"
|
||||
ExpiresByType application/xml "access plus 0 seconds"
|
||||
ExpiresByType application/json "access plus 0 seconds"
|
||||
|
||||
# Feed
|
||||
ExpiresByType application/rss+xml "access plus 1 hour"
|
||||
ExpiresByType application/atom+xml "access plus 1 hour"
|
||||
|
||||
# Favicon (cannot be renamed)
|
||||
ExpiresByType image/x-icon "access plus 1 week"
|
||||
|
||||
# Media: images, video, audio
|
||||
ExpiresByType image/gif "access plus 1 month"
|
||||
ExpiresByType image/png "access plus 1 month"
|
||||
ExpiresByType image/jpeg "access plus 1 month"
|
||||
ExpiresByType video/ogg "access plus 1 month"
|
||||
ExpiresByType audio/ogg "access plus 1 month"
|
||||
ExpiresByType video/mp4 "access plus 1 month"
|
||||
ExpiresByType video/webm "access plus 1 month"
|
||||
|
||||
# HTC files (css3pie)
|
||||
ExpiresByType text/x-component "access plus 1 month"
|
||||
|
||||
# Webfonts
|
||||
ExpiresByType application/x-font-ttf "access plus 1 month"
|
||||
ExpiresByType font/opentype "access plus 1 month"
|
||||
ExpiresByType application/x-font-woff "access plus 1 month"
|
||||
ExpiresByType image/svg+xml "access plus 1 month"
|
||||
ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
|
||||
|
||||
# CSS and JavaScript
|
||||
ExpiresByType text/css "access plus 1 year"
|
||||
ExpiresByType application/javascript "access plus 1 year"
|
||||
|
||||
</IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Prevent mobile network providers from modifying your site
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# The following header prevents modification of your code over 3G on some
|
||||
# European providers.
|
||||
# This is the official 'bypass' suggested by O2 in the UK.
|
||||
|
||||
# <IfModule mod_headers.c>
|
||||
# Header set Cache-Control "no-transform"
|
||||
# </IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# ETag removal
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# FileETag None is not enough for every server.
|
||||
<IfModule mod_headers.c>
|
||||
Header unset ETag
|
||||
</IfModule>
|
||||
|
||||
# Since we're sending far-future expires, we don't need ETags for
|
||||
# static content.
|
||||
# developer.yahoo.com/performance/rules.html#etags
|
||||
FileETag None
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Stop screen flicker in IE on CSS rollovers
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# The following directives stop screen flicker in IE on CSS rollovers - in
|
||||
# combination with the "ExpiresByType" rules for images (see above).
|
||||
|
||||
# BrowserMatch "MSIE" brokenvary=1
|
||||
# BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
|
||||
# BrowserMatch "Opera" !brokenvary
|
||||
# SetEnvIf brokenvary 1 force-no-vary
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Set Keep-Alive Header
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Keep-Alive allows the server to send multiple requests through one
|
||||
# TCP-connection. Be aware of possible disadvantages of this setting. Turn on
|
||||
# if you serve a lot of static content.
|
||||
|
||||
# <IfModule mod_headers.c>
|
||||
# Header set Connection Keep-Alive
|
||||
# </IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Cookie setting from iframes
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Allow cookies to be set from iframes (for IE only)
|
||||
# If needed, specify a path or regex in the Location directive.
|
||||
|
||||
# <IfModule mod_headers.c>
|
||||
# Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\""
|
||||
# </IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Start rewrite engine
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Turning on the rewrite engine is necessary for the following rules and
|
||||
# features. FollowSymLinks must be enabled for this to work.
|
||||
|
||||
# Some cloud hosting services require RewriteBase to be set: goo.gl/HOcPN
|
||||
# If using the h5bp in a subdirectory, use `RewriteBase /foo` instead where
|
||||
# 'foo' is your directory.
|
||||
|
||||
# If your web host doesn't allow the FollowSymlinks option, you may need to
|
||||
# comment it out and use `Options +SymLinksIfOwnerMatch`, but be aware of the
|
||||
# performance impact: http://goo.gl/Mluzd
|
||||
|
||||
<IfModule mod_rewrite.c>
|
||||
Options +FollowSymlinks
|
||||
# Options +SymLinksIfOwnerMatch
|
||||
RewriteEngine On
|
||||
# RewriteBase /
|
||||
</IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Suppress or force the "www." at the beginning of URLs
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# The same content should never be available under two different URLs -
|
||||
# especially not with and without "www." at the beginning, since this can cause
|
||||
# SEO problems (duplicate content). That's why you should choose one of the
|
||||
# alternatives and redirect the other one.
|
||||
|
||||
# By default option 1 (no "www.") is activated.
|
||||
# no-www.org/faq.php?q=class_b
|
||||
|
||||
# If you'd prefer to use option 2, just comment out all option 1 lines
|
||||
# and uncomment option 2.
|
||||
|
||||
# IMPORTANT: NEVER USE BOTH RULES AT THE SAME TIME!
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Option 1:
|
||||
# Rewrite "www.example.com -> example.com".
|
||||
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteCond %{HTTPS} !=on
|
||||
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
|
||||
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
|
||||
</IfModule>
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Option 2:
|
||||
# Rewrite "example.com -> www.example.com".
|
||||
# Be aware that the following rule might not be a good idea if you use "real"
|
||||
# subdomains for certain parts of your website.
|
||||
|
||||
# <IfModule mod_rewrite.c>
|
||||
# RewriteCond %{HTTPS} !=on
|
||||
# RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
|
||||
# RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
|
||||
# </IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Built-in filename-based cache busting
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# If you're not using the build script to manage your filename version revving,
|
||||
# you might want to consider enabling this, which will route requests for
|
||||
# `/css/style.20110203.css` to `/css/style.css`.
|
||||
|
||||
# To understand why this is important and a better idea than all.css?v1231,
|
||||
# please refer to the bundled documentation about `.htaccess`.
|
||||
|
||||
# <IfModule mod_rewrite.c>
|
||||
# RewriteCond %{REQUEST_FILENAME} !-f
|
||||
# RewriteCond %{REQUEST_FILENAME} !-d
|
||||
# RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpg|gif)$ $1.$3 [L]
|
||||
# </IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Prevent SSL cert warnings
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Rewrite secure requests properly to prevent SSL cert warnings, e.g. prevent
|
||||
# https://www.example.com when your cert only allows https://secure.example.com
|
||||
|
||||
# <IfModule mod_rewrite.c>
|
||||
# RewriteCond %{SERVER_PORT} !^443
|
||||
# RewriteRule ^ https://example-domain-please-change-me.com%{REQUEST_URI} [R=301,L]
|
||||
# </IfModule>
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Prevent 404 errors for non-existing redirected folders
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# without -MultiViews, Apache will give a 404 for a rewrite if a folder of the
|
||||
# same name does not exist.
|
||||
# webmasterworld.com/apache/3808792.htm
|
||||
|
||||
Options -MultiViews
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# Custom 404 page
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# You can add custom pages to handle 500 or 403 pretty easily, if you like.
|
||||
# If you are hosting your site in subdirectory, adjust this accordingly
|
||||
# e.g. ErrorDocument 404 /subdir/404.html
|
||||
ErrorDocument 404 /404.html
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# UTF-8 encoding
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# Use UTF-8 encoding for anything served text/plain or text/html
|
||||
AddDefaultCharset utf-8
|
||||
|
||||
# Force UTF-8 for a number of file formats
|
||||
AddCharset utf-8 .atom .css .js .json .rss .vtt .xml
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------
|
||||
# A little more security
|
||||
# ----------------------------------------------------------------------
|
||||
|
||||
# To avoid displaying the exact version number of Apache being used, add the
|
||||
# following to httpd.conf (it will not work in .htaccess):
|
||||
# ServerTokens Prod
|
||||
|
||||
# "-Indexes" will have Apache block users from browsing folders without a
|
||||
# default document Usually you should leave this activated, because you
|
||||
# shouldn't allow everybody to surf through every folder on your server (which
|
||||
# includes rather private places like CMS system folders).
|
||||
<IfModule mod_autoindex.c>
|
||||
Options -Indexes
|
||||
</IfModule>
|
||||
|
||||
# Block access to "hidden" directories or files whose names begin with a
|
||||
# period. This includes directories used by version control systems such as
|
||||
# Subversion or Git.
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteCond %{SCRIPT_FILENAME} -d [OR]
|
||||
RewriteCond %{SCRIPT_FILENAME} -f
|
||||
RewriteRule "(^|/)\." - [F]
|
||||
</IfModule>
|
||||
|
||||
# Block access to backup and source files. These files may be left by some
|
||||
# text/html editors and pose a great security danger, when anyone can access
|
||||
# them.
|
||||
<FilesMatch "(\.(bak|config|sql|fla|psd|ini|log|sh|inc|swp|dist)|~)$">
|
||||
Order allow,deny
|
||||
Deny from all
|
||||
Satisfy All
|
||||
</FilesMatch>
|
||||
|
||||
# If your server is not already configured as such, the following directive
|
||||
# should be uncommented in order to set PHP's register_globals option to OFF.
|
||||
# This closes a major security hole that is abused by most XSS (cross-site
|
||||
# scripting) attacks. For more information: http://php.net/register_globals
|
||||
#
|
||||
# IF REGISTER_GLOBALS DIRECTIVE CAUSES 500 INTERNAL SERVER ERRORS:
|
||||
#
|
||||
# Your server does not allow PHP directives to be set via .htaccess. In that
|
||||
# case you must make this change in your php.ini file instead. If you are
|
||||
# using a commercial web host, contact the administrators for assistance in
|
||||
# doing this. Not all servers allow local php.ini files, and they should
|
||||
# include all PHP configurations (not just this one), or you will effectively
|
||||
# reset everything to PHP defaults. Consult www.php.net for more detailed
|
||||
# information about setting PHP directives.
|
||||
|
||||
# php_flag register_globals Off
|
||||
|
||||
# Rename session cookie to something else, than PHPSESSID
|
||||
# php_value session.name sid
|
||||
|
||||
# Disable magic quotes (This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.)
|
||||
# php_flag magic_quotes_gpc Off
|
||||
|
||||
# Do not show you are using PHP
|
||||
# Note: Move this line to php.ini since it won't work in .htaccess
|
||||
# php_flag expose_php Off
|
||||
|
||||
# Level of log detail - log all errors
|
||||
# php_value error_reporting -1
|
||||
|
||||
# Write errors to log file
|
||||
# php_flag log_errors On
|
||||
|
||||
# Do not display errors in browser (production - Off, development - On)
|
||||
# php_flag display_errors Off
|
||||
|
||||
# Do not display startup errors (production - Off, development - On)
|
||||
# php_flag display_startup_errors Off
|
||||
|
||||
# Format errors in plain text
|
||||
# Note: Leave this setting 'On' for xdebug's var_dump() output
|
||||
# php_flag html_errors Off
|
||||
|
||||
# Show multiple occurrence of error
|
||||
# php_flag ignore_repeated_errors Off
|
||||
|
||||
# Show same errors from different sources
|
||||
# php_flag ignore_repeated_source Off
|
||||
|
||||
# Size limit for error messages
|
||||
# php_value log_errors_max_len 1024
|
||||
|
||||
# Don't precede error with string (doesn't accept empty string, use whitespace if you need)
|
||||
# php_value error_prepend_string " "
|
||||
|
||||
# Don't prepend to error (doesn't accept empty string, use whitespace if you need)
|
||||
# php_value error_append_string " "
|
||||
|
||||
# Increase cookie security
|
||||
<IfModule php5_module>
|
||||
php_value session.cookie_httponly true
|
||||
</IfModule>
|
||||
173
src/404.html
Normal file
@ -0,0 +1,173 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Página no encontrada | AWA Escuela de Surf y Sup</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
|
||||
<link rel="stylesheet" href="css/normalize.min.css">
|
||||
<link rel="stylesheet" href="css/fonts.css">
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
|
||||
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
|
||||
|
||||
<style>
|
||||
::-moz-selection {
|
||||
background: #b3d4fc;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #b3d4fc;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0 10px;
|
||||
font-size: 50px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1 span {
|
||||
color: #bbb;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin: 1.5em 0 0.5em;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding: 0 0 0 40px;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
li {
|
||||
list-style: inside none;
|
||||
float: left;
|
||||
display: inline-block;
|
||||
margin-right: 40px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
img {
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
|
||||
body {
|
||||
font: 30px/32px MarkerLitterBox, serif;
|
||||
background: #7f7f7f;
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
.main-container {
|
||||
background: transparent;
|
||||
width: 600px;
|
||||
height: 414px;
|
||||
-moz-box-shadow: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/* google search */
|
||||
|
||||
#goog-fixurl ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#goog-fixurl form {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#goog-wm-qt,
|
||||
#goog-wm-sb {
|
||||
border: 1px solid #bbb;
|
||||
font-size: 16px;
|
||||
line-height: normal;
|
||||
vertical-align: top;
|
||||
color: #444;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
#goog-wm-qt {
|
||||
width: 220px;
|
||||
height: 20px;
|
||||
padding: 5px;
|
||||
margin: 5px 10px 0 0;
|
||||
box-shadow: inset 0 1px 1px #ccc;
|
||||
}
|
||||
|
||||
#goog-wm-sb {
|
||||
display: inline-block;
|
||||
height: 32px;
|
||||
padding: 0 10px;
|
||||
margin: 5px 0 0;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
background-color: #f5f5f5;
|
||||
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
|
||||
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
|
||||
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
|
||||
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
*overflow: visible;
|
||||
*display: inline;
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
#goog-wm-sb:hover,
|
||||
#goog-wm-sb:focus {
|
||||
border-color: #aaa;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
background-color: #f8f8f8;
|
||||
}
|
||||
|
||||
#goog-wm-qt:hover,
|
||||
#goog-wm-qt:focus {
|
||||
border-color: #105cb6;
|
||||
outline: 0;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
input::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="e404">
|
||||
<div class="general-container">
|
||||
<div class="main-container">
|
||||
<img src="img/logo.jpg"/>
|
||||
<h1>Página no encontrada <span>:(</span></h1>
|
||||
<p>La página solicitada no existe. Es posible que no se haya escrito correctamente la dirección URL.</p>
|
||||
<p>Puede ir a alguna de nuestras secciones:</p>
|
||||
<ul>
|
||||
<li><a href="filosofia.html">Filosofía</a></li>
|
||||
<li><a href="tarifas.html">Tarifas</a></li>
|
||||
<li><a href="la-escuela.html">La escuela</a></li>
|
||||
<li><a href="monitores.html">Monitores</a></li>
|
||||
<li><a href="la-tienda.html">La tienda</a></li>
|
||||
<li><a href="galeria.html">Galería</a></li>
|
||||
<li><a href="links-amigos.html">Links amigos</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
src/apple-touch-icon-114.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
src/apple-touch-icon-144.png
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
src/apple-touch-icon-57..png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/apple-touch-icon-72.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
src/apple-touch-icon-precomposed.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
BIN
src/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 2.4 KiB |
18
src/css/fonts.css
Normal file
@ -0,0 +1,18 @@
|
||||
|
||||
@font-face {
|
||||
font-family: MarkerLitterBox;
|
||||
src: url('fonts/markerlitterbox.eot');
|
||||
src: local('☺'), url('fonts/markerlitterbox.woff') format('woff'), url('fonts/markerlitterbox.ttf') format('truetype'), url('fonts/markerlitterbox.svg') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
|
||||
@font-face {
|
||||
font-family: Hectic;
|
||||
src: url('fonts/hectic.eot');
|
||||
src: local('☺'), url('fonts/hectic.woff') format('woff'), url('fonts/hectic.ttf') format('truetype'), url('fonts/hectic.svg') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
BIN
src/css/fonts/hectic.eot
Normal file
BIN
src/css/fonts/hectic.otf
Normal file
762
src/css/fonts/hectic.svg
Normal file
@ -0,0 +1,762 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<svg>
|
||||
<metadata>
|
||||
Created by FontForge 20090914 at Thu Jun 20 15:57:35 2013
|
||||
By www-data
|
||||
Copyright (c) Andi Darnell, 1999. All rights reserved.
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="hectic" horiz-adv-x="500" >
|
||||
<font-face
|
||||
font-family="hectic"
|
||||
font-weight="400"
|
||||
font-stretch="normal"
|
||||
units-per-em="1000"
|
||||
panose-1="0 0 0 0 0 0 0 0 0 0"
|
||||
ascent="800"
|
||||
descent="-200"
|
||||
x-height="778"
|
||||
cap-height="927.994"
|
||||
bbox="9 -153.007 703.997 943.002"
|
||||
underline-thickness="50"
|
||||
underline-position="-75"
|
||||
unicode-range="U+0020-U+E002"
|
||||
/>
|
||||
<missing-glyph
|
||||
/>
|
||||
<glyph glyph-name=".notdef"
|
||||
/>
|
||||
<glyph glyph-name="space" unicode=" "
|
||||
/>
|
||||
<glyph glyph-name="exclam" unicode="!" horiz-adv-x="207"
|
||||
d="M10 -99c0 -6.66699 1.99707 -12.666 5.99707 -17.999s9 -10 15 -14s12.5 -7.16699 19.5 -9.5s13.5 -3.5 19.5 -3.5c6.66699 0 13.834 0.666992 21.501 2s14.834 3.66602 21.501 6.99902s12.167 7.83301 16.5 13.5s6.5 12.5 6.5 20.5c0 8.66699 -2.83301 16.667 -8.5 24
|
||||
s-12.5 13.666 -20.5 18.999s-16.667 9.33301 -26 12s-18 4 -26 4c-15.333 0 -26.666 -6.16699 -33.999 -18.5s-11 -25.166 -11 -38.499zM65.9971 35.001c5.33301 1.33301 9.66895 -0.165039 13.002 -4.49805s7 -6.5 11 -6.5c2 0 4.83301 0.333008 8.5 1s7.5 1.66699 11.5 3
|
||||
s7.66699 2.83301 11 4.5s5 3.5 5 5.5l56 574l3 7c-1.33301 21.333 0.166992 41 4.5 59s6.5 37 6.5 57c0 6 -1.16699 12.167 -3.5 18.5s-5.5 12.333 -9.5 18s-8.83301 10.334 -14.5 14.001s-11.834 5.5 -18.501 5.5c-2 0 -5 -1.5 -9 -4.5s-8.16699 -6.5 -12.5 -10.5
|
||||
s-8.16602 -7.83301 -11.499 -11.5s-5 -6.5 -5 -8.5c-0.666992 -2.66699 -1.66699 -7.33398 -3 -14.001s-2.5 -13.834 -3.5 -21.501s-2 -14.667 -3 -21s-1.5 -10.833 -1.5 -13.5v-14v-14c0 -1.33301 0.666992 -4.33301 2 -9s2 -7.66699 2 -9
|
||||
c0 -0.666992 -0.5 -3.16699 -1.5 -7.5s-1.83301 -7.5 -2.5 -9.5c0 -1.33301 -0.5 -3.33301 -1.5 -6s-1.5 -4.33398 -1.5 -5.00098c-0.666992 -2 -1.33398 -5.83301 -2.00098 -11.5l-2 -17.5c-0.666992 -6 -1.33398 -11.5 -2.00098 -16.5s-1 -8.5 -1 -10.5
|
||||
c-5.33301 -62.667 -12 -124.5 -20 -185.5s-14.333 -122.833 -19 -185.5c1.33301 -17.333 -0.666992 -35 -6 -53s-8 -35.667 -8 -53c0 -8.66699 3 -17 9 -25s12.333 -14.333 19 -19zM73 52.0029c1.33301 -0.666992 2 -1.33203 2 -1.99902s-0.666992 -1 -2 -1
|
||||
c-1.33301 -0.666992 -2 -0.333984 -2 0.999023c0 2 0.666992 2.66699 2 2zM84 59.0049c1.33301 -0.666992 2 -1.99902 2 -3.99902c0 -1.33301 -0.666992 -2.33301 -2 -3s-2 0.333008 -2 3c0 3.33301 0.666992 4.66602 2 3.99902zM126 763.006c1.33301 0 2 -1.33301 2 -4
|
||||
c0 -2 -0.666992 -3 -2 -3c-2 0 -3 1 -3 3c0 2.66699 1 4 3 4z" />
|
||||
<glyph glyph-name="numbersign" unicode="#" horiz-adv-x="630"
|
||||
d="M323 -94c0 -2 1.01172 -4.83691 3.01172 -8.50391s4.5 -7 7.5 -10s6 -5.66699 9 -8s5.83301 -2.83301 8.5 -1.5c4.66699 2 8.16699 5.5 10.5 10.5s3.5 9.83301 3.5 14.5v144c0 0.666992 0.833008 5 2.5 13s3.16699 14 4.5 18c2 8.66699 4.66699 15.167 8 19.5
|
||||
s7.33301 7.5 12 9.5s10 3.33301 16 4s13 1.66699 21 3c7.33301 1.33301 13.666 2.83301 18.999 4.5s12 2.5 20 2.5c7.33301 0 13.666 -0.666992 18.999 -2s11.666 -2 18.999 -2c13.333 0 23.166 4 29.499 12s9.5 18.667 9.5 32c0 10.667 -3.83301 21.334 -11.5 32.001
|
||||
s-17.167 16 -28.5 16c-4 0 -7.5 -0.166992 -10.5 -0.5s-6.16699 -1.5 -9.5 -3.5h-63c-0.666992 0 -1.33398 0.5 -2.00098 1.5s-1.33398 1.83301 -2.00098 2.5v1v2l3.5 13.5l5.5 20l5.5 20l3.5 13.5c1.33301 6.66699 4.66602 10.334 9.99902 11.001c2.66699 0 7 0.5 13 1.5
|
||||
s12.333 2 19 3s13 2 19 3s10 1.83301 12 2.5c1.33301 0 3.83301 0.5 7.5 1.5s6.16699 1.83301 7.5 2.5l3 1.5c2 1 3.33301 1.5 4 1.5c8.66699 0.666992 17.167 1.16699 25.5 1.5s16.166 1 23.499 2s14.166 3.33301 20.499 7s12.166 9.5 17.499 17.5
|
||||
c0.666992 0 1 0.666992 1 2c0 16 -2.66699 29.667 -8 41s-16.666 17 -33.999 17c-18.667 0 -37 -1 -55 -3s-36.333 -3 -55 -3v6c0 0.666992 1 4.66699 3 12l7.5 26.5c3 10.333 6.16699 20.666 9.5 30.999l8 25.5c4.66699 13.333 8.83398 24.666 12.501 33.999s5.5 21 5.5 35
|
||||
c0 4 -0.666992 9.16699 -2 15.5s-3.16602 12.333 -5.49902 18s-5.5 10.5 -9.5 14.5s-8.33301 6 -13 6c-10 0 -19.667 -6.66699 -29 -20s-17.666 -29 -24.999 -47s-13.833 -36 -19.5 -54s-9.83398 -31.667 -12.501 -41c-1.33301 -2.66699 -3.16602 -7.66699 -5.49902 -15
|
||||
l-7 -23c-2.33301 -8 -4.83301 -15.833 -7.5 -23.5s-4.33398 -12.834 -5.00098 -15.501c-4 -2.66699 -9.66699 -4.5 -17 -5.5s-13.333 -1.5 -18 -1.5c-0.666992 0 -2.33398 0.5 -5.00098 1.5s-4.33398 1.5 -5.00098 1.5h-2c-8 0 -16 -0.5 -24 -1.5s-16 -1.5 -24 -1.5
|
||||
c-0.666992 0 -2.66699 -0.166992 -6 -0.5s-7 -0.5 -11 -0.5s-7.5 0.5 -10.5 1.5s-4.5 2.83301 -4.5 5.5c0 10 1.83301 19.5 5.5 28.5s7.83398 17.833 12.501 26.5s8.83398 17.5 12.501 26.5s5.5 18.5 5.5 28.5c0 4.66699 -0.5 10.167 -1.5 16.5s-2.66699 12.166 -5 17.499
|
||||
s-5.83301 9.83301 -10.5 13.5s-10.334 5.5 -17.001 5.5c-11.333 0 -21 -3.5 -29 -10.5s-14.667 -15.667 -20 -26s-9.83301 -21.166 -13.5 -32.499l-9.5 -30c-1.33301 -3.33301 -3.16602 -8.83301 -5.49902 -16.5l-7 -23.5l-7 -23l-4.5 -14
|
||||
c-0.666992 -0.666992 -1.33398 -1.83398 -2.00098 -3.50098s-1.33398 -2.83398 -2.00098 -3.50098c-11.333 -2.66699 -23 -4.16699 -35 -4.5s-23.667 -0.166016 -35 0.500977c-5.33301 -2.66699 -10.333 -9 -15 -19s-9 -17.667 -13 -23v-2v-1c2 -7.33301 7 -14.5 15 -21.5
|
||||
s13.333 -11.833 16 -14.5c6 -4.66699 12.833 -7.16699 20.5 -7.5s15.167 -1.16602 22.5 -2.49902v-9c0 -10.667 -1 -21.334 -3 -32.001s-6 -20.334 -12 -29.001c-3.33301 -5.33301 -10.333 -8 -21 -8h-33c-11.333 0 -21.5 -1.16699 -30.5 -3.5s-13.5 -8.5 -13.5 -18.5
|
||||
c0 -11.333 2 -20.5 6 -27.5s8 -14.833 12 -23.5c14 -0.666992 25.167 -2.33398 33.5 -5.00098s19.166 -4.66699 32.499 -6c-4.66699 -25.333 -9 -51.166 -13 -77.499s-7.66699 -52.166 -11 -77.499l-0.5 -4.5c-0.333008 -3 -0.5 -5.16699 -0.5 -6.5
|
||||
c0 -4.66699 0.333008 -8.66699 1 -12s3 -7.33301 7 -12c2 2 3.83301 0.666992 5.5 -4s3.83398 -7 6.50098 -7c1.33301 0 2 0.333008 2 1c0.666992 0.666992 1.33398 2.33398 2.00098 5.00098s1 4.33398 1 5.00098l7 7l7 7c1.33301 -3.33301 3 -4.5 5 -3.5s4 1.5 6 1.5v-5
|
||||
c0 -1.33301 -0.5 -4.83301 -1.5 -10.5s-1.5 -9.16699 -1.5 -10.5c-0.666992 0 -1 -0.666992 -1 -2v-3c8.66699 0 15.667 3 21 9s9.33301 13.167 12 21.5s4.66699 17 6 26s2.66602 16.5 3.99902 22.5c0.666992 4.66699 2.33398 13 5.00098 25s5.16699 24.833 7.5 38.5
|
||||
s4.66602 26.5 6.99902 38.5s3.83301 20.333 4.5 25c-0.666992 4.66699 0.833008 8.33398 4.5 11.001s8.16699 4.33398 13.5 5.00098s10.666 1 15.999 1h12h13h18c6.66699 0 13 -0.166992 19 -0.5s10.333 -0.5 13 -0.5c0 -17.333 -1.16699 -34.5 -3.5 -51.5
|
||||
s-3.5 -34.167 -3.5 -51.5c0 -19.333 0.166992 -36.5 0.5 -51.5s1.5 -32.167 3.5 -51.5c3.33301 -3.33301 6.16602 -7.16602 8.49902 -11.499s5.16602 -7.5 8.49902 -9.5l7 21c2 -1.33301 4.16699 -1.66602 6.5 -0.999023s3.83301 2 4.5 4zM218.012 264.996
|
||||
c18.667 5.33301 39.332 9.66699 61.999 13s43.667 5 63 5v0c0.666992 0 1 -0.333008 1 -1c0.666992 0 2 -1 4 -3v-2c0 -2 -1.33301 -7.16699 -4 -15.5s-5.66699 -17.166 -9 -26.499l-9.5 -25.5c-3 -7.66699 -4.83301 -11.5 -5.5 -11.5
|
||||
c-2 -0.666992 -5.16699 -1.33398 -9.5 -2.00098s-7.16602 -1 -8.49902 -1h-100c0 12 1.5 23.833 4.5 35.5s6.83301 23.167 11.5 34.5zM70.0098 292.997c1.33301 0 2 -1.33301 2 -4c0 -2 -0.666992 -3 -2 -3c-2 0 -3 1 -3 3c0 2.66699 1 4 3 4z" />
|
||||
<glyph glyph-name="parenleft" unicode="(" horiz-adv-x="376"
|
||||
d="M10 211l0.000976562 -46.9932c0 -18.667 1.33301 -34.667 4 -48s6.5 -30.5 11.5 -51.5s11.833 -41.5 20.5 -61.5s19.5 -37.167 32.5 -51.5s28.833 -21.5 47.5 -21.5c7.33301 0 13 1.66699 17 5s7 7.83301 9 13.5s3.33301 11.667 4 18s1 12.5 1 18.5v1
|
||||
c-0.666992 2.66699 -2.33398 6.5 -5.00098 11.5s-3.33398 9.5 -2.00098 13.5c0 -0.666992 -0.833008 -1.5 -2.5 -2.5s-3.16699 -1.5 -4.5 -1.5l-1.5 1.5c-1 1 -1.5 1.83301 -1.5 2.5c-4 6.66699 -8.16699 15.667 -12.5 27s-7.16602 19.666 -8.49902 24.999
|
||||
c-1.33301 4 -3 10 -5 18s-3.83301 16.167 -5.5 24.5s-3.33398 15.833 -5.00098 22.5s-2.5 11 -2.5 13v38c0 30.667 2.83301 59.667 8.5 87s13.5 53.666 23.5 78.999s21.833 50.166 35.5 74.499s28.834 49.5 45.501 75.5l17 26.5l23 35.5l21.5 32.5l11.5 17.5
|
||||
c0.666992 0.666992 2.5 3 5.5 7s6.66699 8.33301 11 13s8.5 9.5 12.5 14.5s7.33301 8.83301 10 11.5c6.66699 7.33301 14.834 15.666 24.501 24.999s14.5 19.666 14.5 30.999s-4.5 20.666 -13.5 27.999s-18.833 11 -29.5 11l-3 -2c-2 -1.33301 -3.33301 -2 -4 -2
|
||||
c-4 0.666992 -6.5 1.66699 -7.5 3s-1.83301 2.66602 -2.5 3.99902s-1.5 2.33301 -2.5 3s-3.83301 1 -8.5 1c-0.666992 0 -1.83398 -0.5 -3.50098 -1.5s-2.83398 -1.83301 -3.50098 -2.5c-21.333 -23.333 -40.833 -46.666 -58.5 -69.999l-53.5 -74
|
||||
c-6 -8 -12.667 -15.333 -20 -22s-13.666 -14.334 -18.999 -23.001l-24 -46c-8 -15.333 -16.333 -30.333 -25 -45l-38 -70.5c-12.667 -23.667 -22 -48.167 -28 -73.5c-5.33301 -20 -8.5 -39 -9.5 -57s-1.5 -37.667 -1.5 -59z" />
|
||||
<glyph glyph-name="parenright" unicode=")" horiz-adv-x="243"
|
||||
d="M13 -63c0 -6.66699 1.99902 -13.165 5.99902 -19.498s9 -12 15 -17s12.5 -9 19.5 -12s13.5 -4.5 19.5 -4.5c11.333 0 24.333 7 39 21s29 30.333 43 49s26.5 37.5 37.5 56.5s18.167 33.167 21.5 42.5c6.66699 19.333 11.334 39 14.001 59s4 40.333 4 61
|
||||
c0 39.333 -1.83301 77.833 -5.5 115.5s-7.83398 76.167 -12.501 115.5c-10 46 -25.333 89.833 -46 131.5l-60 125.5c0 0.666992 -0.5 2.5 -1.5 5.5s-2.16699 6 -3.5 9s-2.5 5.83301 -3.5 8.5s-1.5 4.33398 -1.5 5.00098c-5.33301 8.66699 -12.5 16.167 -21.5 22.5
|
||||
s-18.833 9.5 -29.5 9.5c-7.33301 0 -15 -2.83301 -23 -8.5s-12.667 -12.167 -14 -19.5c0 -2.66699 0.833008 -7.83398 2.5 -15.501s3.16699 -13.167 4.5 -16.5l84 -190c3.33301 -6.66699 6.83301 -16.334 10.5 -29.001s6.16699 -23 7.5 -31l3.5 -32l5.5 -48.5l5.5 -48.5
|
||||
l3.5 -32v-36c0 -36.667 -4.16699 -70.334 -12.5 -101.001s-24.166 -60 -47.499 -88c-2 -2.66699 -5.66699 -7 -11 -13l-17 -19l-17 -19c-5.33301 -6 -9 -10.333 -11 -13c-5.33301 -7.33301 -8 -15.333 -8 -24z" />
|
||||
<glyph glyph-name="asterisk" unicode="*" horiz-adv-x="479"
|
||||
d="M56 39l22.499 -24.9951c9 -10 18.833 -15 29.5 -15c12.667 0 23.334 6.33301 32.001 19c1.33301 2 3.66602 5.16699 6.99902 9.5s6.83301 9.16602 10.5 14.499l10.5 15l7 10c-1.33301 -8 -0.166016 -15.833 3.50098 -23.5s8.83398 -14.5 15.501 -20.5
|
||||
s14 -10.833 22 -14.5s15.667 -5.5 23 -5.5c6 0 12.5 1.83301 19.5 5.5s10.833 9.16699 11.5 16.5l7 70c5.33301 -8.66699 9.66602 -18 12.999 -28s7.33301 -19.167 12 -27.5s10.667 -15.333 18 -21s17.333 -8.5 30 -8.5c13.333 0 22.833 2.66699 28.5 8s8.5 15.333 8.5 30v1
|
||||
l-36.5 94l-37.5 93l-10 19.5c-3.33301 6.33301 -5 13.166 -5 20.499c0 0.666992 0.166992 1.66699 0.5 3s0.5 2.33301 0.5 3c23.333 2.66699 48.166 4.83398 74.499 6.50098s51.833 1.83398 76.5 0.500977c4.66699 3.33301 8.83398 7 12.501 11s5.5 9 5.5 15
|
||||
c0 7.33301 -2 15 -6 23s-9.33301 15.5 -16 22.5s-13.834 12.667 -21.501 17s-14.834 6.5 -21.501 6.5c-10 0 -19.833 -1.33301 -29.5 -4s-19.5 -4 -29.5 -4c-2 0 -4.16699 0.166992 -6.5 0.5s-3.5 2.16602 -3.5 5.49902v2c0 0.666992 0.5 2.16699 1.5 4.5
|
||||
s1.5 4.16602 1.5 5.49902c0.666992 2.66699 3 8.66699 7 18l12.5 30l12 30c3.66699 9.33301 6.16699 15 7.5 17c0.666992 2.66699 2 6.83398 4 12.501l6 17.5l5.5 16.5c1.66699 5 2.5 8.16699 2.5 9.5v18v18c-2.66699 3.33301 -6.5 7.33301 -11.5 12s-10.5 9 -16.5 13
|
||||
s-11.833 7.33301 -17.5 10s-10.5 4 -14.5 4c-10 0 -17 -2.66699 -21 -8s-6.83301 -12 -8.5 -20s-3 -16.333 -4 -25s-3.83301 -16 -8.5 -22c-0.666992 1.33301 -1.5 4.33301 -2.5 9s-1.5 7.66699 -1.5 9v74l-3.5 9l-3.5 9c-2 1.33301 -6.66699 4.16602 -14 8.49902
|
||||
s-12 7.16602 -14 8.49902c-5.33301 3.33301 -7.5 5.33301 -6.5 6s-0.833008 1 -5.5 1c-9.33301 0 -17.833 -2.5 -25.5 -7.5s-11.5 -12.833 -11.5 -23.5v-127c-2.66699 1.33301 -5.16699 3.83301 -7.5 7.5s-4.33301 8 -6 13s-3.16699 10 -4.5 15s-2.66602 9.5 -3.99902 13.5
|
||||
c0 0.666992 -0.333008 3 -1 7s-1.33398 6.33301 -2.00098 7c-1.33301 2 -5.16602 6.33301 -11.499 13s-10.833 10.667 -13.5 12c-5.33301 -1.33301 -10.166 -1.33301 -14.499 0s-8.83301 3 -13.5 5l-14 6c-4.66699 2 -9.33398 3 -14.001 3c-6.66699 0 -11.334 -3 -14.001 -9
|
||||
s-4 -11.667 -4 -17c0 -16.667 3.83301 -32.334 11.5 -47.001s14.5 -29 20.5 -43l6.5 -15.5l9 -21c3 -7 5.66699 -13.5 8 -19.5s3.83301 -9.66699 4.5 -11c2 -3.33301 4.5 -7.83301 7.5 -13.5s6 -11.667 9 -18s5.66699 -12.666 8 -18.999s3.5 -11.833 3.5 -16.5h-126
|
||||
c-7.33301 0 -14.5 -4.33301 -21.5 -13s-10.5 -16.334 -10.5 -23.001c0 -12 4.5 -22.167 13.5 -30.5s18.5 -14.166 28.5 -17.499c0.666992 -0.666992 1.83398 -1.33398 3.50098 -2.00098s2.83398 -1.33398 3.50098 -2.00098h21c17.333 0 34.333 0.5 51 1.5
|
||||
s33.334 1.5 50.001 1.5c0 -0.666992 0.333008 -1.66699 1 -3s0.666992 -2.33301 0 -3c0 -1.33301 -0.833008 -4.33301 -2.5 -9s-3.16699 -7.66699 -4.5 -9c-1.33301 -3.33301 -5.16602 -10.833 -11.499 -22.5l-20 -37.5l-20 -38l-11.5 -22
|
||||
c-0.666992 -0.666992 -1.83398 -3.5 -3.50098 -8.5s-2.83398 -7.83301 -3.50098 -8.5c-3.33301 -6 -7.83301 -12.167 -13.5 -18.5l-16.5 -19c-5.33301 -6.33301 -10 -13 -14 -20s-6 -14.167 -6 -21.5c0 -1.33301 0.166992 -3 0.5 -5s0.5 -3.33301 0.5 -4zM419.999 370.005
|
||||
l4.99805 0.000976562c0.666992 0 1.33398 -1.83301 2.00098 -5.5s1.33398 -6.83398 2.00098 -9.50098v-3v-4c-6 6 -9 13.333 -9 22zM438.997 359.006c2 0 3 -1.33301 3 -4c0 -2 -1 -3 -3 -3c-1.33301 0 -2 1 -2 3c0 2.66699 0.666992 4 2 4z" />
|
||||
<glyph glyph-name="zero" unicode="0" horiz-adv-x="355"
|
||||
d="M9 353c0 -32 1.00195 -67.501 3.00195 -106.501s8.5 -75.833 19.5 -110.5s28.667 -63.667 53 -87s58.833 -35 103.5 -35c27.333 0 48.666 11.667 63.999 35c8 11.333 16 26.5 24 45.5s15.5 39.167 22.5 60.5s13.167 42.333 18.5 63s9.33301 38 12 52
|
||||
c10 54 14.667 110.167 14 168.5s-1 113.5 -1 165.5v14c0 4 0.166992 11 0.5 21s0.5 20.333 0.5 31v32v21c-0.666992 20.667 -4.5 42.167 -11.5 64.5l-19.5 61.5c2.66699 18 -0.5 34.167 -9.5 48.5s-22.167 24.166 -39.5 29.499h-25c-14 0 -23.167 -1.16699 -27.5 -3.5
|
||||
s-7.33301 -4.83301 -9 -7.5s-3.33398 -5.16699 -5.00098 -7.5s-6.5 -3.5 -14.5 -3.5c-6.66699 0 -12.167 1.83301 -16.5 5.5s-9.5 5.5 -15.5 5.5c-4.66699 0 -11 -4 -19 -12s-16.167 -17.167 -24.5 -27.5s-16 -20.5 -23 -30.5s-11.5 -17 -13.5 -21
|
||||
c-6 -10 -12.333 -26.5 -19 -49.5s-12.667 -46.5 -18 -70.5s-9.83301 -45.167 -13.5 -63.5l-5.5 -27.5c-3.33301 -11.333 -4.83301 -23.833 -4.5 -37.5s0.5 -26.167 0.5 -37.5v-48c0.666992 -1.33301 1.5 -3.66602 2.5 -6.99902s1.5 -5.66602 1.5 -6.99902
|
||||
c0 -2 -0.5 -6.66699 -1.5 -14s-1.83301 -12 -2.5 -14v-19c0 -9.33301 -0.166992 -19 -0.5 -29s-0.5 -19.667 -0.5 -29v-19zM91.002 555.999c0 16 1.33594 30.498 4.00293 43.498s4.66699 27.167 6 42.5c3.33301 33.333 9.66602 63.5 18.999 90.5s24 53.167 44 78.5
|
||||
c1.33301 0.666992 2.83301 1.83398 4.5 3.50098s2.5 2.83398 2.5 3.50098h2c4.66699 0 8.5 -1.33301 11.5 -4s6.83301 -4 11.5 -4c6.66699 0 12 2.5 16 7.5s9.33301 7.5 16 7.5c4.66699 0 8.66699 -1.66699 12 -5s6 -7.16602 8 -11.499s3.5 -9 4.5 -14
|
||||
s2.16699 -8.83301 3.5 -11.5c0.666992 -3.33301 1.66699 -7.16602 3 -11.499s2.5 -8.83301 3.5 -13.5l2.5 -12l1 -5l-1 -123v-25c0 -8 -0.166992 -21 -0.5 -39s-0.5 -37 -0.5 -57s-0.166992 -38.5 -0.5 -55.5s-0.5 -28.5 -0.5 -34.5
|
||||
c-1.33301 -29.333 -4.66602 -57.666 -9.99902 -84.999s-10.333 -55 -15 -83c-2.66699 -1.33301 -4.83398 -4.16602 -6.50098 -8.49902s-3.16699 -9.16602 -4.5 -14.499s-2.5 -10.333 -3.5 -15s-1.83301 -8.33398 -2.5 -11.001
|
||||
c-0.666992 -1.33301 -1.83398 -4.66602 -3.50098 -9.99902s-3.66699 -11 -6 -17l-7 -17.5c-2.33301 -5.66699 -3.83301 -9.83398 -4.5 -12.501c-0.666992 -0.666992 -1.33398 -1.83398 -2.00098 -3.50098s-1.33398 -2.83398 -2.00098 -3.50098
|
||||
c-0.666992 -1.33301 -2 -3.33301 -4 -6s-4.16699 -5.83398 -6.5 -9.50098l-6.5 -10c-2 -3 -3.33301 -4.83301 -4 -5.5c-2.66699 -2.66699 -6 -4 -10 -4c-8.66699 0 -17.667 3 -27 9s-15.666 12.333 -18.999 19c-5.33301 9.33301 -9.5 19.666 -12.5 30.999s-5 23 -6 35
|
||||
s-1.66699 23.833 -2 35.5s-0.5 22.5 -0.5 32.5c-2 50.667 -3.66699 101.167 -5 151.5s-2 100.833 -2 151.5z" />
|
||||
<glyph glyph-name="one" unicode="1" horiz-adv-x="306"
|
||||
d="M17 -17c1.33301 -2 4.66309 -5.65723 9.99609 -10.9902s9 -8.66602 11 -9.99902c0.666992 -0.666992 4.16699 -1.33398 10.5 -2.00098s11.166 -1.33398 14.499 -2.00098c4.66699 -0.666992 11.334 -1.33398 20.001 -2.00098l25.5 -2
|
||||
c8.33301 -0.666992 15.833 -1.33398 22.5 -2.00098s10.667 -1 12 -1h62h61c6 4.66699 10.5 9.33398 13.5 14.001s5.33301 9.66699 7 15s3 10.833 4 16.5s2.16699 11.5 3.5 17.5c-2 0 -3.83301 1.83301 -5.5 5.5l-5.5 12c-2 4.33301 -4.33301 8.5 -7 12.5s-5.66699 6 -9 6
|
||||
c-9.33301 0 -18.333 -1.33301 -27 -4s-17.667 -4 -27 -4c-5.33301 0 -8.33301 1 -9 3s-1 5.66699 -1 11c0 16 1.83301 31.833 5.5 47.5s6.5 31.5 8.5 47.5l28 218c2.66699 19.333 6.16699 43 10.5 71l12.5 80l10 64c2.66699 17.333 4 25.333 4 24v10
|
||||
c0 38 1.5 75.167 4.5 111.5s4.5 73.166 4.5 110.499c0 10 -0.5 20.5 -1.5 31.5s-3.16699 21.167 -6.5 30.5s-8.83301 17.166 -16.5 23.499s-17.834 9.5 -30.501 9.5c-11.333 0 -20.166 -3.5 -26.499 -10.5s-13.166 -13.167 -20.499 -18.5
|
||||
c-13.333 -8.66699 -27.666 -16.834 -42.999 -24.501s-29.666 -16.334 -42.999 -26.001s-24.5 -21 -33.5 -34s-13.5 -28.5 -13.5 -46.5c0 -10.667 3.5 -20.834 10.5 -30.501s16.167 -14.5 27.5 -14.5c6.66699 0 11.334 1.33301 14.001 4c1.33301 2 4 5 8 9l13 12.5l13 12.5
|
||||
l8 8c5.33301 5.33301 12.5 10.833 21.5 16.5s17.167 8.5 24.5 8.5c4 0 6.33301 -1.33301 7 -4v-36c0 -20 -0.166992 -39.833 -0.5 -59.5s-1.16602 -39.167 -2.49902 -58.5c-1.33301 -10.667 -3.83301 -21.167 -7.5 -31.5s-4.83398 -20.833 -3.50098 -31.5l-49 -341
|
||||
c-9.33301 -30 -15.5 -61.833 -18.5 -95.5s-5.16699 -66.167 -6.5 -97.5h-94c-1.33301 0 -3.5 -2 -6.5 -6s-4.5 -6.66699 -4.5 -8s1.16699 -3.83301 3.5 -7.5s3.5 -5.83398 3.5 -6.50098c0.666992 -4.66699 -0.333008 -9.83398 -3 -15.501s-4 -10.5 -4 -14.5
|
||||
c0 -1.33301 0.833008 -2.83301 2.5 -4.5s3.16699 -1.83398 4.5 -0.500977z" />
|
||||
<glyph glyph-name="two" unicode="2" horiz-adv-x="433"
|
||||
d="M232 -41c1.33301 -0.666992 4.83887 -2.00293 10.5059 -4.00293s9.16699 -3 10.5 -3h5h8h9h6c0.666992 0 2.66699 -0.333008 6 -1s7 -1.16699 11 -1.5s7.66699 -0.666016 11 -0.999023s5.66602 -0.5 6.99902 -0.5h2c2 0 5.66699 0.333008 11 1
|
||||
s10.666 1.83398 15.999 3.50098s10 4 14 7s6 6.83301 6 11.5c0 6 -0.833008 12.833 -2.5 20.5s-4.33398 15 -8.00098 22s-8.5 13 -14.5 18s-13 7.5 -21 7.5h-161c-0.666992 0 -1.33398 0.5 -2.00098 1.5s-1.33398 1.83301 -2.00098 2.5v2v1c21.333 36 40 71.167 56 105.5
|
||||
s33.667 69.5 53 105.5c28 52.667 54.833 106.5 80.5 161.5s45.834 111.5 60.501 169.5c2 7.33301 5.33301 15 10 23s7 15.667 7 23v133c0 22 -6.5 44.5 -19.5 67.5s-28.5 40.5 -46.5 52.5c-0.666992 0 -2 0.5 -4 1.5s-3 1.83301 -3 2.5l-21.5 19.5
|
||||
c-6.33301 5.66699 -15.5 8.5 -27.5 8.5c-11.333 0 -27 -3.5 -47 -10.5s-39.667 -16.333 -59 -28s-36 -24.667 -50 -39s-21 -28.5 -21 -42.5c0 -6.66699 1.33301 -13.5 4 -20.5s6.16699 -13.5 10.5 -19.5s9.5 -10.833 15.5 -14.5s12.667 -5.5 20 -5.5
|
||||
c2.66699 0 5 0.166992 7 0.5s4.33301 1.5 7 3.5l21.5 23c8.33301 8.66699 17.333 16.834 27 24.501s19.834 14.167 30.501 19.5s21.334 8 32.001 8c11.333 0 19.833 -3.66699 25.5 -11s9.5 -16.166 11.5 -26.499s3 -21.166 3 -32.499v-28c0 -25.333 -3 -50.833 -9 -76.5
|
||||
s-13.833 -51.167 -23.5 -76.5s-20.334 -50 -32.001 -74l-33.5 -70c-0.666992 -6 -3.83398 -14 -9.50098 -24s-9.5 -17.333 -11.5 -22l-14 -27.5l-18 -35.5l-16.5 -32c-5 -9.33301 -7.83301 -15 -8.5 -17l-20 -36.5l-30.5 -54l-31 -54l-20.5 -35.5l-8 -11.5l-13 -18l-13 -18
|
||||
c-4 -5.66699 -6.66699 -9.83398 -8 -12.501c-0.666992 -0.666992 -1.83398 -2.83398 -3.50098 -6.50098s-2.83398 -6.16699 -3.50098 -7.5v-1v-2l7 -21c1.33301 0.666992 3 1 5 1c2.66699 0 4.66699 -0.333008 6 -1c6 -4 9.5 -7.33301 10.5 -10s2 -5.16699 3 -7.5
|
||||
s2.83301 -4.83301 5.5 -7.5s9 -6 19 -10c3.33301 -0.666992 9.66602 -1 18.999 -1h20c20 0 39.833 1 59.5 3s39.834 2.33301 60.501 1c0 0.666992 0.833008 1.5 2.5 2.5s3.16699 1.5 4.5 1.5z" />
|
||||
<glyph glyph-name="three" unicode="3" horiz-adv-x="450"
|
||||
d="M10 70c0 -4.66699 1.16895 -8.33105 3.50195 -10.998s5.16602 -5 8.49902 -7s6.83301 -3.66699 10.5 -5s6.83398 -3 9.50098 -5l10.5 -10.5l10.5 -10.5c6.66699 -5.33301 15 -9.83301 25 -13.5s20.5 -6.66699 31.5 -9s21.833 -4 32.5 -5s20 -1.5 28 -1.5
|
||||
c44.667 0 81.667 10.333 111 31s52.5 47 69.5 79s29 67.5 36 106.5s10.5 76.833 10.5 113.5c0 35.333 -3.33301 71 -10 107s-21 68.667 -43 98c-6.66699 8 -14 14.5 -22 19.5s-15.667 11.167 -23 18.5l-1 1v1c0 1.33301 0.333008 2 1 2c0.666992 2 2.16699 5.66699 4.5 11
|
||||
s4.16602 8.66602 5.49902 9.99902c0.666992 0.666992 2 2.5 4 5.5l6.5 10l6.5 10c2 3 3.33301 5.16699 4 6.5l11 20c4.66699 8.66699 7 13.667 7 15v7l49 98c9.33301 9.33301 16 21.166 20 35.499l11 38.5c0.666992 0 1 0.666992 1 2c0 19.333 -4.5 33.5 -13.5 42.5
|
||||
s-21.167 17.5 -36.5 25.5h-47c-20.667 0 -44.334 -0.166992 -71.001 -0.5s-49.334 -1.16602 -68.001 -2.49902c-8.66699 -1.33301 -18.167 -2.5 -28.5 -3.5s-19.833 -3.33301 -28.5 -7s-16 -8.66699 -22 -15s-9 -15.5 -9 -27.5c0 -14 5 -26.833 15 -38.5s22 -17.5 36 -17.5
|
||||
h6l112 17l32 -3v-7c0 -0.666992 -0.666992 -3.16699 -2 -7.5s-3 -9 -5 -14l-6 -15.5c-2 -5.33301 -3.66699 -9.33301 -5 -12c-1.33301 -3.33301 -4.16602 -9.33301 -8.49902 -18l-14 -28l-14 -28c-4.33301 -8.66699 -7.5 -14.667 -9.5 -18
|
||||
c2.66699 -6.66699 -0.833008 -15.834 -10.5 -27.501s-21 -23.5 -34 -35.5l-36.5 -34c-11.333 -10.667 -17 -18.334 -17 -23.001c0 -3.33301 0.333008 -7.16602 1 -11.499s1.66699 -7.16602 3 -8.49902c0.666992 -1.33301 2.5 -1 5.5 1s5.16699 3 6.5 3
|
||||
c0 -4.66699 -0.333008 -8.33398 -1 -11.001s-1 -5 -1 -7s0.333008 -4 1 -6s2.66699 -4.66699 6 -8c1.33301 -2 4.83301 -5.66699 10.5 -11l10.5 -10h2c7.33301 0 14.833 0.5 22.5 1.5s15.5 1.5 23.5 1.5c23.333 0 39.5 -4.66699 48.5 -14s15.5 -25.666 19.5 -48.999
|
||||
c1.33301 -5.33301 2 -12.333 2 -21c0 -8 1.66699 -15 5 -21v-49c0 -28 -2.5 -56.833 -7.5 -86.5s-13.667 -56.834 -26 -81.501s-29.333 -45 -51 -61s-49.5 -24 -83.5 -24c-9.33301 0 -20.333 0.166992 -33 0.5s-23 3.5 -31 9.5c-2.66699 2 -6 5 -10 9s-8.33301 8 -13 12
|
||||
s-9.5 7.5 -14.5 10.5s-9.5 4.5 -13.5 4.5c-11.333 0 -18.5 -4.83301 -21.5 -14.5s-4.5 -19.167 -4.5 -28.5zM31.002 56.0029c2 0 3 -1.33301 3 -4c0 -2 -1 -3 -3 -3c-1.33301 0 -2 1 -2 3c0 2.66699 0.666992 4 2 4zM28.002 60.0029c1.33301 0 2 -1.33301 2 -4
|
||||
c0 -2 -0.666992 -3 -2 -3c-2 0 -3 1 -3 3c0 2.66699 1 4 3 4z" />
|
||||
<glyph glyph-name="four" unicode="4" horiz-adv-x="359"
|
||||
d="M157 55c0 -8 0.667969 -13.833 2.00098 -17.5s3.16602 -6.33398 5.49902 -8.00098s5 -2.83398 8 -3.50098s6.16699 -2.33398 9.5 -5.00098c6 -4 10.333 -8.5 13 -13.5s8.66699 -7.5 18 -7.5c19.333 0 30.333 9.33301 33 28l45 411
|
||||
c0.666992 8 2.33398 12.833 5.00098 14.5s5.66699 2.5 9 2.5s7.16602 -0.166992 11.499 -0.5s8.83301 1.5 13.5 5.5c5.33301 4 9.66602 8.83301 12.999 14.5s5 11.834 5 18.501c0 12 -4.66699 23 -14 33s-19 17 -29 21v13c0 15.333 1.5 30.166 4.5 44.499
|
||||
s5.16699 29.166 6.5 44.499c2.66699 41.333 6.5 81.333 11.5 120s11.5 78.334 19.5 119.001c-1.33301 5.33301 -3.33301 11 -6 17s-5.83398 11.667 -9.50098 17s-8 9.83301 -13 13.5s-10.5 5.5 -16.5 5.5c-7.33301 0 -13.5 -2 -18.5 -6s-10.5 -7.66699 -16.5 -11
|
||||
c-9.33301 -6 -17.166 -12.833 -23.499 -20.5s-12 -16 -17 -25s-9.5 -18.333 -13.5 -28s-8.33301 -19.167 -13 -28.5c-2.66699 -4.66699 -6.16699 -9.5 -10.5 -14.5s-7.83301 -9.83301 -10.5 -14.5c-6 -9.33301 -10.833 -19.666 -14.5 -30.999s-8.16699 -22 -13.5 -32
|
||||
c-1.33301 -1.33301 -3.66602 -5 -6.99902 -11l-11 -19l-11.5 -19c-3.66699 -6 -5.83398 -9.66699 -6.50098 -11c0 -0.666992 -0.666992 -2.33398 -2 -5.00098s-2.83301 -5.5 -4.5 -8.5s-3.16699 -6 -4.5 -9s-2.33301 -4.83301 -3 -5.5c-6 -10 -14 -21.333 -24 -34l-30 -39
|
||||
c-10 -13.333 -18.667 -26.166 -26 -38.499s-11 -23.166 -11 -32.499c0 -4.66699 1.16699 -7.5 3.5 -8.5s3.5 -3.16699 3.5 -6.5v-2c0 -0.666992 -0.666992 -2 -2 -4s-1.66602 -3 -0.999023 -3c0.666992 -2 3.16699 -5 7.5 -9s9 -8 14 -12s10 -7.5 15 -10.5
|
||||
s8.5 -4.5 10.5 -4.5h2c2.66699 0 10.167 0.666992 22.5 2s25.333 2.5 39 3.5s26.5 2.16699 38.5 3.5s19.667 2 23 2h6c0 -14.667 -1 -29.667 -3 -45l-6 -46c-2 -15.333 -3.5 -30.5 -4.5 -45.5s-0.833008 -29.167 0.5 -42.5c-5.33301 -35.333 -10.333 -71.166 -15 -107.499
|
||||
s-7 -72.5 -7 -108.5zM186.001 615l6.99902 7l28 56c1.33301 -1.33301 2.83301 -4.66602 4.5 -9.99902s2.5 -9 2.5 -11c0.666992 -8.66699 -0.5 -16.834 -3.5 -24.501s-5.5 -15.834 -7.5 -24.501c-2 -9.33301 -3.33301 -19.166 -4 -29.499s-1.66699 -20.5 -3 -30.5
|
||||
c-0.666992 -1.33301 -2.16699 -2.83301 -4.5 -4.5s-4.16602 -2.5 -5.49902 -2.5h-60z" />
|
||||
<glyph glyph-name="five" unicode="5" horiz-adv-x="535"
|
||||
d="M70 32c2 -1.33301 5.33984 -2.99805 10.0068 -4.99805l14.5 -6l14.5 -6c4.66699 -2 8 -3.33301 10 -4c1.33301 -1.33301 3.33301 -2.33301 6 -3s4.33398 -1 5.00098 -1h84c0.666992 0 2.83398 0.333008 6.50098 1s6.16699 1.66699 7.5 3
|
||||
c20.667 6.66699 39.167 13.334 55.5 20.001s31.666 14 45.999 22s28 17.333 41 28s26.5 23.667 40.5 39c9.33301 10 18.166 22.5 26.499 37.5s15.833 31 22.5 48s11.834 34 15.501 51s5.5 32.167 5.5 45.5c0 29.333 -3.33301 59 -10 89s-16.834 58.5 -30.501 85.5
|
||||
s-30.834 51.333 -51.501 73s-45 38.834 -73 51.501h-4c-1.33301 0.666992 -4.83301 1.5 -10.5 2.5s-9.16699 1.5 -10.5 1.5h-8c-4 0 -8.16699 -0.166992 -12.5 -0.5s-8.5 -0.5 -12.5 -0.5h-8c0 1.33301 -0.333008 3.83301 -1 7.5s0.666016 6.16699 3.99902 7.5l5.5 21.5
|
||||
c2.33301 9 2.83301 17.167 1.5 24.5c0.666992 4 2 11 4 21l6 31.5l6 31.5c2 10 3.66699 17 5 21c1.33301 6 4.33301 10.167 9 12.5s10 4 16 5s12 1.5 18 1.5c6.66699 0 12.334 0.666992 17.001 2h9c4.66699 0 9.5 0.166992 14.5 0.5s9.5 0.5 13.5 0.5h10
|
||||
c17.333 0 34.333 -0.666992 51 -2s33.667 -2 51 -2h2c9.33301 3.33301 17 9 23 17s9 17 9 27v0c0 0.666992 -0.333008 1 -1 1c0 2 -0.5 4.83301 -1.5 8.5s-1.5 5.83398 -1.5 6.50098c-4.66699 10.667 -8.66699 18.667 -12 24s-7.33301 9 -12 11s-10.334 3 -17.001 3h-26
|
||||
c-1.33301 0 -4.66602 0.166992 -9.99902 0.5s-11.333 0.833008 -18 1.5s-12.667 1.16699 -18 1.5s-8.66602 0.5 -9.99902 0.5h-17c-24 0 -48 -1.5 -72 -4.5s-48.333 -3.83301 -73 -2.5c-3.33301 -1.33301 -6.83301 -4 -10.5 -8s-7 -8.66699 -10 -14s-5.5 -10.5 -7.5 -15.5
|
||||
s-3.33301 -9.16699 -4 -12.5l-35 -165c1.33301 -10.667 0.333008 -21 -3 -31l-7.5 -25l-12 -38l-12 -38.5l-7.5 -25.5c-0.666992 -1.33301 -1.83398 -4.33301 -3.50098 -9s-2.83398 -7.66699 -3.50098 -9s-1.33398 -3.33301 -2.00098 -6l-1 -4c0 -7.33301 2 -14.833 6 -22.5
|
||||
s9.33301 -14.5 16 -20.5s14 -11 22 -15s15.667 -6 23 -6c4 0 9.5 4.5 16.5 13.5s15 18.667 24 29s19.167 20 30.5 29s23.333 13.5 36 13.5c9.33301 0 18.166 -1.66699 26.499 -5s15.166 -8.66602 20.499 -15.999c19.333 -25.333 33.166 -50 41.499 -74
|
||||
s13.166 -52 14.499 -84c0 -1.33301 -0.333008 -5.33301 -1 -12s-1.33398 -11 -2.00098 -13c-0.666992 -2.66699 -2 -7.33398 -4 -14.001s-4.16699 -13.5 -6.5 -20.5l-6.5 -20l-4 -12.5c-7.33301 -19.333 -17 -36.666 -29 -51.999s-25.5 -29 -40.5 -41
|
||||
s-31.333 -22.5 -49 -31.5s-35.834 -16.833 -54.501 -23.5c-1.33301 -0.666992 -3.66602 -1.33398 -6.99902 -2.00098s-5.66602 -1 -6.99902 -1h-77c-5.33301 0 -10.166 1.5 -14.499 4.5s-8.33301 6.16699 -12 9.5s-7.5 6.5 -11.5 9.5s-8.33301 4.5 -13 4.5
|
||||
c-3.33301 0 -7.33301 -0.666992 -12 -2s-9.5 -3.33301 -14.5 -6s-9.16699 -5.83398 -12.5 -9.50098s-5 -7.83398 -5 -12.501c0 -2 0.833008 -3.5 2.5 -4.5s2.5 -2.83301 2.5 -5.5c3.33301 0 5 -0.333008 5 -1v-3c0 -0.666992 0.666992 -1.33398 2 -2.00098
|
||||
s4.66602 -1 9.99902 -1c0 -4.66699 2.16699 -7.83398 6.5 -9.50098s9 -3.33398 14 -5.00098s9.5 -3.5 13.5 -5.5s5.33301 -5.33301 4 -10zM28.0068 74.002l3 -4h-3v4z" />
|
||||
<glyph glyph-name="six" unicode="6" horiz-adv-x="429"
|
||||
d="M10 89c0 -27.333 6.16699 -52.5029 18.5 -75.5029s28.5 -42.667 48.5 -59s42.5 -29.166 67.5 -38.499s50.5 -14 76.5 -14c20 0 40.167 2.33301 60.5 7s39.333 12 57 22s33.167 22.5 46.5 37.5s23 32.5 29 52.5c0.666992 2 1.5 4.83301 2.5 8.5s1.16699 5.5 0.5 5.5
|
||||
c-2 28 -10.667 51.667 -26 71s-33.833 35.166 -55.5 47.499s-45.167 22 -70.5 29s-49.333 11.833 -72 14.5c-2.66699 0 -7.16699 -0.166992 -13.5 -0.5s-13 -0.666016 -20 -0.999023s-13.5 -0.833008 -19.5 -1.5s-10.333 -1 -13 -1c0 11.333 1 22.333 3 33s6.33301 21 13 31
|
||||
l145 393c2 15.333 5.66699 30.833 11 46.5s11 30.834 17 45.501c6 15.333 13.333 31.166 22 47.499s13 33.166 13 50.499c0 5.33301 -1.16699 11.333 -3.5 18s-5.5 12.834 -9.5 18.501s-8.66699 10.334 -14 14.001s-11 5.5 -17 5.5c-10 0 -16.5 -3 -19.5 -9
|
||||
s-7.83301 -11 -14.5 -15c-16.667 -30 -30 -59.667 -40 -89s-21 -59.666 -33 -90.999c-4 -10 -6.83301 -20.5 -8.5 -31.5s-4.83398 -21.5 -9.50098 -31.5c-9.33301 -22 -18.333 -44.5 -27 -67.5s-16 -46.167 -22 -69.5v-3c-9.33301 -17.333 -16.833 -35.333 -22.5 -54
|
||||
s-12.167 -37 -19.5 -55l-40 -99.5c-13.333 -32.333 -24.666 -65.833 -33.999 -100.5c1.33301 -15.333 0.5 -30.5 -2.5 -45.5s-4.5 -30.167 -4.5 -45.5zM179 115.997c8 0 20.3311 -1 36.998 -3s33.5 -5.5 50.5 -10.5s31.833 -12.167 44.5 -21.5s19 -21 19 -35
|
||||
c0 -10 -4.66699 -19.167 -14 -27.5s-20.333 -15.333 -33 -21s-25.5 -10 -38.5 -13s-23.167 -4.83301 -30.5 -5.5c-8.66699 0 -19.5 1.66699 -32.5 5s-25.667 8 -38 14s-23 13.5 -32 22.5s-13.5 18.833 -13.5 29.5v52c0 2 3.66699 4 11 6s15.833 3.5 25.5 4.5
|
||||
s18.834 1.83301 27.501 2.5s14.334 1 17.001 1z" />
|
||||
<glyph glyph-name="seven" unicode="7" horiz-adv-x="412"
|
||||
d="M172 -24c1.33301 -5.33301 4.83301 -9.66016 10.5 -12.9932s11.167 -5 16.5 -5c3.33301 0 7.5 5.16699 12.5 15.5s10.333 23.5 16 39.5s11.334 33.5 17.001 52.5l16.5 55l14 47.5c4 14 7 23.667 9 29l48.5 235.5c15.667 78.333 30.167 157.166 43.5 236.499
|
||||
c3.33301 18.667 8.33301 37 15 55s10 36.333 10 55c0 17.333 -4.33301 30.833 -13 40.5s-19.667 19.167 -33 28.5h-141c-11.333 3.33301 -23 5.16602 -35 5.49902s-23.667 0.833008 -35 1.5c-2 0 -7.16699 0.166992 -15.5 0.5s-17.333 0.666016 -27 0.999023
|
||||
s-18.667 0.833008 -27 1.5s-13.5 1 -15.5 1h-12c-11.333 0 -18.333 -3.33301 -21 -10s-4.33398 -15.334 -5.00098 -26.001c-1.33301 0 -3.33301 -0.333008 -6 -1s-4.33398 -1.33398 -5.00098 -2.00098v-2c0 -6 1.16699 -12.667 3.5 -20s5.83301 -14.333 10.5 -21
|
||||
s9.83398 -12.334 15.501 -17.001s12.167 -7 19.5 -7h134c0.666992 0.666992 1.83398 1.5 3.50098 2.5s2.83398 1.5 3.50098 1.5c2 0 7.66699 -0.666992 17 -2s19.166 -2.83301 29.499 -4.5s19.833 -3.5 28.5 -5.5s13 -3.66699 13 -5c0 -14 -1.5 -28.667 -4.5 -44
|
||||
s-5.16699 -30.333 -6.5 -45c0 -4.66699 -0.5 -11 -1.5 -19s-1.5 -12.333 -1.5 -13l-4 -3l-88 -426c0 -2 -1.33301 -7.16699 -4 -15.5l-9 -29l-10 -32.5l-8 -25c-1.33301 -2.66699 -3.33301 -7.5 -6 -14.5l-8.5 -22.5l-8.5 -22.5
|
||||
c-2.66699 -7 -4.33398 -11.833 -5.00098 -14.5c-0.666992 -0.666992 -1 -2 -1 -4v-5c0 -6 0.5 -10.333 1.5 -13s2.66699 -4.83398 5 -6.50098s5 -3.16699 8 -4.5s6.5 -3 10.5 -5c3.33301 -2 5.5 -4.33301 6.5 -7s4.16699 -4 9.5 -4c2.66699 0 4.66699 1.33301 6 4
|
||||
s2.33301 5 3 7zM154 -20.9941c2 0 3 -1 3 -3c0 -2.66699 -1 -4 -3 -4c-1.33301 0 -2 1.33301 -2 4c0 2 0.666992 3 2 3z" />
|
||||
<glyph glyph-name="eight" unicode="8" horiz-adv-x="486"
|
||||
d="M59 60c8 -14.667 17.9961 -27.667 29.9961 -39s25.5 -20.833 40.5 -28.5s30.833 -13.5 47.5 -17.5s33 -6 49 -6c27.333 0 53 5.5 77 16.5s45.667 25.5 65 43.5s36.5 38.333 51.5 61s27.5 45.667 37.5 69c7.33301 17.333 12.166 37 14.499 59s3.5 42.667 3.5 62
|
||||
c0 36 -4.66699 69.333 -14 100s-24.666 60.334 -45.999 89.001c-2 2 -5.5 4.83301 -10.5 8.5l-15.5 11c-5.33301 3.66699 -10 7.16699 -14 10.5s-6 5.66602 -6 6.99902l7 7l13 13.5c4.66699 5 7.33398 8.16699 8.00098 9.5s2.16699 3.66602 4.5 6.99902l7 10
|
||||
c2.33301 3.33301 4.33301 6.33301 6 9s2.83398 4.33398 3.50098 5.00098c14 22.667 24.667 47.334 32 74.001s11 53 11 79c0 22.667 -4.33301 42.334 -13 59.001s-18.667 34 -30 52c-3.33301 5.33301 -6.16602 11.166 -8.49902 17.499s-5.16602 12.166 -8.49902 17.499
|
||||
s-7.5 9.66602 -12.5 12.999s-11.5 5 -19.5 5c-7.33301 0 -14 -1.33301 -20 -4s-11.833 -5.66699 -17.5 -9l-16 -9.5c-5 -3 -10.5 -4.83301 -16.5 -5.5c-6.66699 -0.666992 -12 -1 -16 -1s-7.5 -0.333008 -10.5 -1s-5.83301 -1.83398 -8.5 -3.50098
|
||||
s-6.33398 -4.5 -11.001 -8.5l-43 -41.5c-14 -13.667 -26.667 -28.167 -38 -43.5s-21.166 -31.666 -29.499 -48.999s-13.833 -36 -16.5 -56c-1.33301 -7.33301 -3.5 -14.666 -6.5 -21.999s-4.5 -14.666 -4.5 -21.999c0 -9.33301 1.16699 -20.5 3.5 -33.5
|
||||
s6.16602 -23.5 11.499 -31.5c1.33301 -3.33301 4 -6.66602 8 -9.99902s6 -7.66602 6 -12.999v-2l-7 -14c-0.666992 -1.33301 -2.66699 -4.33301 -6 -9s-6.66602 -9.83398 -9.99902 -15.501s-6.66602 -10.834 -9.99902 -15.501s-5.33301 -7.66699 -6 -9
|
||||
c-5.33301 -8.66699 -9.5 -17.667 -12.5 -27s-7.16699 -18 -12.5 -26l-21 -32c-8 -12 -13.667 -23.667 -17 -35c-9.33301 -26.667 -17 -54.334 -23 -83.001s-9 -57.334 -9 -86.001c0 -14.667 3.16699 -28.5 9.5 -41.5s11.5 -26.167 15.5 -39.5
|
||||
c4 -2.66699 8.16699 -7.16699 12.5 -13.5s8.16602 -10.166 11.499 -11.499zM97.9961 165c0 32.667 3.66797 62.499 11.001 89.499s19 54.833 35 83.5c0.666992 2 2.33398 5.33301 5.00098 10l8 13.5c2.66699 4.33301 5 8.33301 7 12s3.33301 6.16699 4 7.5l5.5 5.5
|
||||
c2.33301 2.33301 4.16602 3.83301 5.49902 4.5l28.5 20.5c9.66699 7 21.167 10.833 34.5 11.5h41c6.66699 0 16 0.166992 28 0.5s22 -1.16699 30 -4.5c10.667 -4 19.5 -11 26.5 -21s12.5 -21.167 16.5 -33.5s6.66699 -25 8 -38s2 -24.167 2 -33.5
|
||||
c0 -16 -1.33301 -33.167 -4 -51.5s-6.83398 -36.5 -12.501 -54.5s-13.167 -34.667 -22.5 -50s-21 -28 -35 -38c-13.333 -9.33301 -28.666 -19.333 -45.999 -30s-35 -16 -53 -16c-9.33301 0 -20.166 1.66699 -32.499 5s-24.5 7.83301 -36.5 13.5s-22.833 12.334 -32.5 20.001
|
||||
s-15.834 16.167 -18.501 25.5s-3.83398 17 -3.50098 23s0.5 14.333 0.5 25zM194.997 599.999c0 2 0.165039 5.00098 0.498047 9.00098s0.5 6.33301 0.5 7l4 4c7.33301 28.667 18.333 53 33 73s33 39 55 57c1.33301 1.33301 3.33301 2.83301 6 4.5s4.33398 2.5 5.00098 2.5
|
||||
c0.666992 0.666992 1.83398 0.5 3.50098 -0.5s2.83398 -1.83301 3.50098 -2.5c7.33301 4.66699 15.333 10.667 24 18s18 11 28 11c0 -5.33301 1.33301 -10 4 -14l8.5 -13c3 -4.66699 5.83301 -9.83398 8.5 -15.501s4 -12.834 4 -21.501c0 -20.667 -3.66699 -39.667 -11 -57
|
||||
l4 -3l-2.5 -7c-1.66699 -4.66699 -3.16699 -8.33398 -4.5 -11.001c-4 -9.33301 -9.83301 -19.666 -17.5 -30.999s-16.334 -22 -26.001 -32s-20.167 -18.5 -31.5 -25.5s-22.666 -10.5 -33.999 -10.5c-8.66699 0 -14.334 2.33301 -17.001 7s-7.66699 8.33398 -15 11.001
|
||||
s-13.333 4 -18 4c-4 0 -7.16699 0.833008 -9.5 2.5s-3.83301 4.66699 -4.5 9s-1 12.5 -1 24.5z" />
|
||||
<glyph glyph-name="nine" unicode="9" horiz-adv-x="408"
|
||||
d="M62 -24c0 -7.33301 1.66797 -14.8389 5.00098 -22.5059s7.66602 -14.834 12.999 -21.501s11.5 -12.167 18.5 -16.5s14.5 -6.5 22.5 -6.5h1l7 3.5l7 3.5c30 28 58.167 58 84.5 90s50 65.667 71 101s38.667 72.333 53 111s24.5 78.667 30.5 120c6 39.333 10.5 79 13.5 119
|
||||
s3.16699 80 0.5 120c2 1.33301 3.5 4.16602 4.5 8.49902s1.66699 8.83301 2 13.5l1 14c0.333008 4.66699 0.5 8 0.5 10c0 3.33301 -1.5 5.5 -4.5 6.5s-5.16699 3.16699 -6.5 6.5c-6.66699 20 -14.167 41 -22.5 63s-18.666 42.167 -30.999 60.5s-27.5 33.5 -45.5 45.5
|
||||
s-40 18 -66 18c-19.333 0 -38.5 -3.66699 -57.5 -11s-37 -17.166 -54 -29.499s-32 -26.666 -45 -42.999s-22.833 -33.166 -29.5 -50.499c-0.666992 -1.33301 -1.16699 -3.83301 -1.5 -7.5s-0.5 -7.5 -0.5 -11.5s-0.333008 -7.66699 -1 -11s-2 -5 -4 -5
|
||||
c-3.33301 -17.333 -7.16602 -33.166 -11.499 -47.499s-6.5 -30.166 -6.5 -47.499v-28c8 -16.667 17.833 -32.667 29.5 -48s24.834 -28.833 39.501 -40.5s30.667 -21 48 -28s35.666 -10.5 54.999 -10.5c18.667 0 36.667 2.33301 54 7s34.666 10.667 51.999 18v-7
|
||||
c0 -26.667 -3 -52.167 -9 -76.5s-12.667 -49.166 -20 -74.499v-4c-11.333 -28 -23.833 -53.667 -37.5 -77s-28.334 -45.666 -44.001 -66.999s-32.5 -42.166 -50.5 -62.499l-57 -63.5c-4 -4.66699 -6.33301 -8 -7 -10s-1 -5.66699 -1 -11zM87.001 553.994
|
||||
c0 14.667 0.99707 29.499 2.99707 44.499s5.83301 29.333 11.5 43s13 26 22 37s20.5 20.5 34.5 28.5c3.33301 2 8.66602 4.83301 15.999 8.5s11.333 5.5 12 5.5h52c6 0 12.5 -3.33301 19.5 -10s13.167 -14.667 18.5 -24s9.83301 -18.666 13.5 -27.999s5.5 -17 5.5 -23v-81
|
||||
l-1.5 -2.5c-1 -1.66699 -1.83301 -3.16699 -2.5 -4.5c-10 -10.667 -19.333 -19.834 -28 -27.501s-17.667 -14 -27 -19s-19.666 -8.5 -30.999 -10.5s-24.666 -2.66699 -39.999 -2c-9.33301 0.666992 -18.666 2.5 -27.999 5.5s-17.666 7.33301 -24.999 13
|
||||
s-13.333 12.334 -18 20.001s-7 16.5 -7 26.5z" />
|
||||
<glyph glyph-name="question" unicode="?" horiz-adv-x="383"
|
||||
d="M17 -63c0 -12 2.83398 -22.502 8.50098 -31.502s13 -16.333 22 -22s19 -9.83398 30 -12.501s21.833 -4 32.5 -4h23c4.66699 3.33301 8.83398 7.83301 12.501 13.5s5.5 11.834 5.5 18.501c0 11.333 -2.16699 23 -6.5 35s-10.333 22.833 -18 32.5
|
||||
s-16.834 17.667 -27.501 24s-22.334 9.5 -35.001 9.5c-7.33301 0 -13.833 -2.16699 -19.5 -6.5s-10.5 -9.66602 -14.5 -15.999s-7.16699 -13.166 -9.5 -20.499s-3.5 -14 -3.5 -20zM56.001 84.998c0.666992 -0.666992 2.33496 -2.00098 5.00195 -4.00098
|
||||
s4.33398 -3 5.00098 -3c0.666992 -0.666992 1.83398 -0.333984 3.50098 0.999023s2.83398 2 3.50098 2c1.33301 0.666992 3.16602 1.33398 5.49902 2.00098s4.16602 1.33398 5.49902 2.00098c5.33301 13.333 8.33301 26.666 9 39.999s3.33398 26.666 8.00098 39.999
|
||||
l12.5 34.5c3.66699 9.66699 7.66699 18.667 12 27s9.33301 16.666 15 24.999l20.5 29.5l80 76c25.333 24.667 47.666 50.834 66.999 78.501s34.833 57.667 46.5 90s17.5 68.5 17.5 108.5v7c0 3.33301 -0.333008 5 -1 5c-7.33301 35.333 -22.5 64.166 -45.5 86.499
|
||||
s-52.5 33.5 -88.5 33.5c-3.33301 0 -9 -0.666992 -17 -2l-25 -4l-23 -3.5c-6.66699 -1 -10.334 -1.5 -11.001 -1.5c-14 -5.33301 -27.667 -11.833 -41 -19.5s-25.333 -16.667 -36 -27s-19.334 -22 -26.001 -35s-10 -27.5 -10 -43.5c0 -8.66699 1.83301 -17.5 5.5 -26.5
|
||||
s10.5 -13.5 20.5 -13.5c9.33301 0 17 2.5 23 7.5s11.333 10.833 16 17.5l14 20.5c4.66699 7 10 12.833 16 17.5l4 -3c10 11.333 23.5 20.5 40.5 27.5s33.167 10.5 48.5 10.5c17.333 0 31.5 -4.16699 42.5 -12.5s16.5 -21.166 16.5 -38.499
|
||||
c0 -35.333 -7.83301 -67.333 -23.5 -96s-33.834 -56.667 -54.501 -84c-0.666992 -0.666992 -1.83398 -2.5 -3.50098 -5.5l-5 -9c-1.66699 -3 -3.33398 -5.83301 -5.00098 -8.5s-2.83398 -4.33398 -3.50098 -5.00098c-14.667 -17.333 -31 -33 -49 -47s-34.667 -29 -50 -45
|
||||
c-19.333 -20.667 -35.666 -44.167 -48.999 -70.5s-23.666 -53.166 -30.999 -80.499c-3.33301 -9.33301 -6 -18.166 -8 -26.499s-3 -17.166 -3 -26.499c0 -11.333 4.83301 -21 14.5 -29s17.834 -15.667 24.501 -23c0 0.666992 0.833008 1.5 2.5 2.5s3.16699 1.5 4.5 1.5z" />
|
||||
<glyph glyph-name="at" unicode="@" horiz-adv-x="676"
|
||||
d="M137 -62c12 -13.333 25.1768 -24.6738 39.5098 -34.0068s29.333 -17.5 45 -24.5s31.834 -13 48.501 -18l50 -14.5h35c29.333 0 58.333 2.33301 87 7s56 14 82 28c-1.33301 2.66699 -1.33301 5.83398 0 9.50098s3 7.5 5 11.5l6 12c2 4 3 7.66699 3 11
|
||||
c0 8 -0.5 14.167 -1.5 18.5s-2.5 8 -4.5 11l-6 9c-2 3 -4 7.16699 -6 12.5c-4.66699 -1.33301 -8 -3.66602 -10 -6.99902l-11 11c-14 -8.66699 -26.833 -16.167 -38.5 -22.5s-23.5 -11.5 -35.5 -15.5s-24.833 -7 -38.5 -9s-29.5 -3 -47.5 -3c-31.333 0 -62 5.83301 -92 17.5
|
||||
s-56.833 27.834 -80.5 48.501s-42.834 45 -57.501 73s-22 58 -22 90v32c8.66699 40 17 76.5 25 109.5s19.333 63 34 90s34.334 51.333 59.001 73s58.334 41.167 101.001 58.5c17.333 7.33301 34.5 13.166 51.5 17.499s35.5 6.5 55.5 6.5c39.333 0 70.5 -3.33301 93.5 -10
|
||||
s40.5 -17.667 52.5 -33s19.667 -35.666 23 -60.999s5 -56.666 5 -93.999c0 -10.667 0.333008 -22.167 1 -34.5s-0.666016 -23.833 -3.99902 -34.5c-4 -13.333 -10.167 -30 -18.5 -50s-18.5 -39.333 -30.5 -58s-25.5 -34.667 -40.5 -48s-30.5 -20 -46.5 -20
|
||||
s-28.5 3.83301 -37.5 11.5s-13.5 20.167 -13.5 37.5v11c0.666992 2.66699 2.16699 7.16699 4.5 13.5l7.5 20l7.5 20c2.33301 6.33301 4.16602 10.833 5.49902 13.5c1.33301 4 3.33301 8.83301 6 14.5s6.33398 10.167 11.001 13.5
|
||||
c1.33301 0.666992 3.83301 1.83398 7.5 3.50098s5.83398 2.83398 6.50098 3.50098c2 1.33301 5.66699 4.66602 11 9.99902s8.66602 9 9.99902 11c0 2.66699 -0.5 8 -1.5 16s-1.5 13.333 -1.5 16v3v4c0 1.33301 0.166992 5.33301 0.5 12l1 21l1 21
|
||||
c0.333008 6.66699 0.5 10.667 0.5 12c0 16.667 -0.833008 31.167 -2.5 43.5s-5 22.833 -10 31.5s-12.167 16.334 -21.5 23.001s-21.333 13 -36 19h-2c-14.667 0 -30.5 -4.83301 -47.5 -14.5s-34.333 -22.167 -52 -37.5s-35 -32.333 -52 -51s-32.667 -37.334 -47 -56.001
|
||||
s-26.666 -36 -36.999 -52s-17.833 -29 -22.5 -39c-5.33301 -12 -8.5 -26.333 -9.5 -43s-1.5 -30.667 -1.5 -42c0 -7.33301 2.66699 -16.5 8 -27.5s9.66602 -19.5 12.999 -25.5c1.33301 -2 2.66602 -5.16699 3.99902 -9.5s2.83301 -8.5 4.5 -12.5s3 -7.66699 4 -11
|
||||
s2.16699 -5 3.5 -5h2c0.666992 0 1.83398 0.5 3.50098 1.5s2.83398 1.5 3.50098 1.5c2 0 3 -1 3 -3c0.666992 -1.33301 2 -4.83301 4 -10.5s3 -9.16699 3 -10.5c2 -4.66699 7.16699 -8.83398 15.5 -12.501s17.166 -6.66699 26.499 -9s18.333 -4.16602 27 -5.49902
|
||||
s14.667 -2 18 -2c10 0 17.833 2 23.5 6s10.334 8.5 14.001 13.5s6.83398 9.5 9.50098 13.5s5.66699 6 9 6c1.33301 0 4.5 -1.83301 9.5 -5.5s10.333 -8 16 -13l17 -14.5c5.66699 -4.66699 9.83398 -7.66699 12.501 -9c11.333 -7.33301 23.166 -12.166 35.499 -14.499
|
||||
s25.5 -3.5 39.5 -3.5c19.333 0 37.166 4 53.499 12s31.166 18.5 44.499 31.5s25.166 27.5 35.499 43.5s19.166 31.667 26.499 47c3.33301 6.66699 5.66602 13.167 6.99902 19.5s3.66602 12.833 6.99902 19.5c0.666992 0.666992 1.5 1.83398 2.5 3.50098
|
||||
s1.5 2.83398 1.5 3.50098c7.33301 22.667 13.333 45.334 18 68.001s7 46.334 7 71.001c0 22 -1.16699 47 -3.5 75s-7.33301 55.333 -15 82s-19 50.834 -34 72.501s-35.167 37.167 -60.5 46.5h-7c-1.33301 0.666992 -3.66602 3 -6.99902 7s-5.66602 6.33301 -6.99902 7
|
||||
s-4.33301 0.833984 -9 0.500977s-7.66699 -0.5 -9 -0.5l-52.5 8.5c-17.667 3 -35.167 6.16699 -52.5 9.5h-2h-2c-0.666992 -0.666992 -2.33398 -1.5 -5.00098 -2.5s-4.33398 -1.5 -5.00098 -1.5c-1.33301 0 -3.83301 0.5 -7.5 1.5s-6.16699 1.83301 -7.5 2.5h-2h-1
|
||||
c-0.666992 -0.666992 -2.33398 -2.66699 -5.00098 -6s-4.66699 -5 -6 -5c-0.666992 0 -2.83398 1.16699 -6.50098 3.5s-6.16699 3.5 -7.5 3.5c-0.666992 0.666992 -2 1 -4 1h-3v-8c0 -0.666992 -3.5 -2.83398 -10.5 -6.50098s-12.833 -6.16699 -17.5 -7.5h-5
|
||||
c-3.33301 0 -5.83301 0.333008 -7.5 1s-3.16699 2.66699 -4.5 6c-5.33301 -2.66699 -7.5 -5.83398 -6.5 -9.50098s-0.5 -6.16699 -4.5 -7.5l-1.5 1.5c-1 1 -1.83301 1.5 -2.5 1.5c-0.666992 0.666992 -1.83398 1.5 -3.50098 2.5s-2.83398 1.5 -3.50098 1.5
|
||||
c-0.666992 -0.666992 -1.83398 -2 -3.50098 -4s-2.83398 -3 -3.50098 -3c-0.666992 -0.666992 -2.33398 -0.833984 -5.00098 -0.500977s-4.33398 0.5 -5.00098 0.5c-2.66699 -0.666992 -4 -2 -4 -4v-6c0 -2 -0.333008 -3.83301 -1 -5.5s-2.66699 -2.5 -6 -2.5
|
||||
c-1.33301 0 -3.16602 0.5 -5.49902 1.5s-2.83301 2.83301 -1.5 5.5c-7.33301 -3.33301 -12.166 -6.33301 -14.499 -9s-6.83301 -5.66699 -13.5 -9c-3.33301 -1.33301 -8.5 -3.66602 -15.5 -6.99902s-11.167 -5.66602 -12.5 -6.99902
|
||||
c-13.333 -7.33301 -25.833 -16.333 -37.5 -27s-22.5 -21.667 -32.5 -33c-6.66699 -6.66699 -11.834 -14 -15.501 -22s-8.16699 -15.667 -13.5 -23c-1.33301 -2 -3.33301 -4.83301 -6 -8.5l-4 -5.5c-6.66699 -15.333 -10.834 -29.5 -12.501 -42.5
|
||||
s-6.83398 -25.833 -15.501 -38.5c-0.666992 -0.666992 -1.33398 -1.83398 -2.00098 -3.50098s-1.33398 -2.83398 -2.00098 -3.50098c-4.66699 -11.333 -8.16699 -23.666 -10.5 -36.999l-6.5 -37l-12.5 -54.5c-3.66699 -15.667 -5.5 -34.5 -5.5 -56.5
|
||||
c0 -5.33301 -0.166992 -13.5 -0.5 -24.5s1.16699 -19.833 4.5 -26.5c2 -5.33301 4.5 -9.16602 7.5 -11.499s5.16699 -6.83301 6.5 -13.5c0.666992 -4.66699 0.833984 -7.83398 0.500977 -9.50098s-0.5 -3.16699 -0.5 -4.5s0.333008 -3 1 -5s2.66699 -5 6 -9
|
||||
c0 -0.666992 1.66699 -2.33398 5 -5.00098s5 -4.33398 5 -5.00098c2 -4.66699 3.16699 -8.5 3.5 -11.5s0.5 -5.83301 0.5 -8.5c0 -2 0.333008 -4.16699 1 -6.5s2.66699 -5.5 6 -9.5c0.666992 -0.666992 3.5 -2.83398 8.5 -6.50098s7.83301 -6.16699 8.5 -7.5
|
||||
c4.66699 -4 8.5 -9.16699 11.5 -15.5s6.16699 -11.5 9.5 -15.5l9.5 -10l11.5 -12l10 -10c2.66699 -2.66699 4.33398 -4 5.00098 -4h7zM203.01 168.992c0 14.667 4.16699 30.668 12.5 48.001s18.333 34.333 30 51s24 32.5 37 47.5l33.5 38.5l10 10.5
|
||||
c4.66699 5 9.66699 10 15 15l15 14.5l9 9c1.33301 1.33301 5.83301 4.66602 13.5 9.99902s13.834 8 18.501 8c2.66699 0 4 -2 4 -6v-6c0 -4.66699 -0.166992 -8.16699 -0.5 -10.5s-1.5 -5.5 -3.5 -9.5c-1.33301 -2 -4.16602 -7.5 -8.49902 -16.5l-14 -29l-14.5 -29l-9 -17.5
|
||||
c-4.66699 -9.33301 -8.5 -20 -11.5 -32s-6.16699 -22.333 -9.5 -31c-2.66699 -7.33301 -7.33398 -17.833 -14.001 -31.5s-14.5 -27 -23.5 -40s-18.5 -24.333 -28.5 -34s-20 -14.5 -30 -14.5c-6 0 -10.833 2.16699 -14.5 6.5s-6.83398 9.5 -9.50098 15.5s-4.5 12 -5.5 18
|
||||
s-1.5 11 -1.5 15zM273.01 596.993c0 -2.66699 -0.833008 -5.16699 -2.5 -7.5s-4.16699 -3.5 -7.5 -3.5v3c0 5.33301 3.33301 8 10 8z" />
|
||||
<glyph glyph-name="A" unicode="A"
|
||||
d="M110 51c0 11.333 2.16211 21.8213 6.49512 31.4883s8.16602 19.834 11.499 30.501c2 6.66699 4.33301 15.5 7 26.5l8 32.5c2.66699 10.667 4.83398 20 6.50098 28l2.5 12v3c2.66699 8.66699 6.66699 23.834 12 45.501l17 69l16.5 69l10.5 45.5
|
||||
c0.666992 4.66699 2.5 16.5 5.5 35.5l9.5 61.5c3.33301 22 6.66602 42.333 9.99902 61s5.66602 30.334 6.99902 35.001c0.666992 4.66699 2 11.667 4 21s4.16699 18.5 6.5 27.5s4.5 17 6.5 24s3.33301 11.167 4 12.5l4 7l5 13.5c3.33301 9 7 19.833 11 32.5l12 38.5l10 31.5
|
||||
c4.66699 12.667 9.33398 21.167 14.001 25.5s13 8.5 25 12.5c1.33301 0 5.33301 1.83301 12 5.5s11 5.5 13 5.5h3c12.667 0 22.834 -2.66699 30.501 -8s13.5 -12.166 17.5 -20.499s6.5 -17.666 7.5 -27.999s1.5 -20.5 1.5 -30.5c0 -15.333 -0.166992 -31.333 -0.5 -48
|
||||
s-1.5 -32.667 -3.5 -48c0 -1.33301 -0.333008 -4.16602 -1 -8.49902s-1.5 -9.16602 -2.5 -14.499s-1.83301 -10.166 -2.5 -14.499s-1 -7.16602 -1 -8.49902v-1c0 -46 1.83301 -91.167 5.5 -135.5s8.83398 -88.833 15.501 -133.5c0.666992 -4.66699 1.66699 -10.5 3 -17.5
|
||||
s2.66602 -13.167 3.99902 -18.5c2 -6.66699 4.83301 -11.834 8.5 -15.501s5.5 -9.5 5.5 -17.5c0 -7.33301 -2.33301 -13 -7 -17s-7 -9.66699 -7 -17v-10l3 -38.5c1.33301 -17 2.5 -34.333 3.5 -52s1.83301 -33.667 2.5 -48s1 -23.166 1 -26.499
|
||||
c0 -1.33301 0.333008 -4.83301 1 -10.5s1.5 -11.667 2.5 -18s1.83301 -12.166 2.5 -17.499s1 -8.66602 1 -9.99902c0.666992 -0.666992 1 -3 1 -7v-7c0 -7.33301 -2.5 -15.666 -7.5 -24.999s-12.167 -14 -21.5 -14c-5.33301 0 -12.166 2.5 -20.499 7.5
|
||||
s-14.166 9.5 -17.499 13.5s-7.66602 9.66699 -12.999 17l-8 11l-21 197l-4 4h-2h-2l-7 -3.5l-7 -3.5c0 -0.666992 -0.5 -1.5 -1.5 -2.5l-1.5 -1.5c-3.33301 -2 -7.5 -4.66699 -12.5 -8s-10 -6.5 -15 -9.5s-9.33301 -5.5 -13 -7.5l-5.5 -3h-24
|
||||
c-1.33301 2 -3.66602 3.66699 -6.99902 5s-5.66602 2 -6.99902 2c-3.33301 0 -6.5 -5.33301 -9.5 -16s-6 -24.167 -9 -40.5l-10 -52.5c-3.66699 -18.667 -8.5 -36.167 -14.5 -52.5s-13.167 -29.833 -21.5 -40.5s-18.166 -16 -29.499 -16
|
||||
c-4.66699 0 -9.33398 1.5 -14.001 4.5s-9 6.66699 -13 11s-7.16699 9 -9.5 14s-3.5 9.5 -3.5 13.5zM274.995 380.988c-5.33301 -12 -9.16699 -24.834 -11.5 -38.501s-3.5 -26.834 -3.5 -39.501c8 0 16.667 2.5 26 7.5s17.333 9.5 24 13.5c2 0.666992 4.66699 2 8 4l10.5 6.5
|
||||
l10 6.5c3 2 5.16699 3.33301 6.5 4c0.666992 0.666992 1 3.33398 1 8.00098v8c0 23.333 -1.5 46.166 -4.5 68.499s-5.16699 44.833 -6.5 67.5c0 6 -0.333008 17 -1 33s-1.5 33 -2.5 51s-1.83301 35 -2.5 51s-1 27 -1 33c-4 -2.66699 -6.33301 -6 -7 -10
|
||||
c-0.666992 -2 -1.5 -5.16699 -2.5 -9.5s-2.16699 -9 -3.5 -14s-2.5 -9.66699 -3.5 -14s-1.5 -7.16602 -1.5 -8.49902c0 -0.666992 -0.166992 -3 -0.5 -7s-0.833008 -8.66699 -1.5 -14s-1.5 -10.666 -2.5 -15.999s-1.83301 -9.33301 -2.5 -12v-4z" />
|
||||
<glyph glyph-name="B" unicode="B" horiz-adv-x="366"
|
||||
d="M10 57l0.000976562 8.00098c0 4 -0.166992 8 -0.5 12s-0.5 7.66699 -0.5 11v7c0 5.33301 0.166992 12.833 0.5 22.5s0.5 15.167 0.5 16.5s0.5 5.16602 1.5 11.499s2.33301 13 4 20s3 13.667 4 20s1.5 10.166 1.5 11.499l22.5 188l22.5 188l8.5 35.5
|
||||
c3 12.333 4.83301 24.166 5.5 35.499c0 2 0.166992 7 0.5 15s0.833008 16.5 1.5 25.5s1.16699 17.5 1.5 25.5s0.5 13 0.5 15v13c0 7.33301 -0.666992 14.5 -2 21.5s-2 14.167 -2 21.5c0 11.333 2.83301 21.5 8.5 30.5s12.834 16.667 21.501 23s18.167 11.833 28.5 16.5
|
||||
s20.166 8.33398 29.499 11.001c1.33301 0 4.33301 -0.166992 9 -0.5s7.66699 -0.166016 9 0.500977c4 1.33301 9.5 4.5 16.5 9.5s13.167 7.5 18.5 7.5c19.333 0 37.166 -5.16699 53.499 -15.5s30.5 -23.333 42.5 -39s21.333 -33 28 -52s10 -37.5 10 -55.5
|
||||
c0 -47.333 -8 -90.333 -24 -129s-35 -78.667 -57 -120c-3.33301 -6 -9 -13.333 -17 -22s-12 -16.667 -12 -24c0 -0.666992 1.66699 -3.33398 5 -8.00098l11 -16c4 -6 8 -11.667 12 -17s6.66699 -9 8 -11c7.33301 -23.333 12.666 -43.833 15.999 -61.5s5 -38.167 5 -61.5
|
||||
c0 -24.667 -2.33301 -51.167 -7 -79.5s-13 -54.666 -25 -78.999s-28.167 -44.5 -48.5 -60.5s-46.166 -24 -77.499 -24c-12 0 -24.833 0.333008 -38.5 1s-26.667 2.66699 -39 6s-23.5 8.5 -33.5 15.5s-17.667 17.167 -23 30.5zM94.001 100.001l-0.000976562 -5
|
||||
c0 -1.33301 1.33301 -2.33301 4 -3h14c21.333 0 39 5.16699 53 15.5s25.167 23.5 33.5 39.5s14.166 33.667 17.499 53s5 38 5 56v15c-0.666992 2.66699 -1.66699 7 -3 13s-2.66602 12.333 -3.99902 19s-2.66602 13 -3.99902 19s-2.33301 10 -3 12
|
||||
c-2.66699 8.66699 -7.5 13.334 -14.5 14.001s-13.833 1 -20.5 1c-2 0 -6 -0.666992 -12 -2s-12 -3 -18 -5s-11.333 -4.33301 -16 -7s-7 -5.33398 -7 -8.00098l-25 -221v-6zM130 443.001l3 -6.99902c15.333 10.667 28.833 23 40.5 37s22.5 29 32.5 45s19.333 32.333 28 49
|
||||
l26 49c5.33301 19.333 10.166 37.833 14.499 55.5s6.5 36.5 6.5 56.5c0 6 -0.666992 12.833 -2 20.5s-3.66602 14.667 -6.99902 21s-7.5 11.666 -12.5 15.999s-11.5 6.5 -19.5 6.5c-10.667 0 -23.667 -3 -39 -9s-26.333 -13.667 -33 -23
|
||||
c0 -4.66699 -0.333008 -12.5 -1 -23.5s-1.5 -22.667 -2.5 -35s-2.16699 -24 -3.5 -35s-2.33301 -18.5 -3 -22.5s-2.16699 -14 -4.5 -30s-5 -33 -8 -51s-5.66699 -35 -8 -51s-3.83301 -26 -4.5 -30c0 -4 -0.5 -9.5 -1.5 -16.5s-1.5 -12.833 -1.5 -17.5v-5zM277 858.002
|
||||
c-1.33301 0 -2 -1.33301 -2 -4c0 -2 0.666992 -3 2 -3c2 0 3 1 3 3c0 2.66699 -1 4 -3 4z" />
|
||||
<glyph glyph-name="C" unicode="C" horiz-adv-x="362"
|
||||
d="M10 234c0 -21.333 2.16309 -42.4961 6.49609 -63.4961s11.666 -39.667 21.999 -56s24 -29.666 41 -39.999s38.167 -15.5 63.5 -15.5c10.667 0 22.5 0.666992 35.5 2s25.833 3.5 38.5 6.5s24.834 7 36.501 12s21.834 11.167 30.501 18.5c4 3.33301 7 7.16602 9 11.499
|
||||
s4.66699 8.5 8 12.5c-0.666992 13.333 -4.33398 26.166 -11.001 38.499s-17.334 18.5 -32.001 18.5c-10.667 0 -20.834 -1.66699 -30.501 -5s-19.334 -7 -29.001 -11s-19.5 -7.66699 -29.5 -11s-20.333 -5 -31 -5c-11.333 0 -19.833 2.66699 -25.5 8
|
||||
s-9.5 12.166 -11.5 20.499s-3 17.166 -3 26.499v28c0 36 0.833008 71.833 2.5 107.5s1.83398 71.5 0.500977 107.5l21 172c0.666992 2 1.83398 7 3.50098 15l3.5 17c0.666992 2.66699 2 7 4 13l6.5 19.5l6.5 20c2 6.33301 3.33301 10.833 4 13.5
|
||||
c6.66699 7.33301 12.834 16.5 18.501 27.5s11.834 21.5 18.501 31.5s14.334 18.667 23.001 26s19.334 11 32.001 11c0.666992 0 2.33398 -0.166992 5.00098 -0.5s4.33398 -0.5 5.00098 -0.5c4.66699 -4.66699 9.5 -10 14.5 -16l15 -17.5
|
||||
c5 -5.66699 10.5 -10.334 16.5 -14.001s12.667 -5.5 20 -5.5c12.667 0 21.334 4.5 26.001 13.5s7 19.5 7 31.5v0c0 0.666992 -0.333008 1 -1 1c-0.666992 1.33301 -2.83398 4.83301 -6.50098 10.5s-6.16699 9.16699 -7.5 10.5c-12.667 20 -28.834 38 -48.501 54
|
||||
s-42.167 24 -67.5 24c-24 0 -45.667 -9.16699 -65 -27.5s-36.333 -40.5 -51 -66.5s-26.667 -52.833 -36 -80.5s-15.666 -50.5 -18.999 -68.5c-1.33301 -6 -3.33301 -16.833 -6 -32.5l-8.5 -49.5l-8.5 -50c-2.66699 -16 -4.33398 -27 -5.00098 -33
|
||||
c-0.666992 -8.66699 -1.5 -24.167 -2.5 -46.5s-2.16699 -46 -3.5 -71s-2.5 -48.667 -3.5 -71s-1.5 -37.833 -1.5 -46.5v-25z" />
|
||||
<glyph glyph-name="D" unicode="D" horiz-adv-x="383"
|
||||
d="M10 52c0 -7.33301 2.16797 -13.6689 6.50098 -19.002s9.83301 -9.66602 16.5 -12.999s13.5 -5.83301 20.5 -7.5s13.5 -2.5 19.5 -2.5c7.33301 0 13.833 2.33301 19.5 7s12.167 6 19.5 4c52.667 16.667 98.667 42.667 138 78s72.666 77 99.999 125
|
||||
c7.33301 23.333 12.833 45.833 16.5 67.5s5.5 44.5 5.5 68.5c0 35.333 -1.83301 75.666 -5.5 120.999s-10.667 91 -21 137s-24.666 89.5 -42.999 130.5s-42.166 74.5 -71.499 100.5c-12 11.333 -25.333 19.666 -40 24.999s-29.334 11 -44.001 17
|
||||
c-11.333 4.66699 -22 8.83398 -32 12.501s-21 5.5 -33 5.5h-10c-4.66699 0 -7.66699 -0.333008 -9 -1c-8 -3.33301 -15.333 -8.16602 -22 -14.499s-10 -14.166 -10 -23.499v-14c0 -1.33301 0.666992 -5 2 -11s2.5 -12.333 3.5 -19s2.16699 -13 3.5 -19s2 -9.66699 2 -11
|
||||
c0 -3.33301 0.333008 -9.33301 1 -18s1.5 -17.667 2.5 -27s1.83301 -18.166 2.5 -26.499s1 -13.833 1 -16.5v-67c0 -43.333 -2.83301 -86.5 -8.5 -129.5s-7.5 -86.167 -5.5 -129.5l-25 -242v-9c0 -8.66699 3 -16.167 9 -22.5s9 -12.833 9 -19.5v-2
|
||||
c-2.66699 -4.66699 -6.33398 -10.334 -11.001 -17.001s-7 -12.667 -7 -18zM133.001 625.997v102.994c0 2 -0.333008 5.83301 -1 11.5s-1.5 11.834 -2.5 18.501s-1.83301 12.834 -2.5 18.501s-1 9.5 -1 11.5c0 0.666992 -0.166992 2.16699 -0.5 4.5s-0.5 3.83301 -0.5 4.5
|
||||
c7.33301 0 15.833 -2.16699 25.5 -6.5s16.5 -7.5 20.5 -9.5c20 -9.33301 36.5 -26.166 49.5 -50.499s23.5 -51 31.5 -80s13.833 -58 17.5 -87s6.16699 -52.5 7.5 -70.5c0 -5.33301 0.333008 -14.166 1 -26.499s1.5 -25.666 2.5 -39.999s1.83301 -27.833 2.5 -40.5
|
||||
s1 -21.334 1 -26.001c-3.33301 -49.333 -15.666 -91.166 -36.999 -125.499s-52.333 -66.166 -93 -95.499c-2 -2 -5.33301 -4.5 -10 -7.5l-14.5 -9.5c-5 -3.33301 -10 -6.16602 -15 -8.49902s-8.83301 -3.5 -11.5 -3.5v9c0 4.66699 0.166992 9.5 0.5 14.5
|
||||
s0.666016 9.66699 0.999023 14s0.5 7.16602 0.5 8.49902c0 4 0.833008 14.167 2.5 30.5l5.5 52.5c2 18.667 4 36 6 52s3 26 3 30c4.66699 50 7.66699 100.667 9 152s2 102 2 152z" />
|
||||
<glyph glyph-name="E" unicode="E" horiz-adv-x="317"
|
||||
d="M10 124c0 -10.667 3.1709 -18.9941 9.50391 -24.9941s14.166 -10.667 23.499 -14s19.166 -5.5 29.499 -6.5s19.5 -1.5 27.5 -1.5c5.33301 0 10.166 0.166992 14.499 0.5s9.5 1.5 15.5 3.5c4 0 10.667 0.166992 20 0.5s19.5 0.666016 30.5 0.999023
|
||||
s21.333 0.666016 31 0.999023s16.5 0.5 20.5 0.5c6 0 12.333 0.666992 19 2s12.667 3.33301 18 6s9.83301 6.5 13.5 11.5s5.5 11.5 5.5 19.5s-2.33301 14.667 -7 20s-10.167 9.66602 -16.5 12.999s-13.333 5.66602 -21 6.99902s-14.5 2 -20.5 2
|
||||
c-18.667 0 -37.167 -0.5 -55.5 -1.5s-36.833 -1.5 -55.5 -1.5v10l28 218c-0.666992 8.66699 -0.666992 17.667 0 27s3 18 7 26c16 1.33301 33 3.16602 51 5.49902s35 5.16602 51 8.49902c1.33301 0.666992 5.16602 4.16699 11.499 10.5s9.5 11.166 9.5 14.499
|
||||
c0.666992 5.33301 -0.333008 11.333 -3 18s-6.5 12.834 -11.5 18.501s-10.5 10.5 -16.5 14.5s-12 5.66699 -18 5c-1.33301 0 -6 -1.16699 -14 -3.5s-12.667 -3.5 -14 -3.5c-2.66699 -0.666992 -7.16699 -1.5 -13.5 -2.5s-10.166 -1.5 -11.499 -1.5s-4.33301 0.833008 -9 2.5
|
||||
s-7.33398 3.16699 -8.00098 4.5c1.33301 46 0.666016 92.5 -2.00098 139.5s-5.66699 93.167 -9 138.5l4 14l12 2.5c8 1.66699 14.333 3.16699 19 4.5c11.333 2.66699 22.5 5.83398 33.5 9.50098s22.167 6.5 33.5 8.5c8.66699 1.33301 16.834 2.33301 24.501 3
|
||||
s14.5 2.5 20.5 5.5s10.667 7.33301 14 13s5 14.167 5 25.5c0 14.667 -4.5 25.834 -13.5 33.501s-20.5 11.5 -34.5 11.5c-7.33301 0 -20.666 -1.33301 -39.999 -4s-39.333 -6.5 -60 -11.5s-39.667 -11 -57 -18s-27.666 -14.833 -30.999 -23.5
|
||||
c-0.666992 -0.666992 -1.33398 -1.83398 -2.00098 -3.50098s-1.33398 -2.83398 -2.00098 -3.50098v-341l-19.5 -203.5c-6.33301 -67 -18.5 -134.167 -36.5 -201.5v-9z" />
|
||||
<glyph glyph-name="F" unicode="F" horiz-adv-x="285"
|
||||
d="M17 31c4 -0.666992 8.8252 -2.50488 14.4922 -5.50488s10.167 -5.83301 13.5 -8.5h46c3.33301 0 5.83301 1.5 7.5 4.5s3 6.33301 4 10s1.66699 7.16699 2 10.5s0.5 5.66602 0.5 6.99902l21 224c-1.33301 38 -0.166016 75.5 3.50098 112.5s4.83398 74.5 3.50098 112.5
|
||||
c-1.33301 3.33301 -1.16602 6 0.500977 8s3.83398 3.5 6.50098 4.5s5.33398 1.5 8.00098 1.5h6c4 0.666992 10.833 1.33398 20.5 2.00098s19.834 1.33398 30.501 2.00098s20.834 1.33398 30.501 2.00098s16.5 1 20.5 1l14 14v3c0 8.66699 -1.66699 15.334 -5 20.001
|
||||
s-7.33301 8.5 -12 11.5s-9.66699 6 -15 9s-10 7.5 -14 13.5h-91l-4 3l-0.5 7c-0.333008 4.66699 -0.666016 10.334 -0.999023 17.001l-1 20c-0.333008 6.66699 -0.5 12 -0.5 16c-1.33301 27.333 -2.83301 54.5 -4.5 81.5s-2.5 54.167 -2.5 81.5v16
|
||||
c20 8.66699 40.833 12.834 62.5 12.501s42.834 -0.833008 63.501 -1.5c5.33301 0.666992 11.5 3 18.5 7s10.5 9 10.5 15c0 1.33301 -0.333008 2 -1 2c-2.66699 10 -5 16.667 -7 20s-4.33301 5.5 -7 6.5s-6 1.5 -10 1.5c-3.33301 0 -8 1.33301 -14 4
|
||||
c-1.33301 0.666992 -4.83301 3 -10.5 7s-9.16699 6.33301 -10.5 7h-2c-5.33301 0 -10.5 -1.16699 -15.5 -3.5s-9.83301 -3.5 -14.5 -3.5c-4 0 -7.33301 1 -10 3h-46c-7.33301 -5.33301 -15 -7.33301 -23 -6s-15.667 1 -23 -1c-1.33301 0 -5.33301 -1.5 -12 -4.5
|
||||
s-10.667 -4.83301 -12 -5.5h-2c-2.66699 0 -4.33398 0.666992 -5.00098 2s-2.66699 2 -6 2c-2.66699 0 -5 -0.5 -7 -1.5s-3.66699 -3.16699 -5 -6.5v-28v-28c0 -8 1.33301 -17.333 4 -28c0 -7.33301 0.333008 -20.333 1 -39s1.5 -38.5 2.5 -59.5s1.83301 -40.833 2.5 -59.5
|
||||
s1 -31.667 1 -39v-68c0 -47.333 -1.66699 -94 -5 -140s-6.33301 -92.667 -9 -140c-0.666992 -1.33301 -1 -4.33301 -1 -9c0 -4 0.333008 -6.66699 1 -8l-18 -158v-16c0 -7.33301 0.166992 -13.5 0.5 -18.5s2.5 -11.167 6.5 -18.5z" />
|
||||
<glyph glyph-name="G" unicode="G" horiz-adv-x="426"
|
||||
d="M10 252c0 -22.667 1.83301 -47.3359 5.5 -74.0029s10.667 -51.334 21 -74.001s24.5 -41.667 42.5 -57s41.667 -23 71 -23h22c5.33301 0 12.333 1.33301 21 4c2.66699 0.666992 6.83398 2.83398 12.501 6.50098s9.83398 4.83398 12.501 3.50098
|
||||
c36 16.667 63.167 40 81.5 70s27.5 65 27.5 105c0 8 -0.666992 15.667 -2 23s-2 14.666 -2 21.999c0 6 4 9.33301 12 10s17 1.33398 27 2.00098s19.833 2.5 29.5 5.5s16.167 9.5 19.5 19.5c1.33301 2.66699 2.33301 6.16699 3 10.5s0.666992 6.5 0 6.5l-17 18h-11l-3 4
|
||||
c-0.666992 0 -1.83398 -0.666992 -3.50098 -2s-2.83398 -2 -3.50098 -2h-2c-5.33301 0 -9 1.16699 -11 3.5s-3.83301 4.66602 -5.5 6.99902s-3.83398 4.66602 -6.50098 6.99902s-7.66699 3.5 -15 3.5c-8 0 -19.167 -0.333008 -33.5 -1s-28.833 -2 -43.5 -4
|
||||
s-28 -4.83301 -40 -8.5s-19.667 -8.5 -23 -14.5v-14c0 -11.333 1.83301 -19 5.5 -23s7.83398 -7 12.501 -9l14.5 -6.5c5 -2.33301 8.5 -7.16602 10.5 -14.499v-19c0 -14.667 -2 -29.667 -6 -45s-10.167 -29.166 -18.5 -41.499s-18.666 -22.5 -30.999 -30.5
|
||||
s-26.833 -12 -43.5 -12c-6 0 -11.167 4 -15.5 12s-7.83301 17.333 -10.5 28s-4.83398 21 -6.50098 31s-2.5 17 -2.5 21v36v31c0.666992 5.33301 1.66699 15 3 29s3 28.833 5 44.5l5.5 44.5c1.66699 14 3.16699 23.667 4.5 29c-1.33301 10 -0.833008 19.667 1.5 29
|
||||
s5 18.833 8 28.5s5.5 19.334 7.5 29.001s2 19.5 0 29.5l32 166c0 0.666992 0.666992 3.16699 2 7.5s3 9.33301 5 15s3.83301 11.334 5.5 17.001s3.16699 10.167 4.5 13.5c3.33301 9.33301 7.5 19.666 12.5 30.999s11 22 18 32s15.167 18.5 24.5 25.5
|
||||
s19.666 10.5 30.999 10.5c15.333 0 25 -5.66699 29 -17s7.33301 -24 10 -38s7.33398 -26.667 14.001 -38s20 -17 40 -17c8 0 13.167 3.66699 15.5 11s3.5 14 3.5 20c0 24 -6 47.5 -18 70.5s-27.333 41.833 -46 56.5c-8 6.66699 -17.667 10.5 -29 11.5
|
||||
s-20.333 4.16699 -27 9.5h-39c-2.66699 0 -6.16699 -2 -10.5 -6s-6.83301 -7.66699 -7.5 -11c-0.666992 1.33301 -2.16699 3.16602 -4.5 5.49902s-4.16602 3.83301 -5.49902 4.5l-0.5 0.5c-0.333008 0.333008 -0.833008 0.5 -1.5 0.5c-2 0 -3.5 -1.5 -4.5 -4.5
|
||||
s-2.5 -5.16699 -4.5 -6.5c-15.333 -10 -29 -23.833 -41 -41.5s-22.5 -36.667 -31.5 -57s-16.833 -40.833 -23.5 -61.5s-12 -39 -16 -55c1.33301 -8 1.16602 -16.833 -0.500977 -26.5s-3.66699 -19.5 -6 -29.5s-5 -19.833 -8 -29.5s-5.16699 -18.5 -6.5 -26.5l-42 -247
|
||||
c-2 -9.33301 -3.16699 -21.166 -3.5 -35.499s-0.5 -27.166 -0.5 -38.499z" />
|
||||
<glyph glyph-name="H" unicode="H" horiz-adv-x="387"
|
||||
d="M221 133c0 -4 -0.169922 -11.499 -0.50293 -22.499s-0.166016 -22.333 0.500977 -34s2 -22.5 4 -32.5s5.33301 -16.333 10 -19c0.666992 -0.666992 2.33398 -1.66699 5.00098 -3l9 -4.5l9 -4.5c2.66699 -1.33301 4.33398 -2 5.00098 -2
|
||||
c1.33301 -1.33301 4.33301 -3.16602 9 -5.49902s7.66699 -4.16602 9 -5.49902c1.33301 4.66699 3.83301 6.83398 7.5 6.50098s7.5 0 11.5 1s7.66699 4 11 9s5 15.167 5 30.5c0 14 -0.666992 27.833 -2 41.5s-2 27.5 -2 41.5c0 20 1.83301 39.5 5.5 58.5s6.5 38.167 8.5 57.5
|
||||
c0.666992 3.33301 1.66699 11.833 3 25.5s2.83301 28.167 4.5 43.5l4.5 43c1.33301 13.333 2 21.666 2 24.999c0.666992 1.33301 1.5 4.83301 2.5 10.5s1.5 9.16699 1.5 10.5c6 62.667 9.66699 125.334 11 188.001s4.66602 125.334 9.99902 188.001
|
||||
c1.33301 13.333 3.5 26.166 6.5 38.499s4.5 25.166 4.5 38.499v11c0 5.33301 -0.333008 9 -1 11c-2.66699 10.667 -9.83398 20.5 -21.501 29.5s-23.167 13.167 -34.5 12.5c-5.33301 -0.666992 -11.833 -3.33398 -19.5 -8.00098s-11.5 -10.334 -11.5 -17.001l-18 -253v-21
|
||||
c0 -2.66699 -0.666992 -9.66699 -2 -21s-2.5 -23.5 -3.5 -36.5s-2 -25.333 -3 -37s-1.5 -18.834 -1.5 -21.501l-4 -51l-4 -51l0.5 -1.5c0.333008 -1 0.166016 -1.5 -0.500977 -1.5c-5.33301 -6 -13.333 -9 -24 -9c-10 0 -18.333 -0.666992 -25 -2
|
||||
c-12 -2 -24.333 -5.5 -37 -10.5s-25.667 -7.5 -39 -7.5c-3.33301 0 -5 2 -5 6v10c0 21.333 1.66699 43 5 65l10 64c2.66699 22 3.66699 44.667 3 68s-0.666992 46.333 0 69c0 4.66699 0.166992 16.667 0.5 36s0.666016 40 0.999023 62s0.833008 42.667 1.5 62s1 31.333 1 36
|
||||
v5c0 6 -3.16699 13.333 -9.5 22s-12.833 14 -19.5 16c-0.666992 0 -1.83398 -0.333008 -3.50098 -1s-2.83398 -1.66699 -3.50098 -3l-3 7l-2.5 0.5c-1.66699 0.333008 -3.16699 0.5 -4.5 0.5h-8c-3.33301 0 -5.33301 -1.33301 -6 -4l-14 10
|
||||
c-3.33301 -4 -5.83301 -7.5 -7.5 -10.5s-2.66699 -5.66699 -3 -8s-0.5 -5.16602 -0.5 -8.49902v-11c0 -3.33301 -0.166992 -12 -0.5 -26s-0.666016 -28.833 -0.999023 -44.5s-0.666016 -30.5 -0.999023 -44.5s-0.5 -22.667 -0.5 -26v-120
|
||||
c-0.666992 -28.667 -3 -57.334 -7 -86.001s-7.66699 -57.334 -11 -86.001c-4.66699 -48 -7.66699 -96 -9 -144s-4 -96 -8 -144c0 -2 -0.666992 -6.83301 -2 -14.5s-2.5 -15.834 -3.5 -24.501s-2.16699 -16.667 -3.5 -24s-2 -12 -2 -14v-14
|
||||
c0 -8.66699 1.83301 -15.667 5.5 -21s8.5 -9.66602 14.5 -12.999s12.5 -6 19.5 -8s13.833 -4.33301 20.5 -7v-1h1c6.66699 0 12 1.66699 16 5s7.16699 7.5 9.5 12.5s4.16602 10.5 5.49902 16.5s2.33301 11.333 3 16c0 1.33301 0.5 6.33301 1.5 15s2 18.334 3 29.001l3 32.5
|
||||
c1 11 1.83301 19.5 2.5 25.5v3v4c0 0.666992 -0.166992 3.33398 -0.5 8.00098l-1 14.5c-0.333008 5 -0.666016 9.66699 -0.999023 14s-0.5 7.16602 -0.5 8.49902c0 17.333 0.833008 35.5 2.5 54.5s4.16699 37.167 7.5 54.5c0.666992 0 1.33398 0.166992 2.00098 0.5
|
||||
s1.33398 0.5 2.00098 0.5c6 0 11.333 -1.83301 16 -5.5s10.334 -5.5 17.001 -5.5c5.33301 0 11.833 0.333008 19.5 1s15.334 1.5 23.001 2.5s15 2.16699 22 3.5s13.167 2.33301 18.5 3v-10l-21 -151v-22z" />
|
||||
<glyph glyph-name="I" unicode="I" horiz-adv-x="317"
|
||||
d="M77 14c4 0 10.9971 -0.172852 20.9971 -0.505859s20.667 -0.833008 32 -1.5s21.833 -1.16699 31.5 -1.5s16.5 -0.5 20.5 -0.5h14c0.666992 0 2.83398 -0.333008 6.50098 -1l11.5 -2c4 -0.666992 7.66699 -1.5 11 -2.5s5.66602 -1.5 6.99902 -1.5h1h2
|
||||
c3.33301 1.33301 8 2.66602 14 3.99902s9.66699 2.33301 11 3c0.666992 0 1.83398 1 3.50098 3s2.83398 3.33301 3.50098 4s1.83398 1.33398 3.50098 2.00098s2.83398 1.33398 3.50098 2.00098v24c-3.33301 2.66699 -5.83301 6.16699 -7.5 10.5
|
||||
s-3.83398 7.83301 -6.50098 10.5c-2.66699 3.33301 -6.16699 7.16602 -10.5 11.499s-6.83301 6.5 -7.5 6.5h-42c-0.666992 0 -2.33398 0.833008 -5.00098 2.5s-4.66699 3.16699 -6 4.5v1c0 27.333 1.5 54.333 4.5 81s6.66699 53.5 11 80.5l13 80.5
|
||||
c4.33301 26.667 7.83301 53.667 10.5 81c0.666992 4 1.5 10.667 2.5 20s2 19.5 3 30.5s2 21.333 3 31s1.83301 16.5 2.5 20.5v270c0 10 -3 19.5 -9 28.5s-9 17.833 -9 26.5v2c7.33301 2 15.666 3 24.999 3c10 0 19.5 0.666992 28.5 2s16.5 4 22.5 8s9 11 9 21
|
||||
c0 7.33301 -1.83301 14 -5.5 20s-9.83398 9 -18.501 9h-5c-1.33301 0 -2.33301 -1 -3 -3c-2.66699 0 -3.83398 1.33301 -3.50098 4s0.333008 5.5 0 8.5s-2 5.66699 -5 8s-9.16699 3.5 -18.5 3.5c-7.33301 0 -15.166 -1.83301 -23.499 -5.5s-15.5 -5.5 -21.5 -5.5
|
||||
c-2.66699 0 -4.33398 0.666992 -5.00098 2s-2.66699 2 -6 2c-10.667 0 -19.334 -2.33301 -26.001 -7c-15.333 0.666992 -31.166 0.833984 -47.499 0.500977s-32.166 -1.5 -47.499 -3.5c-1.33301 -3.33301 -3.66602 -5.5 -6.99902 -6.5s-6.66602 -2.16699 -9.99902 -3.5
|
||||
s-6.16602 -3.16602 -8.49902 -5.49902s-3.5 -5.83301 -3.5 -10.5c0 -9.33301 2.33301 -17.166 7 -23.499s10.334 -11.333 17.001 -15s14 -6.33398 22 -8.00098s15.667 -2.5 23 -2.5c2 0 6 0.166992 12 0.5s9.66699 0.5 11 0.5c2 2 4.33301 3 7 3
|
||||
c6 0 10.833 -4.16699 14.5 -12.5s6.5 -17.666 8.5 -27.999s3.33301 -20.5 4 -30.5s1 -16.667 1 -20c0 -25.333 -1.5 -50.166 -4.5 -74.499s-3.83301 -48.833 -2.5 -73.5l-21 -176c-0.666992 -1.33301 -1.33398 -3.66602 -2.00098 -6.99902s-1 -5.66602 -1 -6.99902
|
||||
s-0.166992 -4.66602 -0.5 -9.99902s-0.833008 -11 -1.5 -17s-1.16699 -11.5 -1.5 -16.5s-0.5 -8.16699 -0.5 -9.5c-0.666992 -6.66699 -2.16699 -18.167 -4.5 -34.5l-7.5 -51.5l-7.5 -51.5c-2.33301 -16.333 -4.16602 -27.833 -5.49902 -34.5
|
||||
c0.666992 -1.33301 1 -3.33301 1 -6c0 -2 -0.333008 -3.66699 -1 -5c0 -1.33301 -0.333008 -4.5 -1 -9.5l-2 -15.5l-2 -16c-0.666992 -5.33301 -1.33398 -9 -2.00098 -11c0 -2 -0.166992 -5 -0.5 -9l-1 -12c-0.333008 -4 -1.16602 -7.5 -2.49902 -10.5
|
||||
s-3.33301 -4.5 -6 -4.5c-1.33301 0 -3.83301 0.666992 -7.5 2s-5.83398 2 -6.50098 2h-18c-7.33301 0 -14.666 -0.833008 -21.999 -2.5s-13.666 -4.33398 -18.999 -8.00098s-8 -9.5 -8 -17.5c0 -3.33301 0.5 -5.5 1.5 -6.5s2.16699 -2 3.5 -3s2.16602 -2.16699 2.49902 -3.5
|
||||
s0.166016 -4 -0.500977 -8c8.66699 -7.33301 18 -13.5 28 -18.5s20.667 -8.16699 32 -9.5z" />
|
||||
<glyph glyph-name="J" unicode="J" horiz-adv-x="464"
|
||||
d="M10 135c0 -22.667 2.82715 -40.3398 8.49414 -53.0068s16.834 -24.667 33.501 -36c18.667 -13.333 36.334 -24.333 53.001 -33s37 -13 61 -13c4 0 9.83301 0.833008 17.5 2.5l23.5 5l21.5 4.5l9.5 2c24 10.667 44.5 26.167 61.5 46.5s31.167 42.833 42.5 67.5
|
||||
s20 50.334 26 77.001s9.66699 52 11 76c0 6 -0.333008 10.833 -1 14.5s0.666016 8.16699 3.99902 13.5v260c4 11.333 6 22.333 6 33c0 11.333 0.333008 22.666 1 33.999c1.33301 22 3 44.167 5 66.5s3 44.5 3 66.5v28c0 10 -1.33301 19.333 -4 28
|
||||
c2.66699 2 7.33398 3.16699 14.001 3.5s13.334 1 20.001 2s12.5 2.83301 17.5 5.5s7.5 7.33398 7.5 14.001c0 2 -0.166992 4.66699 -0.5 8s-1 6.83301 -2 10.5s-2.5 6.83398 -4.5 9.50098s-4.66699 4 -8 4c-1.33301 0 -2 -0.333008 -2 -1c-0.666992 0 -2 -1 -4 -3
|
||||
c-0.666992 1.33301 -2.16699 3.66602 -4.5 6.99902s-4.16602 5.66602 -5.49902 6.99902l-4 4l-3 -8c-2 2 -5.5 5.16699 -10.5 9.5s-9.83301 7.16602 -14.5 8.49902c-2 0 -5.16699 -0.166992 -9.5 -0.5s-9.16602 -0.666016 -14.499 -0.999023
|
||||
s-10.333 -0.666016 -15 -0.999023s-8 -0.5 -10 -0.5h-8h-13h-14h-7c-1.33301 -0.666992 -4.83301 -2 -10.5 -4s-9.16699 -3 -10.5 -3c-2 0 -5.5 -0.166992 -10.5 -0.5s-10.5 -0.5 -16.5 -0.5c-5.33301 0 -10.5 0.166992 -15.5 0.5s-8.5 0.5 -10.5 0.5
|
||||
c-7.33301 -2.66699 -13.333 -5.83398 -18 -9.50098s-7 -9.16699 -7 -16.5c0 -6.66699 2.16699 -12.667 6.5 -18s9.5 -9.83301 15.5 -13.5s12.5 -6.66699 19.5 -9s13.167 -3.83301 18.5 -4.5c2 0 5.5 -0.166992 10.5 -0.5s10.333 -0.666016 16 -0.999023
|
||||
s11 -0.666016 16 -0.999023s8.5 -0.5 10.5 -0.5c2 -18.667 3.16699 -33.5 3.5 -44.5s0.5 -24.833 0.5 -41.5v-30c-2.66699 -4.66699 -4.66699 -12 -6 -22s-2.33301 -20.5 -3 -31.5s-1.16699 -21.667 -1.5 -32s-0.5 -18.166 -0.5 -23.499c-2 -38.667 -3 -77.334 -3 -116.001
|
||||
s-1.33301 -77 -4 -115s-8 -75.5 -16 -112.5s-20.333 -73.5 -37 -109.5c-9.33301 -18.667 -21.333 -35.667 -36 -51s-33.334 -23 -56.001 -23c-4 0 -9 0.333008 -15 1s-12.167 1.83398 -18.5 3.50098s-12.166 3.83398 -17.499 6.50098s-9 6 -11 10
|
||||
c-0.666992 4.66699 -1.16699 11 -1.5 19s-1.33301 16.167 -3 24.5s-4 15.833 -7 22.5s-7.5 10.667 -13.5 12l-3 -0.5c-2 -0.333008 -3.33301 -0.166016 -4 0.500977c-1.33301 0.666992 -3.16602 2.83398 -5.49902 6.50098s-3.83301 6.16699 -4.5 7.5h-2
|
||||
c-14 0 -23.667 -5.16699 -29 -15.5s-8 -21.166 -8 -32.499z" />
|
||||
<glyph glyph-name="K" unicode="K" horiz-adv-x="405"
|
||||
d="M38 865c0 -4 -0.334961 -10.6709 -1.00195 -20.0039s-1.5 -19.166 -2.5 -29.499s-1.83301 -20.166 -2.5 -29.499s-1 -16 -1 -20v-3c0 -1.33301 -0.5 -5.5 -1.5 -12.5s-1.5 -11.167 -1.5 -12.5l-5 -56.5l-6 -67.5c-2 -22 -3.66699 -41.167 -5 -57.5s-2 -24.833 -2 -25.5
|
||||
v-461c0 -7.33301 2.16699 -13.333 6.5 -18s9.5 -8.66699 15.5 -12s12.5 -5.66602 19.5 -6.99902s13.167 -2 18.5 -2s10.666 1.33301 15.999 4s8 7.33398 8 14.001l4 56v274c18 0 35.667 -9.16699 53 -27.5s33.166 -39.833 47.499 -64.5s26.5 -49.167 36.5 -73.5
|
||||
s17 -42.833 21 -55.5c2 -6 3 -13 3 -21v-22c0 -7.33301 0.666992 -14.333 2 -21s4.33301 -12.334 9 -17.001c5.33301 -5.33301 12 -10.833 20 -16.5s16 -8.5 24 -8.5c6 0 12.833 1.83301 20.5 5.5s12.167 8.83398 13.5 15.501v25c0 28.667 -4.5 55.334 -13.5 80.001
|
||||
s-19.833 49.667 -32.5 75l-26.5 52c-8.33301 16 -17 31.167 -26 45.5s-19 28.5 -30 42.5s-24.5 28.333 -40.5 43v7c24 25.333 43.5 51.666 58.5 78.999s28.167 55.166 39.5 83.499l33.5 86c11 29 24.5 58.5 40.5 88.5c4 6.66699 8.33301 13.334 13 20.001l14 20.5
|
||||
c4.66699 7 8.5 14.167 11.5 21.5s4.5 15 4.5 23c0 2 -1.16699 5.5 -3.5 10.5s-5.16602 10.167 -8.49902 15.5s-6.66602 10 -9.99902 14s-5.66602 6 -6.99902 6h-28c-4 -6 -9.16699 -10.167 -15.5 -12.5s-11.5 -6.5 -15.5 -12.5c-10.667 -14.667 -19.5 -28.5 -26.5 -41.5
|
||||
s-13.167 -26.333 -18.5 -40l-15.5 -41.5c-5 -14 -10.833 -29.333 -17.5 -46c-16 -40 -33.667 -78.333 -53 -115s-45 -70 -77 -100v32l25 275v20c0 19.333 -5.66699 32.833 -17 40.5s-24.666 14.167 -39.999 19.5l-0.5 0.5c-0.333008 0.333008 -0.833008 0.5 -1.5 0.5
|
||||
c-4.66699 0 -9.66699 -3.33301 -15 -10s-9 -11.667 -11 -15z" />
|
||||
<glyph glyph-name="L" unicode="L" horiz-adv-x="274"
|
||||
d="M10 69c0 -12 2.99902 -21.999 8.99902 -29.999s13.833 -14.333 23.5 -19s20 -8 31 -10s21.5 -3 31.5 -3h136c4 0 7.33301 2 10 6s5 8.5 7 13.5s3.33301 10 4 15s1 8.83301 1 11.5h-4l-2.5 6.5c-1.66699 4.33301 -3.16699 7.83301 -4.5 10.5l-4.5 12
|
||||
c-1 2.66699 -5.5 4.66699 -13.5 6c-18.667 -0.666992 -39 -1 -61 -1c-21.333 0 -41.666 1.33301 -60.999 4c-2.66699 0.666992 -4 2 -4 4v6c0 19.333 0.666992 39 2 59s2 39.667 2 59c0 49.333 -2.16699 98.166 -6.5 146.499s-6.83301 97.166 -7.5 146.499
|
||||
c0 10.667 -0.166992 29.167 -0.5 55.5s-0.5 54.5 -0.5 84.5s0.166992 58.333 0.5 85s0.5 45.334 0.5 56.001c0 2.66699 -0.5 8.83398 -1.5 18.501s-1.83301 16.167 -2.5 19.5c-0.666992 4 -3.33398 8.16699 -8.00098 12.5s-7.66699 7.16602 -9 8.49902
|
||||
c-0.666992 0.666992 -2 1.33398 -4 2.00098s-3 1.33398 -3 2.00098c-3.33301 5.33301 -5.66602 10.833 -6.99902 16.5s-6.66602 8.5 -15.999 8.5c-1.33301 0 -3.5 -1.33301 -6.5 -4s-6.16699 -5.83398 -9.5 -9.50098s-6.33301 -7.33398 -9 -11.001
|
||||
s-4.33398 -6.16699 -5.00098 -7.5v-137v-71v-64c0 -21.333 0.333008 -43 1 -65s1.66699 -45.333 3 -70c0 -1.33301 0.5 -4.83301 1.5 -10.5s1.5 -9.16699 1.5 -10.5c2 -35.333 3.66699 -70.833 5 -106.5s2 -71.167 2 -106.5c0 -14.667 -1 -29.5 -3 -44.5
|
||||
s-4.33301 -29.833 -7 -44.5c-2 -8.66699 -4.33301 -17 -7 -25s-4 -16.333 -4 -25z" />
|
||||
<glyph glyph-name="M" unicode="M" horiz-adv-x="563"
|
||||
d="M467 21c7.33301 -8 13.9912 -14.6631 19.9912 -19.9961s14.667 -8 26 -8c10.667 0 19.834 3.5 27.501 10.5s11.5 15.833 11.5 26.5c0 12.667 -3 25.334 -9 38.001s-10.333 25.334 -13 38.001c-12 97.333 -26 193.333 -42 288s-30 190.667 -42 288
|
||||
c-0.666992 4 -2.16699 10.833 -4.5 20.5l-7.5 31c-2.66699 11 -5.33398 21.167 -8.00098 30.5s-4.33398 16 -5.00098 20c-0.666992 3.33301 -1.83398 7.5 -3.50098 12.5s-3.16699 10 -4.5 15s-2.66602 9.33301 -3.99902 13l-2 5.5l-10 10
|
||||
c-1.33301 -0.666992 -3.16602 -2.33398 -5.49902 -5.00098s-4.16602 -4.33398 -5.49902 -5.00098h-2h-1c-0.666992 0.666992 -1.5 2.5 -2.5 5.5s-2.16699 6 -3.5 9s-2.83301 5.66699 -4.5 8s-3.16699 3.5 -4.5 3.5l1 -5c0 -0.666992 0.5 -3 1.5 -7s1.5 -6.33301 1.5 -7v-2
|
||||
v-2c-3.33301 2.66699 -7.5 7 -12.5 13s-7.83301 11 -8.5 15c0 -3.33301 -0.833008 -5.33301 -2.5 -6s-3.5 -1.33398 -5.5 -2.00098l-6 -2c-2 -0.666992 -3.33301 -2 -4 -4c-41.333 -103.333 -77.666 -207.666 -108.999 -312.999h-3
|
||||
c-0.666992 0 -2.83398 3.66699 -6.50098 11s-6.16699 13.333 -7.5 18c-13.333 31.333 -25.833 63 -37.5 95s-23.834 63.333 -36.501 94l-4.5 26c-1.66699 10 -4 20 -7 30s-6.83301 19.167 -11.5 27.5s-11 14.5 -19 18.5l-5.5 -2.5
|
||||
c-3.66699 -1.66699 -5.5 -3.16699 -5.5 -4.5c0 -0.666992 0.5 -1.83398 1.5 -3.50098s1.83301 -2.83398 2.5 -3.50098h-4c-3.33301 0 -5.83301 1.16699 -7.5 3.5s-3.16699 5.16602 -4.5 8.49902l-4 10c-1.33301 3.33301 -3 5.66602 -5 6.99902l-7 -8c0 2.66699 -1 4 -3 4
|
||||
c-7.33301 0 -12.166 -3.66699 -14.499 -11s-3.5 -13 -3.5 -17v-60c0 -1.33301 -0.166992 -5 -0.5 -11s-0.666016 -12.333 -0.999023 -19s-0.666016 -13 -0.999023 -19s-0.5 -9.66699 -0.5 -11v-10c-1.33301 -77.333 -3 -154.166 -5 -230.499l-6 -230.5
|
||||
c-0.666992 -24.667 -2 -49.334 -4 -74.001s-3 -49.667 -3 -75v-13c1.33301 -2 4.66602 -5.66699 9.99902 -11s9 -8.66602 11 -9.99902h7c13.333 0 23.833 3.33301 31.5 10s11.5 17 11.5 31c0 4.66699 -1.16699 8.83398 -3.5 12.501s-3.5 8.16699 -3.5 13.5h7
|
||||
c0 4 -0.666992 7.66699 -2 11s-2 6.66602 -2 9.99902v4c0 1.33301 1.16699 4.83301 3.5 10.5s3.5 9.16699 3.5 10.5s0.166992 5 0.5 11s0.666016 12.5 0.999023 19.5l1 21c0.333008 7 0.5 12.167 0.5 15.5c1.33301 48.667 2 97 2 145c0 48.667 1.66699 97.334 5 146.001
|
||||
c0.666992 6 1.33398 13.5 2.00098 22.5l2 26.5c0.666992 8.66699 1.33398 16.167 2.00098 22.5l1 9.5l4 7c11.333 -18.667 20.666 -39.5 27.999 -62.5s15.666 -44.167 24.999 -63.5l6 -11.5l11 -21.5l12 -23.5l9 -17.5c6.66699 -11.333 14.334 -21.166 23.001 -29.499
|
||||
s20 -12.5 34 -12.5c6.66699 0 11.834 2.66699 15.501 8s6.5 11.5 8.5 18.5s3.5 14 4.5 21s1.83301 12.167 2.5 15.5c0 0.666992 0.666992 2.66699 2 6s2.5 6.66602 3.5 9.99902s2.16699 6.66602 3.5 9.99902s2 5.33301 2 6s0.333008 2.5 1 5.5s1.5 6.33301 2.5 10
|
||||
s1.83301 7 2.5 10s1 4.83301 1 5.5c0.666992 2 2.33398 7.5 5.00098 16.5l8.5 29.5c3 10.667 6 20.5 9 29.5l5.5 16.5c0 0.666992 0.5 3.5 1.5 8.5s1.5 7.83301 1.5 8.5c0.666992 0.666992 1.5 1.33398 2.5 2.00098s1.5 1.33398 1.5 2.00098
|
||||
c0.666992 0.666992 1.33398 1.83398 2.00098 3.50098s1.33398 2.83398 2.00098 3.50098c2 7.33301 3.33301 14.166 4 20.499s2.66699 12.5 6 18.5l14 21l4 -4c0 -0.666992 0.5 -3.33398 1.5 -8.00098s1.5 -7.66699 1.5 -9c0.666992 -4 1.83398 -11.833 3.50098 -23.5
|
||||
s3.5 -25.334 5.5 -41.001s4.33301 -32.334 7 -50.001s5 -34.334 7 -50.001s3.83301 -29.334 5.5 -41.001s2.83398 -19.5 3.50098 -23.5c0 -1.33301 0.5 -4.33301 1.5 -9s1.5 -7.66699 1.5 -9l39 -320c0.666992 -4.66699 1.83398 -10.667 3.50098 -18
|
||||
s3.66699 -14.666 6 -21.999l6.5 -21c2 -6.66699 3.66699 -12 5 -16z" />
|
||||
<glyph glyph-name="N" unicode="N" horiz-adv-x="475"
|
||||
d="M66 42c0 -19.333 4.50293 -32.3262 13.5029 -38.9932s22.167 -10 39.5 -10c12 0 19.5 4.83301 22.5 14.5s4.83301 18.834 5.5 27.501c0 1.33301 0.166992 4.83301 0.5 10.5s0.666016 11.667 0.999023 18s0.833008 12.166 1.5 17.499s1 8.66602 1 9.99902v2v2
|
||||
c-0.666992 8 -1.5 21.667 -2.5 41s-2 40 -3 62s-2 42.833 -3 62.5s-1.83301 33.5 -2.5 41.5c-0.666992 1.33301 -1.33398 4.33301 -2.00098 9s-1 7.66699 -1 9c-0.666992 0 -1 0.333008 -1 1c0 1.33301 0.333008 2 1 2l-22 166c1.33301 17.333 1 37.333 -1 60
|
||||
s-4 41.334 -6 56.001l4 3c5.33301 -7.33301 9.16602 -14.5 11.499 -21.5s5.5 -15.167 9.5 -24.5c0.666992 -2 3.33398 -7.83301 8.00098 -17.5l14.5 -31l14.5 -31l9 -18.5c0 -0.666992 0.5 -2.33398 1.5 -5.00098s1.5 -4.33398 1.5 -5.00098c4 -9.33301 9.5 -20 16.5 -32
|
||||
s13.667 -24.167 20 -36.5s12.166 -24.666 17.499 -36.999s8.66602 -23.166 9.99902 -32.499l126 -274c1.33301 -3.33301 4.33301 -6.33301 9 -9s9.66699 -4.83398 15 -6.50098s10.333 -3 15 -4s8 -1.5 10 -1.5c11.333 0 20.166 3.66699 26.499 11s9.5 16 9.5 26
|
||||
c0 23.333 -1.33301 46.833 -4 70.5s-4 47.5 -4 71.5c0 72.667 0.333008 144.834 1 216.501s2.66699 143.834 6 216.501c1.33301 15.333 3 31.666 5 48.999s3 34 3 50v7c0 3.33301 -0.333008 5.33301 -1 6c0 2 -0.166992 6.66699 -0.5 14s-0.666016 15.166 -0.999023 23.499
|
||||
s-0.666016 16 -0.999023 23s-0.5 11.5 -0.5 13.5c-0.666992 9.33301 -1.16699 18 -1.5 26s-3.5 15.667 -9.5 23c-3.33301 4 -7.83301 7.16699 -13.5 9.5s-9.16699 5.16602 -10.5 8.49902c0 -3.33301 -3.16699 -6.33301 -9.5 -9s-10.5 -4 -12.5 -4c0 5.33301 -1.5 10 -4.5 14
|
||||
s-7.83301 6 -14.5 6c-4 0 -7.83301 -2.66699 -11.5 -8s-6.16699 -9.66602 -7.5 -12.999v-19c0 -27.333 0.666992 -54.333 2 -81s2 -53.667 2 -81v-20c0 -12.667 -0.333008 -34.667 -1 -66s-1.5 -64.833 -2.5 -100.5s-1.83301 -69.167 -2.5 -100.5s-1 -53.333 -1 -66
|
||||
c-1.33301 -7.33301 -2.5 -14.5 -3.5 -21.5s-2.16699 -14.167 -3.5 -21.5c-1.33301 1.33301 -2.83301 3.16602 -4.5 5.49902s-2.83398 4.16602 -3.50098 5.49902c-2.66699 4.66699 -6.16699 11.5 -10.5 20.5l-13 27l-12 24l-6.5 12.5l-144 334
|
||||
c-12.667 22 -25.167 46 -37.5 72s-23.166 50 -32.499 72c-0.666992 3.33301 -2.5 4.83301 -5.5 4.5s-5.16699 -0.5 -6.5 -0.5h-9c-0.666992 0 -2.5 -0.666992 -5.5 -2s-4.83301 -2 -5.5 -2c-5.33301 0.666992 -9 2.16699 -11 4.5s-3.5 4.83301 -4.5 7.5s-1.83301 5 -2.5 7
|
||||
s-2.33398 3 -5.00098 3l-1 -1c-0.666992 0 -1.5 -0.5 -2.5 -1.5l-1.5 -1.5c0 -0.666992 0.5 -1.83398 1.5 -3.50098s1.83301 -2.83398 2.5 -3.50098c0 -0.666992 -0.166992 -1.66699 -0.5 -3s-0.5 -2.33301 -0.5 -3c-3.33301 0 -6 0.5 -8 1.5s-4.33301 1.5 -7 1.5
|
||||
c-3.33301 0 -5.66602 -1.33301 -6.99902 -4s-2 -5.33398 -2 -8.00098v-6c0 -1.33301 0.5 -4.83301 1.5 -10.5s1.83301 -9.16699 2.5 -10.5c0 -4.66699 0.333008 -11.334 1 -20.001s1.5 -17.667 2.5 -27s1.83301 -18 2.5 -26s1 -13 1 -15c1.33301 -32 1.33301 -63.667 0 -95
|
||||
s1 -63 7 -95c0 -2.66699 1 -5 3 -7c-1.33301 -26 -0.5 -51.333 2.5 -76s6.83301 -49.667 11.5 -75v-11c7.33301 -42 13.333 -84 18 -126s7 -84.667 7 -128c0 -16 -0.666992 -31.833 -2 -47.5s-2 -31.167 -2 -46.5zM386.003 879.007c2.66699 -1.33301 2.66699 -2.66699 0 -4
|
||||
c-1.33301 0 -2 0.666992 -2 2s0.666992 2 2 2z" />
|
||||
<glyph glyph-name="O" unicode="O" horiz-adv-x="394"
|
||||
d="M42 53c10 -12 20.0049 -22.834 30.0049 -32.501s20.333 -17.667 31 -24s22.167 -11.333 34.5 -15s26.166 -5.5 41.499 -5.5c34.667 0 63.5 10.333 86.5 31s41.5 46.167 55.5 76.5s24.5 62.5 31.5 96.5s12.167 64.333 15.5 91c5.33301 39.333 9.16602 79.333 11.499 120
|
||||
s3.5 81 3.5 121c0 42 -4.66699 83.833 -14 125.5s-19 82.5 -29 122.5c-2 10 -5.83301 20.667 -11.5 32s-12.834 22 -21.501 32s-18.167 18.167 -28.5 24.5s-21.166 9.5 -32.499 9.5h-11c-0.666992 0 -1.83398 -0.5 -3.50098 -1.5s-2.83398 -1.5 -3.50098 -1.5
|
||||
c-3.33301 0 -7.33301 1.16699 -12 3.5s-9.33398 3.5 -14.001 3.5c-11.333 0 -20.333 -0.333008 -27 -1s-12.334 -2.5 -17.001 -5.5s-9.16699 -7.33301 -13.5 -13s-9.5 -13.5 -15.5 -23.5c-7.33301 -1.33301 -15 -9.83301 -23 -25.5s-15.5 -33.167 -22.5 -52.5
|
||||
s-12.667 -37.666 -17 -54.999s-6.83301 -28 -7.5 -32c-1.33301 -11.333 -3.66602 -22.5 -6.99902 -33.5s-4.33301 -22.167 -3 -33.5l-18 -158v-3l-17 -137c1.33301 -14 1 -28.667 -1 -44s-3 -30 -3 -44c0 -26 2 -51.333 6 -76s12.667 -48.667 26 -72zM108.005 169.999
|
||||
c0 52.667 3.49609 104.661 10.4961 155.994l21.5 156c-0.666992 13.333 0 26.333 2 39s3.66699 25.334 5 38.001c0.666992 12 2.33398 29.5 5.00098 52.5s7.33398 45.833 14.001 68.5s15.834 42.334 27.501 59.001s27.5 25 47.5 25c1.33301 0 3 -0.166992 5 -0.5l3 -0.5
|
||||
l3 -7c0.666992 -1.33301 2.33398 -7 5.00098 -17s5.5 -21.5 8.5 -34.5l9 -39.5c3 -13.333 5.16699 -24 6.5 -32c4.66699 -27.333 7.66699 -52.166 9 -74.499s3 -46.5 5 -72.5c-0.666992 -6 -1.5 -16.833 -2.5 -32.5l-3 -49c-1 -17 -2 -33.167 -3 -48.5
|
||||
s-1.83301 -26 -2.5 -32c-0.666992 -10 -2.16699 -23.333 -4.5 -40s-5.66602 -34.5 -9.99902 -53.5s-9.66602 -38.167 -15.999 -57.5s-14 -36.833 -23 -52.5s-19.333 -28.5 -31 -38.5s-24.834 -15 -39.501 -15c-12 0 -21.333 3.83301 -28 11.5s-11.834 16.834 -15.501 27.501
|
||||
s-6 21.834 -7 33.501s-1.5 21.834 -1.5 30.501z" />
|
||||
<glyph glyph-name="P" unicode="P" horiz-adv-x="373"
|
||||
d="M14 190l-0.00195312 -148.003c0 -6 2.5 -11.5 7.5 -16.5s11 -9.5 18 -13.5s14.167 -7 21.5 -9s13.333 -3 18 -3c11.333 0 19.666 4.16699 24.999 12.5s8.83301 18.333 10.5 30s2.33398 23.334 2.00098 35.001s-0.5 20.834 -0.5 27.501
|
||||
c0 17.333 -1.33301 34.666 -4 51.999s-4 34.666 -4 51.999v2c0 2.66699 0.166992 7.33398 0.5 14.001s0.833008 13.667 1.5 21s1.16699 14.333 1.5 21s0.5 11.334 0.5 14.001h2c10 0 19.833 -1.16699 29.5 -3.5s19.5 -3.5 29.5 -3.5c44 0 78.667 7.33301 104 22
|
||||
s44.166 34.667 56.499 60s20.166 54.833 23.499 88.5s5 69.5 5 107.5c0 40 -2.5 79.833 -7.5 119.5s-15.333 75.334 -31 107.001s-38 57.5 -67 77.5s-67.5 30 -115.5 30c-7.33301 0 -14.166 -1.33301 -20.499 -4s-12.166 -5.5 -17.499 -8.5l-15.5 -8.5
|
||||
c-5 -2.66699 -9.83301 -4 -14.5 -4c-6 0 -11.5 1.33301 -16.5 4s-10.5 4 -16.5 4c-1.33301 0 -3.5 -0.166992 -6.5 -0.5s-4.83301 -0.5 -5.5 -0.5s-1.5 -0.5 -2.5 -1.5l-1.5 -1.5c-1.33301 -2.66699 -2.83301 -6.66699 -4.5 -12s-2.5 -8.33301 -2.5 -9v-43
|
||||
c0 -3.33301 -0.166992 -11.166 -0.5 -23.499s-0.666016 -25.5 -0.999023 -39.5l-0.999023 -40s-0.5 -20.334 -0.5 -23.001v-13v-21v-21v-12c0 -2.66699 -0.166992 -7.16699 -0.5 -13.5s-0.833008 -13 -1.5 -20s-1.16699 -13.667 -1.5 -20s-0.5 -10.833 -0.5 -13.5v-344z
|
||||
M104.998 422.997c0 30 0.500977 58.3291 1.50098 84.9961l3 79.5c1 26.333 1.83301 52.833 2.5 79.5s0.666992 55 0 85c0.666992 4 3.5 8.5 8.5 13.5s10.667 10 17 15s13 9.16699 20 12.5s12.833 5 17.5 5c22 0 39.167 -5.33301 51.5 -16s21.5 -24 27.5 -40
|
||||
s10 -33.5 12 -52.5s3.33301 -36.833 4 -53.5v-8c0 -4.66699 0.166992 -10.167 0.5 -16.5s0.5 -12.833 0.5 -19.5v-15v-16c0 -6.66699 -0.166992 -13.167 -0.5 -19.5s-0.5 -11.833 -0.5 -16.5v-8c0 -3.33301 -0.5 -9.16602 -1.5 -17.499s-2 -17.166 -3 -26.499
|
||||
s-2 -18.166 -3 -26.499s-1.83301 -14.166 -2.5 -17.499c-6.66699 -14.667 -13.667 -26.667 -21 -36s-15.5 -16.5 -24.5 -21.5s-19.333 -8.5 -31 -10.5s-24.834 -3 -39.501 -3h-16c-8 0 -13.333 0.333008 -16 1c-2 0.666992 -3.5 4 -4.5 10s-1.66699 12.667 -2 20
|
||||
s-0.5 14.333 -0.5 21v13z" />
|
||||
<glyph glyph-name="Q" unicode="Q" horiz-adv-x="394"
|
||||
d="M240 18c4 0 8.83594 -7.66211 14.5029 -22.9951s12.5 -32.333 20.5 -51s17.333 -35.667 28 -51s23 -23 37 -23c12.667 0 23 3.83301 31 11.5s12 17.834 12 30.501c0 10.667 -3.16699 20.334 -9.5 29.001s-11.5 17.667 -15.5 27l-27 59
|
||||
c-9.33301 20 -16.666 40.333 -21.999 61c0.666992 1.33301 2.33398 5.33301 5.00098 12s4.33398 10.667 5.00098 12c1.33301 3.33301 3.5 9.16602 6.5 17.499l9.5 26.5l9.5 26.5c3 8.33301 5.16699 14.166 6.5 17.499c-0.666992 3.33301 -1 7 -1 11s1.33301 7.33301 4 10
|
||||
c6.66699 42.667 12 85.5 16 128.5s6 86.167 6 129.5c0 30 -3.5 58.167 -10.5 84.5l-21.5 83.5l-13.5 47c-4.33301 14.667 -9.83301 28.5 -16.5 41.5s-14.834 25.333 -24.501 37s-22.167 22.5 -37.5 32.5l-10 6.5l-14.5 9.5c-5 3.33301 -9.66699 6.16602 -14 8.49902
|
||||
s-7.16602 3.5 -8.49902 3.5h-2c0 -0.666992 -0.5 -1.33398 -1.5 -2.00098s-1.5 -1.33398 -1.5 -2.00098l-7 7c-0.666992 0.666992 -3 1 -7 1h-7c-2 0 -6.5 0.166992 -13.5 0.5s-11.833 -1.16699 -14.5 -4.5h-43c-0.666992 0 -2.33398 -0.666992 -5.00098 -2
|
||||
s-4.33398 -2 -5.00098 -2s-1.33398 0.666992 -2.00098 2s-1.33398 2 -2.00098 2h-1c-9.33301 0 -17.5 -6.83301 -24.5 -20.5s-13 -29 -18 -46s-8.83301 -33.167 -11.5 -48.5s-4 -25 -4 -29c0 -1.33301 -0.166992 -4 -0.5 -8s-0.833008 -8.33301 -1.5 -13
|
||||
s-1.16699 -9.16699 -1.5 -13.5s-0.5 -6.83301 -0.5 -7.5c0 -1.33301 -0.666992 -5 -2 -11s-2.5 -12.333 -3.5 -19s-2 -13 -3 -19s-1.5 -9.66699 -1.5 -11s-0.333008 -5.33301 -1 -12s-1.5 -14.167 -2.5 -22.5s-1.83301 -16.5 -2.5 -24.5s-1 -14 -1 -18
|
||||
c-0.666992 -1.33301 -0.833984 -3.83301 -0.500977 -7.5s0.5 -6.16699 0.5 -7.5c0 -0.666992 -0.333008 -2.83398 -1 -6.50098s-1.16699 -7.66699 -1.5 -12l-1 -12.5c-0.333008 -4 -0.5 -6.33301 -0.5 -7v-59v-68c0 -26.667 1.16699 -54.834 3.5 -84.501
|
||||
s6.5 -59.167 12.5 -88.5s15 -55.5 27 -78.5s27.667 -41.833 47 -56.5s43.333 -22 72 -22c13.333 -0 24.666 1.83301 33.999 5.5l32 12.5h2zM115.003 176.005c-1.33301 34.667 -4 69.168 -8 103.501s-6 68.833 -6 103.5c0 32 1.66699 63.833 5 95.5s6.33301 63.167 9 94.5v3
|
||||
c2.66699 25.333 6.83398 54 12.501 86s13.5 61 23.5 87c0 2 1 3 3 3s6 -0.5 12 -1.5s12.333 -2 19 -3s12.834 -2.16699 18.501 -3.5s9.16699 -2.33301 10.5 -3c14 -10 25.667 -25.667 35 -47s16.833 -44.5 22.5 -69.5s9.83398 -49.833 12.501 -74.5s4 -44.667 4 -60v-51
|
||||
c0 -4.66699 -0.166992 -11.667 -0.5 -21s-0.833008 -18.833 -1.5 -28.5s-1.16699 -18.5 -1.5 -26.5s-0.5 -13 -0.5 -15c0 -1.33301 -0.333008 -3.83301 -1 -7.5s-1.33398 -7.66699 -2.00098 -12s-1.5 -8.5 -2.5 -12.5s-1.5 -6.33301 -1.5 -7l-0.5 -5.5
|
||||
c-0.333008 -3.66699 -0.666016 -7.66699 -0.999023 -12l-1 -13.5c-0.333008 -4.66699 -0.5 -8.33398 -0.5 -11.001c0 -2 -0.666992 -7 -2 -15s-3 -16.667 -5 -26s-4.33301 -18 -7 -26s-5.33398 -12.667 -8.00098 -14h-1c-0.666992 0 -2.66699 1.83301 -6 5.5
|
||||
s-7.16602 7.66699 -11.499 12l-12.5 12c-4 3.66699 -6.33301 5.5 -7 5.5l-4 1c-2.66699 0.666992 -5.5 1.16699 -8.5 1.5l-9 1c-3 0.333008 -4.83301 0.5 -5.5 0.5c-9.33301 0 -16 -5.16699 -20 -15.5s-6 -19.5 -6 -27.5v-3l35 -70v-2c0 -6 -4.33301 -10.667 -13 -14
|
||||
s-15.334 -5 -20.001 -5c-10 0 -17.667 3.5 -23 10.5s-9.33301 15.167 -12 24.5s-4.83398 19 -6.50098 29s-3.83398 18 -6.50098 24zM189.003 833.006c2 0 3 -1.33301 3 -4c0 -2 -1 -3 -3 -3c-1.33301 0 -2 1 -2 3c0 2.66699 0.666992 4 2 4z" />
|
||||
<glyph glyph-name="R" unicode="R" horiz-adv-x="390"
|
||||
d="M50 32l2.00684 -63.001c0 -6 2.16699 -11 6.5 -15s9.33301 -7.33301 15 -10s11.667 -4.5 18 -5.5s11.5 -1.5 15.5 -1.5c18.667 0 31.5 3.16699 38.5 9.5s11.333 14.666 13 24.999s2.16699 22 1.5 35s0.666016 26.167 3.99902 39.5v1v2
|
||||
c-1.33301 12.667 -4.83301 22.167 -10.5 28.5s-9.16699 13.166 -10.5 20.499l-21 200v16c2.66699 0 8 0.5 16 1.5s13.333 1.16699 16 0.5c10 -1.33301 20.167 -6.5 30.5 -15.5s20 -19.5 29 -31.5s16.833 -24.333 23.5 -37s10.667 -23.334 12 -32.001l28 -179
|
||||
c-1.33301 -7.33301 -0.333008 -14.666 3 -21.999s7.66602 -14 12.999 -20s11.666 -11 18.999 -15s14.333 -6 21 -6c11.333 0 21.833 2.5 31.5 7.5s14.5 14.5 14.5 28.5c0 22 -1.66699 46.667 -5 74s-8.5 55 -15.5 83s-15.5 54.667 -25.5 80s-21.667 46.666 -35 63.999
|
||||
c-11.333 14.667 -23.5 28.667 -36.5 42l-37.5 39v1v2c0 0.666992 0.5 1.33398 1.5 2.00098s1.83301 1.33398 2.5 2.00098s2.83398 2.33398 6.50098 5.00098s6.16699 4.33398 7.5 5.00098c7.33301 6 14.166 14.5 20.499 25.5s11.166 21.167 14.499 30.5
|
||||
c2 8 3.16699 16 3.5 24s0.5 16 0.5 24c0 25.333 -0.5 51.833 -1.5 79.5s-3.66699 55.167 -8 82.5s-11 53.666 -20 78.999s-21.5 48.333 -37.5 69c-6 7.33301 -13.333 15 -22 23s-18 13.333 -28 16h-3c-7.33301 4 -12.833 7.5 -16.5 10.5s-7.33398 5.5 -11.001 7.5
|
||||
s-8.33398 3.66699 -14.001 5s-14.167 2 -25.5 2c-6.66699 0 -13.334 -1.66699 -20.001 -5s-13 -7.33301 -19 -12s-11.667 -9.66699 -17 -15l-14 -14c-2 -2 -4.83301 -5.33301 -8.5 -10s-5.5 -7.33398 -5.5 -8.00098v-91c3.33301 -9.33301 4.66602 -20.666 3.99902 -33.999
|
||||
s-0.666992 -24.333 0 -33c0 -4 0.333008 -14 1 -30s1.33398 -33.333 2.00098 -52s1.5 -36.167 2.5 -52.5s1.5 -26.5 1.5 -30.5v-7l21 -298c2.66699 -9.33301 3.66699 -16.166 3 -20.499s-0.666992 -11.5 0 -21.5c0 -3.33301 0.333008 -9.5 1 -18.5s1.16699 -18.667 1.5 -29
|
||||
s0.833008 -20 1.5 -29s1 -15.167 1 -18.5v-10zM115.007 420.999c-6 46 -9.83301 92 -11.5 138s-2.5 92 -2.5 138v40c1.33301 6 4.83301 13.5 10.5 22.5s11.834 13.5 18.501 13.5c9.33301 0 17 -3.66699 23 -11s10.833 -16 14.5 -26s6.16699 -20.167 7.5 -30.5
|
||||
s2.33301 -18.5 3 -24.5c0.666992 -6.66699 1.5 -16.167 2.5 -28.5l3 -37.5c1 -12.667 1.83301 -24.167 2.5 -34.5s1 -16.5 1 -18.5v-11c0 -2 0.166992 -5.66699 0.5 -11s0.666016 -11 0.999023 -17s0.5 -11.667 0.5 -17v-11c0 -6.66699 -2.5 -14.5 -7.5 -23.5
|
||||
s-11 -17.5 -18 -25.5s-14.167 -14.833 -21.5 -20.5s-14 -8.5 -20 -8.5c-2.66699 0 -5 1.33301 -7 4z" />
|
||||
<glyph glyph-name="S" unicode="S" horiz-adv-x="306"
|
||||
d="M69 29c0 -10.667 3.50195 -19.001 10.502 -25.001s15.5 -10.333 25.5 -13s20.5 -4.16699 31.5 -4.5s20.5 -0.5 28.5 -0.5c21.333 0 40 4.33301 56 13s29.5 20.334 40.5 35.001s19.333 31.334 25 50.001s8.5 37.667 8.5 57c0 24.667 -2.66699 49.5 -8 74.5
|
||||
s-12.666 49.667 -21.999 74s-20 48 -32 71s-24.333 44.5 -37 64.5c-6 9.33301 -15 22.166 -27 38.499s-24.167 33.833 -36.5 52.5s-23 37 -32 55s-13.5 33.333 -13.5 46c0 8 2.33301 20.833 7 38.5s11 35.5 19 53.5s17.667 33.667 29 47s24 20 38 20
|
||||
c3.33301 0 6.5 -2.83301 9.5 -8.5s6.83301 -11.667 11.5 -18s10.667 -12.333 18 -18s16.666 -8.5 27.999 -8.5c9.33301 0 15.5 4.16699 18.5 12.5s4.5 16.166 4.5 23.499c0 18.667 -6 35.834 -18 51.501s-26 26.5 -42 32.5l-14 7c-6 0 -13.5 -0.333008 -22.5 -1
|
||||
s-18.167 -1.83398 -27.5 -3.50098s-18.166 -3.83398 -26.499 -6.50098s-15.5 -6 -21.5 -10c-13.333 -10 -25.333 -23.333 -36 -40s-19.834 -34.667 -27.501 -54s-13.667 -38.666 -18 -57.999s-6.5 -36.333 -6.5 -51c0 -18.667 3 -36.834 9 -54.501
|
||||
s13.833 -34.834 23.5 -51.501s20 -33 31 -49l31.5 -46c12.667 -18.667 25 -39.334 37 -62.001s22.833 -46.167 32.5 -70.5s17.5 -48.666 23.5 -72.999s9 -47.833 9 -70.5c0 -6 -1.33301 -14.667 -4 -26s-6.66699 -22.5 -12 -33.5s-11.833 -20.5 -19.5 -28.5
|
||||
s-16.5 -12 -26.5 -12h-2c-3.33301 0.666992 -8 1.33398 -14 2.00098s-9.33301 1.33398 -10 2.00098c-0.666992 0 -1.33398 0.5 -2.00098 1.5s-1.33398 1.5 -2.00098 1.5h-1c-10 0 -20 -1.66699 -30 -5s-15 -10.666 -15 -21.999zM84.002 10.999c1.33301 0 2 -1.33301 2 -4
|
||||
c0 -2 -0.666992 -3 -2 -3c-2 0 -3 1 -3 3c0 2.66699 1 4 3 4zM91.002 13.999h3v-7h-3v7z" />
|
||||
<glyph glyph-name="T" unicode="T" horiz-adv-x="433"
|
||||
d="M186 -3c0.666992 -6.66699 3.32715 -12.5049 7.99414 -17.5049s10 -9.33301 16 -13s12.5 -6.5 19.5 -8.5s13.5 -3 19.5 -3c10 0 17.333 2.33301 22 7s8 10.5 10 17.5s3 14.5 3 22.5v23c0 2.66699 0.166992 7 0.5 13s0.833008 12.333 1.5 19s1.16699 13 1.5 19
|
||||
s0.5 10.333 0.5 13v369c-1.33301 6 -2.33301 12.667 -3 20s-1 14.666 -1 21.999v21v18v105c0 36 2.33301 71.333 7 106h4c14 0 28 -0.666992 42 -2s28 -2 42 -2h28c6.66699 5.33301 10.834 10 12.501 14s2.5 10 2.5 18v7c0 3.33301 -0.333008 5.66602 -1 6.99902
|
||||
c-6.66699 4 -11.167 9.66699 -13.5 17s-8.16602 14.666 -17.499 21.999c-6 4 -15 6.66699 -27 8s-24.667 2 -38 2s-26.333 -0.166992 -39 -0.5s-22.667 -0.166016 -30 0.500977c-2 0 -6.5 0.5 -13.5 1.5s-14.667 1.83301 -23 2.5s-16.166 1.33398 -23.499 2.00098
|
||||
s-12 1 -14 1c-0.666992 0 -4.33398 0.166992 -11.001 0.5s-11.667 0.5 -15 0.5c-8.66699 0 -21.167 0.5 -37.5 1.5s-32.5 0.5 -48.5 -1.5s-30 -6.16699 -42 -12.5s-18 -16.5 -18 -30.5c0 -10 3 -18 9 -24s13.5 -10.667 22.5 -14s18.167 -5.5 27.5 -6.5
|
||||
s17.666 -1.5 24.999 -1.5c6.66699 0 15.5 -0.166992 26.5 -0.5l31.5 -1c10 -0.333008 18.667 -0.666016 26 -0.999023l11 -0.5l7 -4c0.666992 0 1.33398 -2.66699 2.00098 -8s1.33398 -9.66602 2.00098 -12.999v-5v-5c0 -2 -0.333008 -5.83301 -1 -11.5
|
||||
s-1.5 -11.5 -2.5 -17.5s-1.83301 -11.667 -2.5 -17s-1 -9 -1 -11v-397c-3.33301 -15.333 -4.66602 -30 -3.99902 -44s0.666992 -28.667 0 -44c0 -3.33301 -0.166992 -11.166 -0.5 -23.499s-0.666016 -25.666 -0.999023 -39.999s-0.666016 -27.666 -0.999023 -39.999
|
||||
s-0.5 -20.166 -0.5 -23.499v-28v-28z" />
|
||||
<glyph glyph-name="U" unicode="U" horiz-adv-x="355"
|
||||
d="M10 811c0 -32.667 1.49414 -65.3311 4.49414 -97.998s5.16699 -65.667 6.5 -99l4 -207c1.33301 -68.667 4.66602 -137.667 9.99902 -207c0.666992 -13.333 1.5 -28.333 2.5 -45s2.83301 -33.5 5.5 -50.5s6.33398 -33.5 11.001 -49.5s11 -29.667 19 -41
|
||||
c6 -8 13.667 -15.5 23 -22.5s19.333 -13 30 -18s21.5 -8.83301 32.5 -11.5s21.5 -4 31.5 -4s20 0.833008 30 2.5s19.667 4.5 29 8.5c24 21.333 43.333 44.333 58 69s23.334 53 26.001 85c0 0.666992 0.333008 6.16699 1 16.5s1.33398 22.166 2.00098 35.499l2 40.5
|
||||
c0.666992 13.667 1.33398 24.834 2.00098 33.501v4c0 2 0.166992 6.5 0.5 13.5s0.666016 14.667 0.999023 23s0.666016 16.166 0.999023 23.499s0.5 12 0.5 14c0.666992 0 1 1 1 3v6c0 35.333 -1.33301 70.5 -4 105.5s-5.5 70 -8.5 105s-5.66699 70.167 -8 105.5
|
||||
s-2.83301 70.666 -1.5 105.999c-3.33301 13.333 -9.66602 25.5 -18.999 36.5s-21 16.5 -35 16.5c-9.33301 0 -17 -3.16699 -23 -9.5s-10.667 -13.833 -14 -22.5v-84c0 -67.333 3 -134.166 9 -200.499s9 -133.5 9 -201.5v-117c0 -2 -0.333008 -5.83301 -1 -11.5
|
||||
s-1.5 -11.834 -2.5 -18.501s-1.83301 -12.834 -2.5 -18.501s-1 -9.5 -1 -11.5c-1.33301 -7.33301 -3.66602 -15.5 -6.99902 -24.5s-7.5 -17.5 -12.5 -25.5s-11.167 -14.667 -18.5 -20s-15.333 -8 -24 -8c-13.333 0 -22.166 4.83301 -26.499 14.5s-7.83301 20.167 -10.5 31.5
|
||||
c0 2 -0.5 5.66699 -1.5 11s-2.16699 11 -3.5 17s-2.5 11.833 -3.5 17.5s-1.5 9.5 -1.5 11.5c-1.33301 8.66699 -2.83301 23.834 -4.5 45.501l-5.5 69.5c-2 24.667 -3.66699 48 -5 70s-2.33301 37.333 -3 46v23v40v40v24c-1.33301 50 -3.66602 100.333 -6.99902 151l-10 151
|
||||
c-1.33301 4 -3.33301 9.16699 -6 15.5s-6 12.5 -10 18.5s-8.5 11.167 -13.5 15.5s-10.5 6.5 -16.5 6.5c-11.333 0 -21.166 -5 -29.499 -15s-12.5 -20.333 -12.5 -31z" />
|
||||
<glyph glyph-name="V" unicode="V" horiz-adv-x="507"
|
||||
d="M151 247c1.33301 -18.667 5 -36.6709 11 -54.0039s11.667 -34.666 17 -51.999c2 -8 4.83301 -20 8.5 -36s8.5 -32 14.5 -48s13.833 -30 23.5 -42s21.5 -18 35.5 -18c11.333 0 20.5 0.833008 27.5 2.5s12.5 4.5 16.5 8.5s6.66699 9.33301 8 16s2.33301 15.334 3 26.001
|
||||
l29.5 88.5l25.5 84c8 27.667 15.333 55.834 22 84.501s12.667 59 18 91c1.33301 9.33301 4.33301 20.166 9 32.499s6.33398 22.5 5.00098 30.5l3.5 14.5l5.5 22.5l5.5 22.5l3.5 14.5c0 1.33301 0.5 3.16602 1.5 5.49902s1.5 4.16602 1.5 5.49902l39 179l8 20.5
|
||||
c2 5 3 11.167 3 18.5s-1.83301 15 -5.5 23s-8.5 15.167 -14.5 21.5s-12.833 11.333 -20.5 15s-15.5 4.83398 -23.5 3.50098c-6.66699 -1.33301 -12 -4.33301 -16 -9s-6.66699 -9.66699 -8 -15l-5.5 -17l-7 -22c-2.33301 -7.33301 -4.33301 -14.166 -6 -20.499
|
||||
s-2.83398 -10.166 -3.50098 -11.499l-105 -482c-1.33301 -3.33301 -2.5 -7.83301 -3.5 -13.5s-2.16699 -11.334 -3.5 -17.001s-3.16602 -10.834 -5.49902 -15.501s-5.16602 -8 -8.49902 -10c-4 10 -8 21.167 -12 33.5s-7.83301 25 -11.5 38s-6.83398 25.667 -9.50098 38
|
||||
s-4.66699 23.833 -6 34.5l-60 208c0 0.666992 -0.5 1.83398 -1.5 3.50098s-1.5 2.83398 -1.5 3.50098c-6 19.333 -11.5 38.666 -16.5 57.999l-15.5 58c0 0.666992 -0.5 2.33398 -1.5 5.00098s-1.5 4.33398 -1.5 5.00098c-2.66699 9.33301 -5.33398 20.833 -8.00098 34.5
|
||||
s-6.16699 27 -10.5 40s-10.5 24 -18.5 33s-19 13.5 -33 13.5c-10 0 -19.667 -3.33301 -29 -10s-14 -16 -14 -28c0 -18 2.83301 -35.5 8.5 -52.5l16.5 -51.5c0.666992 -2 2 -7.16699 4 -15.5l6.5 -26.5l6.5 -26.5c2 -8.33301 3.33301 -13.5 4 -15.5
|
||||
c0.666992 -2.66699 2.5 -8.66699 5.5 -18l10 -30l10 -30l5.5 -17c12 -38 22.833 -76.667 32.5 -116s20.167 -78 31.5 -116z" />
|
||||
<glyph glyph-name="W" unicode="W" horiz-adv-x="665"
|
||||
d="M207 144l28 -95.0049c3.33301 -12.667 11.833 -22.334 25.5 -29.001s26.167 -10 37.5 -10c7.33301 0 13.166 1.5 17.499 4.5s9.16602 7.5 14.499 13.5c3.33301 33.333 8.66602 66.833 15.999 100.5s13.666 66.834 18.999 99.501l4 4
|
||||
c1.33301 -3.33301 3.83301 -8.5 7.5 -15.5l11.5 -22l11.5 -22l7.5 -14.5c0.666992 -2 3.16699 -6.5 7.5 -13.5l13.5 -22.5c4.66699 -8 9.16699 -15.333 13.5 -22l8.5 -13c2.66699 -4.66699 5.83398 -9.83398 9.50098 -15.501s7.66699 -11.167 12 -16.5
|
||||
s9.33301 -9.66602 15 -12.999s12.167 -4.66602 19.5 -3.99902c2.66699 0 6.16699 0.333008 10.5 1s8.5 1.5 12.5 2.5s7.5 1.83301 10.5 2.5l4.5 1l8 14l28 134v3c0 1.33301 0.5 4.33301 1.5 9s1.5 7.66699 1.5 9l21 190c-1.33301 10 -0.166016 20 3.50098 30
|
||||
s4.83398 20 3.50098 30l7 44l10.5 68l10.5 68l7 45c0 0.666992 0.5 2.5 1.5 5.5s1.83301 6.33301 2.5 10s1.33398 7 2.00098 10s1 4.83301 1 5.5c0.666992 0.666992 1 1.66699 1 3v4c0 11.333 -3.16699 21.833 -9.5 31.5s-13.833 18.167 -22.5 25.5
|
||||
c-4.66699 -1.33301 -8.66699 -1.16602 -12 0.500977s-7.33301 2.5 -12 2.5c-1.33301 0 -3.66602 -1 -6.99902 -3l-10.5 -6.5c-3.66699 -2.33301 -7 -5 -10 -8s-4.5 -5.5 -4.5 -7.5l-60 -467c-2 -8.66699 -3.16699 -17.5 -3.5 -26.5s-1.5 -17.833 -3.5 -26.5
|
||||
c-1.33301 -5.33301 -3.33301 -12.333 -6 -21s-4.33398 -13.334 -5.00098 -14.001l-3 -4c-7.33301 5.33301 -14.166 14.5 -20.499 27.5s-12.5 27 -18.5 42l-17 44c-5.33301 14.333 -10.333 25.833 -15 34.5c-1.33301 2 -3.16602 5.33301 -5.49902 10l-7.5 14.5l-7 13.5l-4 8
|
||||
c-7.33301 14 -15.166 25.167 -23.499 33.5s-20.833 12.5 -37.5 12.5c-10 0 -17.333 -3.66699 -22 -11s-7.66699 -15.666 -9 -24.999c0 -1.33301 -0.166992 -4.66602 -0.5 -9.99902s-0.666016 -11.166 -0.999023 -17.499s-0.666016 -12.333 -0.999023 -18
|
||||
s-0.5 -9.16699 -0.5 -10.5c-0.666992 -6 -1.66699 -14.167 -3 -24.5s-3 -21 -5 -32s-4.5 -21.333 -7.5 -31s-6.16699 -16.834 -9.5 -21.501l-7 14l-70 211c-2 9.33301 -4.33301 18.5 -7 27.5s-6.33398 17.5 -11.001 25.5l-67 228c-4 5.33301 -5.5 11.333 -4.5 18
|
||||
s-0.833008 12.667 -5.5 18c-2 2.66699 -6.33301 7 -13 13s-10.667 9.66699 -12 11c-4.66699 3.33301 -8.33398 5.5 -11.001 6.5s-6.33398 1.5 -11.001 1.5c-12 0 -21.833 -4.16699 -29.5 -12.5s-11.5 -18.5 -11.5 -30.5c0 -13.333 2.16699 -26.666 6.5 -39.999
|
||||
s9.16602 -25.666 14.499 -36.999l127 -408c2.66699 -3.33301 4.16699 -6.5 4.5 -9.5s1.16602 -6.83301 2.49902 -11.5l10.5 -31.5l12.5 -38.5l10.5 -32.5l4.5 -13.5z" />
|
||||
<glyph glyph-name="X" unicode="X" horiz-adv-x="334"
|
||||
d="M13 -23c0 -8 1.49902 -14.002 4.49902 -18.002s6.83301 -7.33301 11.5 -10s9.33398 -5.16699 14.001 -7.5s9 -6.16602 13 -11.499h35l14 14l35 179c-0.666992 2.66699 -0.666992 6.66699 0 12s1.5 10.833 2.5 16.5s2.33301 10.667 4 15s3.5 6.5 5.5 6.5l2 -1l3.5 -18
|
||||
c1.66699 -8.66699 3.66699 -17.834 6 -27.501l6.5 -27.5c2 -8.66699 3.66699 -14.667 5 -18c0 -1.33301 1.16699 -5 3.5 -11l7.5 -20l8 -22c2.66699 -7.33301 4.66699 -13 6 -17c2.66699 -7.33301 5.83398 -15 9.50098 -23s8 -15.667 13 -23s10.833 -13.333 17.5 -18
|
||||
s14.667 -7 24 -7c11.333 0 21 3.66699 29 11s12 17 12 29v10l-46 126l-52 246v14c7.33301 16.667 13.666 34.5 18.999 53.5s13 36.167 23 51.5l45 155c2 3.33301 4.66699 9.33301 8 18s6.5 17.834 9.5 27.501s5.66699 18.667 8 27s3.5 14.166 3.5 17.499
|
||||
c0 4.66699 -1.66699 11 -5 19s-7.66602 15.833 -12.999 23.5s-11 14.334 -17 20.001s-12 8.5 -18 8.5c-6.66699 0 -12.667 -3.33301 -18 -10s-9.83301 -14.5 -13.5 -23.5s-6.66699 -18 -9 -27s-4.16602 -15.833 -5.49902 -20.5
|
||||
c-0.666992 -2.66699 -1.83398 -6.66699 -3.50098 -12s-3.16699 -10.833 -4.5 -16.5s-2.66602 -10.834 -3.99902 -15.501s-2 -7.33398 -2 -8.00098s-0.166992 -2.5 -0.5 -5.5l-1 -9c-0.333008 -3 -0.666016 -5.83301 -0.999023 -8.5s-0.5 -4.33398 -0.5 -5.00098
|
||||
c-2.66699 -14 -7.5 -29.5 -14.5 -46.5s-12.833 -32.167 -17.5 -45.5c-1.33301 -3.33301 -3.33301 -7.66602 -6 -12.999s-4.33398 -8 -5.00098 -8h-3l-7 21c0 0.666992 -0.5 3 -1.5 7s-2.16699 8.16699 -3.5 12.5s-2.5 8.33301 -3.5 12s-1.83301 6.16699 -2.5 7.5
|
||||
c0 0.666992 -0.5 2.5 -1.5 5.5l-3.5 10l-3.5 10c-1 3 -1.5 5.16699 -1.5 6.5c-3.33301 12 -6.5 25.667 -9.5 41s-6.66699 30.833 -11 46.5s-9.5 30.667 -15.5 45s-14 26.166 -24 35.499c-3.33301 3.33301 -9.5 6 -18.5 8s-15.5 3 -19.5 3
|
||||
c-2.66699 0 -5.5 -2.16699 -8.5 -6.5s-5.66699 -9.16602 -8 -14.499s-4.33301 -10.666 -6 -15.999s-2.5 -9 -2.5 -11v-8l98 -348v-3c0 -15.333 -3 -30.333 -9 -45s-11 -29 -15 -43l-5.5 -16.5c-3 -9 -6 -18.667 -9 -29l-8.5 -29
|
||||
c-2.66699 -9 -4.33398 -14.833 -5.00098 -17.5c-1.33301 -4 -3.33301 -14 -6 -30l-8.5 -52l-8.5 -52.5l-5 -30.5c-2.66699 -11.333 -5.83398 -22.166 -9.50098 -32.499s-5.5 -21.166 -5.5 -32.499z" />
|
||||
<glyph glyph-name="Y" unicode="Y" horiz-adv-x="355"
|
||||
d="M161 -59c1.33301 -5.33301 4.00098 -9.33203 8.00098 -11.999s8.33301 -4.83398 13 -6.50098s9.5 -3 14.5 -4s9.5 -1.83301 13.5 -2.5c5.33301 4 9.83301 9 13.5 15s5.16699 12.667 4.5 20c-0.666992 4 -1.66699 11.5 -3 22.5s-2.5 22.667 -3.5 35s-2 24 -3 35
|
||||
s-1.5 18.833 -1.5 23.5v94v103c0 5.33301 0.333008 13.333 1 24s1.5 21.5 2.5 32.5s1.83301 21.167 2.5 30.5s1 15.333 1 18c10.667 64 27.334 126.5 50.001 187.5l69 180.5c0.666992 0.666992 1 1.66699 1 3v4c0 13.333 -4.33301 26.166 -13 38.499s-19.667 18.5 -33 18.5
|
||||
h-14c-1.33301 -0.666992 -2.66602 -1.83398 -3.99902 -3.50098s-2.33301 -2.83398 -3 -3.50098c-1.33301 -2 -3 -5.16699 -5 -9.5s-4.16699 -8.66602 -6.5 -12.999s-4.33301 -8.5 -6 -12.5s-2.83398 -6.66699 -3.50098 -8l-88 -228h-2h-2
|
||||
c-4.66699 5.33301 -7.5 10.833 -8.5 16.5s-2.83301 11.834 -5.5 18.501l-5.5 16l-10 28l-10 28l-5.5 16c-1.33301 3.33301 -3.33301 9.33301 -6 18l-8.5 28l-8.5 29c-2.66699 9.33301 -4.33398 16 -5.00098 20c-1.33301 5.33301 -3 11.5 -5 18.5s-4.83301 13.5 -8.5 19.5
|
||||
s-8 11.167 -13 15.5s-11.5 6.5 -19.5 6.5c-8.66699 0 -14.667 -0.5 -18 -1.5s-5.5 -2.5 -6.5 -4.5s-1.5 -5 -1.5 -9c0 -3.33301 -0.666992 -7.66602 -2 -12.999c0 -1.33301 -1.16699 -3.33301 -3.5 -6s-3.5 -4.33398 -3.5 -5.00098v-9v-9
|
||||
c6 -31.333 13.167 -62.166 21.5 -92.499s17.5 -60.333 27.5 -90l31.5 -89c11 -29.667 21.5 -59.5 31.5 -89.5c2 -36 2.83301 -71.833 2.5 -107.5s-0.5 -71.5 -0.5 -107.5c0 -35.333 0.666992 -70.833 2 -106.5s4.66602 -71.167 9.99902 -106.5c1.33301 -4 4 -8 8 -12
|
||||
s8 -6 12 -6h1c2.66699 0 4 1.33301 4 4z" />
|
||||
<glyph glyph-name="Z" unicode="Z" horiz-adv-x="415"
|
||||
d="M10 -28c1.33301 -12.667 8.3291 -22.002 20.9961 -28.002s27 -10.167 43 -12.5s32 -4.16602 48 -5.49902s28 -3.33301 36 -6c1.33301 -1.33301 3.33301 -2.33301 6 -3l4 -1h130c9.33301 0 16.666 3.66699 21.999 11s7.33301 15.333 6 24c-2 16 -7.16699 27.5 -15.5 34.5
|
||||
s-18.333 11.5 -30 13.5s-24.334 2.66699 -38.001 2s-26.834 -1 -39.501 -1h-15h-21c-7.33301 0 -14.5 -0.166992 -21.5 -0.5s-11.833 -0.5 -14.5 -0.5c0 12.667 1.66699 25.167 5 37.5s7.33301 24.5 12 36.5s9.5 23.833 14.5 35.5s9.16699 23.5 12.5 35.5
|
||||
c0.666992 1.33301 1.66699 5 3 11s2.83301 12.333 4.5 19s3.16699 13 4.5 19s2 9.66699 2 11c0 0.666992 0.5 1.83398 1.5 3.50098s1.83301 2.83398 2.5 3.50098l70 193c2 2 3 4.33301 3 7c0.666992 1.33301 2 4.83301 4 10.5s4.33301 11.667 7 18s5 12.333 7 18
|
||||
s3.33301 9.16699 4 10.5l18 38.5l27.5 58l27.5 58l18 38.5l24 67c0.666992 0 1 1.66699 1 5v7c0 22 -6.83301 37.833 -20.5 47.5s-30.5 14.5 -50.5 14.5c-32.667 0 -65.334 -1 -98.001 -3s-65.667 -3.66699 -99 -5c-12.667 -0.666992 -24 -2.16699 -34 -4.5
|
||||
s-15 -11.5 -15 -27.5c0 -7.33301 1 -13.5 3 -18.5s4.83301 -9.5 8.5 -13.5s7.5 -7.83301 11.5 -11.5s8 -7.83398 12 -12.501h39c0.666992 0.666992 1.83398 1.5 3.50098 2.5s2.83398 1.5 3.50098 1.5h2h2c0.666992 0 2.33398 -0.5 5.00098 -1.5
|
||||
s4.33398 -1.83301 5.00098 -2.5c2 0 5.83301 0.333008 11.5 1s11.834 1.16699 18.501 1.5s12.834 0.666016 18.501 0.999023s9.5 0.5 11.5 0.5h9c4.66699 0 9.66699 -0.166992 15 -0.5s10.333 -0.5 15 -0.5h10v-3c0 -0.666992 -0.5 -2.33398 -1.5 -5.00098
|
||||
s-1.5 -4.33398 -1.5 -5.00098l-64 -141c-3.33301 -12.667 -7.66602 -25.167 -12.999 -37.5s-11.333 -24.166 -18 -35.499l-148 -422c0 -1.33301 -0.833008 -3.66602 -2.5 -6.99902s-3.33398 -7.33301 -5.00098 -12s-3.5 -9.16699 -5.5 -13.5s-3.33301 -7.5 -4 -9.5
|
||||
c-1.33301 -2.66699 -3.16602 -5.83398 -5.49902 -9.50098s-4.5 -7.66699 -6.5 -12s-3.66699 -8.66602 -5 -12.999s-1.66602 -8.16602 -0.999023 -11.499z" />
|
||||
<glyph glyph-name=".0097" unicode="a"
|
||||
d="M60 82c0 11.333 2.16211 21.8213 6.49512 31.4883s8.16602 19.834 11.499 30.501c2 6.66699 4.33301 15.5 7 26.5l8 32.5c2.66699 10.667 4.83398 20 6.50098 28l2.5 12v3c2.66699 8.66699 6.66699 23.834 12 45.501l17 69l16.5 69l10.5 45.5
|
||||
c0.666992 4.66699 2.5 16.5 5.5 35.5l9.5 61.5c3.33301 22 6.66602 42.333 9.99902 61s5.66602 30.334 6.99902 35.001c0.666992 4.66699 2 11.667 4 21s4.16699 18.5 6.5 27.5s4.5 17 6.5 24s3.33301 11.167 4 12.5l4 7l5 13.5c3.33301 9 7 19.833 11 32.5l12 38.5l10 31.5
|
||||
c4.66699 12.667 9.33398 21.167 14.001 25.5s13 8.5 25 12.5c1.33301 0 5.33301 1.83301 12 5.5s11 5.5 13 5.5h3c12.667 0 22.834 -2.66699 30.501 -8s13.5 -12.166 17.5 -20.499s6.5 -17.666 7.5 -27.999s1.5 -20.5 1.5 -30.5c0 -15.333 -0.166992 -31.333 -0.5 -48
|
||||
s-1.5 -32.667 -3.5 -48c0 -1.33301 -0.333008 -4.16602 -1 -8.49902s-1.5 -9.16602 -2.5 -14.499s-1.83301 -10.166 -2.5 -14.499s-1 -7.16602 -1 -8.49902v-1c0 -46 1.83301 -91.167 5.5 -135.5s8.83398 -88.833 15.501 -133.5c0.666992 -4.66699 1.66699 -10.5 3 -17.5
|
||||
s2.66602 -13.167 3.99902 -18.5c2 -6.66699 4.83301 -11.834 8.5 -15.501s5.5 -9.5 5.5 -17.5c0 -7.33301 -2.33301 -13 -7 -17s-7 -9.66699 -7 -17v-10l3 -38.5c1.33301 -17 2.5 -34.333 3.5 -52s1.83301 -33.667 2.5 -48s1 -23.166 1 -26.499
|
||||
c0 -1.33301 0.333008 -4.83301 1 -10.5s1.5 -11.667 2.5 -18s1.83301 -12.166 2.5 -17.499s1 -8.66602 1 -9.99902c0.666992 -0.666992 1 -3 1 -7v-7c0 -7.33301 -2.5 -15.666 -7.5 -24.999s-12.167 -14 -21.5 -14c-5.33301 0 -12.166 2.5 -20.499 7.5
|
||||
s-14.166 9.5 -17.499 13.5s-7.66602 9.66699 -12.999 17l-8 11l-21 197l-4 4h-2h-2l-7 -3.5l-7 -3.5c0 -0.666992 -0.5 -1.5 -1.5 -2.5l-1.5 -1.5c-3.33301 -2 -7.5 -4.66699 -12.5 -8s-10 -6.5 -15 -9.5s-9.33301 -5.5 -13 -7.5l-5.5 -3h-24
|
||||
c-1.33301 2 -3.66602 3.66699 -6.99902 5s-5.66602 2 -6.99902 2c-3.33301 0 -6.5 -5.33301 -9.5 -16s-6 -24.167 -9 -40.5l-10 -52.5c-3.66699 -18.667 -8.5 -36.167 -14.5 -52.5s-13.167 -29.833 -21.5 -40.5s-18.166 -16 -29.499 -16
|
||||
c-4.66699 0 -9.33398 1.5 -14.001 4.5s-9 6.66699 -13 11s-7.16699 9 -9.5 14s-3.5 9.5 -3.5 13.5zM224.995 411.988c-5.33301 -12 -9.16699 -24.834 -11.5 -38.501s-3.5 -26.834 -3.5 -39.501c8 0 16.667 2.5 26 7.5s17.333 9.5 24 13.5c2 0.666992 4.66699 2 8 4l10.5 6.5
|
||||
l10 6.5c3 2 5.16699 3.33301 6.5 4c0.666992 0.666992 1 3.33398 1 8.00098v8c0 23.333 -1.5 46.166 -4.5 68.499s-5.16699 44.833 -6.5 67.5c0 6 -0.333008 17 -1 33s-1.5 33 -2.5 51s-1.83301 35 -2.5 51s-1 27 -1 33c-4 -2.66699 -6.33301 -6 -7 -10
|
||||
c-0.666992 -2 -1.5 -5.16699 -2.5 -9.5s-2.16699 -9 -3.5 -14s-2.5 -9.66699 -3.5 -14s-1.5 -7.16602 -1.5 -8.49902c0 -0.666992 -0.166992 -3 -0.5 -7s-0.833008 -8.66699 -1.5 -14s-1.5 -10.666 -2.5 -15.999s-1.83301 -9.33301 -2.5 -12v-4z" />
|
||||
<glyph glyph-name=".0098" unicode="b"
|
||||
d="M60 68l0.000976562 8.00098c0 4 -0.166992 8 -0.5 12s-0.5 7.66699 -0.5 11v7c0 5.33301 0.166992 12.833 0.5 22.5s0.5 15.167 0.5 16.5s0.5 5.16602 1.5 11.499s2.33301 13 4 20s3 13.667 4 20s1.5 10.166 1.5 11.499l22.5 188l22.5 188l8.5 35.5
|
||||
c3 12.333 4.83301 24.166 5.5 35.499c0 2 0.166992 7 0.5 15s0.833008 16.5 1.5 25.5s1.16699 17.5 1.5 25.5s0.5 13 0.5 15v13c0 7.33301 -0.666992 14.5 -2 21.5s-2 14.167 -2 21.5c0 11.333 2.83301 21.5 8.5 30.5s12.834 16.667 21.501 23s18.167 11.833 28.5 16.5
|
||||
s20.166 8.33398 29.499 11.001c1.33301 0 4.33301 -0.166992 9 -0.5s7.66699 -0.166016 9 0.500977c4 1.33301 9.5 4.5 16.5 9.5s13.167 7.5 18.5 7.5c19.333 0 37.166 -5.16699 53.499 -15.5s30.5 -23.333 42.5 -39s21.333 -33 28 -52s10 -37.5 10 -55.5
|
||||
c0 -47.333 -8 -90.333 -24 -129s-35 -78.667 -57 -120c-3.33301 -6 -9 -13.333 -17 -22s-12 -16.667 -12 -24c0 -0.666992 1.66699 -3.33398 5 -8.00098l11 -16c4 -6 8 -11.667 12 -17s6.66699 -9 8 -11c7.33301 -23.333 12.666 -43.833 15.999 -61.5s5 -38.167 5 -61.5
|
||||
c0 -24.667 -2.33301 -51.167 -7 -79.5s-13 -54.666 -25 -78.999s-28.167 -44.5 -48.5 -60.5s-46.166 -24 -77.499 -24c-12 0 -24.833 0.333008 -38.5 1s-26.667 2.66699 -39 6s-23.5 8.5 -33.5 15.5s-17.667 17.167 -23 30.5zM144.001 111.001l-0.000976562 -5
|
||||
c0 -1.33301 1.33301 -2.33301 4 -3h14c21.333 0 39 5.16699 53 15.5s25.167 23.5 33.5 39.5s14.166 33.667 17.499 53s5 38 5 56v15c-0.666992 2.66699 -1.66699 7 -3 13s-2.66602 12.333 -3.99902 19s-2.66602 13 -3.99902 19s-2.33301 10 -3 12
|
||||
c-2.66699 8.66699 -7.5 13.334 -14.5 14.001s-13.833 1 -20.5 1c-2 0 -6 -0.666992 -12 -2s-12 -3 -18 -5s-11.333 -4.33301 -16 -7s-7 -5.33398 -7 -8.00098l-25 -221v-6zM180 454.001l3 -6.99902c15.333 10.667 28.833 23 40.5 37s22.5 29 32.5 45s19.333 32.333 28 49
|
||||
l26 49c5.33301 19.333 10.166 37.833 14.499 55.5s6.5 36.5 6.5 56.5c0 6 -0.666992 12.833 -2 20.5s-3.66602 14.667 -6.99902 21s-7.5 11.666 -12.5 15.999s-11.5 6.5 -19.5 6.5c-10.667 0 -23.667 -3 -39 -9s-26.333 -13.667 -33 -23
|
||||
c0 -4.66699 -0.333008 -12.5 -1 -23.5s-1.5 -22.667 -2.5 -35s-2.16699 -24 -3.5 -35s-2.33301 -18.5 -3 -22.5s-2.16699 -14 -4.5 -30s-5 -33 -8 -51s-5.66699 -35 -8 -51s-3.83301 -26 -4.5 -30c0 -4 -0.5 -9.5 -1.5 -16.5s-1.5 -12.833 -1.5 -17.5v-5zM327 869.002
|
||||
c-1.33301 0 -2 -1.33301 -2 -4c0 -2 0.666992 -3 2 -3c2 0 3 1 3 3c0 2.66699 -1 4 -3 4z" />
|
||||
<glyph glyph-name=".0099" unicode="c"
|
||||
d="M60 203l0.00488281 24.998c0 8.66699 0.5 24.167 1.5 46.5s2 46 3 71s2.16699 48.667 3.5 71s2.33301 37.833 3 46.5c0.666992 6 2.33398 17 5.00098 33l8.5 50l8.5 49.5c2.66699 15.667 4.66699 26.5 6 32.5c3.33301 18 9.66602 40.833 18.999 68.5s21.333 54.5 36 80.5
|
||||
s31.667 48.167 51 66.5s41 27.5 65 27.5c25.333 0 47.833 -8 67.5 -24s35.834 -34 48.501 -54c1.33301 -1.33301 3.83301 -4.83301 7.5 -10.5s5.83398 -9.16699 6.50098 -10.5c0.666992 0 1 -0.333008 1 -1c0 -12 -2.33301 -22.5 -7 -31.5s-13.334 -13.5 -26.001 -13.5
|
||||
c-7.33301 0 -14 1.83301 -20 5.5s-11.667 8.33398 -17 14.001s-10.333 11.5 -15 17.5s-9.33398 11.333 -14.001 16c-0.666992 0 -2.33398 0.166992 -5.00098 0.5s-4.33398 0.5 -5.00098 0.5c-12.667 0 -23.334 -3.66699 -32.001 -11s-16.334 -16 -23.001 -26
|
||||
s-12.834 -20.5 -18.501 -31.5s-11.834 -20.167 -18.501 -27.5c-0.666992 -2.66699 -2 -7.16699 -4 -13.5l-6.5 -20l-6.5 -19.5c-2 -6 -3.33301 -10.333 -4 -13l-3.5 -17c-1.66699 -8 -2.83398 -13 -3.50098 -15l-21 -172c1.33301 -36 1.16602 -71.833 -0.500977 -107.5
|
||||
s-2.5 -71.5 -2.5 -107.5v-28c0 -14 2.33301 -26.667 7 -38s15.667 -17 33 -17c10.667 0 21 1.66699 31 5s19.833 7 29.5 11s19.334 7.66699 29.001 11s19.834 5 30.501 5c14.667 0 25.334 -6.16699 32.001 -18.5s10.334 -25.166 11.001 -38.499
|
||||
c-3.33301 -4 -6 -8.16699 -8 -12.5s-5 -8.16602 -9 -11.499c-8.66699 -7.33301 -18.834 -13.5 -30.501 -18.5s-23.834 -9 -36.501 -12s-25.5 -5.16699 -38.5 -6.5s-24.833 -2 -35.5 -2c-25.333 0 -46.5 5.16699 -63.5 15.5s-30.667 23.666 -41 39.999s-17.666 35 -21.999 56
|
||||
s-6.5 42.167 -6.5 63.5z" />
|
||||
<glyph glyph-name=".0100" unicode="d"
|
||||
d="M60 59c0 5.33301 2.33301 11.3379 7 18.0049s8.33398 12.334 11.001 17.001v2c0 6.66699 -3 13.167 -9 19.5s-9 13.833 -9 22.5v9l25 242c-2 44 -0.166992 87.167 5.5 129.5s8.5 85.5 8.5 129.5v67c0 2.66699 -0.333008 8.16699 -1 16.5s-1.5 17.166 -2.5 26.499
|
||||
s-1.83301 18.333 -2.5 27s-1 14.667 -1 18c0 1.33301 -0.5 5 -1.5 11s-2.33301 12.333 -4 19s-3 13 -4 19s-1.5 9.66699 -1.5 11v14c0 9.33301 3.33301 17.166 10 23.499s14 11.166 22 14.499c0.666992 0.666992 3.66699 1 9 1h10c12 0 23 -1.83301 33 -5.5
|
||||
s20.667 -7.83398 32 -12.501c14.667 -6 29.334 -11.667 44.001 -17s28 -13.666 40 -24.999c29.333 -26 53.166 -59.5 71.499 -100.5s32.666 -84.5 42.999 -130.5s17.333 -91.833 21 -137.5s5.5 -85.834 5.5 -120.501c0 -24 -1.83301 -46.833 -5.5 -68.5
|
||||
s-9.16699 -44.167 -16.5 -67.5c-28 -48 -61.5 -89.667 -100.5 -125s-84.833 -61.333 -137.5 -78c-7.33301 2 -13.833 0.666992 -19.5 -4s-12.167 -7 -19.5 -7c-6 0 -12.5 0.833008 -19.5 2.5s-13.833 4.16699 -20.5 7.5s-12.167 7.66602 -16.5 12.999
|
||||
s-6.5 11.666 -6.5 18.999zM183 633.005c0 -50 -0.665039 -100.662 -1.99805 -151.995s-4.33301 -102 -9 -152c0 -4 -0.833008 -14 -2.5 -30s-3.66699 -33.333 -6 -52s-4.33301 -36.167 -6 -52.5s-2.5 -26.5 -2.5 -30.5c0 -2 -0.333008 -7 -1 -15s-1 -15.333 -1 -22v-9
|
||||
c2.66699 0 6.5 1.16699 11.5 3.5s10.167 5.16602 15.5 8.49902s10.166 6.5 14.499 9.5s7.5 5.5 9.5 7.5c40.667 29.333 71.667 61.166 93 95.499s33.666 76.166 36.999 125.499c0 4.66699 -0.333008 13.334 -1 26.001s-1.5 26 -2.5 40s-1.83301 27.333 -2.5 40
|
||||
s-1 21.667 -1 27c-1.33301 18 -3.83301 41.5 -7.5 70.5s-9.5 58 -17.5 87s-18.5 55.667 -31.5 80s-29.5 41.166 -49.5 50.499c-4 2 -10.833 5.16699 -20.5 9.5s-18.167 6.5 -25.5 6.5c0 -0.666992 0.166992 -2.16699 0.5 -4.5s0.5 -3.83301 0.5 -4.5
|
||||
c0 -2 0.333008 -5.83301 1 -11.5s1.5 -11.834 2.5 -18.501s1.83301 -12.834 2.5 -18.501s1 -9.5 1 -11.5v-103z" />
|
||||
<glyph glyph-name=".0101" unicode="e"
|
||||
d="M60 74l-0.00390625 8.99414c18 68 30.167 135.333 36.5 202l19.5 203v341c0.666992 0.666992 1.33398 1.83398 2.00098 3.50098s1.33398 2.83398 2.00098 3.50098c3.33301 8.66699 13.666 16.5 30.999 23.5s36.333 13 57 18s40.667 8.83301 60 11.5s32.666 4 39.999 4
|
||||
c14 0 25.5 -3.83301 34.5 -11.5s13.5 -18.834 13.5 -33.501c0 -11.333 -1.66699 -19.833 -5 -25.5s-8 -10 -14 -13s-12.833 -4.83301 -20.5 -5.5s-15.834 -1.66699 -24.501 -3c-11.333 -2 -22.5 -4.83301 -33.5 -8.5s-22.167 -6.83398 -33.5 -9.50098
|
||||
c-4.66699 -1.33301 -11 -2.83301 -19 -4.5l-12 -2.5l-4 -14c3.33301 -46 6.33301 -92.333 9 -139s3.33398 -93 2.00098 -139c0.666992 -1.33301 3.33398 -2.83301 8.00098 -4.5s7.66699 -2.5 9 -2.5s5.16602 0.5 11.499 1.5s10.833 1.83301 13.5 2.5
|
||||
c1.33301 0 6 1.16699 14 3.5s12.667 3.5 14 3.5c6 0.666992 12 -0.833008 18 -4.5s11.5 -8.5 16.5 -14.5s8.83301 -12.333 11.5 -19s3.66699 -12.667 3 -18c0 -2 -1 -4.33301 -3 -7s-4.16699 -5.33398 -6.5 -8.00098s-4.66602 -5 -6.99902 -7s-3.83301 -3 -4.5 -3
|
||||
c-16 -3.33301 -33 -6.16602 -51 -8.49902s-35 -4.16602 -51 -5.49902c-4 -8 -6.33301 -16.667 -7 -26s-0.666992 -18.333 0 -27l-28 -218v-10c18.667 0 37.167 0.5 55.5 1.5s36.833 1.5 55.5 1.5c6 0 12.833 -0.666992 20.5 -2s14.667 -3.66602 21 -6.99902
|
||||
s11.833 -7.66602 16.5 -12.999s7 -12 7 -20c0 -15.333 -6.33301 -25.666 -19 -30.999s-25 -8 -37 -8c-4 0 -10.833 -0.166992 -20.5 -0.5s-20 -0.666016 -31 -0.999023s-21.167 -0.666016 -30.5 -0.999023s-16 -0.5 -20 -0.5c-6 -2 -11.167 -3.16699 -15.5 -3.5
|
||||
s-9.16602 -0.5 -14.499 -0.5c-8 0 -17.167 0.5 -27.5 1.5s-20.166 3.16699 -29.499 6.5s-17.166 8 -23.499 14s-9.5 14.333 -9.5 25z" />
|
||||
<glyph glyph-name=".0102" unicode="f"
|
||||
d="M67 -5c-4 7.33301 -6.16406 13.5 -6.49707 18.5s-0.5 11.167 -0.5 18.5v16l18 158c-0.666992 0.666992 -1 3.33398 -1 8.00098c0 5.33301 0.333008 8.33301 1 9c2.66699 48 5.66699 94.667 9 140s5 92 5 140v68c0 7.33301 -0.333008 20.333 -1 39s-1.5 38.5 -2.5 59.5
|
||||
s-1.83301 40.833 -2.5 59.5s-1 31.667 -1 39c-2.66699 10 -4 19.333 -4 28v28v28c1.33301 3.33301 3 5.5 5 6.5s4.33301 1.5 7 1.5c3.33301 0 5.33301 -0.666992 6 -2s2.33398 -2 5.00098 -2h2c1.33301 0.666992 5.33301 2.5 12 5.5s10.667 4.5 12 4.5
|
||||
c7.33301 2 15 2.33301 23 1s15.667 0.666992 23 6h46c2.66699 -2 6 -3 10 -3c4.66699 0 9.5 1.16699 14.5 3.5s10.167 3.5 15.5 3.5h2c1.33301 -0.666992 4.83301 -3 10.5 -7s9.16699 -6.33301 10.5 -7c5.33301 -2.66699 10 -4 14 -4c6 0 10.5 -1.16699 13.5 -3.5
|
||||
s6.5 -10.5 10.5 -24.5c0.666992 0 1 -0.666992 1 -2c0 -6 -3.5 -11 -10.5 -15s-13.167 -6.33301 -18.5 -7c-20.667 0.666992 -41.834 1.16699 -63.501 1.5s-42.5 -3.83398 -62.5 -12.501v-16c0 -28 0.833008 -55.167 2.5 -81.5s3.16699 -53.5 4.5 -81.5
|
||||
c0 -5.33301 0.333008 -13 1 -23s1.16699 -18.333 1.5 -25s0.5 -10.667 0.5 -12l4 -3h91c4 -6 8.66699 -10.5 14 -13.5s10.333 -6 15 -9s8.66699 -6.83301 12 -11.5s5 -11.334 5 -20.001v-3l-14 -14c-4 0 -10.833 -0.166992 -20.5 -0.5s-19.834 -0.833008 -30.501 -1.5
|
||||
s-20.834 -1.5 -30.501 -2.5s-16.5 -1.83301 -20.5 -2.5h-6c-3.33301 0 -7.16602 -1 -11.499 -3s-5.5 -5.66699 -3.5 -11c1.33301 -38 0.166016 -75.5 -3.50098 -112.5s-4.83398 -74.5 -3.50098 -112.5l-21 -224c0 -1.33301 -0.166992 -3.66602 -0.5 -6.99902
|
||||
s-1 -6.83301 -2 -10.5s-2.5 -7 -4.5 -10s-4.33301 -4.5 -7 -4.5h-46c-3.33301 2.66699 -7.83301 5.5 -13.5 8.5s-10.5 4.83301 -14.5 5.5z" />
|
||||
<glyph glyph-name=".0103" unicode="g"
|
||||
d="M60 188c0 11.333 0.166992 24.1738 0.5 38.5068s1.5 26.166 3.5 35.499l42 247c1.33301 8 3.33301 16.833 6 26.5l8 29.5c2.66699 10 4.83398 19.833 6.50098 29.5s1.83398 18.5 0.500977 26.5c4 16 9.16699 34.333 15.5 55s14.166 41.167 23.499 61.5s20 39.333 32 57
|
||||
s25.667 31.5 41 41.5c2 1.33301 3.5 3.5 4.5 6.5s2.5 4.5 4.5 4.5c0.666992 0 1.16699 -0.166992 1.5 -0.5l0.5 -0.5c1.33301 -0.666992 3.16602 -2.16699 5.49902 -4.5s3.83301 -4.16602 4.5 -5.49902c0.666992 3.33301 3.16699 7 7.5 11s7.83301 6 10.5 6h39
|
||||
c3.33301 -2.66699 7.33301 -4.66699 12 -6s9.66699 -2.5 15 -3.5s10.5 -2.33301 15.5 -4s9.5 -4.16699 13.5 -7.5c18.667 -14.667 34 -33.5 46 -56.5s18 -46.5 18 -70.5c0 -6 -1.16699 -12.667 -3.5 -20s-7.5 -11 -15.5 -11c-13.333 0 -23.5 2.66699 -30.5 8
|
||||
s-12.333 12.166 -16 20.499s-6.16699 17.166 -7.5 26.499s-3.16602 18.166 -5.49902 26.499s-6 15.166 -11 20.499s-12.5 8 -22.5 8c-11.333 0 -21.666 -3.5 -30.999 -10.5s-17.5 -15.5 -24.5 -25.5s-13 -20.833 -18 -32.5s-9.16699 -21.834 -12.5 -30.501
|
||||
c-1.33301 -3.33301 -3 -7.83301 -5 -13.5s-3.83301 -11.334 -5.5 -17.001l-4.5 -15c-1.33301 -4.33301 -2 -6.83301 -2 -7.5l-32 -166c2 -10 2 -19.833 0 -29.5s-4.5 -19.334 -7.5 -29.001s-5.66699 -19.167 -8 -28.5s-2.83301 -19 -1.5 -29
|
||||
c-1.33301 -5.33301 -2.83301 -15 -4.5 -29s-3.33398 -28.833 -5.00098 -44.5s-3.33398 -30.5 -5.00098 -44.5l-3.5 -29v-31v-36c0 -4 0.666992 -11 2 -21s3.5 -20.333 6.5 -31s6.66699 -20 11 -28s9.5 -12 15.5 -12c16.667 0 31.167 4 43.5 12s22.666 18.167 30.999 30.5
|
||||
s14.5 26.166 18.5 41.499s6 30.333 6 45v19c-2 7.33301 -5.33301 12.166 -10 14.499s-9.5 4.5 -14.5 6.5s-9.33301 5 -13 9s-5.5 11.667 -5.5 23v14c3.33301 6 11 10.833 23 14.5s25.333 6.5 40 8.5s29.167 3.33301 43.5 4s25.5 1 33.5 1c7.33301 0 12.333 -1.16699 15 -3.5
|
||||
s4.83398 -4.66602 6.50098 -6.99902s3.5 -4.66602 5.5 -6.99902s5.66699 -3.5 11 -3.5h2c0.666992 0 1.83398 0.666992 3.50098 2s2.83398 2 3.50098 2l3 -4h11l17 -18c0.666992 0 0.666992 -2.16699 0 -6.5s-1.66699 -7.83301 -3 -10.5
|
||||
c-3.33301 -10 -9.83301 -16.5 -19.5 -19.5s-19.5 -4.83301 -29.5 -5.5s-19 -1.33398 -27 -2.00098s-12 -4 -12 -10c0 -7.33301 0.666992 -14.666 2 -21.999s2 -15 2 -23c0 -40 -9.16699 -75 -27.5 -105s-45.5 -53.333 -81.5 -70
|
||||
c-2.66699 1.33301 -6.83398 0.166016 -12.501 -3.50098s-9.83398 -5.83398 -12.501 -6.50098c-8 -2.66699 -15 -4 -21 -4h-22c-29.333 0 -53 7.66699 -71 23s-32.167 34.333 -42.5 57s-17.333 47.334 -21 74.001s-5.5 51.334 -5.5 74.001z" />
|
||||
<glyph glyph-name=".0104" unicode="h"
|
||||
d="M271 66l0.00292969 21.9951l21 151v10c-10.667 -1.33301 -24.334 -3.33301 -41.001 -6s-30.667 -4 -42 -4c-6.66699 0 -12.334 1.83301 -17.001 5.5s-10 5.5 -16 5.5c-0.666992 0 -1.33398 -0.166992 -2.00098 -0.5s-1.33398 -0.5 -2.00098 -0.5
|
||||
c-3.33301 -17.333 -5.83301 -35.5 -7.5 -54.5s-2.5 -37.167 -2.5 -54.5c0 -1.33301 0.166992 -4.16602 0.5 -8.49902s0.666016 -9 0.999023 -14l1 -14.5c0.333008 -4.66699 0.5 -7.33398 0.5 -8.00098v-4v-3c-0.666992 -6 -1.66699 -14.333 -3 -25s-2.5 -21.5 -3.5 -32.5
|
||||
s-1.83301 -20.833 -2.5 -29.5s-1 -13.667 -1 -15c-1.33301 -10 -4.16602 -20.833 -8.49902 -32.5s-12.833 -17.5 -25.5 -17.5h-1v1c-6.66699 2.66699 -13.5 5 -20.5 7s-13.5 4.66699 -19.5 8s-10.833 7.5 -14.5 12.5s-5.5 12.167 -5.5 21.5v14c0 2 0.5 6.66699 1.5 14
|
||||
s2.33301 15.333 4 24s3 16.834 4 24.501s1.5 12.5 1.5 14.5c4 48 6.66699 96 8 144s4.33301 96 9 144c3.33301 28.667 7 57.334 11 86.001s6.33301 57.334 7 86.001v120c0 3.33301 0.166992 12 0.5 26s0.666016 28.833 0.999023 44.5s0.666016 30.5 0.999023 44.5
|
||||
s0.5 22.667 0.5 26v11c0 5.33301 0.5 9.5 1.5 12.5s4.16699 7.83301 9.5 14.5l14 -10c0.666992 2.66699 2.66699 4 6 4h8c1.33301 0 2.83301 -0.166992 4.5 -0.5l2.5 -0.5l3 -7c0.666992 1.33301 1.83398 2.33301 3.50098 3s2.83398 1 3.50098 1
|
||||
c6.66699 -2 13.167 -7.33301 19.5 -16s9.5 -16 9.5 -22v-5c0 -4.66699 -0.166992 -16.667 -0.5 -36s-0.833008 -40 -1.5 -62s-1.16699 -42.667 -1.5 -62s-0.5 -31.333 -0.5 -36c-0.666992 -22.667 -0.666992 -45.667 0 -69s-0.333008 -46 -3 -68l-10 -64
|
||||
c-3.33301 -22 -5 -43.667 -5 -65v-10c0 -4 1.66699 -6 5 -6c13.333 0 26.333 2.5 39 7.5s25 8.5 37 10.5c3.33301 0.666992 7 1.16699 11 1.5s8.66699 0.5 14 0.5c10.667 0 18.667 3 24 9c0.666992 0 0.833984 0.5 0.500977 1.5l-0.5 1.5l4 51l4 51
|
||||
c0 2.66699 0.5 9.83398 1.5 21.501s2.16699 24 3.5 37s2.5 25.167 3.5 36.5s1.5 18.333 1.5 21v21l18 253c0 6.66699 3.83301 12.334 11.5 17.001s14.167 7.33398 19.5 8.00098c6 0 12 -1.16699 18 -3.5s11.667 -5.5 17 -9.5s9.83301 -8.5 13.5 -13.5
|
||||
s6.16699 -10.167 7.5 -15.5c0.666992 -1.33301 1 -5 1 -11v-11c0 -13.333 -1.5 -26.166 -4.5 -38.499s-5.16699 -25.166 -6.5 -38.499c-5.33301 -62.667 -8.66602 -125.334 -9.99902 -188.001s-5 -125.334 -11 -188.001c0 -1.33301 -0.5 -4.83301 -1.5 -10.5
|
||||
s-1.83301 -9.16699 -2.5 -10.5c0 -3.33301 -0.666992 -11.666 -2 -24.999s-2.66602 -27.666 -3.99902 -42.999s-2.83301 -29.833 -4.5 -43.5s-2.83398 -22.167 -3.50098 -25.5c-2 -19.333 -4.83301 -38.5 -8.5 -57.5s-5.5 -38.5 -5.5 -58.5c0 -14 0.666992 -27.833 2 -41.5
|
||||
s2 -27.5 2 -41.5c0 -15.333 -1.66699 -25.5 -5 -30.5s-7 -8 -11 -9s-7.83301 -1.33301 -11.5 -1s-6.16699 -1.83398 -7.5 -6.50098c-1.33301 1.33301 -4.33301 3.16602 -9 5.49902s-7.66699 4.16602 -9 5.49902c-1.33301 0 -6 2 -14 6s-12.667 6.66699 -14 8
|
||||
c-4.66699 2.66699 -8 9 -10 19s-3.33301 20.833 -4 32.5s-0.833984 23 -0.500977 34s0.5 18.5 0.5 22.5z" />
|
||||
<glyph glyph-name=".0105" unicode="i"
|
||||
d="M127 -60c-22 2.66699 -42.002 12.0039 -60.002 28.0039c0.666992 4 0.666992 6.66699 0 8s-1.5 2.5 -2.5 3.5l-3 3c-1 1 -1.5 3.16699 -1.5 6.5c0 11.333 5.5 18.833 16.5 22.5s21.833 5.5 32.5 5.5h18c0.666992 0 2.83398 -0.666992 6.50098 -2s6.16699 -2 7.5 -2
|
||||
c2.66699 0 4.66699 1.5 6 4.5s2.33301 6.5 3 10.5s1 8 1 12v9c0.666992 2 1.5 5.5 2.5 10.5s1.83301 10.333 2.5 16s1.16699 11 1.5 16s0.5 8.16699 0.5 9.5c0.666992 0.666992 1 2.33398 1 5.00098c0 3.33301 -0.333008 5.33301 -1 6
|
||||
c1.33301 6.66699 3.16602 18.167 5.49902 34.5l7.5 51.5l7.5 51.5c2.33301 16.333 3.83301 27.833 4.5 34.5c0 1.33301 0.166992 4.5 0.5 9.5s0.833008 10.5 1.5 16.5s1.16699 11.667 1.5 17s0.5 8.66602 0.5 9.99902s0.333008 3.66602 1 6.99902
|
||||
s1.33398 5.66602 2.00098 6.99902l21 176c-1.33301 24.667 -0.5 49.167 2.5 73.5s4.5 49.166 4.5 74.499c0 3.33301 -0.333008 10 -1 20s-2 20.167 -4 30.5s-4.83301 19.666 -8.5 27.999s-8.5 12.5 -14.5 12.5c-2.66699 0 -5 -1 -7 -3c-1.33301 0 -5 -0.166992 -11 -0.5
|
||||
s-10 -0.5 -12 -0.5c-7.33301 0 -15 0.833008 -23 2.5s-15.333 4.33398 -22 8.00098s-12.334 8.66699 -17.001 15s-7 14.166 -7 23.499c0 4.66699 1.33301 8.16699 4 10.5s5.66699 4 9 5s6.5 2.16699 9.5 3.5s5.16699 3.66602 6.5 6.99902
|
||||
c15.333 2 31.166 3.16699 47.499 3.5s32.166 0.166016 47.499 -0.500977c6.66699 4.66699 15.334 7 26.001 7c3.33301 0 5.33301 -0.666992 6 -2s2.33398 -2 5.00098 -2c6 0 13.167 1.83301 21.5 5.5s16.166 5.5 23.499 5.5c9.33301 0 15.5 -1.33301 18.5 -4
|
||||
s4.66699 -5.5 5 -8.5s0.333008 -5.66699 0 -8s0.833984 -3.5 3.50098 -3.5c0.666992 2 1.66699 3 3 3h5c8.66699 0 14.834 -3 18.501 -9s5.5 -12.667 5.5 -20s-1.83301 -13 -5.5 -17s-8.33398 -7 -14.001 -9s-12 -3.33301 -19 -4s-14.167 -1 -21.5 -1
|
||||
c-10 0 -18.333 -1 -25 -3v-2c0 -8.66699 3 -17.5 9 -26.5s9 -18.5 9 -28.5v-270c-0.666992 -4 -1.5 -10.833 -2.5 -20.5s-2 -20 -3 -31s-2 -21.167 -3 -30.5s-1.83301 -16 -2.5 -20c-2.66699 -27.333 -6.16699 -54.333 -10.5 -81l-13 -80.5
|
||||
c-4.33301 -27 -8 -53.833 -11 -80.5s-4.5 -53.667 -4.5 -81v-1c1.33301 -1.33301 3.33301 -2.83301 6 -4.5s4.33398 -2.5 5.00098 -2.5h42c0.666992 0 3.16699 -2.16699 7.5 -6.5s7.83301 -8.16602 10.5 -11.499c2.66699 -2.66699 4.83398 -6.16699 6.50098 -10.5
|
||||
s4.16699 -7.83301 7.5 -10.5v-24c-2.66699 -0.666992 -5 -2.16699 -7 -4.5s-4.33301 -4.5 -7 -6.5c-1.33301 -0.666992 -5 -1.66699 -11 -3s-10.667 -2.66602 -14 -3.99902h-2h-1c-1.33301 0 -3.66602 0.333008 -6.99902 1s-7 1.5 -11 2.5s-7.83301 1.83301 -11.5 2.5
|
||||
s-5.83398 1 -6.50098 1h-14c-4 0 -10.833 0.166992 -20.5 0.5s-20.167 0.833008 -31.5 1.5s-22 1.16699 -32 1.5s-17 0.5 -21 0.5z" />
|
||||
<glyph glyph-name=".0106" unicode="j"
|
||||
d="M60 76c0 11.333 2.67188 22.1729 8.00488 32.5059s15 15.5 29 15.5h2c0.666992 -1.33301 2.16699 -3.83301 4.5 -7.5s4.16602 -5.83398 5.49902 -6.50098c0.666992 -0.666992 2 -0.833984 4 -0.500977l3 0.5c6 -1.33301 10.5 -5.33301 13.5 -12s5.33301 -14.167 7 -22.5
|
||||
s2.66699 -16.5 3 -24.5s0.833008 -14.333 1.5 -19c2 -4 5.66699 -7.33301 11 -10s11.166 -4.83398 17.499 -6.50098s12.5 -2.83398 18.5 -3.50098s11 -1 15 -1c22.667 0 41.334 7.66699 56.001 23s26.667 32.333 36 51c24.667 54 40.334 109.167 47.001 165.5
|
||||
s10 113.5 10 171.5c0 38 1 76.667 3 116c0 5.33301 0.166992 13.166 0.5 23.499s0.833008 21 1.5 32s1.66699 21.5 3 31.5s3.33301 17.333 6 22v30c0 16.667 -0.166992 30.5 -0.5 41.5s-1.5 25.833 -3.5 44.5c-2 0 -5.5 0.166992 -10.5 0.5s-10.333 0.666016 -16 0.999023
|
||||
s-11 0.666016 -16 0.999023s-8.5 0.5 -10.5 0.5c-5.33301 0.666992 -11.5 2.16699 -18.5 4.5s-13.5 5.33301 -19.5 9s-11.167 8.16699 -15.5 13.5s-6.5 11.333 -6.5 18c0 7.33301 2.33301 12.833 7 16.5s10.667 6.83398 18 9.50098c2 0 5.5 -0.166992 10.5 -0.5
|
||||
s10.167 -0.5 15.5 -0.5c6 0 11.5 0.166992 16.5 0.5s8.5 0.5 10.5 0.5c1.33301 0 4.83301 1 10.5 3s9.16699 3.33301 10.5 4h7h14h13h8c2 0 5.33301 0.166992 10 0.5s9.66699 0.666016 15 0.999023s10.166 0.666016 14.499 0.999023s7.5 0.5 9.5 0.5
|
||||
c4.66699 -1.33301 9.5 -4.16602 14.5 -8.49902s8.5 -7.5 10.5 -9.5l3 8l4 -4c1.33301 -1.33301 3.16602 -3.66602 5.49902 -6.99902s3.83301 -5.66602 4.5 -6.99902c2 2 3.33301 3 4 3c0 0.666992 0.666992 1 2 1c3.33301 0 6 -1.33301 8 -4s3.5 -5.83398 4.5 -9.50098
|
||||
s1.66699 -7.16699 2 -10.5s0.5 -6 0.5 -8c0 -6.66699 -2.5 -11.334 -7.5 -14.001s-10.833 -4.5 -17.5 -5.5s-13.334 -1.66699 -20.001 -2s-11.334 -1.5 -14.001 -3.5c2.66699 -8 4 -17.333 4 -28v-28c0 -22 -1 -44.167 -3 -66.5s-3.66699 -44.5 -5 -66.5
|
||||
c-0.666992 -5.33301 -1 -11 -1 -17v-17c0 -11.333 -2 -22.333 -6 -33v-260c-3.33301 -5.33301 -4.66602 -9.83301 -3.99902 -13.5s1 -8.5 1 -14.5c-1.33301 -24 -5 -49.333 -11 -76s-14.667 -52.5 -26 -77.5s-25.5 -47.5 -42.5 -67.5s-37.5 -35.333 -61.5 -46l-9.5 -2
|
||||
l-21.5 -4.5l-23.5 -5c-7.66699 -1.66699 -13.5 -2.5 -17.5 -2.5c-24 0 -44.333 4.33301 -61 13s-34.334 19.667 -53.001 33c-16.667 11.333 -27.834 23.333 -33.501 36s-8.5 30.334 -8.5 53.001z" />
|
||||
<glyph glyph-name=".0107" unicode="k"
|
||||
d="M88 810c2 3.33301 5.66992 8.33887 11.0029 15.0059s10.333 10 15 10c0.666992 0 1.16699 -0.166992 1.5 -0.5l0.5 -0.5c15.333 -5.33301 28.666 -11.833 39.999 -19.5s17 -21.167 17 -40.5v-20l-25 -275v-32c32 30 57.667 63.333 77 100s37 75 53 115
|
||||
c6.66699 16.667 12.5 32 17.5 46l15.5 41.5c5.33301 13.667 11.5 27 18.5 40s15.833 26.833 26.5 41.5c4 6 9.16699 10.167 15.5 12.5s11.5 6.5 15.5 12.5h28c1.33301 0 3.66602 -2 6.99902 -6s6.66602 -8.66699 9.99902 -14s6.16602 -10.5 8.49902 -15.5
|
||||
s3.5 -8.5 3.5 -10.5c0 -8 -1.5 -15.667 -4.5 -23s-6.83301 -14.5 -11.5 -21.5l-14 -20.5c-4.66699 -6.66699 -9 -13.334 -13 -20.001c-16 -30 -29.333 -59.5 -40 -88.5s-21.834 -57.667 -33.501 -86s-25 -56.166 -40 -83.499s-34.5 -53.666 -58.5 -78.999v-7
|
||||
c16 -14.667 29.667 -28.834 41 -42.501s21.5 -27.834 30.5 -42.501s17.5 -30 25.5 -46l26 -52c12.667 -25.333 23.5 -50.333 32.5 -75s13.5 -51.334 13.5 -80.001v-25c-1.33301 -6.66699 -5.83301 -11.834 -13.5 -15.501s-14.5 -5.5 -20.5 -5.5c-8 0 -16 2.83301 -24 8.5
|
||||
s-14.667 11.167 -20 16.5c-4.66699 4.66699 -7.66699 10.334 -9 17.001s-2 13.667 -2 21v22c0 8 -1 15 -3 21c-4 12.667 -11 31.167 -21 55.5s-22.167 48.833 -36.5 73.5s-30.166 46.167 -47.499 64.5s-35 27.5 -53 27.5v-274l-4 -56
|
||||
c0 -6.66699 -2.66699 -11.334 -8 -14.001s-10.666 -4 -15.999 -4s-11.5 0.666992 -18.5 2s-13.5 3.66602 -19.5 6.99902s-11.167 7.33301 -15.5 12s-6.5 10.667 -6.5 18v461c0 0.666992 0.666992 9.16699 2 25.5s3 35.5 5 57.5l6 67.5l5 56.5c0 1.33301 0.5 5.5 1.5 12.5
|
||||
s1.5 11.167 1.5 12.5v3c0 4 0.333008 10.667 1 20s1.5 19.166 2.5 29.499s1.83301 20.166 2.5 29.499s1 16 1 20z" />
|
||||
<glyph glyph-name=".0108" unicode="l"
|
||||
d="M60 57c0 8.66699 1.33496 16.999 4.00195 24.999s5 16.333 7 25c2.66699 14.667 5 29.5 7 44.5s3 29.833 3 44.5c0 36 -0.666992 71.5 -2 106.5s-3 70.5 -5 106.5c0 1.33301 -0.5 4.83301 -1.5 10.5s-1.5 9.16699 -1.5 10.5c-1.33301 24.667 -2.33301 48 -3 70
|
||||
s-1 43.667 -1 65v64v71v137c0.666992 1.33301 2.33398 3.83301 5.00098 7.5s5.66699 7.33398 9 11.001s6.5 6.83398 9.5 9.50098s5.16699 4 6.5 4c9.33301 0 14.666 -2.83301 15.999 -8.5s3.66602 -11.167 6.99902 -16.5c0 -0.666992 1 -1.33398 3 -2.00098
|
||||
s3.33301 -1.33398 4 -2.00098c1.33301 -1.33301 4.33301 -4.16602 9 -8.49902s7.33398 -8.5 8.00098 -12.5c0 -2 0.333008 -4.83301 1 -8.5s1.16699 -7.5 1.5 -11.5s0.666016 -7.66699 0.999023 -11s0.5 -5.66602 0.5 -6.99902c0 -10.667 -0.166992 -29.334 -0.5 -56.001
|
||||
s-0.5 -55 -0.5 -85s0.166992 -58.167 0.5 -84.5s0.5 -44.833 0.5 -55.5c0.666992 -50 3.16699 -98.833 7.5 -146.5s6.5 -96.5 6.5 -146.5c0 -19.333 -0.666992 -39 -2 -59s-2 -39.667 -2 -59v-6c0 -2 1.33301 -3.33301 4 -4c9.33301 -1.33301 19.166 -2.33301 29.499 -3
|
||||
s20.833 -1 31.5 -1h32c10 0 19.667 0.333008 29 1c8 -1.33301 12.5 -3.33301 13.5 -6l4.5 -12c1.33301 -2.66699 2.83301 -6.16699 4.5 -10.5l2.5 -6.5h4c0 -2.66699 -0.333008 -6.5 -1 -11.5s-2 -10 -4 -15s-4.33301 -9.5 -7 -13.5s-6 -6 -10 -6h-136
|
||||
c-10 0 -20.5 1 -31.5 3s-21.333 5.33301 -31 10s-17.5 11 -23.5 19s-9 18 -9 30z" />
|
||||
<glyph glyph-name=".0109" unicode="m"
|
||||
d="M517 -20c-1.33301 4 -2.99023 9.32812 -4.99023 15.9951s-4 13.834 -6 21.501l-6 22c-2 7 -3.33301 12.833 -4 17.5l-39 320c0 1.33301 -0.5 4.33301 -1.5 9s-1.5 7.66699 -1.5 9c-0.666992 4 -1.83398 11.833 -3.50098 23.5s-3.5 25.334 -5.5 41.001
|
||||
s-4.33301 32.334 -7 50.001s-5 34.334 -7 50.001s-3.83301 29.334 -5.5 41.001s-2.83398 19.5 -3.50098 23.5c0 1.33301 -0.5 4.33301 -1.5 9s-1.5 7.33398 -1.5 8.00098l-4 4l-14 -21c-3.33301 -6 -5.33301 -12.167 -6 -18.5s-2 -13.166 -4 -20.499
|
||||
c-0.666992 -0.666992 -1.33398 -1.83398 -2.00098 -3.50098s-1.33398 -2.83398 -2.00098 -3.50098c0 -0.666992 -0.5 -1.33398 -1.5 -2.00098s-1.83301 -1.33398 -2.5 -2.00098c0 -0.666992 -0.5 -3.5 -1.5 -8.5s-1.5 -7.83301 -1.5 -8.5
|
||||
c-0.666992 -2 -2.33398 -7.5 -5.00098 -16.5l-9 -29.5l-9 -29.5c-2.66699 -9 -4.33398 -14.5 -5.00098 -16.5c0 -1.33301 -1.16699 -6.5 -3.5 -15.5s-3.5 -14.167 -3.5 -15.5s-0.5 -3.5 -1.5 -6.5s-2.33301 -6.16699 -4 -9.5s-3 -6.66602 -4 -9.99902s-1.5 -5.33301 -1.5 -6
|
||||
c-0.666992 -3.33301 -1.5 -8.5 -2.5 -15.5s-2.5 -14 -4.5 -21s-4.83301 -13.167 -8.5 -18.5s-8.83398 -8 -15.501 -8c-14 0 -25.333 4.16699 -34 12.5s-16.334 18.166 -23.001 29.499l-9 17.5l-12 23.5l-11 21.5l-6 11.5c-9.33301 19.333 -17.666 40.5 -24.999 63.5
|
||||
s-16.666 43.833 -27.999 62.5l-4 -7l-1 -9.5c-0.666992 -6.33301 -1.33398 -13.833 -2.00098 -22.5l-2 -26.5c-0.666992 -9 -1.33398 -16.5 -2.00098 -22.5c-1.33301 -24.667 -2.5 -49 -3.5 -73s-1.5 -48.333 -1.5 -73c0 -24 -0.166992 -48 -0.5 -72
|
||||
s-0.833008 -48.333 -1.5 -73c0 -3.33301 -0.166992 -8.5 -0.5 -15.5l-1 -21c-0.333008 -7 -0.666016 -13.5 -0.999023 -19.5s-0.5 -9.66699 -0.5 -11s-1.16699 -4.83301 -3.5 -10.5s-3.5 -9.16699 -3.5 -10.5v-4c0 -3.33301 0.666992 -6.66602 2 -9.99902s2 -7 2 -11h-7
|
||||
c0 -5.33301 1.16699 -9.83301 3.5 -13.5s3.5 -7.83398 3.5 -12.501c0 -27.333 -14.333 -41 -43 -41h-7c-2 1.33301 -5.66699 4.66602 -11 9.99902s-8.66602 9 -9.99902 11v13c0 25.333 1 50.333 3 75s3.33301 49.334 4 74.001l6 230.5c2 75.667 3.66699 152.5 5 230.5v10
|
||||
c0 1.33301 0.166992 5 0.5 11s0.666016 12.333 0.999023 19s0.666016 13 0.999023 19s0.5 9.66699 0.5 11v60c0 4 1.16699 9.66699 3.5 17s7.16602 11 14.499 11c2 0 3 -1.33301 3 -4l7 8c2 -1.33301 3.66699 -3.66602 5 -6.99902l4 -10
|
||||
c1.33301 -3.33301 2.83301 -6.16602 4.5 -8.49902s4.16699 -3.5 7.5 -3.5h4c-0.666992 0.666992 -1.5 1.83398 -2.5 3.50098s-1.5 2.83398 -1.5 3.50098c0 1.33301 1.83301 2.83301 5.5 4.5l5.5 2.5c8 -4 14.333 -10.167 19 -18.5s8.5 -17.5 11.5 -27.5s5.33301 -20 7 -30
|
||||
l4.5 -26c12.667 -30.667 24.834 -61.834 36.501 -93.501s24.167 -63.5 37.5 -95.5c1.33301 -4.66699 3.83301 -10.667 7.5 -18s5.83398 -11 6.50098 -11h3c15.333 52.667 32.166 105 50.499 157s37.833 104 58.5 156c0.666992 2 2 3.33301 4 4s4 1.16699 6 1.5
|
||||
s3.83301 1 5.5 2s2.5 3.16699 2.5 6.5c0.666992 -4 3.5 -9 8.5 -15s9.16699 -10.333 12.5 -13v2v2c0 0.666992 -0.5 3 -1.5 7s-1.5 6.33301 -1.5 7l-1 5c2 0 3.66699 -1.16699 5 -3.5s2.66602 -5 3.99902 -8s2.5 -6 3.5 -9s1.83301 -4.83301 2.5 -5.5h1h2
|
||||
c1.33301 0.666992 3.16602 2.33398 5.49902 5.00098s4.16602 4.33398 5.49902 5.00098l10 -10l2 -5.5c1.33301 -3.66699 2.66602 -8 3.99902 -13s2.83301 -10 4.5 -15s2.83398 -9.16699 3.50098 -12.5c0.666992 -4 2.16699 -10.667 4.5 -20l7.5 -30.5
|
||||
c2.66699 -11 5.33398 -21.333 8.00098 -31s4.33398 -16.5 5.00098 -20.5c12 -98 26 -194 42 -288s30 -190 42 -288c2.66699 -12.667 7 -25.334 13 -38.001s9 -25.334 9 -38.001c0 -10.667 -3.83301 -19.334 -11.5 -26.001s-16.834 -10 -27.501 -10
|
||||
c-11.333 0 -20 2.5 -26 7.5s-12.667 11.5 -20 19.5z" />
|
||||
<glyph glyph-name=".0110" unicode="n"
|
||||
d="M116 -4c0 15.333 0.666016 30.8242 1.99902 46.4912s2 31.5 2 47.5c0 44 -2.33301 86.833 -7 128.5s-10.667 83.5 -18 125.5v11c-4.66699 25.333 -8.5 50.333 -11.5 75s-3.83301 50 -2.5 76c-2 2 -3 4.33301 -3 7c-6 32 -8.33301 63.667 -7 95s1.33301 63 0 95
|
||||
c0 2 -0.333008 7 -1 15s-1.5 16.667 -2.5 26s-1.83301 18.333 -2.5 27s-1 15.334 -1 20.001c-0.666992 1.33301 -1.5 4.83301 -2.5 10.5s-1.5 9.16699 -1.5 10.5v6c0 2.66699 0.666992 5.33398 2 8.00098s3.66602 4 6.99902 4c2.66699 0 5 -0.5 7 -1.5s4.66699 -1.5 8 -1.5
|
||||
c0 0.666992 0.166992 1.66699 0.5 3s0.5 2.33301 0.5 3c-0.666992 0.666992 -1.5 1.83398 -2.5 3.50098s-1.5 2.83398 -1.5 3.50098l1.5 1.5c1 1 1.83301 1.5 2.5 1.5l1 1c2.66699 0 4.33398 -1 5.00098 -3s1.5 -4.33301 2.5 -7s2.5 -5.16699 4.5 -7.5
|
||||
s5.66699 -3.83301 11 -4.5c0.666992 0 2.5 0.666992 5.5 2s4.83301 2 5.5 2h9c1.33301 0 3.5 0.166992 6.5 0.5s4.83301 -1.16699 5.5 -4.5c9.33301 -22 20.166 -46 32.499 -72s24.833 -50 37.5 -72l144 -334l6 -12.5l12 -24l13.5 -27
|
||||
c4.33301 -9 7.83301 -15.833 10.5 -20.5c0.666992 -1.33301 1.83398 -3.16602 3.50098 -5.49902s3.16699 -4.16602 4.5 -5.49902c1.33301 7.33301 2.5 14.5 3.5 21.5s2.16699 14.167 3.5 21.5c0 12.667 0.333008 34.667 1 66s1.5 64.833 2.5 100.5s1.83301 69.167 2.5 100.5
|
||||
s1 53.333 1 66v20c0 28 -0.666992 55 -2 81s-2 53 -2 81v19c1.33301 3.33301 3.83301 7.66602 7.5 12.999s7.5 8 11.5 8c6.66699 0 11.5 -2 14.5 -6s4.5 -8.66699 4.5 -14c2 0 6.16699 1.33301 12.5 4s9.5 5.66699 9.5 9c1.33301 -3.33301 4.83301 -6.16602 10.5 -8.49902
|
||||
s10.167 -5.5 13.5 -9.5c6 -7.33301 9.16699 -15 9.5 -23s0.833008 -16.667 1.5 -26c0 -2 0.166992 -6.5 0.5 -13.5s0.666016 -14.667 0.999023 -23s0.666016 -16.166 0.999023 -23.499s0.5 -12 0.5 -14c0.666992 -0.666992 1 -2.66699 1 -6v-7c0 -16 -1 -32.667 -3 -50
|
||||
s-3.66699 -33.666 -5 -48.999c-3.33301 -72.667 -5.33301 -144.834 -6 -216.501s-1 -143.834 -1 -216.501c0 -24 1.33301 -47.833 4 -71.5s4 -47.167 4 -70.5c0 -10 -3.16699 -18.667 -9.5 -26s-15.166 -11 -26.499 -11c-2 0 -5.33301 0.5 -10 1.5s-9.66699 2.33301 -15 4
|
||||
s-10.333 3.83398 -15 6.50098s-7.66699 5.66699 -9 9l-126 274c-1.33301 10 -4.66602 21 -9.99902 33s-11.333 24.167 -18 36.5l-20 36.5c-6.66699 12 -12 22.667 -16 32c0 0.666992 -0.5 2.33398 -1.5 5.00098s-1.5 4.33398 -1.5 5.00098l-9 18.5l-15 31l-14.5 31
|
||||
c-4.33301 9.66699 -6.83301 15.5 -7.5 17.5c-4 9.33301 -7.16699 17.5 -9.5 24.5s-6.16602 14.167 -11.499 21.5l-4 -3c0.666992 -7.33301 1.66699 -15.833 3 -25.5s2.33301 -19.834 3 -30.501s1.16699 -21.167 1.5 -31.5s0.166016 -19.833 -0.500977 -28.5l22 -166
|
||||
c-0.666992 0 -1 -0.666992 -1 -2c0 -0.666992 0.333008 -1 1 -1c0 -1.33301 0.333008 -4.33301 1 -9s1.33398 -7.66699 2.00098 -9c0.666992 -8 1.5 -21.833 2.5 -41.5s2 -40.5 3 -62.5s2 -42.667 3 -62s1.83301 -33 2.5 -41v-2v-2
|
||||
c0 -1.33301 -0.166992 -4.66602 -0.5 -9.99902s-0.833008 -11.166 -1.5 -17.499s-1.16699 -12.333 -1.5 -18s-0.5 -9.16699 -0.5 -10.5c-0.666992 -8.66699 -2.5 -17.667 -5.5 -27s-10.5 -14 -22.5 -14c-17.333 0 -30.5 3.16699 -39.5 9.5s-13.5 19.166 -13.5 38.499z
|
||||
M435.999 832.991c-1.33301 0 -2 -0.666016 -2 -1.99902s0.666992 -2 2 -2c4 1.33301 4 2.66602 0 3.99902z" />
|
||||
<glyph glyph-name=".0111" unicode="o"
|
||||
d="M92 17c-13.333 23.333 -22.0059 47.334 -26.0059 72.001s-6 50 -6 76c0 14 1 28.667 3 44s2.33301 30 1 44l17 137v3l18 158c-1.33301 11.333 -0.333008 22.5 3 33.5s5.66602 22.167 6.99902 33.5c0.666992 4 3.33398 14.667 8.00098 32s10.334 35.666 17.001 54.999
|
||||
s14 36.833 22 52.5s15.667 24.167 23 25.5c6 10 11.167 17.833 15.5 23.5s8.83301 10 13.5 13s10.334 4.83301 17.001 5.5s15.667 1 27 1c4.66699 0 9.33398 -1.16699 14.001 -3.5s8.66699 -3.5 12 -3.5c0.666992 0 1.83398 0.5 3.50098 1.5s2.83398 1.5 3.50098 1.5h11
|
||||
c11.333 0 22.166 -3.16699 32.499 -9.5s19.833 -14.5 28.5 -24.5s15.834 -20.667 21.501 -32s9.5 -22 11.5 -32c10 -40 19.667 -80.833 29 -122.5s14 -83.5 14 -125.5c0 -40 -1.16699 -80.167 -3.5 -120.5s-6.16602 -80.5 -11.499 -120.5
|
||||
c-3.33301 -26.667 -8.5 -57 -15.5 -91s-17.5 -66 -31.5 -96s-32.5 -55.333 -55.5 -76s-51.833 -31 -86.5 -31c-30.667 0 -56.167 6.66699 -76.5 20s-40.5 32 -60.5 56zM157.994 134.001c0 -8.66699 0.50293 -18.8281 1.50293 -30.4951s3.33301 -22.834 7 -33.501
|
||||
s8.83398 -19.834 15.501 -27.501s16 -11.5 28 -11.5c14.667 0 27.834 5 39.501 15s22 22.833 31 38.5s16.667 33.167 23 52.5s11.666 38.5 15.999 57.5s7.66602 36.833 9.99902 53.5s3.83301 30 4.5 40c0.666992 6 1.5 16.667 2.5 32s2 31.5 3 48.5l3 49
|
||||
c1 15.667 1.83301 26.5 2.5 32.5c-2 26 -3.66699 50.167 -5 72.5s-4.33301 47.166 -9 74.499c-1.33301 8 -3.5 18.667 -6.5 32l-9 39.5c-3 13 -5.83301 24.5 -8.5 34.5s-4.33398 15.667 -5.00098 17l-3 7l-3 0.5c-2 0.333008 -3.66699 0.5 -5 0.5
|
||||
c-19.333 0 -35 -8.33301 -47 -25s-21.333 -36.334 -28 -59.001s-11.334 -45.5 -14.001 -68.5s-4.33398 -40.5 -5.00098 -52.5c-1.33301 -12.667 -3 -25.334 -5 -38.001s-2.66699 -25.667 -2 -39l-21.5 -156c-7 -51.333 -10.5 -103.333 -10.5 -156z" />
|
||||
<glyph glyph-name=".0112" unicode="p"
|
||||
d="M64 148l-3.99805 7.00586v344c0 2.66699 0.166992 7.16699 0.5 13.5s0.833008 13 1.5 20s1.16699 13.667 1.5 20s0.5 10.833 0.5 13.5v12v21v21v13c0 2.66699 0.166992 10.167 0.5 22.5s0.666016 25.666 0.999023 39.999s0.666016 27.666 0.999023 39.999
|
||||
s0.5 20.166 0.5 23.499v43c0 0.666992 0.833008 3.66699 2.5 9s3.16699 9.33301 4.5 12l1.5 1.5c1 1 1.83301 1.5 2.5 1.5s2.5 0.166992 5.5 0.5s5.16699 0.5 6.5 0.5c6 0 11.5 -1.33301 16.5 -4s10.5 -4 16.5 -4c4.66699 0 9.5 1.33301 14.5 4l15.5 8.5
|
||||
c5.33301 3 11.166 5.83301 17.499 8.5s13.166 4 20.499 4c48 0 86.5 -10 115.5 -30s51.333 -45.833 67 -77.5s26 -67.334 31 -107.001s7.5 -79.5 7.5 -119.5c0 -38 -1.66699 -73.833 -5 -107.5s-11.166 -63.167 -23.499 -88.5s-31.166 -45.333 -56.499 -60s-60 -22 -104 -22
|
||||
c-10 0 -19.833 1.16699 -29.5 3.5s-19.5 3.5 -29.5 3.5h-2c0 -2.66699 -0.166992 -7.33398 -0.5 -14.001s-0.833008 -13.667 -1.5 -21s-1.16699 -14.333 -1.5 -21s-0.5 -11.334 -0.5 -14.001v-2c0 -17.333 1.33301 -34.666 4 -51.999s4 -34.666 4 -51.999
|
||||
c0 -6.66699 0.166992 -15.834 0.5 -27.501s-0.333984 -23.334 -2.00098 -35.001s-5.16699 -21.667 -10.5 -30s-13.666 -12.5 -24.999 -12.5c-4.66699 0 -10.667 1 -18 3s-14.5 5 -21.5 9s-13 8.5 -18 13.5s-7.5 10.5 -7.5 16.5v148zM155.002 381.006l0.000976562 -12.9951
|
||||
v-16c0 -5.33301 0.333008 -10.5 1 -15.5s1.5 -9.33301 2.5 -13s2.16699 -5.83398 3.5 -6.50098c2 -0.666992 7.33301 -1 16 -1h16c14.667 0 27.834 1 39.501 3s22 5.5 31 10.5s17.167 12.167 24.5 21.5s14.333 21.333 21 36c0.666992 3.33301 1.66699 9.16602 3 17.499
|
||||
s2.5 17.166 3.5 26.499s1.83301 18.166 2.5 26.499s1 14.166 1 17.499v8c0 4.66699 0.166992 10.167 0.5 16.5s0.5 12.833 0.5 19.5v16v15c0 6.66699 -0.166992 13.167 -0.5 19.5s-0.5 11.833 -0.5 16.5v8c-0.666992 16.667 -2 34.5 -4 53.5s-6 36.5 -12 52.5
|
||||
s-15.167 29.333 -27.5 40s-29.5 16 -51.5 16c-4.66699 0 -10.5 -1.66699 -17.5 -5s-13.833 -7.5 -20.5 -12.5s-12.334 -10 -17.001 -15s-7.33398 -9.5 -8.00098 -13.5c0.666992 -30 0.666992 -58.333 0 -85s-1.5 -53.167 -2.5 -79.5l-3 -79.5c-1 -26.667 -1.5 -55 -1.5 -85z
|
||||
" />
|
||||
<glyph glyph-name=".0113" unicode="q"
|
||||
d="M290 6h-2.00293l-32 -12.5c-9.33301 -3.66699 -20.666 -5.5 -33.999 -5.5c-24 0 -44.667 5.16699 -62 15.5s-32 24 -44 41s-21.667 36.833 -29 59.5s-13 46.167 -17 70.5s-6.66699 48.833 -8 73.5s-2 48 -2 70v68v59c0 0.666992 0.166992 3 0.5 7
|
||||
s0.833008 8.16699 1.5 12.5s1.16699 8.33301 1.5 12s0.5 5.83398 0.5 6.50098c0 1.33301 -0.166992 3.83301 -0.5 7.5s-0.166016 6.16699 0.500977 7.5c0 4 0.333008 10 1 18s1.5 16.167 2.5 24.5s1.83301 15.833 2.5 22.5s1 10.667 1 12s0.5 5 1.5 11
|
||||
s2.16699 12.333 3.5 19s2.5 13 3.5 19s1.5 9.66699 1.5 11c0 0.666992 0.166992 3.16699 0.5 7.5s0.833008 8.83301 1.5 13.5s1.16699 9 1.5 13s0.5 6.66699 0.5 8c0 4 1.33301 13.667 4 29s6.5 31.5 11.5 48.5s11 32.333 18 46s15.167 20.5 24.5 20.5h1
|
||||
c0.666992 0 1.33398 -0.666992 2.00098 -2s1.33398 -2 2.00098 -2s2.33398 0.666992 5.00098 2s4.33398 2 5.00098 2h43c2.66699 3.33301 7.5 4.83301 14.5 4.5s11.5 -0.5 13.5 -0.5h7c4 0 6.33301 -0.333008 7 -1l7 -7c0 0.666992 0.5 1.33398 1.5 2.00098
|
||||
s1.5 1.33398 1.5 2.00098h2c1.33301 0 4.16602 -1.16699 8.49902 -3.5s9 -5.16602 14 -8.49902l14.5 -9.5l10 -6.5c15.333 -10 27.833 -20.833 37.5 -32.5s17.834 -24 24.501 -37s12.167 -26.833 16.5 -41.5l13.5 -47l21.5 -83.5c7 -26.333 10.5 -54.5 10.5 -84.5
|
||||
c0 -44 -2 -87.333 -6 -130s-9.33301 -85.334 -16 -128.001c-2.66699 -2.66699 -4 -6 -4 -10c0 -5.33301 0.333008 -9 1 -11c-1.33301 -3.33301 -3.5 -9.16602 -6.5 -17.499l-9.5 -26.5l-9.5 -26.5c-3 -8.33301 -5.16699 -14.166 -6.5 -17.499
|
||||
c-0.666992 -1.33301 -2.33398 -5.33301 -5.00098 -12s-4.33398 -10.667 -5.00098 -12c5.33301 -20.667 12.666 -40.834 21.999 -60.501l27 -58.5c4 -9.33301 9.16699 -18.333 15.5 -27s9.5 -18.334 9.5 -29.001c0 -12.667 -4 -22.834 -12 -30.501s-18.333 -11.5 -31 -11.5
|
||||
c-14 0 -26.333 7.66699 -37 23s-20 32.166 -28 50.499s-14.833 35.166 -20.5 50.499s-10.5 23 -14.5 23zM164.997 164c2.66699 -6 4.83398 -14.001 6.50098 -24.001s3.83398 -19.667 6.50098 -29s6.66699 -17.5 12 -24.5s13 -10.5 23 -10.5
|
||||
c4.66699 0 11.334 1.66699 20.001 5s13 8 13 14v2l-35 70v3c0 8 2 17.167 6 27.5s10.667 15.5 20 15.5c0.666992 0 2.5 -0.166992 5.5 -0.5l9 -1c3 -0.333008 5.83301 -0.833008 8.5 -1.5l4 -1c0.666992 0 3 -1.83301 7 -5.5l12.5 -12l12 -12l5.5 -5.5h1
|
||||
c2.66699 1.33301 5.33398 6 8.00098 14s5 16.667 7 26s3.66699 18 5 26s2 13 2 15c0 2.66699 0.166992 6.33398 0.5 11.001l1 13.5c0.333008 4.33301 0.666016 8.33301 0.999023 12l0.5 5.5c0 0.666992 0.333008 3 1 7s1.5 8.16699 2.5 12.5s1.83301 8.33301 2.5 12
|
||||
s1 6.16699 1 7.5c0 2 0.166992 7 0.5 15s0.833008 16.833 1.5 26.5s1.16699 19.167 1.5 28.5s0.5 16.333 0.5 21v51c0 16 -1.33301 36.167 -4 60.5s-6.83398 49 -12.501 74s-13.167 48.167 -22.5 69.5s-21 37 -35 47c-1.33301 0.666992 -4.83301 1.66699 -10.5 3
|
||||
s-11.834 2.5 -18.501 3.5s-13 2 -19 3s-10 1.5 -12 1.5s-3 -1 -3 -3c-10 -26 -17.833 -55 -23.5 -87s-9.83398 -60.667 -12.501 -86v-3c-2.66699 -32 -5.66699 -63.667 -9 -95s-5 -63 -5 -95c0 -34.667 2 -69.167 6 -103.5s6.66699 -68.833 8 -103.5zM238.997 820.999
|
||||
c-1.33301 0 -2 -1.33301 -2 -4c0 -2 0.666992 -3 2 -3c2 0 3 1 3 3c0 2.66699 -1 4 -3 4z" />
|
||||
<glyph glyph-name=".0114" unicode="r"
|
||||
d="M100 20l-0.0107422 9.99512c0 3.33301 -0.333008 9.5 -1 18.5s-1.16699 18.667 -1.5 29s-0.833008 20 -1.5 29s-1 15.167 -1 18.5c-0.666992 10 -0.666992 17.167 0 21.5s-0.333008 11.166 -3 20.499l-21 298v7c0 4 -0.333008 14.167 -1 30.5s-1.5 33.833 -2.5 52.5
|
||||
s-1.83301 36 -2.5 52s-1 26 -1 30c-0.666992 8.66699 -0.666992 19.667 0 33s-0.666016 24.666 -3.99902 33.999v91c0 0.666992 1.83301 3.33398 5.5 8.00098s6.5 8 8.5 10l14 14c5.33301 5.33301 11 10.333 17 15s12.333 8.66699 19 12s13.334 5 20.001 5
|
||||
c11.333 0 19.833 -0.5 25.5 -1.5s10.334 -2.66699 14.001 -5s7.33398 -5 11.001 -8s9.16699 -6.5 16.5 -10.5h3c10 -2.66699 19.333 -8 28 -16s16 -15.667 22 -23c16 -20.667 28.5 -43.667 37.5 -69s15.667 -51.666 20 -78.999s7 -54.833 8 -82.5s1.5 -54.167 1.5 -79.5
|
||||
c0 -8 -0.166992 -16 -0.5 -24s-1.5 -16 -3.5 -24c-3.33301 -9.33301 -8.16602 -19.5 -14.499 -30.5s-13.166 -19.5 -20.499 -25.5c-6 -3.33301 -10.5 -6.5 -13.5 -9.5l-4.5 -4.5v-2v-1l37.5 -39c13 -13.333 25.167 -27.333 36.5 -42c13.333 -17.333 25 -38.666 35 -63.999
|
||||
s18.5 -52 25.5 -80s12.167 -55.667 15.5 -83s5 -51.666 5 -72.999c0 -14 -4.83301 -23.5 -14.5 -28.5s-20.167 -7.5 -31.5 -7.5c-6.66699 0 -13.667 2 -21 6s-13.666 9 -18.999 15s-9.66602 12.667 -12.999 20s-4.33301 14.333 -3 21l-28 179
|
||||
c-1.33301 8.66699 -5.16602 19.334 -11.499 32.001s-14.166 25 -23.499 37s-19.333 22.5 -30 31.5s-20.667 14.167 -30 15.5c-2.66699 0.666992 -8 0.5 -16 -0.5s-13.333 -1.5 -16 -1.5v-16l21 -200c1.33301 -7.33301 4.83301 -14.166 10.5 -20.499
|
||||
s9.16699 -15.833 10.5 -28.5v-2v-1c-3.33301 -13.333 -4.66602 -26.333 -3.99902 -39s0.166992 -24.167 -1.5 -34.5s-6 -18.666 -13 -24.999s-19.833 -9.5 -38.5 -9.5c-4 0 -9.16699 0.5 -15.5 1.5s-12.333 2.83301 -18 5.5s-10.667 6 -15 10s-6.5 9 -6.5 15z
|
||||
M164.989 408.995c2 -2.66699 4.33496 -4 7.00195 -4c5.33301 0 11.833 2.83301 19.5 8.5s15 12.5 22 20.5s13 16.5 18 25.5s7.5 16.833 7.5 23.5v11c0 7.33301 -0.333008 15.833 -1 25.5s-1 16.167 -1 19.5v11c0 2 -0.333008 8.16699 -1 18.5s-1.5 21.833 -2.5 34.5l-3 37.5
|
||||
c-1 12.333 -1.83301 21.833 -2.5 28.5c-0.666992 6 -1.83398 14.167 -3.50098 24.5s-4.16699 20.5 -7.5 30.5s-8 18.667 -14 26s-13.667 11 -23 11c-6.66699 0 -12.834 -4.5 -18.501 -13.5s-9.16699 -16.5 -10.5 -22.5v-40c0 -46 0.833008 -92 2.5 -138s5.5 -92 11.5 -138z
|
||||
" />
|
||||
<glyph glyph-name=".0115" unicode="s"
|
||||
d="M119 -12c0 11.333 4.99707 18.6611 14.9971 21.9941s20 5 30 5h1c0.666992 0 1.33398 -0.5 2.00098 -1.5s1.33398 -1.5 2.00098 -1.5c0.666992 -0.666992 4 -1.33398 10 -2.00098s10.667 -1.33398 14 -2.00098h2c10 0 18.833 4 26.5 12s14.167 17.5 19.5 28.5
|
||||
s9.33301 22.167 12 33.5s4 20 4 26c0 22 -3 45.333 -9 70s-13.833 49.167 -23.5 73.5s-20.5 47.833 -32.5 70.5s-24.333 43.334 -37 62.001l-31.5 46c-11 16 -21.333 32.333 -31 49s-17.5 33.834 -23.5 51.501s-9 35.834 -9 54.501c0 14.667 2.16699 31.667 6.5 51
|
||||
s10.333 38.666 18 57.999s16.834 37.333 27.501 54s22.667 30 36 40c6 4 13.167 7.33301 21.5 10s17.166 4.83398 26.499 6.50098s18.5 2.83398 27.5 3.50098s16.5 1 22.5 1l14 -7c16 -6 30 -16.833 42 -32.5s18 -32.834 18 -51.501c0 -7.33301 -1.5 -15.166 -4.5 -23.499
|
||||
s-9.16699 -12.5 -18.5 -12.5c-11.333 0 -20.666 2.83301 -27.999 8.5s-13.333 11.667 -18 18s-8.5 12.333 -11.5 18s-6.16699 8.5 -9.5 8.5c-14 0 -26.667 -6.66699 -38 -20s-21 -29 -29 -47s-14.333 -35.833 -19 -53.5s-7 -30.5 -7 -38.5c0 -12.667 4.5 -28 13.5 -46
|
||||
s19.667 -36.333 32 -55s24.5 -36.167 36.5 -52.5s21 -29.166 27 -38.499c12.667 -20 25 -41.5 37 -64.5s22.5 -46.667 31.5 -71s16.333 -49 22 -74s8.5 -49.833 8.5 -74.5c0 -20 -2.83301 -39.167 -8.5 -57.5s-14 -34.666 -25 -48.999s-24.667 -25.833 -41 -34.5
|
||||
s-34.833 -13 -55.5 -13c-8 0 -17.5 0.166992 -28.5 0.5s-21.5 1.83301 -31.5 4.5s-18.5 6.83398 -25.5 12.501s-10.5 13.834 -10.5 24.501zM133.997 -30.0049c-2 0 -3 -1.33301 -3 -4c0 -2 1 -3 3 -3c1.33301 0 2 1 2 3c0 2.66699 -0.666992 4 -2 4zM140.997 -27.0049v-7h3
|
||||
v7h-3z" />
|
||||
<glyph glyph-name=".0116" unicode="t"
|
||||
d="M236 -19l0.00683594 27.0049v28c0 3.33301 0.166992 11.166 0.5 23.499s0.666016 25.666 0.999023 39.999s0.666016 27.666 0.999023 39.999s0.5 20.166 0.5 23.499c0.666992 15.333 0.666992 30 0 44s0.666016 28.667 3.99902 44v397c0 2 0.333008 5.66699 1 11
|
||||
s1.5 11 2.5 17s1.83301 11.833 2.5 17.5s1 9.5 1 11.5v5v5c-0.666992 3.33301 -1.33398 7.66602 -2.00098 12.999s-1.33398 8 -2.00098 8l-7 4l-11 0.5c-7.33301 0.333008 -16 0.666016 -26 0.999023l-31.5 1c-11 0.333008 -19.833 0.5 -26.5 0.5
|
||||
c-7.33301 0 -15.666 0.5 -24.999 1.5s-18.5 3.16699 -27.5 6.5s-16.5 8 -22.5 14s-9 14 -9 24c0 14 6 24.167 18 30.5s26 10.5 42 12.5s32.167 2.5 48.5 1.5s28.833 -1.5 37.5 -1.5c3.33301 0 8.33301 -0.166992 15 -0.5s10.334 -0.5 11.001 -0.5
|
||||
c2 0 6.66699 -0.333008 14 -1s15.166 -1.5 23.499 -2.5s16 -1.83301 23 -2.5s11.5 -1 13.5 -1c7.33301 -0.666992 17.333 -0.833984 30 -0.500977s25.667 0.5 39 0.5s26 -0.666992 38 -2s21 -4 27 -8c9.33301 -7.33301 15.166 -14.666 17.499 -21.999s6.83301 -13 13.5 -17
|
||||
c0.666992 -0.666992 1 -3 1 -7v-7c0 -8 -0.833008 -14 -2.5 -18s-5.83398 -8.66699 -12.501 -14h-28c-14 0 -28 0.666992 -42 2s-28 2 -42 2h-4c-2.66699 -17.333 -4.5 -34.833 -5.5 -52.5s-1.5 -35.5 -1.5 -53.5v-105v-18v-21c0 -7.33301 0.333008 -14.666 1 -21.999
|
||||
s1.66699 -14 3 -20v-369c0 -2.66699 -0.166992 -7 -0.5 -13s-0.833008 -12.333 -1.5 -19s-1.16699 -13 -1.5 -19s-0.5 -10.333 -0.5 -13v-23c0 -11.333 -2.16699 -21.833 -6.5 -31.5s-13.833 -14.5 -28.5 -14.5c-6 0 -12.5 1 -19.5 3s-13.5 4.83301 -19.5 8.5
|
||||
s-11.333 8 -16 13s-7.33398 10.833 -8.00098 17.5z" />
|
||||
<glyph glyph-name=".0117" unicode="u"
|
||||
d="M60 794c0 10.667 4.16895 20.9971 12.502 30.9971s18.166 15 29.499 15c6 0 11.5 -2.16699 16.5 -6.5s9.5 -9.5 13.5 -15.5s7.33301 -12.167 10 -18.5s4.66699 -11.5 6 -15.5l10 -151c3.33301 -50.667 5.66602 -101 6.99902 -151v-24v-40v-40v-23l3.5 -46
|
||||
c1.66699 -22 3.33398 -45.333 5.00098 -70s3.33398 -47.834 5.00098 -69.501s3.16699 -36.834 4.5 -45.501c0 -2 0.5 -5.83301 1.5 -11.5s2.16699 -11.5 3.5 -17.5s2.5 -11.667 3.5 -17s1.5 -9 1.5 -11c2.66699 -11.333 6.16699 -21.833 10.5 -31.5
|
||||
s13.166 -14.5 26.499 -14.5c8.66699 0 16.667 2.66699 24 8s13.5 12 18.5 20s9.16699 16.5 12.5 25.5s5.66602 17.167 6.99902 24.5c0 2 0.333008 5.83301 1 11.5s1.5 11.834 2.5 18.501s1.83301 12.834 2.5 18.501s1 9.5 1 11.5v117c0 68.667 -3 135.834 -9 201.501
|
||||
s-9 132.5 -9 200.5v84c3.33301 8.66699 8 16.167 14 22.5s13.667 9.5 23 9.5c14 0 25.667 -5.5 35 -16.5s15.666 -23.167 18.999 -36.5c-1.33301 -35.333 -0.833008 -70.666 1.5 -105.999s5 -70.5 8 -105.5s5.83301 -70 8.5 -105s4 -70.167 4 -105.5v-6
|
||||
c0 -2 -0.333008 -3 -1 -3c0 -2 -0.166992 -6.66699 -0.5 -14s-0.666016 -15.166 -0.999023 -23.499s-0.666016 -16 -0.999023 -23s-0.5 -11.5 -0.5 -13.5v-4l-2.5 -33.5c-1 -13.667 -1.83301 -27.167 -2.5 -40.5s-1.16699 -25.166 -1.5 -35.499s-0.5 -15.833 -0.5 -16.5
|
||||
c-2.66699 -32 -11.334 -60.333 -26.001 -85s-34 -47.334 -58 -68.001c-9.33301 -4 -19 -6.83301 -29 -8.5s-20 -2.5 -30 -2.5s-20.5 1.33301 -31.5 4s-21.833 6.5 -32.5 11.5s-20.667 10.833 -30 17.5s-17 14 -23 22c-8 11.333 -14.333 25 -19 41
|
||||
s-8.33398 32.5 -11.001 49.5s-4.5 33.833 -5.5 50.5s-1.83301 31.667 -2.5 45c-5.33301 70 -8.66602 139 -9.99902 207l-4 207c-1.33301 34 -3.5 67.167 -6.5 99.5s-4.5 64.833 -4.5 97.5z" />
|
||||
<glyph glyph-name=".0118" unicode="v"
|
||||
d="M201 244c-11.333 38 -21.8359 76.668 -31.5029 116.001s-20.5 78 -32.5 116l-5.5 17l-10 30l-10 30c-3 9.33301 -4.83301 15.333 -5.5 18c-0.666992 2 -2 7.16699 -4 15.5l-6.5 26.5l-6.5 26.5c-2 8.33301 -3.33301 13.5 -4 15.5l-16.5 51.5
|
||||
c-5.66699 17 -8.5 34.5 -8.5 52.5c0 12 4.66699 21.333 14 28s19 10 29 10c14 0 25 -4.5 33 -13.5s14.167 -20 18.5 -33s7.83301 -26.333 10.5 -40s5.33398 -25.167 8.00098 -34.5c0 -0.666992 0.5 -2.33398 1.5 -5.00098s1.5 -4.33398 1.5 -5.00098l15.5 -58
|
||||
c5 -19.333 10.5 -38.666 16.5 -57.999c0 -0.666992 0.5 -1.83398 1.5 -3.50098s1.5 -2.83398 1.5 -3.50098l60 -208c1.33301 -10.667 3.33301 -22.167 6 -34.5s5.83398 -25 9.50098 -38s7.5 -25.667 11.5 -38s8 -23.5 12 -33.5c3.33301 2 6 5.33301 8 10
|
||||
s3.83301 9.83398 5.5 15.501s3 11.167 4 16.5s2.16699 10 3.5 14l105 482c0.666992 1.33301 2 5 4 11l6.5 20.5c2.33301 7.66699 4.5 15.167 6.5 22.5s3.66699 13 5 17c1.33301 5.33301 4 10.333 8 15s9.33301 7.66699 16 9c8 1.33301 15.833 0.166016 23.5 -3.50098
|
||||
s14.5 -8.66699 20.5 -15s10.833 -13.5 14.5 -21.5s5.5 -15.667 5.5 -23s-1 -13.5 -3 -18.5l-8 -20.5l-39 -179c0 -1.33301 -0.5 -3.16602 -1.5 -5.49902s-1.5 -4.16602 -1.5 -5.49902l-3.5 -14.5l-5.5 -22.5l-5.5 -22.5l-3.5 -14.5
|
||||
c1.33301 -8 -0.333984 -18.167 -5.00098 -30.5s-7.66699 -23.166 -9 -32.499c-5.33301 -32 -11.166 -62.333 -17.499 -91s-13.5 -57 -21.5 -85s-16.667 -56 -26 -84l-30 -88c-1.33301 -21.333 -5.16602 -35.333 -11.499 -42s-20.833 -10 -43.5 -10
|
||||
c-14 0 -25.833 5.83301 -35.5 17.5s-17.5 25.5 -23.5 41.5s-10.833 32 -14.5 48s-6.5 28 -8.5 36c-5.33301 17.333 -11 34.666 -17 51.999s-9.66699 35.333 -11 54z" />
|
||||
<glyph glyph-name=".0119" unicode="w"
|
||||
d="M257 106l-4.00195 7.00195l-4.5 13.5l-10.5 32.5l-12.5 38.5l-10.5 31.5c-1.33301 4.66699 -2.16602 8.5 -2.49902 11.5s-1.83301 6.16699 -4.5 9.5l-127 408c-5.33301 11.333 -10.166 23.666 -14.499 36.999s-6.5 26.666 -6.5 39.999c0 12 3.83301 22.167 11.5 30.5
|
||||
s17.5 12.5 29.5 12.5c4.66699 0 8.33398 -0.5 11.001 -1.5s6.33398 -3.16699 11.001 -6.5l4.5 -4.5c2.33301 -2.33301 4.83301 -4.66602 7.5 -6.99902s5.16699 -4.66602 7.5 -6.99902l5.5 -5.5c4.66699 -5.33301 6.5 -11.333 5.5 -18s0.5 -12.667 4.5 -18l67 -228
|
||||
c4.66699 -8 8.33398 -16.5 11.001 -25.5s5 -18.167 7 -27.5l70 -211l7 -14c3.33301 4.66699 6.5 11.834 9.5 21.501s5.5 20 7.5 31s3.66699 21.667 5 32s2.33301 18.5 3 24.5c0 1.33301 0.166992 4.83301 0.5 10.5s0.666016 11.667 0.999023 18
|
||||
s0.666016 12.166 0.999023 17.499s0.5 8.66602 0.5 9.99902c1.33301 9.33301 4.33301 17.666 9 24.999s12 11 22 11c16.667 0 29.167 -4.16699 37.5 -12.5s16.166 -19.5 23.499 -33.5l4 -8l7 -13.5l7.5 -14.5c2.33301 -4.66699 4.16602 -8 5.49902 -10
|
||||
c4.66699 -8.66699 9.66699 -20.167 15 -34.5l17 -44c6 -15 12.167 -29 18.5 -42s13.166 -22.167 20.499 -27.5l3 4l1.5 4c1 2.66699 2 5.83398 3 9.50098s2.16699 7.5 3.5 11.5s2.33301 7.33301 3 10c2 8.66699 3.16699 17.5 3.5 26.5s1.5 17.833 3.5 26.5l60 467
|
||||
c0 2 1.5 4.5 4.5 7.5s6.33301 5.66699 10 8l10.5 6.5c3.33301 2 5.66602 3 6.99902 3c4.66699 0 8.66699 -0.833008 12 -2.5s7.33301 -1.83398 12 -0.500977c8.66699 -7.33301 16.167 -15.833 22.5 -25.5s9.5 -20.167 9.5 -31.5v-4c0 -1.33301 -0.333008 -2.33301 -1 -3
|
||||
c0 -1.33301 -1.16699 -6.5 -3.5 -15.5s-3.5 -14.167 -3.5 -15.5l-7 -45l-10.5 -68l-10.5 -68l-7 -44c1.33301 -10 0.166016 -20 -3.50098 -30s-4.83398 -20 -3.50098 -30l-21 -190c0 -1.33301 -0.5 -4.33301 -1.5 -9s-1.5 -7.66699 -1.5 -9v-3l-28 -134l-8 -14
|
||||
c-0.666992 0 -3.16699 -0.5 -7.5 -1.5s-9.66602 -2.16699 -15.999 -3.5s-11.166 -2 -14.499 -2c-7.33301 -0.666992 -13.833 0.666016 -19.5 3.99902s-10.834 7.5 -15.501 12.5s-8.66699 10.5 -12 16.5l-9 16l-8.5 13l-14 22l-13.5 22.5c-4 7 -6.33301 11.5 -7 13.5
|
||||
l-7.5 14.5l-11.5 22l-11.5 22c-3.66699 7 -6.16699 12.167 -7.5 15.5l-4 -4c-5.33301 -32.667 -11.666 -65.667 -18.999 -99s-12.666 -67 -15.999 -101c-5.33301 -6 -10.166 -10.5 -14.499 -13.5s-10.166 -4.5 -17.499 -4.5c-11.333 0 -23.833 3.33301 -37.5 10
|
||||
s-22.167 16.334 -25.5 29.001z" />
|
||||
<glyph glyph-name=".0120" unicode="x"
|
||||
d="M63 -10c0 11.333 1.83105 21.999 5.49805 31.999s6.83398 20.667 9.50098 32l5 30.5l8.5 52.5l8.5 52c2.66699 16 4.66699 26 6 30c0.666992 2.66699 2.33398 8.5 5.00098 17.5l9 29l9 29c2.66699 9 4.33398 14.5 5.00098 16.5c4 14 9 28.333 15 43s9 29.667 9 45v3
|
||||
l-98 348v8c0 2 0.833008 5.66699 2.5 11s3.66699 10.666 6 15.999s5 10.166 8 14.499s5.83301 6.5 8.5 6.5c4 0 10.5 -1 19.5 -3s15.167 -4.66699 18.5 -8c10 -9.33301 18 -21.166 24 -35.499s11.167 -29.333 15.5 -45s8 -31.167 11 -46.5s6.16699 -29 9.5 -41
|
||||
c0 -1.33301 0.5 -3.5 1.5 -6.5l3.5 -10l3.5 -10c1 -3 1.5 -4.83301 1.5 -5.5c0.666992 -1.33301 1.5 -3.83301 2.5 -7.5s2.16699 -7.66699 3.5 -12s2.5 -8.5 3.5 -12.5s1.5 -6.33301 1.5 -7l7 -21h3c0.666992 0 2.33398 2.66699 5.00098 8s4.66699 9.66602 6 12.999
|
||||
c4.66699 13.333 10.5 28.5 17.5 45.5s11.833 32.5 14.5 46.5c0 1.33301 0.5 5.83301 1.5 13.5s1.5 12.5 1.5 14.5c0 0.666992 0.666992 3.33398 2 8.00098s2.66602 9.83398 3.99902 15.501s2.83301 11.167 4.5 16.5s2.83398 9.33301 3.50098 12
|
||||
c1.33301 4.66699 3.16602 11.5 5.49902 20.5s5.33301 18 9 27s8 16.833 13 23.5s11.167 10 18.5 10c6 0 12 -2.83301 18 -8.5s11.667 -12.334 17 -20.001s9.66602 -15.5 12.999 -23.5s5 -14.333 5 -19c0 -3.33301 -1.16699 -9.16602 -3.5 -17.499s-5 -17.333 -8 -27
|
||||
s-6.16699 -18.834 -9.5 -27.501s-6 -14.667 -8 -18l-45 -155c-10 -15.333 -17.667 -32.5 -23 -51.5s-11.666 -36.833 -18.999 -53.5v-14l52 -246l46 -125v-10c0 -12 -4 -21.667 -12 -29s-17.667 -11 -29 -11c-9.33301 0 -17.333 2.33301 -24 7s-12.5 10.5 -17.5 17.5
|
||||
s-9.33301 14.667 -13 23s-6.83398 15.833 -9.50098 22.5c-1.33301 4 -3.33301 9.66699 -6 17s-5.5 14.666 -8.5 21.999s-5.5 14 -7.5 20s-3 9.66699 -3 11c-1.33301 3.33301 -3 9.33301 -5 18s-4 17.834 -6 27.501s-4 18.834 -6 27.501s-3.33301 14.667 -4 18l-2 1
|
||||
c-2 0 -3.83301 -2.16699 -5.5 -6.5s-3 -9.33301 -4 -15s-1.83301 -11.167 -2.5 -16.5s-0.666992 -9.33301 0 -12l-35 -178l-14 -14h-35c-4 4.66699 -8.33301 8.33398 -13 11.001l-14 8c-4.66699 2.66699 -8.5 6 -11.5 10s-4.5 10 -4.5 18z" />
|
||||
<glyph glyph-name=".0121" unicode="y"
|
||||
d="M211 -70c0 -2.66699 -1.33301 -4.00195 -4 -4.00195h-1c-4 0 -8 2 -12 6s-6.66699 8 -8 12c-5.33301 34.667 -8.66602 69.667 -9.99902 105s-2 71 -2 107s0.166992 71.833 0.5 107.5s-0.5 71.5 -2.5 107.5c-20 60.667 -40.667 120.167 -62 178.5s-38 119.166 -50 182.499
|
||||
v9v9c0 0.666992 1.16699 2.33398 3.5 5.00098s3.5 4.66699 3.5 6c1.33301 6.66699 2 11 2 13c0 5.33301 1.16699 9.16602 3.5 11.499s9.83301 3.5 22.5 3.5c8 0 14.5 -2.16699 19.5 -6.5s9.33301 -9.5 13 -15.5s6.5 -12.5 8.5 -19.5s3.66699 -13.167 5 -18.5
|
||||
c0.666992 -4 2.33398 -10.667 5.00098 -20l8.5 -29l8.5 -28c2.66699 -8.66699 4.66699 -14.667 6 -18l5.5 -16l10 -28l10 -28l5.5 -16c2.66699 -6.66699 4.5 -12.834 5.5 -18.501s3.83301 -11.167 8.5 -16.5h2h2l88 228l4 8l6 12.5l6 13c2 4.33301 3.66699 7.5 5 9.5
|
||||
c0.666992 0.666992 1.66699 1.83398 3 3.50098s2.66602 2.83398 3.99902 3.50098h14c13.333 0 24.333 -6.16699 33 -18.5s13 -25.166 13 -38.499v-4c0 -1.33301 -0.333008 -2.33301 -1 -3l-69 -180.5c-22.667 -60.333 -39.334 -122.833 -50.001 -187.5
|
||||
c0 -2.66699 -0.333008 -8.66699 -1 -18s-1.5 -19.5 -2.5 -30.5s-1.83301 -21.833 -2.5 -32.5s-1 -18.667 -1 -24v-103v-94c0 -4.66699 0.5 -12.5 1.5 -23.5l3 -34.5c1 -12 2.16699 -23.5 3.5 -34.5s2.33301 -18.5 3 -22.5c0.666992 -7.33301 -0.833008 -14 -4.5 -20
|
||||
s-8.16699 -11 -13.5 -15c-4 0.666992 -8.5 1.33398 -13.5 2.00098s-10 2 -15 4s-9.33301 4.5 -13 7.5s-6.16699 6.83301 -7.5 11.5z" />
|
||||
<glyph glyph-name=".0122" unicode="z"
|
||||
d="M60 -30c-1.33301 7.33301 0.670898 15.333 6.00391 24s9.33301 15.667 12 21c0.666992 2 2 5.16699 4 9.5l6 13c2 4.33301 3.66699 8.33301 5 12s2 6.16699 2 7.5l148 422c6.66699 11.333 12.667 23.166 18 35.499s9.66602 24.833 12.999 37.5l64 141
|
||||
c0 0.666992 0.5 2.33398 1.5 5.00098s1.5 4.33398 1.5 5.00098v3h-10c-4.66699 0 -9.66699 0.166992 -15 0.5s-10.333 0.5 -15 0.5h-9c-2 0 -5.83301 -0.166992 -11.5 -0.5s-11.834 -0.833008 -18.501 -1.5s-12.834 -1.16699 -18.501 -1.5s-9.5 -0.5 -11.5 -0.5
|
||||
c-0.666992 0.666992 -2.33398 1.5 -5.00098 2.5s-4.33398 1.5 -5.00098 1.5h-2h-2c-0.666992 0 -1.83398 -0.5 -3.50098 -1.5s-2.83398 -1.83301 -3.50098 -2.5h-39c-4 4.66699 -8 8.83398 -12 12.501s-7.83301 7.5 -11.5 11.5s-6.5 8.5 -8.5 13.5s-3 11.167 -3 18.5
|
||||
c0 16 5 25.167 15 27.5s21.333 3.83301 34 4.5c34 1.33301 67.167 3 99.5 5s64.833 3 97.5 3c20 0 36.833 -4.83301 50.5 -14.5s20.5 -25.5 20.5 -47.5v-7c0 -3.33301 -0.333008 -5 -1 -5l-24 -67l-18 -38.5l-27.5 -58l-27.5 -58l-18 -38.5
|
||||
c-0.666992 -1.33301 -2 -4.83301 -4 -10.5s-4.33301 -11.667 -7 -18s-5 -12.333 -7 -18s-3.33301 -9.16699 -4 -10.5c0 -2.66699 -1 -5 -3 -7l-70 -193c-0.666992 -0.666992 -1.5 -1.83398 -2.5 -3.50098s-1.5 -2.83398 -1.5 -3.50098c0 -1.33301 -0.666992 -5 -2 -11
|
||||
s-2.83301 -12.333 -4.5 -19s-3.16699 -13 -4.5 -19s-2.33301 -9.66699 -3 -11c-3.33301 -12 -7.5 -23.833 -12.5 -35.5s-9.83301 -23.5 -14.5 -35.5s-8.66699 -24.167 -12 -36.5s-5 -24.5 -5 -36.5h36h21h15c12.667 0 25.834 0.5 39.501 1.5s26.334 0.5 38.001 -1.5
|
||||
s21.667 -6.5 30 -13.5s13.5 -18.5 15.5 -34.5c1.33301 -8.66699 -0.666992 -16.667 -6 -24s-12.666 -11 -21.999 -11h-130l-4 1c-2.66699 0.666992 -4.66699 1.66699 -6 3c-8 2.66699 -20 4.5 -36 5.5s-32 2.83301 -48 5.5s-30.333 7 -43 13s-19.667 15.333 -21 28z" />
|
||||
<glyph glyph-name=".null" unicode="" horiz-adv-x="0"
|
||||
/>
|
||||
<glyph glyph-name="nonmarkingreturn" unicode=""
|
||||
/>
|
||||
<glyph glyph-name="sf259" unicode="" horiz-adv-x="373"
|
||||
d="M10 56c0 11.333 2.16309 21.8213 6.49609 31.4883s8.16602 19.834 11.499 30.501c2 6.66699 4.33301 15.5 7 26.5l8 32.5c2.66699 10.667 4.83398 20 6.50098 28l2.5 12v3c2.66699 8.66699 6.66699 23.834 12 45.501l17 69l16.5 69l10.5 45.5
|
||||
c0.666992 4.66699 2.5 16.5 5.5 35.5l9.5 61.5c3.33301 22 6.66602 42.333 9.99902 61s5.66602 30.334 6.99902 35.001c0.666992 4.66699 2 11.667 4 21s4.16699 18.5 6.5 27.5s4.5 17 6.5 24s3.33301 11.167 4 12.5l4 7l5 13.5c3.33301 9 7 19.833 11 32.5l12 38.5l10 31.5
|
||||
c4.66699 12.667 9.33398 21.167 14.001 25.5s13 8.5 25 12.5c1.33301 0 5.33301 1.83301 12 5.5s11 5.5 13 5.5h3c12.667 0 22.834 -2.66699 30.501 -8s13.5 -12.166 17.5 -20.499s6.5 -17.666 7.5 -27.999s1.5 -20.5 1.5 -30.5c0 -15.333 -0.166992 -31.333 -0.5 -48
|
||||
s-1.5 -32.667 -3.5 -48c0 -1.33301 -0.333008 -4.16602 -1 -8.49902s-1.5 -9.16602 -2.5 -14.499s-1.83301 -10.166 -2.5 -14.499s-1 -7.16602 -1 -8.49902v-1c0 -46 1.83301 -91.167 5.5 -135.5s8.83398 -88.833 15.501 -133.5c0.666992 -4.66699 1.66699 -10.5 3 -17.5
|
||||
s2.66602 -13.167 3.99902 -18.5c2 -6.66699 4.83301 -11.834 8.5 -15.501s5.5 -9.5 5.5 -17.5c0 -7.33301 -2.33301 -13 -7 -17s-7 -9.66699 -7 -17v-10l3 -38.5c1.33301 -17 2.5 -34.333 3.5 -52s1.83301 -33.667 2.5 -48s1 -23.166 1 -26.499
|
||||
c0 -1.33301 0.333008 -4.83301 1 -10.5s1.5 -11.667 2.5 -18s1.83301 -12.166 2.5 -17.499s1 -8.66602 1 -9.99902c0.666992 -0.666992 1 -3 1 -7v-7c0 -7.33301 -2.5 -15.666 -7.5 -24.999s-12.167 -14 -21.5 -14c-5.33301 0 -12.166 2.5 -20.499 7.5
|
||||
s-14.166 9.5 -17.499 13.5s-7.66602 9.66699 -12.999 17l-8 11l-21 197l-4 4h-2h-2l-7 -3.5l-7 -3.5c0 -0.666992 -0.5 -1.5 -1.5 -2.5l-1.5 -1.5c-3.33301 -2 -7.5 -4.66699 -12.5 -8s-10 -6.5 -15 -9.5s-9.33301 -5.5 -13 -7.5l-5.5 -3h-24
|
||||
c-1.33301 2 -3.66602 3.66699 -6.99902 5s-5.66602 2 -6.99902 2c-3.33301 0 -6.5 -5.33301 -9.5 -16s-6 -24.167 -9 -40.5l-10 -52.5c-3.66699 -18.667 -8.5 -36.167 -14.5 -52.5s-13 -29.833 -21 -40.5s-18 -16 -30 -16c-4.66699 0 -9.33398 1.5 -14.001 4.5
|
||||
s-9 6.66699 -13 11s-7.16699 9 -9.5 14s-3.5 9.5 -3.5 13.5zM174.996 385.988c-5.33301 -12 -9.16699 -24.834 -11.5 -38.501s-3.5 -26.834 -3.5 -39.501c8 0 16.667 2.5 26 7.5s17.333 9.5 24 13.5c2 0.666992 4.66699 2 8 4l10.5 6.5l10 6.5c3 2 5.16699 3.33301 6.5 4
|
||||
c0.666992 0.666992 1 3.33398 1 8.00098v8c0 23.333 -1.5 46.166 -4.5 68.499s-5.16699 44.833 -6.5 67.5c0 6 -0.333008 17 -1 33s-1.5 33 -2.5 51s-1.83301 35 -2.5 51s-1 27 -1 33c-4 -2.66699 -6.33301 -6 -7 -10c-0.666992 -2 -1.5 -5.16699 -2.5 -9.5
|
||||
s-2.16699 -9 -3.5 -14s-2.5 -9.66699 -3.5 -14s-1.5 -7.16602 -1.5 -8.49902c0 -0.666992 -0.166992 -3 -0.5 -7s-0.833008 -8.66699 -1.5 -14s-1.5 -10.666 -2.5 -15.999s-1.83301 -9.33301 -2.5 -12v-4z" />
|
||||
</font>
|
||||
</defs></svg>
|
||||
|
After Width: | Height: | Size: 150 KiB |
BIN
src/css/fonts/hectic.ttf
Normal file
BIN
src/css/fonts/hectic.woff
Normal file
BIN
src/css/fonts/markerlitterbox.eot
Normal file
BIN
src/css/fonts/markerlitterbox.otf
Normal file
1634
src/css/fonts/markerlitterbox.svg
Normal file
|
After Width: | Height: | Size: 212 KiB |
BIN
src/css/fonts/markerlitterbox.ttf
Normal file
BIN
src/css/fonts/markerlitterbox.woff
Normal file
715
src/css/main.css
Normal file
@ -0,0 +1,715 @@
|
||||
/* ==========================================================================
|
||||
HTML5 Boilerplate styles - h5bp.com (generated via initializr.com)
|
||||
========================================================================== */
|
||||
|
||||
html,
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
color: #3b3b3b;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 1em;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
background: #b9e9e7;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #b9e9e7;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
hr {
|
||||
display: block;
|
||||
height: 1px;
|
||||
border: 0;
|
||||
border-top: 1px solid #ccc;
|
||||
margin: 1em 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
fieldset {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
textarea {
|
||||
resize: vertical;
|
||||
}
|
||||
|
||||
.chromeframe {
|
||||
margin: 0.2em 0;
|
||||
background: #ccc;
|
||||
color: #000;
|
||||
padding: 0.2em 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #3b3b3b;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #b9e9e7;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
/* ===== Initializr Styles ==================================================
|
||||
Author: Jonathan Verrecchia - verekia.com/initializr/responsive-template
|
||||
========================================================================== */
|
||||
|
||||
body {
|
||||
font: 21px/30px Hectic, serif;
|
||||
color: #3b3b3b;
|
||||
background: #a3c5c4; /*url("../img/background-general.jpg");*/
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
}
|
||||
|
||||
/* ===================
|
||||
ALL: Orange Theme
|
||||
=================== */
|
||||
|
||||
.general-container {
|
||||
text-align: center;
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.main-container {
|
||||
width: 1024px;
|
||||
height: 550px;
|
||||
margin: 0 auto;
|
||||
text-align: left;
|
||||
background: #7f7f7f;
|
||||
position: relative;
|
||||
-moz-box-shadow: 2px 2px 50px #282828;
|
||||
-webkit-box-shadow: 2px 2px 50px #282828;
|
||||
box-shadow: 2px 2px 10px #282828;
|
||||
}
|
||||
|
||||
.main-container aside {
|
||||
float: left;
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
.main-container .main {
|
||||
padding-left: 20px;
|
||||
display: table;
|
||||
}
|
||||
|
||||
.main article {
|
||||
top: 0;
|
||||
right: 0;
|
||||
position: absolute;
|
||||
float: right;
|
||||
width: 800px;
|
||||
display: table-cell;
|
||||
margin: 100px 20px 20px 40px;
|
||||
|
||||
}
|
||||
|
||||
.main article section {
|
||||
margin: 0 0px;
|
||||
|
||||
}
|
||||
|
||||
.main article section p {
|
||||
font: 24px/22px MarkerLitterBox, serif;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.title {
|
||||
background: #7f7f7f url('../img/logo.jpg') no-repeat center;
|
||||
overflow: hidden;
|
||||
height: 166px;
|
||||
width: 160px;
|
||||
text-indent: -9000px;
|
||||
margin: 0 0 10px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.title a {
|
||||
height: 166px;
|
||||
width: 160px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.footer-container {
|
||||
top: 0;
|
||||
right: 0;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.footer-container footer p {
|
||||
font: 18px/24px Hectic, serif;
|
||||
margin-right: 80px;
|
||||
text-indent: -70px;
|
||||
}
|
||||
|
||||
.footer-container footer a {
|
||||
font: 30px/24px MarkerLitterBox, serif;
|
||||
}
|
||||
|
||||
.footer-container footer a:hover {
|
||||
color: #ed0808;
|
||||
}
|
||||
|
||||
.footer-container footer span {
|
||||
font: 36px/24px MarkerLitterBox, serif;
|
||||
}
|
||||
|
||||
/* ==============
|
||||
Menu
|
||||
============== */
|
||||
|
||||
nav ul {
|
||||
margin: 0 0 0 20px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
nav a {
|
||||
font: 22px/28px Hectic, serif;
|
||||
display: block;
|
||||
margin-bottom: 0;
|
||||
padding: 0;
|
||||
text-align: left;
|
||||
text-decoration: none;
|
||||
font-weight: normal;
|
||||
color: white;
|
||||
}
|
||||
|
||||
nav a.current {
|
||||
color: #b9e9e7;
|
||||
}
|
||||
|
||||
/* ==============
|
||||
Links
|
||||
============== */
|
||||
|
||||
.links {
|
||||
display: block;
|
||||
margin-top: 15px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.links .fb-like {
|
||||
margin: 0 auto;
|
||||
background: #7f7f7f;
|
||||
}
|
||||
|
||||
.links .escuela {
|
||||
overflow: hidden;
|
||||
text-indent: -9000px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: inline-block;
|
||||
|
||||
background: url('../img/logo-surfagua.jpg') no-repeat center;
|
||||
height: 95px;
|
||||
width: 160px;
|
||||
text-indent: -9000px;
|
||||
margin: 0 0 10px 0;
|
||||
}
|
||||
|
||||
.links .icon {
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
margin: 5px 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
text-indent: -9000px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.links .icon:nth-of-type(2) {
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
.links .icon:last-of-type {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.links .facebook {
|
||||
background: url('../img/facebook.png') no-repeat center;
|
||||
}
|
||||
|
||||
.links .twitter {
|
||||
background: url('../img/twitter.png') no-repeat center;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.links .flickr {
|
||||
background: url('../img/flickr.png') no-repeat center;
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/* ===============
|
||||
ALL: IE Fixes
|
||||
=============== */
|
||||
|
||||
.ie7 .title {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Estilos por páginas
|
||||
========================================================================== */
|
||||
|
||||
.inicio {
|
||||
background: #585858;
|
||||
}
|
||||
|
||||
.inicio .general-container {
|
||||
padding-top: 90px;
|
||||
}
|
||||
|
||||
.inicio .main-container {
|
||||
background: #585858;
|
||||
text-align: center;
|
||||
-moz-box-shadow: none;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.inicio .main-container a {
|
||||
margin: 0 auto;
|
||||
display: inline-block;
|
||||
width: 500px;
|
||||
height: 345px;
|
||||
/*background: url('../img/entrada.gif'); */
|
||||
}
|
||||
|
||||
.filosofia .main-container {
|
||||
background: #7f7f7f url('../img/background-filosofia.jpg') no-repeat right top;
|
||||
}
|
||||
|
||||
.filosofia .main article section p {
|
||||
font: 24px/30px Hectic, serif;
|
||||
}
|
||||
|
||||
.galeria .main-container {
|
||||
background: #7f7f7f url('../img/background-galeria.jpg') no-repeat right top;
|
||||
}
|
||||
|
||||
.galeria h4 {
|
||||
position: absolute;
|
||||
margin-bottom: 0;
|
||||
top: 65px;
|
||||
left: 190px;
|
||||
}
|
||||
|
||||
.galeria h5 {
|
||||
position: absolute;
|
||||
margin-bottom: 0;
|
||||
bottom: 180px;
|
||||
right: 60px;
|
||||
}
|
||||
|
||||
|
||||
.la-escuela .main-container {
|
||||
background: #7f7f7f url('../img/background-la-escuela.jpg') no-repeat right top;
|
||||
}
|
||||
|
||||
.la-escuela .main article {
|
||||
margin-top: 90px;
|
||||
}
|
||||
|
||||
.la-escuela .main article section h3 {
|
||||
text-indent: 190px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.la-escuela .main article section p:first-of-type {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.la-tienda .main article {
|
||||
margin-top: 110px;
|
||||
}
|
||||
|
||||
.la-tienda .main-container {
|
||||
background: #7f7f7f url('../img/background-la-tienda.jpg') no-repeat right top;
|
||||
}
|
||||
|
||||
.la-tienda .main article section h3 {
|
||||
text-indent: 140px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.la-tienda .main article section p:first-of-type {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.la-tienda .footer-container footer p {
|
||||
|
||||
}
|
||||
|
||||
.links-amigos .main-container {
|
||||
background: #7f7f7f url('../img/background-links.jpg') no-repeat right top;
|
||||
}
|
||||
|
||||
.monitores .main-container {
|
||||
background: #7f7f7f url('../img/background-monitores.jpg') no-repeat right top;
|
||||
}
|
||||
|
||||
.monitores .main article {
|
||||
margin-right: 40px;
|
||||
}
|
||||
|
||||
.monitores .main article section h3 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.monitores .main article section h3:first-of-type {
|
||||
text-indent: 100px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.monitores .main article section p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.tarifas .main-container {
|
||||
background: #7f7f7f url('../img/background-tarifas.jpg') no-repeat right top;
|
||||
}
|
||||
|
||||
.tarifas .main article section strong {
|
||||
color: #ed0808;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.tarifas .main article section h3 {
|
||||
margin-left: 40px;
|
||||
}
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Tabla
|
||||
========================================================================== */
|
||||
|
||||
.lista {
|
||||
margin-left: 60px;
|
||||
font: 20px/22px MarkerLitterBox, serif;
|
||||
*border-collapse: collapse; /* IE7 and lower */
|
||||
border-spacing: 0;
|
||||
-moz-border-radius: 12px;
|
||||
-webkit-border-radius: 12px;
|
||||
border-radius: 12px;
|
||||
-webkit-box-shadow: 0 0px 7px #2b2725;
|
||||
-moz-box-shadow: 0 0px 7px #2b2725;
|
||||
box-shadow: 0 0px 7px #2b2725;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.lista tr:hover {
|
||||
background: #b9e9e7;
|
||||
-o-transition: all 0.1s ease-in-out;
|
||||
-webkit-transition: all 0.1s ease-in-out;
|
||||
-moz-transition: all 0.1s ease-in-out;
|
||||
-ms-transition: all 0.1s ease-in-out;
|
||||
transition: all 0.1s ease-in-out;
|
||||
}
|
||||
|
||||
.lista td, .lista th {
|
||||
border-left: 1px solid #a0a0a0;
|
||||
border-top: 1px solid #a0a0a0;
|
||||
padding: 6px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.lista th {
|
||||
color: #fff;
|
||||
background-color: #2b2725;
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
.lista td:first-child, .lista th:first-child {
|
||||
border-left: none;
|
||||
}
|
||||
|
||||
.lista th:first-child {
|
||||
-moz-border-radius: 12px 0 0 0;
|
||||
-webkit-border-radius: 12px 0 0 0;
|
||||
border-radius: 12px 0 0 0;
|
||||
}
|
||||
|
||||
.lista th:last-child {
|
||||
-moz-border-radius: 0 12px 0 0;
|
||||
-webkit-border-radius: 0 12px 0 0;
|
||||
border-radius: 0 12px 0 0;
|
||||
}
|
||||
|
||||
.lista th:only-child{
|
||||
-moz-border-radius: 12px 12px 0 0;
|
||||
-webkit-border-radius: 12px 12px 0 0;
|
||||
border-radius: 12px 12px 0 0;
|
||||
}
|
||||
|
||||
.lista tr:last-child td:first-child {
|
||||
-moz-border-radius: 0 0 0 12px;
|
||||
-webkit-border-radius: 0 0 0 12px;
|
||||
border-radius: 0 0 0 12px;
|
||||
}
|
||||
|
||||
.lista tr:last-child td:last-child {
|
||||
-moz-border-radius: 0 0 12px 0;
|
||||
-webkit-border-radius: 0 0 12px 0;
|
||||
border-radius: 0 0 12px 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Slideshow
|
||||
========================================================================== */
|
||||
|
||||
.slider-wrapper {
|
||||
background: #fff;
|
||||
|
||||
-webkit-box-shadow: 0px 3px 6px rgba(0,0,0,.5) !important;
|
||||
-moz-box-shadow: 0px 3px 6px rgba(0,0,0,.5) !important;
|
||||
box-shadow: 0px 3px 6px rgba(0,0,0,.5) !important;
|
||||
|
||||
position: absolute;
|
||||
display: table-cell;
|
||||
|
||||
-webkit-transition: -webkit-transform .15s linear;
|
||||
-moz-transition: -moz-transform .15s linear;
|
||||
transition: transform .15s linear;
|
||||
}
|
||||
|
||||
#grande.slider-wrapper {
|
||||
height: 371px;
|
||||
top: 120px;
|
||||
left: 210px;
|
||||
float: left;
|
||||
width: 580px;
|
||||
}
|
||||
|
||||
#pequeno.slider-wrapper {
|
||||
height: 125px;
|
||||
bottom: 50px;
|
||||
right: 50px;
|
||||
float: left;
|
||||
width: 160px;
|
||||
}
|
||||
|
||||
#pequeno.slider-wrapper img {
|
||||
border: 10px solid white;
|
||||
}
|
||||
|
||||
.rotar-izquierda {
|
||||
-webkit-transform: rotate(-3deg);
|
||||
-moz-transform: rotate(-3deg);
|
||||
transform: rotate(-3deg);
|
||||
}
|
||||
|
||||
.rotar-derecha {
|
||||
-webkit-transform: rotate(2deg);
|
||||
-moz-transform: rotate(2deg);
|
||||
transform: rotate(2deg);
|
||||
}
|
||||
|
||||
#grande.theme-default .nivoSlider {
|
||||
|
||||
margin-bottom: 0 !important;
|
||||
border: 10px solid white;
|
||||
}
|
||||
|
||||
#grande .nivoSlider {
|
||||
height: 371px !important;
|
||||
}
|
||||
|
||||
#grande .nivo-main-image {
|
||||
height: 371px !important;
|
||||
width: 580px;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Helper classes
|
||||
========================================================================== */
|
||||
|
||||
.oculto, .hidden {
|
||||
display: none !important;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.ir {
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
overflow: hidden;
|
||||
*text-indent: -9999px;
|
||||
}
|
||||
|
||||
.ir:before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 0;
|
||||
height: 150%;
|
||||
}
|
||||
|
||||
.visuallyhidden {
|
||||
border: 0;
|
||||
clip: rect(0 0 0 0);
|
||||
height: 1px;
|
||||
margin: -1px;
|
||||
overflow: hidden;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.visuallyhidden.focusable:active,
|
||||
.visuallyhidden.focusable:focus {
|
||||
clip: auto;
|
||||
height: auto;
|
||||
margin: 0;
|
||||
overflow: visible;
|
||||
position: static;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.invisible {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.clearfix:before,
|
||||
.clearfix:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
|
||||
.clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.clearfix {
|
||||
*zoom: 1;
|
||||
|
||||
|
||||
/* ==========================================================================
|
||||
Print styles
|
||||
========================================================================== */
|
||||
|
||||
@media print {
|
||||
* {
|
||||
background: transparent !important;
|
||||
color: #000 !important;
|
||||
box-shadow: none !important;
|
||||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
a,
|
||||
a:visited {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a[href]:after {
|
||||
content: " (" attr(href) ")";
|
||||
}
|
||||
|
||||
abbr[title]:after {
|
||||
content: " (" attr(title) ")";
|
||||
}
|
||||
|
||||
.ir a:after,
|
||||
a[href^="javascript:"]:after,
|
||||
a[href^="#"]:after {
|
||||
content: "";
|
||||
}
|
||||
|
||||
pre,
|
||||
blockquote {
|
||||
border: 1px solid #999;
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
thead {
|
||||
display: table-header-group;
|
||||
}
|
||||
|
||||
tr,
|
||||
img {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100% !important;
|
||||
}
|
||||
|
||||
@page {
|
||||
margin: 0.5cm;
|
||||
}
|
||||
|
||||
p,
|
||||
h2,
|
||||
h3 {
|
||||
orphans: 3;
|
||||
widows: 3;
|
||||
}
|
||||
|
||||
h2,
|
||||
h3 {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Other medias
|
||||
========================================================================== */
|
||||
|
||||
|
||||
/* iPad [portrait + landscape] */
|
||||
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
|
||||
.footer-container footer p {
|
||||
font: 18px/24px Hectic, serif;
|
||||
margin-right: 2em;
|
||||
text-indent: -3em;
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.footer-container footer a {
|
||||
font: 26px/24px MarkerLitterBox, serif;
|
||||
}
|
||||
|
||||
.footer-container footer span {
|
||||
font: 36px/24px MarkerLitterBox, serif;
|
||||
}
|
||||
}
|
||||
|
||||
/* iPhone [portrait + landscape] */
|
||||
@media only screen and (max-device-width: 480px) {
|
||||
.footer-container footer p {
|
||||
font: 18px/24px Hectic, serif;
|
||||
margin-right: 2em;
|
||||
text-indent: -3em;
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.footer-container footer a {
|
||||
font: 26px/24px MarkerLitterBox, serif;
|
||||
}
|
||||
|
||||
.footer-container footer span {
|
||||
font: 36px/24px MarkerLitterBox, serif;
|
||||
}
|
||||
}
|
||||
|
||||
527
src/css/normalize.css
vendored
Normal file
@ -0,0 +1,527 @@
|
||||
/*! normalize.css v1.1.0 | MIT License | git.io/normalize */
|
||||
|
||||
/* ==========================================================================
|
||||
HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
video {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
|
||||
* Known issue: no IE 6 support.
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Base
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
|
||||
* `em` units.
|
||||
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
||||
* user zoom.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-size: 100%; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `font-family` inconsistency between `textarea` and other form
|
||||
* elements.
|
||||
*/
|
||||
|
||||
html,
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address margins handled incorrectly in IE 6/7.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address `outline` inconsistency between Chrome and other browsers.
|
||||
*/
|
||||
|
||||
a:focus {
|
||||
outline: thin dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability when focused and also mouse hovered in all browsers.
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Typography
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address font sizes and margins set differently in IE 6/7.
|
||||
* Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
|
||||
* and Chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.5em;
|
||||
margin: 0.83em 0;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.17em;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1em;
|
||||
margin: 1.33em 0;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 0.83em;
|
||||
margin: 1.67em 0;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 0.67em;
|
||||
margin: 2.33em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 7/8/9, Safari 5, and Chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in Safari 5 and Chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address differences between Firefox and other browsers.
|
||||
* Known issue: no IE 6/7 normalization.
|
||||
*/
|
||||
|
||||
hr {
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 6/7/8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address margins set differently in IE 6/7.
|
||||
*/
|
||||
|
||||
p,
|
||||
pre {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, serif;
|
||||
_font-family: 'courier new', monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability of pre-formatted text in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
white-space: pre;
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address CSS quotes not supported in IE 6/7.
|
||||
*/
|
||||
|
||||
q {
|
||||
quotes: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `quotes` property not supported in Safari 4.
|
||||
*/
|
||||
|
||||
q:before,
|
||||
q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Lists
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margins set differently in IE 6/7.
|
||||
*/
|
||||
|
||||
dl,
|
||||
menu,
|
||||
ol,
|
||||
ul {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin: 0 0 0 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address paddings set differently in IE 6/7.
|
||||
*/
|
||||
|
||||
menu,
|
||||
ol,
|
||||
ul {
|
||||
padding: 0 0 0 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct list images handled incorrectly in IE 7.
|
||||
*/
|
||||
|
||||
nav ul,
|
||||
nav ol {
|
||||
list-style: none;
|
||||
list-style-image: none;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
|
||||
* 2. Improve image quality when scaled in IE 7.
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0; /* 1 */
|
||||
-ms-interpolation-mode: bicubic; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct overflow displayed oddly in IE 9.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Figures
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct margin displayed oddly in IE 6/7.
|
||||
*/
|
||||
|
||||
form {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct color not being inherited in IE 6/7/8/9.
|
||||
* 2. Correct text not wrapping in Firefox 3.
|
||||
* 3. Correct alignment displayed oddly in IE 6/7.
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0;
|
||||
white-space: normal; /* 2 */
|
||||
*margin-left: -7px; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct font size not being inherited in all browsers.
|
||||
* 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
|
||||
* and Chrome.
|
||||
* 3. Improve appearance and consistency in all browsers.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-size: 100%; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
vertical-align: baseline; /* 3 */
|
||||
*vertical-align: middle; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address Firefox 3+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
button,
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* All other form control elements do not inherit `text-transform` values.
|
||||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
|
||||
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Correct inability to style clickable `input` types in iOS.
|
||||
* 3. Improve usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
* 4. Remove inner spacing in IE 7 without affecting normal text inputs.
|
||||
* Known issue: inner spacing remains in IE 6.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
cursor: pointer; /* 3 */
|
||||
*overflow: visible; /* 4 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address box sizing set to content-box in IE 8/9.
|
||||
* 2. Remove excess padding in IE 8/9.
|
||||
* 3. Remove excess padding in IE 7.
|
||||
* Known issue: excess padding remains in IE 6.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
*height: 13px; /* 3 */
|
||||
*width: 13px; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
||||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
||||
* (include `-moz` to future-proof).
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box; /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
||||
* on OS X.
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and border in Firefox 3+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Remove default vertical scrollbar in IE 6/7/8/9.
|
||||
* 2. Improve readability and alignment in all browsers.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto; /* 1 */
|
||||
vertical-align: top; /* 2 */
|
||||
}
|
||||
|
||||
/* ==========================================================================
|
||||
Tables
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
2
src/css/normalize.min.css
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
/*! normalize.css v1.1.0 | MIT License | git.io/normalize */
|
||||
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}
|
||||
BIN
src/favicon.ico
Normal file
|
After Width: | Height: | Size: 318 B |
96
src/filosofia.html
Normal file
@ -0,0 +1,96 @@
|
||||
<!DOCTYPE html>
|
||||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
||||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<title>Filosofía | AWA Escuela de Surf y Sup</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=1044">
|
||||
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
|
||||
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57.png" />
|
||||
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" />
|
||||
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72.png" />
|
||||
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" />
|
||||
|
||||
<link rel="stylesheet" href="css/normalize.min.css">
|
||||
<link rel="stylesheet" href="css/fonts.css">
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
|
||||
<script src="js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
|
||||
</head>
|
||||
<body class="filosofia">
|
||||
<div id="fb-root"></div>
|
||||
<script>(function(d, s, id) {
|
||||
var js, fjs = d.getElementsByTagName(s)[0];
|
||||
if (d.getElementById(id))
|
||||
return;
|
||||
js = d.createElement(s);
|
||||
js.id = id;
|
||||
js.src = "http://connect.facebook.net/es_ES/all.js#xfbml=1";
|
||||
fjs.parentNode.insertBefore(js, fjs);
|
||||
}(document, 'script', 'facebook-jssdk'));</script>
|
||||
<div class="general-container">
|
||||
<div class="main-container">
|
||||
<aside>
|
||||
<header class="wrapper clearfix">
|
||||
<h1 class="title"><a href="index.html">Agua Surf y Cosas</a></h1>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a class="current" href="filosofia.html">Filosofia</a></li>
|
||||
<li><a href="tarifas.html">Tarifas</a></li>
|
||||
<li><a href="la-escuela.html">La escuela</a></li>
|
||||
<li><a href="monitores.html">Monitores</a></li>
|
||||
<li><a href="la-tienda.html">La tienda</a></li>
|
||||
<li><a href="galeria.html">Galeria</a></li>
|
||||
<li><a href="links-amigos.html">Links amigos</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<div class="links clearfix">
|
||||
<a href="" class="escuela">Surfawa - Escuela de surf</a>
|
||||
<div class="fb-like" data-href="https://www.facebook.com/AguaSurfYCosas" data-send="false" data-layout="button_count" data-width="160" data-show-faces="false" data-font="verdana"></div>
|
||||
<a href="https://www.facebook.com/AguaSurfYCosas" class="icon oculto facebook" title="Síguenos en Facebook">Síguenos en Facebook</a>
|
||||
<a href="" class="icon oculto twitter" title="Síguenos en Twitter">Síguenos en Twitter</a>
|
||||
<a href="" class="icon oculto flickr" title="Estamos en Flickr">Estamos en Flickr</a>
|
||||
</div>
|
||||
</header>
|
||||
</aside>
|
||||
|
||||
<div class="main wrapper clearfix">
|
||||
<article>
|
||||
<section>
|
||||
<h3>Disfrutar del AGUA? Surfear?</h3>
|
||||
<p>Y todo ello de la forma mas exclusiva y comoda posible?<br/>
|
||||
Eso es lo que te ofrecemos en la escuela de surf AWA.</p>
|
||||
|
||||
<p>Aprendizaje individualizado al mismo precio que<br/>
|
||||
una clase mutitudinaria.</p>
|
||||
|
||||
<p>Comodidad ante todo, nosotros te llevamos<br/>
|
||||
todo a la playa.<br/>
|
||||
Todo todo hasta el refrigerio.<br/>
|
||||
Eso si la ilusion por aprender<br/>
|
||||
corre de tu cuenta. </p>
|
||||
</section>
|
||||
</article>
|
||||
|
||||
<div class="footer-container">
|
||||
<footer class="wrapper">
|
||||
<p>Calle Calabazas 26 <span>></span> Suesa <span>></span> Cantabria (frente a farmacia)<br/>tlfs: 607 382 604 <span>></span> 661 962 924 Mail: <a href="mailto:info@surfagua.com">info@surfagua.com</a></p>
|
||||
</footer>
|
||||
</div>
|
||||
</div> <!-- #main -->
|
||||
</div> <!-- #main-container -->
|
||||
|
||||
|
||||
</div>
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
|
||||
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
|
||||
|
||||
<script src="js/plugins.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
BIN
src/fotos/escuela/1.jpg
Normal file
|
After Width: | Height: | Size: 245 KiB |
BIN
src/fotos/escuela/10.jpg
Normal file
|
After Width: | Height: | Size: 340 KiB |
BIN
src/fotos/escuela/10_small.jpg
Normal file
|
After Width: | Height: | Size: 59 KiB |
BIN
src/fotos/escuela/11.jpg
Normal file
|
After Width: | Height: | Size: 250 KiB |
BIN
src/fotos/escuela/11_small.jpg
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
src/fotos/escuela/1_small.jpg
Normal file
|
After Width: | Height: | Size: 85 KiB |
BIN
src/fotos/escuela/2.jpg
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
src/fotos/escuela/2_small.jpg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
src/fotos/escuela/3.jpg
Normal file
|
After Width: | Height: | Size: 99 KiB |
BIN
src/fotos/escuela/3_small.jpg
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
src/fotos/escuela/4.jpg
Normal file
|
After Width: | Height: | Size: 101 KiB |
BIN
src/fotos/escuela/4_small.jpg
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
src/fotos/escuela/5.jpg
Normal file
|
After Width: | Height: | Size: 239 KiB |
BIN
src/fotos/escuela/5_small.jpg
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
src/fotos/escuela/6.jpg
Normal file
|
After Width: | Height: | Size: 257 KiB |
BIN
src/fotos/escuela/6_small.jpg
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
src/fotos/escuela/7.jpg
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
src/fotos/escuela/7_small.jpg
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
src/fotos/escuela/8.jpg
Normal file
|
After Width: | Height: | Size: 51 KiB |
BIN
src/fotos/escuela/8_small.jpg
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
src/fotos/escuela/9.jpg
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
src/fotos/escuela/9_small.jpg
Normal file
|
After Width: | Height: | Size: 52 KiB |
BIN
src/fotos/tienda/alpargatas.jpg
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
src/fotos/tienda/alpargatas1.jpg
Normal file
|
After Width: | Height: | Size: 76 KiB |
BIN
src/fotos/tienda/alpargatas1_small.jpg
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
src/fotos/tienda/alpargatas2.jpg
Normal file
|
After Width: | Height: | Size: 104 KiB |
BIN
src/fotos/tienda/alpargatas2_small.jpg
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
src/fotos/tienda/alpargatas_small.jpg
Normal file
|
After Width: | Height: | Size: 85 KiB |
BIN
src/fotos/tienda/awa-blancas.jpg
Normal file
|
After Width: | Height: | Size: 90 KiB |
BIN
src/fotos/tienda/awa-blancas_small.jpg
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
src/fotos/tienda/awa-gris.jpg
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
src/fotos/tienda/awa-gris_small.jpg
Normal file
|
After Width: | Height: | Size: 73 KiB |
BIN
src/fotos/tienda/awa-negra.jpg
Normal file
|
After Width: | Height: | Size: 89 KiB |
BIN
src/fotos/tienda/awa-negra_small.jpg
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
src/fotos/tienda/bolsos.jpg
Normal file
|
After Width: | Height: | Size: 64 KiB |
BIN
src/fotos/tienda/bolsos_small.jpg
Normal file
|
After Width: | Height: | Size: 104 KiB |