global base url var, add swift mailer

This commit is contained in:
Baptiste Lemoine 2020-01-22 12:17:49 +01:00
parent 9d4a20783d
commit 2c919610f7
116 changed files with 6961 additions and 602 deletions

8
.env
View File

@ -16,6 +16,7 @@
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=597b0529ac702d27dcb9089f7e69c362
BASE_URL=http://localhost/
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
#TRUSTED_HOSTS='^localhost|example\.com$'
###< symfony/framework-bundle ###
@ -31,3 +32,10 @@ DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name
###> nelmio/cors-bundle ###
CORS_ALLOW_ORIGIN=^https?://(localhost|127\.0\.0\.1)(:[0-9]+)?$
###< nelmio/cors-bundle ###
###> symfony/swiftmailer-bundle ###
# For Gmail as a transport, use: "gmail://username:password@localhost"
# For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
# Delivery is disabled by default via "null://localhost"
MAILER_URL=null://localhost
###< symfony/swiftmailer-bundle ###

View File

@ -16,6 +16,7 @@
###> symfony/framework-bundle ###
APP_ENV=prod
APP_SECRET=597b0529ac702d27dcb9089f7e69c362
BASE_URL=http://framadate.org
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
#TRUSTED_HOSTS='^localhost|example\.com$'
###< symfony/framework-bundle ###

View File

@ -11,7 +11,9 @@
"nelmio/api-doc-bundle": "^3.4",
"nelmio/cors-bundle": "^2.0",
"sensio/framework-extra-bundle": "^5.5",
"symfony/config": "4.3.*",
"symfony/console": "4.3.*",
"symfony/dependency-injection": "4.3.*",
"symfony/dotenv": "4.3.*",
"symfony/flex": "^1.3.1",
"symfony/form": "4.3.*",
@ -19,6 +21,8 @@
"symfony/intl": "4.3.*",
"symfony/maker-bundle": "^1.14",
"symfony/orm-pack": "^1.0",
"symfony/swiftmailer-bundle": "^3.4",
"symfony/twig-bundle": "4.3.*",
"symfony/validator": "4.3.*",
"symfony/yaml": "4.3.*"
},

1497
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,6 @@ return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
FOS\RestBundle\FOSRestBundle::class => ['all' => true],
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
@ -13,4 +12,6 @@ return [
Nelmio\ApiDocBundle\NelmioApiDocBundle::class => ['all' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],
];

View File

@ -0,0 +1,4 @@
# See https://symfony.com/doc/current/email/dev_environment.html
swiftmailer:
# send all emails to a specific address
#delivery_addresses: ['me@example.com']

View File

@ -0,0 +1,3 @@
swiftmailer:
url: '%env(MAILER_URL)%'
spool: { type: 'memory' }

View File

@ -0,0 +1,2 @@
swiftmailer:
disable_delivery: true

View File

@ -0,0 +1,2 @@
twig:
strict_variables: true

View File

@ -0,0 +1,6 @@
twig:
default_path: '%kernel.project_dir%/templates'
debug: '%kernel.debug%'
strict_variables: '%kernel.debug%'
globals:
BASE_URL: '%env(BASE_URL)%'

View File

@ -0,0 +1,3 @@
_errors:
resource: '@TwigBundle/Resources/config/routing/errors.xml'
prefix: /_error

567
public/3rdpartylicenses.txt Normal file
View File

@ -0,0 +1,567 @@
@angular-devkit/build-angular
MIT
The MIT License
Copyright (c) 2017 Google, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@angular/animations
MIT
@angular/common
MIT
@angular/core
MIT
@angular/forms
MIT
@angular/platform-browser
MIT
@angular/router
MIT
@ngx-translate/core
MIT
@ngx-translate/http-loader
MIT
chart.js
MIT
The MIT License (MIT)
Copyright (c) 2018 Chart.js Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
core-js
MIT
Copyright (c) 2014-2019 Denis Pushkarev
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
font-awesome
(OFL-1.1 AND MIT)
marked
MIT
# License information
## Contribution License Agreement
If you contribute code to this project, you are implicitly allowing your code
to be distributed under the MIT license. You are also implicitly verifying that
all code is your original work. `</legalese>`
## Marked
Copyright (c) 2011-2018, Christopher Jeffrey (https://github.com/chjj/)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
## Markdown
Copyright © 2004, John Gruber
http://daringfireball.net/
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
* Neither the name “Markdown” nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
This software is provided by the copyright holders and contributors “as is” and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.
moment
MIT
Copyright (c) JS Foundation and other contributors
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
ngx-clipboard
MIT
ngx-markdown
MIT
MIT License
Copyright (c) 2017-2019 Jean-Francois Cere
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
ngx-window-token
MIT
primeicons
MIT
MIT License
Copyright (c) 2018 PrimeTek
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
primeng
MIT
undefined
primeng/api
primeng/confirmdialog
primeng/dialog
primeng/toast
regenerator-runtime
MIT
MIT License
Copyright (c) 2014-present, Facebook, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
rxjs
Apache-2.0
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
tslib
Apache-2.0
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
You must give any other recipients of the Work or Derivative Works a copy of this License; and
You must cause any modified files to carry prominent notices stating that You changed the files; and
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
webpack
MIT
Copyright JS Foundation and other contributors
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
'Software'), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
zone.js
MIT
The MIT License
Copyright (c) 2016-2018 Google, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@ -0,0 +1,330 @@
/*!
* Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
display: block;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
[tabindex="-1"]:focus {
outline: 0 !important;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
border-bottom: 0;
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 80%;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -.25em;
}
sup {
top: -.5em;
}
a {
text-decoration: none;
background-color: transparent;
}
a:hover {
text-decoration: underline;
}
a:not([href]):not([tabindex]) {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
outline: 0;
}
pre,
code,
kbd,
samp {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 1em;
}
pre {
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
}
figure {
margin: 0 0 1rem;
}
img {
vertical-align: middle;
border-style: none;
}
svg {
overflow: hidden;
vertical-align: middle;
}
table {
border-collapse: collapse;
}
caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #6c757d;
text-align: left;
caption-side: bottom;
}
th {
text-align: inherit;
}
label {
display: inline-block;
margin-bottom: 0.5rem;
}
button {
border-radius: 0;
}
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
select {
word-wrap: normal;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
padding: 0;
border-style: none;
}
input[type="radio"],
input[type="checkbox"] {
box-sizing: border-box;
padding: 0;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
-webkit-appearance: listbox;
}
textarea {
overflow: auto;
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
max-width: 100%;
padding: 0;
margin-bottom: .5rem;
font-size: 1.5rem;
line-height: inherit;
color: inherit;
white-space: normal;
}
progress {
vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
summary {
display: list-item;
cursor: pointer;
}
template {
display: none;
}
[hidden] {
display: none !important;
}
/*# sourceMappingURL=bootstrap-reboot.css.map */

Binary file not shown.

Binary file not shown.

131
public/assets/i18n/en.json Normal file
View File

@ -0,0 +1,131 @@
{
"Language": "Language",
"Title": "Translation example",
"Intro": "Hello I am {{name}}, I am {{age}} years old.",
"home": {
"title": "home's title"
},
"config": {
"demo": "this is a demo",
"demo_other": "this is an other demo",
"continue": "Continue",
"perfect": "That's perfect",
"title": "Create a poll",
"letsgo": "Lets go!",
"description": "Shedule appointments with your friends or your family, or create a pool with text, pictures or links… A real survey!",
"find_my_polls": "Where are my polls ?",
"find_helper": "I am looking for polls linked to my email",
"find_button": "Find my polls"
},
"creation": {
"title": "To begin with",
"want": "I want to create a poll",
"kind": {
"classic": "classic",
"date": "special dates"
},
"choose_title": "Whom title will be",
"choose_title_placeholder": "title",
"name": "I can also specify my name if i want",
"name_placeholder": "my name",
"description": "and the description would be",
"description_placeholder": "summary of the poll's purpose"
},
"dates": {
"title": "Config especially for the dates",
"hours_different": "I want to put",
"hours_each_day": "slots for each day",
"multiple": {
"identical": "the same",
"different": "possibly different"
},
"add": "Add a date choice",
"add_time": "Add a schedule proposal",
"empty": "Empty",
"count_dates": "choices of dates",
"count_time": "choices of schedules",
"add_interval": "Add a date interval",
"interval_propose": "I want to suggest all the dates from",
"interval_span": "to",
"interval_button": "Add these",
"interval_button_dates": "dates"
},
"choices": {
"title": "Write the proposals",
"helper": "You can use markdown syntax",
"answer_preset_1": "Demo answer 1",
"answer_preset_2": "answer 2",
"answer_preset_3": "and D, the answer D",
"add": "Add",
"continue": "Let's see how it goes"
},
"resume": {
"title": "And that's all for us!",
"admins": "Admin side",
"users": "Respondent side",
"links_mail": "Receive links by email"
},
"visibility": {
"top_txt": "A few settings...",
"title": "Visibility of answers",
"visibility_want": "I want that",
"visibility_link": "anybody having the link",
"visibility_nobody": "nobody",
"visibility_see": "can see answers to the pool.",
"votes": "Votes",
"votes_possible": "Possible answers will be",
"votes_possible_single": "only \"yes\"",
"votes_possible_normal": "\"yes\" or \"maybe\"",
"votes_possible_full": "\"yes\" or \"maybe\" or \"no\"",
"archiving": "Polled people will be able to vote until",
"archiving_start": "They",
"archiving_can": "will",
"archiving_can_not": "will not",
"archiving_end": "be able to edit",
"modfiy_their": "their vote",
"modfiy_everyone": "all the votes",
"access": "Access to the poll",
"access_url": "Pooled people will be able to access it via this address:",
"access_url_key": "URL",
"see_pass": "see",
"access_instructions": "may contain letters, numbers and dashes",
"access_want": "I",
"access_want_yes": "want",
"access_want_no": "do not need",
"access_protect": "it to be password-protected.",
"validate_btn": "Create this poll!"
},
"admin": {
"choose_title": "The pool title is",
"description": "and its description is",
"info_section_title": "Pool informations",
"settings_section_title": "Settings",
"votes_deletion_desc": "To start over from scratch, I can delete them all",
"votes_deletion_btn": "Delete all the votes",
"comments_deletion_title": "Comments",
"comments_deletion_desc": "If I wish, I can delete all the comments",
"comments_deletion_btn": "Delete all the comments",
"archiving_title": "Archiving",
"archiving_desc": "This poll will no longer be editable from",
"deletion": "Delete all",
"deletion_desc": "In the case you want do delete everything, this button is for you:",
"deletion_btn": "Delete the poll",
"link": "Links to access the survey",
"link_admin": "Administrator's side",
"link_admin_desc": "To access the poll and all its settings",
"link_admin_btn": "To see the poll as an administrator",
"copy_link": "Copy the link",
"polled_people": "Polled side",
"polled_people_desc": "To access the poll and all its settings",
"polled_people_btn": "See the poll",
"email_links": "Receive the links by email",
"email_links_desc": "To be sure to find these links, they can be sent to you by email",
"email_links_key": "email",
"email_links_btn": "Send the links to the poll"
},
"pollGraphic": {
"choiceColorblind": "I am",
"choiceNotColorblind": "I am not",
"colorblindText": "colorblind."
}
}

131
public/assets/i18n/fr.json Normal file
View File

@ -0,0 +1,131 @@
{
"Language": "Langue",
"Title": "Exemple de traduction",
"Intro": "Bonjour je m'appelle {{name}}, j'ai {{age}} ans.",
"home": {
"title": "le titre de la home"
},
"config": {
"demo": "C'est une démo traduite en Français",
"demo_other": "C'est une <strong>autre</strong> démo traduite en Français",
"continue": "Continuer",
"perfect": "C'est parfait",
"title": "Créer un sondage",
"letsgo": "C'est parti !",
"description": "Planifiez des rendez-vous avec vos amis ou votre famille ou créez un sondage avec du texte, des images ou des liens… un sondage quoi !",
"find_my_polls": "Mes sondages",
"find_helper": "Je cherche d'autres sondages qui correspondent à mon mail",
"find_button": "Retrouver mes sondages"
},
"creation": {
"title": "Créer un sondage",
"want": "Je veux créer un sondage",
"kind": {
"classic": "classique",
"date": "spécial dates"
},
"choose_title": "Dont le titre sera",
"choose_title_placeholder": "titre",
"name": "Je peux aussi préciser mon nom si je le souhaite",
"name_placeholder": "mon nom",
"description": "et la description serait",
"description_placeholder": "description"
},
"dates": {
"title": "Config spécialement pour les dates",
"hours_different": "Je souhaite mettre des créneaux horaires",
"hours_each_day": "pour chaque journée",
"multiple": {
"identical": "identiques",
"different": "possiblement différents"
},
"add": "Ajouter une plage de dates",
"add_time": "Ajouter une plage horaire",
"empty": "Vider",
"count_dates": "choix de dates",
"count_time": "choix de plages horaires",
"add_interval": "Ajouter un intervalle de dates",
"interval_propose": "Je souhaite proposer pour mon sondage toutes les dates entre le",
"interval_span": "et le",
"interval_button": "Ajouter ces",
"interval_button_dates": "dates"
},
"choices": {
"title": "Choisir les propositions",
"helper": "vous pouvez utiliser la syntaxe markdown ",
"answer_preset_1": "réponse de démo 1",
"answer_preset_2": "réponse 2",
"answer_preset_3": "la réponse D",
"add": "Ajouter",
"continue": "Voyons ce que ça donne"
},
"resume": {
"title": "Et c'est tout pour nous !",
"admins": "Côté administrateur-ice-eux",
"users": "Côté sondés",
"links_mail": "Recevoir les liens par e-mail"
},
"visibility": {
"top_txt": "Un peu de paramétrage…",
"title": "Visibilité des réponses",
"visibility_want": "Je veux que",
"visibility_link": "tous ceux qui ont le lien puissent",
"visibility_nobody": "seulement moi puisse",
"visibility_see": "voir les réponses au sondage.",
"votes": "Votes",
"votes_possible": "Les réponses possibles seront :",
"votes_possible_single": "Uniquement « oui »",
"votes_possible_normal":  oui » ou « peut-être »",
"votes_possible_full":  oui » ou « peut-être » ou « non »",
"archiving": "Les personnes sondées pourront voter jusquau",
"archiving_start": "Elles",
"archiving_can": "auront",
"archiving_can_not": "n'auront pas",
"archiving_end": "la possibilité de modifier",
"modfiy_their": "leur vote",
"modfiy_everyone": "tous les votes",
"access": "Accès au sondage",
"access_url": "Les votants pourront y accéder via cette adresse :",
"access_url_key": "URL",
"see_pass": "voir",
"access_instructions": "peut contenir des lettres, chiffres et des tirets",
"access_want": "Je",
"access_want_yes": "souhaite",
"access_want_no": "n'ai pas besoin",
"access_protect": "quil soit protégé par un mot de passe.",
"validate_btn": "Créer ce sondage !"
},
"admin": {
"choose_title": "Le titre du sondage est",
"description": "et sa description :",
"info_section_title": "Informations du sondage",
"settings_section_title": "Paramètres",
"votes_deletion_desc": "Pour repartir à zéro, je peux tous les supprimer :",
"votes_deletion_btn": "Supprimer tous les votes",
"comments_deletion_title": "Commentaires",
"comments_deletion_desc": "Si je le souhaite, je peux supprimer l'ensemble des commentaires",
"comments_deletion_btn": "Supprimer tous les commentaires",
"archiving_title": "Archivage",
"archiving_desc": "Ce sondage ne sera plus éditable à partir du",
"deletion": "Tout supprimer",
"deletion_desc": "Dans le cas où vous voudriez tout supprimer, ce bouton est fait pour vous :",
"deletion_btn": "Supprimer le sondage",
"link": "Liens daccès au sondage",
"link_admin": "Coté administrateur·ice",
"link_admin_desc": "Pour accéder au sondage et à tous ses paramètres :",
"link_admin_btn": "Voir le sondage coté administrateur·ice",
"copy_link": "Copier le lien",
"polled_people": "Côté sondé·es",
"polled_people_desc": "Pour accéder au sondage et à tous ses paramètres :",
"polled_people_btn": "Voir le sondage",
"email_links": "Recevoir les liens par mail",
"email_links_desc": "Pour être sûr de retrouver ces liens, nous pouvons vous les envoyer sur votre boîte mail.",
"email_links_key": "mail",
"email_links_btn": "Envoyer les liens du sondage"
},
"pollGraphic": {
"choiceColorblind": "Je suis",
"choiceNotColorblind": "Je ne suis pas",
"colorblindText": "daltonien."
}
}

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="19" height="15" viewBox="0 0 19 15">
<g fill="#F5A623" fill-rule="evenodd">
<path d="M13.412 0C16.749 1.504 19 4.347 19 7.607c0 3.11-2.051 5.843-5.14 7.393l-.053-1.766c2.095-1.366 3.353-3.41 3.353-5.627 0-2.34-1.402-4.484-3.696-5.841L13.412 0zM5.588 0C2.251 1.504 0 4.347 0 7.607 0 10.717 2.051 13.45 5.14 15l.053-1.766C3.098 11.868 1.84 9.824 1.84 7.607c0-2.34 1.402-4.484 3.696-5.841L5.588 0z"/>
<path d="M8.326 12.692L4.648 8.588a.891.891 0 0 1 .038-1.114.681.681 0 0 1 .999-.043l2.641 2.947 4.989-5.565a.681.681 0 0 1 .999.043.891.891 0 0 1 .038 1.114l-6.026 6.722z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 656 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="12" viewBox="0 0 16 12">
<path fill="#429A00" fill-rule="evenodd" d="M6.133 12L.281 5.903a1.257 1.257 0 0 1 .062-1.656 1.136 1.136 0 0 1 1.589-.064l4.201 4.378L14.068.293a1.136 1.136 0 0 1 1.59.064c.432.45.458 1.172.06 1.656L6.134 12z"/>
</svg>

After

Width:  |  Height:  |  Size: 308 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12">
<path fill="#CD0000" fill-rule="evenodd" d="M7.314 6.05l4.465-4.461A.918.918 0 0 0 10.484.294L6.018 4.71 1.525.22A.92.92 0 0 0 .229 1.516l4.484 4.536-4.392 4.333a.918.918 0 1 0 1.296 1.295L6 7.299l4.355 4.353a.92.92 0 0 0 1.295-1.295L7.314 6.05z"/>
</svg>

After

Width:  |  Height:  |  Size: 344 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 B

View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="9px" height="8px" viewBox="0 0 90 80" preserveAspectRatio="xMidYMid meet">
<g id="layer101" fill="#000000" stroke="none">
<path d="M20 48 c-11 -18 -20 -36 -20 -40 0 -5 20 -8 45 -8 25 0 45 3 45 8 0 10 -39 72 -45 72 -3 0 -14 -15 -25 -32z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 426 B

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23">
<path fill="#000" fill-rule="nonzero" d="M10.628 14.218c-.024.086-.605-.197-.759-.259a15.58 15.58 0 0 1-1.031-.602c-.178-.123-.854-.701-.937-.738a22.327 22.327 0 0 1-1.588 2.226c-.214.258-.854 1.095-1.245 1.353-.06.037-.403.074-.45.05.19-.148.735-.85.972-1.132.296-.357 1.707-2.399 1.944-2.866.249-.468.996-2.017 1.031-2.165-.118-.012-1.055.32-1.304.406-.237.074-.889.234-.936.27-.048.05-.012.197-.036.246-.024.05-.237.16-.367.185-.119.037-.392.05-.558 0-.154-.037-.296-.197-.332-.258 0 0-.047-.074-.059-.283.142-.05.38-.062.64-.136.261-.073.901-.27 1.245-.393.344-.123 1.008-.381 1.21-.43.213-.038.746-.407 1.03-.505.285-.098.487-.221.498-.16.012.062 0 .332-.011.406-.012.062-.581 1.218-.664 1.402-.048.099-.38.75-.913 1.612.19.086.593.258.759.344a73.66 73.66 0 0 0 1.683.738c.071.025.201.59.178.689zM8.198 8.24c.035.21-.024.295-.048.344-.118.234-.415.394-.593.468a2.098 2.098 0 0 1-.71.147c-.107-.012-.32-.049-.582-.32-.142-.16-.249-.59-.201-.54.047.049.391.098.545.06.154-.036.522-.147.688-.196.178-.061.533-.16.652-.172.118 0 .213.05.249.209zm8.274 1.587l.747 2.792-1.648-.517.901-2.275zm-13.135 9.84l8.227-2.854V4.12L3.337 6.985v12.682zm14.712-3.9l1.209.382-2.146-8.081-1.185-.382-2.56 6.593 1.208.382.534-1.353 2.501.8.439 1.66zM12.086 3.936l6.792 2.263V1.524l-6.792 2.41zm3.687 16.273l1.873.16-.64 1.968-.475-.812c-.96.64-2.145 1.132-3.272 1.328-.343.074-.735.148-1.078.148h-.996c-1.257 0-3.545-.775-4.54-1.525-.071-.062-.095-.11-.095-.197 0-.135.095-.234.213-.234.107 0 .664.357.818.43 1.067.554 2.56 1.059 3.758 1.059 1.482 0 2.49-.197 3.84-.8.392-.184.736-.418 1.103-.627l-.51-.898zm5.31-13.272v13.272c-9.163-3.026-9.175-3.026-9.175-3.026-.19.086-8.69 3.063-8.808 3.063a.229.229 0 0 1-.213-.16c0-.012-.012-.025-.012-.037V6.788c.012-.036.024-.098.047-.122.072-.087.166-.111.238-.136.035-.012.758-.258 1.766-.615V1.192l6.615 2.435c.083-.024 7.456-2.669 7.563-2.669.13 0 .237.099.237.259v5.141l1.742.578z"/>
</svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="18" viewBox="0 0 26 18">
<path fill="#000" fill-rule="nonzero" d="M23.267 2H2.733C2.328 2 2 1.552 2 1s.328-1 .733-1h20.534c.405 0 .733.448.733 1s-.328 1-.733 1zm0 14c.405 0 .733.448.733 1s-.328 1-.733 1H2.733C2.328 18 2 17.552 2 17s.328-1 .733-1h20.534zm0-8c.405 0 .733.448.733 1s-.328 1-.733 1H2.733C2.328 10 2 9.552 2 9s.328-1 .733-1h20.534z"/>
</svg>

After

Width:  |  Height:  |  Size: 417 B

View File

@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="24" viewBox="0 0 22 24">
<g fill="none" fill-rule="evenodd">
<path fill="#4A4A4A" fill-rule="nonzero" d="M16.556 13.749a10.963 10.963 0 0 0-16.112 0 .965.965 0 0 0-.25.639v3.833a.958.958 0 0 0 .959.946h14.694c.53 0 .959-.43.959-.959v-3.833a.965.965 0 0 0-.25-.626z"/>
<circle cx="8.5" cy="4.472" r="4.472" fill="#4A4A4A" fill-rule="nonzero"/>
<path fill="#FFF" fill-rule="nonzero" stroke="#FFF" stroke-width="4" d="M14.067 20.083l-2.926-3.048a.629.629 0 0 1 .03-.828.568.568 0 0 1 .795-.032l2.1 2.189 3.968-4.134a.568.568 0 0 1 .795.032c.216.225.23.586.03.828l-4.792 4.993z"/>
<path fill="#F5A623" fill-rule="nonzero" d="M14.067 20.083l-2.926-3.048a.629.629 0 0 1 .03-.828.568.568 0 0 1 .795-.032l2.1 2.189 3.968-4.134a.568.568 0 0 1 .795.032c.216.225.23.586.03.828l-4.792 4.993zM19 12.083c1.792.903 3 2.609 3 4.564 0 1.867-1.101 3.506-2.76 4.436l-.028-1.06c1.125-.819 1.8-2.046 1.8-3.376 0-1.403-.753-2.69-1.984-3.504L19 12.083z"/>
<path fill="#FFF" fill-rule="nonzero" stroke="#FFF" stroke-width="3" d="M10 12.083c-1.792.903-3 2.609-3 4.564 0 1.867 1.101 3.506 2.76 4.436l.028-1.06c-1.125-.819-1.8-2.046-1.8-3.376 0-1.403.753-2.69 1.984-3.504l.028-1.06z"/>
<path fill="#F5A623" fill-rule="nonzero" d="M10 12.083c-1.792.903-3 2.609-3 4.564 0 1.867 1.101 3.506 2.76 4.436l.028-1.06c-1.125-.819-1.8-2.046-1.8-3.376 0-1.403.753-2.69 1.984-3.504l.028-1.06z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="21" viewBox="0 0 20 21">
<defs>
<path id="a" d="M8.667 10.205c2.13-.029 4.221.541 6.03 1.638l.336.212-4.56 5.008L7.9 14.338a1.887 1.887 0 0 0-2.017-.472 1.84 1.84 0 0 0-1.216 1.653c-.024.44.114.873.385 1.22l.108.126 2.047 2.165H1.493a1.325 1.325 0 0 1-1.286-1.18L.2 17.718v-3.537a.65.65 0 0 1 .133-.4 10.822 10.822 0 0 1 7.655-3.573l.339-.007zm8.466 5.046v2.468c0 .71-.572 1.291-1.293 1.312h-2.127l3.42-3.78zM8.66.361c2.507 0 4.54 2 4.54 4.469 0 2.468-2.033 4.47-4.54 4.47S4.12 7.297 4.12 4.83 6.153.36 8.66.36z"/>
</defs>
<g fill="none" fill-rule="nonzero">
<use fill="#4A4A4A" xlink:href="#a"/>
<path fill="#429A00" d="M19.18 10.25a.673.673 0 0 0-.947.053l-7.746 8.531-3.467-3.668a.67.67 0 0 0-.94-.072.651.651 0 0 0 0 .932l4.453 4.725 8.694-9.595a.649.649 0 0 0-.047-.905z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 933 B

View File

@ -0,0 +1,71 @@
@charset "UTF-8";
@mixin btnTheme($color) {
background-color: $color;
color: $white;
&.btn--outline {
background-color: transparent;
border-color: $color;
color: $font-color;
}
&:focus,
&:hover,
&:active {
background-color: rgba($color, .8);
&.btn--outline {
background-color: rgba($color, .2);
}
}
}
.clickable {
cursor: pointer;
}
.btn {
margin: .5rem 0;
padding: 1rem 1.5rem;
font-size: 1.6rem;
line-height: normal;
border: .2rem solid transparent;
border-radius: .3rem;
font-weight: normal;
&--primary {
@include btnTheme($primary_color);
}
&--semi-bold {
font-weight: 600;
}
&--black-text {
color:black;
}
&--purple {
background-color:$pale-purple;
}
&--alert {
@include btnTheme($red);
}
&--small {
padding: .75rem 1.25rem;
}
&--full {
display: block;
min-width: 100%;
}
&--mini {
background-color: $mini-button-color;
}
&--link {
min-width: 219.3px;
margin: 0 auto;
display: block;
}
}

View File

@ -0,0 +1,66 @@
@charset "UTF-8";
@font-face {
font-family: "pt_sans";
src: url("assets/fonts/pt_sans/pt_sans_regular-webfont.woff2") format("woff2"),
url("assets/fonts/pt_sans/pt_sans_regular-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "pt_sans";
src: url("assets/fonts/pt_sans/pt_sans_bold-webfont.woff2") format("woff2"),
url("assets/fonts/pt_sans/pt_sans_bold-webfont.woff") format("woff");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "proza_libre";
src: url("assets/fonts/proza_libre/prozalibre-regular-webfont.woff2") format("woff2"),
url("assets/fonts/proza_libre/prozalibre-regular-webfont.woff") format("woff");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "proza_libre";
src: url("assets/fonts/proza_libre/prozalibre-medium-webfont.woff2") format("woff2"),
url("assets/fonts/proza_libre/prozalibre-medium-webfont.woff") format("woff");
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: "proza_libre";
src: url("assets/fonts/proza_libre/prozalibre-semibold-webfont.woff2") format("woff2"),
url("assets/fonts/proza_libre/prozalibre-semibold-webfont.woff") format("woff");
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: "proza_libre";
src: url("assets/fonts/proza_libre/prozalibre-bold-webfont.woff2") format("woff2"),
url("assets/fonts/proza_libre/prozalibre-bold-webfont.woff") format("woff");
font-weight: bold;
font-style: normal;
}
body {
font-family: $default_font, Arial, Helvetica, sans-serif;
font-size: 1.4rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: $title_font, "Brie Light", "Arial", "DejaVu Sans Mono";
}
.nobold{
font-weight: normal;
}

View File

@ -0,0 +1,165 @@
@charset "UTF-8";
.input-lg {
display: block;
width: 100%;
}
select {
margin-right: 1ch;
}
input {
margin-right: 1ch;
&[type="date"]::after {
content: "au format JJ/MM/AAAA";
display: inline-block;
position: relative;
}
}
input,
select,
textarea {
padding: 1rem;
border: 1px solid $secondary_color;
border-bottom: 3px solid $primary_color;
}
input,
select {
display: inline-block;
margin-bottom: 10px;
margin-left: 5px;
}
textarea {
width: 100%;
border-left: 3px solid $primary_color;
}
select,
option {
// delete default display
-webkit-appearance: none;
-moz-appearance: none;
border-radius: 0;
background-color: transparent;
background-image: url("./assets/img/fleche_bas.svg");
padding-right: 2.5rem;
background-repeat: no-repeat;
background-size: 9px 8px;
background-position: right 1rem center;
background-clip: border-box;
// TODO -> check what angular can do
}
label {
&[for] {
cursor: pointer;
}
&:not([for]) {
color: $dusty-orange;
&:before {
content: "ce label n'a pas d'attribut for, c'est mal.";
color: $violet;
}
}
}
input {
&:not([id]) {
color: $dusty-orange;
&:before {
content: "cet input n'a pas d'attribut id, c'est mal.";
color: $violet;
display: block;
padding: 1em;
background: yellow;
position: relative;
top: -1em;
z-index: 2;
margin-right: 0.5em;
right: 0;
border: solid red 2px;
box-shadow: 0 0 10px orange;
}
}
}
.comment {
border-left: 6px solid $ugly-purple;
margin-top: 25px;
margin-bottom: 25px;
flex-wrap: wrap;
padding-left: 17px;
}
.cname {
font-weight: bold;
}
.btn {
max-width: 300px;
}
.next {
max-width: 200px;
}
input[type=text], textarea {
max-width: 350px;
}
li {
list-style-type: none;
}
h2 {
}
.next {
align-self: flex-end;
margin-bottom: 50px;
}
textarea {
height: 213px;
margin-bottom: 20px;
}
.nobold {
font-weight: normal;
}
select, input, textarea {
@extend .clickable;
&:active,
&:focus,
&:hover {
color: $primary_color;
}
}
.btn-block {
display: block;
width: 100%;
}
.btn, a {
cursor: pointer;
}

View File

@ -0,0 +1,16 @@
@charset "UTF-8";
h1,
h2 {
font-family: $title_font;
}
h1 {
font-size: 2.5rem;
font-weight: 600;
}
h1::after {
background-color: $primary_color;
height: 2px;
}

View File

@ -0,0 +1,7 @@
@charset "UTF-8";
.img-thumbnail {
width: 5em;
height: 5em;
margin: 1ch 0;
display: inline-block;
}

View File

@ -0,0 +1,66 @@
@charset "UTF-8";
a {
display: inline-block;
position: relative;
font-family: $default_font;
font-weight: 600;
font-size: 1.6rem;
color: $font_color !important;
&,
&:hover {
text-decoration: none;
}
&::before,
&::after {
content: "";
}
&.next::before,
&.prev::after {
position: absolute;
top: 0;
bottom: 0;
display: block;
width: 100%;
height: 0.6rem;
margin: auto;
background-color: $secondary_color;
z-index: -1;
}
&.next::after,
&.prev::before {
display: inline-block;
width: 1rem;
height: 1rem;
border-bottom: 2px solid #000;
}
&.next::after {
margin-right: 1rem;
border-right: 2px solid #000;
transform: rotate(-45deg);
}
&.prev::before {
margin-left: 1rem;
border-left: 2px solid #000;
transform: rotate(45deg);
}
&:hover {
&.next::before,
&.prev::after {
background-color: rgba($primary_color, 0.7);
}
}
span {
padding-right: 1rem;
padding-left: 1rem;
}
}

View File

@ -0,0 +1 @@
@charset "UTF-8";

View File

@ -0,0 +1,11 @@
@charset "UTF-8";
main {
display: block;
width: 100%;
//max-width: 320px; // to look like the styleguide, to remove when we will have full width views
max-width: 800px;
margin: 0 auto;
padding: 0 2rem;
}

View File

@ -0,0 +1 @@
@charset "UTF-8";

View File

@ -0,0 +1,28 @@
@charset "UTF-8";
html {
font-size: 62.5%; /* 10px */
font-size: calc(1em * 0.625); /* fix */
color: $font_color;
}
.text-right {
text-align: right;
}
.Language- {
padding-right: 2em;
font-family: SourceSansPro;
font-size: 11px;
font-weight: normal;
font-stretch: normal;
font-style: normal;
line-height: normal;
letter-spacing: normal;
color: var(--black);
border: none;
}
.select_language {
display: none;
}

View File

@ -0,0 +1,15 @@
.debug {
font-size: 1rem;
background: $dark-lavender;
margin: 2em;
padding: 2em;
ul {
list-style-type: none;
}
pre {
font-size: 1rem;
padding: 0.5em;
}
}

View File

@ -0,0 +1,12 @@
@charset "UTF-8";
.flex-line {
display: flex;
align-items: center;
flex-wrap: wrap;
& > input,
& > select {
flex-grow: 1;
}
}

View File

@ -0,0 +1,70 @@
.logo_first, .logo_second {
padding-left: 0;
padding-right: 0;
}
.logo_first {
color: $logo_color;
}
.logo_second {
color: $logo_color_2;
}
.wrapper {
display: grid;
margin-left: auto;
margin-right: auto;
width: 20em;
margin-top: 1rem;
select {
float: right;
}
}
.lang_icon {
grid-column: 1;
grid-row: 1;
margin-left: auto;
margin-right: auto;
margin-bottom: 1ch;
}
.menu_icon {
grid-column: 2;
grid-row: 1;
margin-left: auto;
margin-right: auto;
}
.lang_label {
grid-column: 1;
grid-row: 2;
}
.menu_label {
grid-column: 2;
grid-row: 2;
font-family: SourceSansPro;
font-size: 11px;
padding-top: 10px;
margin-left: auto;
margin-right: auto;
}
.legend_first {
color: $legend_color;
padding-right: 0rem;
padding-left: 0rem;
}
.legend_second {
color: $legend_color_2;
padding-right: 0rem;
padding-left: 0rem;
}
.legend {
font-size: 10px;
}

View File

@ -0,0 +1,127 @@
@charset "UTF_8";
.align-right {
display: flex;
justify-content: flex-end;
}
.pull-right {
float: right;
}
/*Btm paddings*/
.padding-btm-x1{
padding-bottom:10px;
}
.padding-btm-x2{
padding-bottom:20px;
}
.padding-btm-x3{
padding-bottom:30px;
}
.padding-btm-x4{
padding-bottom:40px;
}
.padding-btm-x5{
padding-bottom:50px;
}
.padding-btm-x6{
padding-bottom:60px;
}
.padding-btm-x7{
padding-bottom:70px;
}
.padding-btm-x8{
padding-bottom:80px;
}
/*Btm margins*/
.margin-btm-x1{
margin-bottom:10px;
}
.margin-btm-x2{
margin-bottom:20px;
}
.margin-btm-x3{
margin-bottom:30px;
}
.margin-btm-x4{
margin-bottom:40px;
}
.margin-btm-x5{
margin-bottom:50px;
}
.margin-btm-x6{
margin-bottom:60px;
}
.margin-btm-x7{
margin-bottom:70px;
}
.margin-btm-x8{
margin-bottom:80px;
}
/*Top paddings*/
.padding-top-x1{
padding-top:10px;
}
.padding-top-x2{
padding-top:20px;
}
.padding-top-x3{
padding-top:30px;
}
.padding-top-x4{
padding-top:40px;
}
.padding-top-x5{
padding-top:50px;
}
.padding-top-x6{
padding-top:60px;
}
.padding-top-x7{
padding-top:70px;
}
.padding-top-x8{
padding-top:80px;
}
/*Top margins*/
.margin-top-x1{
margin-top:10px;
}
.margin-top-x2{
margin-top:20px;
}
.margin-top-x3{
margin-top:30px;
}
.margin-top-x4{
margin-top:40px;
}
.margin-top-x5{
margin-top:50px;
}
.margin-top-x6{
margin-top:60px;
}
.margin-top-x7{
margin-top:70px;
}
.margin-top-x8{
margin-top:80px;
}
.margin-right-x2{
margin-bottom:20px;
}
.text-14{
font-size: 14px;
}
/*Pour masquer la page lors de l'apparition d'une popup*/
.rgba-black{
position: fixed;
inset: 0px;
width: 100vw;
height: 100vh;
border: medium none;
z-index: 2147483647;
background-color: rgba(216, 216, 216, 0.4);
}

View File

@ -0,0 +1,31 @@
@charset "UTF-8";
// colors from styleguide https://app.zeplin.io/project/5d4d83d68866d6522ff2ff10/styleguide/colors?cid=5d502bb032e23e3516af8154
$camo: #839546;
$black: #000000;
$ugly-purple: #b24eb7;
$lavender-pink : #e9bdeb;
$white: #ffffff;
$dark-lavender: #7d6c99;
$dusty-orange: #f18647;
$violet: #bd10e0;
$red: #cd0000;
$cool-grey: #aeafb1;
$warm-grey:#807e7e;
$wisteria:#bf83c2;
$pale-purple:#d198d4;
// interpretations in app
$primary_color: $ugly-purple;
$secondary_color: $lavender-pink;
$font_color: $black;
$logo_color: $dark-lavender;
$logo_color_2: $camo;
$legend_color: $dark-lavender;
$legend_color_2: $dusty-orange;
$choice_select_border_color: $cool-grey;
$hover-color:$warm-grey;
$clicked-color:$wisteria;
$mini-button-color:$pale-purple;
// FONT
$default_font : "pt_sans";
$title_font: "proza_libre";

BIN
public/color.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

7
public/fleche_bas.svg Normal file
View File

@ -0,0 +1,7 @@
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg" width="9px" height="8px" viewBox="0 0 90 80" preserveAspectRatio="xMidYMid meet">
<g id="layer101" fill="#000000" stroke="none">
<path d="M20 48 c-11 -18 -20 -36 -20 -40 0 -5 20 -8 45 -8 25 0 45 3 45 8 0 10 -39 72 -45 72 -3 0 -14 -15 -25 -32z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

BIN
public/hue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 293 B

16
public/index.html Normal file
View File

@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Framadate</title>
<base href="/">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" href="assets/css/bootstrap-reboot-4.3.1.css">
<link rel="stylesheet" href="styles.css" crossorigin="anonymous"></head>
<body>
<app-root></app-root>
<script src="runtime-es2018.js" crossorigin="anonymous" type="module"></script><script src="runtime-es5.js" crossorigin="anonymous" nomodule defer></script><script src="polyfills-es5.js" crossorigin="anonymous" nomodule defer></script><script src="polyfills-es2018.js" crossorigin="anonymous" type="module"></script><script src="scripts.js" crossorigin="anonymous" defer></script><script src="main-es2018.js" crossorigin="anonymous" type="module"></script><script src="main-es5.js" crossorigin="anonymous" nomodule defer></script></body>
</html>

BIN
public/line.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
public/loading.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

1
public/main-es2018.js Normal file

File diff suppressed because one or more lines are too long

1
public/main-es5.js Normal file

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,332 @@
<?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 xmlns="http://www.w3.org/2000/svg">
<defs >
<font id="OpenSans" horiz-adv-x="1159" ><font-face
font-family="Open Sans Light"
units-per-em="2048"
panose-1="2 11 3 6 3 5 4 2 2 4"
ascent="2189"
descent="-600"
alphabetic="0" />
<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
<glyph unicode="!" glyph-name="exclam" horiz-adv-x="492" d="M276 377H215L186 1462H305L276 377ZM164 78Q164 176 244 176Q326 176 326 78Q326 -20 244 -20Q164 -20 164 78Z" />
<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="723" d="M260 1462L227 934H166L133 1462H260ZM590 1462L557 934H496L463 1462H590Z" />
<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M967 928L891 530H1194V451H874L788 0H698L786 451H426L340 0H252L338 451H55V530H354L430 928H133V1008H444L530 1462H621L532 1008H897L985 1462H1071L983 1008H1268V928H967ZM440 530H803L881
928H518L440 530Z" />
<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1169" d="M991 440Q991 307 892 223T618 117V-119H537V113Q445 115 337 135T164 186V289Q239 253 343 228T537 203V711Q392 755 322 799T220 903T188 1049Q188 1173 282 1257T537 1362V1554H618V1364Q815
1355 969 1292L936 1202Q795 1264 618 1274V788Q831 722 911 644T991 440ZM881 444Q881 529 818 584T618 680V209Q740 222 810 284T881 444ZM297 1049Q297 963 354 908T537 815V1268Q418 1252 358 1192T297 1049Z" />
<glyph unicode="%" glyph-name="percent" horiz-adv-x="1653" d="M211 1026Q211 840 256 747T397 653Q590 653 590 1026Q590 1210 541 1302T397 1395Q301 1395 256 1303T211 1026ZM688 1026Q688 800 613 683T397 565Q264 565 189 685T113 1026Q113 1249 185 1366T397
1483Q536 1483 612 1363T688 1026ZM1063 438Q1063 253 1108 161T1249 68Q1442 68 1442 438Q1442 807 1249 807Q1153 807 1108 716T1063 438ZM1540 438Q1540 212 1466 95T1251 -23Q1115 -23 1040 98T965 438Q965 663 1038 779T1251 895Q1388 895 1464 775T1540 438ZM1280
1462L469 0H373L1184 1462H1280Z" />
<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1460" d="M123 371Q123 509 196 606T471 811L396 893Q330 964 298 1032T266 1174Q266 1317 361 1401T618 1485Q773 1485 863 1404T954 1180Q954 1075 884 988T631 793L1083 336Q1144 408 1187 493T1262
694H1358Q1295 448 1149 268L1415 0H1280L1087 197Q995 107 923 66T766 2T571 -20Q362 -20 243 83T123 371ZM578 70Q706 70 812 113T1022 260L539 745Q403 673 343 623T255 513T227 375Q227 232 320 151T578 70ZM373 1176Q373 1097 413 1030T565 856Q724 941 786
1015T848 1184Q848 1278 786 1336T618 1395Q504 1395 439 1337T373 1176Z" />
<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="393" d="M260 1462L227 934H166L133 1462H260Z" />
<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="557" d="M82 561Q82 826 159 1057T383 1462H496Q348 1280 269 1050T190 563Q190 80 494 -324H383Q236 -154 159 73T82 561Z" />
<glyph unicode=")" glyph-name="parenright" horiz-adv-x="557" d="M475 561Q475 298 398 71T174 -324H63Q367 80 367 563Q367 820 288 1050T61 1462H174Q321 1287 398 1056T475 561Z" />
<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1128" d="M631 1556L594 1151L999 1255L1020 1124L625 1085L872 745L748 674L557 1053L377 674L252 745L494 1085L104 1124L123 1255L524 1151L485 1556H631Z" />
<glyph unicode="+" glyph-name="plus" horiz-adv-x="1169" d="M625 764H1059V682H625V250H543V682H111V764H543V1198H625V764Z" />
<glyph unicode="," glyph-name="comma" horiz-adv-x="440" d="M295 238L307 217Q232 -48 133 -264H68Q145 11 178 238H295Z" />
<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M92 512V594H567V512H92Z" />
<glyph unicode="." glyph-name="period" horiz-adv-x="487" d="M162 78Q162 176 242 176Q324 176 324 78Q324 -20 242 -20Q162 -20 162 78Z" />
<glyph unicode="/" glyph-name="slash" horiz-adv-x="698" d="M674 1462L129 0H25L569 1462H674Z" />
<glyph unicode="0" glyph-name="zero" horiz-adv-x="1169" d="M1055 735Q1055 350 938 165T582 -20Q353 -20 234 170T115 735Q115 1117 230 1301T582 1485Q813 1485 934 1295T1055 735ZM223 735Q223 395 312 233T582 70Q771 70 857 238T944 735Q944 1059 858 1227T582
1395Q393 1395 308 1227T223 735Z" />
<glyph unicode="1" glyph-name="one" horiz-adv-x="1169" d="M682 0H584V1065Q584 1210 596 1366Q581 1351 565 1337T256 1094L199 1165L596 1462H682V0Z" />
<glyph unicode="2" glyph-name="two" horiz-adv-x="1169" d="M1028 0H113V88L502 494Q666 664 732 754T829 926T860 1098Q860 1229 774 1311T551 1393Q368 1393 201 1260L147 1329Q330 1483 553 1483Q744 1483 853 1381T963 1100Q963 955 890 820T621 485L246
100V96H1028V0Z" />
<glyph unicode="3" glyph-name="three" horiz-adv-x="1169" d="M979 1118Q979 982 894 889T664 770V764Q840 742 932 652T1024 410Q1024 205 885 93T483 -20Q260 -20 94 63V162Q178 118 282 93T479 68Q700 68 811 157T922 410Q922 555 809 633T475 711H317V807H477Q659
807 765 893T872 1128Q872 1250 786 1323T559 1397Q450 1397 360 1367T158 1262L109 1329Q194 1400 314 1441T557 1483Q759 1483 869 1388T979 1118Z" />
<glyph unicode="4" glyph-name="four" horiz-adv-x="1169" d="M1141 373H889V0H795V373H43V440L768 1470H889V459H1141V373ZM795 459V877Q795 1179 809 1384H801Q781 1347 678 1196L162 459H795Z" />
<glyph unicode="5" glyph-name="five" horiz-adv-x="1169" d="M537 879Q771 879 905 766T1040 455Q1040 230 900 105T514 -20Q405 -20 307 1T143 63V166Q251 111 335 90T514 68Q706 68 822 169T938 444Q938 607 825 700T518 793Q388 793 246 754L186 793L244 1462H948V1366H338L293
850Q449 879 537 879Z" />
<glyph unicode="6" glyph-name="six" horiz-adv-x="1169" d="M131 623Q131 908 208 1102T428 1391T772 1485Q866 1485 944 1462V1374Q871 1401 768 1401Q521 1401 384 1223T229 705H242Q318 803 416 853T623 903Q828 903 943 786T1059 463Q1059 239 938 110T610
-20Q388 -20 260 149T131 623ZM610 68Q774 68 865 171T956 465Q956 633 866 727T621 821Q519 821 432 776T292 657T240 504Q240 393 289 291T423 128T610 68Z" />
<glyph unicode="7" glyph-name="seven" horiz-adv-x="1169" d="M334 0L936 1366H109V1462H1055V1389L451 0H334Z" />
<glyph unicode="8" glyph-name="eight" horiz-adv-x="1169" d="M582 1487Q768 1487 881 1392T995 1135Q995 1023 925 937T696 778Q888 699 966 605T1044 377Q1044 196 918 88T578 -20Q357 -20 239 81T121 375Q121 506 204 605T461 774Q300 850 234 934T168 1137Q168
1242 221 1321T369 1444T582 1487ZM223 360Q223 222 316 146T578 70Q742 70 842 150T942 369Q942 493 864 570T561 733Q377 662 300 576T223 360ZM580 1397Q439 1397 354 1328T268 1137Q268 1067 299 1014T390 917T590 815Q753 878 824 954T895 1137Q895 1257 811
1327T580 1397Z" />
<glyph unicode="9" glyph-name="nine" horiz-adv-x="1169" d="M1036 842Q1036 554 961 360T741 73T391 -20Q287 -20 199 6V92Q242 78 302 71T395 63Q642 63 782 241T938 762H926Q853 666 752 615T541 563Q338 563 225 675T111 993Q111 1213 235 1349T559 1485Q703
1485 811 1410T977 1188T1036 842ZM559 1397Q401 1397 307 1291T213 999Q213 825 300 735T549 645Q650 645 737 690T876 809T928 961Q928 1078 882 1180T752 1339T559 1397Z" />
<glyph unicode=":" glyph-name="colon" horiz-adv-x="487" d="M162 78Q162 176 242 176Q324 176 324 78Q324 -20 242 -20Q162 -20 162 78ZM162 971Q162 1069 242 1069Q324 1069 324 971Q324 918 301 895T242 872Q208 872 185 895T162 971Z" />
<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="487" d="M303 238L315 217Q240 -48 141 -264H76Q105 -167 138 -19T186 238H303ZM162 971Q162 1069 242 1069Q324 1069 324 971Q324 918 301 895T242 872Q208 872 185 895T162 971Z" />
<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1169" d="M1059 266L111 682V743L1059 1217V1122L236 717L1059 362V266Z" />
<glyph unicode="=" glyph-name="equal" horiz-adv-x="1169" d="M111 885V967H1059V885H111ZM111 477V559H1059V477H111Z" />
<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1169" d="M111 362L934 717L111 1122V1217L1059 743V682L111 266V362Z" />
<glyph unicode="?" glyph-name="question" horiz-adv-x="862" d="M293 377V414Q293 537 330 615T469 782L560 861Q632 922 663 982T694 1120Q694 1247 611 1322T391 1397Q312 1397 243 1380T94 1323L57 1403Q167 1451 241 1467T395 1483Q578 1483 683 1385T788
1114Q788 1046 770 995T720 901T641 817T539 729Q475 675 441 631T391 537T375 391V377H293ZM260 78Q260 176 340 176Q422 176 422 78Q422 -20 340 -20Q260 -20 260 78Z" />
<glyph unicode="@" glyph-name="at" horiz-adv-x="1815" d="M1702 725Q1702 497 1612 359T1366 221Q1277 221 1222 275T1157 422H1153Q1110 322 1029 272T840 221Q692 221 611 317T530 588Q530 790 650 918T965 1047Q1103 1047 1251 1006L1229 542V512Q1229 408
1264 356T1380 303Q1483 303 1548 419T1614 723Q1614 917 1535 1063T1310 1287T975 1366Q745 1366 570 1267T300 985T205 567Q205 245 372 70T846 -106Q939 -106 1034 -88T1266 -18V-117Q1063 -197 852 -197Q503 -197 308 3T113 561Q113 817 221 1021T528 1339T977
1452Q1192 1452 1357 1363T1612 1109T1702 725ZM633 590Q633 447 688 375T862 303Q1117 303 1135 649L1151 940Q1072 967 958 967Q809 967 721 865T633 590Z" />
<glyph unicode="A" glyph-name="A" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608Z" />
<glyph unicode="B" glyph-name="B" horiz-adv-x="1284" d="M207 1462H608Q879 1462 1006 1370T1133 1092Q1133 965 1056 881T829 772V766Q1004 740 1086 656T1169 420Q1169 218 1035 109T655 0H207V1462ZM309 811H631Q837 811 930 879T1024 1094Q1024 1240 919
1306T604 1372H309V811ZM309 721V90H653Q1059 90 1059 420Q1059 721 631 721H309Z" />
<glyph unicode="C" glyph-name="C" horiz-adv-x="1272" d="M831 1391Q556 1391 398 1215T240 733Q240 420 389 247T815 74Q999 74 1153 121V31Q1008 -20 791 -20Q483 -20 306 179T129 735Q129 958 213 1128T456 1390T825 1483Q1039 1483 1208 1403L1167 1311Q1007
1391 831 1391Z" />
<glyph unicode="D" glyph-name="D" horiz-adv-x="1446" d="M1317 745Q1317 377 1124 189T557 0H207V1462H602Q952 1462 1134 1279T1317 745ZM1206 741Q1206 1055 1047 1213T578 1372H309V90H551Q1206 90 1206 741Z" />
<glyph unicode="E" glyph-name="E" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0Z" />
<glyph unicode="F" glyph-name="F" horiz-adv-x="1028" d="M309 0H207V1462H1008V1368H309V748H969V653H309V0Z" />
<glyph unicode="G" glyph-name="G" horiz-adv-x="1481" d="M782 737H1321V70Q1109 -20 844 -20Q498 -20 314 175T129 729Q129 952 220 1124T482 1391T874 1485Q1113 1485 1303 1397L1262 1305Q1072 1393 868 1393Q579 1393 410 1215T240 733Q240 403 401 237T874
70Q1076 70 1217 127V641H782V737Z" />
<glyph unicode="H" glyph-name="H" horiz-adv-x="1473" d="M1266 0H1163V719H309V0H207V1462H309V813H1163V1462H1266V0Z" />
<glyph unicode="I" glyph-name="I" horiz-adv-x="516" d="M207 0V1462H309V0H207Z" />
<glyph unicode="J" glyph-name="J" horiz-adv-x="506" d="M-33 -369Q-125 -369 -184 -342V-254Q-106 -274 -35 -274Q207 -274 207 -10V1462H309V0Q309 -369 -33 -369Z" />
<glyph unicode="K" glyph-name="K" horiz-adv-x="1190" d="M1190 0H1065L504 772L309 600V0H207V1462H309V702L471 864L1044 1462H1174L575 844L1190 0Z" />
<glyph unicode="L" glyph-name="L" horiz-adv-x="1051" d="M207 0V1462H309V96H1006V0H207Z" />
<glyph unicode="M" glyph-name="M" horiz-adv-x="1767" d="M850 0L305 1350H297Q305 1226 305 1096V0H207V1462H365L883 176H889L1407 1462H1561V0H1458V1108Q1458 1224 1470 1348H1462L915 0H850Z" />
<glyph unicode="N" glyph-name="N" horiz-adv-x="1477" d="M1270 0H1167L301 1298H293Q305 1066 305 948V0H207V1462H309L1174 166H1180Q1171 346 1171 508V1462H1270V0Z" />
<glyph unicode="O" glyph-name="O" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325 1049 1186
1217T784 1386Q523 1386 382 1216T240 733Z" />
<glyph unicode="P" glyph-name="P" horiz-adv-x="1198" d="M1087 1042Q1087 830 943 717T535 604H309V0H207V1462H565Q1087 1462 1087 1042ZM309 692H510Q757 692 867 773T977 1038Q977 1207 873 1288T551 1370H309V692Z" />
<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1565" d="M1436 733Q1436 439 1310 247T961 0L1294 -348H1128L846 -18L813 -20H782Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046
76 1185 246T1325 733Q1325 1049 1186 1217T784 1386Q523 1386 382 1216T240 733Z" />
<glyph unicode="R" glyph-name="R" horiz-adv-x="1217" d="M309 637V0H207V1462H555Q827 1462 957 1362T1087 1059Q1087 912 1010 811T774 666L1171 0H1049L672 637H309ZM309 725H588Q773 725 875 807T977 1051Q977 1218 877 1294T551 1370H309V725Z" />
<glyph unicode="S" glyph-name="S" horiz-adv-x="1116" d="M1014 377Q1014 194 880 87T522 -20Q254 -20 111 39V141Q269 74 514 74Q694 74 799 156T905 373Q905 456 870 510T756 610T524 707Q300 784 215 873T129 1112Q129 1276 257 1379T588 1483Q794 1483 975
1405L938 1317Q756 1393 590 1393Q428 1393 332 1318T236 1114Q236 1033 265 981T362 888T592 788Q763 729 849 674T974 548T1014 377Z" />
<glyph unicode="T" glyph-name="T" horiz-adv-x="1073" d="M588 0H485V1366H10V1462H1063V1366H588V0Z" />
<glyph unicode="U" glyph-name="U" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282Z" />
<glyph unicode="V" glyph-name="V" horiz-adv-x="1182" d="M1071 1462H1182L635 0H545L0 1462H109L477 467Q561 242 590 129Q610 204 669 362L1071 1462Z" />
<glyph unicode="W" glyph-name="W" horiz-adv-x="1827" d="M1372 0H1288L967 1128Q927 1267 907 1356Q891 1269 862 1156T539 0H453L51 1462H158L414 520Q429 463 442 415T465 324T484 242T500 162Q524 298 602 575L852 1462H965L1258 444Q1309 268 1331 160Q1344
232 1364 313T1673 1462H1776L1372 0Z" />
<glyph unicode="X" glyph-name="X" horiz-adv-x="1102" d="M1102 0H985L553 682L113 0H0L492 762L45 1462H160L555 836L956 1462H1065L612 764L1102 0Z" />
<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1081" d="M543 662L971 1462H1081L594 565V0H489V557L0 1462H117L543 662Z" />
<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1180" d="M1098 0H82V76L938 1366H121V1462H1075V1386L217 96H1098V0Z" />
<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="653" d="M602 -324H174V1462H602V1368H272V-229H602V-324Z" />
<glyph unicode="\" glyph-name="backslash" horiz-adv-x="698" d="M127 1462L674 0H571L25 1462H127Z" />
<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="653" d="M51 -229H381V1368H51V1462H479V-324H51V-229Z" />
<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1169" d="M88 561L553 1473H621L1081 561H981L586 1352L188 561H88Z" />
<glyph unicode="_" glyph-name="underscore" horiz-adv-x="842" d="M846 -266H-4V-184H846V-266Z" />
<glyph unicode="`" glyph-name="grave" horiz-adv-x="1182" d="M776 1241H707Q611 1320 519 1412T393 1552V1569H535Q561 1521 633 1427T776 1257V1241Z" />
<glyph unicode="a" glyph-name="a" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106 826 1013T915
723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70Z" />
<glyph unicode="b" glyph-name="b" horiz-adv-x="1219" d="M641 1108Q869 1108 984 965T1100 545Q1100 274 979 127T637 -20Q521 -20 428 28T281 164H272L244 0H182V1556H281V1165Q281 1077 277 1003L274 918H281Q343 1016 430 1062T641 1108ZM639 1018Q447 1018
364 908T281 545V528Q281 282 367 175T637 68Q815 68 905 192T995 547Q995 1018 639 1018Z" />
<glyph unicode="c" glyph-name="c" horiz-adv-x="973" d="M616 -20Q383 -20 251 127T119 537Q119 807 256 957T631 1108Q772 1108 901 1059L874 971Q733 1018 629 1018Q429 1018 326 895T223 539Q223 319 326 195T614 70Q762 70 889 123V31Q785 -20 616 -20Z" />
<glyph unicode="d" glyph-name="d" horiz-adv-x="1219" d="M580 1108Q698 1108 784 1065T938 918H944Q938 1044 938 1165V1556H1036V0H971L946 166H938Q814 -20 582 -20Q357 -20 238 120T119 528Q119 810 237 959T580 1108ZM580 1018Q402 1018 313 893T223 530Q223
68 582 68Q766 68 852 175T938 528V545Q938 797 854 907T580 1018Z" />
<glyph unicode="e" glyph-name="e" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435 1020 340 917T229
618H901Q901 807 819 913T592 1020Z" />
<glyph unicode="f" glyph-name="f" horiz-adv-x="614" d="M586 1001H330V0H231V1001H29V1059L231 1096V1180Q231 1380 304 1473T545 1567Q635 1567 725 1540L702 1454Q622 1479 543 1479Q427 1479 379 1411T330 1188V1087H586V1001Z" />
<glyph unicode="g" glyph-name="g" horiz-adv-x="1071" d="M1030 1087V1018L805 1004Q895 892 895 758Q895 601 791 504T510 406Q436 406 406 412Q347 381 316 339T285 250Q285 198 324 174T457 150H647Q824 150 918 79T1012 -133Q1012 -305 873 -398T475 -492Q270
-492 158 -413T45 -193Q45 -81 114 -7T303 94Q254 115 225 153T195 242Q195 351 334 434Q239 473 186 556T133 748Q133 911 236 1009T516 1108Q623 1108 682 1087H1030ZM150 -184Q150 -408 483 -408Q911 -408 911 -135Q911 -37 844 7T627 51H449Q150 51 150 -184ZM233
748Q233 622 309 553T514 483Q650 483 722 552T795 752Q795 891 721 960T512 1030Q382 1030 308 956T233 748Z" />
<glyph unicode="h" glyph-name="h" horiz-adv-x="1208" d="M940 0V705Q940 869 871 943T657 1018Q462 1018 372 920T281 600V0H182V1556H281V1061L276 922H283Q344 1020 437 1064T668 1108Q1038 1108 1038 711V0H940Z" />
<glyph unicode="i" glyph-name="i" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM168 1389Q168 1485 231 1485Q262 1485 279 1460T297 1389Q297 1344 280 1318T231 1292Q168 1292 168 1389Z" />
<glyph unicode="j" glyph-name="j" horiz-adv-x="463" d="M37 -492Q-43 -492 -98 -467V-381Q-29 -401 31 -401Q182 -401 182 -225V1087H281V-211Q281 -346 218 -419T37 -492ZM168 1389Q168 1485 231 1485Q262 1485 279 1460T297 1389Q297 1344 280 1318T231 1292Q168
1292 168 1389Z" />
<glyph unicode="k" glyph-name="k" horiz-adv-x="991" d="M279 477L834 1087H954L526 623L991 0H872L459 549L281 387V0H182V1556H281V776L274 477H279Z" />
<glyph unicode="l" glyph-name="l" horiz-adv-x="463" d="M281 0H182V1556H281V0Z" />
<glyph unicode="m" glyph-name="m" horiz-adv-x="1808" d="M1540 0V713Q1540 872 1478 945T1288 1018Q1121 1018 1041 926T961 637V0H860V743Q860 1018 608 1018Q437 1018 359 919T281 600V0H182V1087H264L285 938H291Q336 1019 419 1063T602 1108Q859 1108 932
915H936Q989 1008 1078 1058T1282 1108Q1460 1108 1549 1013T1638 711V0H1540Z" />
<glyph unicode="n" glyph-name="n" horiz-adv-x="1208" d="M940 0V705Q940 869 871 943T657 1018Q462 1018 372 920T281 600V0H182V1087H266L285 938H291Q397 1108 668 1108Q1038 1108 1038 711V0H940Z" />
<glyph unicode="o" glyph-name="o" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977 770 878 894T598
1018Q418 1018 321 895T223 545Z" />
<glyph unicode="p" glyph-name="p" horiz-adv-x="1219" d="M647 -20Q396 -20 281 168H274L277 84Q281 10 281 -78V-492H182V1087H266L285 932H291Q403 1108 649 1108Q869 1108 984 964T1100 543Q1100 275 979 128T647 -20ZM645 68Q812 68 903 192T995 539Q995
1018 649 1018Q459 1018 370 914T281 573V541Q281 286 366 177T645 68Z" />
<glyph unicode="q" glyph-name="q" horiz-adv-x="1219" d="M569 -20Q355 -20 237 122T119 532Q119 807 237 957T575 1108Q811 1108 928 934H934L952 1087H1036V-492H938V-78Q938 44 944 170H938Q820 -20 569 -20ZM571 68Q769 68 853 177T938 543V555Q938 800 853
909T582 1018Q406 1018 315 894T223 530Q223 301 312 185T571 68Z" />
<glyph unicode="r" glyph-name="r" horiz-adv-x="797" d="M610 1108Q679 1108 758 1094L739 999Q671 1016 598 1016Q459 1016 370 898T281 600V0H182V1087H266L276 891H283Q350 1011 426 1059T610 1108Z" />
<glyph unicode="s" glyph-name="s" horiz-adv-x="954" d="M856 283Q856 137 745 59T430 -20Q212 -20 84 47V154Q248 72 430 72Q591 72 674 125T758 268Q758 350 692 406T473 516Q310 575 244 617T145 713T111 844Q111 966 213 1037T500 1108Q676 1108 834 1042L797
952Q637 1018 500 1018Q367 1018 289 974T211 852Q211 767 271 716T508 602Q655 549 722 507T822 410T856 283Z" />
<glyph unicode="t" glyph-name="t" horiz-adv-x="686" d="M469 68Q563 68 633 84V4Q561 -20 467 -20Q323 -20 255 57T186 299V1001H25V1059L186 1104L236 1350H287V1087H606V1001H287V313Q287 188 331 128T469 68Z" />
<glyph unicode="u" glyph-name="u" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268Z" />
<glyph unicode="v" glyph-name="v" horiz-adv-x="940" d="M420 0L0 1087H102L383 348Q439 206 467 100H473Q514 236 557 350L838 1087H940L520 0H420Z" />
<glyph unicode="w" glyph-name="w" horiz-adv-x="1481" d="M1051 0L813 727Q790 801 754 944H748L727 870L682 725L440 0H342L31 1087H137L311 457Q372 223 391 113H397Q456 347 483 424L707 1087H797L1010 426Q1082 191 1098 115H1104Q1112 180 1184 463L1350
1087H1450L1155 0H1051Z" />
<glyph unicode="x" glyph-name="x" horiz-adv-x="1020" d="M449 559L70 1087H184L508 629L829 1087H938L565 559L965 0H850L508 485L164 0H55L449 559Z" />
<glyph unicode="y" glyph-name="y" horiz-adv-x="940" d="M0 1087H102L332 477Q437 196 465 98H471Q513 227 608 483L838 1087H940L453 -176Q394 -330 354 -384T261 -465T131 -492Q74 -492 4 -471V-385Q62 -401 129 -401Q180 -401 219 -377T289 -303T362 -143T416
0L0 1087Z" />
<glyph unicode="z" glyph-name="z" horiz-adv-x="944" d="M858 0H82V63L727 999H129V1087H856V1024L207 88H858V0Z" />
<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="723" d="M389 -27Q389 -129 448 -179T651 -233V-324Q456 -324 374 -249T291 -18V319Q291 524 61 528V608Q183 610 237 659T291 807V1157Q291 1456 651 1462V1372Q513 1367 451 1314T389 1157V852Q389 722
345 658T203 573V565Q300 545 344 482T389 295V-27Z" />
<glyph unicode="|" glyph-name="bar" horiz-adv-x="1108" d="M508 1561H600V-506H508V1561Z" />
<glyph unicode="}" glyph-name="braceright" horiz-adv-x="723" d="M334 295Q334 418 378 481T520 565V573Q423 593 379 657T334 852V1157Q334 1260 273 1313T72 1372V1462Q246 1462 339 1385T432 1157V807Q432 707 486 659T662 608V528Q432 524 432 319V-18Q432
-173 350 -248T72 -324V-233Q213 -231 273 -181T334 -27V295Z" />
<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1169" d="M334 745Q285 745 226 715T111 625V719Q219 829 344 829Q405 829 459 816T614 758Q740 700 834 700Q890 700 943 730T1059 825V729Q1011 680 955 648T825 616Q709 616 555 688Q431 745 334 745Z" />
<glyph unicode="&#xa0;" glyph-name="nbspace" horiz-adv-x="532" />
<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="492" d="M215 711H276L305 -375H186L215 711ZM166 1010Q166 1108 246 1108Q328 1108 328 1010Q328 957 305 934T246 911Q212 911 189 934T166 1010Z" />
<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1169" d="M602 190Q416 220 314 365T211 745Q211 977 313 1126T602 1309V1483H684V1317H698Q829 1317 973 1262L942 1178Q808 1229 705 1229Q518 1229 417 1107T315 748Q315 523 415 399T696 274Q827 274
963 332V240Q853 184 696 184H684V-20H602V190Z" />
<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1169" d="M412 676V420Q412 304 377 224T264 96H1073V0H78V84Q188 105 249 194T311 418V676H100V758H311V1055Q311 1259 409 1370T690 1481Q865 1481 1020 1413L985 1327Q828 1393 690 1393Q549 1393
481 1312T412 1059V758H823V676H412Z" />
<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1169" d="M991 723Q991 572 901 467L1040 326L981 266L844 408Q734 315 584 315Q431 315 324 408L186 266L127 326L266 467Q176 573 176 723Q176 870 266 981L127 1122L186 1182L324 1040Q427 1133
584 1133Q739 1133 844 1040L981 1182L1040 1122L901 981Q991 870 991 723ZM584 395Q718 395 812 490T907 723Q907 859 812 956T584 1053Q450 1053 355 956T260 723Q260 587 354 491T584 395Z" />
<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1169" d="M586 666L1014 1462H1124L692 674H975V592H637V387H975V305H637V0H532V305H195V387H532V592H195V674H473L43 1462H160L586 666Z" />
<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1108" d="M508 1561H600V797H508V1561ZM508 258H600V-506H508V258Z" />
<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1057" d="M145 813Q145 896 195 965T334 1073Q248 1120 209 1175T170 1311Q170 1428 271 1494T547 1561Q722 1561 883 1497L848 1417Q757 1451 690 1464T545 1477Q411 1477 340 1433T268 1313Q268 1259
293 1225T379 1159T567 1085Q759 1021 831 953T903 782Q903 609 717 508Q803 466 846 412T889 276Q889 141 776 69T465 -4Q373 -4 294 11T129 63V158Q311 80 461 80Q623 80 708 129T793 270Q793 325 768 357T680 423T489 502Q289 575 217 643T145 813ZM246 825Q246
760 277 721T383 646T633 547Q715 588 759 645T803 766Q803 828 771 868T663 945T426 1032Q345 1009 296 953T246 825Z" />
<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1182" d="M336 1389Q336 1435 351 1455T399 1475Q463 1475 463 1389Q463 1303 399 1303Q336 1303 336 1389ZM717 1389Q717 1435 732 1455T780 1475Q844 1475 844 1389Q844 1303 780 1303Q717 1303 717 1389Z" />
<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M897 1092Q755 1092 675 998T594 733Q594 547 668 458T889 369Q973 369 1087 412V324Q985 279 879 279Q692 279 591 394T489 725Q489 933 600 1057T897 1182Q1016 1182 1124 1130L1087 1047Q989
1092 897 1092ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM193 731Q193 553 281 402T522 161T852 72Q1030 72 1181 160T1422 401T1511 731Q1511
905 1426 1056T1187 1299T852 1391Q676 1391 524 1303T282 1060T193 731Z" />
<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="686" d="M512 813L487 885Q403 801 285 801Q190 801 134 850T78 989Q78 1089 158 1140T399 1200L494 1204V1247Q494 1324 456 1361T350 1399Q263 1399 154 1350L121 1423Q238 1479 352 1479Q580
1479 580 1264V813H512ZM168 993Q168 939 203 908T299 877Q389 877 441 927T494 1069V1133L406 1128Q290 1122 229 1092T168 993Z" />
<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="885" d="M82 543L391 936L453 893L199 530L453 168L391 125L82 516V543ZM442 543L752 936L813 893L559 530L813 168L752 125L442 516V543Z" />
<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1169" d="M1038 764V270H956V682H111V764H1038Z" />
<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M92 512V594H567V512H92Z" />
<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M709 731H821Q912 731 964 777T1016 913Q1016 1085 819 1085H709V731ZM1120 918Q1120 839 1082 779T971 684L1208 291H1087L877 651H709V291H608V1171H819Q962 1171 1041 1109T1120 918ZM100
731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM193 731Q193 553 281 402T522 161T852 72Q1030 72 1181 160T1422 401T1511 731Q1511 905 1426 1056T1187
1299T852 1391Q676 1391 524 1303T282 1060T193 731Z" />
<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1638H1030V1556Z" />
<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M139 1184Q139 1316 225 1399T438 1483Q564 1483 650 1400T737 1184Q737 1052 651 969T438 885Q308 885 224 968T139 1184ZM229 1184Q229 1093 290 1030T438 967Q524 967 585 1029T647 1184Q647
1276 587 1338T438 1401Q348 1401 289 1337T229 1184Z" />
<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1169" d="M111 1V83H1059V1H111ZM625 764H1059V682H625V250H543V682H111V764H543V1198H625V764Z" />
<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="688" d="M629 586H53V664L295 901Q420 1022 467 1094T514 1243Q514 1314 468 1355T344 1397Q236 1397 127 1315L78 1380Q197 1483 348 1483Q472 1483 542 1420T612 1245Q612 1198 599 1156T559
1071T491 981T182 674H629V586Z" />
<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="688" d="M616 1260Q616 1182 572 1129T455 1053Q641 1008 641 842Q641 712 553 641T305 569Q161 569 41 629V717Q177 655 307 655Q422 655 481 704T541 840Q541 923 482 962T303 1001H172V1085H307Q412
1085 465 1128T518 1249Q518 1316 471 1356T344 1397Q216 1397 98 1319L51 1389Q181 1483 344 1483Q471 1483 543 1423T616 1260Z" />
<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1182" d="M393 1257Q466 1336 537 1428T635 1569H776V1552Q740 1500 654 1414T463 1241H393V1257Z" />
<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1221" d="M281 1087V383Q281 219 350 145T563 70Q757 70 848 168T940 487V1087H1038V0H954L936 150H930Q880 73 780 27T563 -20Q464 -20 396 7T276 92Q281 0 281 -78V-492H182V1087H281Z" />
<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1106 -260H1006V1462H778V-260H678V559Q614 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1106V-260Z" />
<glyph unicode="&#xb7;" glyph-name="middot" horiz-adv-x="487" d="M162 721Q162 819 242 819Q324 819 324 721Q324 623 242 623Q162 623 162 721Z" />
<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M393 -291Q393 -391 326 -441T137 -492Q69 -492 43 -481V-393Q73 -403 135 -403Q213 -403 254 -375T295 -295Q295 -201 102 -174L195 0H291L225 -117Q393 -154 393 -291Z" />
<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="688" d="M350 1462H442V586H344V1133Q344 1232 356 1366Q330 1343 123 1221L76 1298L350 1462Z" />
<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="739" d="M670 1141Q670 980 590 891T367 801Q224 801 147 887T70 1141Q70 1303 148 1391T371 1479Q513 1479 591 1392T670 1141ZM160 1141Q160 877 369 877Q578 877 578 1141Q578 1272 528 1335T369
1399Q260 1399 210 1336T160 1141Z" />
<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="885" d="M803 518L494 125L432 168L686 530L432 893L494 936L803 545V518ZM442 518L133 125L72 168L326 530L72 893L133 936L442 545V518Z" />
<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1516" d="M589 1462H681V586H583V1133Q583 1232 595 1366Q569 1343 362 1221L315 1298L589 1462ZM1148 1462L337 0H243L1054 1462H1148ZM1392 242H1263V1H1173V242H760V302L1167 883H1263V320H1392V242ZM1173
320V541Q1173 673 1181 773Q1175 761 1160 738T864 320H1173Z" />
<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1516" d="M541 1462H633V586H535V1133Q535 1232 547 1366Q521 1343 314 1221L267 1298L541 1462ZM1073 1462L262 0H168L979 1462H1073ZM1403 1H827V79L1069 316Q1194 437 1241 509T1288 658Q1288 729
1242 770T1118 812Q1010 812 901 730L852 795Q971 898 1122 898Q1246 898 1316 835T1386 660Q1386 613 1373 571T1333 486T1265 396T956 89H1403V1Z" />
<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1516" d="M616 1260Q616 1182 572 1129T455 1053Q641 1008 641 842Q641 712 553 641T305 569Q161 569 41 629V717Q177 655 307 655Q422 655 481 704T541 840Q541 923 482 962T303 1001H172V1085H307Q412
1085 465 1128T518 1249Q518 1316 471 1356T344 1397Q216 1397 98 1319L51 1389Q181 1483 344 1483Q471 1483 543 1423T616 1260ZM1300 1462L489 0H395L1206 1462H1300ZM1495 242H1366V1H1276V242H863V302L1270 883H1366V320H1495V242ZM1276 320V541Q1276 673 1284
773Q1278 761 1263 738T967 320H1276Z" />
<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="862" d="M569 711V674Q569 549 530 470T393 305L303 226Q230 165 199 106T168 -33Q168 -157 250 -233T471 -309Q596 -309 704 -263L768 -236L805 -315Q694 -363 620 -379T467 -395Q283 -395 179
-296T74 -27Q74 43 94 97T152 199T324 358Q388 411 422 456T472 550T487 696V711H569ZM440 1010Q440 1108 520 1108Q602 1108 602 1010Q602 957 579 934T520 911Q486 911 463 934T440 1010Z" />
<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM720 1579H651Q555 1658 463 1750T337 1890V1907H479Q505 1859
577 1765T720 1595V1579Z" />
<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM504 1595Q577 1674 648 1766T746 1907H887V1890Q851 1838
765 1752T574 1579H504V1595Z" />
<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM328 1595Q390 1662 459 1751T570 1907H668Q736 1787
910 1595V1579H840Q718 1680 619 1786Q511 1672 398 1579H328V1595Z" />
<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM784 1581Q748 1581 709 1599T608 1671Q576 1697 546 1717T483
1737Q438 1737 408 1703T360 1581H287Q297 1692 350 1755T487 1819Q535 1819 575 1794T657 1735Q691 1707 723 1685T784 1663Q830 1663 861 1699T909 1819H985Q969 1703 916 1642T784 1581Z" />
<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM367 1727Q367 1773 382 1793T430 1813Q494 1813 494 1727Q494
1641 430 1641Q367 1641 367 1727ZM748 1727Q748 1773 763 1793T811 1813Q875 1813 875 1727Q875 1641 811 1641Q748 1641 748 1727Z" />
<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM836 1610Q836 1513 776 1455T619 1397Q522 1397 462 1455T402
1610Q402 1704 462 1762T619 1821Q716 1821 776 1762T836 1610ZM482 1610Q482 1544 519 1507T619 1469Q681 1469 718 1506T756 1610Q756 1674 717 1711T619 1749Q557 1749 520 1711T482 1610Z" />
<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1653" d="M1528 0H811V516H336L109 0H-2L651 1462H1528V1368H913V815H1489V721H913V94H1528V0ZM377 608H811V1368H711L377 608Z" />
<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1272" d="M831 1391Q556 1391 398 1215T240 733Q240 420 389 247T815 74Q999 74 1153 121V31Q1008 -20 791 -20Q483 -20 306 179T129 735Q129 958 213 1128T456 1390T825 1483Q1039 1483 1208 1403L1167
1311Q1007 1391 831 1391ZM911 -291Q911 -391 844 -441T655 -492Q587 -492 561 -481V-393Q591 -403 653 -403Q731 -403 772 -375T813 -295Q813 -201 620 -174L713 0H809L743 -117Q911 -154 911 -291Z" />
<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM697 1579H628Q532 1658 440 1750T314 1890V1907H456Q482 1859 554 1765T697 1595V1579Z" />
<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM463 1595Q536 1674 607 1766T705 1907H846V1890Q810 1838 724 1752T533 1579H463V1595Z" />
<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM315 1595Q377 1662 446 1751T557 1907H655Q723 1787 897 1595V1579H827Q705 1680 606 1786Q498 1672 385 1579H315V1595Z" />
<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM354 1727Q354 1773 369 1793T417 1813Q481 1813 481 1727Q481 1641 417 1641Q354 1641 354 1727ZM735 1727Q735 1773 750 1793T798
1813Q862 1813 862 1727Q862 1641 798 1641Q735 1641 735 1727Z" />
<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM320 1579H251Q155 1658 63 1750T-63 1890V1907H79Q105 1859 177 1765T320 1595V1579Z" />
<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM191 1595Q264 1674 335 1766T433 1907H574V1890Q538 1838 452 1752T261 1579H191V1595Z" />
<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM-32 1595Q30 1662 99 1751T210 1907H308Q376 1787 550 1595V1579H480Q358 1680 259 1786Q151 1672 38 1579H-32V1595Z" />
<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM5 1727Q5 1773 20 1793T68 1813Q132 1813 132 1727Q132 1641 68 1641Q5 1641 5 1727ZM386 1727Q386 1773 401 1793T449 1813Q513 1813 513 1727Q513 1641 449 1641Q386
1641 386 1727Z" />
<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1466" d="M1317 745Q1317 377 1124 189T557 0H207V678H47V772H207V1462H602Q952 1462 1134 1279T1317 745ZM1206 741Q1206 1055 1047 1213T578 1372H309V772H715V678H309V90H551Q1206 90 1206 741Z" />
<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1477" d="M1270 0H1167L301 1298H293Q305 1066 305 948V0H207V1462H309L1174 166H1180Q1171 346 1171 508V1462H1270V0ZM897 1581Q861 1581 822 1599T721 1671Q689 1697 659 1717T596 1737Q551 1737
521 1703T473 1581H400Q410 1692 463 1755T600 1819Q648 1819 688 1794T770 1735Q804 1707 836 1685T897 1663Q943 1663 974 1699T1022 1819H1098Q1082 1703 1029 1642T897 1581Z" />
<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM885 1579H816Q720 1658 628 1750T502 1890V1907H644Q670 1859 742 1765T885 1595V1579Z" />
<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM686 1595Q759 1674 830 1766T928 1907H1069V1890Q1033 1838 947 1752T756 1579H686V1595Z" />
<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325
733Q1325 1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM492 1595Q554 1662 623 1751T734 1907H832Q900 1787 1074 1595V1579H1004Q882 1680 783 1786Q675 1672 562 1579H492V1595Z" />
<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM940 1581Q904 1581 865 1599T764 1671Q732 1697 702 1717T639 1737Q594 1737 564 1703T516 1581H443Q453 1692 506 1755T643 1819Q691 1819 731 1794T813 1735Q847 1707 879 1685T940 1663Q986 1663 1017 1699T1065
1819H1141Q1125 1703 1072 1642T940 1581Z" />
<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM529 1727Q529 1773 544 1793T592 1813Q656 1813 656 1727Q656 1641 592 1641Q529 1641 529 1727ZM910 1727Q910 1773 925 1793T973 1813Q1037 1813 1037 1727Q1037 1641 973 1641Q910 1641 910 1727Z" />
<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1169" d="M584 780L993 1188L1051 1130L643 723L1049 315L991 258L584 666L178 258L121 315L526 723L119 1130L176 1188L584 780Z" />
<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q546 -20 387 100L301 -20L227 39L317 166Q129 366 129 735Q129 1084 304 1284T784 1485Q1016 1485 1176 1364L1284 1516L1356 1456L1245 1303Q1436 1096
1436 733ZM1325 733Q1325 1048 1186 1219L444 182Q577 76 782 76Q1046 76 1185 246T1325 733ZM240 733Q240 421 379 250L1118 1284Q985 1386 784 1386Q523 1386 382 1216T240 733Z" />
<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM833 1579H764Q668 1658 576 1750T450 1890V1907H592Q618
1859 690 1765T833 1595V1579Z" />
<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM633 1595Q706 1674 777 1766T875 1907H1016V1890Q980
1838 894 1752T703 1579H633V1595Z" />
<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM444 1595Q506 1662 575 1751T686 1907H784Q852
1787 1026 1595V1579H956Q834 1680 735 1786Q627 1672 514 1579H444V1595Z" />
<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM481 1727Q481 1773 496 1793T544 1813Q608
1813 608 1727Q608 1641 544 1641Q481 1641 481 1727ZM862 1727Q862 1773 877 1793T925 1813Q989 1813 989 1727Q989 1641 925 1641Q862 1641 862 1727Z" />
<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1081" d="M543 662L971 1462H1081L594 565V0H489V557L0 1462H117L543 662ZM434 1595Q507 1674 578 1766T676 1907H817V1890Q781 1838 695 1752T504 1579H434V1595Z" />
<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1198" d="M1087 778Q1087 566 943 453T535 340H309V0H207V1462H309V1198H565Q1087 1198 1087 778ZM309 428H510Q757 428 867 509T977 774Q977 943 873 1024T551 1106H309V428Z" />
<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1194" d="M961 1284Q961 1145 822 1034Q741 970 712 934T682 858Q682 814 696 790T748 733T850 655Q956 580 1001 531T1069 428T1092 307Q1092 151 1004 66T758 -20Q663 -20 584 -2T457 47V154Q522
116 605 92T758 68Q872 68 932 122T993 283Q993 366 954 427T805 563Q678 650 630 710T582 856Q582 916 614 966T721 1074Q795 1131 827 1179T860 1286Q860 1379 790 1429T588 1479Q443 1479 362 1410T281 1214V0H182V1206Q182 1379 285 1473T578 1567Q766 1567
863 1495T961 1284Z" />
<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM638 1241H569Q473 1320 381 1412T255 1552V1569H397Q423 1521 495 1427T638 1257V1241Z" />
<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM422 1257Q495 1336 566 1428T664 1569H805V1552Q769 1500 683 1414T492 1241H422V1257Z" />
<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738
1106 826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM507 1257Q569 1324 638 1413T749 1569H847Q915 1449 1089 1257V1241H1019Q897 1342 798 1448Q690 1334 577 1241H507V1257Z" />
<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM953 1243Q917 1243 878 1261T777 1333Q745 1359 715 1379T652 1399Q607 1399 577 1365T529 1243H456Q466 1354 519 1417T656 1481Q704 1481
744 1456T826 1397Q860 1369 892 1347T953 1325Q999 1325 1030 1361T1078 1481H1154Q1138 1365 1085 1304T953 1243Z" />
<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM538 1389Q538 1435 553 1455T601 1475Q665 1475 665 1389Q665 1303 601 1303Q538 1303 538 1389ZM919 1389Q919 1435 934 1455T982 1475Q1046
1475 1046 1389Q1046 1303 982 1303Q919 1303 919 1389Z" />
<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM1015 1456Q1015 1359 955 1301T798 1243Q701 1243 641 1301T581 1456Q581 1550 641 1608T798 1667Q895 1667 955 1608T1015 1456ZM661 1456Q661
1390 698 1353T798 1315Q860 1315 897 1352T935 1456Q935 1520 896 1557T798 1595Q736 1595 699 1557T661 1456Z" />
<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1731" d="M1243 -20Q948 -20 846 236Q778 103 678 42T426 -20Q270 -20 184 62T98 289Q98 443 223 532T600 629L801 635V707Q801 862 740 941T541 1020Q393 1020 236 936L199 1022Q372 1106 545 1106Q806
1106 870 895Q981 1108 1217 1108Q1401 1108 1506 974T1612 610V530H897Q897 70 1245 70Q1330 70 1395 82T1569 139V49Q1477 8 1404 -6T1243 -20ZM434 70Q603 70 700 169T797 446V553L610 545Q391 534 297 474T203 285Q203 183 264 127T434 70ZM1217 1020Q933 1020
903 618H1507Q1507 806 1430 913T1217 1020Z" />
<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="973" d="M616 -20Q383 -20 251 127T119 537Q119 807 256 957T631 1108Q772 1108 901 1059L874 971Q733 1018 629 1018Q429 1018 326 895T223 539Q223 319 326 195T614 70Q762 70 889 123V31Q785 -20
616 -20ZM723 -291Q723 -391 656 -441T467 -492Q399 -492 373 -481V-393Q403 -403 465 -403Q543 -403 584 -375T625 -295Q625 -201 432 -174L525 0H621L555 -117Q723 -154 723 -291Z" />
<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
1020 340 917T229 618H901Q901 807 819 913T592 1020ZM941 1241H872Q776 1320 684 1412T558 1552V1569H700Q726 1521 798 1427T941 1257V1241Z" />
<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
1020 340 917T229 618H901Q901 807 819 913T592 1020ZM452 1257Q525 1336 596 1428T694 1569H835V1552Q799 1500 713 1414T522 1241H452V1257Z" />
<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
1020 340 917T229 618H901Q901 807 819 913T592 1020ZM546 1257Q608 1324 677 1413T788 1569H886Q954 1449 1128 1257V1241H1058Q936 1342 837 1448Q729 1334 616 1241H546V1257Z" />
<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
1020 340 917T229 618H901Q901 807 819 913T592 1020ZM587 1389Q587 1435 602 1455T650 1475Q714 1475 714 1389Q714 1303 650 1303Q587 1303 587 1389ZM968 1389Q968 1435 983 1455T1031 1475Q1095 1475 1095 1389Q1095 1303 1031 1303Q968 1303 968 1389Z" />
<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM349 1241H280Q184 1320 92 1412T-34 1552V1569H108Q134 1521 206 1427T349 1257V1241Z" />
<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM107 1257Q180 1336 251 1428T349 1569H490V1552Q454 1500 368 1414T177 1241H107V1257Z" />
<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM-58 1257Q4 1324 73 1413T184 1569H282Q350 1449 524 1257V1241H454Q332 1342 233 1448Q125 1334 12 1241H-58V1257Z" />
<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM-21 1389Q-21 1435 -6 1455T42 1475Q106 1475 106 1389Q106 1303 42 1303Q-21 1303 -21 1389ZM360 1389Q360 1435 375 1455T423 1475Q487 1475 487 1389Q487 1303
423 1303Q360 1303 360 1389Z" />
<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1174" d="M1055 559Q1055 283 931 132T582 -20Q368 -20 243 110T117 471Q117 699 243 828T586 958Q694 958 773 925T922 829L926 831Q862 1101 657 1290L387 1133L338 1210L582 1356Q496 1418 383 1475L428
1556Q575 1487 676 1411L901 1548L950 1464L748 1343Q902 1192 978 990T1055 559ZM950 557Q950 703 853 785T586 868Q401 868 311 768T221 463Q221 277 315 174T584 70Q763 70 856 193T950 557Z" />
<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1208" d="M940 0V705Q940 869 871 943T657 1018Q462 1018 372 920T281 600V0H182V1087H266L285 938H291Q397 1108 668 1108Q1038 1108 1038 711V0H940ZM1035 1243Q999 1243 960 1261T859 1333Q827 1359
797 1379T734 1399Q689 1399 659 1365T611 1243H538Q548 1354 601 1417T738 1481Q786 1481 826 1456T908 1397Q942 1369 974 1347T1035 1325Q1081 1325 1112 1361T1160 1481H1236Q1220 1365 1167 1304T1035 1243Z" />
<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
770 878 894T598 1018Q418 1018 321 895T223 545ZM974 1241H905Q809 1320 717 1412T591 1552V1569H733Q759 1521 831 1427T974 1257V1241Z" />
<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
770 878 894T598 1018Q418 1018 321 895T223 545ZM499 1257Q572 1336 643 1428T741 1569H882V1552Q846 1500 760 1414T569 1241H499V1257Z" />
<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
770 878 894T598 1018Q418 1018 321 895T223 545ZM309 1257Q371 1324 440 1413T551 1569H649Q717 1449 891 1257V1241H821Q699 1342 600 1448Q492 1334 379 1241H309V1257Z" />
<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
770 878 894T598 1018Q418 1018 321 895T223 545ZM1017 1243Q981 1243 942 1261T841 1333Q809 1359 779 1379T716 1399Q671 1399 641 1365T593 1243H520Q530 1354 583 1417T720 1481Q768 1481 808 1456T890 1397Q924 1369 956 1347T1017 1325Q1063 1325 1094 1361T1142
1481H1218Q1202 1365 1149 1304T1017 1243Z" />
<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
770 878 894T598 1018Q418 1018 321 895T223 545ZM346 1389Q346 1435 361 1455T409 1475Q473 1475 473 1389Q473 1303 409 1303Q346 1303 346 1389ZM727 1389Q727 1435 742 1455T790 1475Q854 1475 854 1389Q854 1303 790 1303Q727 1303 727 1389Z" />
<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1169" d="M111 682V764H1059V682H111ZM504 1075Q504 1174 584 1174Q666 1174 666 1075Q666 1023 643 1000T584 977Q550 977 527 1000T504 1075ZM504 371Q504 469 584 469Q666 469 666 371Q666 318 643
295T584 272Q550 272 527 295T504 371Z" />
<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q423 -20 305 78L219 -35L147 23L240 143Q119 296 119 545Q119 811 248 959T602 1108Q781 1108 903 1004L999 1128L1073 1073L969 936Q1081 789 1081 545ZM223
545Q223 345 301 223L844 928Q746 1018 598 1018Q418 1018 321 895T223 545ZM977 545Q977 735 905 854L362 152Q456 70 600 70Q780 70 878 195T977 545Z" />
<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM943 1241H874Q778 1320 686 1412T560 1552V1569H702Q728
1521 800 1427T943 1257V1241Z" />
<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM495 1257Q568 1336 639 1428T737 1569H878V1552Q842
1500 756 1414T565 1241H495V1257Z" />
<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM313 1257Q375 1324 444 1413T555 1569H653Q721
1449 895 1257V1241H825Q703 1342 604 1448Q496 1334 383 1241H313V1257Z" />
<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM350 1389Q350 1435 365 1455T413 1475Q477 1475
477 1389Q477 1303 413 1303Q350 1303 350 1389ZM731 1389Q731 1435 746 1455T794 1475Q858 1475 858 1389Q858 1303 794 1303Q731 1303 731 1389Z" />
<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="940" d="M0 1087H102L332 477Q437 196 465 98H471Q513 227 608 483L838 1087H940L453 -176Q394 -330 354 -384T261 -465T131 -492Q74 -492 4 -471V-385Q62 -401 129 -401Q180 -401 219 -377T289 -303T362
-143T416 0L0 1087ZM617 1257Q690 1336 761 1428T859 1569H1000V1552Q964 1500 878 1414T687 1241H617V1257Z" />
<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1219" d="M281 918Q395 1108 649 1108Q869 1108 984 964T1100 543Q1100 275 979 128T647 -20Q396 -20 281 168H274L277 84Q281 10 281 -78V-492H182V1556H281V1165L274 918H281ZM645 68Q812 68 903 192T995
539Q995 1018 647 1018Q454 1018 368 913T281 559V541Q281 286 366 177T645 68Z" />
<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="940" d="M0 1087H102L332 477Q437 196 465 98H471Q513 227 608 483L838 1087H940L453 -176Q394 -330 354 -384T261 -465T131 -492Q74 -492 4 -471V-385Q62 -401 129 -401Q180 -401 219 -377T289 -303T362
-143T416 0L0 1087ZM470 1389Q470 1435 485 1455T533 1475Q597 1475 597 1389Q597 1303 533 1303Q470 1303 470 1389ZM851 1389Q851 1435 866 1455T914 1475Q978 1475 978 1389Q978 1303 914 1303Q851 1303 851 1389Z" />
<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 512V594H942V512H82Z" />
<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 512V594H1966V512H82Z" />
<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="297" d="M41 961L29 981Q61 1093 110 1232T203 1462H268Q238 1361 204 1205T158 961H41Z" />
<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="297" d="M256 1462L268 1442Q193 1177 94 961H29Q58 1057 90 1202T139 1462H256Z" />
<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="451" d="M295 238L307 218Q232 -47 133 -263H68Q97 -167 129 -22T178 238H295Z" />
<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="614" d="M358 961L346 981Q380 1101 429 1236T520 1462H586Q556 1364 523 1214T475 961H358ZM41 961L29 981Q61 1093 110 1232T203 1462H268Q238 1361 204 1205T158 961H41Z" />
<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="614" d="M256 1462L268 1442Q193 1177 94 961H29Q58 1057 90 1202T139 1462H256ZM573 1462L586 1442Q550 1314 501 1181T412 961H346Q376 1059 409 1209T457 1462H573Z" />
<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="768" d="M295 238L307 218Q232 -47 133 -263H68Q97 -167 129 -22T178 238H295ZM612 238L625 218Q589 90 540 -43T451 -263H385Q415 -165 448 -15T496 238H612Z" />
<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M231 748Q231 837 271 882T385 928Q458 928 498 881T539 748Q539 663 498 615T385 567Q313 567 272 614T231 748Z" />
<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="524" d="M82 543L391 936L453 893L199 530L453 168L391 125L82 516V543Z" />
<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="524" d="M442 518L133 125L72 168L326 530L72 893L133 936L442 545V518Z" />
</font>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,334 @@
<?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 xmlns="http://www.w3.org/2000/svg">
<defs >
<font id="OpenSans" horiz-adv-x="1295" ><font-face
font-family="Open Sans"
units-per-em="2048"
panose-1="2 11 8 6 3 5 4 2 2 4"
ascent="2189"
descent="-600"
alphabetic="0" />
<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
<glyph unicode="!" glyph-name="exclam" horiz-adv-x="586" d="M416 485H172L121 1462H467L416 485ZM117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143Z" />
<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="967" d="M412 1462L371 934H174L133 1462H412ZM834 1462L793 934H596L555 1462H834Z" />
<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M999 844L952 612H1210V406H913L836 0H616L694 406H500L424 0H209L283 406H45V612H322L369 844H117V1053H406L483 1460H702L625 1053H823L901 1460H1116L1038 1053H1278V844H999ZM539 612H735L782
844H586L539 612Z" />
<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1169" d="M1092 457Q1092 298 977 202T655 86V-119H518V82Q274 87 90 168V432Q177 389 299 356T518 317V627L451 653Q253 731 171 822T88 1049Q88 1194 201 1287T518 1401V1554H655V1405Q884 1395 1069 1313L975
1079Q819 1143 655 1157V862Q850 787 932 732T1053 611T1092 457ZM791 442Q791 484 757 513T655 573V324Q791 347 791 442ZM389 1049Q389 1005 419 977T518 918V1153Q389 1134 389 1049Z" />
<glyph unicode="%" glyph-name="percent" horiz-adv-x="1845" d="M315 1024Q315 897 337 835T410 772Q506 772 506 1024Q506 1274 410 1274Q360 1274 338 1213T315 1024ZM758 1026Q758 796 669 681T408 565Q243 565 153 683T63 1026Q63 1483 408 1483Q577 1483
667 1365T758 1026ZM1446 1462L635 0H395L1206 1462H1446ZM1339 440Q1339 313 1361 251T1434 188Q1530 188 1530 440Q1530 690 1434 690Q1384 690 1362 629T1339 440ZM1782 442Q1782 213 1693 98T1432 -18Q1267 -18 1177 100T1087 442Q1087 899 1432 899Q1601 899
1691 781T1782 442Z" />
<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1536" d="M1536 0H1159L1044 113Q853 -20 612 -20Q368 -20 225 92T82 395Q82 532 142 628T350 809Q275 895 241 973T207 1145Q207 1297 323 1390T635 1483Q821 1483 932 1397T1044 1165Q1044 1046
975 948T752 760L1036 483Q1107 600 1159 784H1477Q1441 649 1378 521T1235 293L1536 0ZM403 424Q403 338 467 287T633 236Q759 236 860 297L528 627Q470 583 437 535T403 424ZM762 1133Q762 1186 726 1216T633 1247Q566 1247 528 1215T489 1124Q489 1036 584 930Q670
978 716 1024T762 1133Z" />
<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="545" d="M412 1462L371 934H174L133 1462H412Z" />
<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="694" d="M82 561Q82 826 159 1057T383 1462H633Q492 1269 420 1038T348 563Q348 318 421 90T631 -324H383Q236 -154 159 73T82 561Z" />
<glyph unicode=")" glyph-name="parenright" horiz-adv-x="694" d="M612 561Q612 298 535 71T311 -324H63Q198 -140 272 88T346 563Q346 807 274 1038T61 1462H311Q458 1287 535 1056T612 561Z" />
<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1116" d="M688 1556L647 1188L1020 1292L1053 1040L713 1016L936 719L709 598L553 911L416 600L180 719L401 1016L63 1042L102 1292L467 1188L426 1556H688Z" />
<glyph unicode="+" glyph-name="plus" horiz-adv-x="1169" d="M475 612H88V831H475V1221H694V831H1081V612H694V227H475V612Z" />
<glyph unicode="," glyph-name="comma" horiz-adv-x="594" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215Z" />
<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M61 424V674H598V424H61Z" />
<glyph unicode="." glyph-name="period" horiz-adv-x="584" d="M117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143Z" />
<glyph unicode="/" glyph-name="slash" horiz-adv-x="846" d="M836 1462L291 0H14L559 1462H836Z" />
<glyph unicode="0" glyph-name="zero" horiz-adv-x="1169" d="M1096 731Q1096 348 971 164T584 -20Q331 -20 203 170T74 731Q74 1118 199 1301T584 1485Q837 1485 966 1293T1096 731ZM381 731Q381 462 427 346T584 229Q692 229 740 347T788 731Q788 1000 740 1117T584
1235Q475 1235 428 1118T381 731Z" />
<glyph unicode="1" glyph-name="one" horiz-adv-x="1169" d="M846 0H537V846L540 985L545 1137Q468 1060 438 1036L270 901L121 1087L592 1462H846V0Z" />
<glyph unicode="2" glyph-name="two" horiz-adv-x="1169" d="M1104 0H82V215L449 586Q612 753 662 817T734 937T756 1051Q756 1139 708 1182T578 1225Q493 1225 413 1186T246 1075L78 1274Q186 1366 257 1404T412 1462T600 1483Q737 1483 842 1433T1005 1293T1063
1087Q1063 986 1028 898T918 716T655 451L467 274V260H1104V0Z" />
<glyph unicode="3" glyph-name="three" horiz-adv-x="1169" d="M1047 1135Q1047 998 964 902T731 770V764Q908 742 999 657T1090 426Q1090 215 937 98T500 -20Q262 -20 78 59V322Q163 279 265 252T467 225Q620 225 693 277T766 444Q766 547 682 590T414 633H303V870H416Q586
870 664 914T743 1067Q743 1233 535 1233Q463 1233 389 1209T223 1126L80 1339Q280 1483 557 1483Q784 1483 915 1391T1047 1135Z" />
<glyph unicode="4" glyph-name="four" horiz-adv-x="1169" d="M1137 303H961V0H659V303H35V518L676 1462H961V543H1137V303ZM659 543V791Q659 853 664 971T672 1108H664Q627 1026 575 948L307 543H659Z" />
<glyph unicode="5" glyph-name="five" horiz-adv-x="1169" d="M614 934Q826 934 951 815T1077 489Q1077 244 926 112T494 -20Q250 -20 100 59V326Q179 284 284 258T483 231Q766 231 766 463Q766 684 473 684Q420 684 356 674T252 651L129 717L184 1462H977V1200H455L428
913L463 920Q524 934 614 934Z" />
<glyph unicode="6" glyph-name="six" horiz-adv-x="1169" d="M72 621Q72 1055 255 1267T805 1479Q930 1479 1001 1464V1217Q912 1237 825 1237Q666 1237 566 1189T415 1047T356 780H369Q468 950 686 950Q882 950 993 827T1104 487Q1104 253 972 117T606 -20Q444
-20 324 55T138 274T72 621ZM600 227Q699 227 752 293T805 483Q805 590 756 651T606 713Q512 713 446 652T379 510Q379 391 441 309T600 227Z" />
<glyph unicode="7" glyph-name="seven" horiz-adv-x="1169" d="M227 0L776 1200H55V1460H1104V1266L551 0H227Z" />
<glyph unicode="8" glyph-name="eight" horiz-adv-x="1169" d="M586 1481Q796 1481 924 1386T1053 1128Q1053 1016 991 929T791 772Q955 684 1026 589T1098 379Q1098 199 957 90T586 -20Q346 -20 209 82T72 371Q72 496 138 593T352 764Q227 843 172 933T117 1130Q117
1287 247 1384T586 1481ZM358 389Q358 303 418 255T582 207Q697 207 754 256T811 387Q811 454 755 512T571 637Q358 539 358 389ZM584 1255Q505 1255 457 1215T408 1106Q408 1046 446 999T586 901Q684 947 723 995T762 1106Q762 1175 712 1215T584 1255Z" />
<glyph unicode="9" glyph-name="nine" horiz-adv-x="1169" d="M1098 838Q1098 406 916 193T365 -20Q235 -20 168 -6V242Q252 221 344 221Q499 221 599 266T752 409T813 678H801Q743 584 667 546T477 508Q286 508 176 630T66 971Q66 1206 199 1342T563 1479Q725
1479 846 1403T1033 1183T1098 838ZM569 1231Q473 1231 419 1165T365 975Q365 869 414 807T563 745Q657 745 724 806T791 948Q791 1067 729 1149T569 1231Z" />
<glyph unicode=":" glyph-name="colon" horiz-adv-x="584" d="M117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143ZM117 969Q117 1053 162 1096T293 1139Q376 1139 421 1095T467 969Q467 888 421 844T293
799Q209 799 163 843T117 969Z" />
<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="594" d="M444 238L459 215Q407 13 283 -264H63Q128 2 164 238H444ZM117 969Q117 1053 162 1096T293 1139Q376 1139 421 1095T467 969Q467 888 421 844T293 799Q209 799 163 843T117 969Z" />
<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1169" d="M1081 203L88 641V784L1081 1280V1040L397 723L1081 442V203Z" />
<glyph unicode="=" glyph-name="equal" horiz-adv-x="1169" d="M88 805V1024H1081V805H88ZM88 418V637H1081V418H88Z" />
<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1169" d="M88 442L772 723L88 1040V1280L1081 784V641L88 203V442Z" />
<glyph unicode="?" glyph-name="question" horiz-adv-x="977" d="M276 485V559Q276 655 317 726T467 877Q572 952 605 999T639 1104Q639 1169 591 1203T457 1237Q307 1237 115 1139L6 1358Q229 1483 479 1483Q685 1483 806 1384T928 1120Q928 1010 878 930T688
750Q592 679 567 642T541 545V485H276ZM244 143Q244 227 289 270T420 313Q503 313 548 269T594 143Q594 64 548 19T420 -27Q336 -27 290 17T244 143Z" />
<glyph unicode="@" glyph-name="at" horiz-adv-x="1837" d="M1735 752Q1735 608 1689 489T1559 301T1364 233Q1290 233 1233 268T1151 362H1135Q1027 233 860 233Q683 233 581 339T479 631Q479 842 613 971T963 1100Q1049 1100 1152 1084T1323 1044L1300 555Q1300
416 1376 416Q1440 416 1478 509T1516 754Q1516 915 1449 1038T1261 1227T983 1292Q781 1292 632 1209T404 970T324 608Q324 332 471 185T899 37Q1005 37 1132 60T1382 129V-63Q1168 -154 907 -154Q527 -154 315 46T102 602Q102 849 210 1050T519 1366T981 1481Q1201
1481 1374 1391T1641 1135T1735 752ZM711 627Q711 416 883 416Q973 416 1020 479T1077 686L1090 907Q1039 918 975 918Q850 918 781 840T711 627Z" />
<glyph unicode="A" glyph-name="A" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899Z" />
<glyph unicode="B" glyph-name="B" horiz-adv-x="1376" d="M184 1462H639Q950 1462 1090 1374T1231 1092Q1231 961 1170 877T1006 776V766Q1145 735 1206 650T1268 424Q1268 224 1124 112T731 0H184V1462ZM494 883H674Q800 883 856 922T913 1051Q913 1135 852
1171T657 1208H494V883ZM494 637V256H696Q824 256 885 305T946 455Q946 637 686 637H494Z" />
<glyph unicode="C" glyph-name="C" horiz-adv-x="1305" d="M805 1225Q630 1225 534 1094T438 727Q438 238 805 238Q959 238 1178 315V55Q998 -20 776 -20Q457 -20 288 173T119 729Q119 957 202 1128T440 1391T805 1483Q1018 1483 1233 1380L1133 1128Q1051 1167
968 1196T805 1225Z" />
<glyph unicode="D" glyph-name="D" horiz-adv-x="1516" d="M1397 745Q1397 384 1192 192T598 0H184V1462H643Q1001 1462 1199 1273T1397 745ZM1075 737Q1075 1208 659 1208H494V256H627Q1075 256 1075 737Z" />
<glyph unicode="E" glyph-name="E" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0Z" />
<glyph unicode="F" glyph-name="F" horiz-adv-x="1124" d="M489 0H184V1462H1022V1208H489V831H985V578H489V0Z" />
<glyph unicode="G" glyph-name="G" horiz-adv-x="1483" d="M739 821H1319V63Q1178 17 1054 -1T799 -20Q468 -20 294 174T119 733Q119 1087 321 1285T883 1483Q1108 1483 1317 1393L1214 1145Q1054 1225 881 1225Q680 1225 559 1090T438 727Q438 489 535 364T819
238Q916 238 1016 258V563H739V821Z" />
<glyph unicode="H" glyph-name="H" horiz-adv-x="1567" d="M1382 0H1073V631H494V0H184V1462H494V889H1073V1462H1382V0Z" />
<glyph unicode="I" glyph-name="I" horiz-adv-x="678" d="M184 0V1462H494V0H184Z" />
<glyph unicode="J" glyph-name="J" horiz-adv-x="678" d="M31 -430Q-74 -430 -152 -408V-150Q-72 -170 -6 -170Q96 -170 140 -107T184 92V1462H494V94Q494 -162 377 -296T31 -430Z" />
<glyph unicode="K" glyph-name="K" horiz-adv-x="1360" d="M1360 0H1008L625 616L494 522V0H184V1462H494V793L616 965L1012 1462H1356L846 815L1360 0Z" />
<glyph unicode="L" glyph-name="L" horiz-adv-x="1157" d="M184 0V1462H494V256H1087V0H184Z" />
<glyph unicode="M" glyph-name="M" horiz-adv-x="1931" d="M803 0L451 1147H442Q461 797 461 680V0H184V1462H606L952 344H958L1325 1462H1747V0H1458V692Q1458 741 1459 805T1473 1145H1464L1087 0H803Z" />
<glyph unicode="N" glyph-name="N" horiz-adv-x="1665" d="M1481 0H1087L451 1106H442Q461 813 461 688V0H184V1462H575L1210 367H1217Q1202 652 1202 770V1462H1481V0Z" />
<glyph unicode="O" glyph-name="O" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227 817 1227Q632
1227 538 1103T444 733Z" />
<glyph unicode="P" glyph-name="P" horiz-adv-x="1286" d="M494 774H596Q739 774 810 830T881 995Q881 1104 822 1156T635 1208H494V774ZM1194 1006Q1194 770 1047 645T627 520H494V0H184V1462H651Q917 1462 1055 1348T1194 1006Z" />
<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1630" d="M1511 733Q1511 475 1420 301T1151 45L1503 -348H1106L838 -20H815Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240
1186 733Q1186 1227 817 1227Q632 1227 538 1103T444 733Z" />
<glyph unicode="R" glyph-name="R" horiz-adv-x="1352" d="M494 813H594Q741 813 811 862T881 1016Q881 1120 810 1164T588 1208H494V813ZM494 561V0H184V1462H610Q908 1462 1051 1354T1194 1024Q1194 895 1123 795T922 637Q1252 144 1352 0H1008L659 561H494Z" />
<glyph unicode="S" glyph-name="S" horiz-adv-x="1128" d="M1047 406Q1047 208 905 94T508 -20Q274 -20 94 68V356Q242 290 344 263T532 236Q634 236 688 275T743 391Q743 434 719 467T649 532T459 631Q325 694 258 752T151 887T111 1067Q111 1261 242 1372T606
1483Q720 1483 823 1456T1040 1380L940 1139Q823 1187 747 1206T596 1225Q508 1225 461 1184T414 1077Q414 1036 433 1006T493 947T690 844Q895 746 971 648T1047 406Z" />
<glyph unicode="T" glyph-name="T" horiz-adv-x="1186" d="M748 0H438V1204H41V1462H1145V1204H748V0Z" />
<glyph unicode="U" glyph-name="U" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374Z" />
<glyph unicode="V" glyph-name="V" horiz-adv-x="1331" d="M1018 1462H1331L834 0H496L0 1462H313L588 592Q611 515 635 413T666 270Q677 362 741 592L1018 1462Z" />
<glyph unicode="W" glyph-name="W" horiz-adv-x="1980" d="M1608 0H1255L1057 768Q1046 809 1020 937T989 1110Q983 1056 959 937T922 766L725 0H373L0 1462H305L492 664Q541 443 563 281Q569 338 590 457T631 643L844 1462H1137L1350 643Q1364 588 1385 475T1417
281Q1427 359 1449 475T1489 664L1675 1462H1980L1608 0Z" />
<glyph unicode="X" glyph-name="X" horiz-adv-x="1366" d="M1366 0H1012L672 553L332 0H0L485 754L31 1462H373L688 936L997 1462H1331L872 737L1366 0Z" />
<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1278" d="M639 860L944 1462H1278L793 569V0H485V559L0 1462H336L639 860Z" />
<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1186" d="M1137 0H49V201L750 1206H68V1462H1118V1262L418 256H1137V0Z" />
<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="678" d="M627 -324H143V1462H627V1251H403V-113H627V-324Z" />
<glyph unicode="\" glyph-name="backslash" horiz-adv-x="846" d="M289 1462L834 0H557L12 1462H289Z" />
<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="678" d="M51 -113H274V1251H51V1462H535V-324H51V-113Z" />
<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1090" d="M8 520L446 1470H590L1085 520H846L524 1163L244 520H8Z" />
<glyph unicode="_" glyph-name="underscore" horiz-adv-x="842" d="M846 -324H-4V-184H846V-324Z" />
<glyph unicode="`" glyph-name="grave" horiz-adv-x="1243" d="M707 1241Q644 1285 522 1383T332 1548V1569H674Q737 1468 909 1268V1241H707Z" />
<glyph unicode="a" glyph-name="a" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083 745V0H870ZM780
518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518Z" />
<glyph unicode="b" glyph-name="b" horiz-adv-x="1296" d="M782 1139Q980 1139 1092 985T1204 561Q1204 284 1089 132T774 -20Q577 -20 465 123H444L393 0H160V1556H465V1194Q465 1125 453 973H465Q572 1139 782 1139ZM684 895Q571 895 519 826T465 596V563Q465
383 518 305T688 227Q782 227 837 313T893 565Q893 730 837 812T684 895Z" />
<glyph unicode="c" glyph-name="c" horiz-adv-x="1053" d="M614 -20Q92 -20 92 553Q92 838 234 988T641 1139Q835 1139 989 1063L899 827Q827 856 765 874T641 893Q403 893 403 555Q403 227 641 227Q729 227 804 250T954 324V63Q880 16 805 -2T614 -20Z" />
<glyph unicode="d" glyph-name="d" horiz-adv-x="1296" d="M514 -20Q317 -20 205 133T92 557Q92 832 206 985T522 1139Q733 1139 844 975H854Q831 1100 831 1198V1556H1137V0H903L844 145H831Q727 -20 514 -20ZM621 223Q738 223 792 291T852 522V555Q852 735 797
813T616 891Q514 891 458 805T401 553Q401 388 458 306T621 223Z" />
<glyph unicode="e" glyph-name="e" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781 207 871
228T1059 295V59Q979 19 888 0T666 -20Z" />
<glyph unicode="f" glyph-name="f" horiz-adv-x="793" d="M778 889H514V0H209V889H41V1036L209 1118V1200Q209 1391 303 1479T604 1567Q762 1567 885 1520L807 1296Q715 1325 637 1325Q572 1325 543 1287T514 1188V1118H778V889Z" />
<glyph unicode="g" glyph-name="g" horiz-adv-x="1157" d="M1133 1118V963L958 918Q1006 843 1006 750Q1006 570 881 470T532 369L477 372L432 377Q385 341 385 297Q385 231 553 231H743Q927 231 1023 152T1120 -80Q1120 -276 957 -384T487 -492Q253 -492 130
-411T6 -182Q6 -81 69 -13T254 84Q207 104 172 149T137 246Q137 310 174 352T281 436Q193 474 142 558T90 756Q90 939 209 1039T549 1139Q596 1139 660 1131T743 1118H1133ZM270 -158Q270 -221 330 -257T500 -293Q664 -293 757 -248T850 -125Q850 -62 795 -38T625
-14H467Q383 -14 327 -53T270 -158ZM381 752Q381 661 422 608T549 555Q635 555 675 608T715 752Q715 954 549 954Q381 954 381 752Z" />
<glyph unicode="h" glyph-name="h" horiz-adv-x="1346" d="M1192 0H887V653Q887 895 707 895Q579 895 522 808T465 526V0H160V1556H465V1239Q465 1202 458 1065L451 975H467Q569 1139 791 1139Q988 1139 1090 1033T1192 729V0Z" />
<glyph unicode="i" glyph-name="i" horiz-adv-x="625" d="M147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147 1257 147 1407ZM465 0H160V1118H465V0Z" />
<glyph unicode="j" glyph-name="j" horiz-adv-x="625" d="M70 -492Q-47 -492 -131 -467V-227Q-61 -246 12 -246Q89 -246 124 -203T160 -76V1118H465V-121Q465 -299 362 -395T70 -492ZM147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147
1257 147 1407Z" />
<glyph unicode="k" glyph-name="k" horiz-adv-x="1270" d="M453 608L586 778L899 1118H1243L799 633L1270 0H918L596 453L465 348V0H160V1556H465V862L449 608H453Z" />
<glyph unicode="l" glyph-name="l" horiz-adv-x="625" d="M465 0H160V1556H465V0Z" />
<glyph unicode="m" glyph-name="m" horiz-adv-x="2011" d="M1161 0H856V653Q856 774 816 834T688 895Q571 895 518 809T465 526V0H160V1118H393L434 975H451Q496 1052 581 1095T776 1139Q1027 1139 1116 975H1143Q1188 1053 1275 1096T1473 1139Q1663 1139 1760
1042T1858 729V0H1552V653Q1552 774 1512 834T1384 895Q1272 895 1217 815T1161 561V0Z" />
<glyph unicode="n" glyph-name="n" horiz-adv-x="1346" d="M1192 0H887V653Q887 774 844 834T707 895Q579 895 522 810T465 526V0H160V1118H393L434 975H451Q502 1056 591 1097T795 1139Q990 1139 1091 1034T1192 729V0Z" />
<glyph unicode="o" glyph-name="o" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835 235 987T637
1139Q798 1139 921 1069T1110 868T1176 561Z" />
<glyph unicode="p" glyph-name="p" horiz-adv-x="1296" d="M774 -20Q577 -20 465 123H449Q465 -17 465 -39V-492H160V1118H408L451 973H465Q572 1139 782 1139Q980 1139 1092 986T1204 561Q1204 382 1152 250T1002 49T774 -20ZM684 895Q571 895 519 826T465 596V563Q465
383 518 305T688 227Q893 227 893 565Q893 730 843 812T684 895Z" />
<glyph unicode="q" glyph-name="q" horiz-adv-x="1296" d="M623 219Q739 219 793 285T852 518V555Q852 735 797 813T618 891Q403 891 403 553Q403 385 456 302T623 219ZM514 -20Q316 -20 204 132T92 557Q92 831 206 985T520 1139Q626 1139 705 1099T844 975H852L879
1118H1137V-492H831V-23Q831 38 844 145H831Q782 64 701 22T514 -20Z" />
<glyph unicode="r" glyph-name="r" horiz-adv-x="930" d="M784 1139Q846 1139 887 1130L864 844Q827 854 774 854Q628 854 547 779T465 569V0H160V1118H391L436 930H451Q503 1024 591 1081T784 1139Z" />
<glyph unicode="s" glyph-name="s" horiz-adv-x="1018" d="M940 332Q940 160 821 70T463 -20Q341 -20 255 -4T94 45V297Q179 257 285 230T473 203Q639 203 639 299Q639 335 617 357T541 408T397 475Q268 529 208 575T120 680T92 827Q92 976 207 1057T535 1139Q737
1139 928 1051L836 831Q752 867 679 890T530 913Q395 913 395 840Q395 799 438 769T629 680Q760 627 821 581T911 475T940 332Z" />
<glyph unicode="t" glyph-name="t" horiz-adv-x="889" d="M631 223Q711 223 823 258V31Q709 -20 543 -20Q360 -20 277 72T193 350V889H47V1018L215 1120L303 1356H498V1118H811V889H498V350Q498 285 534 254T631 223Z" />
<glyph unicode="u" glyph-name="u" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952Z" />
<glyph unicode="v" glyph-name="v" horiz-adv-x="1165" d="M426 0L0 1118H319L535 481Q571 360 580 252H586Q591 348 631 481L846 1118H1165L739 0H426Z" />
<glyph unicode="w" glyph-name="w" horiz-adv-x="1753" d="M1079 0L993 391L877 885H870L666 0H338L20 1118H324L453 623Q484 490 516 256H522Q526 332 557 497L573 582L711 1118H1047L1178 582Q1182 560 1190 517T1207 426T1221 331T1229 256H1235Q1244 328 1267
453T1300 623L1434 1118H1733L1411 0H1079Z" />
<glyph unicode="x" glyph-name="x" horiz-adv-x="1184" d="M389 571L29 1118H375L592 762L811 1118H1157L793 571L1174 0H827L592 383L356 0H10L389 571Z" />
<glyph unicode="y" glyph-name="y" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444 8L0 1118Z" />
<glyph unicode="z" glyph-name="z" horiz-adv-x="999" d="M938 0H55V180L573 885H86V1118H920V920L416 233H938V0Z" />
<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="807" d="M287 270Q287 357 222 403T31 449V688Q157 688 222 732T287 858V866V1184Q287 1337 384 1399T725 1462V1237Q626 1234 589 1199T551 1096V797Q545 609 317 575V563Q551 528 551 351V342V43Q551
-25 588 -60T725 -98V-324Q481 -324 384 -262T287 -45V270Z" />
<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M455 1550H674V-465H455V1550Z" />
<glyph unicode="}" glyph-name="braceright" horiz-adv-x="807" d="M520 -45Q520 -157 479 -214T344 -297T82 -324V-98Q181 -96 218 -62T256 43V342V353Q256 439 315 492T489 563V575Q262 609 256 797V1096Q256 1166 219 1200T82 1237V1462Q249 1462 344 1436T479
1352T520 1184V866V856Q520 772 581 730T776 688V449Q651 449 586 408T520 270V-45Z" />
<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1169" d="M322 672Q267 672 205 639T88 551V782Q191 891 344 891Q417 891 481 875T621 827Q750 772 848 772Q901 772 964 804T1081 893V662Q980 553 825 553Q759 553 699 566T549 616Q418 672 322 672Z" />
<glyph unicode="&#xa0;" glyph-name="nbspace" horiz-adv-x="532" />
<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="586" d="M168 606H412L463 -369H117L168 606ZM467 948Q467 864 422 821T291 778Q208 778 163 822T117 948Q117 1029 163 1073T291 1118Q375 1118 421 1074T467 948Z" />
<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1169" d="M563 176Q143 235 143 741Q143 1002 247 1144T563 1317V1483H741V1325Q907 1316 1040 1251L950 1016Q878 1045 816 1063T692 1081Q571 1081 513 998T455 743Q455 416 692 416Q774 416 840 431T1006
492V238Q879 177 741 168V-20H563V176Z" />
<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1169" d="M700 1483Q895 1483 1090 1401L997 1171Q840 1235 725 1235Q647 1235 605 1191T563 1063V870H938V651H563V508Q563 338 412 260H1130V0H82V248Q185 292 223 349T262 506V651H84V870H262V1065Q262
1266 376 1374T700 1483Z" />
<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1169" d="M188 723Q188 825 242 920L113 1047L260 1194L387 1067Q478 1120 584 1120Q689 1120 780 1065L907 1194L1057 1051L928 922Q981 833 981 723Q981 616 928 524L1053 399L907 254L780 379Q685
328 584 328Q469 328 385 379L260 256L115 401L242 526Q188 619 188 723ZM395 723Q395 646 449 591T584 535Q665 535 720 590T776 723Q776 803 720 858T584 913Q506 913 451 857T395 723Z" />
<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1169" d="M584 860L848 1462H1161L778 715H973V537H727V399H973V221H727V0H440V221H193V399H440V537H193V715H383L6 1462H322L584 860Z" />
<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M455 1550H674V735H455V1550ZM455 350H674V-465H455V350Z" />
<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M121 805Q121 884 157 949T254 1055Q121 1139 121 1288Q121 1419 232 1498T526 1577Q696 1577 889 1493L807 1303Q739 1335 669 1360T520 1386Q439 1386 402 1363T365 1292Q365 1243 414 1206T578
1124Q741 1060 818 976T895 782Q895 605 770 522Q832 482 863 430T895 303Q895 155 776 68T455 -20Q252 -20 106 59V266Q187 225 286 197T455 168Q649 168 649 285Q649 324 631 348T567 397T442 457Q259 531 190 609T121 805ZM344 827Q344 760 409 708T590 610Q668
667 668 756Q668 824 618 871T434 967Q397 953 371 914T344 827Z" />
<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1243" d="M279 1405Q279 1470 316 1505T418 1540Q484 1540 521 1503T559 1405Q559 1345 521 1309T418 1272Q354 1272 317 1307T279 1405ZM682 1405Q682 1475 722 1507T823 1540Q888 1540 926 1504T965
1405Q965 1344 926 1308T823 1272Q763 1272 723 1304T682 1405Z" />
<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M895 1010Q798 1010 745 936T692 731Q692 451 895 451Q952 451 1018 466T1141 510V319Q1021 262 889 262Q685 262 573 387T461 733Q461 953 571 1075T881 1198Q1030 1198 1186 1120L1112
952Q999 1010 895 1010ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM242 731Q242 567 324 426T548 203T852 121Q1016 121 1157 203T1380 427T1462
731Q1462 895 1380 1036T1156 1259T852 1341Q688 1341 547 1259T324 1035T242 731Z" />
<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="784" d="M561 764L530 874Q487 816 425 784T289 752Q172 752 110 810T47 975Q47 1084 129 1138T397 1202L496 1206Q496 1323 369 1323Q288 1323 152 1262L86 1397Q152 1429 231 1454T410 1479Q547
1479 621 1408T696 1206V764H561ZM252 977Q252 939 275 921T330 903Q407 903 451 944T496 1051V1087L397 1081Q252 1071 252 977Z" />
<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1260" d="M82 573L453 1028L672 909L393 561L672 213L453 94L82 547V573ZM588 573L958 1028L1178 909L899 561L1178 213L958 94L588 547V573Z" />
<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1169" d="M1081 248H862V612H88V831H1081V248Z" />
<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M61 424V674H598V424H61Z" />
<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M1157 905Q1157 735 1014 672L1251 272H997L819 610H772V272H543V1188H807Q988 1188 1072 1118T1157 905ZM772 778H803Q869 778 897 806T926 901Q926 966 898 993T801 1020H772V778ZM100
731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM242 731Q242 567 324 426T548 203T852 121Q1016 121 1157 203T1380 427T1462 731Q1462 895 1380 1036T1156
1259T852 1341Q688 1341 547 1259T324 1035T242 731Z" />
<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1757H1030V1556Z" />
<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M92 1137Q92 1229 138 1309T264 1436T438 1483Q530 1483 610 1437T737 1310T784 1137Q784 1044 738 964T611 838T438 793Q293 793 193 892T92 1137ZM283 1137Q283 1073 327 1028T438 983Q504
983 549 1029T594 1137Q594 1200 549 1247T438 1294Q374 1294 329 1248T283 1137Z" />
<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1169" d="M475 674H88V893H475V1282H694V893H1081V674H694V289H475V674ZM88 0V219H1081V0H88Z" />
<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="776" d="M702 586H55V754L279 973Q381 1073 409 1117T438 1212Q438 1250 414 1270T350 1290Q269 1290 170 1202L47 1354Q194 1483 383 1483Q520 1483 599 1417T678 1233Q678 1148 631 1073T455
881L350 786H702V586Z" />
<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="776" d="M666 1249Q666 1106 496 1051V1038Q590 1018 642 963T694 829Q694 708 606 639T332 569Q189 569 59 639V829Q207 739 330 739Q473 739 473 846Q473 899 429 925T307 952H195V1112H287Q370
1112 410 1138T451 1221Q451 1259 426 1284T350 1309Q303 1309 261 1290T162 1231L61 1372Q123 1419 198 1450T377 1481Q504 1481 585 1417T666 1249Z" />
<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1243" d="M332 1241V1268Q504 1468 567 1569H909V1548Q857 1496 732 1394T535 1241H332Z" />
<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1352" d="M465 465Q465 344 509 284T647 223Q773 223 830 309T887 592V1118H1192V0H961L918 150H903Q861 65 801 23T653 -20Q591 -20 539 3T455 70L460 -15L465 -172V-492H160V1118H465V465Z" />
<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1167 -260H1006V1356H840V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1167V-260Z" />
<glyph unicode="&#xb7;" glyph-name="middot" horiz-adv-x="584" d="M117 723Q117 807 162 850T293 893Q376 893 421 849T467 723Q467 642 421 598T293 553Q209 553 163 597T117 723Z" />
<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M418 -250Q418 -378 343 -435T109 -492Q31 -492 -37 -471V-303Q-10 -310 35 -317T106 -324Q178 -324 178 -262Q178 -179 12 -154L90 0H283L256 -61Q330 -85 374 -135T418 -250Z" />
<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="776" d="M584 586H346V1032L349 1144L354 1239Q327 1203 279 1161L201 1100L92 1227L393 1462H584V586Z" />
<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="795" d="M737 1116Q737 945 646 849T395 752Q242 752 150 850T57 1116Q57 1285 146 1382T399 1479Q551 1479 644 1381T737 1116ZM260 1116Q260 1016 292 966T397 915Q469 915 500 965T532 1116Q532
1216 501 1265T397 1315Q325 1315 293 1266T260 1116Z" />
<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1260" d="M1178 547L807 94L588 213L866 561L588 909L807 1028L1178 573V547ZM672 547L301 94L82 213L360 561L82 909L301 1028L672 573V547Z" />
<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1804" d="M794 586H556V1032L559 1144L564 1239Q537 1203 489 1161L411 1100L302 1227L603 1462H794V586ZM1370 1462L559 0H320L1131 1462H1370ZM1682 152H1557V1H1319V152H936V306L1321 883H1557V320H1682V152ZM1319
320V484Q1319 570 1325 668Q1316 642 1290 588T1248 511L1121 320H1319Z" />
<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1804" d="M794 586H556V1032L559 1144L564 1239Q537 1203 489 1161L411 1100L302 1227L603 1462H794V586ZM1370 1462L559 0H320L1131 1462H1370ZM1716 1H1069V169L1293 388Q1395 488 1423 532T1452
627Q1452 665 1428 685T1364 705Q1283 705 1184 617L1061 769Q1208 898 1397 898Q1534 898 1613 832T1692 648Q1692 563 1645 488T1469 296L1364 201H1716V1Z" />
<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1804" d="M697 1249Q697 1106 527 1051V1038Q621 1018 673 963T725 829Q725 708 637 639T363 569Q220 569 90 639V829Q238 739 361 739Q504 739 504 846Q504 899 460 925T338 952H226V1112H318Q401
1112 441 1138T482 1221Q482 1259 457 1284T381 1309Q334 1309 292 1290T193 1231L92 1372Q154 1419 229 1450T408 1481Q535 1481 616 1417T697 1249ZM1441 1462L630 0H391L1202 1462H1441ZM1712 152H1587V1H1349V152H966V306L1351 883H1587V320H1712V152ZM1349
320V484Q1349 570 1355 668Q1346 642 1320 588T1278 511L1151 320H1349Z" />
<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="977" d="M713 606V532Q713 434 669 363T516 215Q407 137 379 93T350 -14Q350 -71 393 -108T526 -145Q605 -145 695 -116T881 -45L983 -266Q885 -322 762 -356T532 -391Q312 -391 187 -295T61 -29Q61
79 109 158T301 342Q396 412 422 449T449 547V606H713ZM745 948Q745 864 700 821T569 778Q486 778 441 822T395 948Q395 1029 441 1073T569 1118Q653 1118 699 1074T745 948Z" />
<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM713 1579Q650 1623 528 1721T338 1886V1907H680Q743 1806 915 1606V1579H713Z" />
<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM541 1579V1606Q713 1806 776 1907H1118V1886Q1066 1834 941 1732T744 1579H541Z" />
<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM938 1579Q781 1672 704 1755Q626 1674 475 1579H272V1606Q461 1795
528 1907H885Q916 1855 992 1766T1141 1606V1579H938Z" />
<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM543 1684Q512 1684 484 1658T442 1577H293Q304 1722 375 1804T565 1886Q606
1886 645 1870T723 1834T799 1798T872 1782Q903 1782 931 1808T973 1888H1122Q1111 1743 1039 1661T850 1579Q809 1579 770 1595T692 1631T616 1667T543 1684Z" />
<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM365 1743Q365 1808 402 1843T504 1878Q570 1878 607 1841T645 1743Q645
1683 607 1647T504 1610Q440 1610 403 1645T365 1743ZM768 1743Q768 1813 808 1845T909 1878Q974 1878 1012 1842T1051 1743Q1051 1682 1012 1646T909 1610Q849 1610 809 1642T768 1743Z" />
<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM959 1567Q959 1459 888 1393T705 1327Q593 1327 525 1391T457 1565Q457
1673 524 1737T705 1802Q815 1802 887 1736T959 1567ZM801 1565Q801 1610 774 1635T705 1661Q663 1661 636 1636T609 1565Q609 1520 633 1494T705 1468Q747 1468 774 1494T801 1565Z" />
<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1950" d="M1829 0H956V348H465L315 0H0L655 1462H1829V1208H1266V887H1792V633H1266V256H1829V0ZM578 608H956V1198H829L578 608Z" />
<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1305" d="M805 1225Q630 1225 534 1094T438 727Q438 238 805 238Q959 238 1178 315V55Q998 -20 776 -20Q457 -20 288 173T119 729Q119 957 202 1128T440 1391T805 1483Q1018 1483 1233 1380L1133 1128Q1051
1167 968 1196T805 1225ZM959 -250Q959 -378 884 -435T650 -492Q572 -492 504 -471V-303Q531 -310 576 -317T647 -324Q719 -324 719 -262Q719 -179 553 -154L631 0H824L797 -61Q871 -85 915 -135T959 -250Z" />
<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM634 1579Q571 1623 449 1721T259 1886V1907H601Q664 1806 836 1606V1579H634Z" />
<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM424 1579V1606Q596 1806 659 1907H1001V1886Q949 1834 824 1732T627 1579H424Z" />
<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM841 1579Q684 1672 607 1755Q529 1674 378 1579H175V1606Q364 1795 431 1907H788Q819 1855 895 1766T1044 1606V1579H841Z" />
<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM272 1743Q272 1808 309 1843T411 1878Q477 1878 514 1841T552 1743Q552 1683 514 1647T411 1610Q347 1610 310 1645T272 1743ZM675
1743Q675 1813 715 1845T816 1878Q881 1878 919 1842T958 1743Q958 1682 919 1646T816 1610Q756 1610 716 1642T675 1743Z" />
<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM317 1579Q254 1623 132 1721T-58 1886V1907H284Q347 1806 519 1606V1579H317Z" />
<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM167 1579V1606Q339 1806 402 1907H744V1886Q692 1834 567 1732T370 1579H167Z" />
<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM570 1579Q413 1672 336 1755Q258 1674 107 1579H-96V1606Q93 1795 160 1907H517Q548 1855 624 1766T773 1606V1579H570Z" />
<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM-3 1743Q-3 1808 34 1843T136 1878Q202 1878 239 1841T277 1743Q277 1683 239 1647T136 1610Q72 1610 35 1645T-3 1743ZM400 1743Q400 1813 440 1845T541 1878Q606
1878 644 1842T683 1743Q683 1682 644 1646T541 1610Q481 1610 441 1642T400 1743Z" />
<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1516" d="M47 850H184V1462H643Q1001 1462 1199 1273T1397 745Q1397 384 1192 192T598 0H184V596H47V850ZM1075 737Q1075 969 971 1088T657 1208H494V850H731V596H494V256H625Q1075 256 1075 737Z" />
<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1665" d="M1481 0H1087L451 1106H442Q461 813 461 688V0H184V1462H575L1210 367H1217Q1202 652 1202 770V1462H1481V0ZM668 1684Q637 1684 609 1658T567 1577H418Q429 1722 500 1804T690 1886Q731 1886
770 1870T848 1834T924 1798T997 1782Q1028 1782 1056 1808T1098 1888H1247Q1236 1743 1164 1661T975 1579Q934 1579 895 1595T817 1631T741 1667T668 1684Z" />
<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
817 1227Q632 1227 538 1103T444 733ZM824 1579Q761 1623 639 1721T449 1886V1907H791Q854 1806 1026 1606V1579H824Z" />
<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
817 1227Q632 1227 538 1103T444 733ZM658 1579V1606Q830 1806 893 1907H1235V1886Q1183 1834 1058 1732T861 1579H658Z" />
<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186
1227 817 1227Q632 1227 538 1103T444 733ZM1047 1579Q890 1672 813 1755Q735 1674 584 1579H381V1606Q570 1795 637 1907H994Q1025 1855 1101 1766T1250 1606V1579H1047Z" />
<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
817 1227Q632 1227 538 1103T444 733ZM652 1684Q621 1684 593 1658T551 1577H402Q413 1722 484 1804T674 1886Q715 1886 754 1870T832 1834T908 1798T981 1782Q1012 1782 1040 1808T1082 1888H1231Q1220 1743 1148 1661T959 1579Q918 1579 879 1595T801 1631T725
1667T652 1684Z" />
<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186
1227 817 1227Q632 1227 538 1103T444 733ZM474 1743Q474 1808 511 1843T613 1878Q679 1878 716 1841T754 1743Q754 1683 716 1647T613 1610Q549 1610 512 1645T474 1743ZM877 1743Q877 1813 917 1845T1018 1878Q1083 1878 1121 1842T1160 1743Q1160 1682 1121
1646T1018 1610Q958 1610 918 1642T877 1743Z" />
<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1169" d="M428 723L129 1024L281 1178L582 879L887 1178L1040 1028L735 723L1036 420L887 268L582 569L281 270L131 422L428 723Z" />
<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q618 -20 479 45L389 -90L227 18L317 154Q119 348 119 735Q119 1100 299 1292T817 1485Q1015 1485 1161 1415L1245 1540L1405 1436L1317 1305Q1511 1111
1511 733ZM444 733Q444 542 500 426L1006 1182Q922 1227 817 1227Q632 1227 538 1103T444 733ZM1186 733Q1186 913 1135 1030L635 279Q711 240 815 240Q1186 240 1186 733Z" />
<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM750 1579Q687 1623 565 1721T375
1886V1907H717Q780 1806 952 1606V1579H750Z" />
<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM602 1579V1606Q774 1806 837 1907H1179V1886Q1127
1834 1002 1732T805 1579H602Z" />
<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM1006 1579Q849 1672 772 1755Q694
1674 543 1579H340V1606Q529 1795 596 1907H953Q984 1855 1060 1766T1209 1606V1579H1006Z" />
<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM433 1743Q433 1808 470 1843T572
1878Q638 1878 675 1841T713 1743Q713 1683 675 1647T572 1610Q508 1610 471 1645T433 1743ZM836 1743Q836 1813 876 1845T977 1878Q1042 1878 1080 1842T1119 1743Q1119 1682 1080 1646T977 1610Q917 1610 877 1642T836 1743Z" />
<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1278" d="M639 860L944 1462H1278L793 569V0H485V559L0 1462H336L639 860ZM461 1579V1606Q633 1806 696 1907H1038V1886Q986 1834 861 1732T664 1579H461Z" />
<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1286" d="M1194 770Q1194 541 1052 417T647 293H494V0H184V1462H494V1233H672Q926 1233 1060 1114T1194 770ZM494 543H594Q739 543 810 595T881 770Q881 877 818 929T618 981H494V543Z" />
<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1456" d="M1249 1241Q1249 1177 1228 1129T1175 1042T1106 975T1037 922T984 877T963 834Q963 807 989 781T1082 715Q1228 624 1280 575T1358 465T1384 326Q1384 154 1268 67T924 -20Q825 -20 753
-6T621 43V285Q674 249 756 224T903 199Q1071 199 1071 322Q1071 363 1055 388T998 444T883 516Q757 588 708 647T659 788Q659 852 694 905T799 1007Q876 1062 907 1102T938 1188Q938 1248 875 1288T711 1329Q595 1329 530 1277T465 1128V0H160V1139Q160 1340 306
1453T711 1567Q955 1567 1102 1479T1249 1241Z" />
<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM870 1241Q807 1285 685 1383T495 1548V1569H837Q900 1468 1072 1268V1241H870Z" />
<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM441 1241V1268Q613 1468 676 1569H1018V1548Q966 1496 841 1394T644 1241H441Z" />
<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963
1043T1083 745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM1099 1496Q942 1589 865 1672Q787 1591 636 1496H433V1523Q622 1712 689 1824H1046Q1077 1772 1153 1683T1302 1523V1496H1099Z" />
<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM467 1346Q436 1346 408 1320T366 1239H217Q228 1384 299 1466T489 1548Q530 1548 569 1532T647 1496T723 1460T796 1444Q827 1444 855 1470T897 1550H1046Q1035
1405 963 1323T774 1241Q733 1241 694 1257T616 1293T540 1329T467 1346Z" />
<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM285 1405Q285 1470 322 1505T424 1540Q490 1540 527 1503T565 1405Q565 1345 527 1309T424 1272Q360 1272 323 1307T285 1405ZM688 1405Q688 1475 728 1507T829
1540Q894 1540 932 1504T971 1405Q971 1344 932 1308T829 1272Q769 1272 729 1304T688 1405Z" />
<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM883 1479Q883 1371 812 1305T629 1239Q517 1239 449 1303T381 1477Q381 1585 448 1649T629 1714Q739 1714 811 1648T883 1479ZM725 1477Q725 1522 698 1547T629
1573Q587 1573 560 1548T533 1477Q533 1432 557 1406T629 1380Q671 1380 698 1406T725 1477Z" />
<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1878" d="M1329 -20Q1192 -20 1080 30T895 186Q797 69 699 25T442 -20Q281 -20 184 74T86 334Q86 512 207 596T569 690L760 696V780Q760 849 716 882T594 915Q454 915 289 838L190 1040Q379 1141 612 1141Q839
1141 954 1010Q1020 1074 1106 1106T1313 1139Q1534 1139 1662 1002T1790 631V483H1067Q1072 353 1144 280T1346 207Q1542 207 1726 295V59Q1647 20 1555 0T1329 -20ZM760 518L647 514Q523 510 461 467T399 332Q399 203 539 203Q640 203 700 264T760 426V518ZM1307
922Q1090 922 1073 686H1503Q1501 798 1448 860T1307 922Z" />
<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1053" d="M614 -20Q92 -20 92 553Q92 838 234 988T641 1139Q835 1139 989 1063L899 827Q827 856 765 874T641 893Q403 893 403 555Q403 227 641 227Q729 227 804 250T954 324V63Q880 16 805 -2T614
-20ZM805 -250Q805 -378 730 -435T496 -492Q418 -492 350 -471V-303Q377 -310 422 -317T493 -324Q565 -324 565 -262Q565 -179 399 -154L477 0H670L643 -61Q717 -85 761 -135T805 -250Z" />
<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781
207 871 228T1059 295V59Q979 19 888 0T666 -20ZM876 1241Q813 1285 691 1383T501 1548V1569H843Q906 1468 1078 1268V1241H876Z" />
<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781
207 871 228T1059 295V59Q979 19 888 0T666 -20ZM447 1241V1268Q619 1468 682 1569H1024V1548Q972 1496 847 1394T650 1241H447Z" />
<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680
207Q781 207 871 228T1059 295V59Q979 19 888 0T666 -20ZM860 1241Q703 1334 626 1417Q548 1336 397 1241H194V1268Q383 1457 450 1569H807Q838 1517 914 1428T1063 1268V1241H860Z" />
<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680
207Q781 207 871 228T1059 295V59Q979 19 888 0T666 -20ZM297 1405Q297 1470 334 1505T436 1540Q502 1540 539 1503T577 1405Q577 1345 539 1309T436 1272Q372 1272 335 1307T297 1405ZM700 1405Q700 1475 740 1507T841 1540Q906 1540 944 1504T983 1405Q983 1344
944 1308T841 1272Q781 1272 741 1304T700 1405Z" />
<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM274 1241Q211 1285 89 1383T-101 1548V1569H241Q304 1468 476 1268V1241H274Z" />
<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM145 1241V1268Q317 1468 380 1569H722V1548Q670 1496 545 1394T348 1241H145Z" />
<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM544 1241Q387 1334 310 1417Q232 1336 81 1241H-122V1268Q67 1457 134 1569H491Q522 1517 598 1428T747 1268V1241H544Z" />
<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM-29 1405Q-29 1470 8 1505T110 1540Q176 1540 213 1503T251 1405Q251 1345 213 1309T110 1272Q46 1272 9 1307T-29 1405ZM374 1405Q374 1475 414 1507T515 1540Q580
1540 618 1504T657 1405Q657 1344 618 1308T515 1272Q455 1272 415 1304T374 1405Z" />
<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1268" d="M510 1303Q430 1356 358 1395L459 1571Q603 1506 717 1430L942 1569L1042 1415L872 1311Q1028 1168 1102 987T1176 573Q1176 293 1031 137T631 -20Q386 -20 239 117T92 489Q92 722 222 858T573
995Q778 995 848 897L856 901Q789 1063 664 1182L434 1040L334 1196L510 1303ZM864 532Q864 640 803 705T635 770Q514 770 459 702T403 487Q403 347 463 276T635 205Q758 205 811 287T864 532Z" />
<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1346" d="M1192 0H887V653Q887 774 844 834T707 895Q579 895 522 810T465 526V0H160V1118H393L434 975H451Q502 1056 591 1097T795 1139Q990 1139 1091 1034T1192 729V0ZM508 1346Q477 1346 449 1320T407
1239H258Q269 1384 340 1466T530 1548Q571 1548 610 1532T688 1496T764 1460T837 1444Q868 1444 896 1470T938 1550H1087Q1076 1405 1004 1323T815 1241Q774 1241 735 1257T657 1293T581 1329T508 1346Z" />
<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM868 1241Q805 1285 683 1383T493 1548V1569H835Q898 1468 1070 1268V1241H868Z" />
<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM467 1241V1268Q639 1468 702 1569H1044V1548Q992 1496 867 1394T670 1241H467Z" />
<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92
835 235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM864 1241Q707 1334 630 1417Q552 1336 401 1241H198V1268Q387 1457 454 1569H811Q842 1517 918 1428T1067 1268V1241H864Z" />
<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM469 1346Q438 1346 410 1320T368 1239H219Q230 1384 301 1466T491 1548Q532 1548 571 1532T649 1496T725 1460T798 1444Q829 1444 857 1470T899 1550H1048Q1037 1405 965 1323T776 1241Q735 1241 696 1257T618
1293T542 1329T469 1346Z" />
<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92
835 235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM291 1405Q291 1470 328 1505T430 1540Q496 1540 533 1503T571 1405Q571 1345 533 1309T430 1272Q366 1272 329 1307T291 1405ZM694 1405Q694 1475 734 1507T835 1540Q900 1540 938 1504T977 1405Q977
1344 938 1308T835 1272Q775 1272 735 1304T694 1405Z" />
<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1169" d="M88 612V831H1081V612H88ZM444 373Q444 449 481 486T584 524Q650 524 686 485T723 373Q723 303 686 262T584 221Q519 221 482 260T444 373ZM444 1071Q444 1146 481 1184T584 1223Q651 1223
687 1183T723 1071Q723 1001 686 961T584 920Q519 920 482 959T444 1071Z" />
<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1268" d="M1176 561Q1176 288 1032 134T631 -20Q505 -20 397 25L330 -76L176 29L244 129Q92 285 92 561Q92 835 235 987T637 1139Q769 1139 885 1087L940 1169L1092 1061L1034 977Q1176 822 1176 561ZM403
561Q403 467 422 395L739 870Q696 893 633 893Q511 893 457 811T403 561ZM864 561Q864 642 852 702L543 240Q581 225 635 225Q757 225 810 309T864 561Z" />
<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM876 1241Q813 1285 691 1383T501 1548V1569H843Q906
1468 1078 1268V1241H876Z" />
<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM498 1241V1268Q670 1468 733 1569H1075V1548Q1023
1496 898 1394T701 1241H498Z" />
<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM901 1241Q744 1334 667 1417Q589
1336 438 1241H235V1268Q424 1457 491 1569H848Q879 1517 955 1428T1104 1268V1241H901Z" />
<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM326 1405Q326 1470 363 1505T465
1540Q531 1540 568 1503T606 1405Q606 1345 568 1309T465 1272Q401 1272 364 1307T326 1405ZM729 1405Q729 1475 769 1507T870 1540Q935 1540 973 1504T1012 1405Q1012 1344 973 1308T870 1272Q810 1272 770 1304T729 1405Z" />
<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444
8L0 1118ZM393 1241V1268Q565 1468 628 1569H970V1548Q918 1496 793 1394T596 1241H393Z" />
<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1296" d="M465 973Q515 1054 596 1096T782 1139Q980 1139 1092 985T1204 561Q1204 288 1093 134T782 -20Q569 -20 465 117H451L458 55L465 -39V-492H160V1556H465V1165L458 1045L451 973H465ZM684 895Q571
895 519 826T465 596V563Q465 383 518 305T688 227Q893 227 893 565Q893 730 843 812T684 895Z" />
<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444
8L0 1118ZM499 1405Q499 1470 536 1505T638 1540Q704 1540 741 1503T779 1405Q779 1345 741 1309T638 1272Q574 1272 537 1307T499 1405ZM902 1405Q902 1475 942 1507T1043 1540Q1108 1540 1146 1504T1185 1405Q1185 1344 1146 1308T1043 1272Q983 1272 943 1304T902
1405Z" />
<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 436V666H942V436H82Z" />
<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 436V666H1966V436H82Z" />
<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="444" d="M39 961L25 983Q47 1074 97 1211T201 1462H420Q354 1195 319 961H39Z" />
<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="444" d="M406 1462L420 1440Q370 1243 244 961H25Q94 1257 125 1462H406Z" />
<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="596" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215Z" />
<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="911" d="M492 983Q514 1074 564 1211T668 1462H887Q821 1195 786 961H506L492 983ZM25 983Q47 1074 97 1211T201 1462H420Q354 1195 319 961H39L25 983Z" />
<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="911" d="M420 1440Q370 1243 244 961H25Q94 1257 125 1462H406L420 1440ZM887 1440Q837 1243 711 961H492Q561 1257 592 1462H872L887 1440Z" />
<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1061" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215ZM926 215Q874 13 750 -264H530Q595 2 631 238H911L926 215Z" />
<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M98 748Q98 902 172 983T385 1065Q522 1065 597 983T672 748Q672 596 597 513T385 430Q247 430 173 513T98 748Z" />
<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="754" d="M82 573L453 1028L672 909L393 561L672 213L453 94L82 547V573Z" />
<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="754" d="M672 547L301 94L82 213L360 561L82 909L301 1028L672 573V547Z" />
</font>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,336 @@
<?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 xmlns="http://www.w3.org/2000/svg">
<defs >
<font id="OpenSans" horiz-adv-x="1206" ><font-face
font-family="Open Sans"
units-per-em="2048"
panose-1="2 11 6 6 3 5 4 2 2 4"
ascent="2189"
descent="-600"
alphabetic="0" />
<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
<glyph unicode="!" glyph-name="exclam" horiz-adv-x="547" d="M326 403H221L170 1462H377L326 403ZM152 106Q152 242 272 242Q330 242 361 207T393 106Q393 42 361 7T272 -29Q220 -29 186 2T152 106Z" />
<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="821" d="M319 1462L279 934H174L133 1462H319ZM688 1462L647 934H543L502 1462H688Z" />
<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M981 899L915 559H1198V430H891L807 0H670L754 430H451L369 0H233L313 430H51V559H338L406 899H129V1026H428L510 1462H649L567 1026H872L956 1462H1090L1006 1026H1270V899H981ZM475 559H778L844
899H541L475 559Z" />
<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1171" d="M1036 449Q1036 313 934 225T649 113V-119H520V104Q408 104 303 121T131 170V326Q214 289 322 266T520 242V682Q315 747 233 833T150 1055Q150 1186 251 1270T520 1372V1554H649V1374Q833 1369 1004
1300L952 1169Q803 1228 649 1239V805Q806 755 884 708T999 599T1036 449ZM866 436Q866 508 822 552T649 641V252Q866 282 866 436ZM319 1057Q319 981 364 935T520 848V1235Q421 1219 370 1173T319 1057Z" />
<glyph unicode="%" glyph-name="percent" horiz-adv-x="1686" d="M242 1026Q242 856 279 771T399 686Q563 686 563 1026Q563 1364 399 1364Q316 1364 279 1280T242 1026ZM700 1026Q700 798 624 682T399 565Q259 565 182 684T104 1026Q104 1253 178 1368T399 1483Q544
1483 622 1364T700 1026ZM1122 440Q1122 269 1159 185T1280 100Q1364 100 1404 183T1444 440Q1444 611 1404 693T1280 776Q1196 776 1159 694T1122 440ZM1581 440Q1581 213 1505 97T1280 -20Q1138 -20 1062 99T985 440Q985 667 1059 782T1280 897Q1422 897 1501
780T1581 440ZM1323 1462L512 0H365L1176 1462H1323Z" />
<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1495" d="M414 1171Q414 1102 450 1040T573 889Q702 964 752 1027T803 1174Q803 1251 752 1299T614 1348Q525 1348 470 1300T414 1171ZM569 129Q810 129 969 283L532 707Q421 639 375 595T307 499T285
383Q285 266 362 198T569 129ZM113 379Q113 509 182 609T432 811Q347 906 317 955T268 1057T250 1167Q250 1317 348 1401T621 1485Q783 1485 876 1402T969 1169Q969 1062 901 972T676 788L1083 397Q1139 459 1172 542T1229 725H1397Q1329 439 1192 291L1491 0H1262L1077
178Q959 72 837 26T565 -20Q350 -20 232 86T113 379Z" />
<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="453" d="M319 1462L279 934H174L133 1462H319Z" />
<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="606" d="M82 561Q82 826 159 1057T383 1462H545Q401 1269 329 1038T256 563Q256 323 330 94T543 -324H383Q236 -154 159 73T82 561Z" />
<glyph unicode=")" glyph-name="parenright" horiz-adv-x="606" d="M524 561Q524 298 447 71T223 -324H63Q202 -136 276 93T350 563Q350 807 278 1038T61 1462H223Q370 1287 447 1056T524 561Z" />
<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1130" d="M657 1556L614 1161L1012 1272L1038 1090L657 1059L905 733L733 639L557 1001L397 639L221 733L463 1059L86 1090L115 1272L506 1161L463 1556H657Z" />
<glyph unicode="+" glyph-name="plus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791Z" />
<glyph unicode="," glyph-name="comma" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
<glyph unicode="." glyph-name="period" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106Z" />
<glyph unicode="/" glyph-name="slash" horiz-adv-x="752" d="M731 1462L186 0H20L565 1462H731Z" />
<glyph unicode="0" glyph-name="zero" horiz-adv-x="1171" d="M1069 733Q1069 354 950 167T584 -20Q348 -20 225 171T102 733Q102 1115 221 1300T584 1485Q822 1485 945 1292T1069 733ZM270 733Q270 414 345 269T584 123Q750 123 824 270T899 733Q899 1048 825
1194T584 1341Q420 1341 345 1197T270 733Z" />
<glyph unicode="1" glyph-name="one" horiz-adv-x="1171" d="M715 0H553V1042Q553 1172 561 1288Q540 1267 514 1244T276 1049L188 1163L575 1462H715V0Z" />
<glyph unicode="2" glyph-name="two" horiz-adv-x="1171" d="M1061 0H100V143L485 530Q661 708 717 784T801 932T829 1087Q829 1204 758 1272T561 1341Q470 1341 389 1311T207 1202L119 1315Q321 1483 559 1483Q765 1483 882 1378T999 1094Q999 955 921 819T629
475L309 162V154H1061V0Z" />
<glyph unicode="3" glyph-name="three" horiz-adv-x="1171" d="M1006 1118Q1006 978 928 889T705 770V762Q881 740 966 650T1051 414Q1051 205 906 93T494 -20Q378 -20 282 -3T94 59V217Q189 170 296 146T500 121Q879 121 879 418Q879 684 461 684H317V827H463Q634
827 734 902T834 1112Q834 1219 761 1280T561 1341Q465 1341 380 1315T186 1219L102 1331Q192 1402 309 1442T557 1483Q770 1483 888 1386T1006 1118Z" />
<glyph unicode="4" glyph-name="four" horiz-adv-x="1171" d="M1130 336H913V0H754V336H43V481L737 1470H913V487H1130V336ZM754 487V973Q754 1116 764 1296H756Q708 1200 666 1137L209 487H754Z" />
<glyph unicode="5" glyph-name="five" horiz-adv-x="1171" d="M557 893Q788 893 920 779T1053 465Q1053 238 909 109T510 -20Q263 -20 133 59V219Q203 174 307 149T512 123Q688 123 785 206T883 446Q883 752 508 752Q413 752 254 723L168 778L223 1462H950V1309H365L328
870Q443 893 557 893Z" />
<glyph unicode="6" glyph-name="six" horiz-adv-x="1171" d="M117 625Q117 1056 284 1269T780 1483Q893 1483 958 1464V1321Q881 1346 782 1346Q547 1346 423 1200T287 739H299Q409 911 647 911Q844 911 957 792T1071 469Q1071 241 947 111T610 -20Q383 -20 250
150T117 625ZM608 121Q750 121 828 210T907 469Q907 614 834 697T616 780Q526 780 451 743T332 641T287 506Q287 403 327 314T440 173T608 121Z" />
<glyph unicode="7" glyph-name="seven" horiz-adv-x="1171" d="M285 0L891 1309H94V1462H1067V1329L469 0H285Z" />
<glyph unicode="8" glyph-name="eight" horiz-adv-x="1171" d="M584 1483Q784 1483 901 1390T1018 1133Q1018 1025 951 936T737 774Q915 689 990 596T1065 379Q1065 197 938 89T590 -20Q356 -20 230 82T104 373Q104 624 410 764Q272 842 212 932T152 1135Q152
1294 269 1388T584 1483ZM268 369Q268 249 351 182T586 115Q735 115 818 185T901 377Q901 474 823 549T551 696Q402 632 335 555T268 369ZM582 1348Q457 1348 386 1288T315 1128Q315 1036 374 970T592 838Q735 898 794 967T854 1128Q854 1229 782 1288T582 1348Z"
/>
<glyph unicode="9" glyph-name="nine" horiz-adv-x="1171" d="M1061 838Q1061 -20 397 -20Q281 -20 213 0V143Q293 117 395 117Q635 117 757 265T891 721H879Q824 638 733 595T528 551Q334 551 220 667T106 991Q106 1219 233 1351T569 1483Q718 1483 829 1407T1001
1184T1061 838ZM569 1341Q426 1341 348 1249T270 993Q270 849 342 767T561 684Q652 684 728 721T849 822T893 956Q893 1061 852 1150T738 1290T569 1341Z" />
<glyph unicode=":" glyph-name="colon" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106ZM152 989Q152 1124 270 1124Q393 1124 393 989Q393 924 360 889T270 854Q219 854 186 885T152 989Z" />
<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="545" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350ZM147 989Q147 1124 266 1124Q389 1124 389 989Q389 924 356 889T266 854Q208 854 178 889T147 989Z" />
<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1171" d="M1065 242L104 664V762L1065 1241V1092L283 721L1065 393V242Z" />
<glyph unicode="=" glyph-name="equal" horiz-adv-x="1171" d="M119 858V995H1049V858H119ZM119 449V586H1049V449H119Z" />
<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1171" d="M104 393L887 719L104 1092V1241L1065 762V664L104 242V393Z" />
<glyph unicode="?" glyph-name="question" horiz-adv-x="879" d="M289 403V457Q289 574 325 649T459 809Q595 924 630 982T666 1122Q666 1224 601 1279T412 1335Q333 1335 258 1317T86 1249L27 1384Q216 1483 422 1483Q613 1483 719 1389T825 1124Q825 1051 806
996T748 891T584 731Q483 645 451 588T418 436V403H289ZM240 106Q240 242 360 242Q418 242 449 207T481 106Q481 42 449 7T360 -29Q308 -29 274 2T240 106Z" />
<glyph unicode="@" glyph-name="at" horiz-adv-x="1841" d="M1720 729Q1720 587 1676 469T1552 286T1368 221Q1282 221 1223 273T1153 406H1145Q1105 319 1031 270T854 221Q704 221 620 323T535 602Q535 806 653 933T963 1061Q1031 1061 1117 1049T1272 1014L1247
544V522Q1247 344 1380 344Q1471 344 1528 451T1585 731Q1585 912 1511 1048T1301 1257T987 1331Q764 1331 599 1239T347 975T260 578Q260 273 421 109T885 -55Q1095 -55 1321 31V-102Q1129 -186 885 -186Q522 -186 322 13T121 571Q121 831 228 1034T533 1348T987
1460Q1202 1460 1369 1370T1628 1113T1720 729ZM686 598Q686 344 881 344Q1088 344 1106 657L1120 918Q1048 938 963 938Q833 938 760 848T686 598Z" />
<glyph unicode="A" glyph-name="A" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885Z" />
<glyph unicode="B" glyph-name="B" horiz-adv-x="1327" d="M201 1462H614Q905 1462 1035 1375T1165 1100Q1165 970 1093 886T881 776V766Q1214 709 1214 416Q1214 220 1082 110T711 0H201V1462ZM371 836H651Q831 836 910 892T989 1083Q989 1206 901 1260T621 1315H371V836ZM371
692V145H676Q853 145 942 213T1032 428Q1032 564 941 628T662 692H371Z" />
<glyph unicode="C" glyph-name="C" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159 1253Q993
1331 827 1331Z" />
<glyph unicode="D" glyph-name="D" horiz-adv-x="1493" d="M1368 745Q1368 383 1172 192T606 0H201V1462H649Q990 1462 1179 1273T1368 745ZM1188 739Q1188 1025 1045 1170T618 1315H371V147H578Q882 147 1035 296T1188 739Z" />
<glyph unicode="E" glyph-name="E" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0Z" />
<glyph unicode="F" glyph-name="F" horiz-adv-x="1057" d="M371 0H201V1462H1016V1311H371V776H977V625H371V0Z" />
<glyph unicode="G" glyph-name="G" horiz-adv-x="1491" d="M844 766H1341V55Q1225 18 1105 -1T827 -20Q495 -20 310 177T125 731Q125 959 216 1130T480 1392T883 1483Q1117 1483 1319 1397L1253 1247Q1055 1331 872 1331Q605 1331 455 1172T305 731Q305 435 449
282T874 129Q1026 129 1171 164V614H844V766Z" />
<glyph unicode="H" glyph-name="H" horiz-adv-x="1511" d="M1311 0H1141V688H371V0H201V1462H371V840H1141V1462H1311V0Z" />
<glyph unicode="I" glyph-name="I" horiz-adv-x="571" d="M201 0V1462H371V0H201Z" />
<glyph unicode="J" glyph-name="J" horiz-adv-x="547" d="M-12 -385Q-106 -385 -160 -358V-213Q-89 -233 -12 -233Q87 -233 138 -173T190 0V1462H360V14Q360 -176 264 -280T-12 -385Z" />
<glyph unicode="K" glyph-name="K" horiz-adv-x="1257" d="M1257 0H1057L524 709L371 573V0H201V1462H371V737L1034 1462H1235L647 827L1257 0Z" />
<glyph unicode="L" glyph-name="L" horiz-adv-x="1063" d="M201 0V1462H371V154H1016V0H201Z" />
<glyph unicode="M" glyph-name="M" horiz-adv-x="1849" d="M848 0L352 1296H344Q358 1142 358 930V0H201V1462H457L920 256H928L1395 1462H1649V0H1479V942Q1479 1104 1493 1294H1485L985 0H848Z" />
<glyph unicode="N" glyph-name="N" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0Z" />
<glyph unicode="O" glyph-name="O" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290 1028
1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
<glyph unicode="P" glyph-name="P" horiz-adv-x="1233" d="M1128 1036Q1128 814 977 695T543 575H371V0H201V1462H580Q1128 1462 1128 1036ZM371 721H524Q750 721 851 794T952 1028Q952 1173 857 1244T561 1315H371V721Z" />
<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1595" d="M1470 733Q1470 452 1357 266T1038 14L1386 -348H1139L854 -18L799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042
129 1166 282T1290 733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
<glyph unicode="R" glyph-name="R" horiz-adv-x="1266" d="M371 608V0H201V1462H602Q871 1462 999 1359T1128 1049Q1128 759 834 657L1231 0H1030L676 608H371ZM371 754H604Q784 754 868 825T952 1040Q952 1185 867 1249T592 1313H371V754Z" />
<glyph unicode="S" glyph-name="S" horiz-adv-x="1124" d="M1026 389Q1026 196 886 88T506 -20Q246 -20 106 47V211Q196 173 302 151T512 129Q682 129 768 193T854 373Q854 449 824 497T722 587T504 680Q300 753 213 853T125 1114Q125 1283 252 1383T588 1483Q806
1483 989 1403L936 1255Q755 1331 584 1331Q449 1331 373 1273T297 1112Q297 1036 325 988T419 899T623 809Q853 727 939 633T1026 389Z" />
<glyph unicode="T" glyph-name="T" horiz-adv-x="1133" d="M651 0H481V1311H18V1462H1114V1311H651V0Z" />
<glyph unicode="U" glyph-name="U" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305Z" />
<glyph unicode="V" glyph-name="V" horiz-adv-x="1219" d="M1036 1462H1219L692 0H524L0 1462H180L516 516Q574 353 608 199Q644 361 702 522L1036 1462Z" />
<glyph unicode="W" glyph-name="W" horiz-adv-x="1896" d="M1477 0H1309L1014 979Q993 1044 967 1143T940 1262Q918 1130 870 973L584 0H416L27 1462H207L438 559Q486 369 508 215Q535 398 588 573L850 1462H1030L1305 565Q1353 410 1386 215Q1405 357 1458 561L1688
1462H1868L1477 0Z" />
<glyph unicode="X" glyph-name="X" horiz-adv-x="1182" d="M1174 0H981L588 643L188 0H8L494 764L41 1462H229L592 883L958 1462H1139L686 770L1174 0Z" />
<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731Z" />
<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1169" d="M1087 0H82V133L858 1309H106V1462H1065V1329L289 154H1087V0Z" />
<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="674" d="M623 -324H166V1462H623V1321H334V-182H623V-324Z" />
<glyph unicode="\" glyph-name="backslash" horiz-adv-x="752" d="M186 1462L733 0H567L23 1462H186Z" />
<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="674" d="M51 -182H340V1321H51V1462H508V-324H51V-182Z" />
<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1110" d="M49 551L483 1473H582L1059 551H907L535 1296L201 551H49Z" />
<glyph unicode="_" glyph-name="underscore" horiz-adv-x="918" d="M922 -315H-4V-184H922V-315Z" />
<glyph unicode="`" glyph-name="grave" horiz-adv-x="1182" d="M786 1241H676Q611 1293 522 1389T393 1548V1569H596Q628 1500 685 1410T786 1266V1241Z" />
<glyph unicode="a" glyph-name="a" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878 1027T973
748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117Z" />
<glyph unicode="b" glyph-name="b" horiz-adv-x="1255" d="M686 1114Q902 1114 1021 967T1141 549Q1141 279 1021 130T686 -20Q579 -20 491 19T342 141H330L295 0H176V1556H342V1178Q342 1051 334 950H342Q458 1114 686 1114ZM662 975Q492 975 417 878T342 549Q342
318 419 219T666 119Q819 119 894 230T969 551Q969 765 894 870T662 975Z" />
<glyph unicode="c" glyph-name="c" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781 -20 614 -20Z" />
<glyph unicode="d" glyph-name="d" horiz-adv-x="1255" d="M922 147H913Q798 -20 569 -20Q354 -20 235 127T115 545Q115 816 235 966T569 1116Q792 1116 911 954H924L917 1033L913 1110V1556H1079V0H944L922 147ZM590 119Q760 119 836 211T913 510V545Q913 778
836 877T588 977Q442 977 365 864T287 543Q287 333 364 226T590 119Z" />
<glyph unicode="e" glyph-name="e" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384 891T291
653H864Q864 810 794 893T594 977Z" />
<glyph unicode="f" glyph-name="f" horiz-adv-x="694" d="M670 967H391V0H225V967H29V1042L225 1102V1163Q225 1567 578 1567Q665 1567 782 1532L739 1399Q643 1430 575 1430Q481 1430 436 1368T391 1167V1096H670V967Z" />
<glyph unicode="g" glyph-name="g" horiz-adv-x="1122" d="M1073 1096V991L870 967Q898 932 920 876T942 748Q942 587 832 491T530 395Q481 395 438 403Q332 347 332 262Q332 217 369 196T496 174H690Q868 174 963 99T1059 -119Q1059 -301 913 -396T487 -492Q272
-492 156 -412T39 -186Q39 -86 103 -13T283 86Q241 105 213 145T184 238Q184 298 216 343T317 430Q232 465 179 549T125 741Q125 921 233 1018T539 1116Q625 1116 694 1096H1073ZM199 -184Q199 -273 274 -319T489 -365Q698 -365 798 -303T899 -133Q899 -44 844
-10T637 25H438Q325 25 262 -29T199 -184ZM289 745Q289 630 354 571T535 512Q778 512 778 748Q778 995 532 995Q415 995 352 932T289 745Z" />
<glyph unicode="h" glyph-name="h" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q501 975 422 881T342 573V0H176V1556H342V1085Q342 1000 334 944H344Q393 1023 483 1068T690 1114Q891 1114 991 1019T1092 715V0H926Z" />
<glyph unicode="i" glyph-name="i" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260 1282Q218 1282 190 1309T162 1393Z" />
<glyph unicode="j" glyph-name="j" horiz-adv-x="518" d="M43 -492Q-52 -492 -111 -467V-332Q-42 -352 25 -352Q103 -352 139 -310T176 -180V1096H342V-168Q342 -492 43 -492ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260
1282Q218 1282 190 1309T162 1393Z" />
<glyph unicode="k" glyph-name="k" horiz-adv-x="1075" d="M340 561Q383 622 471 721L825 1096H1022L578 629L1053 0H852L465 518L340 410V0H176V1556H340V731Q340 676 332 561H340Z" />
<glyph unicode="l" glyph-name="l" horiz-adv-x="518" d="M342 0H176V1556H342V0Z" />
<glyph unicode="m" glyph-name="m" horiz-adv-x="1905" d="M1573 0V713Q1573 844 1517 909T1343 975Q1188 975 1114 886T1040 612V0H874V713Q874 844 818 909T643 975Q487 975 415 882T342 575V0H176V1096H311L338 946H346Q393 1026 478 1071T670 1116Q927 1116
1006 930H1014Q1063 1016 1156 1066T1368 1116Q1554 1116 1646 1021T1739 715V0H1573Z" />
<glyph unicode="n" glyph-name="n" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926Z" />
<glyph unicode="o" glyph-name="o" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950 758 866
866T616 975Q453 975 370 868T287 549Z" />
<glyph unicode="p" glyph-name="p" horiz-adv-x="1255" d="M686 -20Q579 -20 491 19T342 141H330Q342 45 342 -41V-492H176V1096H311L334 946H342Q406 1036 491 1076T686 1116Q904 1116 1022 967T1141 549Q1141 279 1021 130T686 -20ZM662 975Q494 975 419 882T342
586V549Q342 318 419 219T666 119Q808 119 888 234T969 551Q969 756 889 865T662 975Z" />
<glyph unicode="q" glyph-name="q" horiz-adv-x="1255" d="M590 119Q756 119 832 208T913 508V545Q913 775 835 876T588 977Q442 977 365 864T287 543Q287 336 363 228T590 119ZM565 -20Q353 -20 234 129T115 545Q115 814 235 965T569 1116Q794 1116 915 946H924L948
1096H1079V-492H913V-23Q913 77 924 147H911Q796 -20 565 -20Z" />
<glyph unicode="r" glyph-name="r" horiz-adv-x="836" d="M676 1116Q749 1116 807 1104L784 950Q716 965 664 965Q531 965 437 857T342 588V0H176V1096H313L332 893H340Q401 1000 487 1058T676 1116Z" />
<glyph unicode="s" glyph-name="s" horiz-adv-x="977" d="M883 299Q883 146 769 63T449 -20Q231 -20 109 49V203Q188 163 278 140T453 117Q583 117 653 158T723 285Q723 349 668 394T451 502Q298 559 234 601T138 698T106 827Q106 961 215 1038T514 1116Q691 1116
860 1044L801 909Q636 977 502 977Q384 977 324 940T264 838Q264 794 286 763T359 704T551 623Q746 552 814 480T883 299Z" />
<glyph unicode="t" glyph-name="t" horiz-adv-x="723" d="M530 117Q574 117 615 123T680 137V10Q653 -3 601 -11T506 -20Q188 -20 188 315V967H31V1047L188 1116L258 1350H354V1096H672V967H354V322Q354 223 401 170T530 117Z" />
<glyph unicode="u" glyph-name="u" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332Z" />
<glyph unicode="v" glyph-name="v" horiz-adv-x="1026" d="M416 0L0 1096H178L414 446Q494 218 508 150H516Q527 203 585 369T848 1096H1026L610 0H416Z" />
<glyph unicode="w" glyph-name="w" horiz-adv-x="1593" d="M1071 0L870 643Q851 702 799 911H791Q751 736 721 641L514 0H322L23 1096H197Q303 683 358 467T422 176H430Q441 233 465 323T508 467L709 1096H889L1085 467Q1141 295 1161 178H1169Q1173 214 1190
289T1399 1096H1571L1268 0H1071Z" />
<glyph unicode="x" glyph-name="x" horiz-adv-x="1073" d="M440 561L59 1096H248L537 676L825 1096H1012L631 561L1032 0H844L537 444L227 0H39L440 561Z" />
<glyph unicode="y" glyph-name="y" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096Z" />
<glyph unicode="z" glyph-name="z" horiz-adv-x="958" d="M877 0H82V113L680 967H119V1096H862V967L272 129H877V0Z" />
<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="776" d="M475 12Q475 -90 533 -136T705 -184V-324Q515 -322 411 -237T307 2V305Q307 409 244 453T61 498V639Q191 641 249 687T307 829V1135Q307 1290 415 1376T705 1462V1323Q475 1317 475 1124V829Q475
614 252 575V563Q475 524 475 309V12Z" />
<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M494 1556H635V-496H494V1556Z" />
<glyph unicode="}" glyph-name="braceright" horiz-adv-x="776" d="M522 575Q299 614 299 829V1124Q299 1317 72 1323V1462Q256 1462 361 1375T467 1135V829Q467 732 526 687T715 639V498Q593 498 530 454T467 305V2Q467 -151 365 -236T72 -324V-184Q183 -182
241 -136T299 12V309Q299 423 354 483T522 563V575Z" />
<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1171" d="M338 713Q285 713 222 680T104 592V743Q204 852 348 852Q416 852 472 838T618 786Q684 758 733 745T829 731Q883 731 947 763T1065 852V702Q963 592 821 592Q749 592 686 608T551 657Q476 689
431 701T338 713Z" />
<glyph unicode="&#xa0;" glyph-name="nbspace" horiz-adv-x="532" />
<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="547" d="M219 684H324L375 -373H168L219 684ZM393 983Q393 848 272 848Q212 848 182 883T152 983Q152 1046 183 1082T272 1118Q323 1118 358 1086T393 983Z" />
<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1171" d="M971 240Q866 186 719 180V-20H586V186Q383 218 287 354T190 741Q190 1249 586 1311V1483H721V1319Q796 1316 867 1300T987 1260L938 1120Q805 1171 696 1171Q524 1171 443 1066T362 743Q362
531 441 430T688 328Q829 328 971 387V240Z" />
<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1171" d="M682 1481Q872 1481 1042 1397L981 1264Q827 1341 684 1341Q561 1341 499 1279T436 1077V782H858V655H436V434Q436 334 404 266T297 154H1092V0H63V141Q268 188 268 432V655H70V782H268V1098Q268
1276 380 1378T682 1481Z" />
<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1171" d="M184 723Q184 845 258 952L123 1092L217 1184L352 1051Q456 1124 586 1124Q713 1124 815 1051L952 1184L1047 1092L913 954Q987 841 987 723Q987 592 913 489L1044 354L952 262L815 395Q713
324 586 324Q452 324 352 397L217 264L125 356L258 492Q184 599 184 723ZM313 723Q313 611 391 531T586 451Q702 451 781 530T860 723Q860 837 780 918T586 999Q470 999 392 917T313 723Z" />
<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1171" d="M584 735L963 1462H1137L721 692H983V565H666V395H983V268H666V0H502V268H186V395H502V565H186V692H442L31 1462H209L584 735Z" />
<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M494 1556H635V780H494V1556ZM494 281H635V-496H494V281Z" />
<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1057" d="M139 809Q139 895 182 963T303 1069Q229 1109 187 1164T145 1305Q145 1426 248 1495T549 1565Q643 1565 722 1551T899 1497L846 1366Q748 1405 681 1418T537 1432Q421 1432 363 1403T305 1309Q305
1249 366 1207T582 1110Q768 1042 843 967T918 784Q918 694 877 624T762 512Q915 431 915 285Q915 145 798 69T469 -8Q251 -8 123 57V205Q201 168 298 146T477 123Q611 123 681 161T752 270Q752 316 728 345T650 403T481 475Q339 527 272 572T172 674T139 809ZM285
829Q285 752 351 700T584 586L633 567Q770 647 770 758Q770 841 697 897T438 1010Q370 991 328 941T285 829Z" />
<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1182" d="M309 1393Q309 1445 335 1468T399 1491Q437 1491 464 1468T492 1393Q492 1343 465 1319T399 1294Q362 1294 336 1318T309 1393ZM690 1393Q690 1445 716 1468T780 1491Q817 1491 844 1468T872
1393Q872 1343 845 1319T780 1294Q743 1294 717 1318T690 1393Z" />
<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M893 1059Q768 1059 701 972T633 731Q633 563 696 482T891 401Q977 401 1102 446V322Q1054 302 1004 288T883 274Q689 274 585 394T481 731Q481 940 591 1063T893 1186Q1021 1186 1139 1126L1081
1008Q973 1059 893 1059ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499
731Q1499 905 1412 1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="725" d="M532 801L508 885Q416 788 276 788Q181 788 126 837T70 989Q70 1091 147 1143T389 1202L506 1206V1245Q506 1378 358 1378Q258 1378 154 1327L111 1423Q225 1479 358 1479Q488 1479 556
1427T625 1253V801H532ZM193 989Q193 889 305 889Q506 889 506 1069V1118L408 1114Q296 1110 245 1082T193 989Z" />
<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1018" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551ZM477 551L821 958L938 889L651 539L938 188L821 117L477 524V551Z" />
<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1171" d="M1065 791V264H928V653H104V791H1065Z" />
<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M723 762H831Q911 762 959 803T1008 909Q1008 984 965 1016T829 1049H723V762ZM1157 913Q1157 833 1115 772T995 680L1233 285H1065L858 639H723V285H575V1176H836Q1002 1176 1079 1111T1157
913ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499 731Q1499 905 1412
1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1683H1030V1556Z" />
<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M127 1171Q127 1301 217 1392T438 1483Q568 1483 659 1393T750 1171Q750 1087 709 1016T595 902T438 860Q308 860 218 950T127 1171ZM242 1171Q242 1089 300 1032T440 975Q520 975 577 1031T635
1171Q635 1255 579 1311T440 1368Q357 1368 300 1311T242 1171Z" />
<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791ZM104 1V139H1065V1H104Z" />
<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="711" d="M653 586H49V690L285 920Q374 1006 415 1054T472 1141T489 1233Q489 1301 449 1335T346 1370Q294 1370 245 1351T127 1282L61 1370Q192 1481 344 1481Q476 1481 549 1416T623 1239Q623
1159 579 1084T387 870L213 705H653V586Z" />
<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="711" d="M627 1255Q627 1175 586 1124T477 1049Q653 1002 653 840Q653 712 561 641T301 569Q149 569 33 625V748Q180 680 303 680Q514 680 514 842Q514 987 283 987H166V1094H285Q388 1094 437
1133T487 1241Q487 1302 447 1336T340 1370Q274 1370 218 1349T106 1292L37 1382Q100 1427 170 1454T334 1481Q470 1481 548 1422T627 1255Z" />
<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1182" d="M393 1266Q441 1328 496 1416T584 1569H786V1548Q742 1483 655 1388T504 1241H393V1266Z" />
<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1268" d="M342 381Q342 119 596 119Q767 119 846 213T926 520V1096H1092V0H956L930 147H920Q809 -20 580 -20Q430 -20 342 72H332Q342 -12 342 -172V-492H176V1096H342V381Z" />
<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1120 -260H1006V1452H793V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1120V-260Z" />
<glyph unicode="&#xb7;" glyph-name="middot" horiz-adv-x="545" d="M152 723Q152 789 183 823T270 858Q328 858 360 824T393 723Q393 658 360 623T270 588Q219 588 186 619T152 723Z" />
<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="465" d="M436 -289Q436 -386 360 -439T133 -492Q82 -492 37 -483V-377Q82 -385 141 -385Q220 -385 260 -365T301 -291Q301 -248 262 -222T113 -178L201 0H311L256 -115Q436 -154 436 -289Z" />
<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="711" d="M338 1462H481V586H348V1165Q348 1256 354 1346Q332 1324 305 1302T143 1184L76 1280L338 1462Z" />
<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="768" d="M702 1135Q702 971 617 880T381 788Q235 788 151 881T66 1135Q66 1298 150 1388T385 1479Q537 1479 619 1388T702 1135ZM188 1135Q188 1013 233 952T383 891Q488 891 534 952T580 1135Q580
1258 534 1317T383 1376Q280 1376 234 1317T188 1135Z" />
<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1018" d="M936 524L592 117L475 188L762 539L475 889L592 958L936 551V524ZM541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1597" d="M1298 1462L395 0H252L1155 1462H1298ZM593 1462H736V586H603V1165Q603 1256 609 1346Q587 1324 560 1302T398 1184L331 1280L593 1462ZM1489 203H1364V1H1219V203H817V304L1225 883H1364V320H1489V203ZM1219
320V515Q1219 649 1225 724Q1220 712 1208 693T1181 651T1151 606T1125 566L957 320H1219Z" />
<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1597" d="M1230 1462L327 0H184L1087 1462H1230ZM564 1462H707V586H574V1165Q574 1256 580 1346Q558 1324 531 1302T369 1184L302 1280L564 1462ZM1499 1H895V105L1131 335Q1220 421 1261 469T1318
556T1335 648Q1335 716 1295 750T1192 785Q1140 785 1091 766T973 697L907 785Q1038 896 1190 896Q1322 896 1395 831T1469 654Q1469 574 1425 499T1233 285L1059 120H1499V1Z" />
<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1597" d="M876 1255Q876 1175 835 1124T726 1049Q902 1002 902 840Q902 712 810 641T550 569Q398 569 282 625V748Q429 680 552 680Q763 680 763 842Q763 987 532 987H415V1094H534Q637 1094
686 1133T736 1241Q736 1302 696 1336T589 1370Q523 1370 467 1349T355 1292L286 1382Q349 1427 419 1454T583 1481Q719 1481 797 1422T876 1255ZM1390 1462L487 0H344L1247 1462H1390ZM1569 203H1444V1H1299V203H897V304L1305 883H1444V320H1569V203ZM1299 320V515Q1299
649 1305 724Q1300 712 1288 693T1261 651T1231 606T1205 566L1037 320H1299Z" />
<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="879" d="M590 684V633Q590 511 553 437T418 279Q297 173 267 136T224 60T211 -35Q211 -135 277 -191T465 -248Q545 -248 620 -229T793 -162L852 -297Q655 -393 457 -393Q267 -393 159 -300T51
-37Q51 33 68 85T118 182T194 268T293 356Q394 444 426 502T459 653V684H590ZM639 983Q639 848 518 848Q459 848 428 882T397 983Q397 1047 430 1082T518 1118Q569 1118 604 1086T639 983Z" />
<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM724 1579H614Q549 1631 460 1727T331 1886V1907H534Q566 1838
623 1748T724 1604V1579Z" />
<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM526 1604Q574 1666 629 1754T717 1907H919V1886Q875 1821 788
1726T637 1579H526V1604Z" />
<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM303 1602Q430 1738 481 1802T555 1907H721Q743 1865 797
1799T977 1602V1579H858Q770 1634 637 1765Q501 1631 418 1579H303V1602Z" />
<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM792 1581Q749 1581 708 1599T628 1640T552 1681T481 1700Q431
1700 406 1670T366 1579H268Q281 1700 338 1768T487 1837Q533 1837 576 1819T658 1778T733 1737T801 1718Q850 1718 874 1747T913 1839H1012Q999 1718 943 1650T792 1581Z" />
<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM364 1731Q364 1783 390 1806T454 1829Q492 1829 519 1806T547
1731Q547 1681 520 1657T454 1632Q417 1632 391 1656T364 1731ZM745 1731Q745 1783 771 1806T835 1829Q872 1829 899 1806T927 1731Q927 1681 900 1657T835 1632Q798 1632 772 1656T745 1731Z" />
<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM870 1587Q870 1489 809 1430T645 1370Q544 1370 484 1428T424
1585Q424 1683 484 1740T645 1798Q746 1798 808 1739T870 1587ZM762 1585Q762 1641 729 1671T645 1702Q594 1702 561 1672T528 1585Q528 1529 558 1499T645 1468Q697 1468 729 1498T762 1585Z" />
<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1788" d="M1665 0H915V465H401L174 0H-2L696 1462H1665V1311H1085V840H1626V690H1085V152H1665V0ZM469 618H915V1311H797L469 618Z" />
<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159
1253Q993 1331 827 1331ZM950 -289Q950 -386 874 -439T647 -492Q596 -492 551 -483V-377Q596 -385 655 -385Q734 -385 774 -365T815 -291Q815 -248 776 -222T627 -178L715 0H825L770 -115Q950 -154 950 -289Z" />
<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM713 1579H603Q538 1631 449 1727T320 1886V1907H523Q555 1838 612 1748T713 1604V1579Z" />
<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM456 1604Q504 1666 559 1754T647 1907H849V1886Q805 1821 718 1726T567 1579H456V1604Z" />
<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM263 1602Q390 1738 441 1802T515 1907H681Q703 1865 757 1799T937 1602V1579H818Q730 1634 597 1765Q461 1631 378 1579H263V1602Z" />
<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM327 1731Q327 1783 353 1806T417 1829Q455 1829 482 1806T510 1731Q510 1681 483 1657T417 1632Q380 1632 354 1656T327 1731ZM708
1731Q708 1783 734 1806T798 1829Q835 1829 862 1806T890 1731Q890 1681 863 1657T798 1632Q761 1632 735 1656T708 1731Z" />
<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM398 1579H288Q223 1631 134 1727T5 1886V1907H208Q240 1838 297 1748T398 1604V1579Z" />
<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM179 1604Q227 1666 282 1754T370 1907H572V1886Q528 1821 441 1726T290 1579H179V1604Z" />
<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM-57 1602Q70 1738 121 1802T195 1907H361Q383 1865 437 1799T617 1602V1579H498Q410 1634 277 1765Q141 1631 58 1579H-57V1602Z" />
<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM5 1731Q5 1783 31 1806T95 1829Q133 1829 160 1806T188 1731Q188 1681 161 1657T95 1632Q58 1632 32 1656T5 1731ZM386 1731Q386 1783 412 1806T476 1829Q513 1829
540 1806T568 1731Q568 1681 541 1657T476 1632Q439 1632 413 1656T386 1731Z" />
<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1479" d="M1352 745Q1352 383 1156 192T590 0H201V649H47V799H201V1462H635Q972 1462 1162 1275T1352 745ZM1171 739Q1171 1315 602 1315H371V799H750V649H371V147H561Q1171 147 1171 739Z" />
<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0ZM935 1581Q892 1581 851 1599T771 1640T695 1681T624 1700Q574 1700
549 1670T509 1579H411Q424 1700 481 1768T630 1837Q676 1837 719 1819T801 1778T876 1737T944 1718Q993 1718 1017 1747T1056 1839H1155Q1142 1718 1086 1650T935 1581Z" />
<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM907 1579H797Q732 1631 643 1727T514 1886V1907H717Q749 1838 806 1748T907 1604V1579Z" />
<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM659 1604Q707 1666 762 1754T850 1907H1052V1886Q1008 1821 921 1726T770 1579H659V1604Z" />
<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM448 1602Q575 1738 626 1802T700 1907H866Q888 1865 942 1799T1122 1602V1579H1003Q915 1634 782 1765Q646 1631 563 1579H448V1602Z" />
<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM942 1581Q899 1581 858 1599T778 1640T702 1681T631 1700Q581 1700 556 1670T516 1579H418Q431 1700 488 1768T637 1837Q683 1837 726 1819T808 1778T883 1737T951 1718Q1000 1718 1024 1747T1063 1839H1162Q1149
1718 1093 1650T942 1581Z" />
<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM522 1731Q522 1783 548 1806T612 1829Q650 1829 677 1806T705 1731Q705 1681 678 1657T612 1632Q575 1632 549 1656T522 1731ZM903 1731Q903 1783 929 1806T993 1829Q1030 1829 1057 1806T1085 1731Q1085
1681 1058 1657T993 1632Q956 1632 930 1656T903 1731Z" />
<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1171" d="M940 1176L1036 1077L684 723L1034 371L938 272L584 623L236 272L135 371L485 723L133 1075L233 1176L586 821L940 1176Z" />
<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q564 -20 416 80L315 -61L195 18L303 172Q125 370 125 735Q125 1092 301 1288T801 1485Q1010 1485 1167 1391L1264 1526L1384 1446L1278 1298Q1470 1096
1470 733ZM1290 733Q1290 1005 1180 1159L508 211Q623 129 799 129Q1042 129 1166 282T1290 733ZM305 733Q305 471 406 317L1075 1260Q969 1333 801 1333Q558 1333 432 1180T305 733Z" />
<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM856 1579H746Q681 1631 592 1727T463 1886V1907H666Q698
1838 755 1748T856 1604V1579Z" />
<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM600 1604Q648 1666 703 1754T791 1907H993V1886Q949
1821 862 1726T711 1579H600V1604Z" />
<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM393 1602Q520 1738 571 1802T645
1907H811Q833 1865 887 1799T1067 1602V1579H948Q860 1634 727 1765Q591 1631 508 1579H393V1602Z" />
<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM461 1731Q461 1783 487 1806T551 1829Q589
1829 616 1806T644 1731Q644 1681 617 1657T551 1632Q514 1632 488 1656T461 1731ZM842 1731Q842 1783 868 1806T932 1829Q969 1829 996 1806T1024 1731Q1024 1681 997 1657T932 1632Q895 1632 869 1656T842 1731Z" />
<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731ZM442 1604Q490 1666 545 1754T633 1907H835V1886Q791 1821 704 1726T553 1579H442V1604Z" />
<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1251" d="M1145 784Q1145 557 994 438T555 319H371V0H201V1462H371V1206H586Q867 1206 1006 1103T1145 784ZM371 465H539Q765 465 866 536T967 772Q967 921 872 990T575 1059H371V465Z" />
<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1274" d="M1049 1266Q1049 1131 906 1016Q818 946 790 913T762 846Q762 814 775 793T824 744T938 664Q1078 569 1129 491T1180 311Q1180 151 1083 66T807 -20Q619 -20 512 49V203Q575 164 653 141T803
117Q1018 117 1018 299Q1018 374 977 427T825 551Q698 633 650 694T602 840Q602 903 636 956T742 1062Q817 1119 849 1164T881 1262Q881 1342 813 1384T618 1427Q342 1427 342 1204V0H176V1202Q176 1380 286 1473T618 1567Q824 1567 936 1489T1049 1266Z" />
<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM928 1241H818Q753 1293 664 1389T535 1548V1569H738Q770 1500 827 1410T928 1266V1241Z" />
<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM436 1266Q484 1328 539 1416T627 1569H829V1548Q785 1483 698 1388T547 1241H436V1266Z" />
<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784
1114 878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM484 1264Q611 1400 662 1464T736 1569H902Q924 1527 978 1461T1158 1264V1241H1039Q951 1296 818 1427Q682 1293 599 1241H484V1264Z"
/>
<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM977 1243Q934 1243 893 1261T813 1302T737 1343T666 1362Q616 1362 591 1332T551 1241H453Q466 1362 523 1430T672 1499Q718 1499 761
1481T843 1440T918 1399T986 1380Q1035 1380 1059 1409T1098 1501H1197Q1184 1380 1128 1312T977 1243Z" />
<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM535 1393Q535 1445 561 1468T625 1491Q663 1491 690 1468T718 1393Q718 1343 691 1319T625 1294Q588 1294 562 1318T535 1393ZM916 1393Q916
1445 942 1468T1006 1491Q1043 1491 1070 1468T1098 1393Q1098 1343 1071 1319T1006 1294Q969 1294 943 1318T916 1393Z" />
<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878
1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM1060 1458Q1060 1360 999 1301T835 1241Q734 1241 674 1299T614 1456Q614 1554 674 1611T835 1669Q936 1669 998 1610T1060 1458ZM952 1456Q952
1512 919 1542T835 1573Q784 1573 751 1543T718 1456Q718 1400 748 1370T835 1339Q887 1339 919 1369T952 1456Z" />
<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1757" d="M94 303Q94 464 218 553T596 651L780 657V725Q780 854 722 915T545 977Q401 977 238 893L186 1020Q260 1061 359 1087T557 1114Q687 1114 769 1071T893 932Q946 1020 1031 1068T1227 1116Q1419
1116 1535 983T1651 627V520H950Q958 125 1272 125Q1363 125 1441 142T1604 199V51Q1518 13 1444 -3T1268 -20Q979 -20 854 213Q773 86 675 33T442 -20Q279 -20 187 65T94 303ZM268 301Q268 206 321 162T463 117Q608 117 692 201T776 440V539L618 532Q432 524 350
470T268 301ZM1225 977Q1104 977 1035 894T954 653H1473Q1473 809 1409 893T1225 977Z" />
<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781
-20 614 -20ZM762 -289Q762 -386 686 -439T459 -492Q408 -492 363 -483V-377Q408 -385 467 -385Q546 -385 586 -365T627 -291Q627 -248 588 -222T439 -178L527 0H637L582 -115Q762 -154 762 -289Z" />
<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
891T291 653H864Q864 810 794 893T594 977ZM967 1241H857Q792 1293 703 1389T574 1548V1569H777Q809 1500 866 1410T967 1266V1241Z" />
<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
891T291 653H864Q864 810 794 893T594 977ZM471 1266Q519 1328 574 1416T662 1569H864V1548Q820 1483 733 1388T582 1241H471V1266Z" />
<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462
977 384 891T291 653H864Q864 810 794 893T594 977ZM515 1264Q642 1400 693 1464T767 1569H933Q955 1527 1009 1461T1189 1264V1241H1070Q982 1296 849 1427Q713 1293 630 1241H515V1264Z" />
<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977
384 891T291 653H864Q864 810 794 893T594 977ZM319 1393Q319 1445 345 1468T409 1491Q447 1491 474 1468T502 1393Q502 1343 475 1319T409 1294Q372 1294 346 1318T319 1393ZM700 1393Q700 1445 726 1468T790 1491Q827 1491 854 1468T882 1393Q882 1343 855 1319T790
1294Q753 1294 727 1318T700 1393Z" />
<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM355 1241H245Q180 1293 91 1389T-38 1548V1569H165Q197 1500 254 1410T355 1266V1241Z" />
<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM169 1266Q217 1328 272 1416T360 1569H562V1548Q518 1483 431 1388T280 1241H169V1266Z" />
<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-77 1264Q50 1400 101 1464T175 1569H341Q363 1527 417 1461T597 1264V1241H478Q390 1296 257 1427Q121 1293 38 1241H-77V1264Z" />
<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-20 1393Q-20 1445 6 1468T70 1491Q108 1491 135 1468T163 1393Q163 1343 136 1319T70 1294Q33 1294 7 1318T-20 1393ZM361 1393Q361 1445 387 1468T451 1491Q488
1491 515 1468T543 1393Q543 1343 516 1319T451 1294Q414 1294 388 1318T361 1393Z" />
<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1221" d="M1122 563Q1122 282 992 131T614 -20Q392 -20 253 114T113 475Q113 705 244 836T596 967Q822 967 922 846L930 850Q873 1064 668 1255L397 1100L324 1208L557 1341Q465 1403 371 1452L440 1569Q596
1496 698 1421L936 1559L1012 1452L805 1333Q957 1190 1039 991T1122 563ZM954 512Q954 659 864 744T618 829Q281 829 281 469Q281 302 368 211T618 119Q793 119 873 219T954 512Z" />
<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926ZM802 1243Q759 1243 718 1261T638
1302T562 1343T491 1362Q441 1362 416 1332T376 1241H278Q291 1362 348 1430T497 1499Q543 1499 586 1481T668 1440T743 1399T811 1380Q860 1380 884 1409T923 1501H1022Q1009 1380 953 1312T802 1243Z" />
<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
758 866 866T616 975Q453 975 370 868T287 549ZM998 1241H888Q823 1293 734 1389T605 1548V1569H808Q840 1500 897 1410T998 1266V1241Z" />
<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
758 866 866T616 975Q453 975 370 868T287 549ZM479 1266Q527 1328 582 1416T670 1569H872V1548Q828 1483 741 1388T590 1241H479V1266Z" />
<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950
549Q950 758 866 866T616 975Q453 975 370 868T287 549ZM282 1264Q409 1400 460 1464T534 1569H700Q722 1527 776 1461T956 1264V1241H837Q749 1296 616 1427Q480 1293 397 1241H282V1264Z" />
<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
758 866 866T616 975Q453 975 370 868T287 549ZM1029 1243Q986 1243 945 1261T865 1302T789 1343T718 1362Q668 1362 643 1332T603 1241H505Q518 1362 575 1430T724 1499Q770 1499 813 1481T895 1440T970 1399T1038 1380Q1087 1380 1111 1409T1150 1501H1249Q1236
1380 1180 1312T1029 1243Z" />
<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
758 866 866T616 975Q453 975 370 868T287 549ZM336 1393Q336 1445 362 1468T426 1491Q464 1491 491 1468T519 1393Q519 1343 492 1319T426 1294Q389 1294 363 1318T336 1393ZM717 1393Q717 1445 743 1468T807 1491Q844 1491 871 1468T899 1393Q899 1343 872 1319T807
1294Q770 1294 744 1318T717 1393Z" />
<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1171" d="M104 653V791H1065V653H104ZM471 373Q471 433 500 463T584 494Q636 494 665 463T694 373Q694 316 665 284T584 252Q532 252 502 283T471 373ZM471 1071Q471 1131 500 1161T584 1192Q636 1192
665 1161T694 1071Q694 1014 665 982T584 950Q532 950 502 981T471 1071Z" />
<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q460 -20 348 49L264 -68L150 10L244 141Q115 293 115 549Q115 817 249 966T621 1116Q775 1116 891 1040L975 1159L1092 1083L995 950Q1122 798 1122 549ZM287
549Q287 378 340 276L805 922Q730 975 616 975Q453 975 370 868T287 549ZM950 549Q950 713 899 813L434 170Q505 119 618 119Q781 119 865 228T950 549Z" />
<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM982 1241H872Q807 1293 718 1389T589
1548V1569H792Q824 1500 881 1410T982 1266V1241Z" />
<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM506 1266Q554 1328 609 1416T697
1569H899V1548Q855 1483 768 1388T617 1241H506V1266Z" />
<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM286 1264Q413 1400 464 1464T538
1569H704Q726 1527 780 1461T960 1264V1241H841Q753 1296 620 1427Q484 1293 401 1241H286V1264Z" />
<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM342 1393Q342 1445 368 1468T432
1491Q470 1491 497 1468T525 1393Q525 1343 498 1319T432 1294Q395 1294 369 1318T342 1393ZM723 1393Q723 1445 749 1468T813 1491Q850 1491 877 1468T905 1393Q905 1343 878 1319T813 1294Q776 1294 750 1318T723 1393Z" />
<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM411
1266Q459 1328 514 1416T602 1569H804V1548Q760 1483 673 1388T522 1241H411V1266Z" />
<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1255" d="M344 948Q410 1037 495 1076T686 1116Q901 1116 1021 966T1141 549Q1141 281 1021 131T686 -20Q464 -20 342 141H330L334 107Q342 30 342 -33V-492H176V1556H342V1090Q342 1038 336 948H344ZM664
975Q496 975 420 883T342 590V549Q342 318 419 219T666 119Q969 119 969 551Q969 766 895 870T664 975Z" />
<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM490
1393Q490 1445 516 1468T580 1491Q618 1491 645 1468T673 1393Q673 1343 646 1319T580 1294Q543 1294 517 1318T490 1393ZM871 1393Q871 1445 897 1468T961 1491Q998 1491 1025 1468T1053 1393Q1053 1343 1026 1319T961 1294Q924 1294 898 1318T871 1393Z" />
<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 473V625H942V473H82Z" />
<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 473V625H1966V473H82Z" />
<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="348" d="M37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="348" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309Z" />
<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="717" d="M406 961L391 983Q447 1198 569 1462H692Q662 1347 633 1203T590 961H406ZM37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="717" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309ZM678 1462L692 1440Q668 1349 620 1216T516 961H391Q417 1061 450 1215T496 1462H678Z" />
<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="829" d="M309 238L324 216Q298 116 249 -16T147 -263H25Q95 22 127 238H309ZM678 238L692 216Q668 125 620 -8T516 -263H391Q417 -163 450 -9T496 238H678Z" />
<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M164 748Q164 869 220 932T385 995Q490 995 548 933T606 748Q606 629 549 565T385 500Q278 500 221 565T164 748Z" />
<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="623" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551Z" />
<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="623" d="M541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
</font>
</defs>
</svg>

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/password-meter.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 118 B

File diff suppressed because one or more lines are too long

1
public/polyfills-es5.js Normal file

File diff suppressed because one or more lines are too long

BIN
public/primeicons.eot Normal file

Binary file not shown.

211
public/primeicons.svg Normal file
View File

@ -0,0 +1,211 @@
<?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 xmlns="http://www.w3.org/2000/svg">
<metadata>
<json>
<![CDATA[
{
"fontFamily": "primeicons",
"majorVersion": 1,
"minorVersion": 0,
"copyright": "PrimeTek Informatics",
"designer": "",
"description": "Icon Library for Prime UI Libraries\nFont generated by IcoMoon.",
"fontURL": "https://github.com/primefaces/primeicons",
"license": "MIT",
"licenseURL": "https://opensource.org/licenses/MIT",
"version": "Version 1.0",
"fontId": "primeicons",
"psName": "primeicons",
"subFamily": "Regular",
"fullName": "primeicons"
}
]]>
</json>
</metadata>
<defs>
<font id="primeicons" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="chevron-left" data-tags="chevron-left" d="M293.547 408.747l358.827-358.827c3.867-3.898 9.225-6.31 15.147-6.31s11.28 2.413 15.145 6.309l60.161 60.161c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-313.601 313.601 271.36 271.787 30.293 29.867c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-60.161 60.161c-3.867 3.898-9.225 6.31-15.147 6.31s-11.28-2.413-15.145-6.309l-0.001-0.001-30.293-29.867-316.587-317.013c-11.669-11.531-18.895-27.535-18.895-45.227s7.227-33.696 18.889-45.221l0.006-0.006z" />
<glyph unicode="&#xe901;" glyph-name="chevron-right" data-tags="chevron-right" d="M730.453 487.253l-358.827 358.827c-3.867 3.898-9.225 6.31-15.147 6.31s-11.28-2.413-15.145-6.309l-60.161-60.161c-3.898-3.867-6.31-9.225-6.31-15.147s2.413-11.28 6.309-15.145l313.601-313.601-271.36-271.787-30.293-29.867c-3.898-3.867-6.31-9.225-6.31-15.147s2.413-11.28 6.309-15.145l60.161-60.161c3.867-3.898 9.225-6.31 15.147-6.31s11.28 2.413 15.145 6.309l0.001 0.001 30.293 29.867 316.587 317.013c11.669 11.531 18.895 27.535 18.895 45.227s-7.227 33.696-18.889 45.221l-0.006 0.006z" />
<glyph unicode="&#xe902;" glyph-name="chevron-down" data-tags="chevron-down" d="M551.253 229.547l358.827 358.827c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-60.161 60.161c-3.867 3.898-9.225 6.31-15.147 6.31s-11.28-2.413-15.145-6.309l-313.601-313.601-271.787 271.36-29.867 30.293c-3.867 3.898-9.225 6.31-15.147 6.31s-11.28-2.413-15.145-6.309l-60.161-60.161c-3.898-3.867-6.31-9.225-6.31-15.147s2.413-11.28 6.309-15.145l0.001-0.001 29.867-30.293 317.013-316.587c11.531-11.669 27.535-18.895 45.227-18.895s33.696 7.227 45.221 18.889l0.006 0.006z" />
<glyph unicode="&#xe903;" glyph-name="chevron-up" data-tags="chevron-up" d="M472.747 666.453l-358.827-358.827c-3.898-3.867-6.31-9.225-6.31-15.147s2.413-11.28 6.309-15.145l60.161-60.161c3.867-3.898 9.225-6.31 15.147-6.31s11.28 2.413 15.145 6.309l313.601 313.601 271.787-271.36 29.867-30.293c3.867-3.898 9.225-6.31 15.147-6.31s11.28 2.413 15.145 6.309l60.161 60.161c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-0.001 0.001-29.867 30.293-317.013 316.587c-11.531 11.669-27.535 18.895-45.227 18.895s-33.696-7.227-45.221-18.889l-0.006-0.006z" />
<glyph unicode="&#xe904;" glyph-name="caret-left" data-tags="caret-left" d="M352.427 423.68l277.333-278.613c5.573-4.83 12.896-7.774 20.907-7.774 17.673 0 32 14.327 32 32 0 0.033 0 0.066 0 0.099v-0.005 557.227c-0.262 17.708-14.678 31.962-32.423 31.962-7.99 0-15.305-2.89-20.957-7.681l0.047 0.039-276.907-279.040c-6.86-5.829-11.184-14.463-11.184-24.107s4.324-18.278 11.138-24.069l0.045-0.037z" />
<glyph unicode="&#xe905;" glyph-name="caret-right" data-tags="caret-right" d="M671.573 472.32l-277.333 278.613c-5.573 4.83-12.896 7.774-20.907 7.774-17.673 0-32-14.327-32-32 0-0.033 0-0.066 0-0.099v0.005-557.227c0.262-17.708 14.678-31.962 32.423-31.962 7.99 0 15.305 2.89 20.957 7.681l-0.047-0.039 276.907 279.040c6.86 5.829 11.184 14.463 11.184 24.107s-4.324 18.278-11.138 24.069l-0.045 0.037z" />
<glyph unicode="&#xe906;" glyph-name="caret-down" data-tags="caret-down" d="M536.32 288.427l278.613 277.333c4.83 5.573 7.774 12.896 7.774 20.907 0 17.673-14.327 32-32 32-0.033 0-0.066 0-0.099 0h-557.222c-17.708-0.262-31.962-14.678-31.962-32.423 0-7.99 2.89-15.305 7.681-20.957l-0.039 0.047 279.040-276.907c5.829-6.86 14.463-11.184 24.107-11.184s18.278 4.324 24.069 11.138l0.037 0.045z" />
<glyph unicode="&#xe907;" glyph-name="caret-up" data-tags="caret-up" d="M487.68 607.573l-278.613-277.333c-4.83-5.573-7.774-12.896-7.774-20.907 0-17.673 14.327-32 32-32 0.033 0 0.066 0 0.099 0h557.222c17.708 0.262 31.962 14.678 31.962 32.423 0 7.99-2.89 15.305-7.681 20.957l0.039-0.047-279.040 276.907c-5.829 6.86-14.463 11.184-24.107 11.184s-18.278-4.324-24.069-11.138l-0.037-0.045z" />
<glyph unicode="&#xe908;" glyph-name="search" data-tags="search" d="M469.333 834.56c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM469.333 279.893c-117.821 0-213.333 95.513-213.333 213.333s95.513 213.333 213.333 213.333c117.821 0 213.333-95.513 213.333-213.333v0c0-117.821-95.513-213.333-213.333-213.333v0zM658.342 210.212l90.51 90.51 196.104-196.104c16.662-16.662 16.662-43.677 0-60.34v0l-30.17-30.17c-16.662-16.662-43.677-16.662-60.34 0v0l-196.104 196.104z" />
<glyph unicode="&#xe909;" glyph-name="check" data-tags="check" d="M474.453 178.347l392.107 392.533c3.771 3.845 6.098 9.117 6.098 14.933s-2.327 11.088-6.102 14.937l-60.584 60.584c-3.845 3.771-9.117 6.098-14.933 6.098s-11.088-2.327-14.937-6.102l-346.877-346.877-181.333 180.907c-3.845 3.771-9.117 6.098-14.933 6.098s-11.088-2.327-14.937-6.102l-60.584-60.584c-3.771-3.845-6.098-9.117-6.098-14.933s2.327-11.088 6.102-14.937l226.557-226.557c11.67-11.364 27.63-18.372 45.227-18.372s33.557 7.008 45.241 18.386l-0.014-0.014z" />
<glyph unicode="&#xe90a;" glyph-name="check-circle" data-tags="check-circle" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM750.507 553.813l-263.68-263.68c-7.753-7.924-18.556-12.837-30.507-12.837s-22.753 4.913-30.499 12.83l-131.848 131.848-20.48 20.053c-2.615 2.623-4.231 6.243-4.231 10.24s1.617 7.617 4.232 10.24v0l42.667 40.533c2.555 2.59 6.103 4.195 10.027 4.195s7.472-1.605 10.025-4.193l20.482-20.482 101.12-101.547 213.333 213.333 20.48 20.053c2.555 2.59 6.103 4.195 10.027 4.195s7.472-1.605 10.025-4.193l42.669-42.669c1.075-1.942 1.707-4.257 1.707-6.72 0-4.553-2.161-8.602-5.514-11.175l-0.033-0.025z" />
<glyph unicode="&#xe90b;" glyph-name="times" data-tags="times" d="M632.747 448l135.253 135.68c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-59.736 59.736c-7.733 7.795-18.45 12.621-30.293 12.621s-22.56-4.826-30.291-12.618l-0.003-0.003-135.68-135.253-135.68 135.253c-7.733 7.795-18.45 12.621-30.293 12.621s-22.56-4.826-30.291-12.618l-59.736-59.736c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 135.253-135.68-135.253-135.68c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l59.736-59.736c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 135.68 135.253 135.68-135.253c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l59.736 59.736c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003z" />
<glyph unicode="&#xe90c;" glyph-name="times-circle" data-tags="times-circle" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM674.56 362.667c4.981-4.883 8.068-11.681 8.068-19.2s-3.087-14.317-8.064-19.196l-37.977-37.977c-4.883-4.981-11.681-8.068-19.2-8.068s-14.317 3.087-19.196 8.064l-85.337 85.337-85.333-85.333c-4.883-4.981-11.681-8.068-19.2-8.068s-14.317 3.087-19.196 8.064l-37.977 37.977c-4.981 4.883-8.068 11.681-8.068 19.2s3.087 14.317 8.064 19.196l85.337 85.337-85.333 85.333c-4.981 4.883-8.068 11.681-8.068 19.2s3.087 14.317 8.064 19.196l37.977 37.977c4.883 4.981 11.681 8.068 19.2 8.068s14.317-3.087 19.196-8.064l85.337-85.337 85.333 85.333c4.883 4.981 11.681 8.068 19.2 8.068s14.317-3.087 19.196-8.064l37.977-37.977c4.981-4.883 8.068-11.681 8.068-19.2s-3.087-14.317-8.064-19.196l-85.337-85.337z" />
<glyph unicode="&#xe90d;" glyph-name="plus" data-tags="plus" d="M597.333 533.333v192c0 23.564-19.103 42.667-42.667 42.667v0h-85.333c-23.564 0-42.667-19.103-42.667-42.667v0-192h-192c-23.564 0-42.667-19.103-42.667-42.667v0-85.333c0-23.564 19.103-42.667 42.667-42.667v0h192v-192c0-23.564 19.103-42.667 42.667-42.667v0h85.333c23.564 0 42.667 19.103 42.667 42.667v0 192h192c23.564 0 42.667 19.103 42.667 42.667v0 85.333c0 23.564-19.103 42.667-42.667 42.667v0z" />
<glyph unicode="&#xe90e;" glyph-name="plus-circle" data-tags="plus-circle" d="M270.507 689.493c-61.689-61.756-99.84-147.035-99.84-241.225 0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333c0 94.19-38.151 179.469-99.843 241.228l0.003-0.003c-61.782 61.849-147.17 100.109-241.493 100.109s-179.711-38.259-241.49-100.105l-0.003-0.003zM687.787 502.187c15.081 0 27.307-12.226 27.307-27.307v0-53.76c0-15.081-12.226-27.307-27.307-27.307v0h-121.6v-121.6c0-15.081-12.226-27.307-27.307-27.307v0h-53.76c-15.081 0-27.307 12.226-27.307 27.307v0 121.6h-121.6c-15.081 0-27.307 12.226-27.307 27.307v0 53.76c0 15.081 12.226 27.307 27.307 27.307h121.6v121.6c0 15.081 12.226 27.307 27.307 27.307v0h53.76c15.081 0 27.307-12.226 27.307-27.307v0-121.6z" />
<glyph unicode="&#xe90f;" glyph-name="minus" data-tags="minus" d="M234.667 532.48h554.667c23.564 0 42.667-19.103 42.667-42.667v-84.053c0-23.564-19.103-42.667-42.667-42.667h-554.667c-23.564 0-42.667 19.103-42.667 42.667v84.053c0 23.564 19.103 42.667 42.667 42.667z" />
<glyph unicode="&#xe910;" glyph-name="minus-circle" data-tags="minus-circle" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM715.093 420.693c0-14.845-12.035-26.88-26.88-26.88v0h-352.427c-14.845 0-26.88 12.035-26.88 26.88v54.613c0 14.845 12.035 26.88 26.88 26.88v0h352.427c14.845 0 26.88-12.035 26.88-26.88v0z" />
<glyph unicode="&#xe911;" glyph-name="circle-on" data-tags="radio-on" d="M853.333 448c0-188.513-152.82-341.333-341.333-341.333s-341.333 152.82-341.333 341.333c0 188.513 152.82 341.333 341.333 341.333s341.333-152.82 341.333-341.333z" />
<glyph unicode="&#xe912;" glyph-name="circle-off" data-tags="radio-off" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM512 192c-141.385 0-256 114.615-256 256s114.615 256 256 256c141.385 0 256-114.615 256-256v0c0-141.385-114.615-256-256-256v0z" />
<glyph unicode="&#xe913;" glyph-name="sort-down" data-tags="sort-down" d="M536.32 51.2l278.613 277.333c4.753 5.605 7.642 12.92 7.642 20.91 0 17.746-14.254 32.162-31.938 32.423h-557.252c-0.14 0.002-0.306 0.003-0.472 0.003-17.673 0-32-14.327-32-32 0-8.212 3.093-15.701 8.178-21.367l-0.026 0.030 279.040-277.333c5.897-6.73 14.508-10.956 24.107-10.956s18.21 4.226 24.075 10.919l0.032 0.037z" />
<glyph unicode="&#xe914;" glyph-name="sort-up" data-tags="sort-up" d="M487.68 844.8l-278.613-277.333c-4.753-5.605-7.642-12.92-7.642-20.91 0-17.746 14.254-32.162 31.938-32.423h557.252c0.14-0.002 0.306-0.003 0.472-0.003 17.673 0 32 14.327 32 32 0 8.212-3.093 15.701-8.178 21.367l0.026-0.030-279.040 277.333c-5.897 6.73-14.508 10.956-24.107 10.956s-18.21-4.226-24.075-10.919l-0.032-0.037z" />
<glyph unicode="&#xe915;" glyph-name="sort" data-tags="sort" d="M233.387 514.133h557.227c0.14-0.002 0.306-0.003 0.472-0.003 17.673 0 32 14.327 32 32 0 8.212-3.093 15.701-8.178 21.367l0.026-0.030-279.040 277.333c-5.897 6.73-14.508 10.956-24.107 10.956s-18.21-4.226-24.075-10.919l-0.032-0.037-278.613-277.333c-4.753-5.605-7.642-12.92-7.642-20.91 0-17.746 14.254-32.162 31.938-32.423h0.025zM790.613 381.867h-557.227c-0.14 0.002-0.306 0.003-0.472 0.003-17.673 0-32-14.327-32-32 0-8.212 3.093-15.701 8.178-21.367l-0.026 0.030 279.040-277.333c5.897-6.73 14.508-10.956 24.107-10.956s18.21 4.226 24.075 10.919l0.032 0.037 278.613 277.333c4.753 5.605 7.642 12.92 7.642 20.91 0 17.746-14.254 32.162-31.938 32.423h-0.025z" />
<glyph unicode="&#xe916;" glyph-name="step-backward" data-tags="step-backward" d="M672.427 145.067c5.573-4.83 12.896-7.774 20.907-7.774 17.673 0 32 14.327 32 32 0 0.033 0 0.066 0 0.099v-0.005 557.227c-0.262 17.708-14.678 31.962-32.423 31.962-7.99 0-15.305-2.89-20.957-7.681l0.047 0.039-276.907-279.040c-6.773-5.798-11.051-14.342-11.093-23.886v-0.007c0.031-9.685 4.304-18.367 11.056-24.288l0.037-0.032zM320 137.387h42.667c11.782 0 21.333 9.551 21.333 21.333v0 578.56c0 11.782-9.551 21.333-21.333 21.333v0h-42.667c-11.782 0-21.333-9.551-21.333-21.333v0-578.56c0-11.782 9.551-21.333 21.333-21.333v0z" />
<glyph unicode="&#xe917;" glyph-name="step-forward" data-tags="step-forward" d="M351.573 750.933c-5.573 4.83-12.896 7.774-20.907 7.774-17.673 0-32-14.327-32-32 0-0.033 0-0.066 0-0.099v0.005-557.227c0.262-17.708 14.678-31.962 32.423-31.962 7.99 0 15.305 2.89 20.957 7.681l-0.047-0.039 276.907 279.040c6.773 5.798 11.051 14.342 11.093 23.886v0.007c-0.031 9.685-4.304 18.367-11.056 24.288l-0.037 0.032zM704 758.613h-42.667c-11.782 0-21.333-9.551-21.333-21.333v0-578.56c0-11.782 9.551-21.333 21.333-21.333v0h42.667c11.782 0 21.333 9.551 21.333 21.333v0 578.56c0 11.782-9.551 21.333-21.333 21.333v0z" />
<glyph unicode="&#xe918;" glyph-name="th-large" data-tags="th-large" d="M170.667 789.333h256c23.564 0 42.667-19.103 42.667-42.667v-213.333c0-23.564-19.103-42.667-42.667-42.667h-256c-23.564 0-42.667 19.103-42.667 42.667v213.333c0 23.564 19.103 42.667 42.667 42.667zM170.667 409.6h256c23.564 0 42.667-19.103 42.667-42.667v-213.333c0-23.564-19.103-42.667-42.667-42.667h-256c-23.564 0-42.667 19.103-42.667 42.667v213.333c0 23.564 19.103 42.667 42.667 42.667zM597.333 789.333h256c23.564 0 42.667-19.103 42.667-42.667v-213.333c0-23.564-19.103-42.667-42.667-42.667h-256c-23.564 0-42.667 19.103-42.667 42.667v213.333c0 23.564 19.103 42.667 42.667 42.667zM597.333 405.333h256c23.564 0 42.667-19.103 42.667-42.667v-213.333c0-23.564-19.103-42.667-42.667-42.667h-256c-23.564 0-42.667 19.103-42.667 42.667v213.333c0 23.564 19.103 42.667 42.667 42.667z" />
<glyph unicode="&#xe919;" glyph-name="arrow-down" data-tags="arrow-down" d="M444.16 839.68v-588.8l-239.787 239.787c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l-60.155-60.155c-3.984-3.745-6.465-9.050-6.465-14.933s2.481-11.188 6.454-14.923l0.011-0.010 29.867-30.293 317.013-317.013c11.579-11.565 27.568-18.717 45.227-18.717s33.648 7.152 45.227 18.718l328.959 328.533 29.867 30.293c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-60.161 60.161c-3.867 3.898-9.225 6.31-15.147 6.31s-11.28-2.413-15.145-6.309l-0.001-0.001-29.867-30.293-217.6-217.173v584.533c0 11.782-9.551 21.333-21.333 21.333v0h-85.333c-11.782 0-21.333-9.551-21.333-21.333v0z" />
<glyph unicode="&#xe91a;" glyph-name="arrow-left" data-tags="arrow-left" d="M903.68 515.84h-588.8l209.92 209.92 30.293 29.867c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l0.005-0.005-60.587 60.16c-3.745 3.984-9.050 6.465-14.933 6.465s-11.188-2.481-14.923-6.454l-0.010-0.011-30.293-29.867-317.013-317.013c-11.565-11.579-18.717-27.568-18.717-45.227s7.152-33.648 18.718-45.227l328.533-328.959 30.293-29.867c3.867-3.898 9.225-6.31 15.147-6.31s11.28 2.413 15.145 6.309l60.161 60.161c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-0.001 0.001-30.293 29.867-217.173 217.6h584.533c11.782 0 21.333 9.551 21.333 21.333v0 85.333c0 11.782-9.551 21.333-21.333 21.333v0z" />
<glyph unicode="&#xe91b;" glyph-name="arrow-right" data-tags="arrow-right" d="M120.32 380.16h588.8l-209.92-209.92-30.293-29.867c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l-0.005 0.005 60.587-60.16c3.745-3.984 9.050-6.465 14.933-6.465s11.188 2.481 14.923 6.454l0.010 0.011 30.293 29.867 317.013 317.013c11.565 11.579 18.717 27.568 18.717 45.227s-7.152 33.648-18.718 45.227l-328.533 328.959-30.293 29.867c-3.867 3.898-9.225 6.31-15.147 6.31s-11.28-2.413-15.145-6.309l-0.001-0.001-60.587-60.16c-3.898-3.867-6.31-9.225-6.31-15.147s2.413-11.28 6.309-15.145l0.001-0.001 30.293-29.867 217.173-217.6h-584.107c-11.782 0-21.333-9.551-21.333-21.333v0-85.333c0-11.782 9.551-21.333 21.333-21.333v0z" />
<glyph unicode="&#xe91c;" glyph-name="arrow-up" data-tags="arrow-up" d="M579.84 56.32v588.8l209.92-209.92 29.867-30.293c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l-0.005-0.005 60.16 60.587c3.984 3.745 6.465 9.050 6.465 14.933s-2.481 11.188-6.454 14.923l-0.011 0.010-29.867 30.293-317.013 317.013c-11.579 11.565-27.568 18.717-45.227 18.717s-33.648-7.152-45.227-18.718l-328.959-328.533-29.867-30.293c-3.898-3.867-6.31-9.225-6.31-15.147s2.413-11.28 6.309-15.145l60.161-60.161c3.867-3.898 9.225-6.31 15.147-6.31s11.28 2.413 15.145 6.309l0.001 0.001 29.867 30.293 217.6 217.173v-584.533c0-11.782 9.551-21.333 21.333-21.333v0h85.333c11.782 0 21.333 9.551 21.333 21.333v0z" />
<glyph unicode="&#xe91d;" glyph-name="bars" data-tags="bars" d="M213.333 512h597.333c23.564 0 42.667-19.103 42.667-42.667v-42.667c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v42.667c0 23.564 19.103 42.667 42.667 42.667zM213.333 746.667h597.333c23.564 0 42.667-19.103 42.667-42.667v-42.667c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v42.667c0 23.564 19.103 42.667 42.667 42.667zM213.333 277.333h597.333c23.564 0 42.667-19.103 42.667-42.667v-42.667c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v42.667c0 23.564 19.103 42.667 42.667 42.667z" />
<glyph unicode="&#xe91e;" glyph-name="arrow-circle-down" data-tags="arrow-circle-down" d="M170.667 448c0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333c0 188.513-152.82 341.333-341.333 341.333v0c-188.513 0-341.333-152.82-341.333-341.333v0zM538.027 661.333c8.012 0 14.507-6.495 14.507-14.507v0-264.107l123.307 123.733c2.555 2.59 6.103 4.195 10.027 4.195s7.472-1.605 10.025-4.193l0.002-0.002 42.667-40.533c2.615-2.623 4.231-6.243 4.231-10.24s-1.617-7.617-4.232-10.24v0l-200.107-197.973c-7.753-7.924-18.556-12.837-30.507-12.837s-22.753 4.913-30.499 12.83l-190.728 190.728c-2.615 2.623-4.231 6.243-4.231 10.24s1.617 7.617 4.232 10.24v0l42.667 40.533c2.555 2.59 6.103 4.195 10.027 4.195s7.472-1.605 10.025-4.193l20.482-20.482 97.707-98.133v266.24c0 0.017 0 0.037 0 0.057 0 7.561 5.785 13.771 13.17 14.446l0.057 0.004z" />
<glyph unicode="&#xe91f;" glyph-name="arrow-circle-left" data-tags="arrow-circle-left" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM725.333 421.973c0-8.012-6.495-14.507-14.507-14.507h-264.107l123.733-123.307c2.59-2.555 4.195-6.103 4.195-10.027s-1.605-7.472-4.193-10.025l-0.002-0.002-40.533-42.667c-2.623-2.615-6.243-4.231-10.24-4.231s-7.617 1.617-10.24 4.232v0l-197.973 200.107c-7.924 7.753-12.837 18.556-12.837 30.507s4.913 22.753 12.83 30.499l190.728 190.728c2.623 2.615 6.243 4.231 10.24 4.231s7.617-1.617 10.24-4.232v0l40.533-42.667c2.59-2.555 4.195-6.103 4.195-10.027s-1.605-7.472-4.193-10.025l-20.482-20.482-98.133-97.707h267.093c8.012 0 14.507-6.495 14.507-14.507v0z" />
<glyph unicode="&#xe920;" glyph-name="arrow-circle-right" data-tags="arrow-circle-right" d="M512 106.667c188.513 0 341.333 152.82 341.333 341.333s-152.82 341.333-341.333 341.333c-188.513 0-341.333-152.82-341.333-341.333v0c0-188.513 152.82-341.333 341.333-341.333v0zM298.667 474.027c0 8.012 6.495 14.507 14.507 14.507v0h264.107l-123.733 123.307c-2.59 2.555-4.195 6.103-4.195 10.027s1.605 7.472 4.193 10.025l0.002 0.002 40.533 42.667c2.623 2.615 6.243 4.231 10.24 4.231s7.617-1.617 10.24-4.232v0l197.973-197.973c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-190.728-190.728c-2.623-2.615-6.243-4.231-10.24-4.231s-7.617 1.617-10.24 4.232v0l-40.533 42.667c-2.59 2.555-4.195 6.103-4.195 10.027s1.605 7.472 4.193 10.025l20.482 20.482 98.133 97.707h-266.24c-0.121-0.004-0.263-0.006-0.406-0.006-6.802 0-12.511 4.682-14.080 10.999l-0.021 0.1z" />
<glyph unicode="&#xe921;" glyph-name="arrow-circle-up" data-tags="arrow-circle-up" d="M853.333 448c0 188.513-152.82 341.333-341.333 341.333s-341.333-152.82-341.333-341.333c0-188.513 152.82-341.333 341.333-341.333v0c188.513 0 341.333 152.82 341.333 341.333v0zM485.973 234.667c-8.012 0-14.507 6.495-14.507 14.507v0 264.107l-123.307-123.733c-2.555-2.59-6.103-4.195-10.027-4.195s-7.472 1.605-10.025 4.193l-0.002 0.002-42.667 40.533c-2.615 2.623-4.231 6.243-4.231 10.24s1.617 7.617 4.232 10.24v0l200.107 197.973c7.753 7.924 18.556 12.837 30.507 12.837s22.753-4.913 30.499-12.83l190.728-190.728c2.615-2.623 4.231-6.243 4.231-10.24s-1.617-7.617-4.232-10.24v0l-42.667-40.533c-2.555-2.59-6.103-4.195-10.027-4.195s-7.472 1.605-10.025 4.193l-20.482 20.482-97.707 98.133v-267.093c0-8.012-6.495-14.507-14.507-14.507v0z" />
<glyph unicode="&#xe922;" glyph-name="exclamation-triangle" data-tags="exclamation-triangle" d="M888.747 192l-330.667 566.613c-9.57 15.727-26.617 26.069-46.080 26.069s-36.51-10.343-45.946-25.832l-0.134-0.237-330.667-566.613c-4.885-7.901-7.779-17.48-7.779-27.736 0-29.455 23.878-53.333 53.333-53.333 0.185 0 0.37 0.001 0.554 0.003h661.305c0.156-0.002 0.341-0.003 0.526-0.003 29.455 0 53.333 23.878 53.333 53.333 0 10.256-2.895 19.835-7.911 27.966l0.132-0.23zM473.173 590.080h77.653c12.018 0 21.76-9.742 21.76-21.76v0l-8.533-175.787c0-0.001 0-0.003 0-0.004 0-11.782-9.551-21.333-21.333-21.333-0.15 0-0.3 0.002-0.449 0.005h-60.565c-0.127-0.003-0.277-0.004-0.427-0.004-11.782 0-21.333 9.551-21.333 21.333 0 0.002 0 0.003 0 0.005v0l-8.533 175.787c0 12.018 9.742 21.76 21.76 21.76v0zM512 212.053c-35.341 0.007-63.987 28.658-63.987 64 0 35.346 28.654 64 64 64 34.896 0 63.269-27.929 63.986-62.653l0.001-0.067c0.008-0.381 0.013-0.83 0.013-1.28 0-35.346-28.654-64-64-64-0.005 0-0.009 0-0.014 0h0.001z" />
<glyph unicode="&#xe923;" glyph-name="info" data-tags="info" d="M448 640h128c11.782 0 21.333 9.551 21.333 21.333v0 85.333c0 11.782-9.551 21.333-21.333 21.333v0h-132.267c-9.426 0-17.067-7.641-17.067-17.067v0-89.6c0-11.782 9.551-21.333 21.333-21.333v0zM640 234.667h-42.667v298.667c0 11.782-9.551 21.333-21.333 21.333v0h-192c-11.782 0-21.333-9.551-21.333-21.333v0-64c0-11.782 9.551-21.333 21.333-21.333v0h42.667v-213.333h-42.667c-11.782 0-21.333-9.551-21.333-21.333v0-64c0-11.782 9.551-21.333 21.333-21.333v0h256c11.782 0 21.333 9.551 21.333 21.333v0 64c0 11.782-9.551 21.333-21.333 21.333v0z" />
<glyph unicode="&#xe924;" glyph-name="info-circle" data-tags="info-circle" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM455.253 650.24c0 6.127 4.967 11.093 11.093 11.093h88.32c7.776 0 14.080-6.304 14.080-14.080v0-57.173c0-7.776-6.304-14.080-14.080-14.080v0h-85.333c-7.776 0-14.080 6.304-14.080 14.080v0zM611.413 248.747c0-7.776-6.304-14.080-14.080-14.080v0h-170.667c-7.776 0-14.080 6.304-14.080 14.080v0 42.667c0 0.002 0 0.004 0 0.006 0 7.862 6.254 14.263 14.058 14.5l0.022 0.001h28.587v142.080h-28.587c-7.776 0-14.080 6.304-14.080 14.080v42.667c0 0.002 0 0.004 0 0.006 0 7.862 6.254 14.263 14.058 14.5l0.022 0.001h128c7.826-0.238 14.080-6.639 14.080-14.5 0-0.002 0-0.004 0-0.007v0-198.827h28.587c7.826-0.238 14.080-6.639 14.080-14.5 0-0.002 0-0.004 0-0.007v0z" />
<glyph unicode="&#xe925;" glyph-name="home" data-tags="home" d="M923.307 506.88l-397.653 338.347c-3.699 3-8.464 4.816-13.653 4.816s-9.954-1.816-13.694-4.848l0.041 0.032-397.653-338.347c-9.836-7.884-16.080-19.898-16.080-33.371 0-10.771 3.991-20.61 10.575-28.118l-0.042 0.049c7.882-9.459 19.666-15.435 32.846-15.435 10.422 0 19.971 3.736 27.38 9.943l-0.067-0.054 341.333 294.827c3.64 3.153 8.422 5.074 13.653 5.074s10.013-1.921 13.68-5.096l-0.026 0.022 341.333-294.827c7.343-6.152 16.892-9.888 27.314-9.888 13.18 0 24.964 5.976 32.791 15.366l0.056 0.069c7.441 7.671 12.027 18.146 12.027 29.693 0 12.588-5.451 23.903-14.122 31.713l-0.038 0.034zM526.080 673.28c-3.701 3.381-8.649 5.452-14.080 5.452s-10.379-2.071-14.096-5.467l0.016 0.015-305.493-267.947c-13.135-11.509-21.468-28.22-21.759-46.883l-0.001-0.051v-248.32c0-35.346 28.654-64 64-64v0h181.333c11.782 0 21.333 9.551 21.333 21.333v0 148.907c0 23.564 19.103 42.667 42.667 42.667v0h64c23.564 0 42.667-19.103 42.667-42.667v0-148.907c0-11.782 9.551-21.333 21.333-21.333v0h181.333c35.346 0 64 28.654 64 64v0 247.893c-0.444 18.815-8.729 35.61-21.702 47.308l-0.058 0.052z" />
<glyph unicode="&#xe926;" glyph-name="spinner" data-tags="spinner" d="M512 78.080c-204.301 0-369.92 165.619-369.92 369.92s165.619 369.92 369.92 369.92v0c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0c-0.102 0-0.222 0-0.342 0-157.409 0-285.013-127.605-285.013-285.013s127.605-285.013 285.013-285.013c157.409 0 285.013 127.605 285.013 285.013 0 54.736-15.43 105.869-42.177 149.285l0.706-1.232c-4.111 6.442-6.552 14.296-6.552 22.72 0 14.892 7.629 28.002 19.193 35.634l0.16 0.099c6.264 3.817 13.841 6.077 21.946 6.077 15.403 0 28.9-8.162 36.401-20.397l0.106-0.186c33.784-54.703 53.803-121.015 53.803-192.002 0-203.631-164.723-368.788-368.189-369.491h-0.067z" />
<glyph unicode="&#xe927;" glyph-name="calendar" data-tags="calendar" d="M810.667 744.107h-597.333c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 597.333c0 23.564-19.103 42.667-42.667 42.667v0zM789.333 168.107c0-23.564-19.103-42.667-42.667-42.667v0h-469.333c-23.564 0-42.667 19.103-42.667 42.667v0 357.973c0 23.564 19.103 42.667 42.667 42.667v0h469.333c23.564 0 42.667-19.103 42.667-42.667v0zM296.96 523.52h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM419.413 523.52h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM541.867 523.52h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM664.32 523.52h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM296.96 395.52h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM419.413 395.52h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM541.867 395.52h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM664.32 395.52h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM296.96 273.067h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM419.413 273.067h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM541.867 273.067h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM664.32 273.067h62.72c11.782 0 21.333-9.551 21.333-21.333v-62.72c0-11.782-9.551-21.333-21.333-21.333h-62.72c-11.782 0-21.333 9.551-21.333 21.333v62.72c0 11.782 9.551 21.333 21.333 21.333zM320 833.707h18.347c23.564 0 42.667-19.103 42.667-42.667v-96c0-23.564-19.103-42.667-42.667-42.667h-18.347c-23.564 0-42.667 19.103-42.667 42.667v96c0 23.564 19.103 42.667 42.667 42.667zM686.507 834.56h18.347c23.564 0 42.667-19.103 42.667-42.667v-96c0-23.564-19.103-42.667-42.667-42.667h-18.347c-23.564 0-42.667 19.103-42.667 42.667v96c0 23.564 19.103 42.667 42.667 42.667z" />
<glyph unicode="&#xe928;" glyph-name="chevron-circle-left" data-tags="chevron-circle-left" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM636.16 277.333l-57.173-57.173c-3.619-3.57-8.592-5.774-14.080-5.774s-10.461 2.205-14.082 5.777l0.002-0.002-27.307 27.733-159.147 157.44c-11.286 10.748-18.304 25.888-18.304 42.667s7.019 31.919 18.28 42.644l0.024 0.023 184.32 184.32c3.551 3.545 8.453 5.737 13.867 5.737s10.316-2.192 13.867-5.737v0l56.747-56.32c3.57-3.619 5.774-8.592 5.774-14.080s-2.205-10.461-5.777-14.082l-141.225-141.225 118.187-117.76 27.307-27.733c2.811-3.372 4.517-7.75 4.517-12.527 0-5.444-2.216-10.37-5.796-13.926l-0.001-0.001z" />
<glyph unicode="&#xe929;" glyph-name="chevron-circle-down" data-tags="chevron-circle-down" d="M853.333 448c0 188.513-152.82 341.333-341.333 341.333s-341.333-152.82-341.333-341.333c0-188.513 152.82-341.333 341.333-341.333v0c188.513 0 341.333 152.82 341.333 341.333v0zM469.333 297.813l-184.32 184.32c-3.545 3.551-5.737 8.453-5.737 13.867s2.192 10.316 5.737 13.867v0l56.32 55.040c3.619 3.57 8.592 5.774 14.080 5.774s10.461-2.205 14.082-5.777l141.225-141.225 117.76 118.187 27.733 27.307c3.551 3.545 8.453 5.737 13.867 5.737s10.316-2.192 13.867-5.737v0l57.173-57.173c3.57-3.619 5.774-8.592 5.774-14.080s-2.205-10.461-5.777-14.082l0.002 0.002-27.733-27.307-158.72-160.427c-10.677-10.788-25.486-17.468-41.855-17.468-17.197 0-32.673 7.373-43.438 19.13l-0.040 0.044z" />
<glyph unicode="&#xe92a;" glyph-name="chevron-circle-right" data-tags="chevron-circle-right" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM662.187 405.333l-184.32-184.32c-3.551-3.545-8.453-5.737-13.867-5.737s-10.316 2.192-13.867 5.737v0l-55.040 54.187c-3.57 3.619-5.774 8.592-5.774 14.080s2.205 10.461 5.777 14.082l141.225 141.225-117.333 117.76-27.307 27.733c-3.545 3.551-5.737 8.453-5.737 13.867s2.192 10.316 5.737 13.867v0l57.173 57.173c3.619 3.57 8.592 5.774 14.080 5.774s10.461-2.205 14.082-5.777l-0.002 0.002 27.307-27.733 159.573-156.587c10.788-10.677 17.468-25.486 17.468-41.855 0-17.197-7.373-32.673-19.13-43.438l-0.044-0.040z" />
<glyph unicode="&#xe92b;" glyph-name="chevron-circle-up" data-tags="chevron-circle-up" d="M170.667 448c0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333c0 188.513-152.82 341.333-341.333 341.333v0c-188.513 0-341.333-152.82-341.333-341.333v0zM554.667 598.187l184.32-184.32c3.545-3.551 5.737-8.453 5.737-13.867s-2.192-10.316-5.737-13.867v0l-55.040-55.040c-3.619-3.57-8.592-5.774-14.080-5.774s-10.461 2.205-14.082 5.777l-141.225 141.225-116.907-117.333-27.733-27.307c-3.551-3.545-8.453-5.737-13.867-5.737s-10.316 2.192-13.867 5.737v0l-57.173 57.6c-3.57 3.619-5.774 8.592-5.774 14.080s2.205 10.461 5.777 14.082l-0.002-0.002 27.733 27.307 156.587 159.147c10.677 10.788 25.486 17.468 41.855 17.468 17.197 0 32.673-7.373 43.438-19.13l0.040-0.044z" />
<glyph unicode="&#xe92c;" glyph-name="angle-double-down" data-tags="angle-double-down" d="M647.68 427.947v0l-141.653-141.653-128 128-32 33.707c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l-51.195-51.195c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l196.262-196.262c11.625-11.463 27.599-18.543 45.227-18.543s33.602 7.079 45.234 18.55l208.206 208.206c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l-51.195 51.195c-3.867 3.898-9.225 6.31-15.147 6.31s-11.28-2.413-15.145-6.309l-0.001-0.001zM677.973 739.84l-171.947-171.947-158.293 158.293c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l0.005 0.005-52.907-49.493c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l30.288-30.288 165.973-168.107c11.625-11.463 27.599-18.543 45.227-18.543s33.602 7.079 45.234 18.55l208.206 208.206c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l-51.195 51.195c-3.936 4.574-9.731 7.452-16.199 7.452-5.413 0-10.355-2.016-14.117-5.339l0.023 0.020z" />
<glyph unicode="&#xe92d;" glyph-name="angle-double-left" data-tags="angle-double-left" d="M491.947 312.32v0l-141.653 141.653 128 128 33.707 32c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l-51.195 51.195c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l-30.288-30.288-167.68-165.973c-11.463-11.625-18.543-27.599-18.543-45.227s7.079-33.602 18.55-45.234l208.206-208.206c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l51.195 51.195c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-0.001 0.001zM803.84 282.027l-171.947 171.947 158.293 158.293c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l-51.195 51.195c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l-194.555-194.555c-11.463-11.625-18.543-27.599-18.543-45.227s7.079-33.602 18.55-45.234l208.206-208.206c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l51.195 51.195c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-0.001 0.001z" />
<glyph unicode="&#xe92e;" glyph-name="angle-double-right" data-tags="angle-double-right" d="M532.053 583.68v0l141.653-141.653-158.293-158.293c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l51.195-51.195c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l196.262 196.262c11.463 11.625 18.543 27.599 18.543 45.227s-7.079 33.602-18.55 45.234l0.007-0.007-179.627 176.213-30.293 30.293c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l-51.195-51.195c-3.898-3.867-6.31-9.225-6.31-15.147s2.413-11.28 6.309-15.145l0.001-0.001zM220.16 613.973l171.947-171.947-158.293-158.293c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l51.195-51.195c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l30.288 30.288 166.4 164.267c11.463 11.625 18.543 27.599 18.543 45.227s-7.079 33.602-18.55 45.234l0.007-0.007-180.053 177.92-30.293 30.293c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l-51.195-51.195c-3.898-3.867-6.31-9.225-6.31-15.147s2.413-11.28 6.309-15.145l0.001-0.001z" />
<glyph unicode="&#xe92f;" glyph-name="angle-double-up" data-tags="angle-double-up" d="M376.32 468.053v0l141.653 141.653 158.293-158.293c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l51.195 51.195c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l-194.555 194.555c-11.625 11.463-27.599 18.543-45.227 18.543s-33.602-7.079-45.234-18.55l-208.206-208.206c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l51.195-51.195c3.867-3.898 9.225-6.31 15.147-6.31s11.28 2.413 15.145 6.309l0.001 0.001zM346.027 156.16l171.947 171.947 158.293-158.293c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l51.195 51.195c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l-194.555 194.555c-11.625 11.463-27.599 18.543-45.227 18.543s-33.602-7.079-45.234-18.55l-208.206-208.206c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l51.195-51.195c3.867-3.898 9.225-6.31 15.147-6.31s11.28 2.413 15.145 6.309l0.001 0.001z" />
<glyph unicode="&#xe930;" glyph-name="angle-down" data-tags="angle-down" d="M551.253 309.333l208.213 208.213c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l-51.195 51.195c-3.867 3.898-9.225 6.31-15.147 6.31s-11.28-2.413-15.145-6.309l-171.948-171.948-158.293 158.293c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l0.005 0.005-52.907-49.493c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l196.262-196.262c11.625-11.463 27.599-18.543 45.227-18.543s33.602 7.079 45.234 18.55l-0.007-0.007z" />
<glyph unicode="&#xe931;" glyph-name="angle-left" data-tags="angle-left" d="M373.333 408.747l208.213-208.213c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l51.195 51.195c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-171.948 171.948 158.293 158.293c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l-51.195 51.195c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l-194.555-194.555c-11.463-11.625-18.543-27.599-18.543-45.227s7.079-33.602 18.55-45.234l-0.007 0.007z" />
<glyph unicode="&#xe932;" glyph-name="angle-right" data-tags="angle-right" d="M650.667 487.253l-208.213 208.213c-3.912 3.797-9.256 6.137-15.147 6.137s-11.234-2.341-15.152-6.142l-51.195-51.195c-3.898-3.867-6.31-9.225-6.31-15.147s2.413-11.28 6.309-15.145l171.948-171.948-158.293-158.293c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l51.195-51.195c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l196.262 196.262c10.466 11.417 16.88 26.697 16.88 43.475 0 17.65-7.097 33.642-18.593 45.278l0.006-0.006z" />
<glyph unicode="&#xe933;" glyph-name="angle-up" data-tags="angle-up" d="M472.747 586.667l-208.213-208.213c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l51.195-51.195c3.867-3.898 9.225-6.31 15.147-6.31s11.28 2.413 15.145 6.309l171.948 171.948 158.293-158.293c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l51.195 51.195c3.797 3.912 6.137 9.256 6.137 15.147s-2.341 11.234-6.142 15.152l-194.555 194.555c-11.625 11.463-27.599 18.543-45.227 18.543s-33.602-7.079-45.234-18.55l0.007 0.007z" />
<glyph unicode="&#xe934;" glyph-name="upload" data-tags="upload" d="M282.453 509.013h144.213v-210.347c0-11.782 9.551-21.333 21.333-21.333v0h128c11.782 0 21.333 9.551 21.333 21.333v0 210.347h144.213c0.012 0 0.027 0 0.041 0 14.374 0 26.027 11.653 26.027 26.027 0 6.347-2.272 12.164-6.048 16.681l0.033-0.041-229.973 225.707c-4.989 5.267-12.032 8.544-19.84 8.544s-14.851-3.277-19.828-8.532l-0.012-0.012-229.547-225.28c-3.963-4.543-6.38-10.524-6.38-17.070 0-14.374 11.653-26.027 26.027-26.027 0.143 0 0.285 0.001 0.428 0.003h-0.021zM810.667 322.987h-170.667v-20.907c0 0 0-0.001 0-0.001 0-35.196-28.411-63.757-63.55-63.998h-128.023c-0.127-0.001-0.277-0.001-0.427-0.001-35.346 0-64 28.654-64 64 0 0 0 0.001 0 0.001v0 20.907h-170.667c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM768 181.333c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32h-0.023z" />
<glyph unicode="&#xe935;" glyph-name="ban" data-tags="ban" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM512 704c0.198 0.001 0.432 0.001 0.667 0.001 55.317 0 106.488-17.752 148.126-47.87l-0.74 0.509-356.693-356.693c-29.609 40.899-47.361 92.070-47.361 147.387 0 0.234 0 0.469 0.001 0.703v-0.036c0 141.385 114.615 256 256 256v0zM512 192c-0.198-0.001-0.432-0.001-0.667-0.001-55.317 0-106.488 17.752-148.126 47.87l0.74-0.509 356.693 356.693c29.609-40.899 47.361-92.070 47.361-147.387 0-0.234 0-0.469-0.001-0.703v0.036c0-141.385-114.615-256-256-256v0z" />
<glyph unicode="&#xe936;" glyph-name="star-o" data-tags="star-o" d="M686.933 106.667c-10.188 0.085-19.733 2.763-28.029 7.405l0.296-0.152-147.2 81.493-147.2-81.493c-7.951-4.506-17.463-7.162-27.596-7.162-12.378 0-23.831 3.963-33.158 10.69l0.167-0.115c-14.811 10.203-24.395 27.069-24.395 46.173 0 3.588 0.338 7.096 0.984 10.496l-0.055-0.349 28.587 176.64-122.453 125.44c-9.918 10.331-16.025 24.385-16.025 39.866 0 6.338 1.024 12.438 2.915 18.141l-0.117-0.407c6.717 20.286 24.107 35.253 45.348 38.363l0.305 0.037 166.827 25.6 73.813 158.293c9.459 19.631 29.202 32.938 52.053 32.938s42.594-13.307 51.903-32.594l0.15-0.344 75.947-157.44 166.827-25.6c21.547-3.147 38.936-18.114 45.539-38.002l0.114-0.398c1.907-5.48 3.008-11.796 3.008-18.37 0-15.587-6.191-29.728-16.249-40.098l0.014 0.015-122.453-125.44 28.587-176.64c0.591-3.051 0.929-6.559 0.929-10.147 0-19.104-9.585-35.97-24.208-46.051l-0.188-0.122c-9.009-6.695-20.351-10.717-32.632-10.717-0.828 0-1.652 0.018-2.471 0.054l0.116-0.004zM512 274.347c0.225 0.003 0.49 0.005 0.756 0.005 9.936 0 19.243-2.696 27.229-7.396l-0.252 0.137 122.027-67.413-21.76 147.627c-0.463 2.743-0.727 5.902-0.727 9.124 0 15.728 6.303 29.983 16.522 40.378l-0.008-0.008 103.253 105.813-140.373 21.76c-18.991 3.343-34.561 15.534-42.516 32.079l-0.151 0.348-64 130.56-61.44-130.56c-7.867-17.080-23.555-29.38-42.345-32.384l-0.321-0.042-140.373-21.76 102.827-105.813c10.21-10.386 16.514-24.642 16.514-40.369 0-3.221-0.264-6.381-0.773-9.459l0.046 0.335-23.893-147.627 122.027 67.413c7.734 4.563 17.041 7.259 26.977 7.259 0.266 0 0.531-0.002 0.796-0.006h-0.040zM316.16 343.467v0zM708.267 343.467v0z" />
<glyph unicode="&#xe937;" glyph-name="star" data-tags="star" d="M531.627 774.4l85.333-186.88c3.070-6.345 9.015-10.879 16.097-11.932l0.117-0.014 197.973-30.293c10.389-1.552 18.266-10.412 18.266-21.112 0-5.926-2.416-11.288-6.317-15.153l-0.002-0.002-142.080-146.347c-3.817-4.16-6.157-9.729-6.157-15.845 0-1.032 0.067-2.049 0.196-3.046l-0.012 0.118 34.133-207.787c0.142-0.934 0.223-2.011 0.223-3.107 0-12.018-9.742-21.76-21.76-21.76-3.838 0-7.443 0.993-10.574 2.737l0.111-0.057-174.933 96.427c-2.915 1.81-6.452 2.883-10.24 2.883s-7.325-1.073-10.324-2.931l0.084 0.048-174.933-96.427c-3.020-1.687-6.625-2.681-10.463-2.681-12.018 0-21.76 9.742-21.76 21.76 0 1.096 0.081 2.174 0.238 3.226l-0.015-0.119 34.133 207.787c0.117 0.879 0.183 1.896 0.183 2.929 0 6.116-2.34 11.685-6.172 15.862l0.016-0.017-144.213 146.347c-3.903 3.867-6.319 9.229-6.319 15.155 0 10.7 7.877 19.56 18.148 21.097l0.117 0.014 197.973 30.72c7.198 1.068 13.143 5.601 16.158 11.82l0.056 0.127 85.333 186.88c2.987 8.689 11.089 14.821 20.624 14.821 9.692 0 17.905-6.337 20.72-15.094l0.043-0.154z" />
<glyph unicode="&#xe938;" glyph-name="refresh" data-tags="refresh" d="M153.173 507.733c4.206-1.523 9.059-2.404 14.119-2.404 18.301 0 33.912 11.523 39.971 27.709l0.097 0.294c42.688 116.148 152.349 197.506 281.013 197.506 96.227 0 181.826-45.508 236.448-116.176l0.513-0.69-76.8-80.64c-3.1-3.217-5.009-7.599-5.009-12.427 0-9.407 7.249-17.122 16.466-17.862l0.063-0.004h219.733c0.129-0.003 0.28-0.005 0.432-0.005 10.368 0 18.773 8.405 18.773 18.773 0 0.152-0.002 0.303-0.005 0.454v-0.022 222.293c-0.541 9.46-8.345 16.927-17.892 16.927-5.027 0-9.57-2.070-12.824-5.403l-0.003-0.004-81.067-81.493c-70.962 86.761-178.017 141.702-297.905 141.702-165.417 0-306.404-104.593-360.436-251.252l-0.859-2.663c-1.639-4.352-2.588-9.383-2.588-14.635 0-18.211 11.409-33.757 27.469-39.881l0.293-0.098zM870.827 388.267c-4.206 1.523-9.059 2.404-14.119 2.404-18.301 0-33.912-11.523-39.971-27.709l-0.097-0.294c-42.688-116.148-152.349-197.506-281.013-197.506-96.227 0-181.826 45.508-236.448 116.176l-0.513 0.69 76.8 78.507c3.1 3.217 5.009 7.599 5.009 12.427 0 9.407-7.249 17.122-16.466 17.862l-0.063 0.004h-219.733c-0.129 0.003-0.28 0.005-0.432 0.005-10.368 0-18.773-8.405-18.773-18.773 0-0.152 0.002-0.303 0.005-0.454v0.022-222.293c0.541-9.46 8.345-16.927 17.892-16.927 5.027 0 9.57 2.070 12.824 5.403l0.003 0.004 81.067 81.493c70.959-86.381 177.782-141.051 297.375-141.051 165.97 0 307.348 105.294 360.976 252.727l0.849 2.671c1.639 4.352 2.588 9.383 2.588 14.635 0 18.211-11.409 33.757-27.469 39.881l-0.293 0.098z" />
<glyph unicode="&#xe939;" glyph-name="user" data-tags="user" d="M687.787 645.547c0-97.084-78.702-175.787-175.787-175.787s-175.787 78.702-175.787 175.787c0 97.084 78.702 175.787 175.787 175.787s175.787-78.702 175.787-175.787zM670.293 493.653c-39.875-41.867-96.044-67.904-158.293-67.904s-118.418 26.037-158.209 67.815l-0.085 0.089c-58.102-29.271-97.342-88.304-97.706-156.538v-174.556c0.241-48.445 39.448-87.652 87.87-87.893h336.236c48.445 0.241 87.652 39.448 87.893 87.87v174.53c-0.364 68.283-39.604 127.315-96.7 156.126l-1.007 0.461z" />
<glyph unicode="&#xe93a;" glyph-name="window-minimize" data-tags="window-minimize" d="M789.333 808.107h-554.667c-45.714 0-82.773-37.059-82.773-82.773v0-256c0.239-11.833 9.888-21.333 21.756-21.333 0.001 0 0.003 0 0.004 0h36.693c0.001 0 0.003 0 0.004 0 11.868 0 21.516 9.501 21.755 21.311v256.022l2.56 2.56 557.227-2.56-2.56-557.227h-256c-10.872-0.114-19.825-8.183-21.32-18.657l-0.014-0.116v-38.4c0-11.782 9.551-21.333 21.333-21.333v0h256c45.714 0 82.773 37.059 82.773 82.773v552.96c0 45.714-37.059 82.773-82.773 82.773v0zM444.587 570.027c-2.812 2.625-6.599 4.237-10.762 4.237-8.107 0-14.787-6.111-15.684-13.978l-0.007-0.073v-189.013c-0.035-0.392-0.056-0.847-0.056-1.307 0-8.483 6.877-15.36 15.36-15.36 0.32 0 0.637 0.010 0.952 0.029l-0.043-0.002h189.013c8.137 0.432 14.571 7.134 14.571 15.34 0 4.369-1.824 8.311-4.751 11.108l-0.006 0.006-67.84 66.987 145.92 145.92c3.344 3.324 5.414 7.927 5.414 13.013s-2.070 9.689-5.413 13.012l-26.028 26.028c-3.255 3.32-7.787 5.379-12.8 5.379s-9.545-2.058-12.797-5.376l-0.003-0.003-147.627-145.067zM194.56 343.893h170.667c23.564 0 42.667-19.103 42.667-42.667v-170.667c0-23.564-19.103-42.667-42.667-42.667h-170.667c-23.564 0-42.667 19.103-42.667 42.667v170.667c0 23.564 19.103 42.667 42.667 42.667z" />
<glyph unicode="&#xe93b;" glyph-name="window-maximize" data-tags="window-maximize" d="M789.333 808.107h-554.667c-45.714 0-82.773-37.059-82.773-82.773v0-256c0.239-11.833 9.888-21.333 21.756-21.333 0.001 0 0.003 0 0.004 0h36.693c0.001 0 0.003 0 0.004 0 11.868 0 21.516 9.501 21.755 21.311v256.022l2.56 2.56 557.227-2.56-2.56-557.227h-256c-10.872-0.114-19.825-8.183-21.32-18.657l-0.014-0.116v-38.4c0-11.782 9.551-21.333 21.333-21.333v0h256c45.714 0 82.773 37.059 82.773 82.773v552.96c0 45.714-37.059 82.773-82.773 82.773v0zM690.347 436.907c2.8-2.577 6.554-4.157 10.676-4.157 8.53 0 15.48 6.766 15.777 15.223l0.001 0.027v189.013c0.035 0.392 0.056 0.847 0.056 1.307 0 8.483-6.877 15.36-15.36 15.36-0.32 0-0.637-0.010-0.952-0.029l0.043 0.002h-188.587c-8.137-0.432-14.571-7.134-14.571-15.34 0-4.369 1.824-8.311 4.751-11.108l68.699-68.699-147.2-146.773c-3.344-3.324-5.414-7.927-5.414-13.013s2.070-9.689 5.413-13.012l26.028-26.028c3.255-3.32 7.787-5.379 12.8-5.379s9.545 2.058 12.797 5.376l146.35 146.35zM194.56 343.893h170.667c23.564 0 42.667-19.103 42.667-42.667v-170.667c0-23.564-19.103-42.667-42.667-42.667h-170.667c-23.564 0-42.667 19.103-42.667 42.667v170.667c0 23.564 19.103 42.667 42.667 42.667z" />
<glyph unicode="&#xe93c;" glyph-name="external-link" data-tags="external-link" d="M850.347 448h-36.693c-0.001 0-0.003 0-0.004 0-11.868 0-21.516-9.501-21.755-21.311v-256.022l-2.56-2.56-557.227 2.56 2.56 557.227h256c10.872 0.114 19.825 8.183 21.32 18.657l0.014 0.116v38.4c0 11.782-9.551 21.333-21.333 21.333v0h-256c-0.005 0-0.011 0-0.018 0-45.114 0-81.799-36.092-82.754-80.977l-0.001-0.089v-554.667c0-45.714 37.059-82.773 82.773-82.773v0h554.667c45.714 0 82.773 37.059 82.773 82.773v0 256c-0.239 11.833-9.888 21.333-21.756 21.333-0.001 0-0.003 0-0.004 0v0zM701.013 697.6l-225.28-225.28c-3.797-3.912-6.137-9.256-6.137-15.147s2.341-11.234 6.142-15.152l30.288-30.288c3.912-3.797 9.256-6.137 15.147-6.137s11.234 2.341 15.152 6.142l-0.005-0.005 225.28 225.707 79.787-80.213c3.258-3.337 7.801-5.407 12.828-5.407 9.548 0 17.351 7.467 17.89 16.879l0.002 0.048v219.733c0.030 0.39 0.047 0.844 0.047 1.303 0 9.897-8.023 17.92-17.92 17.92-0.317 0-0.632-0.008-0.945-0.024l0.044 0.002h-220.587c-9.46-0.541-16.927-8.345-16.927-17.892 0-5.027 2.070-9.57 5.403-12.824l0.004-0.003z" />
<glyph unicode="&#xe93d;" glyph-name="trash" data-tags="trash" d="M810.667 682.667h-103.253v85.333c0 37.231-30.182 67.413-67.413 67.413h-256c-37.231 0-67.413-30.182-67.413-67.413v0-85.333h-103.253c-11.782 0-21.333-9.551-21.333-21.333v0-42.667c0-11.782 9.551-21.333 21.333-21.333v0h42.667v-426.667c0-47.128 38.205-85.333 85.333-85.333v0h341.333c47.128 0 85.333 38.205 85.333 85.333v0 426.667h42.667c11.782 0 21.333 9.551 21.333 21.333v0 42.667c0 11.782-9.551 21.333-21.333 21.333v0zM408.747 721.92c0.234 11.687 9.647 21.099 21.311 21.333h163.862c11.687-0.234 21.099-9.647 21.333-21.311v-39.275h-206.507zM416 170.667c0-11.782-9.551-21.333-21.333-21.333v0h-21.333c-11.782 0-21.333 9.551-21.333 21.333v0 298.667c0 11.782 9.551 21.333 21.333 21.333v0h21.333c11.782 0 21.333-9.551 21.333-21.333v0zM544 170.667c0-11.782-9.551-21.333-21.333-21.333v0h-21.333c-11.782 0-21.333 9.551-21.333 21.333v0 298.667c0 11.782 9.551 21.333 21.333 21.333v0h21.333c11.782 0 21.333-9.551 21.333-21.333v0zM672 170.667c0-11.782-9.551-21.333-21.333-21.333v0h-21.333c-11.782 0-21.333 9.551-21.333 21.333v0 298.667c0 11.782 9.551 21.333 21.333 21.333v0h21.333c11.782 0 21.333-9.551 21.333-21.333v0z" />
<glyph unicode="&#xe93e;" glyph-name="user-minus" data-tags="user-minus" d="M687.787 645.547c0-97.084-78.702-175.787-175.787-175.787s-175.787 78.702-175.787 175.787c0 97.084 78.702 175.787 175.787 175.787s175.787-78.702 175.787-175.787zM618.667 322.987h298.667c11.782 0 21.333-9.551 21.333-21.333v-48.64c0-11.782-9.551-21.333-21.333-21.333h-298.667c-11.782 0-21.333 9.551-21.333 21.333v48.64c0 11.782 9.551 21.333 21.333 21.333zM554.667 253.013v48.64c0 35.346 28.654 64 64 64v0h146.773c-9.988 56.423-45.602 102.865-94.142 127.537l-1.005 0.463c-39.875-41.867-96.044-67.904-158.293-67.904s-118.418 26.037-158.209 67.815l-0.085 0.089c-58.102-29.271-97.342-88.304-97.706-156.538v-174.556c0.241-48.445 39.448-87.652 87.87-87.893h336.236c48.445 0.241 87.652 39.448 87.893 87.87v26.476h-149.333c-35.346 0-64 28.654-64 64v0z" />
<glyph unicode="&#xe93f;" glyph-name="user-plus" data-tags="user-plus" d="M679.68 189.013h-61.013c-35.346 0-64 28.654-64 64v0 48.64c0 35.346 28.654 64 64 64v0h61.013v61.013c0 0.012 0 0.026 0 0.040 0 18.807 8.222 35.694 21.268 47.263l0.066 0.057c-8.938 6.944-18.992 13.455-29.59 19.079l-1.13 0.547c-39.875-41.867-96.044-67.904-158.293-67.904s-118.418 26.037-158.209 67.815l-0.085 0.089c-58.102-29.271-97.342-88.304-97.706-156.538v-174.556c0.241-48.445 39.448-87.652 87.87-87.893h336.236c8.441 0.195 16.486 1.585 24.071 4.007l-0.604-0.167c-14.613 11.668-23.893 29.482-23.893 49.464 0 0.010 0 0.021 0 0.031v-0.002zM687.787 645.547c0-97.084-78.702-175.787-175.787-175.787s-175.787 78.702-175.787 175.787c0 97.084 78.702 175.787 175.787 175.787s175.787-78.702 175.787-175.787zM917.333 322.987h-103.68v103.68c0 11.782-9.551 21.333-21.333 21.333v0h-48.64c-11.782 0-21.333-9.551-21.333-21.333v0-103.68h-103.68c-11.782 0-21.333-9.551-21.333-21.333v0-48.64c0-11.782 9.551-21.333 21.333-21.333v0h103.68v-103.68c0-11.782 9.551-21.333 21.333-21.333v0h48.64c11.782 0 21.333 9.551 21.333 21.333v0 103.68h103.68c11.782 0 21.333 9.551 21.333 21.333v0 48.64c0 11.782-9.551 21.333-21.333 21.333v0z" />
<glyph unicode="&#xe940;" glyph-name="clock" data-tags="clock" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM512 192c-141.385 0-256 114.615-256 256s114.615 256 256 256c141.385 0 256-114.615 256-256v0c0-141.385-114.615-256-256-256v0zM533.333 613.12h-32c-11.782 0-21.333-9.551-21.333-21.333v0-149.333h-74.667c-11.782 0-21.333-9.551-21.333-21.333v0-32c0-11.782 9.551-21.333 21.333-21.333v0h128c11.782 0 21.333 9.551 21.333 21.333v0 202.667c0 11.782-9.551 21.333-21.333 21.333v0z" />
<glyph unicode="&#xe941;" glyph-name="users" data-tags="users" d="M686.507 641.28c0-97.084-78.702-175.787-175.787-175.787s-175.787 78.702-175.787 175.787c0 97.084 78.702 175.787 175.787 175.787s175.787-78.702 175.787-175.787zM669.013 490.667c-39.875-41.867-96.044-67.904-158.293-67.904s-118.418 26.037-158.209 67.815l-0.085 0.089c-57.665-29.637-96.43-88.719-96.43-156.855 0-0.356 0.001-0.711 0.003-1.067v0.055-174.507c0.209-47.567 37.988-86.242 85.182-87.889l0.151-0.004h336.213c0.635-0.016 1.384-0.026 2.134-0.026 48.637 0 88.091 39.314 88.319 87.897v174.529c-0.104 69.039-39.991 128.737-97.959 157.407l-1.028 0.46zM810.667 632.32c60.242 0.723 108.8 49.727 108.8 110.073 0 60.796-49.284 110.080-110.080 110.080-60.793 0-110.076-49.28-110.080-110.072v0c-0.001-0.131-0.001-0.285-0.001-0.44 0-60.56 49.093-109.653 109.653-109.653 0.6 0 1.2 0.005 1.798 0.014l-0.090-0.001zM213.333 632.32c0.381-0.005 0.83-0.007 1.28-0.007 60.796 0 110.080 49.284 110.080 110.080s-49.284 110.080-110.080 110.080c-60.793 0-110.076-49.28-110.080-110.072v0c-0.001-0.128-0.001-0.279-0.001-0.43 0-60.26 48.609-109.167 108.755-109.65h0.046zM908.8 647.253c-24.937-26.29-60.124-42.647-99.13-42.647-29.346 0-56.53 9.258-78.79 25.014l0.426-0.286c-2.33-34.274-12.010-65.827-27.465-93.738l0.585 1.151c52.954-32.164 89.227-87.242 95.089-151.12l0.057-0.773h115.2c30.398 0 55.040 24.642 55.040 55.040v0 109.227c-0.268 42.726-24.742 79.673-60.387 97.844l-0.626 0.29zM317.013 536.747c-14.977 26.193-24.675 57.19-26.846 90.242l-0.034 0.638c-21.302-14.404-47.563-22.993-75.829-22.993-38.993 0-74.169 16.346-99.048 42.56l-0.057 0.060c-36.272-18.46-60.746-55.407-61.013-98.097v-109.263c0-30.398 24.642-55.040 55.040-55.040v0h112.64c5.991 64.629 42.241 119.68 94.274 151.399l0.873 0.494z" />
<glyph unicode="&#xe942;" glyph-name="pencil" data-tags="pencil" d="M800.853 661.333l-75.52 75.52c-8.989 11.049-22.586 18.051-37.818 18.051-11.376 0-21.841-3.906-30.125-10.449l0.103 0.078-30.293-30.293 151.040-151.040 32.427 30.293c5.98 7.989 9.575 18.064 9.575 28.979 0 15.828-7.561 29.891-19.268 38.773l-0.121 0.088zM220.16 306.773l-15.36-165.973 165.973 15.36 377.173 377.173-150.613 150.613zM251.733 288l29.867 32 102.4-102.4-30.293-29.867-55.040-5.12 4.693 55.040-56.747-2.987 5.12 55.040z" />
<glyph unicode="&#xe943;" glyph-name="cloud-download" data-tags="cloud-download" d="M725.333 527.36c0 2.133 0 3.84 0 5.973-0.239 46.947-38.352 84.913-85.332 84.913-21.23 0-40.649-7.753-55.581-20.582l0.113 0.095c-26.218 62.624-86.998 105.82-157.867 105.82-94.109 0-170.427-76.171-170.666-170.224v-0.023c-0.201-3.378-0.316-7.329-0.316-11.307s0.115-7.928 0.341-11.849l-0.025 0.542c-51.619-30-85.772-85.038-85.772-148.054 0-94.257 76.41-170.667 170.667-170.667 0.154 0 0.308 0 0.462 0.001h341.309c93.373 1.155 168.621 77.117 168.621 170.654 0 78.35-52.797 144.369-124.754 164.42l-1.2 0.286zM637.013 376.747l-114.773-113.92c-2.364-2.809-5.882-4.582-9.813-4.582s-7.449 1.773-9.797 4.562l-0.016 0.019-115.2 113.92c-2.168 2.348-3.497 5.499-3.497 8.96 0 7.305 5.922 13.227 13.227 13.227 0.030 0 0.059 0 0.089 0h83.195v122.453c0.231 8.624 7.162 15.555 15.765 15.786h31.595c8.624-0.231 15.555-7.162 15.786-15.765v-122.475h83.2c0.025 0 0.055 0 0.084 0 7.305 0 13.227-5.922 13.227-13.227 0-3.461-1.329-6.612-3.506-8.969l0.008 0.009z" />
<glyph unicode="&#xe944;" glyph-name="cloud-upload" data-tags="cloud-upload" d="M725.333 527.36c0 2.133 0 3.84 0 5.973-0.239 46.947-38.352 84.913-85.332 84.913-21.23 0-40.649-7.753-55.581-20.582l0.113 0.095c-26.218 62.624-86.998 105.82-157.867 105.82-94.109 0-170.427-76.171-170.666-170.224v-0.023c-0.201-3.378-0.316-7.329-0.316-11.307s0.115-7.928 0.341-11.849l-0.025 0.542c-51.619-30-85.772-85.038-85.772-148.054 0-94.257 76.41-170.667 170.667-170.667 0.154 0 0.308 0 0.462 0.001h341.309c93.373 1.155 168.621 77.117 168.621 170.654 0 78.35-52.797 144.369-124.754 164.42l-1.2 0.286zM627.2 412.587h-83.627v-122.453c-0.231-8.624-7.162-15.555-15.765-15.786h-31.595c-8.624 0.231-15.555 7.162-15.786 15.765v122.475h-83.2c-0.025 0-0.055 0-0.084 0-7.305 0-13.227 5.922-13.227 13.227 0 3.461 1.329 6.612 3.506 8.969l-0.008-0.009 114.773 113.92c2.364 2.809 5.882 4.582 9.813 4.582s7.449-1.773 9.797-4.562l0.016-0.019 114.773-113.92c2.168-2.348 3.497-5.499 3.497-8.96 0-7.305-5.922-13.227-13.227-13.227-0.030 0-0.059 0-0.089 0h0.005z" />
<glyph unicode="&#xe945;" glyph-name="cloud" data-tags="cloud" d="M725.333 527.36c0 2.133 0 3.84 0 5.973-0.239 46.947-38.352 84.913-85.332 84.913-21.23 0-40.649-7.753-55.581-20.582l0.113 0.095c-26.218 62.624-86.998 105.82-157.867 105.82-94.109 0-170.427-76.171-170.666-170.224v-0.023c-0.201-3.378-0.316-7.329-0.316-11.307s0.115-7.928 0.341-11.849l-0.025 0.542c-51.619-30-85.772-85.038-85.772-148.054 0-94.257 76.41-170.667 170.667-170.667 0.154 0 0.308 0 0.462 0.001h341.309c93.373 1.155 168.621 77.117 168.621 170.654 0 78.35-52.797 144.369-124.754 164.42l-1.2 0.286z" />
<glyph unicode="&#xe946;" glyph-name="align-right" data-tags="align-right" d="M405.333 746.667h426.667c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-426.667c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 576h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM405.333 405.333h426.667c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-426.667c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 234.667h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333z" />
<glyph unicode="&#xe947;" glyph-name="align-left" data-tags="align-left" d="M192 746.667h426.667c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-426.667c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 576h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 405.333h426.667c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-426.667c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 234.667h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333z" />
<glyph unicode="&#xe948;" glyph-name="align-center" data-tags="align-center" d="M320 746.667h384c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-384c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 576h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM320 405.333h384c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-384c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 234.667h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333z" />
<glyph unicode="&#xe949;" glyph-name="align-justify" data-tags="align-justify" d="M192 746.667h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 576h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 405.333h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333zM192 234.667h640c11.782 0 21.333-9.551 21.333-21.333v-42.667c0-11.782-9.551-21.333-21.333-21.333h-640c-11.782 0-21.333 9.551-21.333 21.333v42.667c0 11.782 9.551 21.333 21.333 21.333z" />
<glyph unicode="&#xe94a;" glyph-name="cog" data-tags="cog" d="M832.427 508.16l-85.333 14.080c-4.9 15.611-10.688 29.028-17.657 41.705l0.59-1.172 50.773 69.547c1.604 3.817 2.535 8.254 2.535 12.909 0 10.348-4.605 19.62-11.877 25.88l-0.045 0.038-36.267 36.267c-6.297 7.317-15.57 11.922-25.918 11.922-4.654 0-9.091-0.932-13.134-2.619l0.226 0.083-69.547-49.067c-11.505 6.378-24.922 12.167-38.932 16.627l-1.601 0.44-14.080 85.333c-5.988 11.563-17.862 19.328-31.55 19.328-1.060 0-2.109-0.047-3.145-0.138l0.134 0.010h-51.2c-0.665 0.044-1.441 0.070-2.223 0.070-14.33 0-26.672-8.511-32.247-20.755l-0.090-0.222-14.080-85.333c-15.611-4.9-29.028-10.688-41.705-17.657l1.172 0.59-69.547 50.773c-3.817 1.604-8.254 2.535-12.909 2.535-10.348 0-19.62-4.605-25.88-11.877l-0.038-0.045-36.267-36.267c-7.317-6.297-11.922-15.57-11.922-25.918 0-4.654 0.932-9.091 2.619-13.134l-0.083 0.226 49.067-69.547c-6.378-11.505-12.167-24.922-16.627-38.932l-0.44-1.601-85.333-14.080c-11.563-5.988-19.328-17.862-19.328-31.55 0-1.060 0.047-2.109 0.138-3.145l-0.010 0.134v-51.2c-0.044-0.665-0.070-1.441-0.070-2.223 0-14.33 8.511-26.672 20.755-32.247l0.222-0.090 85.333-14.080c4.9-15.611 10.688-29.028 17.657-41.705l-0.59 1.172-50.773-69.547c-1.604-3.817-2.535-8.254-2.535-12.909 0-10.348 4.605-19.62 11.877-25.88l0.045-0.038 36.267-36.267c6.297-7.317 15.57-11.922 25.918-11.922 4.654 0 9.091 0.932 13.134 2.619l-0.226-0.083 69.547 49.067c11.505-6.378 24.922-12.167 38.932-16.627l1.601-0.44 14.080-85.333c5.665-12.465 18.007-20.977 32.337-20.977 0.782 0 1.558 0.025 2.328 0.075l-0.105-0.005h51.2c0.665-0.044 1.441-0.070 2.223-0.070 14.33 0 26.672 8.511 32.247 20.755l0.090 0.222 14.080 85.333c15.611 4.9 29.028 10.688 41.705 17.657l-1.172-0.59 69.547-49.067c3.817-1.604 8.254-2.535 12.909-2.535 10.348 0 19.62 4.605 25.88 11.877l0.038 0.045 36.267 36.267c7.317 6.297 11.922 15.57 11.922 25.918 0 4.654-0.932 9.091-2.619 13.134l0.083-0.226-49.067 69.547c6.378 11.505 12.167 24.922 16.627 38.932l0.44 1.601 85.333 14.080c11.563 5.988 19.328 17.862 19.328 31.55 0 1.060-0.047 2.109-0.138 3.145l0.010-0.134v51.2c0.044 0.665 0.070 1.441 0.070 2.223 0 14.33-8.511 26.672-20.755 32.247l-0.222 0.090zM512 323.84c-68.572 0-124.16 55.588-124.16 124.16s55.588 124.16 124.16 124.16c68.572 0 124.16-55.588 124.16-124.16v0c-0.242-68.474-55.686-123.918-124.137-124.16h-0.023z" />
<glyph unicode="&#xe94b;" glyph-name="print" data-tags="print" d="M768 618.667h-85.333v128c0 23.564-19.103 42.667-42.667 42.667v0h-341.333c-23.564 0-42.667-19.103-42.667-42.667v0-128c-47.128 0-85.333-38.205-85.333-85.333v0-234.667c0.234-11.687 9.647-21.099 21.311-21.333h64.022v-128c0-23.564 19.103-42.667 42.667-42.667v0h341.333c23.564 0 42.667 19.103 42.667 42.667v0 128h149.333c11.687 0.234 21.099 9.647 21.333 21.311v234.689c0 47.128-38.205 85.333-85.333 85.333v0zM320 725.333h256v-21.333c0.234-11.687 9.647-21.099 21.311-21.333h21.355v-149.333h-298.667v192zM618.667 170.667h-298.667v170.667h298.667v-170.667zM768 501.333c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32h-0.023z" />
<glyph unicode="&#xe94c;" glyph-name="filter" data-tags="filter" d="M790.613 789.333h-557.227c-17.708-0.262-31.962-14.678-31.962-32.423 0-7.99 2.89-15.305 7.681-20.957l-0.039 0.047 217.6-216.32v-270.933c-0.028-0.412-0.044-0.894-0.044-1.379 0-5.145 1.785-9.872 4.77-13.597l-0.033 0.043 131.84-128c4.267-4.267 34.133 0 34.133 42.667v371.2l217.6 216.747c4.83 5.573 7.774 12.896 7.774 20.907 0 17.673-14.327 32-32 32-0.033 0-0.066 0-0.099 0h0.005z" />
<glyph unicode="&#xe94d;" glyph-name="replay" data-tags="replay" d="M823.467 756.053l-68.693-69.12c-61.888 62.497-147.711 101.194-242.573 101.194-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c154.74 0 285.431 102.968 327.292 244.124l0.614 2.415c0.864 3.207 1.36 6.89 1.36 10.688 0 23.564-19.103 42.667-42.667 42.667-0.478 0-0.955-0.008-1.43-0.023l0.069 0.002c-0.033 0-0.071 0-0.11 0-18.678 0-34.552-12.002-40.333-28.714l-0.090-0.3c-31.908-107.6-129.887-184.75-245.885-184.75-14.723 0-29.156 1.243-43.199 3.629l1.511-0.212c-109.168 24.767-192.85 111.312-213.069 220.152l-0.265 1.715c-1.099 8.907-1.726 19.218-1.726 29.675 0 141.385 114.615 256 256 256 71.498 0 136.15-29.311 182.596-76.571l0.036-0.037-12.8-12.8-76.8-79.787c-3.1-3.217-5.009-7.599-5.009-12.427 0-9.407 7.249-17.122 16.466-17.862l0.063-0.004h219.733c0.071-0.001 0.155-0.002 0.239-0.002 10.368 0 18.773 8.405 18.773 18.773 0 1.055-0.087 2.090-0.254 3.098l0.015-0.109v219.733c-0.925 9.111-8.556 16.161-17.833 16.161-4.639 0-8.866-1.762-12.048-4.654l0.015 0.013z" />
<glyph unicode="&#xe94e;" glyph-name="bookmark" data-tags="bookmark" d="M725.333 106.667l-213.333 146.347-213.333-146.347v634.027c-0.050 0.801-0.078 1.738-0.078 2.681 0 24.276 18.772 44.167 42.591 45.95l0.154 0.009h341.333c23.973-1.792 42.745-21.684 42.745-45.959 0-0.943-0.028-1.88-0.084-2.809l0.006 0.128z" />
<glyph unicode="&#xe94f;" glyph-name="globe" data-tags="globe" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM765.013 561.067v-2.133l-11.947 12.8v11.52l-11.52 9.813-3.84 4.267h-12.373l3.84-11.947 16.213-8.533 2.56-2.987h-3.413v-9.387l-7.68-3.413h-6.4l-5.12 5.547h11.093l2.56 3.84-23.467 16.213-2.987 6.4-9.387-8.96-9.813 2.133-14.933-19.2-2.987-7.68h-23.893l-8.533 3.84-2.987 15.787 2.987 8.107 14.080 2.987 15.787-2.987 2.133 8.533h-6.827l2.133 13.227 15.787 2.56 11.093 15.787h21.76c17.836-19.097 33.189-40.852 45.331-64.526l0.749-1.607zM711.68 640h-2.56l-2.987 7.253zM701.44 650.24h-4.267v4.267zM670.293 632.747l-6.827 4.267-4.693 2.987v4.693l2.987 4.693h9.813l2.56-11.947 5.547-8.533 3.413-4.267 6.4-2.56-6.827-5.547h-20.48v10.24h7.253zM662.187 632.747v-6.4l-12.8-8.96h-6.827v8.533l5.973 9.813h8.107zM373.76 688.213v0-5.12h20.48l-2.56 6.4h-17.067c7.718 4.702 16.959 9.549 26.504 13.841l1.656 0.666h13.227l10.667 3.413 6.4-2.987-11.52-10.667h-15.36c0.199-1.601 0.313-3.454 0.313-5.333s-0.114-3.732-0.334-5.552l0.022 0.219h20.48v5.12h12.8v7.68h-7.68l5.973 8.107h26.027l-11.093-10.24v-7.68h11.52v14.080l12.373 3.84 19.627 2.56 28.587-12.8v-10.667l9.387-2.56-4.693-8.533h-13.227l-4.267-8.107-29.44 6.827 23.467 12.373-8.96 7.68-20.053-2.56-7.68-8.107h-9.387v-4.693h-4.267v-4.267h-7.68v8.96l-13.227-3.84-27.307-16.213 2.987-11.093 7.68-5.12h15.36v-25.173h6.827l6.4 13.653 16.213 5.12v23.893l6.4 4.693 21.76-4.693v-14.080h5.547l15.36 8.107v-17.92l11.52-7.253v-11.52l-11.52-2.987v-3.413l13.653-5.973v-7.68h-3.84l-17.067 5.12v5.547l7.253 3.413v5.973h-5.12v-4.693h-16.213l-2.56 4.693h-9.813l-2.987-2.56v-5.547h11.093l-5.12-5.973-2.56 2.987h-4.693l-13.653-12.8-20.053-11.093-18.773-19.627v-8.533l-18.773-12.8-8.96-9.387v-18.347l-12.8 5.973v8.107h-35.84l-18.347-9.387-8.107-14.933-3.413-11.52 5.547-11.52h14.507l23.467 15.36 2.133-7.68-7.253-13.653 17.493-2.987 2.133-27.307 24.32-4.267 15.36 17.92 18.773-3.84 6.4-8.96h17.92v5.547l9.813-5.12 11.093-17.493h19.2l7.253-12.373v-15.36l21.333-8.107h29.867l7.68-13.227 11.947-3.413v-10.667l-13.227-16.64-3.84-36.693-11.52-9.387h-20.907l-5.973-10.24 4.267-18.773-19.2-24.32-5.973-11.52-17.92-8.533h-11.947v-5.12l8.107-2.56v-5.12l-7.68-7.253 4.693-5.973h8.96v-7.253l-2.56-6.827v-5.547l12.373-10.24c-10.667 0-20.907 0-31.147 3.84l-5.973 5.547-14.080 24.747v23.893l-10.667 14.080 4.267 23.893h-5.973v49.92s-17.92 13.227-18.773 13.227l-9.387 2.56v9.813l-23.040 29.013 2.56 10.24v17.067l15.787 11.093-2.133 18.773-23.467 2.133-20.053 22.613-12.8 3.84h-8.107v7.68h-10.667v-4.267l-26.453 6.4-10.24 20.48 4.693 7.68-17.067 24.747-2.987 17.92h-6.827l2.56-17.493 11.52-17.92v-7.253h-9.813l-11.947 20.48v20.48c22.54 63.527 65.458 115.145 120.752 148.2l1.275 0.706zM501.76 599.893v-3.84h-4.267v-3.84h-8.533v3.84h8.533v4.267h3.413zM478.293 592.64v-4.267h-8.96v4.267l2.56 3.413zM738.133 286.293l-3.84 5.547v24.32l-8.96 8.96v9.813l11.52 21.76-21.333 37.547 2.133 25.6-19.2 2.133-6.827 7.253h-13.227l-6.4-6.4h-35.84l-29.013 33.28v25.6h4.693v9.813h-6.827l-2.987 10.667 33.707 24.32v17.067l16.64 9.387h20.053l10.24 4.693 34.133 2.987v-17.493l27.307-6.827 5.12-3.84h5.12v9.387h15.36l2.987-2.56c10.337-27.116 16.421-58.468 16.64-91.213v-0.093c-0.081-60.759-19.749-116.909-53.026-162.491l0.546 0.785z" />
<glyph unicode="&#xe950;" glyph-name="ellipsis-v" data-tags="ellipsis-v" d="M597.333 704c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM597.333 448c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM597.333 192c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333z" />
<glyph unicode="&#xe951;" glyph-name="ellipsis-h" data-tags="ellipsis-h" d="M341.333 448c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM597.333 448c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM853.333 448c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333z" />
<glyph unicode="&#xe952;" glyph-name="calendar-times" data-tags="calendar-times" d="M810.667 744.107h-63.147v47.787c0 23.564-19.103 42.667-42.667 42.667v0h-18.347c-23.564 0-42.667-19.103-42.667-42.667v0-47.787h-262.827v45.227c0 23.564-19.103 42.667-42.667 42.667v0h-18.347c-23.564 0-42.667-19.103-42.667-42.667v0-46.933h-64c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 597.333c0.022 0.509 0.034 1.106 0.034 1.707 0 23.564-19.103 42.667-42.667 42.667-0.012 0-0.024 0-0.036 0h0.002zM789.333 168.107c0-23.564-19.103-42.667-42.667-42.667v0h-469.333c-23.564 0-42.667 19.103-42.667 42.667v0 357.973c0 23.564 19.103 42.667 42.667 42.667v0h469.333c23.564 0 42.667-19.103 42.667-42.667v0zM674.56 470.187l-37.973 37.973c-4.883 4.981-11.681 8.068-19.2 8.068s-14.317-3.087-19.196-8.064l-85.337-85.337-85.333 85.333c-4.883 4.981-11.681 8.068-19.2 8.068s-14.317-3.087-19.196-8.064l-37.977-37.977c-4.981-4.883-8.068-11.681-8.068-19.2s3.087-14.317 8.064-19.196l85.337-85.337-85.333-85.333c-4.981-4.883-8.068-11.681-8.068-19.2s3.087-14.317 8.064-19.196l37.977-37.977c4.883-4.981 11.681-8.068 19.2-8.068s14.317 3.087 19.196 8.064l85.337 85.337 85.333-85.333c4.883-4.981 11.681-8.068 19.2-8.068s14.317 3.087 19.196 8.064l37.977 37.977c4.981 4.883 8.068 11.681 8.068 19.2s-3.087 14.317-8.064 19.196l-85.337 85.337 85.333 85.333c4.981 4.883 8.068 11.681 8.068 19.2s-3.087 14.317-8.064 19.196l-0.004 0.004z" />
<glyph unicode="&#xe953;" glyph-name="calendar-minus" data-tags="calendar-minus" d="M810.667 744.107h-63.147v47.787c0 23.564-19.103 42.667-42.667 42.667v0h-18.347c-23.564 0-42.667-19.103-42.667-42.667v0-47.787h-262.827v45.227c0 23.564-19.103 42.667-42.667 42.667v0h-18.347c-23.564 0-42.667-19.103-42.667-42.667v0-46.933h-64c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 597.333c0.022 0.509 0.034 1.106 0.034 1.707 0 23.564-19.103 42.667-42.667 42.667-0.012 0-0.024 0-0.036 0h0.002zM789.333 168.107c0-23.564-19.103-42.667-42.667-42.667v0h-469.333c-23.564 0-42.667 19.103-42.667 42.667v0 357.973c0 23.564 19.103 42.667 42.667 42.667v0h469.333c23.564 0 42.667-19.103 42.667-42.667v0zM362.667 390.827h298.667c11.782 0 21.333-9.551 21.333-21.333v-47.787c0-11.782-9.551-21.333-21.333-21.333h-298.667c-11.782 0-21.333 9.551-21.333 21.333v47.787c0 11.782 9.551 21.333 21.333 21.333z" />
<glyph unicode="&#xe954;" glyph-name="calendar-plus" data-tags="calendar-plus" d="M810.667 744.107h-63.147v47.787c0 23.564-19.103 42.667-42.667 42.667v0h-18.347c-23.564 0-42.667-19.103-42.667-42.667v0-47.787h-262.827v45.227c0 23.564-19.103 42.667-42.667 42.667v0h-18.347c-23.564 0-42.667-19.103-42.667-42.667v0-46.933h-64c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 597.333c0.022 0.509 0.034 1.106 0.034 1.707 0 23.564-19.103 42.667-42.667 42.667-0.012 0-0.024 0-0.036 0h0.002zM789.333 168.107c0-23.564-19.103-42.667-42.667-42.667v0h-469.333c-23.564 0-42.667 19.103-42.667 42.667v0 357.973c0 23.564 19.103 42.667 42.667 42.667v0h469.333c23.564 0 42.667-19.103 42.667-42.667v0zM659.627 391.253h-101.973v101.973c0 12.725-10.315 23.040-23.040 23.040v0h-45.227c-12.725 0-23.040-10.315-23.040-23.040v0-101.973h-101.973c-12.725 0-23.040-10.315-23.040-23.040v0-45.227c0-12.725 10.315-23.040 23.040-23.040v0h101.973v-101.973c0-12.725 10.315-23.040 23.040-23.040v0h45.227c12.725 0 23.040 10.315 23.040 23.040v0 101.973h101.973c12.725 0 23.040 10.315 23.040 23.040v0 45.227c0 12.725-10.315 23.040-23.040 23.040v0z" />
<glyph unicode="&#xe955;" glyph-name="clone" data-tags="clone" d="M807.68 789.333h-454.827c-25.214 0-45.653-20.44-45.653-45.653v0-90.88h-90.88c-25.214 0-45.653-20.44-45.653-45.653v0-454.827c0-25.214 20.44-45.653 45.653-45.653v0h454.827c25.214 0 45.653 20.44 45.653 45.653v0 90.88h90.88c25.214 0 45.653 20.44 45.653 45.653v0 454.827c0 25.214-20.44 45.653-45.653 45.653v0zM625.92 197.547h-364.373v364.373h45.653v-273.067c0-25.214 20.44-45.653 45.653-45.653v0h273.067zM762.453 334.080h-364.373v364.373h364.373z" />
<glyph unicode="&#xe956;" glyph-name="download" data-tags="download" d="M492.373 286.293c4.871-5.504 11.952-8.956 19.84-8.956s14.969 3.452 19.816 8.928l0.024 0.028 229.547 225.28c3.742 4.476 6.014 10.293 6.014 16.64 0 14.374-11.653 26.027-26.027 26.027-0.014 0-0.029 0-0.043 0h-144.211v210.773c0 11.782-9.551 21.333-21.333 21.333v0h-128c-11.782 0-21.333-9.551-21.333-21.333v0-210.347h-144.213c-0.012 0-0.027 0-0.041 0-14.374 0-26.027-11.653-26.027-26.027 0-6.347 2.272-12.164 6.048-16.681l-0.033 0.041zM810.667 323.413h-186.027l-81.067-78.507c-8.741-6.405-19.708-10.248-31.573-10.248s-22.832 3.844-31.725 10.354l0.151-0.106-81.067 78.507h-186.027c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM768 181.333c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32h-0.023z" />
<glyph unicode="&#xe957;" glyph-name="copy" data-tags="copy" d="M677.12 645.973h90.88c19.627 0 17.92 16.213 17.92 35.84v5.973l-103.253 101.547h-5.973c-19.627 0-35.413 0-35.413-17.493v-90.027c0-19.794 16.046-35.84 35.84-35.84v0zM317.013 215.040v459.52h-42.667c-19.558 0-35.413-15.855-35.413-35.413v0-497.067c0-19.558 15.855-35.413 35.413-35.413v0h354.987c19.558 0 35.413 15.855 35.413 35.413v0 37.547h-311.893c-0.001 0-0.002 0-0.003 0-19.644 0-35.597 15.804-35.837 35.391v0.023zM640 611.84c-19.558 0-35.413 15.855-35.413 35.413v0 142.080h-213.333c-19.558 0-35.413-15.855-35.413-35.413v0-497.067c0-19.558 15.855-35.413 35.413-35.413h354.987c19.558 0 35.413 15.855 35.413 35.413v0 354.987z" />
<glyph unicode="&#xe958;" glyph-name="file" data-tags="file" d="M597.333 576c-23.564 0-42.667 19.103-42.667 42.667v0 170.667h-256c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h426.667c23.564 0 42.667 19.103 42.667 42.667v0 426.667zM640 618.667h106.667c23.467 0 21.333 19.2 21.333 42.667v7.253l-120.747 120.747h-7.253c-23.467 0-42.667 0-42.667-21.333v-106.667c0-23.564 19.103-42.667 42.667-42.667v0z" />
<glyph unicode="&#xe959;" glyph-name="question-circle" data-tags="question-circle" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM538.453 255.573c0.027-0.269 0.043-0.581 0.043-0.896 0-5.184-4.203-9.387-9.387-9.387-0.316 0-0.628 0.016-0.935 0.046l0.039-0.003h-47.787c-0.286-0.032-0.617-0.051-0.953-0.051-4.948 0-8.96 4.012-8.96 8.96 0 0.47 0.036 0.931 0.106 1.381l-0.006-0.050v46.507c-0.063 0.4-0.099 0.861-0.099 1.331 0 4.948 4.012 8.96 8.96 8.96 0.336 0 0.667-0.018 0.993-0.054l-0.040 0.004h47.787c0.269 0.027 0.581 0.043 0.896 0.043 5.184 0 9.387-4.203 9.387-9.387 0-0.316-0.016-0.628-0.046-0.935l0.003 0.039zM613.547 477.867c0.008-0.189 0.013-0.41 0.013-0.632 0-4.938-2.33-9.332-5.951-12.142l-0.035-0.026-64-61.867c-3.173-2.679-5.175-6.659-5.175-11.107 0-0.446 0.020-0.887 0.059-1.322l-0.004 0.056v-22.187c0.027-0.269 0.043-0.581 0.043-0.896 0-5.184-4.203-9.387-9.387-9.387-0.316 0-0.628 0.016-0.935 0.046l0.039-0.003h-47.787c-0.286-0.032-0.617-0.051-0.953-0.051-4.948 0-8.96 4.012-8.96 8.96 0 0.47 0.036 0.931 0.106 1.381l-0.006-0.050v42.667c-0.011 0.23-0.018 0.5-0.018 0.772 0 4.514 1.797 8.608 4.715 11.605l-0.004-0.004 69.12 68.267v71.68c0.059 0.552 0.093 1.193 0.093 1.842 0 10.133-8.214 18.347-18.347 18.347-0.785 0-1.558-0.049-2.316-0.145l0.090 0.009h-23.893c-0.816 0.131-1.756 0.207-2.713 0.207-9.897 0-17.92-8.023-17.92-17.92 0-0.825 0.056-1.637 0.164-2.433l-0.010 0.093v-39.68c0.037-0.273 0.057-0.59 0.057-0.911 0-4.006-3.247-7.253-7.253-7.253-0.321 0-0.637 0.021-0.947 0.061l0.037-0.004h-52.48c-5.973 0-8.533 2.987-8.533 8.107v52.053c-0.333 2.478-0.524 5.344-0.524 8.253 0 36.053 29.227 65.28 65.28 65.28 3.043 0 6.038-0.208 8.971-0.611l-0.34 0.038h56.32c2.444 0.322 5.271 0.506 8.14 0.506 36.289 0 65.707-29.418 65.707-65.707 0-2.735-0.167-5.43-0.491-8.077l0.032 0.318z" />
<glyph unicode="&#xe95a;" glyph-name="question" data-tags="question" d="M559.787 789.333c3.951 0.501 8.522 0.786 13.16 0.786 61.031 0 110.507-49.476 110.507-110.507 0-4.638-0.286-9.209-0.84-13.697l0.054 0.537v-168.107c0.036-0.503 0.056-1.089 0.056-1.68 0-7.929-3.665-15.001-9.394-19.615l-0.048-0.038-108.373-104.107c-5.287-4.922-8.583-11.922-8.583-19.692 0-0.577 0.018-1.151 0.054-1.719l-0.004 0.078v-37.547c0.068-0.545 0.108-1.175 0.108-1.814 0-8.483-6.877-15.36-15.36-15.36-0.639 0-1.27 0.039-1.888 0.115l0.074-0.007h-80.213c-0.545-0.068-1.175-0.108-1.814-0.108-8.483 0-15.36 6.877-15.36 15.36 0 0.639 0.039 1.27 0.115 1.888l-0.007-0.074v75.093c-0.012 0.299-0.019 0.651-0.019 1.003 0 7.697 3.287 14.626 8.534 19.46l0.018 0.017 116.053 115.2v117.76c0.101 0.943 0.159 2.038 0.159 3.146 0 17.202-13.945 31.147-31.147 31.147-1.108 0-2.202-0.058-3.281-0.171l0.135 0.011h-42.667c-1.238 0.179-2.668 0.282-4.122 0.282-16.731 0-30.293-13.563-30.293-30.293 0-1.454 0.102-2.883 0.3-4.282l-0.019 0.161v-66.56c0.047-0.406 0.074-0.877 0.074-1.354 0-6.834-5.54-12.373-12.373-12.373-0.477 0-0.948 0.027-1.411 0.080l0.057-0.005h-87.040c-0.406-0.047-0.877-0.074-1.354-0.074-6.834 0-12.373 5.54-12.373 12.373 0 0.477 0.027 0.948 0.080 1.411l-0.005-0.057v90.453c-0.541 4.099-0.85 8.838-0.85 13.65 0 60.796 49.284 110.080 110.080 110.080 4.811 0 9.551-0.309 14.199-0.907l-0.55 0.058zM442.027 202.24c-0.068 0.545-0.108 1.175-0.108 1.814 0 8.483 6.877 15.36 15.36 15.36 0.639 0 1.27-0.039 1.888-0.115l-0.074 0.007h80.213c0.545 0.068 1.175 0.108 1.814 0.108 8.483 0 15.36-6.877 15.36-15.36 0-0.639-0.039-1.27-0.115-1.888l0.007 0.074v-78.507c0.068-0.545 0.108-1.175 0.108-1.814 0-8.483-6.877-15.36-15.36-15.36-0.639 0-1.27 0.039-1.888 0.115l0.074-0.007h-80.213c-0.545-0.068-1.175-0.108-1.814-0.108-8.483 0-15.36 6.877-15.36 15.36 0 0.639 0.039 1.27 0.115 1.888l-0.007-0.074z" />
<glyph unicode="&#xe95b;" glyph-name="save" data-tags="save" d="M838.827 576l-198.827 198.827c-8.976 8.92-21.33 14.451-34.976 14.507h-377.611c-31.243-0.24-56.507-25.503-56.747-56.724v-569.196c0.24-31.243 25.503-56.507 56.724-56.747h569.196c31.243 0.24 56.507 25.503 56.747 56.724v377.623c-0.056 13.656-5.586 26.010-14.509 34.989l0.003-0.003zM512 192c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM597.333 576c0-23.564-19.103-42.667-42.667-42.667v0h-256c-23.564 0-42.667 19.103-42.667 42.667v0 85.333c0 23.564 19.103 42.667 42.667 42.667v0h256c23.564 0 42.667-19.103 42.667-42.667v0z" />
<glyph unicode="&#xe95c;" glyph-name="power-off" data-tags="power-off" d="M810.667 613.12c-30.528 54.639-73.991 98.786-126.385 129.266l-1.615 0.867c-5.567 3.162-12.23 5.025-19.328 5.025-14.658 0-27.46-7.948-34.33-19.769l-0.102-0.19c-3.881-5.942-6.19-13.217-6.19-21.032 0-13.414 6.802-25.239 17.145-32.214l0.138-0.088c80.778-45.773 134.4-131.156 134.4-229.063 0-144.92-117.48-262.4-262.4-262.4s-262.4 117.48-262.4 262.4c0 97.907 53.622 183.29 133.099 228.384l1.301 0.679c12.052 6.906 20.040 19.693 20.040 34.347 0 21.79-17.664 39.453-39.453 39.453-7.136 0-13.83-1.895-19.606-5.208l0.192 0.102c-104.428-59.707-173.667-170.425-173.667-297.316 0-188.513 152.82-341.333 341.333-341.333s341.333 152.82 341.333 341.333c0 61.256-16.136 118.743-44.389 168.443l0.883-1.687zM512 387.84c22.15 0 40.107 17.956 40.107 40.107v0 321.28c0 22.15-17.956 40.107-40.107 40.107s-40.107-17.956-40.107-40.107v0-321.28c0-22.15 17.956-40.107 40.107-40.107v0z" />
<glyph unicode="&#xe95d;" glyph-name="tags" data-tags="tags" d="M906.24 451.84l-293.547 294.827c-7.733 7.795-18.45 12.621-30.293 12.621s-22.56-4.826-30.291-12.618l-0.003-0.003-29.867-30.293 264.533-264.533c7.418-7.666 11.989-18.126 11.989-29.653s-4.571-21.987-12-29.665l0.011 0.012-211.2-211.2 30.293-30.293c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 241.067 241.493c7.042 7.587 11.363 17.784 11.363 28.992 0 11.854-4.834 22.58-12.639 30.312l-0.003 0.003zM725.333 444.587l-306.773 308.48c-7.173 7.136-17.063 11.547-27.983 11.547-0.513 0-1.023-0.010-1.531-0.029l0.073 0.002-237.227-4.267c-23.564 0-42.667-19.103-42.667-42.667v0l-4.267-237.227c-0.013-0.384-0.021-0.835-0.021-1.288 0-10.972 4.406-20.915 11.545-28.157l-0.005 0.005 310.187-308.053c7.666-7.418 18.126-11.989 29.653-11.989s21.987 4.571 29.665 12l-0.012-0.011 239.36 242.773c7.295 7.642 11.784 18.017 11.784 29.44s-4.489 21.798-11.8 29.457l0.016-0.017zM288 581.547c-11.716-12.548-28.356-20.37-46.823-20.37-35.346 0-64 28.654-64 64 0 18.467 7.822 35.107 20.333 46.789l0.037 0.034c11.398 10.643 26.751 17.177 43.63 17.177 35.346 0 64-28.654 64-64 0-16.879-6.534-32.232-17.211-43.667l0.034 0.037z" />
<glyph unicode="&#xe95e;" glyph-name="tag" data-tags="tag" d="M479.573 764.587l-237.227-4.267c-23.564 0-42.667-19.103-42.667-42.667v0l-4.267-237.227c-0.013-0.384-0.021-0.835-0.021-1.288 0-10.972 4.406-20.915 11.545-28.157l-0.005 0.005 308.48-308.053c7.642-7.295 18.017-11.784 29.44-11.784s21.798 4.489 29.457 11.8l-0.017-0.016 241.493 241.493c7.295 7.642 11.784 18.017 11.784 29.44s-4.489 21.798-11.8 29.457l0.016-0.017-306.773 309.76c-7.237 7.135-17.18 11.541-28.152 11.541-0.453 0-0.904-0.008-1.354-0.022l0.065 0.002zM378.453 581.547c-11.625-11.463-27.599-18.543-45.227-18.543s-33.602 7.079-45.234 18.55l0.007-0.007c-10.643 11.398-17.177 26.751-17.177 43.63 0 35.346 28.654 64 64 64 16.879 0 32.232-6.534 43.667-17.211l-0.037 0.034c11.463-11.625 18.543-27.599 18.543-45.227s-7.079-33.602-18.55-45.234l0.007 0.007z" />
<glyph unicode="&#xe95f;" glyph-name="lock" data-tags="lock" d="M768 490.667h-42.667v85.333c0 117.821-95.513 213.333-213.333 213.333s-213.333-95.513-213.333-213.333v0-85.333h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-298.667c0-23.564 19.103-42.667 42.667-42.667v0h512c23.564 0 42.667 19.103 42.667 42.667v0 298.667c0 23.564-19.103 42.667-42.667 42.667v0zM384 576c0 70.692 57.308 128 128 128s128-57.308 128-128v0-85.333h-256z" />
<glyph unicode="&#xe960;" glyph-name="unlock" data-tags="unlock" d="M768 448h-384v128c0 70.692 57.308 128 128 128s128-57.308 128-128v0c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0c0 117.821-95.513 213.333-213.333 213.333s-213.333-95.513-213.333-213.333v0-128h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-256c0-23.564 19.103-42.667 42.667-42.667v0h512c23.564 0 42.667 19.103 42.667 42.667v0 256c0 23.564-19.103 42.667-42.667 42.667v0z" />
<glyph unicode="&#xe961;" glyph-name="inbox" data-tags="inbox" d="M847.787 455.253l-165.12 216.747s-19.2 32-42.667 32h-256c-23.467 0-42.667-32-42.667-32l-165.12-216.747c-3.324-4.343-5.383-9.809-5.546-15.749l-0.001-0.037v-215.467c0-17.493 19.2-32 42.667-32h597.333c23.467 0 42.667 14.507 42.667 32v215.467c-0.163 5.977-2.223 11.444-5.595 15.852l0.048-0.066zM597.333 469.333l-42.667-64h-85.333l-42.667 64h-128l117.333 170.667h192l117.333-170.667z" />
<glyph unicode="&#xe962;" glyph-name="video" data-tags="video" d="M192 704h426.667c23.564 0 42.667-19.103 42.667-42.667v-426.667c0-23.564-19.103-42.667-42.667-42.667h-426.667c-23.564 0-42.667 19.103-42.667 42.667v426.667c0 23.564 19.103 42.667 42.667 42.667zM840.533 618.667l-136.533-85.333v-170.667l136.533-85.333c19.448 2.539 34.311 19.004 34.311 38.941 0 1.312-0.064 2.609-0.19 3.888l0.013-0.162v256c0.113 1.117 0.177 2.414 0.177 3.726 0 19.937-14.863 36.402-34.112 38.92l-0.198 0.021z" />
<glyph unicode="&#xe963;" glyph-name="folder" data-tags="folder" d="M810.667 192h-597.333c-0.807-0.058-1.749-0.091-2.698-0.091-20.981 0-38.199 16.11-39.959 36.635l-0.010 0.149v439.467c1.733 20.234 18.584 36.001 39.118 36.001 1.249 0 2.485-0.058 3.704-0.172l-0.156 0.012h256l85.333-72.96h256c0.807 0.058 1.749 0.091 2.698 0.091 20.981 0 38.199-16.11 39.959-36.635l0.010-0.149v-365.653c-1.77-20.674-18.988-36.784-39.969-36.784-0.949 0-1.891 0.033-2.824 0.098l0.126-0.007z" />
<glyph unicode="&#xe964;" glyph-name="folder-open" data-tags="folder-open" d="M313.6 490.667h539.733v103.68c-1.77 20.674-18.988 36.784-39.969 36.784-0.949 0-1.891-0.033-2.824-0.098l0.126 0.007h-256l-85.333 72.96h-256c-1.063 0.102-2.299 0.161-3.548 0.161-20.534 0-37.386-15.767-39.108-35.855l-0.010-0.146v-439.467c-0.092-0.705-0.144-1.52-0.144-2.347s0.052-1.642 0.154-2.442l-0.010 0.095 100.267 238.933c7.147 16.446 23.251 27.738 41.991 27.738 0.237 0 0.474-0.002 0.711-0.005h-0.036zM865.28 426.667h-505.173c-0.313 0.010-0.68 0.015-1.049 0.015-14.293 0-26.654-8.268-32.563-20.282l-0.095-0.213-78.080-164.267c-1.483-3.855-2.342-8.316-2.342-12.977 0-20.501 16.619-37.12 37.12-37.12 1.276 0 2.536 0.064 3.779 0.19l-0.156-0.013h501.76c0.287-0.007 0.625-0.011 0.964-0.011 16.058 0 30.044 8.871 37.325 21.98l0.111 0.218 76.8 162.56c1.483 3.855 2.342 8.316 2.342 12.977 0 20.501-16.619 37.12-37.12 37.12-1.276 0-2.536-0.064-3.779-0.19l0.156 0.013z" />
<glyph unicode="&#xe965;" glyph-name="eye-slash" data-tags="eye-slash" d="M606.293 398.933c-5.293-9.624-11.531-17.902-18.777-25.177l0.004 0.004-3.84-3.413c-6.185-5.883-13.196-10.988-20.818-15.105l-0.516-0.255c-14.435-8.517-31.792-13.578-50.325-13.653h-0.022c-58.91 0-106.667 47.756-106.667 106.667v0c0.075 18.555 5.136 35.911 13.911 50.82l-0.258-0.473c4.372 8.138 9.477 15.148 15.399 21.374l-0.039-0.041 3.413 3.84c7.271 7.242 15.549 13.481 24.605 18.485l0.568 0.288-147.2 147.2c-5.699 5.321-13.376 8.588-21.815 8.588-17.673 0-32-14.327-32-32 0-8.44 3.267-16.116 8.606-21.834l-0.017 0.019 50.773-50.773c-58.050-41.252-107.742-89.316-149.403-143.842l-1.211-1.651s152.747-213.333 341.333-213.333c49.114 0.907 95.104 13.43 135.605 34.923l-1.632-0.79 62.293-62.293c5.858-6.274 14.178-10.185 23.412-10.185 17.673 0 32 14.327 32 32 0 9.234-3.911 17.554-10.166 23.394l-0.019 0.017zM512 661.333c-19.611-0.202-38.574-2.523-56.809-6.745l1.769 0.345 305.493-305.493c33.184 29.834 62.99 62.076 89.635 96.867l1.245 1.693s-152.747 213.333-341.333 213.333z" />
<glyph unicode="&#xe966;" glyph-name="eye" data-tags="eye" d="M512 661.333c-188.587 0-341.333-213.333-341.333-213.333s152.747-213.333 341.333-213.333 341.333 213.333 341.333 213.333-152.747 213.333-341.333 213.333zM512 341.333c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0z" />
<glyph unicode="&#xe967;" glyph-name="list" data-tags="list" d="M213.333 512h42.667c23.564 0 42.667-19.103 42.667-42.667v-42.667c0-23.564-19.103-42.667-42.667-42.667h-42.667c-23.564 0-42.667 19.103-42.667 42.667v42.667c0 23.564 19.103 42.667 42.667 42.667zM384 512h426.667c23.564 0 42.667-19.103 42.667-42.667v-42.667c0-23.564-19.103-42.667-42.667-42.667h-426.667c-23.564 0-42.667 19.103-42.667 42.667v42.667c0 23.564 19.103 42.667 42.667 42.667zM213.333 746.667h42.667c23.564 0 42.667-19.103 42.667-42.667v-42.667c0-23.564-19.103-42.667-42.667-42.667h-42.667c-23.564 0-42.667 19.103-42.667 42.667v42.667c0 23.564 19.103 42.667 42.667 42.667zM384 746.667h426.667c23.564 0 42.667-19.103 42.667-42.667v-42.667c0-23.564-19.103-42.667-42.667-42.667h-426.667c-23.564 0-42.667 19.103-42.667 42.667v42.667c0 23.564 19.103 42.667 42.667 42.667zM213.333 277.333h42.667c23.564 0 42.667-19.103 42.667-42.667v-42.667c0-23.564-19.103-42.667-42.667-42.667h-42.667c-23.564 0-42.667 19.103-42.667 42.667v42.667c0 23.564 19.103 42.667 42.667 42.667zM384 277.333h426.667c23.564 0 42.667-19.103 42.667-42.667v-42.667c0-23.564-19.103-42.667-42.667-42.667h-426.667c-23.564 0-42.667 19.103-42.667 42.667v42.667c0 23.564 19.103 42.667 42.667 42.667z" />
<glyph unicode="&#xe968;" glyph-name="map-marker" data-tags="map-marker" d="M789.333 513.28c0-107.52-122.027-235.093-262.4-399.787-3.687-4.101-9.010-6.669-14.933-6.669s-11.246 2.568-14.917 6.651l-0.016 0.018c-140.8 163.84-262.4 291.84-262.4 399.787 0 153.167 124.166 277.333 277.333 277.333s277.333-124.166 277.333-277.333v0z" />
<glyph unicode="&#xe969;" glyph-name="table" data-tags="table" d="M810.667 704h-597.333c-23.564 0-42.667-19.103-42.667-42.667v0-426.667c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 426.667c0 23.564-19.103 42.667-42.667 42.667v0zM469.333 277.333c0-11.782-9.551-21.333-21.333-21.333v0h-170.667c-11.782 0-21.333 9.551-21.333 21.333v0 85.333c0 11.782 9.551 21.333 21.333 21.333v0h170.667c11.782 0 21.333-9.551 21.333-21.333v0zM469.333 490.667c0-11.782-9.551-21.333-21.333-21.333v0h-170.667c-11.782 0-21.333 9.551-21.333 21.333v0 85.333c0 11.782 9.551 21.333 21.333 21.333v0h170.667c11.782 0 21.333-9.551 21.333-21.333v0zM768 277.333c0-11.782-9.551-21.333-21.333-21.333v0h-170.667c-11.782 0-21.333 9.551-21.333 21.333v0 85.333c0 11.782 9.551 21.333 21.333 21.333v0h170.667c11.782 0 21.333-9.551 21.333-21.333v0zM768 490.667c0-11.782-9.551-21.333-21.333-21.333v0h-170.667c-11.782 0-21.333 9.551-21.333 21.333v0 85.333c0 11.782 9.551 21.333 21.333 21.333v0h170.667c11.782 0 21.333-9.551 21.333-21.333v0z" />
<glyph unicode="&#xe96a;" glyph-name="lock-open" data-tags="lock-open" d="M680.107 789.333c-117.821 0-213.333-95.513-213.333-213.333v0-128h-293.547c-23.564 0-42.667-19.103-42.667-42.667v0-256c0-23.564 19.103-42.667 42.667-42.667v0h512c23.564 0 42.667 19.103 42.667 42.667v0 256c0 23.564-19.103 42.667-42.667 42.667v0h-133.12v128c0 70.692 57.308 128 128 128s128-57.308 128-128v0-128c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 128c0 117.821-95.513 213.333-213.333 213.333v0z" />
<glyph unicode="&#xe96b;" glyph-name="dollar" data-tags="dollar" d="M580.267 544.427c-8.533 0-13.653 4.267-13.653 11.52v55.893c0 18.773-11.093 28.587-34.133 28.587h-42.667c-21.333 0-34.133-9.813-34.133-28.587v-98.987l203.093-56.32c14.507-5.12 22.187-12.8 22.187-26.453v-165.973c0-65.28-40.107-101.547-116.053-103.68v-85.333c0-7.253-5.12-11.52-13.653-11.52h-81.92c-9.387 0-13.653 4.267-13.653 11.52v85.333c-71.68 2.133-114.347 38.4-114.347 103.68v75.52c0 7.68 5.12 11.52 13.653 11.52h88.747c9.387 0 13.653-3.84 13.653-11.52v-55.467c0-19.2 12.8-28.587 34.133-28.587h42.667c22.187 0 34.133 9.387 34.133 28.587v95.573l-203.947 55.893c-13.102 1.944-23.041 13.113-23.041 26.605 0 0.097 0.001 0.194 0.002 0.29v-0.015 170.667c0 65.28 42.667 101.547 115.2 103.68v85.333c0 7.253 4.267 11.52 13.653 11.52h84.48c8.533 0 13.653-4.267 13.653-11.52v-85.333c75.947 0 116.053-38.4 116.053-103.68v-77.227c0-7.253-4.267-11.52-13.653-11.52z" />
<glyph unicode="&#xe96c;" glyph-name="camera" data-tags="camera" d="M810.667 614.4h-85.333l-30.293 89.6c-7.737 11.685-20.826 19.286-35.69 19.286-0.953 0-1.899-0.031-2.837-0.093l0.127 0.007h-288.853c-0.769 0.049-1.667 0.078-2.572 0.078-14.68 0-27.629-7.414-35.306-18.702l-0.095-0.148-31.147-90.027h-85.333c-1.117 0.113-2.414 0.177-3.726 0.177-19.937 0-36.402-14.863-38.92-34.112l-0.021-0.198v-375.467c2.539-19.448 19.004-34.311 38.941-34.311 1.312 0 2.609 0.064 3.888 0.19l-0.162-0.013h597.333c1.117-0.113 2.414-0.177 3.726-0.177 19.937 0 36.402 14.863 38.92 34.112l0.021 0.198v375.467c-2.539 19.448-19.004 34.311-38.941 34.311-1.312 0-2.609-0.064-3.888-0.19l0.162 0.013zM512 277.333c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128v0c0-70.692-57.308-128-128-128v0zM597.333 405.333c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333z" />
<glyph unicode="&#xe96d;" glyph-name="chart-bar" data-tags="chart-bar" d="M832 277.333h-576v405.333c0 11.782-9.551 21.333-21.333 21.333v0h-42.667c-11.782 0-21.333-9.551-21.333-21.333v0-469.333c0-11.782 9.551-21.333 21.333-21.333v0h640c11.782 0 21.333 9.551 21.333 21.333v0 42.667c0 11.782-9.551 21.333-21.333 21.333v0zM361.813 533.333h42.667c11.782 0 21.333-9.551 21.333-21.333v-128c0-11.782-9.551-21.333-21.333-21.333h-42.667c-11.782 0-21.333 9.551-21.333 21.333v128c0 11.782 9.551 21.333 21.333 21.333zM490.667 618.667h42.667c11.782 0 21.333-9.551 21.333-21.333v-213.333c0-11.782-9.551-21.333-21.333-21.333h-42.667c-11.782 0-21.333 9.551-21.333 21.333v213.333c0 11.782 9.551 21.333 21.333 21.333zM618.667 576h42.667c11.782 0 21.333-9.551 21.333-21.333v-170.667c0-11.782-9.551-21.333-21.333-21.333h-42.667c-11.782 0-21.333 9.551-21.333 21.333v170.667c0 11.782 9.551 21.333 21.333 21.333zM746.667 661.333h42.667c11.782 0 21.333-9.551 21.333-21.333v-256c0-11.782-9.551-21.333-21.333-21.333h-42.667c-11.782 0-21.333 9.551-21.333 21.333v256c0 11.782 9.551 21.333 21.333 21.333z" />
<glyph unicode="&#xe96e;" glyph-name="sitemap" data-tags="sitemap" d="M469.333 362.667h85.333c23.564 0 42.667-19.103 42.667-42.667v-85.333c0-23.564-19.103-42.667-42.667-42.667h-85.333c-23.564 0-42.667 19.103-42.667 42.667v85.333c0 23.564 19.103 42.667 42.667 42.667zM213.333 362.667h85.333c23.564 0 42.667-19.103 42.667-42.667v-85.333c0-23.564-19.103-42.667-42.667-42.667h-85.333c-23.564 0-42.667 19.103-42.667 42.667v85.333c0 23.564 19.103 42.667 42.667 42.667zM725.333 362.667h85.333c23.564 0 42.667-19.103 42.667-42.667v-85.333c0-23.564-19.103-42.667-42.667-42.667h-85.333c-23.564 0-42.667 19.103-42.667 42.667v85.333c0 23.564 19.103 42.667 42.667 42.667zM277.333 426.667c0 11.782 9.551 21.333 21.333 21.333v0h192v-42.667h42.667v42.667h192c11.782 0 21.333-9.551 21.333-21.333v0-21.333h42.667v21.333c0 35.346-28.654 64-64 64v0h-192v42.667h32c23.564 0 42.667 19.103 42.667 42.667v0 85.333c0 23.564-19.103 42.667-42.667 42.667v0h-106.667c-23.564 0-42.667-19.103-42.667-42.667v0-85.333c0-23.564 19.103-42.667 42.667-42.667v0h32v-42.667h-192c-35.346 0-64-28.654-64-64v0-21.333h42.667z" />
<glyph unicode="&#xe96f;" glyph-name="wifi" data-tags="wifi" d="M871.68 533.333c-87.068 102.859-215.499 168.373-359.289 170.662l-0.391 0.005c-144.181-2.293-272.612-67.808-359.101-169.965l-0.579-0.702c-3.324-3.744-5.355-8.703-5.355-14.135 0-6.68 3.070-12.642 7.876-16.554l0.039-0.031 32.853-27.307c3.627-2.942 8.299-4.723 13.387-4.723 6.389 0 12.123 2.809 16.032 7.259l0.021 0.024c71.42 84.402 176.587 138.33 294.408 140.793l0.419 0.007c118.056-2.128 223.21-55.602 294.369-138.97l0.458-0.55c3.93-4.474 9.664-7.283 16.053-7.283 5.088 0 9.76 1.781 13.427 4.754l-0.040-0.031 32.853 27.307c4.474 3.93 7.283 9.664 7.283 16.053 0 5.088-1.781 9.76-4.754 13.427l0.031-0.040zM597.333 277.333c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333zM512 533.333c-92.074-0.973-174.524-41.37-231.411-105.080l-0.269-0.307c-3.324-3.744-5.355-8.703-5.355-14.135 0-6.68 3.070-12.642 7.876-16.554l0.039-0.031 33.28-27.733c3.505-2.893 8.043-4.647 12.99-4.647 6.234 0 11.817 2.785 15.573 7.179l0.023 0.028c41.571 45.756 100.912 74.727 167.037 75.944l0.217 0.003c66.341-1.22 125.683-30.19 167.083-75.757l0.17-0.19c3.78-4.422 9.363-7.207 15.597-7.207 4.947 0 9.485 1.754 13.025 4.675l-0.035-0.028 33.28 27.733c4.845 3.942 7.915 9.905 7.915 16.585 0 5.432-2.031 10.391-5.374 14.157l0.019-0.022c-57.157 64.017-139.606 104.413-231.508 105.385l-0.172 0.001z" />
<glyph unicode="&#xe970;" glyph-name="sign-in" data-tags="sign-in" d="M673.707 468.053l-226.56 229.547c-4.432 3.468-10.085 5.561-16.227 5.561-14.315 0-25.974-11.37-26.439-25.572l-0.001-0.043v-144.213h-213.333c-11.782 0-21.333-9.551-21.333-21.333v0-128c0-11.782 9.551-21.333 21.333-21.333v0h213.333v-144.213c0.466-14.244 12.125-25.615 26.44-25.615 6.142 0 11.795 2.093 16.285 5.605l-0.058-0.044 226.56 229.973c5.504 4.871 8.956 11.952 8.956 19.84s-3.452 14.969-8.928 19.816l-0.028 0.024zM574.293 661.333h108.373c12.028-0.024 23.465-2.533 33.831-7.040l-0.551 0.213c5.601-2.387 10.367-4.957 14.866-7.901l-0.36 0.221c8.972-6.446 16.594-14.068 22.84-22.747l0.2-0.293c9.007-13.45 14.411-29.978 14.507-47.762v-256.025c-0.096-17.809-5.499-34.336-14.706-48.104l0.2 0.317c-6.446-8.972-14.068-16.594-22.747-22.84l-0.293-0.2c-4.139-2.723-8.906-5.293-13.895-7.445l-0.612-0.235c-9.815-4.294-21.252-6.803-33.271-6.827h-108.382c-10.744-0.233-19.393-8.882-19.626-19.605v-46.102c0.233-10.744 8.882-19.393 19.605-19.626h88.769c105.096 0 190.293 85.197 190.293 190.293v0 216.747c0 105.096-85.197 190.293-190.293 190.293v0h-88.747c-10.744-0.233-19.393-8.882-19.626-19.605v-46.102c0.233-10.744 8.882-19.393 19.605-19.626h0.022z" />
<glyph unicode="&#xe971;" glyph-name="sign-out" data-tags="sign-out" d="M844.373 468.053l-226.56 229.547c-4.432 3.468-10.085 5.561-16.227 5.561-14.315 0-25.974-11.37-26.439-25.572l-0.001-0.043v-144.213h-213.333c-11.782 0-21.333-9.551-21.333-21.333v0-128c0-11.782 9.551-21.333 21.333-21.333v0h213.333v-144.213c0.466-14.244 12.125-25.615 26.44-25.615 6.142 0 11.795 2.093 16.285 5.605l-0.058-0.044 226.56 229.973c5.504 4.871 8.956 11.952 8.956 19.84s-3.452 14.969-8.928 19.816l-0.028 0.024zM449.707 234.667h-108.373c-12.028 0.024-23.465 2.533-33.831 7.040l0.551-0.213c-5.601 2.387-10.367 4.957-14.866 7.901l0.36-0.221c-8.972 6.446-16.594 14.068-22.84 22.747l-0.2 0.293c-9.007 13.45-14.411 29.978-14.507 47.762v256.025c0.096 17.809 5.499 34.336 14.706 48.104l-0.2-0.317c6.446 8.972 14.068 16.594 22.747 22.84l0.293 0.2c4.139 2.723 8.906 5.293 13.895 7.445l0.612 0.235c9.815 4.294 21.252 6.803 33.271 6.827h108.382c10.744 0.233 19.393 8.882 19.626 19.605v46.102c-0.233 10.744-8.882 19.393-19.605 19.626h-88.769c-105.096 0-190.293-85.197-190.293-190.293v0-216.747c0-105.096 85.197-190.293 190.293-190.293v0h88.747c10.744 0.233 19.393 8.882 19.626 19.605v46.102c-0.233 10.744-8.882 19.393-19.605 19.626h-0.022z" />
<glyph unicode="&#xe972;" glyph-name="image" data-tags="image" d="M810.667 704h-597.333c-23.564 0-42.667-19.103-42.667-42.667v0-426.667c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 426.667c0 23.564-19.103 42.667-42.667 42.667v0zM341.333 618.667c47.128 0 85.333-38.205 85.333-85.333s-38.205-85.333-85.333-85.333c-47.128 0-85.333 38.205-85.333 85.333v0c0 47.128 38.205 85.333 85.333 85.333v0zM768 362.667v-85.333h-512v85.333l72.96 36.693c3.612 1.807 7.869 2.864 12.373 2.864s8.761-1.057 12.537-2.938l-0.163 0.074 72.96-36.693 201.813 161.28c3.314 2.404 7.462 3.845 11.947 3.845s8.633-1.442 12.006-3.887l-0.060 0.041 115.627-75.947z" />
<glyph unicode="&#xe973;" glyph-name="images" data-tags="images" d="M209.92 256v384h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-426.667c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 42.667h-554.667c-23.564 0-42.667 19.103-42.667 42.667v0zM860.587 746.667h-547.84c-21.495-0.241-38.827-17.722-38.827-39.251 0-0.001 0-0.002 0-0.002v0-390.827c0-0.001 0-0.001 0-0.002 0-21.529 17.332-39.010 38.804-39.251h547.863c21.495 0.241 38.827 17.722 38.827 39.251 0 0.001 0 0.002 0 0.002v0 390.827c0 0.001 0 0.001 0 0.002 0 21.529-17.332 39.010-38.804 39.251h-0.023zM430.080 668.587c0.127 0.001 0.277 0.001 0.427 0.001 43.358 0 78.507-35.149 78.507-78.507s-35.149-78.507-78.507-78.507c-43.358 0-78.506 35.148-78.507 78.505v0c0 0 0 0.001 0 0.001 0 43.208 34.906 78.263 78.057 78.505h0.023zM821.333 433.92v-78.507h-469.333v78.507l66.987 33.28c3.31 1.602 7.199 2.538 11.307 2.538s7.997-0.936 11.465-2.607l-0.158 0.069 66.987-33.28 184.747 147.627c3.023 2.172 6.8 3.474 10.88 3.474s7.857-1.302 10.936-3.513l-0.056 0.038 106.24-70.827z" />
<glyph unicode="&#xe974;" glyph-name="money-bill" data-tags="money-bill" d="M810.667 661.333h-597.333c-23.564 0-42.667-19.103-42.667-42.667v0-341.333c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 341.333c0 23.564-19.103 42.667-42.667 42.667v0zM213.333 277.333v85.333c47.128 0 85.333-38.205 85.333-85.333v0zM213.333 533.333v85.333h85.333c0-47.128-38.205-85.333-85.333-85.333v0zM512 341.333c-48.62 6.348-85.776 47.511-85.776 97.352 0 3.28 0.161 6.522 0.475 9.719l-0.032-0.405c-0.282 2.792-0.443 6.035-0.443 9.314 0 49.841 37.157 91.004 85.281 97.299l0.495 0.053c48.62-6.348 85.776-47.511 85.776-97.352 0-3.28-0.161-6.522-0.475-9.719l0.032 0.405c0.282-2.792 0.443-6.035 0.443-9.314 0-49.841-37.157-91.004-85.281-97.299l-0.495-0.053zM810.667 277.333h-85.333c0 47.128 38.205 85.333 85.333 85.333v0zM810.667 533.333c-47.128 0-85.333 38.205-85.333 85.333v0h85.333z" />
<glyph unicode="&#xe975;" glyph-name="eject" data-tags="eject" d="M817.493 373.333c19.812 0.284 35.763 16.411 35.763 36.263 0 9.784-3.875 18.664-10.173 25.187l0.010-0.011-305.92 311.893c-6.421 6.488-15.328 10.505-25.173 10.505s-18.752-4.017-25.17-10.502l-0.003-0.003-305.92-311.893c-6.288-6.513-10.163-15.392-10.163-25.177 0-19.852 15.951-35.979 35.736-36.263h0.027zM213.333 309.333h597.333c23.564 0 42.667-19.103 42.667-42.667v-85.333c0-23.564-19.103-42.667-42.667-42.667h-597.333c-23.564 0-42.667 19.103-42.667 42.667v85.333c0 23.564 19.103 42.667 42.667 42.667z" />
<glyph unicode="&#xe976;" glyph-name="volume-down" data-tags="volume-down" d="M587.093 699.733l-133.973-123.733h-138.24c-23.564 0-42.667-19.103-42.667-42.667v0-170.667c0-23.564 19.103-42.667 42.667-42.667v0h138.24l133.973-123.733c2.8-2.577 6.554-4.157 10.676-4.157 8.53 0 15.48 6.766 15.777 15.223l0.001 0.027v481.28c-0.297 8.485-7.247 15.25-15.778 15.25-4.122 0-7.875-1.58-10.687-4.167l0.011 0.010zM687.787 544.853l-30.72-37.973c18.715-13.117 30.8-34.587 30.8-58.88s-12.085-45.763-30.57-58.727l-0.23-0.153 30.72-37.973c2.659-2.878 6.453-4.675 10.667-4.675s8.007 1.796 10.658 4.665l0.009 0.010c26.227 24.589 42.567 59.453 42.567 98.133s-16.34 73.544-42.494 98.065l-0.073 0.068c-2.531 2.204-5.861 3.548-9.505 3.548-4.863 0-9.166-2.392-11.798-6.064l-0.030-0.044z" />
<glyph unicode="&#xe977;" glyph-name="volume-up" data-tags="volume-up" d="M449.28 699.733l-133.973-123.733h-138.667c-23.564 0-42.667-19.103-42.667-42.667v0-170.667c0-23.564 19.103-42.667 42.667-42.667v0h138.667l133.973-123.733c2.759-2.665 6.521-4.308 10.667-4.308 8.483 0 15.36 6.877 15.36 15.36 0 0.014 0 0.029 0 0.043v-0.002 481.28c0 0.012 0 0.027 0 0.041 0 8.483-6.877 15.36-15.36 15.36-4.146 0-7.908-1.642-10.671-4.312l0.004 0.004zM549.547 544.853l-30.293-37.973c18.041-13.687 29.817-34.821 30.716-58.739l0.004-0.141c-0.903-24.059-12.679-45.193-30.529-58.741l-0.191-0.139 30.293-37.973c2.659-2.878 6.453-4.675 10.667-4.675s8.007 1.796 10.658 4.665l0.009 0.010c26.576 24.418 43.171 59.338 43.171 98.133s-16.596 73.715-43.075 98.046l-0.096 0.087c-2.531 2.204-5.861 3.548-9.505 3.548-4.863 0-9.166-2.392-11.798-6.064l-0.030-0.044zM677.973 610.133c-3.067 2.97-7.253 4.801-11.867 4.801-5.611 0-10.59-2.708-13.701-6.889l-0.032-0.045-17.92-22.187c-2.921-3.118-4.715-7.323-4.715-11.947s1.794-8.829 4.724-11.956l-0.009 0.010c31.934-28.016 52.384-68.451 53.754-113.684l0.006-0.236c-0.911-45.233-20.76-85.657-51.916-113.798l-0.138-0.122c-2.921-3.118-4.715-7.323-4.715-11.947s1.794-8.829 4.724-11.956l-0.009 0.010 17.92-22.187c3.143-4.226 8.122-6.934 13.733-6.934 4.614 0 8.8 1.831 11.871 4.805l-0.005-0.004c45.832 39.363 74.683 97.379 74.683 162.133s-28.851 122.771-74.399 161.895l-0.284 0.238zM782.507 674.133c-2.713 2.767-6.489 4.482-10.667 4.482s-7.954-1.715-10.664-4.48l-0.002-0.002-21.76-26.88c-2.59-2.555-4.195-6.103-4.195-10.027s1.605-7.472 4.193-10.025l0.002-0.002c51.099-42.853 83.795-106.206 85.329-177.234l0.004-0.26c-1.538-71.287-34.234-134.64-84.965-177.193l-0.368-0.3c-2.59-2.555-4.195-6.103-4.195-10.027s1.605-7.472 4.193-10.025l0.002-0.002 21.76-26.88c2.713-2.767 6.489-4.482 10.667-4.482s7.954 1.715 10.664 4.48l0.002 0.002c64.241 53.739 105.408 133.218 107.513 222.365l0.007 0.355c-1.057 90.773-42.447 171.671-107.052 225.752l-0.468 0.381z" />
<glyph unicode="&#xe978;" glyph-name="volume-off" data-tags="volume-off" d="M656.64 699.733l-133.973-123.733h-138.667c-23.564 0-42.667-19.103-42.667-42.667v0-170.667c0-23.564 19.103-42.667 42.667-42.667v0h138.667l133.973-123.733c2.759-2.665 6.521-4.308 10.667-4.308 8.483 0 15.36 6.877 15.36 15.36 0 0.014 0 0.029 0 0.043v-0.002 481.28c0 0.012 0 0.027 0 0.041 0 8.483-6.877 15.36-15.36 15.36-4.146 0-7.908-1.642-10.671-4.312l0.004 0.004z" />
<glyph unicode="&#xe979;" glyph-name="envelope" data-tags="envelope" d="M485.547 395.093c6.687-6.948 16.066-11.265 26.453-11.265s19.767 4.316 26.442 11.253l0.011 0.012 306.347 277.333c4.893 5.591 7.877 12.96 7.877 21.026 0 17.673-14.327 32-32 32-0.971 0-1.931-0.043-2.879-0.128l0.123 0.009h-611.84c-0.81 0.073-1.753 0.115-2.705 0.115-17.673 0-32-14.327-32-32 0-8.264 3.133-15.797 8.276-21.475l-0.024 0.027zM833.28 579.84l-313.173-274.347c-2.189-1.802-5.020-2.894-8.107-2.894s-5.918 1.093-8.129 2.912l0.022-0.018-313.173 274.347c-2.125 1.975-4.983 3.187-8.123 3.187-6.598 0-11.947-5.349-11.947-11.947 0-0.22 0.006-0.439 0.018-0.657l-0.001 0.030v-387.413c0-6.834 5.54-12.373 12.373-12.373h657.92c6.834 0 12.373 5.54 12.373 12.373v0 387.413c0.010 0.187 0.016 0.406 0.016 0.627 0 6.598-5.349 11.947-11.947 11.947-3.141 0-5.998-1.212-8.131-3.193l0.007 0.007z" />
<glyph unicode="&#xe97a;" glyph-name="share-alt" data-tags="share-alt" d="M725.333 362.667c-0.056 0-0.122 0-0.188 0-32.752 0-62.631-12.301-85.269-32.536l0.124 0.109v2.987l-196.267 114.773 198.827 114.773v2.987c21.935-19.618 50.873-31.81 82.647-32.425l0.126-0.002c70.692 0 128 57.308 128 128s-57.308 128-128 128c-70.692 0-128-57.308-128-128v0c0.191-10.839 1.58-21.258 4.040-31.257l-0.2 0.963-195.413-113.067c-23.198 35.152-62.518 58.027-107.181 58.027-70.692 0-128-57.308-128-128s57.308-128 128-128c44.663 0 83.983 22.875 106.884 57.548l0.297 0.479 195.84-113.067c-2.603-9.054-4.154-19.469-4.266-30.229l-0.001-0.064c0-70.692 57.308-128 128-128s128 57.308 128 128c0 70.692-57.308 128-128 128v0z" />
<glyph unicode="&#xe97b;" glyph-name="paperclip" data-tags="paperclip" d="M395.947 106.667c-0.453-0.003-0.988-0.005-1.523-0.005-60.676 0-115.853 23.542-156.897 61.989l0.127-0.118c-41.205 38.087-66.919 92.414-66.919 152.747s25.714 114.66 66.78 152.62l0.139 0.127 286.72 270.507c30.132 27.277 70.29 43.97 114.347 43.97s84.214-16.694 114.492-44.1l-0.146 0.13c30.006-27.621 48.74-67.090 48.74-110.933s-18.734-83.312-48.634-110.837l-0.106-0.096-287.147-270.933c-18.439-16.877-43.105-27.217-70.187-27.217s-51.747 10.34-70.266 27.288l0.079-0.071c-18.342 17.116-29.895 41.304-30.292 68.194l-0.001 0.072c0 0.073 0 0.16 0 0.246 0 27.227 11.645 51.734 30.226 68.813l0.067 0.061 264.96 250.027c6.875 6.889 16.38 11.151 26.88 11.151s20.005-4.262 26.879-11.15l0.001-0.001c6.788-6.921 10.977-16.411 10.977-26.88s-4.189-19.959-10.983-26.886l0.006 0.006-266.667-250.027c-3.906-3.457-6.356-8.482-6.356-14.080s2.45-10.623 6.336-14.063l0.020-0.017c4.763-4.364 11.136-7.038 18.133-7.038s13.371 2.674 18.153 7.056l-0.020-0.018 287.147 268.8c14.992 13.914 24.343 33.726 24.343 55.722 0 0.66-0.008 1.319-0.025 1.975l0.002-0.097c-0.226 22.084-9.687 41.915-24.698 55.848l-0.049 0.045c-16.306 15.119-38.217 24.394-62.293 24.394s-45.987-9.276-62.352-24.448l0.059 0.054-286.293-270.933c-26.497-24.13-43.061-58.771-43.061-97.28s16.564-73.15 42.956-97.186l0.105-0.094c27.916-25.902 65.435-41.794 106.667-41.794s78.751 15.893 106.767 41.886l-0.1-0.092 286.72 270.507c6.965 7.573 16.921 12.302 27.981 12.302 20.972 0 37.973-17.001 37.973-37.973 0-11.805-5.387-22.352-13.836-29.316l-0.065-0.052-287.147-270.933c-41.038-38.335-96.324-61.872-157.107-61.872-0.567 0-1.134 0.002-1.7 0.006h0.087z" />
<glyph unicode="&#xe97c;" glyph-name="bell" data-tags="bell" d="M828.587 388.693l-23.893 16.64c-14.567 10.727-23.999 27.696-24.319 46.883l-0.001 0.051v102.4c-8.422 131.471-117.116 234.915-249.971 234.915-3.921 0-7.821-0.090-11.699-0.268l0.55 0.020h-14.507c-3.568 0.182-7.747 0.286-11.95 0.286-132.697 0-241.209-103.551-249.136-234.255l-0.034-0.698v-100.693c0.011-0.415 0.017-0.905 0.017-1.395 0-19.409-9.529-36.593-24.164-47.127l-0.172-0.118-23.893-18.347c-14.944-10.55-24.584-27.749-24.584-47.198 0-18.138 8.383-34.317 21.486-44.875l0.111-0.086c13.441-10.947 30.776-17.579 49.66-17.579 1.292 0 2.577 0.031 3.854 0.092l-0.18-0.007h532.48c0.51-0.012 1.111-0.019 1.713-0.019 19.783 0 37.865 7.277 51.717 19.301l-0.097-0.083c13.214 10.644 21.597 26.824 21.597 44.962 0 19.45-9.64 36.648-24.403 47.077l-0.181 0.121zM512 106.667c70.692 0 128 57.308 128 128v0h-256c0-70.692 57.308-128 128-128v0z" />
<glyph unicode="&#xe97d;" glyph-name="briefcase" data-tags="briefcase" d="M810.667 571.307h-128v50.347c-1.655 45.826-39.203 82.347-85.281 82.347-0.018 0-0.037 0-0.055 0h-170.664c-0.016 0-0.034 0-0.052 0-46.078 0-83.626-36.521-85.277-82.196l-0.004-0.151v-50.347h-128c-23.564 0-42.667-19.103-42.667-42.667v0-80.64h682.667v82.347c-0.942 22.818-19.669 40.96-42.633 40.96-0.012 0-0.024 0-0.036 0h0.002zM597.333 571.307h-170.667v50.347h170.667zM597.333 362.667c0-23.564-19.103-42.667-42.667-42.667v0h-85.333c-23.564 0-42.667 19.103-42.667 42.667v0 42.667h-256v-213.333c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 213.333h-256z" />
<glyph unicode="&#xe97e;" glyph-name="comments" data-tags="comments" d="M843.093 320c6.506 13.897 10.303 30.176 10.303 47.342 0 23.902-7.361 46.085-19.94 64.405l0.251-0.387c-22.583 34.571-55.687 60.634-94.713 73.861l-1.287 0.379c-10.051 3.736-22.616 7.408-35.483 10.28l-2.063 0.387c-4.457-28.438-16.625-53.46-34.273-73.549l0.14 0.163c-35.337-38.663-82.305-66.16-135.344-76.952l-1.616-0.275c-23.103-5.52-49.629-8.685-76.894-8.685-12.591 0-25.024 0.675-37.265 1.991l1.519-0.132c2.313-27.899 13.558-52.805 30.83-72.233l-0.11 0.126c30.968-34.070 72.265-58.256 118.922-67.606l1.398-0.234c20.216-4.795 43.427-7.544 67.281-7.544 10.866 0 21.599 0.571 32.171 1.683l-1.318-0.112c3.411-0.252 6.49-1.496 8.998-3.442l-0.038 0.028c33.303-28.98 74.244-50.053 119.393-59.836l1.781-0.324 12.373-2.133c0.651-0.131 1.4-0.206 2.166-0.206 4.41 0 8.241 2.478 10.177 6.117l0.030 0.062c1.366 1.823 2.187 4.122 2.187 6.613s-0.821 4.791-2.208 6.642l0.021-0.029c-3.84 4.693-8.107 9.387-12.373 13.653-16.687 17.021-29.032 38.359-35.202 62.184l-0.212 0.963c8.533 5.973 16.64 11.093 24.32 17.067 19.832 15.668 35.509 35.724 45.693 58.752l0.387 0.982zM634.88 474.88c21.667 24.124 34.917 56.191 34.917 91.352 0 32.37-11.23 62.118-30.006 85.559l0.21-0.271c-28.137 35.836-66.272 62.658-110.194 76.371l-1.593 0.429c-32.422 11.621-69.828 18.338-108.803 18.338-42.485 0-83.106-7.981-120.445-22.526l2.261 0.775c-46.247-15.661-84.209-45.617-109.587-84.528l-0.493-0.806c-14.231-20.338-22.74-45.591-22.74-72.83 0-20.055 4.612-39.032 12.833-55.929l-0.334 0.76c13.38-25.939 32.305-47.323 55.321-63.2l0.572-0.373c8.96-6.827 18.347-12.8 27.733-19.627-7.921-28.343-22.762-52.576-42.613-71.629l-0.054-0.051-13.653-15.787c-1.598-2.113-2.56-4.784-2.56-7.68s0.962-5.567 2.583-7.712l-0.023 0.032c2.087-4.055 6.244-6.78 11.037-6.78 1.081 0 2.13 0.139 3.129 0.399l-0.086-0.019 14.507 0.853c53.373 10.954 100.088 34.3 138.697 66.937l-0.457-0.377c2.381 2.169 5.484 3.581 8.91 3.837l0.050 0.003c10.499-1.097 22.683-1.723 35.013-1.723 27.513 0 54.299 3.115 80.024 9.012l-2.397-0.462c55.177 10.949 102.618 38.633 138.063 77.457l0.177 0.196z" />
<glyph unicode="&#xe97f;" glyph-name="comment" data-tags="comment" d="M298.667 302.080c-12.8 9.387-26.027 17.493-37.973 27.307-31.923 23.957-57.185 55.102-73.638 91.115l-0.602 1.472c-10.174 22.123-16.107 48-16.107 75.263 0 37.573 11.268 72.514 30.61 101.629l-0.423-0.678c35.016 55.070 87.057 96.615 148.616 117.595l1.998 0.591c47.983 19.181 103.599 30.305 161.812 30.305 53.017 0 103.879-9.227 151.068-26.163l-3.12 0.978c62.363-20.009 114.476-57.367 152.211-106.369l0.536-0.724c24.804-32.171 39.755-73.049 39.755-117.419 0-49.549-18.645-94.744-49.302-128.95l0.161 0.182c-47.978-53.894-112.27-92.329-185.087-107.558l-2.219-0.388c-31.689-7.517-68.073-11.826-105.463-11.826-16.954 0-33.701 0.886-50.197 2.614l2.059-0.175c-5.282-0.181-10.048-2.255-13.67-5.562l0.017 0.015c-52.060-44.688-115.92-77.133-186.246-92.094l-21.967-3.906c-1.252-0.338-2.69-0.532-4.174-0.532-6.592 0-12.289 3.833-14.983 9.393l-0.043 0.099c-1.509 2.57-2.4 5.66-2.4 8.958 0 4.803 1.89 9.165 4.966 12.382l-0.006-0.007c6.107 8.009 12.256 15.104 18.812 21.8l-0.039-0.040c26.046 27.266 45.249 61.287 54.717 99.165l0.323 1.528z" />
<glyph unicode="&#xe980;" glyph-name="shopping-cart" data-tags="shopping-cart" d="M829.867 648.533h-534.187l-12.373 63.147c-1.761 9.401-8.736 16.803-17.751 19.162l-0.169 0.038-66.133 15.787h-4.693c-13.136-0.664-23.535-11.476-23.535-24.717 0-11.416 7.73-21.027 18.242-23.883l0.173-0.040 51.2-11.947c27.307-136.96 57.173-273.92 85.333-410.88 2.206-10.762 11.416-18.805 22.572-19.199l0.041-0.001h52.053c-10.32-11.322-16.64-26.446-16.64-43.047 0-35.346 28.654-64 64-64s64 28.654 64 64c0 16.6-6.32 31.725-16.686 43.098l0.046-0.051h118.613c-10.32-11.322-16.64-26.446-16.64-43.047 0-35.346 28.654-64 64-64s64 28.654 64 64c0 16.6-6.32 31.725-16.686 43.098l0.046-0.051h49.067c12.201 1.658 21.504 12.009 21.504 24.533s-9.303 22.875-21.376 24.519l-0.128 0.014h-389.973l-10.24 49.067h421.12c11.198 0.395 20.408 8.438 22.587 19.046l0.026 0.154 52.053 245.333c0.342 1.542 0.538 3.314 0.538 5.131 0 13.406-10.66 24.323-23.967 24.735l-0.038 0.001z" />
<glyph unicode="&#xe981;" glyph-name="key" data-tags="key" d="M193.707 120.747l125.44-14.080c0.304-0.033 0.656-0.052 1.013-0.052 2.577 0 4.922 0.993 6.673 2.618l28.154 28.154c1.661 1.692 2.686 4.013 2.686 6.574 0 0.541-0.046 1.072-0.134 1.589l0.008-0.055-5.973 64.853 64.853-6.4c0.156-0.008 0.338-0.012 0.521-0.012 2.937 0 5.607 1.141 7.592 3.004l-0.006-0.005 27.733 27.733c1.873 1.982 3.025 4.663 3.025 7.613 0 0.324-0.014 0.644-0.041 0.961l0.003-0.041-5.973 64.853 64.853-5.973c0.418-0.063 0.9-0.099 1.39-0.099 2.601 0 4.966 1.012 6.722 2.664l42.662 42.662c19.203-5.87 41.275-9.25 64.137-9.25 125.361 0 226.987 101.625 226.987 226.987s-101.625 226.987-226.987 226.987c-125.361 0-226.987-101.625-226.987-226.987 0-22.862 3.38-44.934 9.667-65.744l-0.417 1.607-238.080-238.080c-1.619-1.745-2.612-4.090-2.612-6.667 0-0.357 0.019-0.709 0.056-1.056l-0.004 0.043 14.080-125.44c0.412-4.774 4.186-8.548 8.923-8.957l0.037-0.003zM556.8 490.667c-17.673 17.935-28.586 42.573-28.586 69.76s10.913 51.825 28.598 69.772l-0.012-0.012c17.853 17.853 42.517 28.896 69.76 28.896 54.486 0 98.656-44.17 98.656-98.656 0-27.243-11.042-51.907-28.896-69.76v0c-17.98-17.573-42.604-28.415-69.76-28.415s-51.78 10.842-69.779 28.433l0.019-0.019z" />
<glyph unicode="&#xe982;" glyph-name="mobile" data-tags="mobile" d="M661.333 789.333h-298.667c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h298.667c23.564 0 42.667 19.103 42.667 42.667v0 597.333c0 23.564-19.103 42.667-42.667 42.667v0zM512 192c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0z" />
<glyph unicode="&#xe983;" glyph-name="tablet" data-tags="tablet" d="M768 789.333h-512c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h512c23.564 0 42.667 19.103 42.667 42.667v0 597.333c0 23.564-19.103 42.667-42.667 42.667v0zM512 192c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0z" />
<glyph unicode="&#xe984;" glyph-name="heart" data-tags="heart" d="M210.347 405.333c-220.587 218.88 63.573 512 287.147 313.6 3.866-3.355 8.947-5.4 14.507-5.4s10.641 2.045 14.534 5.423l-0.027-0.023c223.573 198.4 507.733-94.72 287.147-313.6l-286.293-286.293c-3.935-3.922-9.364-6.347-15.36-6.347s-11.425 2.425-15.361 6.347l0.001-0.001z" />
<glyph unicode="&#xe985;" glyph-name="android" data-tags="android" d="M307.2 526.080v-176.213c0-23.564-19.103-42.667-42.667-42.667v0c-0.156-0.002-0.34-0.003-0.524-0.003-24.164 0-43.943 18.773-45.548 42.53l-0.008 0.14v176.213c1.613 23.897 21.392 42.67 45.556 42.67 0.184 0 0.368-0.001 0.552-0.003h-0.028c23.564 0 42.667-19.103 42.667-42.667v0zM323.413 287.147c0-24.978 20.249-45.227 45.227-45.227v0h30.293v-92.587c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 92.587h56.32v-92.587c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 92.587h30.72c0.001 0 0.001 0 0.002 0 24.742 0 44.8 20.058 44.8 44.8 0 0.15-0.001 0.3-0.002 0.45v-0.023 273.067h-378.027zM701.44 576h-379.733c1.396 66.221 40.299 123.032 96.264 150.169l1.016 0.445-29.44 53.76c-0.765 0.994-1.226 2.255-1.226 3.625 0 3.299 2.674 5.973 5.973 5.973 2.45 0 4.556-1.475 5.477-3.587l0.015-0.039 29.867-54.187c24.327 10.811 52.709 17.106 82.56 17.106s58.233-6.295 83.889-17.63l-1.329 0.524 29.44 54.187c0.936 2.15 3.042 3.625 5.492 3.625 3.299 0 5.973-2.674 5.973-5.973 0-1.37-0.461-2.631-1.236-3.639l0.010 0.014-29.44-53.76c56.635-27.803 95.199-84.563 96.424-150.452l0.002-0.161zM441.6 661.333c-0.828 7.801-7.082 13.909-14.879 14.503l-0.055 0.003c-7.756-1.306-13.592-7.971-13.592-16s5.836-14.694 13.497-15.987l0.095-0.013c8.411 0.657 14.988 7.644 14.988 16.167 0 0.467-0.020 0.929-0.058 1.386l0.004-0.060zM614.4 661.333c-0.879 8.202-7.763 14.534-16.126 14.534-0.331 0-0.659-0.010-0.985-0.029l0.045 0.002c-7.756-1.306-13.592-7.971-13.592-16s5.836-14.694 13.497-15.987l0.095-0.013c0.271-0.016 0.587-0.025 0.906-0.025 8.954 0 16.213 7.259 16.213 16.213 0 0.459-0.019 0.914-0.057 1.364l0.004-0.059zM758.613 570.027c-23.564 0-42.667-19.103-42.667-42.667v0-177.493c0-23.564 19.103-42.667 42.667-42.667v0c0.156-0.002 0.34-0.003 0.524-0.003 24.164 0 43.943 18.773 45.548 42.53l0.008 0.14v176.213c-1.829 23.703-21.512 42.243-45.526 42.243-0.195 0-0.389-0.001-0.584-0.004h0.030z" />
<glyph unicode="&#xe986;" glyph-name="google" data-tags="google" d="M847.787 439.893c0.274-4.931 0.43-10.701 0.43-16.508 0-175.082-141.932-317.013-317.013-317.013-4.803 0-9.581 0.107-14.332 0.318l0.675-0.024c-188.513 0-341.333 152.82-341.333 341.333s152.82 341.333 341.333 341.333v0c1.131 0.014 2.466 0.022 3.804 0.022 87.118 0 166.305-33.953 225.052-89.347l-0.163 0.152-92.587-89.6c-121.6 117.333-347.733 29.44-347.733-162.56-0.007-0.634-0.011-1.383-0.011-2.133 0-117.821 95.513-213.333 213.333-213.333 0.004 0 0.007 0 0.011 0v0c3.91-0.295 8.47-0.464 13.068-0.464 88.823 0 162.971 62.827 180.429 146.466l0.209 1.197h-195.413v117.333h325.12c3.257-17.027 5.12-36.612 5.12-56.632 0-0.19 0-0.38-0.001-0.571v0.029z" />
<glyph unicode="&#xe987;" glyph-name="apple" data-tags="apple" d="M704.853 428.373c-0.017 0.819-0.027 1.784-0.027 2.752 0 54.148 30.474 101.179 75.207 124.877l0.767 0.37c-29.155 40.19-75.331 66.495-127.728 68.259l-0.272 0.007c-54.187 4.267-113.067-31.573-134.827-31.573s-75.52 29.867-116.48 29.867c-85.333 0-175.36-67.84-175.36-203.093 0.448-44.466 8.383-86.938 22.602-126.41l-0.842 2.677c18.773-54.613 89.173-191.573 162.56-189.44 38.4 0 65.707 27.307 115.627 27.307s73.387-27.307 116.48-27.307c73.813 0 137.813 125.867 156.16 181.76-55.538 23.15-93.867 77-93.867 139.801 0 0.051 0 0.103 0 0.154v-0.008zM619.52 678.827c22.477 25.256 36.209 58.726 36.209 95.402 0 5.32-0.289 10.573-0.852 15.744l0.057-0.64c-41.308-4.654-77.328-24.252-103.113-53.173l-0.141-0.16c-24.743-26.031-39.963-61.317-39.963-100.158 0-3.191 0.103-6.357 0.305-9.497l-0.022 0.428c1.071-0.032 2.331-0.050 3.595-0.050 42.128 0 79.503 20.352 102.828 51.761l0.244 0.343z" />
<glyph unicode="&#xe988;" glyph-name="microsoft" data-tags="microsoft" d="M170.667 789.333h326.827v-326.827h-326.827zM526.507 789.333h326.827v-326.827h-326.827zM170.667 433.493h326.827v-326.827h-326.827zM526.507 433.493h326.827v-326.827h-326.827z" />
<glyph unicode="&#xe989;" glyph-name="exclamation-circle" data-tags="exclamation-circle" d="M512 789.333c-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c188.513 0 341.333 152.82 341.333 341.333v0c0 188.513-152.82 341.333-341.333 341.333v0zM512 256c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM564.053 437.333c-0.234-11.687-9.647-21.099-21.311-21.333h-61.889c-11.687 0.234-21.099 9.647-21.333 21.311v0.022l-11.52 181.333c0 11.782 9.551 21.333 21.333 21.333v0h85.333c11.782 0 21.333-9.551 21.333-21.333v0z" />
<glyph unicode="&#xe98a;" glyph-name="user-edit" data-tags="user-edit" d="M581.12 645.547c0-97.084-78.702-175.787-175.787-175.787s-175.787 78.702-175.787 175.787c0 97.084 78.702 175.787 175.787 175.787s175.787-78.702 175.787-175.787zM864.427 362.667l-42.667 42.667c-4.886 6.227-12.412 10.19-20.864 10.19-6.347 0-12.172-2.235-16.73-5.961l0.047 0.038-17.067-16.64 85.333-85.333 16.64 17.067c3.72 4.522 5.975 10.37 5.975 16.746 0 8.663-4.164 16.353-10.6 21.178l-0.069 0.049zM541.867 166.827l-8.533-92.16 92.16 8.533 209.92 209.493-85.333 85.333zM615.253 100.693v0l-30.72-2.987 2.56 30.72-30.72-2.56 2.987 30.72 16.64 16.64 55.893-55.893zM563.627 493.653c-39.875-41.867-96.044-67.904-158.293-67.904s-118.418 26.037-158.209 67.815l-0.085 0.089c-58.102-29.271-97.342-88.304-97.706-156.538v-174.556c0.241-48.445 39.448-87.652 87.87-87.893h258.156c-2.955 4.165-4.724 9.352-4.724 14.953 0 0.443 0.011 0.884 0.033 1.322l-0.002-0.062 9.387 101.12c0.516 5.985 3.020 11.304 6.839 15.374l-0.013-0.014 153.173 151.893c-8.342 59.179-44.91 108.31-95.418 133.936l-1.009 0.464z" />
<glyph unicode="&#xe98b;" glyph-name="chart-line" data-tags="chart-line" d="M832 277.333h-576v405.333c0 11.782-9.551 21.333-21.333 21.333v0h-42.667c-11.782 0-21.333-9.551-21.333-21.333v0-469.333c0-11.782 9.551-21.333 21.333-21.333v0h640c11.782 0 21.333 9.551 21.333 21.333v0 42.667c0 11.782-9.551 21.333-21.333 21.333v0zM814.080 682.667h-186.027c-0.131 0.004-0.285 0.006-0.44 0.006-9.661 0-17.493-7.832-17.493-17.493 0-4.835 1.962-9.212 5.133-12.379v0l64.427-64-89.173-89.173-93.44 93.44c-3.302 3.218-7.819 5.203-12.8 5.203s-9.498-1.985-12.804-5.207l0.004 0.004-146.347-145.067c-3.144-3.097-5.091-7.401-5.091-12.16s1.948-9.063 5.089-12.158l0.002-0.002 32.853-33.28c3.302-3.218 7.819-5.203 12.8-5.203s9.498 1.985 12.804 5.207l-0.004-0.004 100.693 100.267 93.44-93.44c3.255-3.32 7.787-5.379 12.8-5.379s9.545 2.058 12.797 5.376l134.403 134.403 63.573-63.573c3.255-3.321 7.788-5.379 12.801-5.379 9.838 0 17.825 7.928 17.919 17.744v184.756c0 0.002 0 0.003 0 0.005 0 9.661-7.832 17.493-17.493 17.493-0.15 0-0.3-0.002-0.449-0.006h0.022z" />
<glyph unicode="&#xe98c;" glyph-name="check-square" data-tags="check-square" d="M810.667 789.333h-597.333c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 597.333c0 23.564-19.103 42.667-42.667 42.667v0zM753.067 553.813l-265.387-265.387c-7.789-8.188-18.767-13.28-30.933-13.28s-23.144 5.092-30.917 13.262l-0.017 0.018-154.453 155.307c-2.615 2.623-4.231 6.243-4.231 10.24s1.617 7.617 4.232 10.24v0l42.667 42.667c2.623 2.615 6.243 4.231 10.24 4.231s7.617-1.617 10.24-4.232v0l123.733-123.733 213.333 213.333 20.48 20.053c2.573 2.722 6.209 4.416 10.24 4.416s7.667-1.694 10.234-4.41l0.006-0.007 42.667-42.667c1.914-2.435 3.069-5.544 3.069-8.923 0-4.46-2.013-8.451-5.18-11.112l-0.022-0.018z" />
<glyph unicode="&#xe98d;" glyph-name="file-pdf" data-tags="file-pdf" d="M640 618.667h106.667c23.467 0 21.333 19.2 21.333 42.667v7.253l-120.747 120.747h-7.253c-23.467 0-42.667 0-42.667-21.333v-106.667c0-23.564 19.103-42.667 42.667-42.667v0zM496.213 384.853c-12.139-33.696-24.796-61.846-39.278-88.871l1.732 3.538c24.207 11.362 52.661 21.32 82.237 28.389l3.096 0.624c-19.638 15.136-35.682 33.904-47.331 55.401l-0.456 0.919zM495.787 510.293c-1.593-7.577-2.505-16.282-2.505-25.201 0-13.231 2.008-25.993 5.735-37.999l-0.242 0.907c7.253 13.227 8.533 62.293-2.987 62.293zM602.88 320c49.067-20.907 56.747-11.947 56.747-11.947s-3.413 16.64-56.747 11.947zM371.2 218.453s17.493 7.253 46.080 53.76c-18.43-14.886-33.794-32.698-45.589-52.852l-0.491-0.908zM597.333 576c-23.564 0-42.667 19.103-42.667 42.667v0 170.667h-256c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h426.667c23.564 0 42.667 19.103 42.667 42.667v0 426.667zM647.68 277.333c-31.706 2.371-60.778 11.736-86.298 26.544l0.965-0.517c-41.061-9.041-76.156-19.758-110.052-32.881l5.092 1.734c-33.707-56.32-57.6-80.213-81.493-80.213-11.296 0.644-21.326 5.589-28.57 13.209l-0.017 0.018c-25.6 29.44 36.693 72.107 72.533 90.88v0c15.787 28.16 38.827 77.653 54.187 114.347-7.959 21.986-12.561 47.362-12.561 73.812 0 10.23 0.688 20.3 2.022 30.165l-0.127-1.15c5.236 11.927 16.944 20.106 30.561 20.106 16.894 0 30.848-12.588 32.994-28.897l0.018-0.169c1.038-7.499 1.63-16.164 1.63-24.967 0-21.591-3.564-42.349-10.135-61.719l0.398 1.353c10.173-30.418 30.181-55.264 56.18-71.353l0.567-0.327c25.6 3.413 79.36 8.533 98.133-9.813 7.062-6.354 11.483-15.524 11.483-25.726 0-19.087-15.473-34.56-34.56-34.56-1.038 0-2.066 0.046-3.081 0.135l0.131-0.009z" />
<glyph unicode="&#xe98e;" glyph-name="file-excel" data-tags="file-excel" d="M640 618.667h106.667c23.467 0 21.333 19.2 21.333 42.667v7.253l-120.747 120.747h-7.253c-23.467 0-42.667 0-42.667-21.333v-106.667c0-23.564 19.103-42.667 42.667-42.667v0zM597.333 576c-23.564 0-42.667 19.103-42.667 42.667v0 170.667h-256c-23.564 0-42.667-19.103-42.667-42.667v0-597.333c0-23.564 19.103-42.667 42.667-42.667v0h426.667c23.564 0 42.667 19.103 42.667 42.667v0 426.667zM620.8 213.333h-46.080c-7.229 0.065-13.538 3.946-17.016 9.723l-0.050 0.090c-36.267 64.853-21.76 42.667-45.653 89.6-15.669-35.737-30.929-65.148-47.798-93.491l2.145 3.891c-3.334-5.868-9.527-9.772-16.634-9.813h-46.513c-0.114-0.003-0.249-0.004-0.384-0.004-10.368 0-18.773 8.405-18.773 18.773 0 3.458 0.935 6.697 2.565 9.479l-0.048-0.089 74.24 121.173-74.24 121.173c-1.583 2.694-2.517 5.933-2.517 9.391 0 10.368 8.405 18.773 18.773 18.773 0.135 0 0.27-0.001 0.404-0.004h46.487c7.113-0.042 13.306-3.945 16.59-9.719l0.050-0.095c14.269-23.986 29.521-53.387 43.233-83.635l2.42-5.965c15.741 35.637 31.139 65.043 48.174 93.352l-2.094-3.752c3.334 5.868 9.527 9.772 16.634 9.813h46.086c0.114 0.003 0.249 0.004 0.384 0.004 10.368 0 18.773-8.405 18.773-18.773 0-3.458-0.935-6.697-2.565-9.479l0.048 0.089c-25.6-42.667-72.96-119.467-74.24-121.173l74.24-121.173c1.583-2.694 2.517-5.933 2.517-9.391 0-10.368-8.405-18.773-18.773-18.773-0.135 0-0.27 0.001-0.404 0.004h0.020z" />
<glyph unicode="&#xe98f;" glyph-name="search-plus" data-tags="search-plus" d="M961.707 125.013l-193.707 194.987c37.647 53.731 60.16 120.464 60.16 192.456 0 0.14 0 0.279 0 0.419v-0.022c0 0.018 0 0.039 0 0.060 0 188.513-152.82 341.333-341.333 341.333s-341.333-152.82-341.333-341.333c0-188.513 152.82-341.333 341.333-341.333 70.971 0 136.883 21.66 191.487 58.731l-1.193-0.764 195.84-195.84c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l30.296 30.296c7.309 7.645 11.808 18.029 11.808 29.465 0 12.484-5.362 23.716-13.908 31.518l-0.033 0.030zM484.693 299.947c-117.821 0-213.333 95.513-213.333 213.333s95.513 213.333 213.333 213.333c117.821 0 213.333-95.513 213.333-213.333v0c0-117.821-95.513-213.333-213.333-213.333v0zM614.4 554.667h-261.12c-10.468-0.467-18.778-9.067-18.778-19.608 0-0.156 0.002-0.313 0.005-0.468v0.023-43.947c-0.003-0.132-0.005-0.289-0.005-0.445 0-10.541 8.31-19.141 18.736-19.607l0.042-0.001h261.12c10.427 0.228 18.792 8.735 18.792 19.196 0 0.302-0.007 0.602-0.021 0.9l0.002-0.042v42.667c0.076 0.641 0.119 1.383 0.119 2.136 0 10.496-8.422 19.024-18.876 19.197h-0.016zM526.507 381.44v261.12c-0.467 10.468-9.067 18.778-19.608 18.778-0.156 0-0.313-0.002-0.468-0.005h-45.204c-0.132 0.003-0.289 0.005-0.445 0.005-10.541 0-19.141-8.31-19.607-18.736l-0.001-0.042v-261.12c0.467-10.468 9.067-18.778 19.608-18.778 0.156 0 0.313 0.002 0.468 0.005h45.204c0.132-0.003 0.289-0.005 0.445-0.005 10.541 0 19.141 8.31 19.607 18.736l0.001 0.042z" />
<glyph unicode="&#xe990;" glyph-name="search-minus" data-tags="search-minus" d="M914.773 134.4l-195.413 195.84c37.18 53.855 59.388 120.531 59.388 192.394 0 188.513-152.82 341.333-341.333 341.333s-341.333-152.82-341.333-341.333c0-188.513 152.82-341.333 341.333-341.333 71.298 0 137.491 21.86 192.241 59.244l-1.176-0.758 195.84-195.84c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 29.867 30.293c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002zM437.76 309.76c-117.821 0-213.333 95.513-213.333 213.333s95.513 213.333 213.333 213.333c117.821 0 213.333-95.513 213.333-213.333v0c0-117.821-95.513-213.333-213.333-213.333v0zM567.893 565.333h-261.12c-10.468-0.467-18.778-9.067-18.778-19.608 0-0.156 0.002-0.313 0.005-0.468v0.023-45.227c-0.003-0.132-0.005-0.289-0.005-0.445 0-10.541 8.31-19.141 18.736-19.607l0.042-0.001h261.12c10.468 0.467 18.778 9.067 18.778 19.608 0 0.156-0.002 0.313-0.005 0.468v-0.023 45.227c0.003 0.132 0.005 0.289 0.005 0.445 0 10.541-8.31 19.141-18.736 19.607l-0.042 0.001z" />
<glyph unicode="&#xe991;" glyph-name="sliders-v" data-tags="sliders-v" d="M790.187 128v256h20.48c23.564 0 42.667 19.103 42.667 42.667v0 42.667c0 23.564-19.103 42.667-42.667 42.667v0h-20.48v256c0 0.005 0 0.011 0 0.017 0 11.782-9.551 21.333-21.333 21.333-0.3 0-0.599-0.006-0.896-0.018l0.043 0.001h-42.667c-11.782 0-21.333-9.551-21.333-21.333v0-256h-21.333c-23.564 0-42.667-19.103-42.667-42.667v0-42.667c0-23.564 19.103-42.667 42.667-42.667v0h22.187v-256c0-11.782 9.551-21.333 21.333-21.333v0h42.667c11.782 0 21.333 9.551 21.333 21.333v0zM564.053 128v106.667h11.947c23.564 0 42.667 19.103 42.667 42.667v0 42.667c0 23.564-19.103 42.667-42.667 42.667v0h-11.947v405.333c0 11.782-9.551 21.333-21.333 21.333v0h-42.667c-11.782 0-21.333-9.551-21.333-21.333v0-405.333h-30.72c-23.564 0-42.667-19.103-42.667-42.667v0-42.667c0-23.564 19.103-42.667 42.667-42.667v0h30.72v-106.667c0-11.782 9.551-21.333 21.333-21.333v0h42.667c11.782 0 21.333 9.551 21.333 21.333v0zM319.147 128v405.333h22.187c23.564 0 42.667 19.103 42.667 42.667v0 42.667c0 23.564-19.103 42.667-42.667 42.667v0h-22.187v106.667c0 0.005 0 0.011 0 0.017 0 11.482-9.071 20.845-20.437 21.315l-0.043 0.001h-42.667c-11.782 0-21.333-9.551-21.333-21.333v0-106.667h-21.333c-23.564 0-42.667-19.103-42.667-42.667v0-42.667c0-23.564 19.103-42.667 42.667-42.667v0h20.48v-405.333c0-0.005 0-0.011 0-0.017 0-11.782 9.551-21.333 21.333-21.333 0.3 0 0.599 0.006 0.896 0.018l-0.043-0.001h42.667c11.409 0.471 20.48 9.834 20.48 21.316 0 0.006 0 0.012 0 0.018v-0.001z" />
<glyph unicode="&#xe992;" glyph-name="sliders-h" data-tags="sliders-h" d="M832 726.187h-256v20.48c0 23.564-19.103 42.667-42.667 42.667v0h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-20.48h-256c-0.005 0-0.011 0-0.017 0-11.782 0-21.333-9.551-21.333-21.333 0-0.3 0.006-0.599 0.018-0.896l-0.001 0.043v-42.667c0-11.782 9.551-21.333 21.333-21.333v0h256v-21.333c0-23.564 19.103-42.667 42.667-42.667v0h42.667c23.564 0 42.667 19.103 42.667 42.667v0 22.187h256c0.005 0 0.011 0 0.017 0 11.482 0 20.845 9.071 21.315 20.437l0.001 0.043v42.667c0.011 0.255 0.017 0.553 0.017 0.853 0 11.782-9.551 21.333-21.333 21.333-0.006 0-0.012 0-0.018 0h0.001zM832 500.053h-106.667v11.947c0 23.564-19.103 42.667-42.667 42.667v0h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-11.947h-405.333c-11.782 0-21.333-9.551-21.333-21.333v0-42.667c0-11.782 9.551-21.333 21.333-21.333v0h405.333v-30.72c0-23.564 19.103-42.667 42.667-42.667v0h42.667c23.564 0 42.667 19.103 42.667 42.667v0 30.72h106.667c11.782 0 21.333 9.551 21.333 21.333v0 42.667c0 11.782-9.551 21.333-21.333 21.333v0zM832 255.147h-405.333v22.187c0 23.564-19.103 42.667-42.667 42.667v0h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-22.187h-106.667c-0.005 0-0.011 0-0.017 0-11.482 0-20.845-9.071-21.315-20.437l-0.001-0.043v-42.667c0-11.782 9.551-21.333 21.333-21.333v0h106.667v-21.333c0-23.564 19.103-42.667 42.667-42.667v0h42.667c23.564 0 42.667 19.103 42.667 42.667v0 20.48h405.333c0.005 0 0.011 0 0.017 0 11.782 0 21.333 9.551 21.333 21.333 0 0.3-0.006 0.599-0.018 0.896l0.001-0.043v42.667c-0.471 11.409-9.834 20.48-21.316 20.48-0.006 0-0.012 0-0.018 0h0.001z" />
<glyph unicode="&#xe993;" glyph-name="desktop" data-tags="desktop" d="M810.667 789.333h-597.333c-23.564 0-42.667-19.103-42.667-42.667v0-426.667c0-23.564 19.103-42.667 42.667-42.667v0h256v-106.667h85.333v106.667h256c23.564 0 42.667 19.103 42.667 42.667v0 426.667c0 23.564-19.103 42.667-42.667 42.667v0zM768 362.667h-512v341.333h512zM362.667 170.667h298.667c11.782 0 21.333-9.551 21.333-21.333v-21.333c0-11.782-9.551-21.333-21.333-21.333h-298.667c-11.782 0-21.333 9.551-21.333 21.333v21.333c0 11.782 9.551 21.333 21.333 21.333z" />
<glyph unicode="&#xe994;" glyph-name="undo" data-tags="undo" d="M200.533 756.053l68.693-69.12c61.888 62.497 147.711 101.194 242.573 101.194 188.513 0 341.333-152.82 341.333-341.333s-152.82-341.333-341.333-341.333c-154.74 0-285.431 102.968-327.292 244.124l-0.614 2.415c-0.864 3.207-1.36 6.89-1.36 10.688 0 23.564 19.103 42.667 42.667 42.667 0.478 0 0.955-0.008 1.43-0.023l-0.069 0.002c0.033 0 0.071 0 0.11 0 18.678 0 34.552-12.002 40.333-28.714l0.090-0.3c31.908-107.6 129.887-184.75 245.885-184.75 14.723 0 29.156 1.243 43.199 3.629l-1.511-0.212c109.168 24.767 192.85 111.312 213.069 220.152l0.265 1.715c1.174 9.208 1.844 19.86 1.844 30.669 0 141.385-114.615 256-256 256-71.987 0-137.034-29.713-183.546-77.543l-0.057-0.059 12.8-12.8 77.653-79.787c3.1-3.217 5.009-7.599 5.009-12.427 0-9.407-7.249-17.122-16.466-17.862l-0.063-0.004h-219.733c-0.071-0.001-0.155-0.002-0.239-0.002-10.368 0-18.773 8.405-18.773 18.773 0 1.055 0.087 2.090 0.254 3.098l-0.015-0.109v219.733c0.925 9.111 8.556 16.161 17.833 16.161 4.639 0 8.866-1.762 12.048-4.654l-0.015 0.013z" />
<glyph unicode="&#xe995;" glyph-name="palette" data-tags="palette" d="M841.387 537.6c-40.744 146.209-172.73 251.701-329.355 251.701-188.513 0-341.333-152.82-341.333-341.333 0-156.625 105.492-288.611 249.3-328.782l2.401-0.573c26.832-7.417 57.669-11.766 89.494-11.946h4.799c56.163 0.816 101.379 46.536 101.379 102.816 0 16.135-3.716 31.403-10.34 44.993l0.268-0.609-6.827 14.080c-4.125 8.535-6.536 18.561-6.536 29.15 0 37.703 30.564 68.267 68.267 68.267 10.589 0 20.615-2.411 29.559-6.714l-0.409 0.177 14.080-6.827c12.981-6.356 28.248-10.072 44.384-10.072 56.281 0 102 45.215 102.816 101.302l0.001 0.077c0.020 1.386 0.032 3.023 0.032 4.662 0 31.888-4.373 62.755-12.551 92.033l0.573-2.402zM273.067 503.467c0 28.277 22.923 51.2 51.2 51.2s51.2-22.923 51.2-51.2c0-28.277-22.923-51.2-51.2-51.2v0c-28.277 0-51.2 22.923-51.2 51.2v0zM358.4 270.933c-28.258 0.025-51.156 22.939-51.156 51.2 0 28.277 22.923 51.2 51.2 51.2s51.2-22.923 51.2-51.2c0-0.75-0.016-1.497-0.048-2.239l0.004 0.106c-1.176-27.344-23.629-49.067-51.156-49.067-0.016 0-0.031 0-0.047 0h0.002zM469.333 584.533c-28.277 0-51.2 22.923-51.2 51.2s22.923 51.2 51.2 51.2c28.277 0 51.2-22.923 51.2-51.2v0c0-28.277-22.923-51.2-51.2-51.2v0zM650.667 550.4c-28.277 0-51.2 22.923-51.2 51.2s22.923 51.2 51.2 51.2c28.277 0 51.2-22.923 51.2-51.2v0c0-0.013 0-0.029 0-0.044 0-28.277-22.923-51.2-51.2-51.2-0.75 0-1.497 0.016-2.239 0.048l0.106-0.004z" />
<glyph unicode="&#xe996;" glyph-name="sort-numeric-down-alt" data-tags="sort-numeric-down-alt" d="M460.373 292.267h-59.307v480c0 9.387-11.093 17.067-24.32 17.067h-49.493c-13.227 0-24.32-7.68-24.32-17.067v-480h-59.307c-10.938-0.179-19.736-9.087-19.736-20.051 0-4.501 1.483-8.655 3.986-12.002l-0.038 0.052 108.373-145.493c3.615-4.855 9.337-7.965 15.787-7.965s12.172 3.111 15.75 7.913l0.037 0.052 108.373 145.493c2.466 3.294 3.949 7.448 3.949 11.949 0 10.963-8.798 19.872-19.719 20.051h-0.017zM665.173 345.6l24.32 2.987v-235.947c-0.055-0.283-0.087-0.608-0.087-0.94 0-2.828 2.292-5.12 5.12-5.12 0.333 0 0.658 0.032 0.973 0.092l-0.032-0.005h40.533c4.267 0 6.4 2.133 6.4 5.973v286.72c0 3.84 0 5.973-6.4 5.973l-71.68-9.387c-0.004 0-0.008 0-0.013 0-4.006 0-7.253-3.247-7.253-7.253 0-0.15 0.005-0.299 0.014-0.447l-0.001 0.020v-35.84c-0.022-0.2-0.035-0.433-0.035-0.668 0-3.535 2.865-6.4 6.4-6.4 0.62 0 1.22 0.088 1.787 0.253l-0.045-0.011zM740.267 789.333h-51.2c-38.827 0-59.733-18.347-59.733-52.053v-78.933c0-34.133 20.907-52.48 59.733-52.48h36.267l-51.627-106.667c-2.56-5.12 0-8.533 6.4-8.533h42.667c0.364-0.050 0.785-0.079 1.213-0.079 3.823 0 7.113 2.286 8.576 5.566l0.024 0.060 60.587 128c2.692 5.434 4.267 11.832 4.267 18.599 0 0.061 0 0.123 0 0.184v-0.009 94.293c2.56 33.707-18.347 52.053-57.173 52.053zM743.68 670.293c0-9.813-5.973-14.933-17.067-14.933h-23.893c-11.093 0-17.067 5.12-17.067 14.933v55.040c0 9.387 5.973 14.933 17.067 14.933h22.613c11.093 0 17.067-5.547 17.067-14.933z" />
<glyph unicode="&#xe997;" glyph-name="sort-numeric-up-alt" data-tags="sort-numeric-up-alt" d="M367.787 781.227c-3.615 4.855-9.337 7.965-15.787 7.965s-12.172-3.111-15.75-7.913l-0.037-0.052-108.373-145.493c-2.466-3.294-3.949-7.448-3.949-11.949 0-10.963 8.798-19.872 19.719-20.051h59.324v-480c0-9.387 11.093-17.067 24.32-17.067h49.493c13.227 0 24.32 7.68 24.32 17.067v480h59.307c10.938 0.179 19.736 9.087 19.736 20.051 0 4.501-1.483 8.655-3.986 12.002l0.038-0.052zM665.173 388.267l24.32 2.987v-235.947c-0.055-0.283-0.087-0.608-0.087-0.94 0-2.828 2.292-5.12 5.12-5.12 0.333 0 0.658 0.032 0.973 0.092l-0.032-0.005h40.533c4.267 0 6.4 2.133 6.4 5.973v286.72c0 3.84 0 5.973-6.4 5.973l-71.68-9.387c-0.004 0-0.008 0-0.013 0-4.006 0-7.253-3.247-7.253-7.253 0-0.15 0.005-0.299 0.014-0.447l-0.001 0.020v-35.84c-0.022-0.2-0.035-0.433-0.035-0.668 0-3.535 2.865-6.4 6.4-6.4 0.62 0 1.22 0.088 1.787 0.253l-0.045-0.011zM740.267 789.333h-51.2c-38.827 0-59.733-18.347-59.733-52.053v-78.933c0-34.133 20.907-52.48 59.733-52.48h36.267l-51.627-106.667c-2.56-5.12 0-8.533 6.4-8.533h42.667c0.364-0.050 0.785-0.079 1.213-0.079 3.823 0 7.113 2.286 8.576 5.566l0.024 0.060 60.587 128c2.692 5.434 4.267 11.832 4.267 18.599 0 0.061 0 0.123 0 0.184v-0.009 94.293c2.56 33.707-18.347 52.053-57.173 52.053zM743.68 670.293c0-9.813-5.973-14.933-17.067-14.933h-23.893c-11.093 0-17.067 5.12-17.067 14.933v55.040c0 9.387 5.973 14.933 17.067 14.933h22.613c11.093 0 17.067-5.547 17.067-14.933z" />
<glyph unicode="&#xe998;" glyph-name="sort-alpha-down-alt" data-tags="sort-alpha-down-alt" d="M439.040 292.267h-59.307v480c0 9.387-11.093 17.067-24.32 17.067h-49.493c-13.227 0-24.32-7.68-24.32-17.067v-480h-59.307c-10.938-0.179-19.736-9.087-19.736-20.051 0-4.501 1.483-8.655 3.986-12.002l-0.038 0.052 108.373-145.493c3.615-4.855 9.337-7.965 15.787-7.965s12.172 3.111 15.75 7.913l0.037 0.052 108.373 145.493c2.466 3.294 3.949 7.448 3.949 11.949 0 10.963-8.798 19.872-19.719 20.051h-0.017zM572.16 106.667h54.187c4.693 0 7.253 0 8.107 5.12l13.653 54.613h90.027l14.080-54.613c1.073-3.033 3.916-5.167 7.257-5.167 0.299 0 0.595 0.017 0.885 0.050l-0.035-0.003h53.76c5.973 0 8.107 2.133 6.827 6.4l-85.333 287.147c-1.056 3.063-3.914 5.224-7.277 5.224-0.444 0-0.879-0.038-1.302-0.11l0.045 0.006h-68.693c-4.693 0-7.68 0-8.533-5.12l-85.333-287.147c-0.427-6.4 2.133-6.4 7.68-6.4zM693.333 340.053l32-128h-64.427zM810.667 789.333h-219.307c-5.973 0-9.387 0-9.387-6.4v-36.267c0-3.84 3.413-5.973 9.387-5.973h121.173l-145.92-240.213c-3.413-5.12 0-8.96 8.96-8.96h227.413c5.973 0 9.387 2.56 9.387 6.4v35.413c0 3.84-3.413 5.547-9.387 5.547h-128l145.493 240.64c2.56 5.973 0.427 9.813-9.813 9.813z" />
<glyph unicode="&#xe999;" glyph-name="sort-alpha-up-alt" data-tags="sort-alpha-up-alt" d="M346.453 781.227c-3.615 4.855-9.337 7.965-15.787 7.965s-12.172-3.111-15.75-7.913l-0.037-0.052-108.373-145.493c-2.466-3.294-3.949-7.448-3.949-11.949 0-10.963 8.798-19.872 19.719-20.051h59.324v-480c0-9.387 11.093-17.067 24.32-17.067h49.493c13.227 0 24.32 7.68 24.32 17.067v480h59.307c10.938 0.179 19.736 9.087 19.736 20.051 0 4.501-1.483 8.655-3.986 12.002l0.038-0.052zM572.16 106.667h54.187c4.693 0 7.253 0 8.107 5.12l13.653 54.613h90.027l14.080-54.613c1.073-3.033 3.916-5.167 7.257-5.167 0.299 0 0.595 0.017 0.885 0.050l-0.035-0.003h53.76c5.973 0 8.107 2.133 6.827 6.4l-85.333 287.147c-1.056 3.063-3.914 5.224-7.277 5.224-0.444 0-0.879-0.038-1.302-0.11l0.045 0.006h-68.693c-4.693 0-7.68 0-8.533-5.12l-85.333-287.147c-0.427-6.4 2.133-6.4 7.68-6.4zM693.333 340.053l32-128h-64.427zM810.667 789.333h-219.307c-5.973 0-9.387 0-9.387-6.4v-36.267c0-3.84 3.413-5.973 9.387-5.973h121.173l-145.92-240.213c-3.413-5.12 0-8.96 8.96-8.96h227.413c5.973 0 9.387 2.56 9.387 6.4v35.413c0 3.84-3.413 5.547-9.387 5.547h-128l145.493 240.64c2.56 5.973 0.427 9.813-9.813 9.813z" />
<glyph unicode="&#xe99a;" glyph-name="sort-numeric-down" data-tags="sort-numeric-down" d="M460.373 292.267h-59.307v480c0 9.387-11.093 17.067-24.32 17.067h-49.493c-13.227 0-24.32-7.68-24.32-17.067v-480h-59.307c-10.938-0.179-19.736-9.087-19.736-20.051 0-4.501 1.483-8.655 3.986-12.002l-0.038 0.052 108.373-145.493c3.615-4.855 9.337-7.965 15.787-7.965s12.172 3.111 15.75 7.913l0.037 0.052 108.373 145.493c2.466 3.294 3.949 7.448 3.949 11.949 0 10.963-8.798 19.872-19.719 20.051h-0.017zM665.173 729.6l24.32 2.987v-235.947c-0.055-0.283-0.087-0.608-0.087-0.94 0-2.828 2.292-5.12 5.12-5.12 0.333 0 0.658 0.032 0.973 0.092l-0.032-0.005h40.533c4.267 0 6.4 2.133 6.4 5.973v286.72c0 3.84 0 5.973-6.4 5.973l-71.68-9.387c-0.004 0-0.008 0-0.013 0-4.006 0-7.253-3.247-7.253-7.253 0-0.15 0.005-0.299 0.014-0.447l-0.001 0.020v-35.84c-0.022-0.2-0.035-0.433-0.035-0.668 0-3.535 2.865-6.4 6.4-6.4 0.62 0 1.22 0.088 1.787 0.253l-0.045-0.011zM740.267 405.333h-51.2c-38.827 0-59.733-18.347-59.733-52.053v-78.933c0-34.133 20.907-52.48 59.733-52.48h36.267l-51.627-106.667c-2.56-5.12 0-8.533 6.4-8.533h42.667c0.364-0.050 0.785-0.079 1.213-0.079 3.823 0 7.113 2.286 8.576 5.566l0.024 0.060 60.587 128c2.692 5.434 4.267 11.832 4.267 18.599 0 0.061 0 0.123 0 0.184v-0.009 94.293c2.56 33.707-18.347 52.053-57.173 52.053zM743.68 286.293c0-9.813-5.973-14.933-17.067-14.933h-23.893c-11.093 0-17.067 5.12-17.067 14.933v55.040c0 9.387 5.973 14.933 17.067 14.933h22.613c11.093 0 17.067-5.547 17.067-14.933z" />
<glyph unicode="&#xe99b;" glyph-name="sort-numeric-up" data-tags="sort-numeric-up" d="M367.787 781.227c-3.615 4.855-9.337 7.965-15.787 7.965s-12.172-3.111-15.75-7.913l-0.037-0.052-108.373-145.493c-2.466-3.294-3.949-7.448-3.949-11.949 0-10.963 8.798-19.872 19.719-20.051h59.324v-480c0-9.387 11.093-17.067 24.32-17.067h49.493c13.227 0 24.32 7.68 24.32 17.067v480h59.307c10.938 0.179 19.736 9.087 19.736 20.051 0 4.501-1.483 8.655-3.986 12.002l0.038-0.052zM665.173 729.6l24.32 2.987v-235.947c-0.055-0.283-0.087-0.608-0.087-0.94 0-2.828 2.292-5.12 5.12-5.12 0.333 0 0.658 0.032 0.973 0.092l-0.032-0.005h40.533c4.267 0 6.4 2.133 6.4 5.973v286.72c0 3.84 0 5.973-6.4 5.973l-71.68-9.387c-0.004 0-0.008 0-0.013 0-4.006 0-7.253-3.247-7.253-7.253 0-0.15 0.005-0.299 0.014-0.447l-0.001 0.020v-35.84c-0.022-0.2-0.035-0.433-0.035-0.668 0-3.535 2.865-6.4 6.4-6.4 0.62 0 1.22 0.088 1.787 0.253l-0.045-0.011zM740.267 405.333h-51.2c-38.827 0-59.733-18.347-59.733-52.053v-78.933c0-34.133 20.907-52.48 59.733-52.48h36.267l-51.627-106.667c-2.56-5.12 0-8.533 6.4-8.533h42.667c0.364-0.050 0.785-0.079 1.213-0.079 3.823 0 7.113 2.286 8.576 5.566l0.024 0.060 60.587 128c2.692 5.434 4.267 11.832 4.267 18.599 0 0.061 0 0.123 0 0.184v-0.009 94.293c2.56 33.707-18.347 52.053-57.173 52.053zM743.68 286.293c0-9.813-5.973-14.933-17.067-14.933h-23.893c-11.093 0-17.067 5.12-17.067 14.933v55.040c0 9.387 5.973 14.933 17.067 14.933h22.613c11.093 0 17.067-5.547 17.067-14.933z" />
<glyph unicode="&#xe99c;" glyph-name="sort-alpha-down" data-tags="sort-alpha-down" d="M439.040 292.267h-59.307v480c0 9.387-11.093 17.067-24.32 17.067h-49.493c-13.227 0-24.32-7.68-24.32-17.067v-480h-59.307c-10.938-0.179-19.736-9.087-19.736-20.051 0-4.501 1.483-8.655 3.986-12.002l-0.038 0.052 108.373-145.493c3.615-4.855 9.337-7.965 15.787-7.965s12.172 3.111 15.75 7.913l0.037 0.052 108.373 145.493c2.466 3.294 3.949 7.448 3.949 11.949 0 10.963-8.798 19.872-19.719 20.051h-0.017zM572.16 490.667h54.187c4.693 0 7.253 0 8.107 5.12l13.653 54.613h90.027l14.080-54.613c1.073-3.033 3.916-5.167 7.257-5.167 0.299 0 0.595 0.017 0.885 0.050l-0.035-0.003h53.76c5.973 0 8.107 2.133 6.827 6.4l-85.333 287.147c-1.056 3.063-3.914 5.224-7.277 5.224-0.444 0-0.879-0.038-1.302-0.11l0.045 0.006h-68.693c-4.693 0-7.68 0-8.533-5.12l-85.333-287.147c-0.427-6.4 2.133-6.4 7.68-6.4zM693.333 724.053l32-130.133h-64.427zM810.667 405.333h-219.307c-5.973 0-9.387-2.133-9.387-6.4v-36.267c0-3.84 3.413-5.973 9.387-5.973h121.173l-145.92-240.213c-3.413-5.12 0-8.96 8.96-8.96h227.413c5.973 0 9.387 2.56 9.387 6.4v35.413c0 3.84-3.413 5.547-9.387 5.547h-128l145.493 240.64c2.56 5.973 0.427 9.813-9.813 9.813z" />
<glyph unicode="&#xe99d;" glyph-name="sort-alpha-up" data-tags="sort-alpha-up" d="M346.453 781.227c-3.615 4.855-9.337 7.965-15.787 7.965s-12.172-3.111-15.75-7.913l-0.037-0.052-108.373-145.493c-2.466-3.294-3.949-7.448-3.949-11.949 0-10.963 8.798-19.872 19.719-20.051h59.324v-480c0-9.387 11.093-17.067 24.32-17.067h49.493c13.227 0 24.32 7.68 24.32 17.067v480h59.307c10.938 0.179 19.736 9.087 19.736 20.051 0 4.501-1.483 8.655-3.986 12.002l0.038-0.052zM572.16 490.667h54.187c4.693 0 7.253 0 8.107 5.12l13.653 54.613h90.027l14.080-54.613c1.073-3.033 3.916-5.167 7.257-5.167 0.299 0 0.595 0.017 0.885 0.050l-0.035-0.003h53.76c5.973 0 8.107 2.133 6.827 6.4l-85.333 287.147c-1.056 3.063-3.914 5.224-7.277 5.224-0.444 0-0.879-0.038-1.302-0.11l0.045 0.006h-68.693c-4.693 0-7.68 0-8.533-5.12l-85.333-287.147c-0.427-6.4 2.133-6.4 7.68-6.4zM693.333 724.053l32-130.133h-64.427zM810.667 405.333h-219.307c-5.973 0-9.387-2.133-9.387-6.4v-36.267c0-3.84 3.413-5.973 9.387-5.973h121.173l-145.92-240.213c-3.413-5.12 0-8.96 8.96-8.96h227.413c5.973 0 9.387 2.56 9.387 6.4v35.413c0 3.84-3.413 5.547-9.387 5.547h-128l145.493 240.64c2.56 5.973 0.427 9.813-9.813 9.813z" />
<glyph unicode="&#xe99e;" glyph-name="sort-alt" data-tags="sort-alt" d="M357.12 781.227c-3.615 4.855-9.337 7.965-15.787 7.965s-12.172-3.111-15.75-7.913l-0.037-0.052-108.373-145.493c-2.466-3.294-3.949-7.448-3.949-11.949 0-10.963 8.798-19.872 19.719-20.051h59.324v-480c0-9.387 11.093-17.067 24.32-17.067h49.493c13.227 0 24.32 7.68 24.32 17.067v480h59.307c10.938 0.179 19.736 9.087 19.736 20.051 0 4.501-1.483 8.655-3.986 12.002l0.038-0.052zM791.040 292.267h-59.307v480c0 9.387-11.093 17.067-24.32 17.067h-49.493c-13.227 0-24.32-7.68-24.32-17.067v-480h-59.307c-10.938-0.179-19.736-9.087-19.736-20.051 0-4.501 1.483-8.655 3.986-12.002l-0.038 0.052 108.373-145.493c3.615-4.855 9.337-7.965 15.787-7.965s12.172 3.111 15.75 7.913l0.037 0.052 108.373 145.493c2.466 3.294 3.949 7.448 3.949 11.949 0 10.963-8.798 19.872-19.719 20.051h-0.017z" />
<glyph unicode="&#xe99f;" glyph-name="sort-amount-up" data-tags="sort-amount-up" d="M314.453 781.227c-3.615 4.855-9.337 7.965-15.787 7.965s-12.172-3.111-15.75-7.913l-0.037-0.052-108.373-145.493c-2.466-3.294-3.949-7.448-3.949-11.949 0-10.963 8.798-19.872 19.719-20.051h59.324v-480c0-9.387 11.093-17.067 24.32-17.067h49.493c13.227 0 24.32 7.68 24.32 17.067v480h59.307c10.938 0.179 19.736 9.087 19.736 20.051 0 4.501-1.483 8.655-3.986 12.002l0.038-0.052zM486.4 789.333h349.867c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-349.867c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 597.333h264.533c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-264.533c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 405.333h179.2c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-179.2c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 213.333h93.867c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-93.867c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067z" />
<glyph unicode="&#xe9a0;" glyph-name="sort-amount-down" data-tags="sort-amount-down" d="M282.88 114.773c3.615-4.855 9.337-7.965 15.787-7.965s12.172 3.111 15.75 7.913l0.037 0.052 108.373 145.493c2.466 3.294 3.949 7.448 3.949 11.949 0 10.963-8.798 19.872-19.719 20.051h-59.324v480c0 9.387-11.093 17.067-24.32 17.067h-49.493c-13.227 0-24.32-7.68-24.32-17.067v-480h-59.307c-10.938-0.179-19.736-9.087-19.736-20.051 0-4.501 1.483-8.655 3.986-12.002l-0.038 0.052zM486.4 789.333h349.867c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-349.867c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 597.333h264.533c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-264.533c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 405.333h179.2c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-179.2c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 213.333h93.867c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-93.867c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067z" />
<glyph unicode="&#xe9a1;" glyph-name="sort-amount-down-alt" data-tags="sort-amount-down-alt" d="M282.88 114.773c3.615-4.855 9.337-7.965 15.787-7.965s12.172 3.111 15.75 7.913l0.037 0.052 108.373 145.493c2.466 3.294 3.949 7.448 3.949 11.949 0 10.963-8.798 19.872-19.719 20.051h-59.324v480c0 9.387-11.093 17.067-24.32 17.067h-49.493c-13.227 0-24.32-7.68-24.32-17.067v-480h-59.307c-10.938-0.179-19.736-9.087-19.736-20.051 0-4.501 1.483-8.655 3.986-12.002l-0.038 0.052zM486.4 789.333h93.867c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-93.867c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 597.333h179.2c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-179.2c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 405.333h264.533c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-264.533c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 213.333h349.867c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-349.867c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067z" />
<glyph unicode="&#xe9a2;" glyph-name="sort-amount-up-alt" data-tags="sort-amount-up-alt" d="M314.453 781.227c-3.615 4.855-9.337 7.965-15.787 7.965s-12.172-3.111-15.75-7.913l-0.037-0.052-108.373-145.493c-2.466-3.294-3.949-7.448-3.949-11.949 0-10.963 8.798-19.872 19.719-20.051h59.324v-480c0-9.387 11.093-17.067 24.32-17.067h49.493c13.227 0 24.32 7.68 24.32 17.067v480h59.307c10.938 0.179 19.736 9.087 19.736 20.051 0 4.501-1.483 8.655-3.986 12.002l0.038-0.052zM486.4 789.333h93.867c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-93.867c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 597.333h179.2c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-179.2c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 405.333h264.533c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-264.533c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067zM486.4 213.333h349.867c9.426 0 17.067-7.641 17.067-17.067v-72.533c0-9.426-7.641-17.067-17.067-17.067h-349.867c-9.426 0-17.067 7.641-17.067 17.067v72.533c0 9.426 7.641 17.067 17.067 17.067z" />
<glyph unicode="&#xe9a3;" glyph-name="thumbs-up" data-tags="thumbs-up" d="M853.333 417.28c0.534 4.094 1.28 7.706 2.266 11.219l-0.132-0.553v73.813c0.001 0.127 0.001 0.277 0.001 0.428 0 39.438-31.85 71.437-71.232 71.679h-250.903l39.68 120.747c2.411 6.871 3.804 14.794 3.804 23.041 0 39.425-31.829 71.416-71.193 71.678h-7.705c-118.613-119.893-177.92-184.747-177.92-195.413v-487.253h391.253c11.52 0 56.747 103.68 142.080 310.613zM241.92 106.667h35.413v469.333h-35.413c-39.404-0.241-71.255-32.241-71.255-71.679 0-0.15 0-0.301 0.001-0.451v0.023-325.12c-0.001-0.127-0.001-0.277-0.001-0.428 0-39.438 31.85-71.437 71.232-71.679h0.023z" />
<glyph unicode="&#xe9a4;" glyph-name="thumbs-down" data-tags="thumbs-down" d="M172.8 478.72c0.116-1.595 0.181-3.457 0.181-5.333s-0.066-3.738-0.195-5.582l0.014 0.248v-73.813c-0.030-0.777-0.047-1.688-0.047-2.604 0-38.704 30.676-70.244 69.041-71.632l0.127-0.004h248.747l-39.68-120.747c-1.979-6.257-3.119-13.453-3.119-20.916 0-39.184 31.442-71.025 70.472-71.67l0.060-0.001h7.68c118.613 119.893 177.92 184.747 177.92 195.413v487.253h-391.253c-11.52 0-56.747-103.68-139.947-310.613zM782.080 789.333h-35.413v-469.333h35.413c39.404 0.241 71.255 32.241 71.255 71.679 0 0.15 0 0.301-0.001 0.451v-0.023 325.12c0.001 0.127 0.001 0.277 0.001 0.428 0 39.438-31.85 71.437-71.232 71.679h-0.023z" />
<glyph unicode="&#xe9a5;" glyph-name="directions-alt" data-tags="directions-alt" d="M170.667 448c0.044-14.486 5.902-27.595 15.363-37.123l-0.003 0.003 289.707-288.853c9.303-9.301 22.083-15.126 36.222-15.359l0.044-0.001c14.348 0.065 27.315 5.925 36.691 15.357l0.003 0.003 288.427 289.28c9.455 9.361 15.31 22.343 15.31 36.693s-5.855 27.332-15.306 36.689l-0.004 0.004-287.573 289.28c-9.43 9.479-22.483 15.346-36.907 15.346s-27.477-5.866-36.904-15.344l-0.002-0.002-289.707-288.853c-9.458-9.525-15.316-22.634-15.36-37.112v-0.008zM447.573 448v-64.427l-96 96.427 96 96v-64h160.853v-192h-64.427v128z" />
<glyph unicode="&#xe9a6;" glyph-name="directions" data-tags="directions" d="M837.973 485.12l-289.707 288.853c-9.43 9.479-22.483 15.346-36.907 15.346s-27.477-5.866-36.904-15.344l-0.002-0.002-288.427-289.28c-9.455-9.361-15.31-22.343-15.31-36.693s5.855-27.332 15.306-36.689l0.004-0.004 288.427-289.28c9.431-9.49 22.492-15.364 36.925-15.364 0.219 0 0.437 0.001 0.655 0.004h-0.033c0.007 0 0.014 0 0.022 0 14.486 0 27.602 5.87 37.098 15.36v0l289.707 288.853c9.504 9.498 15.382 22.623 15.382 37.12s-5.878 27.622-15.382 37.12v0zM480 448v-128h-64.427v192.427h160.853v63.573l96-96.427-96-96.427v64.853z" />
<glyph unicode="&#xe9a7;" glyph-name="reply" data-tags="reply" d="M844.373 533.333l-223.147 186.88c-16.64 11.947-42.667 0-42.667-16.213v-117.333h-395.093c-0.129 0.005-0.282 0.008-0.434 0.008-6.834 0-12.373-5.54-12.373-12.373 0-0.153 0.003-0.305 0.008-0.456l-0.001 0.022v-390.4c-0.005-0.129-0.008-0.282-0.008-0.434 0-6.834 5.54-12.373 12.373-12.373 0.153 0 0.305 0.003 0.456 0.008l-0.022-0.001h111.787c0.129-0.005 0.282-0.008 0.434-0.008 6.834 0 12.373 5.54 12.373 12.373 0 0.153-0.003 0.305-0.008 0.456l0.001-0.022v264.533h270.507v-117.333c0-18.347 26.027-28.16 42.667-15.787l223.147 186.453c5.407 3.359 8.953 9.265 8.953 16s-3.546 12.641-8.873 15.954l-0.080 0.046z" />
<glyph unicode="&#xe9a8;" glyph-name="file-o" data-tags="file-o" d="M587.52 595.2c-4.29 0.233-7.68 3.768-7.68 8.095 0 0.004 0 0.008 0 0.012v-0.001 186.027h-256c-37.572-0.479-67.845-31.048-67.845-68.688 0-0.302 0.002-0.603 0.006-0.904v0.046-543.573c-0.003-0.255-0.005-0.557-0.005-0.859 0-37.64 30.274-68.209 67.8-68.688h376.365c37.572 0.479 67.845 31.048 67.845 68.688 0 0.302-0.002 0.603-0.006 0.904v-0.046 418.987zM707.84 176.213c0.008-0.131 0.012-0.283 0.012-0.437 0-4.331-3.397-7.869-7.672-8.095l-0.020-0.001h-376.32c-4.295 0.227-7.692 3.765-7.692 8.096 0 0.154 0.004 0.307 0.013 0.458l-0.001-0.021v543.573c-0.008 0.131-0.012 0.283-0.012 0.437 0 4.331 3.397 7.869 7.672 8.095l0.020 0.001h195.84v-125.013c-0.008-0.382-0.012-0.833-0.012-1.285 0-37.642 30.277-68.213 67.807-68.688h120.365zM653.227 632.32h94.293c20.48 0 18.773 17.493 18.773 39.253v6.4l-106.667 111.36h-15.787c-16.213 0-28.16 0-28.16-19.627v-98.133c-0.006-0.257-0.010-0.559-0.010-0.863 0-20.911 16.715-37.918 37.512-38.39l0.044-0.001z" />
<glyph unicode="&#xe9a9;" glyph-name="ticket" data-tags="ticket" d="M853.333 512v149.333c0 23.564-19.103 42.667-42.667 42.667v0h-597.333c-23.564 0-42.667-19.103-42.667-42.667v0-149.333c35.346 0 64-28.654 64-64s-28.654-64-64-64v0-149.333c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 149.333c-35.346 0-64 28.654-64 64s28.654 64 64 64v0zM746.667 300.8c0-18.851-15.282-34.133-34.133-34.133h-401.067c-18.851 0-34.133 15.282-34.133 34.133v0 294.4c0 18.851 15.282 34.133 34.133 34.133h401.067c18.851 0 34.133-15.282 34.133-34.133v0zM320 586.667h384v-277.333h-384v277.333z" />
<glyph unicode="&#xe9aa;" glyph-name="id-card" data-tags="id-card" d="M170.667 576v-341.333c0-23.564 19.103-42.667 42.667-42.667v0h597.333c23.564 0 42.667 19.103 42.667 42.667v0 341.333zM341.333 533.333c0.636 0.024 1.382 0.038 2.132 0.038 33.461 0 60.587-27.126 60.587-60.587s-27.126-60.587-60.587-60.587c-33.461 0-60.587 27.126-60.587 60.587 0 0.137 0 0.274 0.001 0.41v-0.021c-0.004 0.256-0.006 0.557-0.006 0.859 0 32.456 26.072 58.823 58.415 59.3l0.045 0.001zM426.667 307.627c0.002-0.128 0.003-0.279 0.003-0.43 0-16.346-13.131-29.625-29.421-29.863h-111.809c-16.312 0.239-29.443 13.518-29.443 29.864 0 0.151 0.001 0.302 0.003 0.452v-0.023 59.733c0.056 23.181 13.030 43.319 32.102 53.6l0.324 0.16c13.093-14.472 31.942-23.526 52.907-23.526s39.814 9.054 52.852 23.465l0.055 0.061c19.397-10.441 32.371-30.579 32.427-53.752v-0.008zM768 290.133c-0.229-6.975-5.825-12.571-12.779-12.799l-0.021-0.001h-230.4c-6.975 0.229-12.571 5.825-12.799 12.779l-0.001 0.021v17.067c0.229 6.975 5.825 12.571 12.779 12.799l0.021 0.001h230.4c6.975-0.229 12.571-5.825 12.799-12.779l0.001-0.021zM768 375.467c-0.229-6.975-5.825-12.571-12.779-12.799l-0.021-0.001h-230.4c-6.975 0.229-12.571 5.825-12.799 12.779l-0.001 0.021v17.067c0.229 6.975 5.825 12.571 12.779 12.799l0.021 0.001h230.4c6.975-0.229 12.571-5.825 12.799-12.779l0.001-0.021zM768 460.8c-0.229-6.975-5.825-12.571-12.779-12.799l-0.021-0.001h-230.4c-6.975 0.229-12.571 5.825-12.799 12.779l-0.001 0.021v17.067c0.229 6.975 5.825 12.571 12.779 12.799l0.021 0.001h230.4c6.975-0.229 12.571-5.825 12.799-12.779l0.001-0.021zM810.667 704h-597.333c-23.564 0-42.667-19.103-42.667-42.667v0-42.667h682.667v42.667c0 23.564-19.103 42.667-42.667 42.667v0z" />
<glyph unicode="&#xe9ab;" glyph-name="compass" data-tags="compass" d="M576 448c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64zM753.493 689.493c-61.756 61.689-147.035 99.84-241.225 99.84-188.513 0-341.333-152.82-341.333-341.333s152.82-341.333 341.333-341.333c94.19 0 179.469 38.151 241.228 99.843l-0.003-0.003c61.849 61.782 100.109 147.17 100.109 241.493s-38.259 179.711-100.105 241.49l-0.003 0.003zM331.093 267.093l90.453 271.36 271.36 90.453-90.453-271.36z" />
<glyph unicode="&#xe9ac;" glyph-name="step-backward-alt" data-tags="step-backward-alt" d="M677.12 616.533c2.409 1.206 5.248 1.911 8.253 1.911 10.368 0 18.773-8.405 18.773-18.773 0-0.824-0.053-1.636-0.156-2.432l0.010 0.094v-298.667c0.093-0.702 0.146-1.514 0.146-2.338 0-10.368-8.405-18.773-18.773-18.773-3.004 0-5.844 0.706-8.362 1.96l0.109-0.049-261.547 149.333c-6.247 4.187-10.304 11.22-10.304 19.2s4.057 15.013 10.221 19.148l0.083 0.052zM332.8 618.667h59.733c7.069 0 12.8-5.731 12.8-12.8v-315.733c0-7.069-5.731-12.8-12.8-12.8h-59.733c-7.069 0-12.8 5.731-12.8 12.8v315.733c0 7.069 5.731 12.8 12.8 12.8z" />
<glyph unicode="&#xe9ad;" glyph-name="step-forward-alt" data-tags="step-forward-alt" d="M346.88 616.533c-2.409 1.206-5.248 1.911-8.253 1.911-10.368 0-18.773-8.405-18.773-18.773 0-0.824 0.053-1.636 0.156-2.432l-0.010 0.094v-298.667c-0.093-0.702-0.146-1.514-0.146-2.338 0-10.368 8.405-18.773 18.773-18.773 3.004 0 5.844 0.706 8.362 1.96l-0.109-0.049 261.547 149.333c6.247 4.187 10.304 11.22 10.304 19.2s-4.057 15.013-10.221 19.148l-0.083 0.052zM631.467 618.667h59.733c7.069 0 12.8-5.731 12.8-12.8v-315.733c0-7.069-5.731-12.8-12.8-12.8h-59.733c-7.069 0-12.8 5.731-12.8 12.8v315.733c0 7.069 5.731 12.8 12.8 12.8z" />
<glyph unicode="&#xe9ae;" glyph-name="forward" data-tags="forward" d="M500.053 467.2l-298.667 149.333c-2.74 1.373-5.969 2.176-9.387 2.176-11.782 0-21.333-9.551-21.333-21.333 0-0.015 0-0.030 0-0.045v0.002-298.667c0-0.013 0-0.028 0-0.043 0-11.782 9.551-21.333 21.333-21.333 3.417 0 6.647 0.804 9.51 2.232l-0.124-0.056 298.667 149.333c7.181 3.536 12.034 10.801 12.034 19.2s-4.854 15.664-11.909 19.144l-0.125 0.056zM841.387 467.2l-298.667 149.333c-2.74 1.373-5.969 2.176-9.387 2.176-11.782 0-21.333-9.551-21.333-21.333 0-0.015 0-0.030 0-0.045v0.002-298.667c0-0.013 0-0.028 0-0.043 0-11.782 9.551-21.333 21.333-21.333 3.417 0 6.647 0.804 9.51 2.232l-0.124-0.056 298.667 149.333c7.181 3.536 12.034 10.801 12.034 19.2s-4.854 15.664-11.909 19.144l-0.125 0.056z" />
<glyph unicode="&#xe9af;" glyph-name="backward" data-tags="backward" d="M523.947 467.2l298.667 149.333c2.74 1.373 5.969 2.176 9.387 2.176 11.782 0 21.333-9.551 21.333-21.333 0-0.015 0-0.030 0-0.045v0.002-298.667c0-0.013 0-0.028 0-0.043 0-11.782-9.551-21.333-21.333-21.333-3.417 0-6.647 0.804-9.51 2.232l0.124-0.056-298.667 149.333c-7.181 3.536-12.034 10.801-12.034 19.2s4.854 15.664 11.909 19.144l0.125 0.056zM182.613 467.2l298.667 149.333c2.74 1.373 5.969 2.176 9.387 2.176 11.782 0 21.333-9.551 21.333-21.333 0-0.015 0-0.030 0-0.045v0.002-298.667c0-0.013 0-0.028 0-0.043 0-11.782-9.551-21.333-21.333-21.333-3.417 0-6.647 0.804-9.51 2.232l0.124-0.056-298.667 149.333c-7.181 3.536-12.034 10.801-12.034 19.2s4.854 15.664 11.909 19.144l0.125 0.056z" />
<glyph unicode="&#xe9b0;" glyph-name="fast-backward" data-tags="fast-backward" d="M826.453 616.533c2.409 1.206 5.248 1.911 8.253 1.911 10.368 0 18.773-8.405 18.773-18.773 0-0.824-0.053-1.636-0.156-2.432l0.010 0.094v-298.667c0.093-0.702 0.146-1.514 0.146-2.338 0-10.368-8.405-18.773-18.773-18.773-3.004 0-5.844 0.706-8.362 1.96l0.109-0.049-261.547 149.333c-6.247 4.187-10.304 11.22-10.304 19.2s4.057 15.013 10.221 19.148l0.083 0.052zM527.787 616.533c2.409 1.206 5.248 1.911 8.253 1.911 10.368 0 18.773-8.405 18.773-18.773 0-0.824-0.053-1.636-0.156-2.432l0.010 0.094v-298.667c0.093-0.702 0.146-1.514 0.146-2.338 0-10.368-8.405-18.773-18.773-18.773-3.004 0-5.844 0.706-8.362 1.96l0.109-0.049-261.547 149.333c-6.247 4.187-10.304 11.22-10.304 19.2s4.057 15.013 10.221 19.148l0.083 0.052zM183.467 618.667h59.733c7.069 0 12.8-5.731 12.8-12.8v-315.733c0-7.069-5.731-12.8-12.8-12.8h-59.733c-7.069 0-12.8 5.731-12.8 12.8v315.733c0 7.069 5.731 12.8 12.8 12.8z" />
<glyph unicode="&#xe9b1;" glyph-name="fast-forward" data-tags="fast-forward" d="M197.547 616.533c-2.409 1.206-5.248 1.911-8.253 1.911-10.368 0-18.773-8.405-18.773-18.773 0-0.824 0.053-1.636 0.156-2.432l-0.010 0.094v-298.667c-0.093-0.702-0.146-1.514-0.146-2.338 0-10.368 8.405-18.773 18.773-18.773 3.004 0 5.844 0.706 8.362 1.96l-0.109-0.049 261.547 149.333c6.247 4.187 10.304 11.22 10.304 19.2s-4.057 15.013-10.221 19.148l-0.083 0.052zM496.213 616.533c-2.409 1.206-5.248 1.911-8.253 1.911-10.368 0-18.773-8.405-18.773-18.773 0-0.824 0.053-1.636 0.156-2.432l-0.010 0.094v-298.667c-0.093-0.702-0.146-1.514-0.146-2.338 0-10.368 8.405-18.773 18.773-18.773 3.004 0 5.844 0.706 8.362 1.96l-0.109-0.049 261.547 149.333c6.247 4.187 10.304 11.22 10.304 19.2s-4.057 15.013-10.221 19.148l-0.083 0.052zM780.8 618.667h59.733c7.069 0 12.8-5.731 12.8-12.8v-315.733c0-7.069-5.731-12.8-12.8-12.8h-59.733c-7.069 0-12.8 5.731-12.8 12.8v315.733c0 7.069 5.731 12.8 12.8 12.8z" />
<glyph unicode="&#xe9b2;" glyph-name="pause" data-tags="pause" d="M362.667 789.333h42.667c23.564 0 42.667-19.103 42.667-42.667v-597.333c0-23.564-19.103-42.667-42.667-42.667h-42.667c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 23.564 19.103 42.667 42.667 42.667zM618.667 789.333h42.667c23.564 0 42.667-19.103 42.667-42.667v-597.333c0-23.564-19.103-42.667-42.667-42.667h-42.667c-23.564 0-42.667 19.103-42.667 42.667v597.333c0 23.564 19.103 42.667 42.667 42.667z" />
<glyph unicode="&#xe9b3;" glyph-name="play" data-tags="play" d="M829.867 485.973l-597.333 298.667c-5.59 2.877-12.198 4.564-19.2 4.564-23.519 0-42.593-19.029-42.666-42.531v-597.34c-0.001-0.089-0.001-0.193-0.001-0.298 0-23.564 19.103-42.667 42.667-42.667 7.003 0 13.611 1.687 19.441 4.677l-0.24-0.112 597.333 298.667c14.123 7.152 23.635 21.559 23.635 38.187s-9.512 31.034-23.391 38.075l-0.243 0.112z" />
</font></defs></svg>

After

Width:  |  Height:  |  Size: 160 KiB

BIN
public/primeicons.ttf Normal file

Binary file not shown.

BIN
public/primeicons.woff Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

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