Showing preview only (200K chars total). Download the full file or copy to clipboard to get everything.
Repository: Vinyzu/chrome-fingerprints
Branch: main
Commit: c6358b6e9dfc
Files: 24
Total size: 191.3 KB
Directory structure:
gitextract_h172g6uk/
├── .flake8
├── .gitattributes
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.md
│ │ ├── feature_request.md
│ │ └── question.md
│ ├── dependabot.yml
│ └── workflows/
│ └── tests.yml
├── .gitignore
├── LICENSE
├── README.md
├── chrome_fingerprints/
│ ├── __init__.py
│ ├── fingerprint_typing.py
│ ├── fingerprints.json.xz
│ ├── fingerprints.py
│ └── vars.py
├── pyproject.toml
├── requirements-test.txt
├── setup.cfg
├── tests/
│ ├── __init__.py
│ ├── conftest.py
│ ├── dev_env.py
│ ├── test_async_fingerprints.py
│ └── test_fingerprints.py
└── tox.ini
================================================
FILE CONTENTS
================================================
================================================
FILE: .flake8
================================================
[flake8]
max-line-length = 200
================================================
FILE: .gitattributes
================================================
# Auto detect text files and perform LF normalization
* text=auto
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.md
================================================
---
name: Bug report
about: Create a report to help us improve
title: '[BUG] '
labels: bug, help wanted
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**Code Sample**
If applicable, add a code sample to replicate the bug.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.md
================================================
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement, question
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
================================================
FILE: .github/ISSUE_TEMPLATE/question.md
================================================
---
name: Question
about: Ask a question about Botright
title: '[Question] '
labels: question, help wanted, documentation
assignees: ''
---
**Describe your quesiton**
A clear and concise question.
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
================================================
FILE: .github/dependabot.yml
================================================
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
================================================
FILE: .github/workflows/tests.yml
================================================
name: Tests & Linting
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox
================================================
FILE: .gitignore
================================================
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
.pybuilder/
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
#poetry.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/
# PyCharm
# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
.idea/
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
10.000 self-collected Chrome Fingerprints.
Copyright (C) 2023 Vinyzu
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
Chrome-Fingerprints Copyright (C) 2023 Vinyzu
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: README.md
================================================
# Chrome-Fingerprints v1.1

#### Chrome-Fingeprints is a dataset of 10k collected Windows Chrome Fingerprints.
#### Usable with an easy-to-use API, available as a compressed (lzma) or full-size Json (view Releases)
#### It uses just three external packages: `OrJson` for faster Json serialization, `DaCite` for dataclass management and `AIOMisc` for async lzma-file reading
---
## Sponsors
[](https://evomi.com?utm_source=github&utm_medium=banner&utm_campaign=Vinyzu-ChromeFingerprints)
[**Evomi**](https://evomi.com?utm_source=github&utm_medium=banner&utm_campaign=Vinyzu-ChromeFingerprints) is your Swiss Quality, affordable Proxy Provider. I can personally recommend them for their High Quality Residential Proxies.
- 🌍 **Global Presence**: Available in 150+ Countries
- ⚡ **Guaranteed Low Latency**
- 🔒 **Swiss Quality and Privacy**
- 🎁 **Free Trial**: No Credit Card Required
- 🛡️ **99.9% Uptime**
- 🤝 **Special IP Pool selection**: Optimize for fast, quality or quantity of ips
- 🔧 **Easy Integration**: Compatible with most software and programming languages
---
## Install it from PyPI
```bash
pip install chrome-fingerprints
```
---
## Usage
```py
from chrome_fingerprints import FingerprintGenerator, ChromeFingerprint
fp_gen = FingerprintGenerator()
fingerprint: ChromeFingerprint = fp_gen.get_fingerprint()
```
## Async Usage
```py
import asyncio
from chrome_fingerprints.fingerprints import AsyncFingerprintGenerator, ChromeFingerprint
async def main():
fp_gen = AsyncFingerprintGenerator()
fingerprint: ChromeFingerprint = await fp_gen.get_fingerprint()
if __name__ == '__main__':
asyncio.run(main())
```
---
## Copyright and License
© [Vinyzu](https://github.com/Vinyzu/)
[GNU GPL](https://choosealicense.com/licenses/gpl-3.0/)
(Commercial Usage is allowed, but source, license and copyright has to made available. Botright does not provide and Liability or Warranty)
---
## Thanks to
[Kaliiiiiiiiii](https://github.com/kaliiiiiiiiii/) (For shared knowledge of Browser automation)
---



[](https://discordapp.com/users/935224495126487150)
[](https://ko-fi.com/vinyzu)
================================================
FILE: chrome_fingerprints/__init__.py
================================================
from .fingerprints import FingerprintGenerator, AsyncFingerprintGenerator
from .fingerprint_typing import ChromeFingerprint
VERSION = 1.1
__all__ = ['FingerprintGenerator', 'AsyncFingerprintGenerator', 'ChromeFingerprint', 'VERSION']
================================================
FILE: chrome_fingerprints/fingerprint_typing.py
================================================
from dataclasses import dataclass
from typing import Dict, List, Any, Union, Optional
@dataclass
class NavigatorPlatform:
name: str
version: str
architecture: str
model: str
bitness: str
wow64: bool
@dataclass(unsafe_hash=True)
class Navigator:
user_agent: str
app_version: str
app_codename: str
app_name: str
product: str
product_sub: str
vendor: str
vendor_sub: str
pdf_viewer_enabled: bool
full_version: str
full_version_list: List[Dict[str, str]]
brands: List[Dict[str, str]]
platform: NavigatorPlatform
@dataclass
class Screen:
avail_height: int
avail_width: int
width: int
height: int
color_depth: int
pixel_depth: int
avail_left: int
avail_top: int
device_pixel_ratio: float
@dataclass
class Plugin:
name: str
file_name: str
description: str
ref: int
mimes: List[int]
@dataclass
class SpeechSynth:
voice_uri: str
name: str
lang: str
local_service: bool
default: bool
@dataclass(unsafe_hash=True)
class WebGL:
vendor: str
renderer: str
unmasked_vendor: str
unmasked_renderer: str
shading_language: str
shading_language2: Optional[str]
version: str
version2: Optional[str]
max_anisotropy: str
extensions: List[str]
extensions2: List[str]
properties: Dict[str, Union[str, int, float, bool, dict, list]] # type: ignore
@dataclass
class WebGPUPerformanceInfo:
vendor: str
architecture: str
device: str
description: str
# @dataclass(unsafe_hash=True)
# class WebGPUPerformance:
# is_fallback_adapter: bool
# features: List[str] # Optional[List[str]]
# info: WebGPUPerformanceInfo # Optional[WebGPUPerformanceInfo]
# limits: Dict[str, str] # Optional[Dict[str, str]]
# @dataclass(unsafe_hash=True)
# class WebGPU:
# enabled: bool
# fallback: Optional[bool]
# preferred_canvas_format: str # Optional[str]
#
# high_performance: WebGPUPerformance
# low_performance: WebGPUPerformance
@dataclass(unsafe_hash=True)
class WebRTCPeerType:
codecs: Any
extensions: Any
@dataclass(unsafe_hash=True)
class WebRTCPeer:
video: WebRTCPeerType
audio: WebRTCPeerType
@dataclass(unsafe_hash=True)
class WebRTC:
receiver: WebRTCPeer
sender: WebRTCPeer
@dataclass(unsafe_hash=True)
class ChromeFingerprint:
hardware_concurrency: int
device_memory: float
do_not_track: bool
hls_enabled: bool
navigator: Navigator
screen: Screen
plugins: List[Plugin]
speech: List[SpeechSynth]
webgl: WebGL
# webgpu: WebGPU
webrtc: WebRTC
fonts: List[Union[str, int]]
codecs: List[str]
headers: List[str]
keyboard: Dict[str, str]
css: Dict[str, Union[str, int]]
audio: Dict[str, Optional[Union[str, int, float]]]
================================================
FILE: chrome_fingerprints/fingerprints.py
================================================
import os
import lzma
import random
import asyncio
from concurrent.futures import ThreadPoolExecutor
from typing import List, Dict, Any, Optional
import orjson
import dacite as dataclass_manager
from aiomisc.io import async_open, Compression
from .fingerprint_typing import ChromeFingerprint
from .vars import codecs, keyboard_codes, headers, webgl_extensions, user_agents, voice_uris, fonts
def index_fingerprint(fingerprint) -> None:
# Codecs
fingerprint["codecs"] = [codecs[codec_index] for codec_index in fingerprint.get("codecs")]
# I know that is the worst one-liner ever :(
for (peer, codec_type) in [("receiver", "video"), ("receiver", "audio"), ("sender", "video"), ("sender", "audio")]:
# if not fingerprint["webrtc"][peer][codec_type].get("codecs"):
# print(fingerprint["webrtc"])
if isinstance(fingerprint["webrtc"][peer][codec_type]["codecs"], dict):
new_codecs = {codec[0]: codecs[codec[1]] if codec[0] == "mimeType" else codec[1]
for codec in fingerprint["webrtc"][peer][codec_type]["codecs"].items()}
else:
new_codecs = fingerprint["webrtc"][peer][codec_type]["codecs"]
fingerprint["webrtc"][peer][codec_type]["codecs"] = new_codecs
# Keyboard Codes
fingerprint["keyboard"] = {key: keyboard_codes[code_index] for (key, code_index) in fingerprint.get("keyboard").items()}
# Headers
fingerprint["headers"] = [headers[header_index] for header_index in fingerprint.get("headers")]
# WebGL Extensions
fingerprint["webgl"]["extensions"] = [webgl_extensions[extension_index] for extension_index in fingerprint["webgl"].get("extensions")]
fingerprint["webgl"]["extensions2"] = [webgl_extensions[extension_index] for extension_index in fingerprint["webgl"].get("extensions2")]
# UserAgent
fingerprint["navigator"]["user_agent"] = user_agents[fingerprint["navigator"]["user_agent"]]
# Speech VoiceURIs
fingerprint["speech"] = [
{
"voice_uri": voice_uris[speech_synth.get("voice_uri")],
"name": voice_uris[speech_synth.get("voice_uri")],
"lang": speech_synth.get("lang"),
"local_service": speech_synth.get("local_service"),
"default": speech_synth.get("default"),
} for speech_synth in fingerprint.get("speech")
]
# Fonts
fingerprint["fonts"] = [fonts[font_index] if (isinstance(font_index, int) and font_index < len(fonts)) else font_index for font_index in fingerprint.get("fonts")]
class FingerprintGenerator:
def __init__(self) -> None:
self.fingerprints: Optional[List[Dict[str, Any]]] = None
# Preloading: Fingerprint Decompression & Json Loading takes ~2 seconds
self.executor = ThreadPoolExecutor(max_workers=1)
try:
self.fingerprint_loading_feature = self.executor.submit(self.initialize_fingerprints)
except Exception as e:
self.executor.shutdown(wait=True, cancel_futures=True)
raise e
def initialize_fingerprints(self) -> None:
dir_path = os.path.dirname(os.path.realpath(__file__))
with lzma.open(os.path.join(dir_path, "fingerprints.json.xz"), 'rb') as f:
json_data = f.read()
self.fingerprints = orjson.loads(json_data)
def get_fingerprint(self, fingerprint_index: Optional[int] = None) -> ChromeFingerprint:
try:
if not self.fingerprint_loading_feature.done():
self.fingerprint_loading_feature.result(timeout=10)
assert self.fingerprints
except Exception as e:
self.executor.shutdown(wait=True, cancel_futures=True)
raise e
if fingerprint_index:
fingerprint = self.fingerprints[fingerprint_index]
else:
fingerprint = random.choice(self.fingerprints)
# Check if fingerprint was already loaded
if not isinstance(fingerprint["navigator"]["user_agent"], str): # Checking if user agent is not already indexed
index_fingerprint(fingerprint)
chrome_fp = dataclass_manager.from_dict(ChromeFingerprint, fingerprint)
return chrome_fp
class AsyncFingerprintGenerator:
def __init__(self):
self.fingerprints: Optional[List[Dict[str, Any]]] = None
loop = asyncio.get_running_loop()
self.fingerprint_loading_feature = loop.create_task(self.initialize_fingerprints())
async def initialize_fingerprints(self) -> None:
dir_path = os.path.dirname(os.path.realpath(__file__))
async with async_open(os.path.join(dir_path, "fingerprints.json.xz"), 'rb', compression=Compression.LZMA) as f:
json_data = await f.read()
self.fingerprints = orjson.loads(json_data)
async def get_fingerprint(self, fingerprint_index: Optional[int] = None) -> ChromeFingerprint:
if not self.fingerprint_loading_feature.done():
await self.fingerprint_loading_feature
assert self.fingerprints
if fingerprint_index:
fingerprint = self.fingerprints[fingerprint_index]
else:
fingerprint = random.choice(self.fingerprints)
# Check if fingerprint was already loaded
if not isinstance(fingerprint["navigator"]["user_agent"], str): # Checking if user agent is not already indexed
index_fingerprint(fingerprint)
chrome_fp = dataclass_manager.from_dict(ChromeFingerprint, fingerprint)
return chrome_fp
================================================
FILE: chrome_fingerprints/vars.py
================================================
codecs = ['audio/ogg; codecs=vorbis', 'audio/ogg; codecs=flac', 'audio/mp4; codecs="mp4a.40.2"', 'audio/mpeg; codecs="mp3"', 'video/ogg; codecs="theora"', 'video/mp4; codecs="avc1.42E01E"',
'video/VP8', 'video/rtx', 'video/VP9', 'video/H264', 'video/AV1', 'video/red', 'video/ulpfec', 'video/flexfec-03', 'audio/opus', 'audio/red', 'audio/G722', 'audio/PCMU', 'audio/PCMA',
'audio/CN', 'audio/telephone-event', 'audio/ISAC', 'video/AV1X']
keyboard_codes = ['KeyE', 'KeyD', 'KeyU', 'Minus', 'KeyH', 'KeyZ', 'Equal', 'KeyP', 'Semicolon', 'BracketRight', 'Slash', 'BracketLeft', 'KeyL', 'Digit8', 'KeyW', 'KeyS', 'Digit5', 'Digit9', 'KeyO',
'Period', 'Digit6', 'KeyV', 'Digit3', 'Backquote', 'KeyG', 'KeyJ', 'KeyQ', 'Digit1', 'KeyT', 'KeyY', 'Quote', 'IntlBackslash', 'Backslash', 'KeyK', 'KeyF', 'KeyI', 'KeyR', 'KeyX',
'KeyA', 'Digit2', 'Digit7', 'KeyM', 'Digit4', 'Digit0', 'KeyN', 'KeyB', 'KeyC', 'Comma', 'IntlYen', 'IntlRo']
headers = ['Host', 'X-Real-Ip', 'X-Forwarded-For', 'Connection', 'Content-Length', 'Cache-Control', 'Sec-Ch-Ua', 'Accept-Datetime', 'X-Csrf-Token', 'If-Unmodified-Since', 'Authorization',
'X-Requested-With', 'If-Modified-Since', 'Max-Forwards', 'X-Http-Method-Override', 'X-Request-Id', 'Sec-Ch-Ua-Platform', 'Pragma', 'Upgrade-Insecure-Requests', 'Sec-Ch-Ua-Mobile',
'User-Agent', 'Content-Type', 'If-None-Match', 'If-Match', 'If-Range', 'Range', 'Accept', 'Origin', 'Sec-Fetch-Site', 'Sec-Fetch-Mode', 'Sec-Fetch-Dest', 'Referer', 'Accept-Encoding',
'Accept-Language', 'Dnt', 'Sec-Gpc', 'Cookie', 'Via', 'X-Auth-Sessionid', 'X-Bluecoat-Via', 'Account', 'Surrogate-Capability', 'Save-Data']
codecs_extensions = ['urn:ietf:params:rtp-hdrext:toffset', 'http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time', 'urn:3gpp:video-orientation',
'http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01', 'http://www.webrtc.org/experiments/rtp-hdrext/playout-delay',
'http://www.webrtc.org/experiments/rtp-hdrext/video-content-type', 'http://www.webrtc.org/experiments/rtp-hdrext/video-timing',
'http://www.webrtc.org/experiments/rtp-hdrext/color-space', 'urn:ietf:params:rtp-hdrext:sdes:mid', 'urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id',
'urn:ietf:params:rtp-hdrext:sdes:repaired-rtp-stream-id', 'urn:ietf:params:rtp-hdrext:ssrc-audio-level']
webgl_extensions = ['ANGLE_instanced_arrays', 'EXT_blend_minmax', 'EXT_color_buffer_half_float', 'EXT_disjoint_timer_query', 'EXT_float_blend', 'EXT_frag_depth', 'EXT_shader_texture_lod',
'EXT_texture_compression_bptc', 'EXT_texture_compression_rgtc', 'EXT_texture_filter_anisotropic', 'EXT_sRGB', 'KHR_parallel_shader_compile', 'OES_element_index_uint',
'OES_fbo_render_mipmap', 'OES_standard_derivatives', 'OES_texture_float', 'OES_texture_float_linear', 'OES_texture_half_float', 'OES_texture_half_float_linear',
'OES_vertex_array_object', 'WEBGL_color_buffer_float', 'WEBGL_compressed_texture_s3tc', 'WEBGL_compressed_texture_s3tc_srgb', 'WEBGL_debug_renderer_info', 'WEBGL_debug_shaders',
'WEBGL_depth_texture', 'WEBGL_draw_buffers', 'WEBGL_lose_context', 'WEBGL_multi_draw', 'EXT_color_buffer_float', 'EXT_disjoint_timer_query_webgl2', 'EXT_texture_norm16',
'OES_draw_buffers_indexed', 'OVR_multiview2', 'WEBGL_provoking_vertex', 'WEBGL_clip_cull_distance', 'WEBGL_compressed_texture_astc', 'WEBGL_compressed_texture_etc',
'WEBGL_compressed_texture_etc1', 'WEBKIT_EXT_texture_filter_anisotropic', 'WEBKIT_WEBGL_compressed_texture_s3tc', 'WEBKIT_WEBGL_depth_texture', 'WEBKIT_WEBGL_lose_context', '',
'WEBGL_video_texture', 'WEBGL_webcodecs_video_frame', 'WEBGL_draw_instanced_base_vertex_base_instance', 'WEBGL_multi_draw_instanced_base_vertex_base_instance',
'WEBGL_shader_pixel_local_storage', 'EXT_clip_control', 'EXT_depth_clamp', 'EXT_polygon_offset_clamp', 'EXT_texture_mirror_clamp_to_edge', 'WEBGL_polygon_mode',
'EXT_conservative_depth', 'EXT_render_snorm', 'NV_shader_noperspective_interpolation', 'OES_sample_variables', 'OES_shader_multisample_interpolation', 'WEBGL_stencil_texturing',
'EXT_blend_func_extended']
user_agents = ['Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 ('
'KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.82',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.46',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/405',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Iron Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.69',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.188',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.67',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/121',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.43',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.76',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/141',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.69',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/330',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.79',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.60',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.62',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/332',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.183',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Atom/26.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.58',
'Mozilla/5.0 (Windows; U; Windows NT 5.0) AppleWebKit/537.2.2 (KHTML, like Gecko) Chrome/30.0.819.0 Safari/537.2.2',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.76',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/1',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.5615.121 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.31',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/12',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.54',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 AVG/116.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.61',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.88 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/253',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.200',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.41',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/201',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Edg/116.0.1938.81',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.57',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/24',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.66 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/25',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 CCleaner/118.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4817.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Iron Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Atom/26.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 ',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/114',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.50',
'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1474.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/85',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.81 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 SberBrowser/3.1.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.41',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.86',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.80 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.21929.110 Safari/537.36 Avast/115.0.21929.110',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 Edg/110.0.1587.57',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/388',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/368',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4549.3 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.47',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/320',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 SberBrowser/9.2.63.1',
'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.140',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/13',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 Edg/92.0.902.67',
'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.88 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/402',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 ',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/221',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/287',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.199 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 SberBrowser/7.1.145.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4530.3 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.57',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/35',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/316',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/383',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/321',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/144',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) SFive/73.0 Chrome/73.0.3683.104 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/129',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/322',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/384',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36 Edg/89.0.774.68',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.540.102 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.21984.171 Safari/537.36 Avast/115.0.21984.171',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/356',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Iron Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/327',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 CCleaner/116.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4580.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 Edg/112.0.1722.68',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/318',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 Avast/116.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 Edg/118.0.2088.33',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/251',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 AVG/115.0.21984.172',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36 Edg/84.0.522.52',
'Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.1210.39 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/275',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/183',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36 AVG/118.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/297',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4788.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.82 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36 Edg/100.0.1185.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/77',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/60',
'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows; U; Windows NT 6.1) AppleWebKit/536.0.1 (KHTML, like Gecko) Chrome/17.0.867.0 Safari/536.0.1',
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/323',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/365',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/352',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Iron Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/105',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/63',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/407',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.80 Safari/537.36 Edg/98.0.1108.50',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/268',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/139',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4350.0 Iron Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/381',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/227',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/106',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/132',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/421',
'Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/537.1.1 (KHTML, like Gecko) Chrome/13.0.810.0 Safari/537.1.1',
'Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/535.0.1 (KHTML, like Gecko) Chrome/19.0.835.0 Safari/535.0.1',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 AVG/117.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/260',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/202',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4270.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/392',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/285',
'Mozilla/5.0 (Windows NT 10.0; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.5666.197 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/999.0.9999.999 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.164 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/292',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 AVG/119.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/325',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/57',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 CCleaner/119.0.0.0',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/258',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/110',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 ',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36',
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.82 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.81 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/11',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36',
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36 Acunetix-Deepscan/86',
'Mozilla/5.0 (Windows; U; Windows NT 5.1) AppleWebKit/535.0.1 (KHTML, like Gecko) Chrome/36.0.812.0 Safari/535.0.1']
voice_uris = ['Microsoft Adam - Polish (Poland)', 'Microsoft Paulina - Polish (Poland)', 'Google Deutsch', 'Google US English', 'Google UK English Female', 'Google UK English Male', 'Google español',
'Google español de Estados Unidos', 'Google français', 'Google हिन्दी', 'Google Bahasa Indonesia', 'Google italiano', 'Google 日本語', 'Google 한국의', 'Google Nederlands', 'Google polski',
'Google português do Brasil', 'Google русский', 'Google\xa0普通话(中国大陆)', 'Google\xa0粤語(香港)', 'Google 國語(臺灣)', 'Microsoft David - English (United States)',
'Microsoft Mark - English (United States)', 'Microsoft Zira - English (United States)', 'Microsoft Irina - Russian (Russia)', 'Microsoft Pavel - Russian (Russia)',
'Microsoft Hazel - English (United Kingdom)', 'Microsoft Susan - English (United Kingdom)', 'Microsoft George - English (United Kingdom)',
'Microsoft Adri Online (Natural) - Afrikaans (South Africa)', 'Microsoft Willem Online (Natural) - Afrikaans (South Africa)', 'Microsoft Anila Online (Natural) - Albanian (Albania)',
'Microsoft Ilir Online (Natural) - Albanian (Albania)', 'Microsoft Ameha Online (Natural) - Amharic (Ethiopia)', 'Microsoft Mekdes Online (Natural) - Amharic (Ethiopia)',
'Microsoft Amina Online (Natural) - Arabic (Algeria)', 'Microsoft Ismael Online (Natural) - Arabic (Algeria)', 'Microsoft Ali Online (Natural) - Arabic (Bahrain)',
'Microsoft Laila Online (Natural) - Arabic (Bahrain)', 'Microsoft Salma Online (Natural) - Arabic (Egypt)', 'Microsoft Shakir Online (Natural) - Arabic (Egypt)',
'Microsoft Bassel Online (Natural) - Arabic (Iraq)', 'Microsoft Rana Online (Natural) - Arabic (Iraq)', 'Microsoft Sana Online (Natural) - Arabic (Jordan)',
'Microsoft Taim Online (Natural) - Arabic (Jordan)', 'Microsoft Fahed Online (Natural) - Arabic (Kuwait)', 'Microsoft Noura Online (Natural) - Arabic (Kuwait)',
'Microsoft Layla Online (Natural) - Arabic (Lebanon)', 'Microsoft Rami Online (Natural) - Arabic (Lebanon)', 'Microsoft Iman Online (Natural) - Arabic (Libya)',
'Microsoft Omar Online (Natural) - Arabic (Libya)', 'Microsoft Jamal Online (Natural) - Arabic (Morocco)', 'Microsoft Mouna Online (Natural) - Arabic (Morocco)',
'Microsoft Abdullah Online (Natural) - Arabic (Oman)', 'Microsoft Aysha Online (Natural) - Arabic (Oman)', 'Microsoft Amal Online (Natural) - Arabic (Qatar)',
'Microsoft Moaz Online (Natural) - Arabic (Qatar)', 'Microsoft Hamed Online (Natural) - Arabic (Saudi Arabia)', 'Microsoft Zariyah Online (Natural) - Arabic (Saudi Arabia)',
'Microsoft Amany Online (Natural) - Arabic (Syria)', 'Microsoft Laith Online (Natural) - Arabic (Syria)', 'Microsoft Hedi Online (Natural) - Arabic (Tunisia)',
'Microsoft Reem Online (Natural) - Arabic (Tunisia)', 'Microsoft Fatima Online (Natural) - Arabic (United Arab Emirates)',
'Microsoft Hamdan Online (Natural) - Arabic (United Arab Emirates)', 'Microsoft Maryam Online (Natural) - Arabic (Yemen)', 'Microsoft Saleh Online (Natural) - Arabic (Yemen)',
'Microsoft Babek Online (Natural) - Azerbaijani (Azerbaijan)', 'Microsoft Banu Online (Natural) - Azerbaijani (Azerbaijan)', 'Microsoft Nabanita Online (Natural) - Bangla (Bangladesh)',
'Microsoft Pradeep Online (Natural) - Bangla (Bangladesh)', 'Microsoft Bashkar Online (Natural) - Bangla (India)', 'Microsoft Tanishaa Online (Natural) - Bengali (India)',
'Microsoft Goran Online (Natural) - Bosnian (Bosnia)', 'Microsoft Vesna Online (Natural) - Bosnian (Bosnia)', 'Microsoft Borislav Online (Natural) - Bulgarian (Bulgaria)',
'Microsoft Kalina Online (Natural) - Bulgarian (Bulgaria)', 'Microsoft Nilar Online (Natural) - Burmese (Myanmar)', 'Microsoft Thiha Online (Natural) - Burmese (Myanmar)',
'Microsoft Enric Online (Natural) - Catalan (Spain)', 'Microsoft Joana Online (Natural) - Catalan (Spain)', 'Microsoft HiuGaai Online (Natural) - Chinese (Cantonese Traditional)',
'Microsoft HiuMaan Online (Natural) - Chinese (Hong Kong)', 'Microsoft WanLung Online (Natural) - Chinese (Hong Kong)', 'Microsoft Xiaoxiao Online (Natural) - Chinese (Mainland)',
'Microsoft Xiaoyi Online (Natural) - Chinese (Mainland)', 'Microsoft Yunjian Online (Natural) - Chinese (Mainland)', 'Microsoft Yunxi Online (Natural) - Chinese (Mainland)',
'Microsoft Yunxia Online (Natural) - Chinese (Mainland)', 'Microsoft Yunyang Online (Natural) - Chinese (Mainland)',
'Microsoft Xiaobei Online (Natural) - Chinese (Northeastern Mandarin)', 'Microsoft HsiaoChen Online (Natural) - Chinese (Taiwan)', 'Microsoft YunJhe Online (Natural) - Chinese (Taiwan)',
'Microsoft HsiaoYu Online (Natural) - Chinese (Taiwanese Mandarin)', 'Microsoft Xiaoni Online (Natural) - Chinese (Zhongyuan Mandarin Shaanxi)',
'Microsoft Gabrijela Online (Natural) - Croatian (Croatia)', 'Microsoft Srecko Online (Natural) - Croatian (Croatia)', 'Microsoft Antonin Online (Natural) - Czech (Czech)',
'Microsoft Vlasta Online (Natural) - Czech (Czech)', 'Microsoft Christel Online (Natural) - Danish (Denmark)', 'Microsoft Jeppe Online (Natural) - Danish (Denmark)',
'Microsoft Arnaud Online (Natural) - Dutch (Belgium)', 'Microsoft Dena Online (Natural) - Dutch (Belgium)', 'Microsoft Colette Online (Natural) - Dutch (Netherlands)',
'Microsoft Fenna Online (Natural) - Dutch (Netherlands)', 'Microsoft Maarten Online (Natural) - Dutch (Netherlands)', 'Microsoft Natasha Online (Natural) - English (Australia)',
'Microsoft William Online (Natural) - English (Australia)', 'Microsoft Clara Online (Natural) - English (Canada)', 'Microsoft Liam Online (Natural) - English (Canada)',
'Microsoft Sam Online (Natural) - English (Hongkong)', 'Microsoft Yan Online (Natural) - English (Hongkong)', 'Microsoft Neerja Online (Natural) - English (India) (Preview)',
'Microsoft Neerja Online (Natural) - English (India)', 'Microsoft Prabhat Online (Natural) - English (India)', 'Microsoft Connor Online (Natural) - English (Ireland)',
'Microsoft Emily Online (Natural) - English (Ireland)', 'Microsoft Asilia Online (Natural) - English (Kenya)', 'Microsoft Chilemba Online (Natural) - English (Kenya)',
'Microsoft Mitchell Online (Natural) - English (New Zealand)', 'Microsoft Molly Online (Natural) - English (New Zealand)', 'Microsoft Abeo Online (Natural) - English (Nigeria)',
'Microsoft Ezinne Online (Natural) - English (Nigeria)', 'Microsoft James Online (Natural) - English (Philippines)', 'Microsoft Rosa Online (Natural) - English (Philippines)',
'Microsoft Luna Online (Natural) - English (Singapore)', 'Microsoft Wayne Online (Natural) - English (Singapore)', 'Microsoft Leah Online (Natural) - English (South Africa)',
'Microsoft Luke Online (Natural) - English (South Africa)', 'Microsoft Elimu Online (Natural) - English (Tanzania)', 'Microsoft Imani Online (Natural) - English (Tanzania)',
'Microsoft Libby Online (Natural) - English (United Kingdom)', 'Microsoft Maisie Online (Natural) - English (United Kingdom)',
'Microsoft Ryan Online (Natural) - English (United Kingdom)', 'Microsoft Sonia Online (Natural) - English (United Kingdom)',
'Microsoft Thomas Online (Natural) - English (United Kingdom)', 'Microsoft Aria Online (Natural) - English (United States)', 'Microsoft Ana Online (Natural) - English (United States)',
'Microsoft Christopher Online (Natural) - English (United States)', 'Microsoft Eric Online (Natural) - English (United States)',
'Microsoft Guy Online (Natural) - English (United States)', 'Microsoft Jenny Online (Natural) - English (United States)', 'Microsoft Michelle Online (Natural) - English (United States)',
'Microsoft Roger Online (Natural) - English (United States)', 'Microsoft Steffan Online (Natural) - English (United States)', 'Microsoft Anu Online (Natural) - Estonian (Estonia)',
'Microsoft Kert Online (Natural) - Estonian (Estonia)', 'Microsoft Angelo Online (Natural) - Filipino (Philippines)', 'Microsoft Blessica Online (Natural) - Filipino (Philippines)',
'Microsoft Harri Online (Natural) - Finnish (Finland)', 'Microsoft Noora Online (Natural) - Finnish (Finland)', 'Microsoft Charline Online (Natural) - French (Belgium)',
'Microsoft Gerard Online (Natural) - French (Belgium)', 'Microsoft Antoine Online (Natural) - French (Canada)', 'Microsoft Jean Online (Natural) - French (Canada)',
'Microsoft Sylvie Online (Natural) - French (Canada)', 'Microsoft Denise Online (Natural) - French (France)', 'Microsoft Eloise Online (Natural) - French (France)',
'Microsoft Henri Online (Natural) - French (France)', 'Microsoft Ariane Online (Natural) - French (Switzerland)', 'Microsoft Fabrice Online (Natural) - French (Switzerland)',
'Microsoft Roi Online (Natural) - Galician (Spain)', 'Microsoft Sabela Online (Natural) - Galician (Spain)', 'Microsoft Eka Online (Natural) - Georgian (Georgia)',
'Microsoft Giorgi Online (Natural) - Georgian (Georgia)', 'Microsoft Ingrid Online (Natural) - German (Austria)', 'Microsoft Jonas Online (Natural) - German (Austria)',
'Microsoft Amala Online (Natural) - German (Germany)', 'Microsoft Conrad Online (Natural) - German (Germany)', 'Microsoft Katja Online (Natural) - German (Germany)',
'Microsoft Killian Online (Natural) - German (Germany)', 'Microsoft Jan Online (Natural) - German (Switzerland)', 'Microsoft Leni Online (Natural) - German (Switzerland)',
'Microsoft Athina Online (Natural) - Greek (Greece)', 'Microsoft Nestoras Online (Natural) - Greek (Greece)', 'Microsoft Dhwani Online (Natural) - Gujarati (India)',
'Microsoft Niranjan Online (Natural) - Gujarati (India)', 'Microsoft Avri Online (Natural) - Hebrew (Israel)', 'Microsoft Hila Online (Natural) - Hebrew (Israel)',
'Microsoft Madhur Online (Natural) - Hindi (India)', 'Microsoft Swara Online (Natural) - Hindi (India)', 'Microsoft Noemi Online (Natural) - Hungarian (Hungary)',
'Microsoft Tamas Online (Natural) - Hungarian (Hungary)', 'Microsoft Gudrun Online (Natural) - Icelandic (Iceland)', 'Microsoft Gunnar Online (Natural) - Icelandic (Iceland)',
'Microsoft Ardi Online (Natural) - Indonesian (Indonesia)', 'Microsoft Gadis Online (Natural) - Indonesian (Indonesia)', 'Microsoft Colm Online (Natural) - Irish (Ireland)',
'Microsoft Orla Online (Natural) - Irish (Ireland)', 'Microsoft Diego Online (Natural) - Italian (Italy)', 'Microsoft Elsa Online (Natural) - Italian (Italy)',
'Microsoft Isabella Online (Natural) - Italian (Italy)', 'Microsoft Keita Online (Natural) - Japanese (Japan)', 'Microsoft Nanami Online (Natural) - Japanese (Japan)',
'Microsoft Dimas Online (Natural) - Javanese (Indonesia)', 'Microsoft Siti Online (Natural) - Javanese (Indonesia)', 'Microsoft Gagan Online (Natural) - Kannada (India)',
'Microsoft Sapna Online (Natural) - Kannada (India)', 'Microsoft Aigul Online (Natural) - Kazakh (Kazakhstan)', 'Microsoft Daulet Online (Natural) - Kazakh (Kazakhstan)',
'Microsoft Piseth Online (Natural) - Khmer (Cambodia)', 'Microsoft Sreymom Online (Natural) - Khmer (Cambodia)', 'Microsoft InJoon Online (Natural) - Korean (Korea)',
'Microsoft SunHi Online (Natural) - Korean (Korea)', 'Microsoft Chanthavong Online (Natural) - Lao (Laos)', 'Microsoft Keomany Online (Natural) - Lao (Laos)',
'Microsoft Everita Online (Natural) - Latvian (Latvia)', 'Microsoft Nils Online (Natural) - Latvian (Latvia)', 'Microsoft Leonas Online (Natural) - Lithuanian (Lithuania)',
'Microsoft Ona Online (Natural) - Lithuanian (Lithuania)', 'Microsoft Aleksandar Online (Natural) - Macedonian (Republic of North Macedonia)',
'Microsoft Marija Online (Natural) - Macedonian (Republic of North Macedonia)', 'Microsoft Osman Online (Natural) - Malay (Malaysia)',
'Microsoft Yasmin Online (Natural) - Malay (Malaysia)', 'Microsoft Midhun Online (Natural) - Malayalam (India)', 'Microsoft Sobhana Online (Natural) - Malayalam (India)',
'Microsoft Grace Online (Natural) - Maltese (Malta)', 'Microsoft Joseph Online (Natural) - Maltese (Malta)', 'Microsoft Aarohi Online (Natural) - Marathi (India)',
'Microsoft Manohar Online (Natural) - Marathi (India)', 'Microsoft Bataa Online (Natural) - Mongolian (Mongolia)', 'Microsoft Yesui Online (Natural) - Mongolian (Mongolia)',
'Microsoft Hemkala Online (Natural) - Nepali (Nepal)', 'Microsoft Sagar Online (Natural) - Nepali (Nepal)', 'Microsoft Finn Online (Natural) - Norwegian (Bokmål Norway)',
'Microsoft Pernille Online (Natural) - Norwegian (Bokmål, Norway)', 'Microsoft GulNawaz Online (Natural) - Pashto (Afghanistan)',
'Microsoft Latifa Online (Natural) - Pashto (Afghanistan)', 'Microsoft Dilara Online (Natural) - Persian (Iran)', 'Microsoft Farid Online (Natural) - Persian (Iran)',
'Microsoft Marek Online (Natural) - Polish (Poland)', 'Microsoft Zofia Online (Natural) - Polish (Poland)', 'Microsoft Antonio Online (Natural) - Portuguese (Brazil)',
'Microsoft Francisca Online (Natural) - Portuguese (Brazil)', 'Microsoft Duarte Online (Natural) - Portuguese (Portugal)', 'Microsoft Raquel Online (Natural) - Portuguese (Portugal)',
'Microsoft Alina Online (Natural) - Romanian (Romania)', 'Microsoft Emil Online (Natural) - Romanian (Romania)', 'Microsoft Dmitry Online (Natural) - Russian (Russia)',
'Microsoft Svetlana Online (Natural) - Russian (Russia)', 'Microsoft Nicholas Online (Natural) - Serbian (Serbia)', 'Microsoft Sophie Online (Natural) - Serbian (Serbia)',
'Microsoft Sameera Online (Natural) - Sinhala (Sri Lanka)', 'Microsoft Thilini Online (Natural) - Sinhala (Sri Lanka)', 'Microsoft Lukas Online (Natural) - Slovak (Slovakia)',
'Microsoft Viktoria Online (Natural) - Slovak (Slovakia)', 'Microsoft Petra Online (Natural) - Slovenian (Slovenia)', 'Microsoft Rok Online (Natural) - Slovenian (Slovenia)',
'Microsoft Muuse Online (Natural) - Somali (Somalia)', 'Microsoft Ubax Online (Natural) - Somali (Somalia)', 'Microsoft Elena Online (Natural) - Spanish (Argentina)',
'Microsoft Tomas Online (Natural) - Spanish (Argentina)', 'Microsoft Marcelo Online (Natural) - Spanish (Bolivia)', 'Microsoft Sofia Online (Natural) - Spanish (Bolivia)',
'Microsoft Catalina Online (Natural) - Spanish (Chile)', 'Microsoft Lorenzo Online (Natural) - Spanish (Chile)', 'Microsoft Gonzalo Online (Natural) - Spanish (Colombia)',
'Microsoft Salome Online (Natural) - Spanish (Colombia)', 'Microsoft Juan Online (Natural) - Spanish (Costa Rica)', 'Microsoft Maria Online (Natural) - Spanish (Costa Rica)',
'Microsoft Belkys Online (Natural) - Spanish (Cuba)', 'Microsoft Manuel Online (Natural) - Spanish (Cuba)', 'Microsoft Emilio Online (Natural) - Spanish (Dominican Republic)',
'Microsoft Ramona Online (Natural) - Spanish (Dominican Republic)', 'Microsoft Andrea Online (Natural) - Spanish (Ecuador)', 'Microsoft Luis Online (Natural) - Spanish (Ecuador)',
'Microsoft Lorena Online (Natural) - Spanish (El Salvador)', 'Microsoft Rodrigo Online (Natural) - Spanish (El Salvador)',
'Microsoft Javier Online (Natural) - Spanish (Equatorial Guinea)', 'Microsoft Teresa Online (Natural) - Spanish (Equatorial Guinea)',
'Microsoft Andres Online (Natural) - Spanish (Guatemala)', 'Microsoft Marta Online (Natural) - Spanish (Guatemala)', 'Microsoft Carlos Online (Natural) - Spanish (Honduras)',
'Microsoft Karla Online (Natural) - Spanish (Honduras)', 'Microsoft Dalia Online (Natural) - Spanish (Mexico)', 'Microsoft Jorge Online (Natural) - Spanish (Mexico)',
'Microsoft Federico Online (Natural) - Spanish (Nicaragua)', 'Microsoft Yolanda Online (Natural) - Spanish (Nicaragua)', 'Microsoft Margarita Online (Natural) - Spanish (Panama)',
'Microsoft Roberto Online (Natural) - Spanish (Panama)', 'Microsoft Mario Online (Natural) - Spanish (Paraguay)', 'Microsoft Tania Online (Natural) - Spanish (Paraguay)',
'Microsoft Alex Online (Natural) - Spanish (Peru)', 'Microsoft Camila Online (Natural) - Spanish (Peru)', 'Microsoft Karina Online (Natural) - Spanish (Puerto Rico)',
'Microsoft Victor Online (Natural) - Spanish (Puerto Rico)', 'Microsoft Alvaro Online (Natural) - Spanish (Spain)', 'Microsoft Elvira Online (Natural) - Spanish (Spain)',
'Microsoft Alonso Online (Natural) - Spanish (United States)', 'Microsoft Paloma Online (Natural) - Spanish (United States)', 'Microsoft Mateo Online (Natural) - Spanish (Uruguay)',
'Microsoft Valentina Online (Natural) - Spanish (Uruguay)', 'Microsoft Paola Online (Natural) - Spanish (Venezuela)', 'Microsoft Sebastian Online (Natural) - Spanish (Venezuela)',
'Microsoft Jajang Online (Natural) - Sundanese (Indonesia)', 'Microsoft Tuti Online (Natural) - Sundanese (Indonesia)', 'Microsoft Rafiki Online (Natural) - Swahili (Kenya)',
'Microsoft Zuri Online (Natural) - Swahili (Kenya)', 'Microsoft Daudi Online (Natural) - Swahili (Tanzania)', 'Microsoft Rehema Online (Natural) - Swahili (Tanzania)',
'Microsoft Mattias Online (Natural) - Swedish (Sweden)', 'Microsoft Sofie Online (Natural) - Swedish (Sweden)', 'Microsoft Pallavi Online (Natural) - Tamil (India)',
'Microsoft Valluvar Online (Natural) - Tamil (India)', 'Microsoft Kani Online (Natural) - Tamil (Malaysia)', 'Microsoft Surya Online (Natural) - Tamil (Malaysia)',
'Microsoft Anbu Online (Natural) - Tamil (Singapore)', 'Microsoft Venba Online (Natural) - Tamil (Singapore)', 'Microsoft Kumar Online (Natural) - Tamil (Sri Lanka)',
'Microsoft Saranya Online (Natural) - Tamil (Sri Lanka)', 'Microsoft Mohan Online (Natural) - Telugu (India)', 'Microsoft Shruti Online (Natural) - Telugu (India)',
'Microsoft Niwat Online (Natural) - Thai (Thailand)', 'Microsoft Premwadee Online (Natural) - Thai (Thailand)', 'Microsoft Ahmet Online (Natural) - Turkish (Turkey)',
'Microsoft Emel Online (Natural) - Turkish (Turkey)', 'Microsoft Ostap Online (Natural) - Ukrainian (Ukraine)', 'Microsoft Polina Online (Natural) - Ukrainian (Ukraine)',
'Microsoft Gul Online (Natural) - Urdu (India)', 'Microsoft Salman Online (Natural) - Urdu (India)', 'Microsoft Asad Online (Natural) - Urdu (Pakistan)',
'Microsoft Uzma Online (Natural) - Urdu (Pakistan)', 'Microsoft Madina Online (Natural) - Uzbek (Uzbekistan)', 'Microsoft Sardor Online (Natural) - Uzbek (Uzbekistan)',
'Microsoft HoaiMy Online (Natural) - Vietnamese (Vietnam)', 'Microsoft NamMinh Online (Natural) - Vietnamese (Vietnam)', 'Microsoft Aled Online (Natural) - Welsh (United Kingdom)',
'Microsoft Nia Online (Natural) - Welsh (United Kingdom)', 'Microsoft Thando Online (Natural) - Zulu (South Africa)', 'Microsoft Themba Online (Natural) - Zulu (South Africa)',
'Microsoft Helena - Spanish (Spain)', 'Microsoft Laura - Spanish (Spain)', 'Microsoft Pablo - Spanish (Spain)', 'Microsoft Haruka Desktop - Japanese',
'Microsoft Zira Desktop - English (United States)', 'Microsoft Irina Desktop - Russian', 'Microsoft Andika - Indonesian (Indonesia)', 'Microsoft Pattara - Thai (Thailand)',
'Microsoft An - Vietnamese (Vietnam)', 'Microsoft Huihui - Chinese (Simplified, PRC)', 'Microsoft Kangkang - Chinese (Simplified, PRC)', 'Microsoft Yaoyao - Chinese (Simplified, PRC)',
'Microsoft Hanhan - Chinese (Traditional, Taiwan)', 'Microsoft Yating - Chinese (Traditional, Taiwan)', 'Microsoft Zhiwei - Chinese (Traditional, Taiwan)',
'Microsoft HanHan Online - Chinese (Taiwan)', 'Microsoft Tracy Online - Chinese (Hong Kong)', 'Microsoft Priya Online - English (India)', 'Microsoft Heather Online - English (Canada)',
'Microsoft Ekaterina Online - Russian (Russia)', 'Microsoft Hayley Online - English (Australia)', 'Microsoft Hanna Online - Dutch (Netherlands)',
'Microsoft Paulina Online - Polish (Poland)', 'Microsoft David Mobile - English (United States)', 'Microsoft Mark Mobile - English (United States)',
'Microsoft Zira Mobile - English (United States)', 'Microsoft Daniel - Portuguese (Brazil)', 'Microsoft Maria - Portuguese (Brazil)', 'Microsoft Cosimo - Italian (Italy)',
'Microsoft Elsa - Italian (Italy)', 'Microsoft Irina Mobile - Russian (Russia)', 'Microsoft Pavel Mobile - Russian (Russia)', 'Microsoft Anna - English (United States)',
'Microsoft Tolga - Turkish (Turkey)', 'Microsoft Haruka - Japanese (Japan)', 'Microsoft Ichiro - Japanese (Japan)', 'Microsoft Sayaka - Japanese (Japan)',
'Microsoft Ayumi - Japanese (Japan)', 'Microsoft Heera - English (India)', 'Microsoft Ravi - English (India)', 'Microsoft Jakub - Czech (Czech Republic)',
'Microsoft Frank - Dutch (Netherlands)', 'Microsoft Heami - Korean (Korean)', 'Microsoft Stefanos - Greek (Greece)', 'Google 普通话(中国大陆)', 'Google 粤語(香港)',
'Microsoft Helle - Danish (Denmark)', 'Microsoft James - English (Australia)', 'Microsoft Catherine - English (Australia)', 'Microsoft Richard - English (Canada)',
'Microsoft Linda - English (Canada)', 'Microsoft David Desktop - English (United States)', 'Microsoft Hazel Desktop - English (Great Britain)', 'Microsoft Raul - Spanish (Mexico)',
'Microsoft Sabina - Spanish (Mexico)', 'Microsoft Hortense - French (France)', 'Microsoft Julie - French (France)', 'Microsoft Paul - French (France)',
'Microsoft Anu - Estonian (Estonia)', 'Microsoft Ariane - French (Switzerland)', 'Microsoft Athina - Greek (Greece)', 'Microsoft Jon - Norwegian (Bokmål)',
'Microsoft LorenzoEsCL Online (Natural) - Spanish (Mexico)', 'Microsoft ManuelEsCU Online (Natural) - Spanish (Spain)', 'Microsoft Katja - German (Germany)',
'Microsoft Stefan - German (Germany)', 'Microsoft Hedda - German (Germany)', 'Microsoft Lado - Slovenian (Slovenia)', 'Microsoft Szabolcs - Hungarian (Hungary)',
'Microsoft Karsten - German (Switzerland)', 'Microsoft Helia - Portuguese (Portugal)', 'Microsoft Bengt - Swedish', 'Microsoft Guillaume - French (Switzerland)',
'US English Female TTS (by Google)', 'IVONA 2 Marlene OEM', 'IVONA 2 Tatyana - Russian female voice [22kHz]', 'Microsoft Caroline - French (Canada)',
'Microsoft Claude - French (Canada)', 'Microsoft Nathalie - French (Canada)', 'Microsoft Naayf - Arabic (Saudi)', 'Microsoft Hoda - Arabic (Egypt)', 'Microsoft Hemant - Hindi (India)',
'Microsoft Kalpana - Hindi (India)', 'Microsoft Asaf - Hebrew (Israel)', 'IVONA 2 Maxim OEM', 'IVONA 2 Tatyana OEM', 'Vocalizer Expressive Katya Harpo 22kHz',
'Vocalizer Expressive Milena Harpo 22kHz', 'Vocalizer Expressive Yuri Harpo 22kHz', 'Microsoft Polina - Ukrainian (Ukraine)', 'Microsoft Premwadee - Thai (Thailand)',
'Microsoft Raquel - Portuguese (Portugal)', 'Microsoft Tracy - Chinese (Traditional, Hong Kong S.A.R.)', 'Microsoft Danny - Chinese (Traditional, Hong Kong S.A.R.)',
'Microsoft Hila - Hebrew (Israel)', 'Microsoft HiuMaan - Chinese (Hong Kong)', 'Microsoft Andrei - Romanian (Romania)', 'Microsoft Orla Online (Natural) - Irish(Ireland)',
'Microsoft Matej - Croatian (Croatia)', 'Microsoft Ivan - Bulgarian (Bulgaria)', 'Microsoft Mia Online (Natural) - English (United Kingdom)', 'Microsoft Rizwan - Malay (Malaysia)',
'Microsoft Huihui Desktop - Chinese (Simplified)', 'SpeakIt!', 'Aleksandr', 'Microsoft Filip - Slovak (Slovakia)', 'Microsoft Dariya Online (Natural) - Russian (Russia)',
'Microsoft HiuGaai Online (Natural) - Chinese (Hong Kong)', 'Microsoft HsiaoYu Online (Natural) - Chinese (Taiwan)', 'Microsoft Sean - English (Ireland)', 'Anna',
'Alyona (Russian) SAPI5', 'Microsoft Herena - Catalan (Catalan)', 'Microsoft Thilini - Sinhala (Sri Lanka)', 'Microsoft Tuti - Sundanese (Indonesia)',
'Microsoft Ubax - Somali (Somalia)', 'Microsoft Lili - Chinese (China)', 'Microsoft Paul - French', 'Microsoft Hortense - French', 'Microsoft Julie - French']
fonts = ['Arial', 'Arial Black', 'Arial Narrow', 'Arial Rounded MT Bold', 'Book Antiqua', 'Bookman Old Style', 'Calibri', 'Cambria', 'Cambria Math', 'Century', 'Century Gothic',
'Century Schoolbook', 'Comic Sans MS', 'Consolas', 'Courier New', 'Garamond', 'Georgia', 'Impact', 'Lucida Bright', 'Lucida Console', 'Lucida Fax', 'Lucida Sans', 'Lucida Sans Typewriter',
'Lucida Sans Unicode', 'Microsoft Sans Serif', 'Monotype Corsiva', 'MS Gothic', 'MS Outlook', 'MS PGothic', 'MS Reference Sans Serif', 'Palatino Linotype', 'Segoe Print', 'Segoe Script',
'Segoe UI', 'Segoe UI Light', 'Segoe UI Semibold', 'Segoe UI Symbol', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana', 'Wingdings', 'Wingdings 2', 'Wingdings 3', 'Agency FB',
'Algerian', 'Baskerville Old Face', 'Bauhaus 93', 'Bell MT', 'Berlin Sans FB', 'Bernard MT Condensed', 'Blackadder ITC', 'Bodoni MT', 'Bodoni MT Black', 'Bodoni MT Condensed',
'Bodoni MT Poster Compressed', 'Bookshelf Symbol 7', 'Bradley Hand ITC', 'Britannic Bold', 'Broadway', 'Californian FB', 'Calisto MT', 'Candara', 'Castellar', 'Centaur', 'Chiller',
'Colonna MT', 'Constantia', 'Cooper Black', 'Copperplate Gothic Bold', 'Copperplate Gothic Light', 'Corbel', 'Curlz MT', 'Ebrima', 'Edwardian Script ITC', 'Elephant', 'Engravers MT',
'Eras Bold ITC', 'Eras Demi ITC', 'Eras Light ITC', 'Eras Medium ITC', 'Felix Titling', 'Footlight MT Light', 'Forte', 'Freestyle Script', 'French Script MT', 'Gabriola', 'Gigi',
'Gill Sans MT', 'Gill Sans MT Condensed', 'Gill Sans MT Ext Condensed Bold', 'Gill Sans Ultra Bold', 'Gill Sans Ultra Bold Condensed', 'Gloucester MT Extra Condensed', 'Goudy Old Style',
'Goudy Stout', 'Haettenschweiler', 'Harlow Solid Italic', 'Harrington', 'High Tower Text', 'Imprint MT Shadow', 'Informal Roman', 'Jokerman', 'Juice ITC', 'Kristen ITC', 'Kunstler Script',
'Leelawadee', 'Maiandra GD', 'Malgun Gothic', 'Marlett', 'Matura MT Script Capitals', 'Microsoft Himalaya', 'Microsoft JhengHei', 'Microsoft New Tai Lue', 'Microsoft PhagsPa',
'Microsoft Tai Le', 'Microsoft Uighur', 'Microsoft YaHei', 'Microsoft Yi Baiti', 'MingLiU_HKSCS-ExtB', 'MingLiU-ExtB', 'Mistral', 'Modern No. 20', 'Mongolian Baiti', 'MS Reference Specialty',
'MS UI Gothic', 'MT Extra', 'MV Boli', 'Niagara Engraved', 'Niagara Solid', 'NSimSun', 'OCR A Extended', 'Old English Text MT', 'Onyx', 'Palace Script MT', 'Papyrus', 'Parchment', 'Perpetua',
'Playbill', 'PMingLiU-ExtB', 'Poor Richard', 'Pristina', 'Rage Italic', 'Ravie', 'Rockwell', 'Rockwell Condensed', 'Rockwell Extra Bold', 'Script MT Bold', 'Showcard Gothic', 'SimSun',
'SimSun-ExtB', 'Snap ITC', 'Stencil', 'Sylfaen', 'Tempus Sans ITC', 'Tw Cen MT', 'Tw Cen MT Condensed', 'Tw Cen MT Condensed Extra Bold', 'Viner Hand ITC', 'Vladimir Script', 'Wide Latin',
'Cambria Italic', 'Corbel Bold Italic', 'Cambria Bold Italic', 'Tahoma Negreta', 'Bookman Old Style Italic', 'Century Gothic Italic', 'Sitka Banner', 'Cambria Bold',
'Trebuchet MS Bold Italic', 'Microsoft JhengHei Light', 'Candara Italic', 'Gill Sans MT Italic', 'Lucida Sans Italic', 'Bookman Old Style Bold', 'Georgia Bold', 'Perpetua Titling MT Bold',
'Goudy Old Style Bold', 'Verdana Italic', 'Javanese Text', 'Brush Script MT Italic', 'Palatino Linotype Bold', 'Arial Narrow Italic', 'Garamond Italic', 'Lucida Fax Demibold',
'Calisto MT Italic', 'Lucida Sans Typewriter Regular', 'Segoe UI Emoji', 'Gill Sans MT Bold', 'Gill Sans MT Bold Italic', 'Leelawadee UI', 'Book Antiqua Italic', 'Yu Gothic UI Light',
'Verdana Bold Italic', 'Lucida Fax Regular', 'Constantia Bold', 'Sitka Small', 'Tw Cen MT Bold', 'Century Schoolbook Bold', 'Lucida Sans Typewriter Bold Oblique', 'Perpetua Bold',
'Times New Roman Bold Italic', 'Franklin Gothic Medium', 'Sitka Text', 'Calisto MT Bold Italic', 'Nirmala UI', 'Perpetua Bold Italic', 'Rockwell Italic', 'Franklin Gothic Medium Cond',
'Calibri Italic', 'Corbel Bold', 'Myanmar Text', 'Perpetua Titling MT Light', 'Tw Cen MT Bold Italic', 'Lucida Fax Demibold Italic', 'Lucida Bright Demibold Italic',
'Franklin Gothic Medium Italic', 'Segoe UI Semilight', 'Arial Italic', 'Sitka Display', 'Consolas Bold Italic', 'Sitka Heading', 'Trebuchet MS Bold', 'Lucida Bright Demibold',
'Times New Roman Bold', 'Segoe UI Historic', 'Microsoft YaHei UI Light', 'Bell MT Italic', 'Franklin Gothic Book Italic', 'Malgun Gothic Semilight', 'Franklin Gothic Book',
'Microsoft YaHei UI', 'Lucida Sans Regular', 'Lucida Sans Demibold Italic', 'Corbel Italic', 'Microsoft JhengHei UI', 'Times New Roman Italic', 'Yu Gothic UI Semilight', 'Segoe MDL2 Assets',
'Microsoft YaHei Light', 'Century Schoolbook Bold Italic', 'Lucida Sans Typewriter Oblique', 'Lucida Sans Demibold Roman', 'Lucida Sans Typewriter Bold', 'Courier New Bold', 'Arial Bold',
'Georgia Bold Italic', 'Yu Gothic Light', 'Webdings', 'Lucida Handwriting Italic', 'Comic Sans MS Bold', 'Nirmala UI Semilight', 'Tw Cen MT Italic', 'Consolas Italic', 'Yu Gothic Medium',
'Trebuchet MS Italic', 'Consolas Bold', 'Candara Bold Italic', 'Courier New Bold Italic', 'Franklin Gothic Heavy', 'Century Gothic Bold Italic', 'Lucida Fax Italic', 'Lucida Bright Italic',
'Goudy Old Style Italic', 'Constantia Bold Italic', 'Microsoft JhengHei UI Light', 'Franklin Gothic Demi Cond', 'Arial Bold Italic', 'Arial Narrow Bold Italic', 'Gadugi',
'Book Antiqua Bold Italic', 'Bookman Old Style Bold Italic', 'Calibri Light', 'Lucida Calligraphy Italic', 'Verdana Bold', 'Microsoft Tai Le Bold', 'Constantia Italic', 'Arial Narrow Bold',
'Sitka Subheading', 'Calisto MT Bold', 'Perpetua Italic', 'Book Antiqua Bold', 'Symbol', 'Leelawadee UI Semilight', 'Century Schoolbook Italic', 'Palatino Linotype Bold Italic',
'Segoe UI Black', 'Franklin Gothic Demi', 'Rockwell Bold Italic', 'Georgia Italic', 'Courier New Italic', 'Candara Bold', 'Bell MT Bold', 'Palatino Linotype Italic', 'Yu Gothic UI Semibold',
'Garamond Bold', 'Rockwell Bold', 'Century Gothic Bold', 'Calibri Bold Italic', 'Calibri Bold', 'Bahnschrift', 'Bahnschrift Light', 'Bahnschrift SemiBold', 'Bahnschrift SemiLight',
'Calibri Light Italic', 'Candara Light', 'Candara Light Italic', 'Comic Sans MS Bold Italic', 'Comic Sans MS Italic', 'Corbel Light', 'Corbel Light Italic', 'Ebrima Bold', 'Gadugi Bold',
'HoloLens MDL2 Assets', 'Ink Free', 'Leelawadee Bold', 'Leelawadee UI Bold', 'Malgun Gothic Bold', 'Microsoft JhengHei Bold', 'Microsoft JhengHei UI Bold', 'Microsoft New Tai Lue Bold',
'Microsoft PhagsPa Bold', 'Microsoft Uighur Bold', 'Microsoft YaHei Bold', 'Microsoft YaHei UI Bold', 'Myanmar Text Bold', 'Nirmala UI Bold', 'Segoe Print Bold', 'Segoe Script Bold',
'Segoe UI Black Italic', 'Segoe UI Bold', 'Segoe UI Bold Italic', 'Segoe UI Italic', 'Segoe UI Light Italic', 'Segoe UI Semibold Italic', 'Segoe UI Semilight Italic', 'Sitka Banner Bold',
'Sitka Banner Bold Italic', 'Sitka Banner Italic', 'Sitka Display Bold', 'Sitka Display Bold Italic', 'Sitka Display Italic', 'Sitka Heading Bold', 'Sitka Heading Bold Italic',
'Sitka Heading Italic', 'Sitka Small Bold', 'Sitka Small Bold Italic', 'Sitka Small Italic', 'Sitka Subheading Bold', 'Sitka Subheading Bold Italic', 'Sitka Subheading Italic',
'Sitka Text Bold', 'Sitka Text Bold Italic', 'Sitka Text Italic', 'Tahoma Bold', 'Yu Gothic Bold', 'Yu Gothic Regular', 'Yu Gothic UI Bold', 'Yu Gothic UI Regular', '宋体', '微软雅黑',
'MS ゴシック', 'MS Pゴシック', 'Courier', 'Lucida Calligraphy', 'Lucida Handwriting', 'MS Sans Serif', 'MS Serif', 'Times', 'Brush Script MT', 'Copperplate Gothic', 'Magneto', 'Perpetua Titling MT',
'Vivaldi', 'Yu Gothic UI', 'FontAwesome', 'Papyrus Condensed', 'Yu Gothic', 'Franklin Gothic', 'Microsoft JhengHei Regular', 'Microsoft JhengHei UI Regular', 'ZWAdobeF', 'Adobe Devanagari',
'Poppins', 'Roboto Light Italic', 'Roboto Thin', 'Roboto Bold', 'Roboto Regular', 'Hack Bold Italic', 'Roboto Italic', 'Hack Italic', 'Hack Regular', 'Source Code Pro ExtraLight',
'Roboto Black', 'Source Code Pro Semibold', 'Roboto Medium', 'Roboto Thin Italic', 'Source Code Pro Light', 'Roboto Light', 'Source Code Pro', 'Source Code Pro Medium', 'Roboto Black Italic',
'Roboto Medium Italic', 'Hack Bold', 'Source Code Pro Bold', 'Source Code Pro Black', 'Roboto Condensed', 'Roboto', 'Fira Code', 'Arial Unicode MS', 'Meiryo', 'Meiryo UI', 'Meiryo Italic',
'Meiryo Bold Italic', 'Meiryo Bold', 'Meiryo UI Bold', 'Meiryo UI Bold Italic', 'Meiryo UI Italic', 'Andalus', 'Angsana New', 'AngsanaUPC', 'Aparajita', 'Arabic Typesetting', 'Batang',
'BatangChe', 'Browallia New', 'BrowalliaUPC', 'Cordia New', 'CordiaUPC', 'DaunPenh', 'David', 'DFKai-SB', 'DilleniaUPC', 'DokChampa', 'Dotum', 'DotumChe', 'EucrosiaUPC', 'Euphemia',
'FangSong', 'FrankRuehl', 'FreesiaUPC', 'Gautami', 'Gisha', 'Gulim', 'GulimChe', 'Gungsuh', 'GungsuhChe', 'IrisUPC', 'Iskoola Pota', 'JasmineUPC', 'KaiTi', 'Kalinga', 'Kartika', 'Khmer UI',
'KodchiangUPC', 'Kokila', 'Lao UI', 'Latha', 'Levenim MT', 'LilyUPC', 'Mangal', 'MingLiU', 'MingLiU_HKSCS', 'Miriam', 'Miriam Fixed', 'MoolBoran', 'MS Mincho', 'MS PMincho', 'Narkisim',
'Nyala', 'Plantagenet Cherokee', 'PMingLiU', 'Raavi', 'Rod', 'Sakkal Majalla', 'Shonar Bangla', 'Shruti', 'SimHei', 'Simplified Arabic', 'Simplified Arabic Fixed', 'Traditional Arabic',
'Tunga', 'Utsaah', 'Vani', 'Vijaya', 'Vrinda', 'Yu Mincho Demibold', 'Broadway BT', 'Yu Mincho Light', 'Aldhabi', 'Cataneo BT', 'Milano LET', 'Urdu Typesetting', 'Cordia New Bold',
'Estrangelo Edessa', 'Academy Engraved LET Plain:1.0', 'Aharoni Bold', 'Angsana New Bold', 'Angsana New Bold Italic', 'Angsana New Italic', 'AngsanaUPC Bold', 'AngsanaUPC Bold Italic',
'AngsanaUPC Italic', 'Aparajita Bold', 'Aparajita Bold Italic', 'Aparajita Italic', 'Browallia New Bold', 'Browallia New Bold Italic', 'Browallia New Italic', 'BrowalliaUPC Bold',
'BrowalliaUPC Bold Italic', 'BrowalliaUPC Italic', 'Cordia New Bold Italic', 'Cordia New Italic', 'CordiaUPC Bold', 'CordiaUPC Bold Italic', 'CordiaUPC Italic', 'David Bold',
'DilleniaUPC Bold', 'DilleniaUPC Bold Italic', 'DilleniaUPC Italic', 'EucrosiaUPC Bold', 'EucrosiaUPC Bold Italic', 'EucrosiaUPC Italic', 'FreesiaUPC Bold', 'FreesiaUPC Bold Italic',
'FreesiaUPC Italic', 'Gautami Bold', 'Gisha Bold', 'IrisUPC Bold', 'IrisUPC Bold Italic', 'IrisUPC Italic', 'Iskoola Pota Bold', 'JasmineUPC Bold', 'JasmineUPC Bold Italic',
'JasmineUPC Italic', 'Kalinga Bold', 'Kartika Bold', 'Khmer UI Bold', 'KodchiangUPC Bold', 'KodchiangUPC Bold Italic', 'KodchiangUPC Italic', 'Kokila Bold', 'Kokila Bold Italic',
'Kokila Italic', 'Lao UI Bold', 'Latha Bold', 'Levenim MT Bold', 'LilyUPC Bold', 'LilyUPC Bold Italic', 'LilyUPC Italic', 'Mangal Bold', 'Raavi Bold', 'Sakkal Majalla Bold',
'Shonar Bangla Bold', 'Shruti Bold', 'Simplified Arabic Bold', 'Traditional Arabic Bold', 'Tunga Bold', 'Urdu Typesetting Bold', 'Utsaah Bold', 'Utsaah Bold Italic', 'Utsaah Italic',
'Vani Bold', 'Vijaya Bold', 'Vrinda Bold', 'Yu Mincho Regular', '新細明體', '細明體', '굴림', '굴림체', '바탕', 'MS 明朝', 'MS P明朝', 'Aharoni', 'Staccato222 BT', 'Yu Mincho', 'Blackletter686 BT',
'OldDreadfulNo7 BT', 'ParkAvenue BT', 'Square721 BT', 'MisterEarl BT', 'HolidayPi BT', 'Calligraph421 BT', 'Liberation Serif', 'OpenSymbol', 'Open Sans Extrabold', 'Source Sans Pro',
'Liberation Sans', 'DejaVu Sans Condensed', 'Linux Libertine Display G', 'Open Sans Light', 'Liberation Sans Narrow', 'Linux Biolinum G', 'DejaVu Sans', 'Open Sans', 'Caladea', 'Carlito',
'Linux Libertine G', 'DejaVu Sans Mono', 'Open Sans Condensed', 'PT Serif', 'Gentium Basic', 'Source Sans Pro ExtraLight', 'Source Sans Pro Semibold', 'DejaVu Sans Light',
'Gentium Book Basic', 'Source Sans Pro Black', 'Open Sans Semibold', 'DejaVu Serif', 'Source Sans Pro Light', 'Liberation Mono', 'DejaVu Serif Condensed', 'MyriadPro-Semibold', 'MYRIAD PRO',
'Myriad Pro SemiCondensed', 'Myriad Pro', 'Myriad Pro Regular', 'Futura Std Medium', 'Myriad Pro Black', 'Myriad Pro Light', 'Futura Std Heavy', 'Myriad Pro Condensed', 'Myriad Pro Semibold',
'Futura Std Light', 'Archive', 'Gunplay', 'Cuprum', 'Univers', 'Univers Condensed', 'Noto Serif', 'Segoe WP Black', 'Segoe WP Semibold', 'Segoe WP Light', 'Segoe WP SemiLight', 'Segoe WP',
'Geneva', 'Helvetica', 'Monaco', 'Albertus Extra Bold', 'Albertus Medium', 'Antique Olive', 'Apple Chancery', 'CG Omega', 'CG Times', 'Clarendon', 'Coronet', 'EUROSTILE', 'Letter Gothic',
'Marigold', 'OPTIMA', 'Optima Italic', 'Times Bold Italic', 'Palatino Bold', 'Helvetica Bold', 'Courier Bold', 'Eurostile Bold', 'Hoefler Text Ornaments', 'Palatino Bold Italic',
'Times Italic', 'Eurostile', 'Hoefler Text Black Italic', 'GillSans-Bold', 'Optima Bold Italic', 'Optima Bold', 'Hoefler Text Black', 'Helvetica Bold Oblique', 'Times Roman', 'Times Bold',
'Optima', 'Helvetica Oblique', 'Palatino Italic', 'Palatino', 'Clarendon Condensed', 'Hoefler Text', 'Optima Regular', 'Helvetica Light', 'STLiti', 'STXingkai', 'DengXian Light', 'STHupo',
'STZhongsong', 'STXinwei', 'STFangsong', 'STKaiti', 'DengXian', 'STSong', 'STXihei', 'DengXian Bold', 'STFangSong', 'Fanwood', 'Nova Flat', 'Bebas Neue Bold', 'BankGothic Md BT',
'Cornerstone', 'GOTHAM', 'AR BONNIE', 'Nova Oval', 'Nova Script', 'Coolvetica', 'Nova Cut', 'Bebas Neue Light', 'GROBOLD', 'Gotham', 'Sniglet', 'Raleway ExtraLight', 'Raisin des Sables',
'Bebas Neue Thin', 'Brush Script Std', 'Ostrich Sans', 'Nova Round', 'Raleway Light', 'Gotham Medium', 'Gotham Thin', 'Raleway ExtraBold', 'Baron Neue', 'Giddyup Std', 'Raleway Thin',
'Raleway', 'Nova Square', 'Bebas Neue Regular', 'Arimo', 'Brush Script Std Medium', 'Raleway Medium', 'Raleway SemiBold', 'Amethyst', 'Nova Slim', 'Gotham Black', 'Ostrich Sans Rounded',
'Ostrich Sans Dashed', 'Gauge', 'Gotham Light', 'Gauge Heavy', 'Good Times', 'Oswald Stencil', 'True Lies', 'Linden Hill', 'BATAVIA', 'Raleway Black', 'Ethnocentric', 'Comfortaa',
'Baron Neue Black', 'Comfortaa Light', 'Armata', 'Bebas Neue', 'Didact Gothic', 'Fanwood Text', 'Goudy Bookletter 1911', 'Jura', 'League Script', 'Orbitron', 'Prociono', 'Titillium Web',
'GLYPHICONS Halflings', 'Kievit Offc Pro', 'Arvo', 'Droid Serif', 'Roboto Slab Regular', 'Lobster', 'Poiret One', 'Indie Flower', 'Roboto Slab', 'Roboto Slab Light', 'Roboto Slab Thin',
'HP Simplified Light', 'Source Sans Pro Semibold Italic', 'Source Sans Pro Bold', 'Source Sans Pro Light Italic', 'Source Sans Pro ExtraLight Italic', 'Source Sans Pro Bold Italic',
'HP Simplified', 'Source Sans Pro Italic', 'Source Sans Pro Black Italic', 'Noto Kufi Arabic', 'Noto Mono', 'Noto Naskh Arabic', 'Noto Naskh Arabic UI', 'Scheherazade', 'Noto Sans',
'Noto Serif Lao', 'Noto Sans Lao', 'Noto Sans Lisu', 'Noto Serif Armenian', 'Noto Sans Hebrew', 'Noto Serif Georgian', 'Amiri Quran', 'Noto Sans Armenian', 'Amiri', 'Noto Sans Georgian',
'David CLM', 'DejaVu Math TeX Gyre', 'Frank Ruehl CLM', 'Miriam CLM', 'Miriam Mono CLM', 'Nachlieli CLM', 'Noto Sans Arabic', 'Noto Sans Arabic UI', 'Noto Serif Hebrew', 'מרים', 'Alef',
'David Libre', 'Miriam Libre', 'Reem Kufi', 'Rubik', 'SAPGUI-Icons', 'Arial monospaced for SAP', 'SAPIcons', 'SAPDings', 'Montserrat Black', 'Raleway SemiBold Italic', 'Montserrat Bold',
'Raleway ExtraBold Italic', 'Raleway Thin Italic', 'Origin', 'Raleway Light Italic', 'Montserrat Light', 'Raleway Medium Italic', 'Raleway Black Italic', 'Raleway ExtraLight Italic',
'Raleway Bold Italic', 'Raleway Italic', 'Raleway Bold', 'Montserrat ExtraBold', 'Montserrat ExtraLight', 'Montserrat Medium', 'Montserrat SemiBold', 'Montserrat Thin', 'Seymour One',
'Montserrat', 'Alegreya SC', 'Alien Encounters', 'Alex Brush', 'Luckiest Guy', 'Gill Sans Nova Cond XBd', 'Georgia Pro SemiBold', 'Gill Sans Nova Cond Ultra Bold', 'Rockwell Nova Cond',
'Verdana Pro Cond Black', 'Rockwell Nova Extra Bold', 'Georgia Pro Cond Black', 'Gill Sans Nova Cond', 'Arial Nova Cond', 'Verdana Pro', 'Rockwell Nova', 'Verdana Pro Cond SemiBold',
'Georgia Pro Cond SemiBold', 'Gill Sans Nova Light', 'Georgia Pro Black', 'Georgia Pro Cond Light', 'Georgia Pro Light', 'Verdana Pro Light', 'Arial Nova Light', 'Georgia Pro',
'Verdana Pro Cond Light', 'Gill Sans Nova Ultra Bold', 'Verdana Pro SemiBold', 'Rockwell Nova Cond Light', 'Verdana Pro Black', 'Arial Nova', 'Verdana Pro Cond', 'Gill Sans Nova',
'Georgia Pro Cond', 'Arial Nova Cond Light', 'Gill Sans Nova Cond Lt', 'Rockwell Nova Light', 'Arial Nova Bold', 'Arial Nova Bold Italic', 'Arial Nova Cond Bold',
'Arial Nova Cond Bold Italic', 'Arial Nova Cond Italic', 'Arial Nova Cond Light Italic', 'Arial Nova Italic', 'Arial Nova Light Italic', 'Georgia Pro Black Italic', 'Georgia Pro Bold',
'Georgia Pro Bold Italic', 'Georgia Pro Cond Black Italic', 'Georgia Pro Cond Bold', 'Georgia Pro Cond Bold Italic', 'Georgia Pro Cond Italic', 'Georgia Pro Cond Light Italic',
'Georgia Pro Cond Semibold', 'Georgia Pro Cond Semibold Italic', 'Georgia Pro Italic', 'Georgia Pro Light Italic', 'Georgia Pro Semibold', 'Georgia Pro Semibold Italic',
'Gill Sans Nova Bold', 'Gill Sans Nova Bold Italic', 'Gill Sans Nova Cond Bold', 'Gill Sans Nova Cond Bold Italic', 'Gill Sans Nova Cond Italic', 'Gill Sans Nova Cond Lt Italic',
'Gill Sans Nova Cond XBd Italic', 'Gill Sans Nova Italic', 'Gill Sans Nova Light Italic', 'Neue Haas Grotesk Text Pro', 'Neue Haas Grotesk Text Pro Bold',
'Neue Haas Grotesk Text Pro Bold Italic', 'Neue Haas Grotesk Text Pro Italic', 'Neue Haas Grotesk Text Pro Medium', 'Neue Haas Grotesk Text Pro Medium Italic', 'Rockwell Nova Bold',
'Rockwell Nova Bold Italic', 'Rockwell Nova Cond Bold', 'Rockwell Nova Cond Bold Italic', 'Rockwell Nova Cond Italic', 'Rockwell Nova Cond Light Italic', 'Rockwell Nova Extra Bold Italic',
'Rockwell Nova Italic', 'Rockwell Nova Light Italic', 'Verdana Pro Black Italic', 'Verdana Pro Bold', 'Verdana Pro Bold Italic', 'Verdana Pro Cond Black Italic', 'Verdana Pro Cond Bold',
'Verdana Pro Cond Bold Italic', 'Verdana Pro Cond Italic', 'Verdana Pro Cond Light Italic', 'Verdana Pro Cond SemiBold Italic', 'Verdana Pro Italic', 'Verdana Pro Light Italic',
'Verdana Pro SemiBold Italic', 'Nunito Light', 'Nunito', 'Fira Sans', 'Fira Sans Condensed', 'Roboto Bold Italic', 'AcmeFont', 'Cantata One', 'EngraversGothic BT', 'Kaufmann BT',
'TypoUpright BT', 'Merriweather Italic', 'Euclid Symbol', 'Myriad Arabic Italic', 'DINPro-Light', 'Source Serif Pro Semibold', 'Proxima Nova Bold', 'Open Sans Italic', 'Freehand521 BT',
'Euclid Symbol Bold', 'Myriad Hebrew Bold', 'Proxima Nova Condensed Light Italic', 'Merriweather Light Italic', 'Symbol Tiger', 'Myriad Arabic Bold Italic', 'Myriad Arabic', 'Euclid Bold',
'MT Extra Tiger', 'PT Sans Narrow Bold', 'Roboto Condensed Italic', 'Euclid Math One Bold', 'Tiger Expert', 'DINPro-Black', 'Proxima Nova Semibold', 'Open Sans Semibold Italic',
'Merriweather Bold', 'Proxima Nova Semibold Italic', 'Open Sans Bold Italic', 'Tiger', 'Euclid', 'Roboto Slab Bold', 'Symbol Tiger Expert', 'Proxima Nova Regular Italic', 'Euclid Math Two',
'Euclid Fraktur Bold', 'Proxima Nova Condensed Light', 'Adobe Naskh Medium', 'Open Sans Bold', 'Myriad Arabic Bold', 'Euclid Math One', 'Euclid Fraktur', 'Euclid Symbol Italic',
'Open Sans Extrabold Italic', 'Merriweather Bold Italic', 'Proxima Nova Bold Italic', 'Merriweather Regular', 'DINPro-Bold', 'Myriad Hebrew Italic', 'Euclid Symbol Bold Italic',
'Proxima Nova Light', 'Euclid Italic', 'Myriad Hebrew Bold Italic', 'Roboto Condensed Light', 'Proxima Nova Condensed Semibold', 'OCR-A BT', 'Proxima Nova Condensed Regular Italic',
'Roboto Condensed Bold Italic', 'Open Sans Light Italic', 'Source Serif Pro', 'Myriad Hebrew', 'OCR-B 10 BT', 'Proxima Nova Black', 'Proxima Nova Extrabold', 'Proxima Nova Light Italic',
'Euclid Bold Italic', 'DINPro-Regular', 'Euclid Math Two Bold', 'Roboto Condensed Light Italic', 'Embassy BT', 'DINPro-Medium', 'Roboto Condensed Bold', 'Euclid Extra', 'Euclid Extra Bold',
'Ubuntu Condensed', 'Merriweather Light', 'Proxima Nova Condensed Semibold Italic', 'Annabelle', 'Exo 2', 'Kurale', 'ADOBE CASLON PRO', 'ADOBE GARAMOND PRO', 'Exotc350 Bd BT', 'Futura Bk BT',
'Futura Md BT', 'Humanst521 BT', 'Humanst521 Lt BT', 'Minion Pro', 'NewsGoth BT', 'TRAJAN PRO', 'Proxima Nova', 'Clarendon BT', 'Adobe Arabic', 'Rosewood Std Regular', 'Orator Std',
'Adobe Ming Std', 'Kozuka Gothic Pro', 'Adobe Gothic Std', 'Birch Std', 'Mesquite Std', 'Stencil Std', 'Adobe Caslon Pro Semibold', 'Ubuntu', 'Adobe Hebrew', 'Ubuntu Light', 'Adobe Naskh',
'Adobe Caslon Pro', 'Chaparral Pro Light', 'Cooper Std Black', 'Kozuka Mincho Pro', 'Swis721 Blk BT', 'Swis721 BT', 'PT Sans Narrow', 'Rosewood Std', 'Prestige Elite Std',
'Orator Std Medium', 'Proxima Nova Condensed', 'Mesquite Std Medium', 'Blackoak Std', 'Kozuka Gothic Pr6N', 'Adobe Heiti Std', 'Lithos Pro Black', 'Poplar Std Black', 'Charlemagne Std',
'Adobe Fan Heiti Std', 'Nueva Std', 'Cooper Std', 'Lithos Pro', 'Swis721 BlkCn BT', 'Lithos Pro Regular', 'Minion Pro Semibold', 'Nueva Std Condensed', 'Swis721 Hv BT', 'Tekton Pro',
'Swis721 LtEx BT', 'Clarendon Lt BT', 'Hobo Std', 'Merriweather UltraBold', 'Clarendon Blk BT', 'Minion Pro Medium', 'Letter Gothic Std', 'Adobe Hebrew Regular', 'OCR A Std', 'Chaparral Pro',
'Swis721 Cn BT', 'PT Sans', 'Hobo Std Medium', 'Adobe Garamond Pro', 'Letter Gothic Std Medium', 'Kozuka Mincho Pr6N', 'Adobe Kaiti Std', 'Swis721 Lt BT', 'Playfair Display',
'Adobe Arabic Regular', 'Trajan Pro', 'Adobe Song Std', 'Adobe Myungjo Std', 'Adobe Fangsong Std', 'Poplar Std', 'Myriad Arabic Black', 'Myriad Arabic Light', 'Myriad Arabic Semibold',
'Ubuntu Thin', 'Arsenal', 'Bitter', 'Cormorant Garamond', 'Lora', 'Merriweather', 'FreeMono', 'Cantarell Bold', 'Cantarell Regular', 'FreeSans', 'FreeSerif', 'Cantarell Extra Bold',
'Cantarell Light', 'Cantarell Thin', 'MONO', 'Noto Sans Brahmi', 'Noto Sans Tai Viet', 'Noto Sans Syriac Eastern', 'Noto Sans Phoenician', 'Noto Serif Thai', 'Noto Sans Bamum',
'Noto Sans Runic', 'Noto Sans Avestan', 'Noto Sans Devanagari', 'Noto Sans Cypriot', 'Noto Sans Gujarati', 'Noto Sans Linear B', 'Noto Sans Saurashtra', 'Noto Sans Gurmukhi',
'Noto Sans Glagolitic', 'Noto Sans Osmanya', 'Noto Sans Egyptian Hieroglyphs', 'Noto Sans Tifinagh', 'Noto Sans Kharoshthi', 'Noto Sans Cuneiform', 'Noto Sans Carian', 'Noto Sans Hanunoo',
'Noto Sans Old Turkic', 'Noto Sans Tai Le', 'Noto Sans Coptic', 'Noto Sans Thai', 'Noto Sans Mongolian', 'Noto Sans New Tai Lue', 'Sans', 'Noto Sans Tagbanwa', 'Noto Sans Yi', 'Monospace',
'Noto Sans Ugaritic', 'Noto Sans Tamil', 'Noto Sans Tamil UI', 'Noto Sans NKo', 'Noto Sans Old Persian', 'Noto Sans Vai', 'Noto Sans Mandaic', 'Noto Sans Rejang', 'Serif',
'Noto Sans Devanagari UI', 'Noto Sans Old Italic', 'Noto Sans Syloti Nagri', 'Noto Sans Samaritan', 'Noto Sans Limbu', 'Noto Sans Ol Chiki', 'Noto Sans Tagalog', 'Noto Sans Ogham',
'Noto Sans Inscriptional Pahlavi', 'Noto Sans Ethiopic', 'Noto Sans Buhid', 'Noto Sans Inscriptional Parthian', 'Noto Sans Imperial Aramaic', 'Noto Sans Old South Arabian', 'Noto Sans Batak',
'Noto Sans Shavian', 'Noto Sans Malayalam', 'Noto Sans Gothic', 'Noto Sans Kayah Li', 'Noto Sans Lydian', 'Noto Sans Lycian', 'Cantarell', 'Noto Music', 'Noto Nastaliq Urdu',
'Noto Sans Adlam', 'Noto Sans Adlam Unjoined', 'Noto Sans Anatolian Hieroglyphs', 'Noto Sans Balinese', 'Noto Sans Bassa Vah', 'Noto Sans Bengali', 'Noto Sans Bengali UI',
'Noto Sans Bhaiksuki', 'Noto Sans Buginese', 'Noto Sans Canadian Aboriginal', 'Noto Sans Caucasian Albanian', 'Noto Sans Chakma', 'Noto Sans Cham', 'Noto Sans Cherokee', 'Noto Sans Deseret',
'Noto Sans Duployan', 'Noto Sans Elbasan', 'Noto Sans Grantha', 'Noto Sans Gujarati UI', 'Noto Sans Gurmukhi UI', 'Noto Sans Hatran', 'Noto Sans Javanese', 'Noto Sans Kaithi',
'Noto Sans Kannada', 'Noto Sans Kannada UI', 'Noto Sans Khmer', 'Noto Sans Khojki', 'Noto Sans Khudawadi', 'Noto Sans Lepcha', 'Noto Sans Linear A', 'Noto Sans Mahajani',
'Noto Sans Malayalam UI', 'Noto Sans Manichaean', 'Noto Sans Marchen', 'Noto Sans Math', 'Noto Sans Meetei Mayek', 'Noto Sans Mende Kikakui', 'Noto Sans Meroitic', 'Noto Sans Miao',
'Noto Sans Modi', 'Noto Sans Mono', 'Noto Sans Mro', 'Noto Sans Multani', 'Noto Sans Myanmar', 'Noto Sans Nabataean', 'Noto Sans Newa', 'Noto Sans Old Hungarian',
'Noto Sans Old North Arabian', 'Noto Sans Old Permic', 'Noto Sans Oriya', 'Noto Sans Osage', 'Noto Sans Pahawh Hmong', 'Noto Sans Palmyrene', 'Noto Sans Pau Cin Hau',
'Noto Sans Psalter Pahlavi', 'Noto Sans Sharada', 'Noto Sans Sinhala', 'Noto Sans Sinhala UI', 'Noto Sans Sora Sompeng', 'Noto Sans Sundanese', 'Noto Sans Symbols', 'Noto Sans Syriac',
'Noto Sans Syriac Western', 'Noto Sans Tai Tham', 'Noto Sans Takri', 'Noto Sans Telugu', 'Noto Sans Telugu UI', 'Noto Sans Thaana', 'Noto Sans Tirhuta', 'Noto Sans Warang Citi',
'Noto Serif Ahom', 'Noto Serif Balinese', 'Noto Serif Bengali', 'Noto Serif Devanagari', 'Noto Serif Display', 'Noto Serif Ethiopic', 'Noto Serif Gujarati', 'Noto Serif Gurmukhi',
'Noto Serif Kannada', 'Noto Serif Khmer', 'Noto Serif Malayalam', 'Noto Serif Myanmar', 'Noto Serif Sinhala', 'Noto Serif Tamil', 'Noto Serif Telugu', 'Noto Serif Tibetan', 'Paytone One',
'Lato Black Italic', 'Lato Italic', 'Lato Regular', 'Dosis', 'Lato Bold', 'Lato Black', 'Oswald Regular', 'Lato Bold Italic', 'Zilla Slab', 'Dosis Medium', 'Lato Thin', 'Lato Hairline',
'Lato Semibold', 'Lato Medium', 'Lato', 'Lato Heavy', 'Oswald', 'Lato Light', 'Dosis Light', 'Dosis ExtraBold', 'Dosis ExtraLight', 'Dosis SemiBold', 'Barlow', 'Barlow Condensed', 'Caveat',
'Cormorant Infant', 'PT Serif Bold Italic', 'PT Sans Bold', 'PT Sans Bold Italic', 'PT Serif Italic', 'PT Serif Bold', 'PT Sans Italic', 'Cormorant', 'BIZ UDGothic', 'BIZ UDGothic Bold',
'BIZ UDMincho Medium', 'BIZ UDPGothic', 'BIZ UDPGothic Bold', 'BIZ UDPMincho Medium', 'UD Digi Kyokasho N-B', 'UD Digi Kyokasho N-R', 'UD Digi Kyokasho NK-B', 'UD Digi Kyokasho NK-R',
'UD Digi Kyokasho NP-B', 'UD Digi Kyokasho NP-R', 'BIZ UDMincho', 'BIZ UDPMincho', 'Ubuntu Mono', 'Yellowtail', 'Permanent Marker', 'Great Vibes', 'Quicksand Light', 'Quicksand Medium',
'Sanskrit Text', 'Baloo', 'Bungee Inline', 'Fugaz One', 'Kalam', 'Leckerli One', 'Marcellus SC', 'Megrim', 'Playball', 'Russo One', 'Sorts Mill Goudy', 'Quicksand', 'Bowlby One SC', 'Cinzel',
'Cookie', 'Black Ops One', 'Cabin Sketch', 'Courgette', 'Doppio One', 'Lemon', 'Limelight', 'Montserrat Subrayada', 'Shrikhand', 'Sigmar One', 'Skranji', 'Teko', 'KacstBook', 'KacstOffice',
'Loma', 'Source Han Sans CN Bold', 'Source Han Sans CN', 'Source Han Sans CN ExtraLight', 'Source Han Sans CN Heavy', 'Source Han Sans CN Light', 'Source Han Sans CN Medium', 'Baskerville',
'Baskerville Bold', 'Baskerville SemiBold', 'Courier Std', 'Trajan Pro 3 Bold', 'DecoType Naskh Special', 'DecoType Naskh Extensions', 'Diwani Simple Striped', 'PT Bold Broken',
'Farsi Simple Outline', 'Kufi Extended Outline', 'Old Antic Decorative', 'PT Bold Heading', 'Diwani Simple Outline 2', 'Old Antic Outline', 'Farsi Simple Bold', 'DecoType Naskh Variants',
'PT Simple Bold Ruled', 'PT Bold Dusky', 'Old Antic Outline Shaded', 'Simple Bold Jut Out', 'Montserrat Extra Bold', 'DecoType Naskh Swashes', 'PT Bold Arch', 'Italic Outline Art',
'Old Antic Bold', 'Simple Indust Shaded', 'DecoType Naskh', 'Led Italic Font', 'PT Bold Stars', 'Diwani Outline Shaded', 'Simple Indust Outline', 'AGA Arabesque', 'DecoType Thuluth',
'PT Separated Baloon', 'Bold Italic Art', 'Mudir MT', 'Diwani Simple Outline', 'PT Bold Mirror', 'Kufi Outline Shaded', 'Akhbar MT', 'Simple Outline Pat', 'Diwani Bent', 'Diwani Letter',
'AGA Arabesque Desktop', 'Roboto Mono', 'Unica One', 'Trajan Pro 3', 'Monotype Koufi', 'Bell Gothic Std Black', 'Bell Gothic Std Light', 'Eccentric Std', 'DecoType Naskh Regular',
'Fredoka One', 'Hind Vadodara', 'Segoe Marker', 'SketchFlow Print', 'Buxton Sketch', 'Gochi Hand', 'NEVIS', 'Humanst521 XBd BT', 'Bitstream Vera Sans', 'Cabin', 'Cabin Condensed',
'Varela Round', 'Yeseva One', 'EngraverTime', 'Petrucci', 'Tamburo', 'Maestro Wide', 'Broadway Copyist Text Ext', 'EngraverTextH', 'EngraverTextT', 'EngraverFontExtras',
'Finale Copyist Text Ext', 'Finale AlphaNotes', 'MaestroTimes', 'EngraverFontSet', 'JazzText', 'EngraverTextNCS', 'Maestro Percussion', 'Broadway Copyist Text', 'Jazz', 'Finale Copyist Text',
'JazzCord', 'Maestro', 'Broadway Copyist Perc', 'Finale Percussion', 'JazzPerc', 'Broadway Copyist', 'Finale Numerics', 'Seville', 'JazzTextExtended', 'Finale Mallets', '3 of 9 Barcode',
'Lohit Telugu', 'HelvLight', 'Electrolize', 'SWGamekeys MT', 'Bad Script', 'EuroRoman', 'Vineta BT', 'AmdtSymbols', 'Stylus BT', 'GothicG', 'Symap', 'Proxy 7', 'Proxy 6', 'Proxy 5',
'Proxy 4', 'Proxy 3', 'Proxy 1', 'Proxy 9', 'Proxy 8', 'RomanD', 'ISOCP2', 'RomanS', 'GothicI', 'Syastro', 'GreekS', 'GreekC', 'Italic', 'Romantic', 'GENISO', 'SuperFrench', 'Complex',
'Technic', 'AcadEref', 'ISOCPEUR', 'Proxy 2', 'RomanC', 'GothicE', 'RomanT', 'PanRoman', 'Symusic', 'Monotxt', 'Symeteo', 'CountryBlueprint', 'AIGDT', 'Simplex', 'GDT', 'ScriptC', 'ScriptS',
'ItalicT', 'ItalicC', 'ISOCT2', 'ISOCT3', 'ISOCTEUR', 'TechnicBold', 'ISOCP3', 'CityBlueprint', 'Swiss 721 Bold BT', 'ISOCT', 'ISOCP', 'Txt', 'AMGDT', 'Symath', 'SansSerif', 'TechnicLite',
'Swis721 BlkEx BT', 'Swis721 BlkOul BT', 'CommercialScript BT', 'Swis721 Ex BT', 'Monospac821 BT', 'CommercialPi BT', 'UniversalMath1 BT', 'Dutch801 Rm BT', 'Dutch801 XBd BT',
'BankGothic Lt BT', 'Swis721 BdOul BT', 'Swis721 LtCn BT', 'Bebas Neue Book', 'SILKSCREEN', 'Pacifico', 'Amatic SC', 'Map Symbols', 'MapInfo Cartographic', 'Toledo', 'GOTHAM BOLD',
'athletic', 'Titillium Thin Italic', 'LeviBrush', 'Titillium Thin', 'Titillium', 'Gotham Bold', 'Titillium Semibold Italic', 'Titillium Thin Upright', 'Grand Hotel', 'Titillium Semibold',
'Titillium Regular Italic', 'Titillium Black', 'Titillium Light Upright', 'Titillium Light', 'Titillium Light Italic', 'Master Of Break', 'Titillium Bold', 'Titillium Semibold Upright',
'Titillium Bold Italic', 'Damion', 'Fjalla One', 'Nexa Light', 'Nexa Black', 'Nexa Thin', 'Nexa Regular', 'Nexa Heavy', 'Aguafina Script', 'Chalkboard SE', 'SCRIPTINA', 'Kaushan Script',
'Caviar Dreams Bold Italic', 'Caviar Dreams Bold', 'Dancing Script', 'Fira Mono', 'Days Regular', 'Bifurk', 'Amatic', 'Fredericka the Great', 'Marker Felt Wide', 'Scriptina',
'Caviar Dreams Italic', 'AdineKirnberg', 'Arimo Bold', 'SignPainter-HouseScript', 'Arimo Italic', 'Alexandra Script', 'AnastasiaScript', 'Andika', 'Bickham Script Two', 'Carolina', 'Cousine',
'Ouverture script', 'Alegreya', 'Anonymous Pro', 'Molle', 'Neucha', 'AvantGarde Bk BT', 'AvantGarde Md BT', 'Futura', 'Marker Felt', 'Caviar Dreams', 'Marker Felt Thin', 'Futura Medium',
'Droid Sans', 'Droid Sans Mono', 'Futura Heavy', 'Clear Sans', 'Chalkboard SE Light', 'Chalkboard SE Regular', 'Berkshire Swash', 'Futura Light', 'Calligraph', 'Geneva CY', 'Overpass',
'Alegreya Sans', 'Archivo', 'Archivo Black', 'Archivo Narrow', 'Cormorant SC', 'Cormorant Unicase', 'Cormorant Upright', 'Crimson Text', 'Norican', 'Satisfy', 'Sofia', 'Crystal', 'Cardo',
'VNI-Kun', '.VnCourier New', 'VNI-Bodon-Poster', '.VnSouthernH', '.VnArial', 'VNI-Fato', 'VNI Greece', 'VNI-Murray', 'VNI-Top', 'VNI-Book', 'VNI-Garam', '.VnTeknicalH', 'Vinhan', 'VNI-Avo',
'.VnLincolnH', '.VnCooperH', 'VNI-Palatin', '.VnArialH', '.VnShelley Allegro', 'VNI-Aztek', '.VnMysticalH', 'VNI-Univer', 'VNI-Helve', '.VnKoalaH', 'VNI-Bandit', 'VNI-Park', '.VnTeknical',
'VNI-Swiss-Condense', '.VnArial NarrowH', 'VNI-Centur', 'Cantho', '.VnCentury Schoolbook', 'VNI-Free', 'VNI-Harrington', '.VnSouthern', '.VnMemorandum', 'VNI-Jamai', 'VNI-Korin', '.VnBodoni',
'.VnArabia', '.VnLucida sans', 'VNI-Hobo', 'VNI-Tubes', 'VNI-Duff', 'VNI-Lithos', '.VnKoala', 'VNI-Zap', '.VnBlack', '.VnArial Narrow', 'VNI Cambodia', 'VNI-WIN Sample Font', 'VNI-Couri',
'VNI-Vari', 'VNI-Allegie', '.VnLinus', 'VNI-Slogan', 'VNI-Dur', 'VNI-Present', 'VNI-Ariston', 'VNI-Internet Mail', 'VNI-Meli', '.VnAvant', '.VnArabiaH', 'VNI-Maria', 'VNI-Times',
'.VnCourier NewH', 'VNI-Aptima', '.VnBodoniH', 'VNI-Vivi', 'VNI-Dom', '.VnTimeH', '.VnTime', 'VNI-Tekon', '.VnAvantH', 'VNI-Franko', 'VNI-Helve-Condense', '.VnCentury SchoolbookH',
'VNI-Goudy', 'VNI-Linus', '.VnBlackH', 'VNI-Bodon', '.VnLinusH', '.VnMemorandumH', 'VNI Laos', '.VnMystical', 'VNI Russia', 'VNI-Broad', 'VNI-Juni', '.VnLincoln', 'Script', 'VNI-Commerce',
'.VnHelvetIns', '.VnCommercial ScriptH', '.VnBahamasBH', '.VnFreeH', '.VnRevueH', '.VnUniverseH', '.VnPresent', '.VnCommercial Script', '.VnRevue', '.VnPresentH', '.VnClarendonH',
'.VnBook-Antiqua', 'VNI-Awchon', '.VnVogueH', '.VnVogue', 'VNI-Souvir', '.Vn3DH', '.VnCooper', '.VnBook-AntiquaH', 'VNI-DOS Sample Font', '.VnPark', '.VnBahamasB', '.VnTifani Heavy',
'.VnGothicH', '.VnCourier', '.VnStamp', '.VnMonotype corsivaH', '.VnAristoteH', '.VnExoticH', '.VnExotic', '.VnUniverse', '.VnFree', 'VNI-Coronet', '.VnTifani HeavyH', 'VNI-Brush',
'VNI-Script', '.VnParkH', '.VnAristote', '.VnClarendon', '.VnMonotype corsiva', '.VnHelvetInsH', '.VnGothic', 'VNI-Revue', 'VNI-Auchon', 'VNI-Cooper', 'Savoye LET Plain:1.0', 'Advent Pro',
'Prosto One', 'Savoye LET Plain', 'Montserrat Alternates', 'INCONSOLATA', 'Inconsolata', 'NanumGothic', 'NanumMyeongjo', 'Noto Sans JP Regular', 'Noto Sans KR Regular',
'Noto Sans SC Regular', 'Noto Sans TC Regular', 'Audiowide', 'Just Me Again Down Here', 'Katibeh', 'Maitree', 'Metal Mania', 'Mystery Quest', 'Noto Serif JP', 'Noto Serif KR',
'Noto Serif SC', 'Patrick Hand', 'Pirata One', 'Ribeye Marrow', 'Righteous', 'Sacramento', 'Sahitya', 'Shadows Into Light Two', 'Shojumaru', 'Vesper Libre', 'Muli Light',
'NanumGothic ExtraBold', 'Muli', 'Laila Medium', 'NanumMyeongjo ExtraBold', 'Noto Sans CJK JP', 'Bubblegum Sans', 'NanumGothic Light', 'Noto Sans CJK JP Black', 'Noto Sans CJK JP Light',
'Noto Sans CJK JP Medium', 'Noto Sans CJK JP Thin', 'Asar', 'Cairo', 'Cambay', 'Eczar', 'Fahkwang', 'K2D', 'Laila', 'Markazi Text', 'Mitr', 'Mukta', 'Niramit', 'Noto Sans KR', 'Noto Sans SC',
'Sancreek', 'Sarabun', 'ZCOOL XiaoWei', 'Aileron', 'Aileron SemiBold', 'Aileron Bold', 'Aileron Heavy', 'Aileron Light', 'Aileron Black', 'Aileron Thin', 'Aileron UltraLight', 'Peralta',
'Nimbus Sans L', 'Anton', 'Work Sans', 'AlternateGothic2 BT', 'Bilbo Swash Caps', 'IBM Plex Mono', 'Julius Sans One', 'Monoton', 'Shadows Into Light', 'Barrio', 'Delius', 'Pangolin',
'Vast Shadow', 'Visitor TT2 BRK', 'Visitor TT1 BRK', 'Nexa Bold', 'Abril Fatface', 'Josefin Sans', 'Martel', 'Yanone Kaffeesatz', 'Zeyada', 'ARNO PRO', 'Arno Pro', 'Abril Fatface Regular',
'Chakra Petch', 'Rajdhani', 'Arimo Bold Italic', 'Lato Thin Italic', 'Lato Semibold Italic', 'Lato Light Italic', 'Lato Medium Italic', 'Brandon Grotesque Light', 'Brandon Grotesque Medium',
'Akshar Unicode', 'Brandon Grotesque Black', 'gargi', 'Gargi', 'Aref Ruqaa', 'Minion', 'Poster', 'Unicorn', 'Hebar', 'Opus', 'Roland', 'Kino MT', 'Typewriter', 'Roboto Condensed Regular',
'Benguiat', 'Decor', 'Electron', 'Bangers', 'BadaBoom BB', 'Verona', 'Vollkorn Bold', 'Muli Light Italic', 'Muli Italic', 'Vollkorn Regular', 'Vollkorn Italic', 'Vollkorn Bold Italic',
'Almarai', 'Noto Sans JP', 'Space Mono', 'Tajawal', 'Trade Gothic LT Std Light', 'Trade Gothic LT Std', 'Baloo Bhaijaan', 'Vollkorn', 'News Cycle', 'Calligrapher', 'Dollar',
'PT Sans Caption', 'Helvetica Neue Condensed Bold', 'Helvetica Neue Condensed Black', 'Harry P', 'PT Sans Caption Bold', 'Bickham Script One', 'Ceremonious Two', 'Copyist',
'Heather Script One', 'Alice', 'Forum', 'Gabriela', 'Kelly Slab', 'Ledger', 'Philosopher', 'Play', 'Scada', 'Helvetica Neue', 'Hypatia Sans Pro Semibold', 'Hypatia Sans Pro Black',
'Helvetica Neue Light', 'Helvetica Neue Thin', 'Arno Pro SmText', 'Helvetica Neue UltraLight', 'Hypatia Sans Pro ExtraLight', 'Arno Pro Subhead', 'Arno Pro Display', 'Hypatia Sans Pro',
'Hypatia Sans Pro Light', 'Helvetica Neue Medium', 'Arno Pro Caption', 'Ariston', 'Ruslan Display', 'Adobe Gurmukhi', 'Adobe Gurmukhi Bold', 'Andale Mono IPA', 'LuzSans-Book', 'Italiana',
'VNtimes new roman', 'VnTimes', 'VnTimes2', 'Thanhoa', 'Patua One', 'Amadeus', 'Keyboard', 'SFNS Display', 'SWItalc', 'SWItalt', 'SWMeteo', 'SWLink', 'SWRomnt', 'SWRomns', 'SWRomnc',
'SWComp', 'SWMusic', 'SWIsop2', 'SWIsop3', 'SWIsop1', 'SWMap', 'SWGreks', 'SWMath', 'SWGDT', 'SWIsot3', 'SWGothg', 'SWGothe', 'SWGothi', 'SWSimp', 'SWRomnd', 'SWTxt', 'SWIsot2', 'SWIsot1',
'SWScrpc', 'SWScrps', 'SWAstro', 'SWMono', 'SWGrekc', 'HYSWLongFangSong', 'SWItal', 'OLF SimpleSansOC', 'Myriad CAD', 'Adobe Pi Std', 'Abadi MT Condensed Extra Bold', 'Graduate', 'FRUTIGER',
'Abadi MT Condensed', 'Adamina', 'Maven Pro', 'AR ESSENCE', 'AR BLANCA', 'AR DECODE', 'AR DESTINE', 'AR DARLING', 'AR CARTER', 'AR JULIAN', 'AR DELANEY', 'AR CENA', 'AR HERMANN',
'AR BERKLEY', 'AR CHRISTY', 'Oranienbaum', 'Tenor Sans', 'Brussels', 'IBM Plex Sans', 'Itim', 'Handlee', 'IBM Plex Sans Condensed', 'Quantico', 'American Typewriter',
'American Typewriter Condensed', 'American Typewriter Condensed Bold', 'American Typewriter Light', 'American Typewriter Condensed Light', 'JuneBug', 'Arkhip', 'American Typewriter Bold',
'Kumar One Outline', 'Libre Franklin', 'NORMAL', 'American Typewriter Semibold', 'Angkor', 'Bokor', 'Dangrek', 'Fasthand', 'MelodBold', 'Flubber', 'Frankfurter Venetian TT', 'Notram',
'HarvestItal', 'Asimov', 'Deneane', 'QuiverItal', 'Huxley Titling', 'Distant Galaxy', 'Baby Kruffy', 'Vivian', 'Bastion', 'Enliven', 'Russel Write TT', 'Terminator Two', 'Induction',
'Balthazar', 'Corporate', 'Detente', 'Waverly', 'Nobile', 'LetterOMatic!', 'Glockenspiel', 'BN Jinx', 'Geotype TT', 'Pirate', 'Minerva', 'LittleLordFontleroy', 'BOUTON International Symbols',
'Stephen', 'Tarzan', 'Bobcat', 'Hansen', 'SF Movie Poster', 'Moonbeam', 'Lato Hairline Italic', 'Hollywood Hills', 'Autumn', 'Candles', 'Year supply of fairy cakes', 'BolsterBold',
'BN Machine', 'RowdyHeavy', 'Whimsy TT', 'Steppes TT', 'Nasalization', 'PenultimateLightItal', '18thCentury', 'PhrasticMedium', 'Skinny', 'Architects Daughter', 'Dominican', 'Martina',
'Fingerpop', 'Woodcut', 'X-Files', 'Parry Hotter', 'Harvest', 'AnticFont', 'Limousine', 'Commons', 'Gazzarelli', 'PR Celtic Narrow', 'Emmett', 'Splash', 'Colbert', 'Calvin', 'Neon Lights',
'Tangerine', 'Miama', 'Dayton', 'Rondalo', 'OpineHeavy', 'Heavy Heap', 'Borealis', 'Italianate', 'Creepygirl', 'Josefin Slab', 'Haxton Logos TT', 'Almonte Snow', 'Coolsville', 'Digifit',
'Brandish', 'Manorly', 'Greek Diner Inline TT', 'Calligraphic', 'Valken', 'Mael', 'PenultimateLight', 'Mycalc', 'Hombre', 'Salina', 'Alfredo', 'November', 'Penultimate', 'Snowdrift',
'Cracked Johnnie', 'Hand Me Down S (BRK)', 'CabinSketch', 'Chinyen', 'VNI Times', 'VNI-GlabXb', 'VNI Helve Condense', 'Banmai Times', 'VNI-DesdemonaU', 'VNI-Bauhaus', 'VNI-Wide Latin',
'VISCII Sample Font', 'VNI Helve', 'VNI-ShellaL', 'VNI-Shadow', 'VNI-Algerian', 'VNI-Colonna', 'VNI Aptima', 'VNI-Lydi', 'VNI-Bragga', 'VNI-StencilU', 'Vogue', 'VNI-Arial Rounded',
'VNI-Bazooka', 'VNI-Stylus', 'VNI-Standout', 'VNI-Boston Black', 'VN-NTime', 'VNI-StageCoach', 'VNI-Fillmore', 'VNI-Heather', 'VNI-Scribble', 'VNI-Chaucer', 'Antonio',
'Helvetica Light Oblique', 'Libre Barcode 128', 'Buenard', 'Clicker Script', 'Duru Sans', 'Euro Sign', 'Microsoft NeoGothic', 'Microsoft MHei', 'YuGothic Bold',
'Meslo LG L Regular for Powerline', 'Courier New Cyr', 'Courier New CYR', 'Tera Special', 'TeamViewer10', 'Snell Roundhand', 'Snell Roundhand Black', 'Oswald Stencil Bold', 'SOLIDWORKS GDT',
'Abhaya Libre', 'Caesar Dressing', 'NanumSquare', 'NanumBarunGothic', 'Avenir Roman', 'Avenir Book Oblique', 'Avenir Book', 'Avenir Heavy Oblique', 'Avenir Black Oblique', 'Avenir Oblique',
'Avenir Heavy', 'Avenir Medium', 'Avenir Light Oblique', 'Avenir Light', 'Avenir Black', 'Avenir Medium Oblique', 'AVENIR', 'Avenir', 'Xirod', 'LaurenScript', 'Playfair Display SC Black',
'OCR-A II', 'Droid Sans Ethiopic', 'Noto Sans Lao UI', 'Carrois Gothic SC', 'Droid Sans Hebrew', 'Playfair Display SC', 'Padauk Book', 'PT Mono', 'Droid Sans Fallback', 'Noto Sans Thai UI',
'Noto Sans CJK SC', 'Garamond Premier Pro', 'QuickType II Condensed', 'Ultra', '3ds Light', 'DigifaceWide', 'Noto Sans CJK TC', 'Droid Sans Georgian', 'PT Serif Caption',
'Droid Arabic Naskh', 'Noto Sans CJK KR', 'Garamond Premier Pro Semibold', 'Noto Sans Mono CJK SC', 'Droid Sans Armenian', 'QuickType II', 'QuickType II Mono', 'Bickham Script Pro Semibold',
'Jameel Noori Nastaleeq', 'QuickType II Pi', 'Bickham Script Pro Regular', 'Noto Sans Mono CJK JP', 'Noto Sans Mono CJK TC', 'HelveticaNeue', 'Noto Sans Mono CJK KR', 'Luna Bar', 'OCR B MT',
'Noto Sans Phags Pa', 'Android Emoji', 'Droid Naskh Shift Alt', 'Droid Sans Devanagari', 'Droid Sans Tamil', 'Noto Color Emoji', 'Noto Sans CJK HK', 'Noto Sans CJK HK Black',
'Noto Sans CJK HK Light', 'Noto Sans CJK HK Medium', 'Noto Sans CJK HK Thin', 'Noto Sans CJK KR Black', 'Noto Sans CJK KR Light', 'Noto Sans CJK KR Medium', 'Noto Sans CJK KR Thin',
'Noto Sans CJK SC Black', 'Noto Sans CJK SC Light', 'Noto Sans CJK SC Medium', 'Noto Sans CJK SC Regular', 'Noto Sans CJK SC Thin', 'Noto Sans CJK TC Black', 'Noto Sans CJK TC Light',
'Noto Sans CJK TC Medium', 'Noto Sans CJK TC Thin', 'Noto Sans Khmer UI', 'Noto Sans Mono CJK HK', 'Noto Sans Myanmar UI', 'Noto Sans Oriya UI', 'Noto Sans Syriac Estrangela',
'Noto Sans Tibetan', 'Noto Serif CJK JP', 'Noto Serif CJK JP Black', 'Noto Serif CJK JP ExtraLight', 'Noto Serif CJK JP Light', 'Noto Serif CJK JP Medium', 'Noto Serif CJK JP SemiBold',
'Noto Serif CJK KR', 'Noto Serif CJK KR Black', 'Noto Serif CJK KR ExtraLight', 'Noto Serif CJK KR Light', 'Noto Serif CJK KR Medium', 'Noto Serif CJK KR SemiBold', 'Noto Serif CJK SC',
'Noto Serif CJK SC Black', 'Noto Serif CJK SC ExtraLight', 'Noto Serif CJK SC Light', 'Noto Serif CJK SC Medium', 'Noto Serif CJK SC SemiBold', 'Noto Serif CJK TC', 'Noto Serif CJK TC Black',
'Noto Serif CJK TC ExtraLight', 'Noto Serif CJK TC Light', 'Noto Serif CJK TC Medium', 'Noto Serif CJK TC SemiBold', 'B612 Mono', 'Catamaran', 'Coming Soon', 'Cutive Mono', 'Domine', 'Heebo',
'Libre Baskerville', 'Noto Sans TC', 'Old Standard TT', 'VT323', 'Rationale', 'GrilledCheese BTN Toasted', 'FlemishScript BT', 'SF Compact Rounded Regular', 'Italianno', 'Futura Medium BT',
'Blade Runner Movie Font', 'TeX Gyre Bonum', 'Turret Road', 'Amazone BT', 'Cezanne', 'Heather', 'Matisse ITC', 'ShelleyVolante BT', 'Subway', 'Technical', 'Tubular', 'Monotype Sorts',
'Freebooter Script', 'KacstTitleL', 'KacstTitle', 'KacstArt', 'Freehand', 'Rod Transparent', 'KacstDecorative', 'KacstDigital', 'Fixed Miriam Transparent', 'Miriam Transparent', 'Note this',
'KacstFarsi', 'KacstPoster', 'KacstQurn', 'KacstOne', 'Nazli', 'UKIJ Moy Qelem', 'Marvel', 'Quicksand Bold', 'Interstate-Regular', 'Interstate-Black', 'NanumGothicExtraBold', 'INTERSTATE',
'Thonburi', 'Thonburi Bold', 'Thonburi Light', 'Bayon', 'FFF Tusj', 'LUCIDA GRANDE', 'Lucida Grande Bold', 'Lucida Grande', 'Prompt', 'JaneAusten', 'Casual', 'MedievalSharp', 'PT Mono Bold',
'PT Serif Caption Italic', 'Days One', 'Varela', 'Bariol Regular', 'Exo', 'INSPECTIONXPERT GDT FRAMES', 'INSPECTIONXPERT GDT NOFRMS', 'CATIA Symbols', 'Courier10 BT', 'SymbolProp BT',
'SymbolMono BT', 'Chaucer', 'Dauphin', 'Halong', 'Desdemona', 'Vogue-ExtraBold', 'Phatdiem', 'Giadinh', 'Mytho', 'Hoian', 'Utopia', 'Hue', 'Futura Bold', 'Cuulong', 'Braggadocio',
'Lithograph', 'Lithograph Light', 'Quangngai', 'Giolinh', 'Quinhon', 'Hadong', 'Rachgia', 'PFDaVinciScriptPro-Inked', 'Terminator Real NFI', 'Zapfino Extra LT Ligatures',
'Zapfino Extra LT Four', 'Zapfino Extra LT One', 'Zapfino Extra LT Two', 'Metal', 'STIXSizeTwoSym-Bold', 'STIXSizeTwoSym-Regular', 'STIXSizeThreeSym-Bold', 'STIXGeneral-BoldItalic', 'cmmi10',
'STIXSizeOneSym-Bold', 'STIXSizeFourSym-Bold', 'STIXGeneral-Regular', 'STIXNonUnicode-Italic', 'STIXSizeFiveSym-Regular', 'cmtt10', 'STIXNonUnicode-Regular', 'STIXGeneral-Bold',
'STIXSizeOneSym-Regular', 'cmss10', 'cmex10', 'STIXSizeThreeSym-Regular', 'STIXSizeFourSym-Regular', 'cmr10', 'cmsy10', 'STIXNonUnicode-BoldItalic', 'STIXGeneral-Italic', 'cmb10',
'STIXNonUnicode-Bold', 'STIXNonUnicode', 'STIXSizeOneSym', 'STIXGeneral', 'STIXSizeFiveSym', 'STIXSizeTwoSym', 'STIXSizeThreeSym', 'STIXSizeFourSym', 'PFFuelPro-Regular',
'PFDaVinciScriptPro-Regular', 'Rochester', 'Gotham Book', 'Pricedown', 'Playfair Display SC Black Italic', 'Playfair Display SC Bold', 'Playfair Display SC Italic',
'Playfair Display SC Bold Italic', 'Gotham Black Italic', 'Gotham Ultra', 'MATTEROFFACT', 'Gotham Ultra Italic', 'Gotham Bold Italic', 'Gotham Thin Italic', 'Gotham Medium Italic',
'Neo Sans Pro Light', 'Nexa XBold', 'Nexa Book', 'TeamViewer9', 'Castro Script PERSONAL USE ONLY', 'Seaweed Script', 'Virtual DJ', 'LCD', 'Quickpen', 'Monika Italic', 'Arial MT',
'Major Mono Display', 'DIN', 'Avenir Next Condensed', 'Avenir Next Heavy', 'Avenir Next Regular', 'Avenir Next', 'DIN Condensed', 'Avenir Next Medium', 'Koulen', 'Material Icons', 'Underdog',
'Droid Arabic Kufi', 'Thabit', 'Jomhuria', 'Lateef', 'Mirza', '.Arabic UI Text', 'Lalezar', 'Suez One', 'Bitstream Vera Sans Mono', 'Charter BT', 'Copperplate', 'GoudyHandtooled BT',
'Marion', 'Mona Lisa Solid ITC TT', 'MS LineDraw', 'Roman', 'Trajan', 'Westminster', 'WHITNEY', 'Heiti TC Light', 'DIN-Light', 'Futura Light BT', 'Futura Light Condensed BT',
'Futura Light Italic BT', 'Copperplate Bold', 'DIN-Bold', 'Engravers MT Bold', 'DIN-Medium', 'DIN-BlackAlternate', 'UnDotum', 'Arrus BT', 'Aurora Cn BT', 'Benguiat Bk BT',
'BernhardFashion BT', 'BernhardMod BT', 'Bremen Bd BT', 'Charter Bd BT', 'ChelthmITC Bk BT', 'Didot', 'FrnkGothITC Bk BT', 'Futura Lt BT', 'FuturaBlack BT', 'GoudyOLSt BT', 'Heiti TC',
'Kabel Bk BT', 'Kabel Ult BT', 'Kaufmann Bd BT', 'OzHandicraft BT', 'PosterBodoni BT', 'Serifa BT', 'Serifa Th BT', 'Souvenir Lt BT', 'Swiss911 XCm BT', 'ZapfEllipt BT', 'ZapfHumnst BT',
'ZapfHumnst Dm BT', 'Marion Regular', 'Copperplate Light', 'Heiti TC Medium', 'Snell Roundhand Bold', 'Lato Heavy Italic', 'Bradley Hand Bold', 'Flavors', 'Mountains of Christmas',
'Bradley Hand', 'Ice kingdom', 'Spicy Rice', 'Nanum Brush Script', 'Nanum Pen Script', 'New Gulim', 'NanumGothicCoding', 'NanumSquareRound', 'Black Han Sans', 'CaslonOpnface BT',
'VAGRounded BT', 'Incised901 Nd BT', 'Parisian BT', 'ZapfHumnst Ult BT', 'PrimaSans BT', 'Incised901 NdIt BT', 'Sonic XBd BT', 'Dosis Bold', 'Candal', 'Chelsea Market', 'Chonburi',
'Codystar', 'EB Garamond', 'El Messiri', 'Jacques Francois Shadow', 'Jockey One', 'Krona One', 'Marmelad', 'Original Surfer', 'Poller One', 'Ranchers', 'Rosario', 'Voltaire', 'Wallpoet',
'Special Elite', 'Alike Angular', 'Allerta Stencil', 'Cinzel Decorative', 'Dokdo', 'Fondamento', 'Inknut Antiqua', 'Kosugi', 'Lacquer', 'Love Ya Like A Sister', 'Mansalva', 'Notable',
'Nunito Sans', 'Secular One', 'Yatra One', 'Selena', 'Germanica', 'Kanalisirung', 'Cut Me Out', 'GENUINE', 'Rumburak', 'Rundkursiv', 'Gen W01 Light', 'Archicoco', 'Bellota', 'YuGothic',
'Quicksand Dash', 'Averia Sans', 'Averia', 'Gen W01', 'FML-Padmanabha', 'Cut Me Out 2', 'Cut Me Out 3', 'Dancing Script OT', 'ABeeZee', 'Averia Serif', 'Gidole', 'Walter', 'Marck Script',
'Sail', 'Henny Penny', 'Razer Header Regular', 'DIN-Regular', 'Razer Header Light', 'Razer Header Regular Oblique', 'Myriad Web Pro', 'SWTOR Trajan', 'Razer Text Regular', 'Coustard',
'Myriad Web Pro Condensed', 'Tele-Marines', 'Remachine Script Personal Use', 'English157 BT', 'KievitPro-Regular', 'Glegoo', 'Lobster Two', 'Prata', 'Signika', 'CentSchbook BT',
'HelveticaNeueLT Pro 65 Md', 'HelveticaNeueLT Pro 35 Th', 'HelveticaNeueLT Pro 45 Lt', 'HelveticaNeueLT Pro 55 Roman', 'Lusitana', 'Oleo Script Swash Caps', 'Long Cang', 'Ma Shan Zheng',
'Helvetica Neue Bold', 'Iceland', 'TeX Gyre Adventor', 'Chicle', 'Linux Libertine Display O', 'Linux Libertine Initials O', 'Linux Biolinum O', 'Linux Libertine Mono O',
'Linux Biolinum Keyboard O', 'Linux Libertine O', 'Abadi MT Condensed Light', 'Galliard BT', 'Gill Sans', 'News Gothic', 'SaiVrishin', 'Bookshelf Symbol 3', 'Dingbats', 'Gill Sans Bold',
'SaiIndira', 'Gill Sans Italic', 'Bookshelf Symbol 2', 'Bitstream Vera Serif', 'News Gothic MT', 'News Gothic MT Bold', 'Baskerville Bold Italic', 'Gill Sans Bold Italic', 'MS Reference 1',
'MS Reference 2', 'Baskerville Italic', 'News Gothic MT Italic', 'Brush Script', 'Amudham', 'SaiSai', 'SaiEmbed', 'Bookshelf Symbol 1', 'Geometr231 BT', 'Geometr231 Hv BT',
'Geometr231 Lt BT', 'Zurich Ex BT', 'Gill Sans Light', 'Gill Sans SemiBold', 'Gill Sans UltraBold', 'Kalyani', 'Circular Std Book Italic', 'Circular Std Black', 'Circular Std Medium',
'Circular Std Medium Italic', 'Circular Std Book', 'Circular Std Bold', 'Circular Std Black Italic', 'Circular Std Bold Italic', 'TeamViewer11', 'Tuyenduc', 'Andong', 'Binhlong', 'Ducmy',
'Bienhoa', 'Ancuu', 'Baclieu', 'Binhdinh', 'Camranh', 'Camau', 'HGSHeiseiKakugothictaiW5', 'HGSHeiseiKakugothictaiW9', 'HGSHeiseiKakugothictaiW3', 'HGHeiseiKakugothictaiW9', 'HGHangle',
'HGSHeiseiMinchotaiW3', 'HGHeiseiMinchotaiW3', 'HGSHeiseiMinchotaiW9', 'HGMinchoL', 'HGPHeiseiMinchotaiW9', 'HGPHeiseiMinchotaiW3', 'HGPHeiseiKakugothictaiW5', 'HGPHeiseiKakugothictaiW3',
'AVGmdBU', 'HGHeiseiKakugothictaiW5', 'HGHeiseiKakugothictaiW3', 'HGP-AGothic2-Latin1K', 'HGHeiseiMinchotaiW9', 'HGPHeiseiKakugothictaiW9', 'HGSMinchoL', 'HGPMinchoL', 'Linowrite',
'Airstream', 'fox in the snow', 'Marion Italic', 'Western Bang Bang', 'Shorelines Script Bold', 'Wolf in the City Light', 'BlackJackRegular', 'Oleo Script', 'Sketch Block',
'Wolf in the City', 'Bungee', 'Bungee Hairline', 'Bungee Outline', 'Bungee Shade', 'Siyam Rupali ANSI', 'Kalpurush ANSI', 'Kalpurush', 'Siyam Rupali', 'Montserrat Ultra Light',
'Bariol Regular Italic', 'Nosifer', 'Code39AzaleaRegular3', 'Code39AzaleaRegular2', 'Code39AzaleaRegular1', 'Code39AzaleaNarrow1', 'Code39AzaleaNarrow3', 'Code39AzaleaNarrow2',
'Code39AzaleaWide3', 'Code39AzaleaWide2', 'Code39AzaleaWide1', 'Press Start 2P', 'Knewave', 'AdineKirnberg-Script', 'Allura', 'Arizonia', 'Lovers Quarrel', 'Meddon', 'Meie Script', 'Montez',
'Parisienne', 'Qwigley', 'Ruthie', 'Vibur', 'Dr Sugiyama', 'Herr Von Muellerhoff', 'Monsieur La Doulaise', 'Mr Dafoe', 'Mr De Haviland', 'Big Shoulders Display', 'Asap', 'Asap Condensed',
'Nightclub BTN UltraCn', 'GrilledCheese BTN Cn', 'ConcursoItalian BTN Wide', 'Marquisette BTN Light', 'Clarendon Cn BT', 'Nightclub BTN Cn', 'ELEGANCE', 'Candy Round BTN',
'Sneakerhead BTN Condensed', 'NATURALBORN', 'HELTERSKELTER', 'MANDELA', 'SHELMAN', 'ABSALOM', 'HERMAN', 'Persia BT', 'Candy Round BTN Cond Lt', 'Sneakerhead BTN Shadow', 'Realvirtue',
'CASMIRA', 'Joan', 'JUSTICE', 'ConcursoItalian BTN', 'Freehand575 BT', 'RADAGUND', 'TRENDY', 'PUPPYLIKE', 'Candy Round BTN Lt', 'ISABELLE', 'Starliner BTN', 'Alibi', 'ELLIS',
'GrilledCheese BTN Wide Blk', 'OPENCLASSIC', 'Galeforce BTN', 'Hot Mustard BTN Poster', 'Hot Mustard BTN', 'Sneakerhead BTN', 'EXCESS', 'Microdot', 'Nightclub BTN', 'PRETEXT',
'Candy Round BTN Cond', 'NEOLITH', 'Swiss921 BT', 'Sneakerhead BTN Outline', 'Marquisette BTN Lined', 'Marquisette BTN', 'Clarendon Hv BT', 'Incised901 Ct BT', 'Belwe Bd BT', 'Belwe Cn BT',
'SonicCutThru Hv BT', 'Incised901 BdCn BT', 'Belwe Lt BT', 'Space Bd BT', 'Newton Phonetic ABBYY', 'Menlo Regular', 'Menlo', 'Hoefler Text Italic', 'Racing Sans One', 'Emblema One',
'La Belle Aurore', 'UnBatang', 'Alfa Slab One', 'Serifa', 'Futura LT Light', 'URW Gothic L', 'Futura LT Heavy', 'Futura LT Medium', 'Futura Book BT', 'Kirang Haerang', 'Kanit', 'Andale Mono',
'TakaoPGothic', 'Symbola', 'D050000L', 'Nimbus Mono PS', 'Nimbus Roman', 'Nimbus Sans', 'Nimbus Sans Narrow', 'Standard Symbols PS', 'C059', 'P052', 'Tinos', 'URW Bookman', 'URW Gothic',
'Z003', 'OCRA', 'Pleasantly Plump', 'Noteworthy Light', 'Faster One', 'Noteworthy', 'Just Another Hand', 'Aladin', 'Passion One', 'Futura LT Condensed Light', 'Futura LT Heavy Oblique',
'Futura LT Bold', 'Futura LT Extra Bold Oblique', 'Didot Bold', 'Futura LT Medium Oblique', 'DIN-RegularAlternate', 'Futura LT Book', 'Futura LT Condensed Bold Oblique',
'Futura LT Condensed Medium Oblique', 'DIN-LightAlternate', 'Futura LT Extra Bold', 'Futura LT Bold Oblique', 'Futura LT Condensed Extra Bold', 'Futura LT Light Oblique',
'WenQuanYi Micro Hei', 'Didot Italic', 'Futura LT Condensed Light Oblique', 'Futura LT Condensed Bold', 'Futura LT Condensed Medium', 'DIN-MediumAlternate',
'Futura LT Condensed Extra Bold Oblique', 'Futura LT Book Oblique', 'Source Han Sans CN Normal', 'Source Han Serif CN', 'DIN Alternate', 'Skia', 'Annie BTN', 'Blackout',
'Holiday Springs BTN Quill', 'Futura Book Italic BT', 'Ezra SIL', 'Gentium', 'Euphoria Script', 'CloisterBlack BT', 'Informal011 BT', 'Lydian BT', 'Skia Condensed', 'Skia Light',
'Skia Black', 'Formal436 BT', 'Folio XBd BT', 'Skia Regular', 'Pinyon Script', 'Spectral', 'Helvetica CY', 'Mina', 'Caudex', 'Web Serveroff', 'Alternate Gothic No2 D', 'SF Slapstick Comic',
'Red Hat Text', 'Fascinate', 'Istok Web', 'Lexend Deca', 'Rubik Mono One', 'Montserrat Hairline', 'TeX Gyre Cursor', 'Sanpya', 'DM Sans', 'Gloria Hallelujah', 'Khand', 'Lustria',
'Mouse Memoirs', 'Share Tech', 'OSAKA', 'Osaka', 'Osaka-Mono', 'Osaka Mono', 'Homa', 'Titr', 'Signboard', 'Storybook', 'Bazooka', 'Market', 'DV1-TTYogesh', 'OR-TTSarala', 'BN-TTDurga',
'DV-TTYogesh', 'GJ-TTAvantika', 'SD-TTSurekh', 'ML-TTKarthika', 'AS-TTDurga', 'TL-TTHemalatha', 'PN-TTAmar', 'TM-TTValluvar', 'KN-TTUma', 'LastResort', 'WP MultinationalA Roman',
'WP Greek Century', 'WP MultinationalA Helve', 'WP ArabicScript Sihafa', 'WP MultinationalB Courier', 'WP CyrillicA', 'WP CyrillicB', 'WP Arabic Sihafa', 'WP Greek Helve',
'WP MultinationalA Courier', 'WP Greek Courier', 'WP Hebrew David', 'WP MultinationalB Roman', 'WP MultinationalB Helve', 'Encode Sans', 'Encode Sans Condensed', 'Encode Sans Expanded',
'MS Reference Serif', 'Helvetica Neue Italic', 'Helvetica Neue Bold Italic', 'STIXIntegralsUp', 'STIXIntegralsUpSm', 'STIXIntegralsSm', 'STIXIntegralsUpD', 'STIXIntegralsD', 'STIXVariants',
'Trirong', 'Arial CYR', 'Arial Cyr', 'Comic Relief', 'Bembo', 'Denmark', 'English 111 Vivace BT', 'Onyx BT', 'PTBarnum BT', 'Pythagoras', 'Sceptre', 'Socket', 'Teletype', 'Tristan',
'Vagabond', 'Egyptian710 BT', 'Monotype.com', 'Pointedly Mad', 'Piranesi It BT', 'IRIS', 'GentiumAlt', 'GothicNo13 BT', 'ARDS1', 'AmerType Md BT', 'ARCHER', 'Charlesworth',
'Freefrm721 Blk BT', 'Incised901 Bd BT', 'Incised901 BT', 'Incised901 Lt BT', 'Jester', 'Korinna BT', 'Ribbon131 Bd BT', 'Sherwood', 'Steamer', 'Biko', 'Museo 700 Regular', 'Gothic720 BT',
'CopprplGoth BT', 'BauerBodni BT', 'Caflisch Script Pro', 'Gothic720 Lt BT', 'Industrial736 BT', 'Lapidary333 Blk BT', 'Avanti', 'Geo', 'DELICIOUS', 'Pegasus', 'Carbon Block',
'Museo 500 Regular', 'Augusta', 'DS Crystal', 'Army', 'Alice and the Wicked Monster', 'Museo 100 Regular', 'Abel', 'Ferro Rosso', 'Coaster Shadow', 'Museo 900 Regular', 'Catull',
'Canterbury Regular', 'Museo 300 Regular', 'Actor', 'Aubrey', 'Chivo', 'Covered By Your Grace', 'Karla', 'IMG Symbols', 'IMG Baby', 'IMG Extreme', 'IMG Love', 'IMG Travel', 'IMG Seasons',
'Share', 'Cochin', 'Creepster', 'Chathura', 'Noto Sans CJK KR DemiLight', 'Herculanum', 'Merienda', 'Museo Sans 300', 'Museo Sans 100', 'Museo Sans 500', 'Museo Sans 700', 'VL Gothic',
'VL PGothic', 'Staatliches', 'YD2002', 'DejaVu Sans Mono for Powerline', 'Times New Roman Cyr', 'Times New Roman CE', 'Times New Roman CYR', 'Zurich BlkEx BT', 'Courier New CE', 'Sabrina',
'Chancery Cursive', 'Dirty Headline', 'Day Roman', 'Teen', 'UnitedStates', 'Paprika', 'FZLanTingHeiS-UL-GB', 'Miss Fajardose', 'Mr Bedfort', 'Wendy One', 'Magic School Two',
'Magic School One', 'ZDingbats', 'Khmer OS', 'Khmer OS System', 'Khmer OS Battambang', 'Khmer OS Bokor', 'Khmer OS Content', 'Khmer OS Fasthand', 'Khmer OS Freehand',
'Khmer OS Metal Chrieng', 'Khmer OS Muol', 'Khmer OS Muol Light', 'Khmer OS Muol Pali', 'Khmer OS Siemreap', 'Chenla', 'Hanuman', 'Preahvihear', 'Minisystem', 'Eater', 'Fascinate Inline',
'Frijole', 'Give You Glory', 'Loved by the King', 'Monofett', 'Autour One', 'Chewy', 'Alegreya Sans SC', 'Finger Paint', 'Asset', 'Barriecito', 'Charmonman', 'Galada', 'Londrina Outline',
'Londrina Shadow', 'Mrs Sheppards', 'Piedra', 'Raleway Dots', 'Saira Stencil One', 'Merriweather UltraBold Italic', 'TeX Gyre Heros', 'TeX Gyre Heros Cn', 'Padauk', 'Arial Hebrew',
'Apple Color Emoji', 'Ayuthaya', 'Bangla Sangam MN', 'Chalkboard', 'Chalkduster', 'Euphemia UCAS', 'Gujarati Sangam MN', 'Gurmukhi MN', 'Kailasa', 'Kannada Sangam MN', 'Krungthep',
'Malayalam Sangam MN', 'Nadeem', 'Oriya Sangam MN', 'Sinhala Sangam MN', 'Tamil Sangam MN', 'Telugu Sangam MN', 'Zapfino', 'PingFang HK Light', 'KufiStandardGK Regular', 'Songti SC Bold',
'Charter Black Italic', 'Waseem Regular', 'Avenir Next Ultra Light', 'Myanmar Sangam MN', 'Trattatello', 'ITF Devanagari Marathi Demi', 'Sukhumvit Set Semi Bold', 'Kohinoor Devanagari Light',
'Songti SC Regular', 'Seravek Bold Italic', 'Charter Roman', 'Muna Black', 'Euphemia UCAS Bold', 'Sukhumvit Set Medium', 'Avenir Next Condensed Demi Bold', 'Bangla MN', 'Gujarati MT Bold',
'System Font Medium', 'System Font Bold', 'Shree Devanagari 714 Bold Italic', 'Phosphate Solid', 'Damascus', 'Shree Devanagari 714 Italic', 'PingFang SC Thin', 'Futura Condensed Medium',
'Hiragino Kaku Gothic Std W8', 'Euphemia UCAS Italic', 'Courier Oblique', 'STIXIntegralsSm-Bold', 'Avenir Next Italic', 'Songti TC Regular', 'STIXIntegralsSm-Regular', 'Arial Hebrew Bold',
'Raanana Bold', 'Telugu MN Bold', 'System Font Ultralight', 'Kohinoor Bangla Medium', 'PingFang HK Regular', 'ITF Devanagari Marathi Light', 'Khmer MN Bold', 'STIXIntegralsUp-Bold',
'Superclarendon Regular', 'Avenir Next Condensed Italic', 'Mshtakan Oblique', 'New Peninim MT Inclined', 'Charter Black', 'Mishafi Regular', 'Sukhumvit Set Light', 'System Font Regular',
'Silom', 'Futura Condensed ExtraBold', 'Lao MN Bold', 'Baghdad', 'PingFang TC Light', 'Apple SD Gothic Neo UltraLight', 'Corsiva Hebrew Bold', 'Iowan Old Style Bold',
'Bodoni 72 Oldstyle Bold', 'Gujarati Sangam MN Bold', 'Kohinoor Telugu Medium', 'Menlo Bold Italic', 'ITF Devanagari Medium', 'Superclarendon Light', 'Gurmukhi Sangam MN',
'Hiragino Mincho Pro W3', 'Optima ExtraBlack', 'Hiragino Mincho Pro W6', 'Luminari', 'ITF Devanagari Marathi Medium', 'Arial Hebrew Scholar', 'SignPainter-HouseScript Semibold',
'Hiragino Kaku Gothic ProN W6', 'Hiragino Kaku Gothic ProN W3', 'Skia Light Condensed', 'Seravek Bold', 'Bodoni 72 Oldstyle Book', 'Al Nile', 'Cochin Bold Italic', 'Chalkboard Bold',
'Geeza Pro Bold', 'Kokonor Regular', 'Arial Hebrew Scholar Bold', 'Kohinoor Bangla Light', 'Sinhala MN', 'Apple Braille Pinpoint 8 Dot', 'Avenir Next Demi Bold Italic',
'Hiragino Kaku Gothic Pro W3', 'Avenir Next Condensed Bold Italic', 'Avenir Next Condensed Medium', 'Kohinoor Devanagari Semibold', 'Gurmukhi MN Bold', 'Shree Devanagari 714',
'Geeza Pro Regular', 'Kailasa Bold', 'Sinhala MN Bold', 'Damascus Regular', 'Hiragino Mincho ProN W6', 'Devanagari Sangam MN', 'Hiragino Mincho ProN W3',
'Avenir Next Condensed Medium Italic', 'Kannada MN', 'New Peninim MT Bold', 'Malayalam Sangam MN Bold', 'Iowan Old Style Black', 'Diwan Kufi Regular', 'PingFang TC Regular',
'System Font Semibold', 'Al Bayan Bold', 'Apple Symbols', 'Seravek Light', 'Kohinoor Telugu Semibold', 'Damascus Semi Bold', 'Menlo Italic', 'Bodoni 72 Oldstyle Book Italic',
'Al Tarikh Regular', 'Songti SC Black', 'Apple Braille Pinpoint 6 Dot', 'Malayalam MN Bold', 'Apple SD Gothic Neo Thin', 'Kokonor', 'System Font Heavy', 'STIXIntegralsUpD-Regular',
'STIXIntegralsUp-Regular', 'Kohinoor Telugu Bold', 'Seravek Medium Italic', 'Khmer MN', 'Charter Bold Italic', 'Muna', 'Big Caslon Medium', 'Mishafi Gold Regular', 'PingFang SC Ultralight',
'Hiragino Sans GB W6', 'Baghdad Regular', 'PingFang TC Medium', 'Kohinoor Telugu', 'Helvetica Neue Medium Italic', 'Avenir Next Bold Italic', 'AppleGothic', 'Farah Regular',
'STIXVariants-Regular', 'System Font Light', 'PingFang TC Thin', 'System Font Regular G1', 'System Font Regular G3', 'System Font Regular G2', 'PingFang HK Thin',
'Iowan Old Style Bold Italic', 'PingFang SC Semibold', 'Oriya MN Bold', 'Beirut Regular', 'Seravek Italic', 'Noteworthy Bold', 'System Font Thin', 'Seravek Medium',
'Apple SD GothicNeo ExtraBold', 'Khmer Sangam MN', 'Avenir Next Condensed Heavy Italic', 'System Font Bold G3', 'System Font Bold G2', 'System Font Bold G1', 'Savoye LET Plain CC.:1.0',
'Devanagari Sangam MN Bold', 'Superclarendon Italic', 'Songti TC Bold', 'System Font UltraLight', 'Kannada Sangam MN Bold', 'Sathu', 'Avenir Next Medium Italic', 'Sinhala Sangam MN Bold',
'Oriya Sangam MN Bold', 'Kannada MN Bold', 'Heiti SC Medium', 'Superclarendon Bold', 'Kefa Bold', 'Devanagari MT', 'Kohinoor Devanagari Bold', 'PingFang SC Regular', 'STIXIntegralsUpD-Bold',
'ITF Devanagari Demi', 'Kohinoor Devanagari Medium', 'Shree Devanagari 714 Bold', 'Apple Braille Outline 8 Dot', 'Skia Black Condensed', 'Sukhumvit Set Thin', 'Cochin Italic',
'PingFang TC Ultralight', 'Kohinoor Telugu Light', 'STIXIntegralsUpSm-Regular', 'PingFang SC Light', 'Damascus Medium', 'Sana Regular', 'DIN Condensed Bold', 'Telugu Sangam MN Bold',
'Hiragino Sans GB W3', 'Skia Black Extended', 'Helvetica Neue UltraLight Italic', 'Helvetica Neue Thin Italic', 'STIXVariants-Bold', 'PingFang HK Medium', 'STIXIntegralsD-Bold',
'Al Nile Bold', 'Avenir Next Condensed Ultra Light', 'Athelas Bold Italic', 'Seravek', 'Apple SD Gothic Neo Heavy', 'Hiragino Maru Gothic Pro W4', 'Bodoni 72 Book', 'Muna Regular',
'AppleMyungjo Regular', 'PingFang SC Medium', 'Al Bayan Plain', 'Sana', 'Iowan Old Style Roman', 'Gurmukhi Sangam MN Bold', 'Mshtakan', 'Apple SD Gothic Neo SemiBold', 'Charter Bold',
'ITF Devanagari Light', 'Menlo Bold', 'Myanmar MN', 'Avenir Next Condensed Bold', 'Cochin Bold', 'Bodoni 72 Smallcaps Book', 'Superclarendon Light Italic', 'Apple SD Gothic Neo Medium',
'Helvetica Neue Light Italic', 'Oriya MN', 'PingFang HK Semibold', 'DIN Alternate Bold', 'Malayalam MN', 'Mshtakan Bold', 'ITF Devanagari Marathi Book', 'Skia Light Extended',
'Songti TC Light', 'New Peninim MT', 'Sukhumvit Set Text', 'Waseem', 'Phosphate Inline', 'Kailasa Regular', 'Chalkboard SE Bold', 'Apple SD Gothic Neo Bold', 'PingFang TC Semibold',
'Devanagari MT Bold', 'Apple SD Gothic Neo Light', 'Iowan Old Style Italic', 'Skia Extended', 'Seravek Light Italic', 'Songti SC Light', 'Corsiva Hebrew', 'ITF Devanagari Marathi Bold',
'Hiragino Kaku Gothic Pro W6', 'Iowan Old Style Titling', 'Damascus Light', 'STIXIntegralsD-Regular', 'System Font Black', 'ITF Devanagari Bold', 'Lao Sangam MN',
'Avenir Next Condensed Ultra Light Italic', 'Athelas Bold', 'Apple SD Gothic Neo Regular', 'Heiti SC Light', 'GB18030 Bitmap', 'Farah', 'Lao MN', 'Superclarendon Black Italic',
'Tamil MN Bold', 'Farisi', 'Bodoni Ornaments', 'Damascus Bold', 'Kohinoor Bangla', 'PingFang HK Ultralight', 'Athelas Italic', 'Bangla MN Bold', 'Kefa Regular', 'Beirut',
'New Peninim MT Bold Inclined', 'Avenir Next Demi Bold', 'Skia Bold', 'Arial Hebrew Scholar Light', 'Kohinoor Bangla Bold', 'Bodoni 72 Bold', 'Charter Italic', 'Raanana',
'Futura Medium Italic', 'Tamil MN', 'Diwan Thuluth Regular', 'Avenir Next Condensed Heavy', 'Avenir Next Condensed Regular', 'Seravek ExtraLight Italic', 'Avenir Next Heavy Italic',
'Tamil Sangam MN Bold', 'Hiragino Kaku Gothic StdN W8', 'Telugu MN', 'Avenir Next Condensed Demi Bold Italic', 'Muna Bold', 'Sukhumvit Set Bold', 'Iowan Old Style Black Italic',
'Avenir Next Ultra Light Italic', 'Gill Sans Light Italic', 'Gurmukhi MT', 'Apple Braille', 'Kohinoor Bangla Semibold', 'Bodoni 72 Book Italic', 'Nadeem Regular', 'Athelas Regular',
'Courier Bold Oblique', 'Seravek ExtraLight', 'InaiMathi', 'Bangla Sangam MN Bold', 'AppleMyungjo', 'KufiStandardGK', 'Superclarendon Black', 'Gill Sans SemiBold Italic',
'STIXIntegralsUpSm-Bold', 'Avenir Next Bold', 'Myanmar MN Bold', 'AppleGothic Regular', 'Zapf Dingbats', 'Arial Hebrew Light', 'Mshtakan BoldOblique', 'Kohinoor Devanagari Regular',
'Baskerville SemiBold Italic', 'Farisi Regular', 'Hiragino Sans W9', 'Hiragino Sans W8', 'Hiragino Sans W5', 'Hiragino Sans W4', 'Hiragino Sans W7', 'Hiragino Sans W6', 'Hiragino Sans W1',
'Hiragino Sans W0', 'Hiragino Sans W3', 'Hiragino Sans W2', 'Hiragino Maru Gothic ProN W4', 'Waseem Light', 'Myanmar Sangam MN Bold', 'Marion Bold', 'Apple Braille Outline 6 Dot',
'ITF Devanagari Book', 'Superclarendon Bold Italic', 'Gujarati MT', 'AquaKana', 'Galvji', 'InaiMathi Bold', 'Academy Engraved LET', 'Apple SD Gothic Neo', 'Big Caslon', 'Bodoni 72',
'Bodoni 72 Oldstyle', 'Bodoni 72 Smallcaps', 'Geeza Pro', 'Heiti SC', 'Hiragino Kaku Gothic ProN', 'Hiragino Mincho ProN', 'Party LET', 'Savoye LET', 'Hiragino Sans', 'Mishafi Gold',
'Athelas', 'Hiragino Mincho Pro', 'Mishafi', 'Diwan Thuluth', 'Charter', 'Hiragino Maru Gothic ProN', 'Kohinoor Devanagari', 'ITF Devanagari Marathi', 'Superclarendon', 'Diwan Kufi',
'Phosphate', 'Songti TC', 'Hiragino Maru Gothic Pro', 'PingFang SC', 'Iowan Old Style', 'Al Bayan', 'Sukhumvit Set', 'Hiragino Kaku Gothic Pro', 'Hiragino Kaku Gothic StdN',
'Hiragino Kaku Gothic Std', 'Songti SC', 'SignPainter', 'ITF Devanagari', 'Hiragino Sans GB', 'Al Tarikh', 'PingFang TC', 'Kefa', 'PingFang HK', '.Aqua Kana', '.Aqua Kana Bold',
'.Helvetica LT MM', '.Keyboard', '.Times LT MM', 'Kohinoor Gujarati', 'Noto Sans PhagsPa', 'Mukta Mahee', 'TITUS Cyberbit Basic', 'Ezra SIL SR', 'Doulos SIL', 'Galatia SIL', 'Public Sans',
'TeX Gyre Termes', 'Umpush', 'Sosa Regular', 'Stalinist One', 'New Athena Unicode', 'Daclac', 'Khanhoa', 'Gocong', 'Angiang', 'BuiltTitlingRg-BoldItalic', 'Oxygen', 'BuiltTitlingRg-Bold',
'BuiltTitlingRg-Regular', 'BurigangaSushreeMJ', 'ChandrabatiMJ', 'GhorautraMJ', 'DholeshwariMJ', 'ArhialkhanMJ', 'SutonnyMJ', 'SutonnyOMJ', 'DhakarchithiMJ', 'BrahmaputraMJ', 'KarnaphuliMJ',
'GhorautraOMJ', 'JomunaMJ', 'Swiss 721', 'Swiss 721 Condensed', 'CAC Champagne', 'Yantramanav', 'Supernatural Knight', 'Francois One', 'eufm10', 'Lohit Tamil', 'Lohit Gujarati', 'Gayathri',
'Mukti Narrow', 'Pothana2000', 'AnjaliOldLipi', 'Vemana2000', 'Lohit Bengali', 'Dyuthi', 'ori1Uni', 'stmary10', 'msbm10', 'msam10', 'Saab', 'Rachana', 'Lohit Devanagari', 'Phetsarath OT',
'Suruma', 'Chandas', 'Rekha', 'Meera', 'Ani', 'Chilanka', 'Gayathri Thin', 'Gubbi', 'Jamrul', 'Kalapi', 'Kalimati', 'Karumbi', 'Keraleeyam', 'Likhan', 'Lohit Assamese', 'Lohit Gurmukhi',
'Lohit Kannada', 'Lohit Malayalam', 'Lohit Odia', 'Lohit Tamil Classical', 'Manjari', 'Manjari Thin', 'Mitra Mono', 'Mukti Narrow Bold', 'Nakula', 'Navilu', 'Noto Sans Symbols2', 'Pagul',
'RaghuMalayalamSans', 'Rasa', 'Rasa Light', 'Rasa Medium', 'Rasa SemiBold', 'Sahadeva', 'Samanata', 'Samyak Devanagari', 'Samyak Gujarati', 'Samyak Malayalam', 'Samyak Tamil', 'Uroob',
'WenQuanYi Zen Hei', 'WenQuanYi Zen Hei Mono', 'WenQuanYi Zen Hei Sharp', 'Yrsa', 'Yrsa Light', 'Yrsa Medium', 'Yrsa SemiBold', 'aakar', 'esint10', 'padmaa', 'padmaa-Bold.1.1', 'padmmaa',
'rsfs10', 'utkal', 'wasy10', 'नालिमाटी', 'Droid Sans Thai', 'Bilbo', 'ColdSpaghetti BTN', 'Adamsky SF', 'Accord SF', 'Holiday Springs BTN', 'Napa SF', 'Firenze SF', 'IguanaLover BTN',
'Xpress SF', 'GrilledCheese BTN', 'LA Headlights BTN', 'Heather BTN', 'Accord Light SF', 'Fluffy Slacks BTN', 'Darlin BTN', 'Gelfling SF', 'Prisoner SF', 'Beatnik SF', 'Xpress Heavy SF',
'Accord Heavy SF', 'Farsan', 'Quincho Script PERSONAL USE', 'Interstate-Light', 'Interstate-Bold', 'Podkova', 'Source Han Sans TW', 'Droid Sans Arabic', 'Lemonada', 'Sigmar', 'Karma',
'Jomolhari', 'Bai Jamjuree', 'Kodchasan', 'DYMO Symbols', 'DYMObvba', 'Titillium Regular Upright', 'Titillium Bold Upright', 'Asul', 'Albany AMT', 'SAS Monospace Bold', 'Thorndale AMT',
'Arial Symbol', 'SAS Monospace', 'Symbol MT', 'Times New Roman Symbol', 'HeiT', 'Cumberland AMT', 'Placard MT Condensed', 'Anaheim', 'Rye', '1', 'Qaskin Black Personal Use',
'Qaskin White Personal Use', 'Eagle Lake', 'Gafata', 'Habibi', 'Homemade Apple', 'WP Phonetic', 'SF Distant Galaxy', 'WP Japanese', 'WP MathA', 'WP TypographicSymbols', 'WP MathExtendedA',
'Moon Flower', 'WP MathExtendedB', 'WP BoxDrawing', 'WP IconicSymbolsA', 'WP IconicSymbolsB', 'SF Distant Galaxy Alternate', 'WP MathB', 'SF Distant Galaxy Outline',
'SF Distant Galaxy AltOutline', 'Moon Flower Bold', 'Questrial', 'Diavlo Black', 'Existence Light', 'Diavlo Medium', 'Diavlo Light', 'Libel Suit', 'Pathway Gothic One', 'HANA', 'JACKIE',
'Lingoes Unicode', 'Times New Roman PS', 'SF Compact Rounded Semibold', 'SF Compact Rounded Bold', 'SF Compact Rounded Ultralight', 'SF Compact Rounded Light', 'SF Compact Rounded Medium',
'SF Compact Rounded Thin', 'SF Compact Rounded Heavy', 'SF Compact Rounded Black', 'Bickham Script Pro 3 Semibold', 'KacstNaskh', 'KacstPen', 'Bickham Script Pro 3', 'Cortoba',
'(AH) Manal Black', 'KacstLetter', 'AlArabiya', 'AlBattar', 'AlHor', 'AlYarmook', 'Dimnah', 'Furat', 'Granada', 'Graph', 'Hani', 'Kayrawan', 'Mashq', 'Nice', 'Ostorah', 'Ouhod', 'Petra',
'Rasheeq', 'Rehan', 'Salem', 'Sharjah', 'Sindbad', 'Tholoth', 'Changa', 'Poly', 'Bree Serif', 'Yesteryear', 'Lilita One', 'Titan One', '8Pin Matrix', 'Timeless', 'SAF', 'Artifika', 'BinnerD',
'Cuckoo', 'Fransiscan', 'Futura ZBlk BT', 'Terminal', 'LTHYSZK', 'Norasi', 'Baiduan Number', '01 Digit', 'EmojiOne Mozilla', 'Laksaman', 'TlwgMono', 'Tlwg Typewriter', 'IPAPGothic',
'IPAPMincho', 'Tlwg Mono', 'Purisa', 'Tlwg Typo', 'Waree', 'Garuda', 'IPAMincho', 'IPAGothic', 'TlwgTypewriter', 'Kinnari', 'Tlwg Typist', 'Sawasdee', 'Calligraffitti',
'Dawning of a New Day', 'ABIGAIL', 'Trocchi', 'Vodafone Rg', 'TeamViewer8', 'Elsie', 'Elsie Swash Caps', 'Spectral SC', 'VisualUI', 'Futura Book', 'Tarablus', 'Rammetto One', 'Vidaloka',
'Montserrat Semi Bold', 'STIX', 'STIX Math', 'STIX Two Text', 'STIX Two Text Bold', 'STIX Two Text Bold Italic', 'STIX Two Text Italic', 'Aleo', 'Boulder', 'Gotham Book Italic',
'Ventilla Script', 'Sketch Match', 'Gotham Light Italic', 'Throw My Hands Up in the Air', 'Clubland', 'Emilys Candy', 'Ewert', 'Gilda Display', 'Adobe Garamond', 'Nimbus Roman No9 L',
'Floraless', 'Arabic Transparent', 'David Transparent', 'Noto Emoji', 'Bandy', 'Zirkon', 'Niconne', 'Sumana', 'Copse', 'Nixie One', 'Aldrich', 'Do Hyeon', 'Gugi', 'Libre Barcode 39',
'Libre Barcode 39 Text', 'Tomorrow', 'Cantarell Oblique', 'Cantarell Bold Oblique', 'Volkhov', 'Broken Planewing', 'Nina', 'dbldwrsw', 'Baloo Bhai', 'East Sea Dokdo', 'Amaranth', 'Tillana',
'Michroma', 'Saira', 'Saira Condensed', 'SF Slapstick Comic Shaded Oblique', 'SF Slapstick Comic Shaded', 'SF Slapstick Comic Bold', 'SF Slapstick Comic Oblique',
'SF Slapstick Comic Bold Oblique', 'Andada', 'Kalakaumudi', 'Shree-Mal-0502', 'ML-TTLeela', 'ML-TTLeelaHeavy', 'ML-TTIndulekhaHeavy', 'Sriracha', 'Livvic', 'GangaSagarMJ', 'GangaMJ',
'ChandrabatiMatraMJ', 'JaJaDiMJ', 'Boogaloo', 'Arima Madurai', 'Berlin Sans FB Demi', 'Capitals', 'Avenir Next W1G Medium', 'Avenir Next W1G Thin', 'Avenir Next W1G Light',
'Avenir Next W1G Regular', 'Avenir Next W1G Heavy', 'Pompiere', 'Almendra', 'Ubuntu Mono derivative Powerline', 'Droid Sans Mono Dotted for Powerline', 'Literation Mono Powerline Italic',
'Roboto Mono Bold Italic for Powerline', 'Arimo Bold Italic for Powerline', 'Meslo LG S DZ Regular for Powerline', 'Roboto Mono Medium for Powerline', 'Tinos Bold Italic for Powerline',
'Fira Mono Medium for Powerline', 'Roboto Mono Thin for Powerline', 'Cousine Italic for Powerline', 'Roboto Mono for Powerline', 'Ubuntu Mono derivative Powerline Italic',
'Roboto Mono Thin Italic for Powerline', 'Roboto Mono Italic for Powerline', 'Inconsolata-g for Powerline', 'Meslo LG M Regular for Powerline', 'monofur for Powerline',
'Fira Mono Bold for Powerline', 'Literation Mono Powerline Bold Italic', 'Roboto Mono Light Italic for Powerline', 'Roboto Mono Light for Powerline', 'Symbol Neu for Powerline',
'Meslo LG L DZ Regular for Powerline', 'Cousine Bold for Powerline', 'Anonymice Powerline Bold', 'Cousine for Powerline', 'Roboto Mono Medium Italic for Powerline', 'Anonymice Powerline',
'Ubuntu Mono derivative Powerline Bold Italic', 'Inconsolata for Powerline', 'Meslo LG M DZ Regular for Powerline', 'Arimo Italic for Powerline', 'Roboto Mono Bold for Powerline',
'Inconsolata-dz for Powerline', 'Ubuntu Mono derivative Powerline Bold', 'Meslo LG S Regular for Powerline', 'Anonymice Powerline Italic', 'Droid Sans Mono for Powerline',
'Literation Mono Powerline', 'Tinos Bold for Powerline', 'Literation Mono Powerline Bold', 'Cousine Bold Italic for Powerline', 'Arimo for Powerline', 'Droid Sans Mono Slashed for Powerline',
'Anonymice Powerline Bold Italic', 'Tinos for Powerline', 'Tinos Italic for Powerline', 'Arimo Bold for Powerline', 'Sawarabi Gothic', 'AR PL UKai CN', 'AR PL UKai HK', 'AR PL UKai TW',
'AR PL UKai TW MBE', 'Six Caps', 'Carter One', 'Caveat Brush', 'Cedarville Cursive', 'Federo', 'Kumar One', 'Petit Formal Script', 'Stint Ultra Expanded', 'Vampiro One', 'Flamenco',
'IM FELL DW Pica', 'Allan', 'Averia Serif Libre', 'Bowlby One', 'DM Serif Display', 'IM Fell DW Pica', 'IM Fell Great Primer', 'Rozha One', 'Literata', 'Share Tech Mono', 'Contrail One',
'Mrs Saint Delafield', 'Digital Readout Upright', 'Iceberg', 'Rouge Script', 'Pridi', 'KB Vibrocentric', 'Red Hat Display', 'Athiti', 'Overpass Mono', 'Hind', 'Irish Grover', 'UKIJ Diwani',
'TeX Gyre Pagella', 'UKIJ Inchike', 'Chess Maya', 'Chess Marroquin', 'Chess Alpha', 'Lucida Blackletter', 'TextilePiEF', 'HelveticaNeue BlackCond', 'Fruitger', 'Long Island', 'Santa Fe LET',
'Party LET Plain:1.0', 'Monda']
================================================
FILE: pyproject.toml
================================================
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.mypy]
mypy_path = "botright"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true
disable_error_code = "method-assign"
================================================
FILE: requirements-test.txt
================================================
# This requirements are for development and testing only, not for production.
flake8==7.1.0
tox==4.15.1
pytest==8.2.2
pytest_asyncio==0.23.7
mypy==1.10.1
types-setuptools==70.1.0.20240627
================================================
FILE: setup.cfg
================================================
[metadata]
name = chrome_fingerprints
version = attr: chrome_fingerprints.VERSION
description = A Collection of 10.000 self-collected Chrome Fingerprints. Wrapped in a easy-to-use API, available as a Compressed or Full-Size Json.
long_description = file: README.md
long_description_content_type = text/markdown
author = Vinyzu
url = https://github.com/Vinyzu/chrome-fingerprints
license = GNU General Public License v3.0
license_file = LICENSE
keywords = botright, playwright, browser, automation, fingerprints, fingerprinting, dataset, data
classifiers =
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Software Development
Topic :: Software Development :: Libraries
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Internet :: WWW/HTTP :: Browsers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
[options]
zip_safe = no
python_requires = >=3.8
packages = find:
install_requires =
orjson
dacite
aiomisc
[options.package_data]
* = requirements.txt, geetest.torchscript, WebRTC-Leak-Shield, fingerprints.json.xz
[options.packages.find]
include = chrome_fingerprints, chrome_fingerprints.*, LICENSE
exclude = tests, .github
[options.extras_require]
testing =
pytest
mypy
flake8
tox
================================================
FILE: tests/__init__.py
================================================
================================================
FILE: tests/conftest.py
================================================
import pytest
import pytest_asyncio
from chrome_fingerprints import FingerprintGenerator, AsyncFingerprintGenerator
@pytest.fixture
def fingerprint_generator() -> FingerprintGenerator:
fp_gen = FingerprintGenerator()
return fp_gen
@pytest_asyncio.fixture
async def async_fingerprint_generator() -> AsyncFingerprintGenerator:
fp_gen = AsyncFingerprintGenerator()
return fp_gen
================================================
FILE: tests/dev_env.py
================================================
import asyncio
from chrome_fingerprints.fingerprints import AsyncFingerprintGenerator
async def main():
fp_gen = AsyncFingerprintGenerator()
print(await fp_gen.get_fingerprint())
asyncio.run(main())
================================================
FILE: tests/test_async_fingerprints.py
================================================
import pytest
import time
from chrome_fingerprints import AsyncFingerprintGenerator, ChromeFingerprint
@pytest.mark.asyncio
async def test_fingerprint_random(async_fingerprint_generator: AsyncFingerprintGenerator):
chrome_fp = await async_fingerprint_generator.get_fingerprint()
assert isinstance(chrome_fp, ChromeFingerprint)
@pytest.mark.asyncio
async def test_fingerprint_index(async_fingerprint_generator: AsyncFingerprintGenerator):
chrome_fp = await async_fingerprint_generator.get_fingerprint(fingerprint_index=0)
assert isinstance(chrome_fp, ChromeFingerprint)
@pytest.mark.asyncio
async def test_all_fingerprints(async_fingerprint_generator: AsyncFingerprintGenerator):
for index in range(10000):
chrome_fp = await async_fingerprint_generator.get_fingerprint(fingerprint_index=index)
assert isinstance(chrome_fp, ChromeFingerprint)
@pytest.mark.asyncio
async def test_threaded_loading():
start_time = time.time()
# Load the FingerprintGenerator
fingerprint_generator = AsyncFingerprintGenerator()
init_time = time.time() - start_time
# Load a Fingerprint
await fingerprint_generator.get_fingerprint()
load_time = time.time() - start_time
# Check if the Fingerprint Load Time is bigger than the Fingerprint Init Time
# Because the DataLoading is threaded, the Loading should Not Block until a fingerprint is requested
# Therefore, we can check the threaded loading by checking the Load Times.
assert load_time > init_time
================================================
FILE: tests/test_fingerprints.py
================================================
import time
from chrome_fingerprints import FingerprintGenerator, ChromeFingerprint
def test_fingerprint_random(fingerprint_generator: FingerprintGenerator):
chrome_fp = fingerprint_generator.get_fingerprint()
assert isinstance(chrome_fp, ChromeFingerprint)
def test_fingerprint_index(fingerprint_generator: FingerprintGenerator):
chrome_fp = fingerprint_generator.get_fingerprint(fingerprint_index=0)
assert isinstance(chrome_fp, ChromeFingerprint)
def test_all_fingerprints(fingerprint_generator: FingerprintGenerator):
for index in range(10000):
chrome_fp = fingerprint_generator.get_fingerprint(fingerprint_index=index)
assert isinstance(chrome_fp, ChromeFingerprint)
def test_threaded_loading():
start_time = time.time()
# Load the FingerprintGenerator
fingerprint_generator = FingerprintGenerator()
init_time = time.time() - start_time
# Load a Fingerprint
fingerprint_generator.get_fingerprint()
load_time = time.time() - start_time
# Check if the Fingerprint Load Time is bigger than the Fingerprint Init Time
# Because the DataLoading is threaded, the Loading should Not Block until a fingerprint is requested
# Therefore, we can check the threaded loading by checking the Load Times.
assert load_time > init_time
================================================
FILE: tox.ini
================================================
[tox]
minversion = 4.11.0
envlist = flake8, mypy, py38, py39, py310, py311
isolated_build = true
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310, mypy, flake8
3.11: py311
[testenv]
setenv =
PYTHONPATH = {toxinidir}
deps =
-r{toxinidir}/requirements-test.txt
commands =
pytest --basetemp={envtmpdir}
[testenv:flake8]
basepython = python3.10
deps = flake8
commands = flake8 .
[testenv:mypy]
basepython = python3.10
deps =
-r{toxinidir}/requirements-test.txt
commands =
mypy .
gitextract_h172g6uk/ ├── .flake8 ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── question.md │ ├── dependabot.yml │ └── workflows/ │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── chrome_fingerprints/ │ ├── __init__.py │ ├── fingerprint_typing.py │ ├── fingerprints.json.xz │ ├── fingerprints.py │ └── vars.py ├── pyproject.toml ├── requirements-test.txt ├── setup.cfg ├── tests/ │ ├── __init__.py │ ├── conftest.py │ ├── dev_env.py │ ├── test_async_fingerprints.py │ └── test_fingerprints.py └── tox.ini
SYMBOL INDEX (31 symbols across 6 files)
FILE: chrome_fingerprints/fingerprint_typing.py
class NavigatorPlatform (line 6) | class NavigatorPlatform:
class Navigator (line 16) | class Navigator:
class Screen (line 33) | class Screen:
class Plugin (line 46) | class Plugin:
class SpeechSynth (line 55) | class SpeechSynth:
class WebGL (line 64) | class WebGL:
class WebGPUPerformanceInfo (line 80) | class WebGPUPerformanceInfo:
class WebRTCPeerType (line 106) | class WebRTCPeerType:
class WebRTCPeer (line 112) | class WebRTCPeer:
class WebRTC (line 118) | class WebRTC:
class ChromeFingerprint (line 124) | class ChromeFingerprint:
FILE: chrome_fingerprints/fingerprints.py
function index_fingerprint (line 16) | def index_fingerprint(fingerprint) -> None:
class FingerprintGenerator (line 60) | class FingerprintGenerator:
method __init__ (line 61) | def __init__(self) -> None:
method initialize_fingerprints (line 73) | def initialize_fingerprints(self) -> None:
method get_fingerprint (line 81) | def get_fingerprint(self, fingerprint_index: Optional[int] = None) -> ...
class AsyncFingerprintGenerator (line 104) | class AsyncFingerprintGenerator:
method __init__ (line 105) | def __init__(self):
method initialize_fingerprints (line 111) | async def initialize_fingerprints(self) -> None:
method get_fingerprint (line 119) | async def get_fingerprint(self, fingerprint_index: Optional[int] = Non...
FILE: tests/conftest.py
function fingerprint_generator (line 8) | def fingerprint_generator() -> FingerprintGenerator:
function async_fingerprint_generator (line 14) | async def async_fingerprint_generator() -> AsyncFingerprintGenerator:
FILE: tests/dev_env.py
function main (line 6) | async def main():
FILE: tests/test_async_fingerprints.py
function test_fingerprint_random (line 8) | async def test_fingerprint_random(async_fingerprint_generator: AsyncFing...
function test_fingerprint_index (line 14) | async def test_fingerprint_index(async_fingerprint_generator: AsyncFinge...
function test_all_fingerprints (line 20) | async def test_all_fingerprints(async_fingerprint_generator: AsyncFinger...
function test_threaded_loading (line 27) | async def test_threaded_loading():
FILE: tests/test_fingerprints.py
function test_fingerprint_random (line 5) | def test_fingerprint_random(fingerprint_generator: FingerprintGenerator):
function test_fingerprint_index (line 10) | def test_fingerprint_index(fingerprint_generator: FingerprintGenerator):
function test_all_fingerprints (line 15) | def test_all_fingerprints(fingerprint_generator: FingerprintGenerator):
function test_threaded_loading (line 21) | def test_threaded_loading():
Condensed preview — 24 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (200K chars).
[
{
"path": ".flake8",
"chars": 30,
"preview": "[flake8]\nmax-line-length = 200"
},
{
"path": ".gitattributes",
"chars": 66,
"preview": "# Auto detect text files and perform LF normalization\n* text=auto\n"
},
{
"path": ".github/ISSUE_TEMPLATE/bug_report.md",
"chars": 724,
"preview": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: '[BUG] '\nlabels: bug, help wanted\nassignees: ''\n\n-"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.md",
"chars": 614,
"preview": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: enhancement, question\nassignees: ''\n"
},
{
"path": ".github/ISSUE_TEMPLATE/question.md",
"chars": 531,
"preview": "---\nname: Question\nabout: Ask a question about Botright\ntitle: '[Question] '\nlabels: question, help wanted, documentatio"
},
{
"path": ".github/dependabot.yml",
"chars": 502,
"preview": "# To get started with Dependabot version updates, you'll need to specify which\n# package ecosystems to update and where "
},
{
"path": ".github/workflows/tests.yml",
"chars": 594,
"preview": "name: Tests & Linting\n\non:\n - push\n - pull_request\n\njobs:\n test:\n strategy:\n matrix:\n os: [windows-lat"
},
{
"path": ".gitignore",
"chars": 2762,
"preview": "# Byte-compiled / optimized / DLL files\n__pycache__/\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packagi"
},
{
"path": "LICENSE",
"chars": 35086,
"preview": "GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation,"
},
{
"path": "README.md",
"chars": 2706,
"preview": "# Chrome-Fingerprints v1.1\n:\n fp_gen = "
},
{
"path": "tests/test_async_fingerprints.py",
"chars": 1520,
"preview": "import pytest\nimport time\n\nfrom chrome_fingerprints import AsyncFingerprintGenerator, ChromeFingerprint\n\n\n@pytest.mark.a"
},
{
"path": "tests/test_fingerprints.py",
"chars": 1312,
"preview": "import time\nfrom chrome_fingerprints import FingerprintGenerator, ChromeFingerprint\n\n\ndef test_fingerprint_random(finger"
},
{
"path": "tox.ini",
"chars": 520,
"preview": "[tox]\nminversion = 4.11.0\nenvlist = flake8, mypy, py38, py39, py310, py311\nisolated_build = true\n\n[gh-actions]\npython =\n"
}
]
// ... and 1 more files (download for full content)
About this extraction
This page contains the full source code of the Vinyzu/chrome-fingerprints GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 24 files (191.3 KB), approximately 57.5k tokens, and a symbol index with 31 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.