Skip to main content
Glama

Server Details

Create, inspect, manage, and render charts and data visualizations as SVG/PNG or interactive embeds.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

13 tools
delete_chartDelete chartA
DestructiveIdempotent
Inspect

Use this when the user explicitly wants to permanently delete one saved chart. Deletion cannot be undone, and retrying an already completed deletion succeeds; requires authentication.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id

Output Schema

ParametersJSON Schema
NameRequiredDescription
deletedYes

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds meaningful behavioral context beyond the annotations: it states that deletion cannot be undone, that retrying succeeds (idempotency), and that authentication is required. These are important operational details not present in the structured annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, compact sentence that front-loads the usage context and packs in essential behavioral notes (permanence, idempotency, auth). Every clause earns its place; there is no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple delete operation, the description covers all necessary contextual aspects: when to use, permanence, idempotent retry, and authentication. An output schema exists, so return values are covered externally. The tool is fully specified for an agent to select and invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already fully documents the single 'id' parameter with a clear description and pattern. The tool description does not add additional parameter semantics, but since schema coverage is 100%, a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the action ('permanently delete') and the resource ('one saved chart'), which distinguishes it from sibling tools like rename_chart, update_chart, and get_chart. The explicit mention of 'permanently' adds important specificity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives a clear when-to-use directive: 'Use this when the user explicitly wants to permanently delete one saved chart.' It does not explicitly mention when not to use it or name alternatives, but the context is clear and the idempotency note ('retrying an already completed deletion succeeds') provides additional usage nuance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_chartGet chartA
Read-only
Inspect

Use this when the user identifies a saved chart by id and wants to view it or retrieve its metadata and URLs. Displays the published chart when available and does not return its config; requires authentication.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesOpaque 32-character saved-chart id
viewYes
titleYesSaved chart title
sourceYesChart origin; an open set of string values
editUrlYes
embedUrlYesInteractive-embed URL
imageUrlYesRendered-image URL
configUrlYesOwner-only chart-config endpoint
createdAtYesISO-8601 creation timestamp
manageUrlYes
sizeBytesYesCompressed size of the stored published config, excluding drafts; 0 means no published config has been stored yet
updatedAtYesISO-8601 last-update timestamp
publishedAtYesISO-8601 publish timestamp, or null when public URLs are dark

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds important behaviors beyond annotations: displays published chart when available, does not return config, and requires authentication. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with usage trigger, and no wasted words. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema, the description needn't detail return values. It covers purpose, usage, and behavioral traits completely for a simple retrieval tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with a detailed description of the 'id' parameter. The description adds no additional meaning beyond referring to 'by id', so baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves chart metadata and URLs and displays the published chart. It distinguishes from sibling get_chart_config by explicitly noting that it does not return the config.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use ('when the user identifies a saved chart by id') and provides exclusions ('does not return its config'), guiding the agent to use get_chart_config instead.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_chart_configGet chart configA
Read-only
Inspect

Use this when the user identifies a saved chart by id and needs its complete published Szum config for inspection or reuse. Does not return a newer editor draft; requires authentication.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id

Output Schema

ParametersJSON Schema
NameRequiredDescription
xNo
yNo
dataNo
colorNo
marksYes
scaleNo
themeNo
titleNo
widthNo
footerNoCaption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.
formatYes
heightNo
localeNoLocale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.
marginNo
versionYes
subtitleNo
plotWidthNo
plotHeightNo
attributionNoShow a small "Made with Szum" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.
headerAlignNo
themeOverridesNo

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds meaningful behavioral context beyond the readOnlyHint and destructiveHint annotations: it states the returned config is the 'published' version, not a newer editor draft, and that authentication is required. These are non-obvious traits that help the agent set correct expectations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loaded with the primary use case, and contains zero redundant or filler text. Every clause adds value, making it concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read-only tool with a full parameter description, output schema, and annotations, the description covers the essential usage context: when to use, what it returns (published config), key caveat (no editor draft), and authentication requirement. It is complete and self-sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for the only parameter 'id', which already describes it as an opaque 32-character saved-chart id. The tool description merely restates the parameter's role ('by id') without adding new format or usage details, so the schema carries the semantic load. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific verb ('get') and resource ('chart config'), and differentiates from the sibling 'get_chart' by specifying 'complete published Szum config' and 'inspection or reuse'. This is a precise, unambiguous purpose statement.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells the agent when to use this tool ('when the user identifies a saved chart by id and needs its complete published Szum config'), and also provides an exclusion ('Does not return a newer editor draft') and a precondition ('requires authentication'). This is strong usage guidance with clear context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_examplesGet example chartsA
Read-only
Inspect

Use this when the model needs current, ready-to-use Szum chart configs or preferred semantic patterns. Optionally filters examples by mark type.

ParametersJSON Schema
NameRequiredDescriptionDefault
mark_typeNoFilter examples by mark type

Output Schema

ParametersJSON Schema
NameRequiredDescription
examplesYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate a safe read operation (readOnlyHint=true, destructiveHint=false). The description adds useful context by explaining that results are current, ready-to-use configs and preferred semantic patterns, and that filtering is optional. This goes beyond the annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary use case, and contains no redundant or filler content. Every phrase contributes to understanding how and when to use the tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with one optional parameter, an output schema is present, and annotations cover safety. The description covers purpose, usage context, and filtering capability, making it fully adequate for selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and the single parameter 'mark_type' is already documented as 'Filter examples by mark type' with an enum. The description merely repeats this as 'Optionally filters examples by mark type', adding no new meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool provides 'current, ready-to-use Szum chart configs or preferred semantic patterns' and optionally filters by mark type. This distinguishes it from sibling tools like get_chart or get_chart_config, which fetch specific charts/configs rather than example patterns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit guidance on when to use the tool ('Use this when the model needs current, ready-to-use Szum chart configs or preferred semantic patterns'). It does not mention exclusions or alternative tools, but the context is clear enough for selection among siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_preview_stateGet chart preview stateA
Read-onlyIdempotent
Inspect

Use this when the Szum chart App needs to restore a rendered preview as its current transient or saved view. It is read-only, owner-scoped when authenticated, and hidden from the model.

ParametersJSON Schema
NameRequiredDescriptionDefault
previewIdYesOpaque 16-character chart-preview id

Output Schema

ParametersJSON Schema
NameRequiredDescription
chartNo
statusYes

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds valuable behavioral context beyond annotations: it is 'owner-scoped when authenticated' (access control) and 'hidden from the model' (visibility). No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core use case and followed by behavioral traits. Every sentence is meaningful with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the single parameter, rich annotations, and existence of an output schema, the description fully covers context: when to use, behavioral aspects (read-only, scoping, visibility), and the parameter is well-described in the schema. No gaps remain for effective tool selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with a clear description for previewId (opaque 16-character id). The tool description does not add any additional parameter-specific meaning, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: to restore a rendered preview as the current view. It uses specific verbs ('restore') and distinguishes this preview-specific tool from sibling chart manipulation tools like get_chart or list_charts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly specifies when to use this tool: 'when the Szum chart App needs to restore a rendered preview'. It provides clear context but does not explicitly mention when not to use it or list alternatives, though siblings make the distinction obvious.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_chartsList chartsA
Read-only
Inspect

Use this when the user wants to find charts in their saved library. Returns paginated metadata and URLs, not chart configs; requires authentication. Draft-only editor charts have publishedAt null, hasDraft true, and sizeBytes 0 because sizeBytes measures only the stored published config, not draft storage.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoCase-insensitive title substring search; trimmed and limited to 100 characters
sortNoSort by creation time (default), update time, or title A-Z
limitNoPage size; defaults to 100 and has a maximum of 1000
cursorNoOpaque nextCursor from the previous page
sourceNoFilter by one or more chart sources; omit to list all

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
totalNoExact match count, present only for title searches
nextCursorYesOpaque cursor for the next page, or null on the last page

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the readOnlyHint annotation, the description adds critical behavioral details: requires authentication, returns paginated metadata (not configs), and explains draft-only chart properties (publishedAt null, hasDraft true, sizeBytes 0). No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no redundant information. It front-loads the purpose and then provides essential behavioral details, achieving high conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists and parameters are well-documented in the schema, the description adequately covers purpose, authentication, and special response field behavior. No gaps remain for effective tool selection.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description does not add parameter-specific meaning beyond the schema's own descriptions; the behavioral details about drafts pertain to output fields, not input parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists charts from the user's saved library, distinguishes from siblings like get_chart and get_chart_config by noting it returns metadata and URLs not configs, making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Use this when the user wants to find charts', providing clear context. However, it lacks explicit exclusions or alternatives to sibling tools, which prevents a higher score.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_marksList mark typesA
Read-only
Inspect

Use this when choosing or configuring chart mark types. Returns every available mark with its properties and defaults.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
marksYes
sharedYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and destructiveHint=false. The description adds that the tool returns properties and defaults, providing useful behavioral context beyond annotations. No contradiction.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with usage guidance, then return description. Every word earns its place; no waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that an output schema exists (not shown but indicated), the description does not need to detail return values. It covers when to use and what the tool returns, which is complete for a simple list tool with good annotations and schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0 parameters, so schema coverage is 100%. The description does not need to explain parameters. Baseline 4 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Returns') and resource ('mark types') and clearly distinguishes from sibling tools (none of which deal with mark types). It states both the use case and the output.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Use this when choosing or configuring chart mark types', which tells the agent when to invoke it. No mention of when not to use or alternatives, but the context from siblings makes it sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_themesList themesA
Read-only
Inspect

Use this when choosing a visual theme for a chart. Returns every available theme and guidance on where each works best.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
themesYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint: true and destructiveHint: false. Description adds that it returns every theme and guidance, consistent with read-only behavior. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with usage context. Every word adds value; no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Simple tool with no parameters and output schema present. Description covers purpose and return value sufficiently given the complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist; schema coverage is 100%. Description adds no parameter details but isn't needed. Baseline 4 applies as description helps understand the tool's output.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the tool lists themes for charts and provides guidance. It distinguishes itself from siblings like list_charts and list_marks by specifying the resource (themes) and context (for a chart).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Use this when choosing a visual theme for a chart,' giving a clear when-to-use. No alternatives mentioned, but no sibling tool overlaps with this purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

rename_chartRename chartAInspect

Use this when the user wants to change a saved chart's library title without changing its config, publication state, or public URLs; requires authentication.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id
titleYesNew saved-chart title; trimmed and limited to 200 characters

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesOpaque 32-character saved-chart id
viewYes
titleYesSaved chart title
sourceYesChart origin; an open set of string values
editUrlYes
embedUrlYesInteractive-embed URL
imageUrlYesRendered-image URL
configUrlYesOwner-only chart-config endpoint
createdAtYesISO-8601 creation timestamp
manageUrlYes
sizeBytesYesCompressed size of the stored published config, excluding drafts; 0 means no published config has been stored yet
updatedAtYesISO-8601 last-update timestamp
publishedAtYesISO-8601 publish timestamp, or null when public URLs are dark

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate mutation (readOnlyHint=false) and not destructive (destructiveHint=false). Description adds that authentication is required and specifies what the tool does not change, providing valuable context beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence front-loads purpose and scope. No unnecessary words; every part is informative. Excellent efficiency.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simplicity of the tool (2 params, clear boundaries), the description combined with schema and annotations is fully complete. Output schema exists, so return values are covered. No gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema already describes both parameters fully (100% coverage: id as opaque 32-char string, title as trimmed 200-char string). Description adds no additional parameter details, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it renames a chart's library title without affecting config, state, or URLs. This verb-resource pair is specific and distinguishes from siblings like update_chart and delete_chart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use ('when the user wants to change a saved chart's library title'), what is not affected (config, publication state, URLs), and that authentication is required. This provides clear context for invocations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

render_chartRender chartAInspect

Use this when the user wants to preview or generate a chart. Validate each generated or changed config once before rendering, saving, or updating. Do not revalidate unchanged input; a successful render preflights it for later saves or updates. Errors block; warnings require explicit user approval for the exact config. Suggestions do not block. Replace the complete config with suggestedConfig and revalidate before repair. Stores a 1 hour preview and returns public image URLs. Authenticated previews use the account's render allowance, and each image produced from a returned URL is another render. Anonymous previews are complimentary; their images use the anonymous image allowance.

ParametersJSON Schema
NameRequiredDescriptionDefault
configYesComplete chart config JSON. Mark field references must match row keys. Chronological annual values use "YYYY" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate.
acknowledgeWarningsNoSet true only after the user explicitly approves every warning returned for this exact config

Output Schema

ParametersJSON Schema
NameRequiredDescription
viewYes
titleYes
formatYes
imageUrlYes
mimeTypeYes
expiresAtYes
validationYes

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond annotations (readOnlyHint=false, openWorldHint=true, destructiveHint=false), the description discloses validation logic, error/warning/suggestion handling, revalidation guidance, 1-hour preview retention, public URL behavior, and render allowance accounting. This is rich behavioral context that annotations alone do not provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence contributes meaningful detail (usage, validation, handling, preview behavior). It is logically ordered from use case to action to results, with no redundant filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with an output schema, the description adequately covers the full lifecycle: when to use, validation requirements, error handling, preview specifics, and resource implications. No critical gaps are evident for the tool's complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 100% schema description coverage, both parameters (config and acknowledgeWarnings) are already fully documented in the schema. The description adds no param-specific meaning beyond what the schema provides, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool renders/previews charts and lists concrete outcomes (public image URLs, preview storage). It distinguishes itself from sibling tools like save_chart, update_chart, and validate_chart by focusing on preview/generation with validation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says 'Use this when the user wants to preview or generate a chart' and explains the validation preflight benefit, giving clear context. However, it does not name alternative tools or provide explicit when-not-to-use conditions, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

save_chartSave chartAInspect

Use this when the user wants to permanently save and publish a chart from a Szum config. Validate each generated or changed config once before rendering, saving, or updating. Do not revalidate unchanged input; a successful render preflights it for later saves or updates. Errors block; warnings require explicit user approval for the exact config. Suggestions do not block. Replace the complete config with suggestedConfig and revalidate before repair. Supply one idempotencyKey per intended chart and reuse it for retries. Returns permanent public Image and Embed URLs plus Edit and Studio links; requires authentication and saved-chart storage.

ParametersJSON Schema
NameRequiredDescriptionDefault
configYesComplete chart config JSON. Mark field references must match row keys. Chronological annual values use "YYYY" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate.
idempotencyKeyNoStable retry key of at most 255 characters; reuse only for the exact same config
acknowledgeWarningsNoSet true only after the user explicitly approves every warning returned for this exact config

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
viewYes
titleYes
formatYes
editUrlYes
embedUrlYes
imageUrlYes
mimeTypeYes
manageUrlYes
validationYes

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations only indicate a non-read, non-destructive operation (readOnlyHint=false, destructiveHint=false). The description adds critical context: idempotency key requirements, validation preflight behavior, warning/suggestion handling, authentication and storage needs, and the exact return links. This goes well beyond what annotations convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is moderately long (8 sentences) but every sentence adds value—purpose, validation rules, idempotency, return values. It is front-loaded with the primary purpose. Slightly dense but not wasteful, earning a 4 rather than a 5.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with an output schema and full parameter descriptions, the description covers all necessary usage context: when to use, validation workflow, idempotency, warnings, and return types. No gaps identified; it is complete for an AI agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the config parameter description is already very detailed. The description itself does not add new parameter semantics beyond what the schema provides; it merely reiterates idempotencyKey and acknowledgeWarnings within the workflow. Per the baseline rule for high schema coverage, a score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific action: 'permanently save and publish a chart from a Szum config.' This clearly distinguishes it from siblings like render_chart (temporary preview), validate_chart (check only), and update_chart (modify existing). The verb 'save and publish' is specific and unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It states when to use ('when the user wants to permanently save and publish a chart') and provides detailed validation workflow (revalidate only changed configs, errors block, warnings require approval, suggestions do not). However, it does not explicitly name alternative tools or state when NOT to use it, such as 'use update_chart for modifying an existing chart.'

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

update_chartUpdate chartA
Destructive
Inspect

Use this when the user wants to replace and publish a saved chart's config while keeping its id and URLs. Validate each generated or changed config once before rendering, saving, or updating. Do not revalidate unchanged input; a successful render preflights it for later saves or updates. Errors block; warnings require explicit user approval for the exact config. Suggestions do not block. Replace the complete config with suggestedConfig and revalidate before repair. Refuses charts with unpublished editor changes; requires authentication and saved-chart storage.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesOpaque 32-character saved-chart id
configYesComplete chart config JSON. Mark field references must match row keys. Chronological annual values use "YYYY" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate.
acknowledgeWarningsNoSet true only after the user explicitly approves every warning returned for this exact config

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYesOpaque 32-character saved-chart id
viewYes
titleYesSaved chart title
sourceYesChart origin; an open set of string values
editUrlYes
embedUrlYesInteractive-embed URL
imageUrlYesRendered-image URL
configUrlYesOwner-only chart-config endpoint
createdAtYesISO-8601 creation timestamp
manageUrlYes
sizeBytesYesCompressed size of the stored published config, excluding drafts; 0 means no published config has been stored yet
updatedAtYesISO-8601 last-update timestamp
validationYes
publishedAtYesISO-8601 publish timestamp, or null when public URLs are dark

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description richly discloses behavioral details beyond the annotations: validation once per generated/changed config, no revalidation of unchanged input, error/warning/suggestion handling, explicit user approval for warnings, revalidation before repair, refusal of unpublished changes, and auth/storage requirements. This exceeds the basic annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but every sentence contributes specific guidance. It is front-loaded with the main purpose, then provides behavioral rules. A bit long but not wasteful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity and the presence of an output schema, the description sufficiently covers the key behavioral aspects: validation rules, error handling, approval flow, refusal conditions, and auth. It doesn't describe return values, but the output schema handles that.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds contextual meaning for acknowledgeWarnings by explaining that warnings require explicit user approval, which aligns with the parameter's purpose. It also clarifies the config should be the complete config, but overall the schema already covers parameter details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: "replace and publish a saved chart's config while keeping its id and URLs." This is a specific verb+resource combination that distinguishes it from siblings like save_chart (which likely creates a new chart) and render_chart (which only renders).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly says "Use this when the user wants to replace and publish a saved chart's config..." which gives clear usage context. It also mentions refusal conditions (unpublished editor changes) that implicitly define when NOT to use it, though it doesn't name alternative tools explicitly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

validate_chartValidate chart configA
Read-only
Inspect

Use this when a chart config will be rendered, saved, or updated. Validate each generated or changed config once before rendering, saving, or updating. Do not revalidate unchanged input; a successful render preflights it for later saves or updates. Errors block; warnings require explicit user approval for the exact config. Suggestions do not block. Replace the complete config with suggestedConfig and revalidate before repair. Read-only, free, and fast.

ParametersJSON Schema
NameRequiredDescriptionDefault
configYesComplete chart config JSON. Mark field references must match row keys. Chronological annual values use "YYYY" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate.

Output Schema

ParametersJSON Schema
NameRequiredDescription
validYes
errorsYes
messageYes
diagnosticsYes
suggestedConfigNoSchema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare read-only and non-destructive, but the description adds crucial behavior: error/warning/suggestion outcomes, the preflighting behavior after a successful render, and the need to replace config with suggestedConfig and revalidate. This goes well beyond the basic annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is information-dense but organized logically, starting with usage, then workflow details, then characteristics. Slightly long but every sentence earns its place; could benefit from bullet points but remains efficient for the complexity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity and the presence of an output schema, the description covers all essential aspects: when to use, preflighting, error/warning/suggestion behavior, and repair steps. It is complete enough for an agent to select and invoke correctly without additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and the schema itself provides a very detailed description of the 'config' parameter, covering validation rules and examples. The tool description adds no extra parameter-level meaning beyond mentioning suggestedConfig, so the high coverage baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool validates chart configs before rendering, saving, or updating. It distinguishes itself from siblings like render_chart and save_chart by specifying the validation context and emphasizing it is read-only, free, and fast.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Use this when a chart config will be rendered, saved, or updated' and provides rules like 'Do not revalidate unchanged input; a successful render preflights it for later saves or updates.' It also explains how to handle errors, warnings, and suggestions, and mentions the repair workflow with suggestedConfig.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 6 tool updates
    • Changedget_chart_config2 fields changed
      • addedOutput schema / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedget_examples2 fields changed
      • addedOutput schema / properties / examples / items / properties / config / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / examples / items / properties / config / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedrender_chart2 fields changed
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedsave_chart2 fields changed
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedupdate_chart2 fields changed
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / validation / properties / suggestedConfig / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
    • Changedvalidate_chart2 fields changed
      • addedOutput schema / properties / suggestedConfig / properties / themeOverrides / properties / numericFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
      • addedOutput schema / properties / suggestedConfig / properties / themeOverrides / properties / titleFontFamily / enum
        Added value: +[
        +  "ABeeZee",
        +  "ADLaM Display",
        +  "AR One Sans",
        +  "Abel",
        +  "Abhaya Libre",
        +  "Aboreto",
        +  "Abril Fatface",
        +  "Abyssinica SIL",
        +  "Aclonica",
        +  "Acme",
        +  "Actor",
        +  "Adamina",
        +  "Advent Pro",
        +  "Afacad",
        +  "Afacad Flux",
        +  "Agbalumo",
        +  "Agdasima",
        +  "Agu Display",
        +  "Aguafina Script",
        +  "Akatab",
        +  "Akaya Kanadaka",
        +  "Akaya Telivigala",
        +  "Akronim",
        +  "Akshar",
        +  "Akt",
        +  "Aladin",
        +  "Alan Sans",
        +  "Alata",
        +  "Alatsi",
        +  "Albert Sans",
        +  "Aldrich",
        +  "Alef",
        +  "Alegreya",
        +  "Alegreya SC",
        +  "Alegreya Sans",
        +  "Alegreya Sans SC",
        +  "Aleo",
        +  "Alex Brush",
        +  "Alexandria",
        +  "Alfa Slab One",
        +  "Alice",
        +  "Alien Block",
        +  "Alike",
        +  "Alike Angular",
        +  "Alkalami",
        +  "Alkatra",
        +  "Allan",
        +  "Allerta",
        +  "Allerta Stencil",
        +  "Allison",
        +  "Allkin",
        +  "Allura",
        +  "Almarai",
        +  "Almendra",
        +  "Almendra Display",
        +  "Almendra SC",
        +  "Alumni Sans",
        +  "Alumni Sans Collegiate One",
        +  "Alumni Sans Inline One",
        +  "Alumni Sans Pinstripe",
        +  "Alumni Sans SC",
        +  "Alyamama",
        +  "Amarante",
        +  "Amaranth",
        +  "Amarna",
        +  "Amatic SC",
        +  "Amethysta",
        +  "Amiko",
        +  "Amiri",
        +  "Amiri Quran",
        +  "Amita",
        +  "Anaheim",
        +  "Ancizar Sans",
        +  "Ancizar Serif",
        +  "Andada Pro",
        +  "Andika",
        +  "Anek Bangla",
        +  "Anek Devanagari",
        +  "Anek Gujarati",
        +  "Anek Gurmukhi",
        +  "Anek Kannada",
        +  "Anek Latin",
        +  "Anek Malayalam",
        +  "Anek Odia",
        +  "Anek Tamil",
        +  "Anek Telugu",
        +  "Angkor",
        +  "Annapurna SIL",
        +  "Annie Use Your Telescope",
        +  "Anonymous Pro",
        +  "Anta",
        +  "Antic",
        +  "Antic Didone",
        +  "Antic Slab",
        +  "Anton",
        +  "Anton SC",
        +  "Antonio",
        +  "Anuphan",
        +  "Anybody",
        +  "Aoboshi One",
        +  "Arapey",
        +  "Arbutus",
        +  "Arbutus Slab",
        +  "Architects Daughter",
        +  "Archivo",
        +  "Archivo Black",
        +  "Archivo Narrow",
        +  "Are You Serious",
        +  "Aref Ruqaa",
        +  "Aref Ruqaa Ink",
        +  "Arima",
        +  "Arimo",
        +  "Arizonia",
        +  "Armata",
        +  "Arsenal",
        +  "Arsenal SC",
        +  "Artifika",
        +  "Arvo",
        +  "Arya",
        +  "Asap",
        +  "Asap Condensed",
        +  "Asar",
        +  "Asimovian",
        +  "Asset",
        +  "Assistant",
        +  "Asta Sans",
        +  "Astloch",
        +  "Asul",
        +  "Athiti",
        +  "Atkinson Hyperlegible",
        +  "Atkinson Hyperlegible Mono",
        +  "Atkinson Hyperlegible Next",
        +  "Atma",
        +  "Atomic Age",
        +  "Aubrey",
        +  "Audiowide",
        +  "Autour One",
        +  "Average",
        +  "Average Sans",
        +  "Averia Gruesa Libre",
        +  "Averia Libre",
        +  "Averia Sans Libre",
        +  "Averia Serif Libre",
        +  "Azeret Mono",
        +  "B612",
        +  "B612 Mono",
        +  "BBH Bartle",
        +  "BBH Bogle",
        +  "BBH Hegarty",
        +  "BIZ UDGothic",
        +  "BIZ UDMincho",
        +  "BIZ UDPGothic",
        +  "BIZ UDPMincho",
        +  "BJCree",
        +  "Babylonica",
        +  "Bacasime Antique",
        +  "Bad Script",
        +  "Badeen Display",
        +  "Bagel Fat One",
        +  "Bahiana",
        +  "Bahianita",
        +  "Bai Jamjuree",
        +  "Bakbak One",
        +  "Ballet",
        +  "Baloo 2",
        +  "Baloo Bhai 2",
        +  "Baloo Bhaijaan 2",
        +  "Baloo Bhaina 2",
        +  "Baloo Chettan 2",
        +  "Baloo Da 2",
        +  "Baloo Paaji 2",
        +  "Baloo Tamma 2",
        +  "Baloo Tammudu 2",
        +  "Baloo Thambi 2",
        +  "Balsamiq Sans",
        +  "Balthazar",
        +  "Bangers",
        +  "Barlow",
        +  "Barlow Condensed",
        +  "Barlow Semi Condensed",
        +  "Barriecito",
        +  "Barrio",
        +  "Basic",
        +  "Baskervville",
        +  "Baskervville SC",
        +  "Battambang",
        +  "Baumans",
        +  "Bayon",
        +  "Be Vietnam Pro",
        +  "Beau Rivage",
        +  "Bebas Neue",
        +  "Beiruti",
        +  "Belanosima",
        +  "Belgrano",
        +  "Bellefair",
        +  "Belleza",
        +  "Bellota",
        +  "Bellota Text",
        +  "BenchNine",
        +  "Benne",
        +  "Bentham",
        +  "Berkshire Swash",
        +  "Besley",
        +  "Betania Patmos",
        +  "Betania Patmos GDL",
        +  "Betania Patmos In",
        +  "Betania Patmos In GDL",
        +  "Beth Ellen",
        +  "Bevan",
        +  "BhuTuka Expanded One",
        +  "Big Shoulders",
        +  "Big Shoulders Inline",
        +  "Big Shoulders Stencil",
        +  "Bigelow Rules",
        +  "Bigshot One",
        +  "Bilbo",
        +  "Bilbo Swash Caps",
        +  "BioRhyme",
        +  "BioRhyme Expanded",
        +  "Birthstone",
        +  "Birthstone Bounce",
        +  "Biryani",
        +  "Bitcount",
        +  "Bitcount Grid Double",
        +  "Bitcount Grid Double Ink",
        +  "Bitcount Grid Single",
        +  "Bitcount Grid Single Ink",
        +  "Bitcount Ink",
        +  "Bitcount Prop Double",
        +  "Bitcount Prop Double Ink",
        +  "Bitcount Prop Single",
        +  "Bitcount Prop Single Ink",
        +  "Bitcount Single",
        +  "Bitcount Single Ink",
        +  "Bitter",
        +  "Black And White Picture",
        +  "Black Han Sans",
        +  "Black Ops One",
        +  "Blaka",
        +  "Blaka Hollow",
        +  "Blaka Ink",
        +  "Blinker",
        +  "Bodoni Moda",
        +  "Bodoni Moda SC",
        +  "Bokor",
        +  "Boldonse",
        +  "Bona Nova",
        +  "Bona Nova SC",
        +  "Bonbon",
        +  "Bonheur Royale",
        +  "Boogaloo",
        +  "Borel",
        +  "Bowlby One",
        +  "Bowlby One SC",
        +  "Bpmf Huninn",
        +  "Bpmf Iansui",
        +  "Bpmf Zihi Kai Std",
        +  "Braah One",
        +  "Brawler",
        +  "Bree Serif",
        +  "Bricolage Grotesque",
        +  "Bruno Ace",
        +  "Bruno Ace SC",
        +  "Brygada 1918",
        +  "Bubblegum Sans",
        +  "Bubbler One",
        +  "Buda",
        +  "Buenard",
        +  "Bungee",
        +  "Bungee Hairline",
        +  "Bungee Inline",
        +  "Bungee Outline",
        +  "Bungee Shade",
        +  "Bungee Spice",
        +  "Bungee Tint",
        +  "Butcherman",
        +  "Butterfly Kids",
        +  "Bytesized",
        +  "Cabin",
        +  "Cabin Condensed",
        +  "Cabin Sketch",
        +  "Cactus Classical Serif",
        +  "Caesar Dressing",
        +  "Cagliostro",
        +  "Cairo",
        +  "Cairo Play",
        +  "Cal Sans",
        +  "Caladea",
        +  "Calistoga",
        +  "Calligraffitti",
        +  "Cambay",
        +  "Cambo",
        +  "Candal",
        +  "Cantarell",
        +  "Cantata One",
        +  "Cantora One",
        +  "Caprasimo",
        +  "Capriola",
        +  "Caramel",
        +  "Carattere",
        +  "Cardo",
        +  "Carlito",
        +  "Carme",
        +  "Carrois Gothic",
        +  "Carrois Gothic SC",
        +  "Carter One",
        +  "Cascadia Code",
        +  "Cascadia Mono",
        +  "Castoro",
        +  "Castoro Titling",
        +  "Catamaran",
        +  "Caudex",
        +  "Cause",
        +  "Caveat",
        +  "Caveat Brush",
        +  "Cedarville Cursive",
        +  "Ceviche One",
        +  "Chakra Petch",
        +  "Changa",
        +  "Changa One",
        +  "Chango",
        +  "Charis SIL",
        +  "Charm",
        +  "Charmonman",
        +  "Chathura",
        +  "Chau Philomene One",
        +  "Chela One",
        +  "Chelsea Market",
        +  "Chenla",
        +  "Cherish",
        +  "Cherry Bomb One",
        +  "Cherry Cream Soda",
        +  "Cherry Swash",
        +  "Chewy",
        +  "Chicle",
        +  "Chilanka",
        +  "Chiron GoRound TC",
        +  "Chiron Hei HK",
        +  "Chiron Sung HK",
        +  "Chivo",
        +  "Chivo Mono",
        +  "Chocolate Classical Sans",
        +  "Chokokutai",
        +  "Chonburi",
        +  "Cinzel",
        +  "Cinzel Decorative",
        +  "Clicker Script",
        +  "Climate Crisis",
        +  "Coda",
        +  "Codystar",
        +  "Coiny",
        +  "Combo",
        +  "Comfortaa",
        +  "Comforter",
        +  "Comforter Brush",
        +  "Comic Neue",
        +  "Comic Relief",
        +  "Coming Soon",
        +  "Comme",
        +  "Commissioner",
        +  "Concert One",
        +  "Condiment",
        +  "Content",
        +  "Contrail One",
        +  "Convergence",
        +  "Cookie",
        +  "Copse",
        +  "Coral Pixels",
        +  "Corben",
        +  "Corinthia",
        +  "Cormorant",
        +  "Cormorant Garamond",
        +  "Cormorant Infant",
        +  "Cormorant SC",
        +  "Cormorant Unicase",
        +  "Cormorant Upright",
        +  "Cossette Texte",
        +  "Cossette Titre",
        +  "Courgette",
        +  "Courier Prime",
        +  "Cousine",
        +  "Coustard",
        +  "Covered By Your Grace",
        +  "Crafty Girls",
        +  "Creepster",
        +  "Crete Round",
        +  "Crimson Pro",
        +  "Crimson Text",
        +  "Croissant One",
        +  "Crushed",
        +  "Cuprum",
        +  "Cute Font",
        +  "Cutive",
        +  "Cutive Mono",
        +  "DM Mono",
        +  "DM Sans",
        +  "DM Serif Display",
        +  "DM Serif Text",
        +  "Dai Banna SIL",
        +  "Damion",
        +  "Dancing Script",
        +  "Danfo",
        +  "Dangrek",
        +  "Darker Grotesque",
        +  "Darumadrop One",
        +  "Datatype",
        +  "David Libre",
        +  "Dawning of a New Day",
        +  "Days One",
        +  "Dekko",
        +  "Dela Gothic One",
        +  "Delicious Handrawn",
        +  "Delius",
        +  "Delius Swash Caps",
        +  "Delius Unicase",
        +  "Della Respira",
        +  "Denk One",
        +  "Devonshire",
        +  "Dhurjati",
        +  "Didact Gothic",
        +  "Diphylleia",
        +  "Diplomata",
        +  "Diplomata SC",
        +  "Do Hyeon",
        +  "Dokdo",
        +  "Domine",
        +  "Donegal One",
        +  "Dongle",
        +  "Doppio One",
        +  "Dorsa",
        +  "Dosis",
        +  "DotGothic16",
        +  "Doto",
        +  "Dr Sugiyama",
        +  "Duru Sans",
        +  "DynaPuff",
        +  "Dynalight",
        +  "EB Garamond",
        +  "Eagle Lake",
        +  "East Sea Dokdo",
        +  "Eater",
        +  "Economica",
        +  "Eczar",
        +  "Edu AU VIC WA NT Arrows",
        +  "Edu AU VIC WA NT Dots",
        +  "Edu AU VIC WA NT Guides",
        +  "Edu AU VIC WA NT Hand",
        +  "Edu AU VIC WA NT Pre",
        +  "Edu NSW ACT Cursive",
        +  "Edu NSW ACT Foundation",
        +  "Edu NSW ACT Hand Pre",
        +  "Edu QLD Beginner",
        +  "Edu QLD Hand",
        +  "Edu SA Beginner",
        +  "Edu SA Hand",
        +  "Edu TAS Beginner",
        +  "Edu VIC WA NT Beginner",
        +  "Edu VIC WA NT Hand",
        +  "Edu VIC WA NT Hand Pre",
        +  "El Messiri",
        +  "Electrolize",
        +  "Elms Sans",
        +  "Elsie",
        +  "Elsie Swash Caps",
        +  "Emblema One",
        +  "Emilys Candy",
        +  "Encode Sans",
        +  "Encode Sans Condensed",
        +  "Encode Sans Expanded",
        +  "Encode Sans SC",
        +  "Encode Sans Semi Condensed",
        +  "Encode Sans Semi Expanded",
        +  "Engagement",
        +  "Englebert",
        +  "Enriqueta",
        +  "Ephesis",
        +  "Epilogue",
        +  "Epunda Sans",
        +  "Epunda Slab",
        +  "Erica One",
        +  "Esteban",
        +  "Estedad",
        +  "Estonia",
        +  "Euphoria Script",
        +  "Ewert",
        +  "Exile",
        +  "Exo",
        +  "Exo 2",
        +  "Expletus Sans",
        +  "Explora",
        +  "Faculty Glyphic",
        +  "Fahkwang",
        +  "Familjen Grotesk",
        +  "Fanwood Text",
        +  "Farro",
        +  "Farsan",
        +  "Fascinate",
        +  "Fascinate Inline",
        +  "Faster One",
        +  "Fasthand",
        +  "Fauna One",
        +  "Faustina",
        +  "Federant",
        +  "Federo",
        +  "Felipa",
        +  "Fenix",
        +  "Festive",
        +  "Figtree",
        +  "Finger Paint",
        +  "Finlandica Headline",
        +  "Finlandica Text",
        +  "Fira Code",
        +  "Fira Mono",
        +  "Fira Sans",
        +  "Fira Sans Condensed",
        +  "Fira Sans Extra Condensed",
        +  "Fjalla One",
        +  "Fjord One",
        +  "Flamenco",
        +  "Flavors",
        +  "Fleur De Leah",
        +  "Flow Block",
        +  "Flow Circular",
        +  "Flow Rounded",
        +  "Foldit",
        +  "Fondamento",
        +  "Fontdiner Swanky",
        +  "Forum",
        +  "Fragment Mono",
        +  "Francois One",
        +  "Frank Ruhl Libre",
        +  "Fraunces",
        +  "Freckle Face",
        +  "Fredericka the Great",
        +  "Fredoka",
        +  "Freehand",
        +  "Freeman",
        +  "Fresca",
        +  "Frijole",
        +  "Fruktur",
        +  "Fugaz One",
        +  "Fuggles",
        +  "Funnel Display",
        +  "Funnel Sans",
        +  "Fustat",
        +  "Fuzzy Bubbles",
        +  "GFS Didot",
        +  "GFS Neohellenic",
        +  "Ga Maamli",
        +  "Gabarito",
        +  "Gabriela",
        +  "Gaegu",
        +  "Gafata",
        +  "Gajraj One",
        +  "Galada",
        +  "Galdeano",
        +  "Galindo",
        +  "Gamja Flower",
        +  "Gantari",
        +  "Gasoek One",
        +  "Gayathri",
        +  "Geist",
        +  "Geist Mono",
        +  "Geist Pixel",
        +  "Gelasio",
        +  "Gemunu Libre",
        +  "Genos",
        +  "Gentium Book Plus",
        +  "Gentium Plus",
        +  "Geo",
        +  "Geologica",
        +  "Geom",
        +  "Geomini",
        +  "Georama",
        +  "Geostar",
        +  "Geostar Fill",
        +  "Germania One",
        +  "Gideon Roman",
        +  "Gidole",
        +  "Gidugu",
        +  "Gilda Display",
        +  "Girassol",
        +  "Give You Glory",
        +  "Glass Antiqua",
        +  "Glegoo",
        +  "Gloock",
        +  "Gloria Hallelujah",
        +  "Glory",
        +  "Gluten",
        +  "Goblin One",
        +  "Gochi Hand",
        +  "Goldman",
        +  "Golos Text",
        +  "Google Sans",
        +  "Google Sans Code",
        +  "Google Sans Flex",
        +  "Gorditas",
        +  "Gothic A1",
        +  "Gotu",
        +  "Goudy Bookletter 1911",
        +  "Gowun Batang",
        +  "Gowun Dodum",
        +  "Graduate",
        +  "Grand Hotel",
        +  "Grandiflora One",
        +  "Grandstander",
        +  "Grape Nuts",
        +  "Gravitas One",
        +  "Great Vibes",
        +  "Grechen Fuemen",
        +  "Grenze",
        +  "Grenze Gotisch",
        +  "Grey Qo",
        +  "Griffy",
        +  "Gruppo",
        +  "Gudea",
        +  "Gugi",
        +  "Gulzar",
        +  "Gupter",
        +  "Gurajada",
        +  "Gveret Levin",
        +  "Gwendolyn",
        +  "Habibi",
        +  "Hachi Maru Pop",
        +  "Hahmlet",
        +  "Halant",
        +  "Hammersmith One",
        +  "Hanalei",
        +  "Hanalei Fill",
        +  "Handjet",
        +  "Handlee",
        +  "Hanken Grotesk",
        +  "Hanuman",
        +  "Happy Monkey",
        +  "Harmattan",
        +  "Headland One",
        +  "Hedvig Letters Sans",
        +  "Hedvig Letters Serif",
        +  "Heebo",
        +  "Henny Penny",
        +  "Hepta Slab",
        +  "Herr Von Muellerhoff",
        +  "Hi Melody",
        +  "Hibur Mono",
        +  "Hina Mincho",
        +  "Hind",
        +  "Hind Guntur",
        +  "Hind Madurai",
        +  "Hind Mysuru",
        +  "Hind Siliguri",
        +  "Hind Vadodara",
        +  "Holtwood One SC",
        +  "Homemade Apple",
        +  "Homenaje",
        +  "Honk",
        +  "Host Grotesk",
        +  "Hubballi",
        +  "Hubot Sans",
        +  "Huninn",
        +  "Hurricane",
        +  "IBM Plex Mono",
        +  "IBM Plex Sans",
        +  "IBM Plex Sans Arabic",
        +  "IBM Plex Sans Condensed",
        +  "IBM Plex Sans Devanagari",
        +  "IBM Plex Sans Hebrew",
        +  "IBM Plex Sans JP",
        +  "IBM Plex Sans KR",
        +  "IBM Plex Sans Thai",
        +  "IBM Plex Sans Thai Looped",
        +  "IBM Plex Serif",
        +  "IM Fell DW Pica",
        +  "IM Fell DW Pica SC",
        +  "IM Fell Double Pica",
        +  "IM Fell Double Pica SC",
        +  "IM Fell English",
        +  "IM Fell English SC",
        +  "IM Fell French Canon",
        +  "IM Fell French Canon SC",
        +  "IM Fell Great Primer",
        +  "IM Fell Great Primer SC",
        +  "Iansui",
        +  "Ibarra Real Nova",
        +  "Iceberg",
        +  "Iceland",
        +  "Idiqlat",
        +  "Imbue",
        +  "Imperial Script",
        +  "Imprima",
        +  "Inclusive Sans",
        +  "Inconsolata",
        +  "Inder",
        +  "Indie Flower",
        +  "Ingrid Darling",
        +  "Inika",
        +  "Inknut Antiqua",
        +  "Inria Sans",
        +  "Inria Serif",
        +  "Inspiration",
        +  "Instrument Sans",
        +  "Instrument Serif",
        +  "Intel One Mono",
        +  "Inter",
        +  "Inter Tight",
        +  "Iosevka Charon",
        +  "Iosevka Charon Mono",
        +  "Irish Grover",
        +  "Island Moments",
        +  "Istok Web",
        +  "Italiana",
        +  "Italianno",
        +  "Itim",
        +  "Jacquard 12",
        +  "Jacquard 12 Charted",
        +  "Jacquard 24",
        +  "Jacquard 24 Charted",
        +  "Jacquarda Bastarda 9",
        +  "Jacquarda Bastarda 9 Charted",
        +  "Jacques Francois",
        +  "Jacques Francois Shadow",
        +  "Jaini",
        +  "Jaini Purva",
        +  "Jaldi",
        +  "Jaro",
        +  "Jersey 10",
        +  "Jersey 10 Charted",
        +  "Jersey 15",
        +  "Jersey 15 Charted",
        +  "Jersey 20",
        +  "Jersey 20 Charted",
        +  "Jersey 25",
        +  "Jersey 25 Charted",
        +  "JetBrains Mono",
        +  "Jim Nightshade",
        +  "Joan",
        +  "Jockey One",
        +  "Jolly Lodger",
        +  "Jomhuria",
        +  "Jomolhari",
        +  "Josefin Sans",
        +  "Josefin Slab",
        +  "Jost",
        +  "Joti One",
        +  "Jua",
        +  "Judson",
        +  "Julee",
        +  "Julius Sans One",
        +  "Junge",
        +  "Jura",
        +  "Just Another Hand",
        +  "Just Me Again Down Here",
        +  "K2D",
        +  "Kablammo",
        +  "Kadwa",
        +  "Kaisei Decol",
        +  "Kaisei HarunoUmi",
        +  "Kaisei Opti",
        +  "Kaisei Tokumin",
        +  "Kalam",
        +  "Kalnia",
        +  "Kalnia Glaze",
        +  "Kameron",
        +  "Kanchenjunga",
        +  "Kanit",
        +  "Kantumruy Pro",
        +  "Kapakana",
        +  "Karantina",
        +  "Karla",
        +  "Karla Tamil Inclined",
        +  "Karla Tamil Upright",
        +  "Karma",
        +  "Katibeh",
        +  "Kaushan Script",
        +  "Kavivanar",
        +  "Kavoon",
        +  "Kay Pho Du",
        +  "Kdam Thmor Pro",
        +  "Keania One",
        +  "Kedebideri",
        +  "Kelly Slab",
        +  "Kenia",
        +  "Khand",
        +  "Khmer",
        +  "Khula",
        +  "Kings",
        +  "Kirang Haerang",
        +  "Kite One",
        +  "Kiwi Maru",
        +  "Klee One",
        +  "Knewave",
        +  "KoHo",
        +  "Kodchasan",
        +  "Kode Mono",
        +  "Koh Santepheap",
        +  "Kolker Brush",
        +  "Konkhmer Sleokchher",
        +  "Kosugi",
        +  "Kosugi Maru",
        +  "Kotta One",
        +  "Koulen",
        +  "Kranky",
        +  "Kreon",
        +  "Kristi",
        +  "Krona One",
        +  "Krub",
        +  "Kufam",
        +  "Kulim Park",
        +  "Kumar One",
        +  "Kumar One Outline",
        +  "Kumbh Sans",
        +  "Kurale",
        +  "LINE Seed JP",
        +  "LXGW Marker Gothic",
        +  "LXGW WenKai Mono TC",
        +  "LXGW WenKai TC",
        +  "La Belle Aurore",
        +  "Labrada",
        +  "Lacquer",
        +  "Laila",
        +  "Lakki Reddy",
        +  "Lalezar",
        +  "Lancelot",
        +  "Langar",
        +  "Lateef",
        +  "Lato",
        +  "Lavishly Yours",
        +  "League Gothic",
        +  "League Script",
        +  "League Spartan",
        +  "Leckerli One",
        +  "Ledger",
        +  "Lekton",
        +  "Lemon",
        +  "Lemonada",
        +  "Lexend",
        +  "Lexend Deca",
        +  "Lexend Exa",
        +  "Lexend Giga",
        +  "Lexend Mega",
        +  "Lexend Peta",
        +  "Lexend Tera",
        +  "Lexend Zetta",
        +  "Libertinus Keyboard",
        +  "Libertinus Math",
        +  "Libertinus Mono",
        +  "Libertinus Sans",
        +  "Libertinus Serif",
        +  "Libertinus Serif Display",
        +  "Libre Barcode 128",
        +  "Libre Barcode 128 Text",
        +  "Libre Barcode 39",
        +  "Libre Barcode 39 Extended",
        +  "Libre Barcode 39 Extended Text",
        +  "Libre Barcode 39 Text",
        +  "Libre Barcode EAN13 Text",
        +  "Libre Baskerville",
        +  "Libre Bodoni",
        +  "Libre Caslon Display",
        +  "Libre Caslon Text",
        +  "Libre Franklin",
        +  "Licorice",
        +  "Life Savers",
        +  "Lilex",
        +  "Lilita One",
        +  "Lily Script One",
        +  "Limelight",
        +  "Linden Hill",
        +  "Linefont",
        +  "Lisu Bosa",
        +  "Liter",
        +  "Literata",
        +  "Liu Jian Mao Cao",
        +  "Livvic",
        +  "Lobster",
        +  "Lobster Two",
        +  "Londrina Outline",
        +  "Londrina Shadow",
        +  "Londrina Sketch",
        +  "Londrina Solid",
        +  "Long Cang",
        +  "Lora",
        +  "Love Light",
        +  "Love Ya Like A Sister",
        +  "Loved by the King",
        +  "Lovers Quarrel",
        +  "Luckiest Guy",
        +  "Lugrasimo",
        +  "Lumanosimo",
        +  "Lunasima",
        +  "Lusitana",
        +  "Lustria",
        +  "Luxurious Roman",
        +  "Luxurious Script",
        +  "M PLUS 1",
        +  "M PLUS 1 Code",
        +  "M PLUS 1p",
        +  "M PLUS 2",
        +  "M PLUS Code Latin",
        +  "M PLUS Rounded 1c",
        +  "M PLUS U",
        +  "Ma Shan Zheng",
        +  "Macondo",
        +  "Macondo Swash Caps",
        +  "Mada",
        +  "Madimi One",
        +  "Magra",
        +  "Maiden Orange",
        +  "Maitree",
        +  "Major Mono Display",
        +  "Mako",
        +  "Mali",
        +  "Mallanna",
        +  "Maname",
        +  "Mandali",
        +  "Manjari",
        +  "Manrope",
        +  "Mansalva",
        +  "Manuale",
        +  "Manufacturing Consent",
        +  "Marcellus",
        +  "Marcellus SC",
        +  "Marck Script",
        +  "Margarine",
        +  "Marhey",
        +  "Markazi Text",
        +  "Marko One",
        +  "Marmelad",
        +  "Martel",
        +  "Martel Sans",
        +  "Martian Mono",
        +  "Marvel",
        +  "Matangi",
        +  "Mate",
        +  "Mate SC",
        +  "Matemasie",
        +  "Material Icons",
        +  "Material Icons Outlined",
        +  "Material Icons Round",
        +  "Material Icons Sharp",
        +  "Material Icons Two Tone",
        +  "Material Symbols",
        +  "Material Symbols Outlined",
        +  "Material Symbols Rounded",
        +  "Material Symbols Sharp",
        +  "Maven Pro",
        +  "McLaren",
        +  "Mea Culpa",
        +  "Meddon",
        +  "MedievalSharp",
        +  "Medula One",
        +  "Meera Inimai",
        +  "Megrim",
        +  "Meie Script",
        +  "Menbere",
        +  "Meow Script",
        +  "Merienda",
        +  "Merriweather",
        +  "Merriweather Sans",
        +  "Metal",
        +  "Metal Mania",
        +  "Metamorphous",
        +  "Metrophobic",
        +  "Michroma",
        +  "Micro 5",
        +  "Micro 5 Charted",
        +  "Milonga",
        +  "Miltonian",
        +  "Miltonian Tattoo",
        +  "Mina",
        +  "Mingzat",
        +  "Miniver",
        +  "Miranda Sans",
        +  "Miriam Libre",
        +  "Mirza",
        +  "Miss Fajardose",
        +  "Mitr",
        +  "Mochiy Pop One",
        +  "Mochiy Pop P One",
        +  "Modak",
        +  "Modern Antiqua",
        +  "Moderustic",
        +  "Mogra",
        +  "Mohave",
        +  "Moirai One",
        +  "Molengo",
        +  "Molle",
        +  "Momo Signature",
        +  "Momo Trust Display",
        +  "Momo Trust Sans",
        +  "Mona Sans",
        +  "Monda",
        +  "Monofett",
        +  "Monomakh",
        +  "Monomaniac One",
        +  "Monoton",
        +  "Monsieur La Doulaise",
        +  "Montaga",
        +  "Montagu Slab",
        +  "MonteCarlo",
        +  "Montenegrin Gothic One",
        +  "Montez",
        +  "Montserrat",
        +  "Montserrat Alternates",
        +  "Montserrat Underline",
        +  "Moo Lah Lah",
        +  "Mooli",
        +  "Moon Dance",
        +  "Moul",
        +  "Moulpali",
        +  "Mountains of Christmas",
        +  "Mouse Memoirs",
        +  "Mozilla Headline",
        +  "Mozilla Text",
        +  "Mr Bedfort",
        +  "Mr Dafoe",
        +  "Mr De Haviland",
        +  "Mrs Saint Delafield",
        +  "Mrs Sheppards",
        +  "Ms Madi",
        +  "Mukta",
        +  "Mukta Mahee",
        +  "Mukta Malar",
        +  "Mukta Vaani",
        +  "Mulish",
        +  "Murecho",
        +  "MuseoModerno",
        +  "My Soul",
        +  "Mynerve",
        +  "Mystery Quest",
        +  "NTR",
        +  "Nabla",
        +  "Namdhinggo",
        +  "Nanum Brush Script",
        +  "Nanum Gothic",
        +  "Nanum Gothic Coding",
        +  "Nanum Myeongjo",
        +  "Nanum Pen Script",
        +  "Narnoor",
        +  "Nata Sans",
        +  "National Park",
        +  "Neonderthaw",
        +  "Nerko One",
        +  "Neucha",
        +  "Neuton",
        +  "New Amsterdam",
        +  "New Rocker",
        +  "New Tegomin",
        +  "News Cycle",
        +  "Newsreader",
        +  "Niconne",
        +  "Niramit",
        +  "Nixie One",
        +  "Nobile",
        +  "Nokora",
        +  "Norican",
        +  "Nosifer",
        +  "Notable",
        +  "Nothing You Could Do",
        +  "Noticia Text",
        +  "Noto Color Emoji",
        +  "Noto Emoji",
        +  "Noto Kufi Arabic",
        +  "Noto Music",
        +  "Noto Naskh Arabic",
        +  "Noto Nastaliq Urdu",
        +  "Noto Rashi Hebrew",
        +  "Noto Sans",
        +  "Noto Sans Adlam",
        +  "Noto Sans Adlam Unjoined",
        +  "Noto Sans Anatolian Hieroglyphs",
        +  "Noto Sans Arabic",
        +  "Noto Sans Armenian",
        +  "Noto Sans Avestan",
        +  "Noto Sans Balinese",
        +  "Noto Sans Bamum",
        +  "Noto Sans Bassa Vah",
        +  "Noto Sans Batak",
        +  "Noto Sans Bengali",
        +  "Noto Sans Bhaiksuki",
        +  "Noto Sans Brahmi",
        +  "Noto Sans Buginese",
        +  "Noto Sans Buhid",
        +  "Noto Sans Canadian Aboriginal",
        +  "Noto Sans Carian",
        +  "Noto Sans Caucasian Albanian",
        +  "Noto Sans Chakma",
        +  "Noto Sans Cham",
        +  "Noto Sans Cherokee",
        +  "Noto Sans Chorasmian",
        +  "Noto Sans Coptic",
        +  "Noto Sans Cuneiform",
        +  "Noto Sans Cypriot",
        +  "Noto Sans Cypro Minoan",
        +  "Noto Sans Deseret",
        +  "Noto Sans Devanagari",
        +  "Noto Sans Display",
        +  "Noto Sans Duployan",
        +  "Noto Sans Egyptian Hieroglyphs",
        +  "Noto Sans Elbasan",
        +  "Noto Sans Elymaic",
        +  "Noto Sans Ethiopic",
        +  "Noto Sans Georgian",
        +  "Noto Sans Glagolitic",
        +  "Noto Sans Gothic",
        +  "Noto Sans Grantha",
        +  "Noto Sans Gujarati",
        +  "Noto Sans Gunjala Gondi",
        +  "Noto Sans Gurmukhi",
        +  "Noto Sans HK",
        +  "Noto Sans Hanifi Rohingya",
        +  "Noto Sans Hanunoo",
        +  "Noto Sans Hatran",
        +  "Noto Sans Hebrew",
        +  "Noto Sans Imperial Aramaic",
        +  "Noto Sans Indic Siyaq Numbers",
        +  "Noto Sans Inscriptional Pahlavi",
        +  "Noto Sans Inscriptional Parthian",
        +  "Noto Sans JP",
        +  "Noto Sans Javanese",
        +  "Noto Sans KR",
        +  "Noto Sans Kaithi",
        +  "Noto Sans Kannada",
        +  "Noto Sans Kawi",
        +  "Noto Sans Kayah Li",
        +  "Noto Sans Kharoshthi",
        +  "Noto Sans Khmer",
        +  "Noto Sans Khojki",
        +  "Noto Sans Khudawadi",
        +  "Noto Sans Lao",
        +  "Noto Sans Lao Looped",
        +  "Noto Sans Lepcha",
        +  "Noto Sans Limbu",
        +  "Noto Sans Linear A",
        +  "Noto Sans Linear B",
        +  "Noto Sans Lisu",
        +  "Noto Sans Lycian",
        +  "Noto Sans Lydian",
        +  "Noto Sans Mahajani",
        +  "Noto Sans Malayalam",
        +  "Noto Sans Mandaic",
        +  "Noto Sans Manichaean",
        +  "Noto Sans Marchen",
        +  "Noto Sans Masaram Gondi",
        +  "Noto Sans Math",
        +  "Noto Sans Mayan Numerals",
        +  "Noto Sans Medefaidrin",
        +  "Noto Sans Meetei Mayek",
        +  "Noto Sans Mende Kikakui",
        +  "Noto Sans Meroitic",
        +  "Noto Sans Miao",
        +  "Noto Sans Modi",
        +  "Noto Sans Mongolian",
        +  "Noto Sans Mono",
        +  "Noto Sans Mro",
        +  "Noto Sans Multani",
        +  "Noto Sans Myanmar",
        +  "Noto Sans NKo",
        +  "Noto Sans NKo Unjoined",
        +  "Noto Sans Nabataean",
        +  "Noto Sans Nag Mundari",
        +  "Noto Sans Nandinagari",
        +  "Noto Sans New Tai Lue",
        +  "Noto Sans Newa",
        +  "Noto Sans Nushu",
        +  "Noto Sans Ogham",
        +  "Noto Sans Ol Chiki",
        +  "Noto Sans Old Hungarian",
        +  "Noto Sans Old Italic",
        +  "Noto Sans Old North Arabian",
        +  "Noto Sans Old Permic",
        +  "Noto Sans Old Persian",
        +  "Noto Sans Old Sogdian",
        +  "Noto Sans Old South Arabian",
        +  "Noto Sans Old Turkic",
        +  "Noto Sans Oriya",
        +  "Noto Sans Osage",
        +  "Noto Sans Osmanya",
        +  "Noto Sans Pahawh Hmong",
        +  "Noto Sans Palmyrene",
        +  "Noto Sans Pau Cin Hau",
        +  "Noto Sans PhagsPa",
        +  "Noto Sans Phoenician",
        +  "Noto Sans Psalter Pahlavi",
        +  "Noto Sans Rejang",
        +  "Noto Sans Runic",
        +  "Noto Sans SC",
        +  "Noto Sans Samaritan",
        +  "Noto Sans Saurashtra",
        +  "Noto Sans Sharada",
        +  "Noto Sans Shavian",
        +  "Noto Sans Siddham",
        +  "Noto Sans SignWriting",
        +  "Noto Sans Sinhala",
        +  "Noto Sans Sogdian",
        +  "Noto Sans Sora Sompeng",
        +  "Noto Sans Soyombo",
        +  "Noto Sans Sundanese",
        +  "Noto Sans Sunuwar",
        +  "Noto Sans Syloti Nagri",
        +  "Noto Sans Symbols",
        +  "Noto Sans Symbols 2",
        +  "Noto Sans Syriac",
        +  "Noto Sans Syriac Eastern",
        +  "Noto Sans Syriac Western",
        +  "Noto Sans TC",
        +  "Noto Sans Tagalog",
        +  "Noto Sans Tagbanwa",
        +  "Noto Sans Tai Le",
        +  "Noto Sans Tai Tham",
        +  "Noto Sans Tai Viet",
        +  "Noto Sans Takri",
        +  "Noto Sans Tamil",
        +  "Noto Sans Tamil Supplement",
        +  "Noto Sans Tangsa",
        +  "Noto Sans Telugu",
        +  "Noto Sans Thaana",
        +  "Noto Sans Thai",
        +  "Noto Sans Thai Looped",
        +  "Noto Sans Tifinagh",
        +  "Noto Sans Tirhuta",
        +  "Noto Sans Ugaritic",
        +  "Noto Sans Vai",
        +  "Noto Sans Vithkuqi",
        +  "Noto Sans Wancho",
        +  "Noto Sans Warang Citi",
        +  "Noto Sans Yi",
        +  "Noto Sans Zanabazar Square",
        +  "Noto Serif",
        +  "Noto Serif Ahom",
        +  "Noto Serif Armenian",
        +  "Noto Serif Balinese",
        +  "Noto Serif Bengali",
        +  "Noto Serif Devanagari",
        +  "Noto Serif Display",
        +  "Noto Serif Dives Akuru",
        +  "Noto Serif Dogra",
        +  "Noto Serif Ethiopic",
        +  "Noto Serif Georgian",
        +  "Noto Serif Grantha",
        +  "Noto Serif Gujarati",
        +  "Noto Serif Gurmukhi",
        +  "Noto Serif HK",
        +  "Noto Serif Hebrew",
        +  "Noto Serif Hentaigana",
        +  "Noto Serif JP",
        +  "Noto Serif KR",
        +  "Noto Serif Kannada",
        +  "Noto Serif Khitan Small Script",
        +  "Noto Serif Khmer",
        +  "Noto Serif Khojki",
        +  "Noto Serif Lao",
        +  "Noto Serif Makasar",
        +  "Noto Serif Malayalam",
        +  "Noto Serif Myanmar",
        +  "Noto Serif NP Hmong",
        +  "Noto Serif Old Uyghur",
        +  "Noto Serif Oriya",
        +  "Noto Serif Ottoman Siyaq",
        +  "Noto Serif SC",
        +  "Noto Serif Sinhala",
        +  "Noto Serif TC",
        +  "Noto Serif Tamil",
        +  "Noto Serif Tangut",
        +  "Noto Serif Telugu",
        +  "Noto Serif Thai",
        +  "Noto Serif Tibetan",
        +  "Noto Serif Todhri",
        +  "Noto Serif Toto",
        +  "Noto Serif Vithkuqi",
        +  "Noto Serif Yezidi",
        +  "Noto Traditional Nushu",
        +  "Noto Znamenny Musical Notation",
        +  "Nova Cut",
        +  "Nova Flat",
        +  "Nova Mono",
        +  "Nova Oval",
        +  "Nova Round",
        +  "Nova Script",
        +  "Nova Slim",
        +  "Nova Square",
        +  "Numans",
        +  "Nunito",
        +  "Nunito Sans",
        +  "Nuosu SIL",
        +  "Odibee Sans",
        +  "Odor Mean Chey",
        +  "Offside",
        +  "Oi",
        +  "Ojuju",
        +  "Old Standard TT",
        +  "Oldenburg",
        +  "Ole",
        +  "Oleo Script",
        +  "Oleo Script Swash Caps",
        +  "Onest",
        +  "Oooh Baby",
        +  "Open Sans",
        +  "Oranienbaum",
        +  "Orbit",
        +  "Orbitron",
        +  "Oregano",
        +  "Orelega One",
        +  "Orienta",
        +  "Original Surfer",
        +  "Oswald",
        +  "Outfit",
        +  "Over the Rainbow",
        +  "Overlock",
        +  "Overlock SC",
        +  "Overpass",
        +  "Overpass Mono",
        +  "Ovo",
        +  "Oxanium",
        +  "Oxygen",
        +  "Oxygen Mono",
        +  "PT Mono",
        +  "PT Sans",
        +  "PT Sans Caption",
        +  "PT Sans Narrow",
        +  "PT Serif",
        +  "PT Serif Caption",
        +  "Pacifico",
        +  "Padauk",
        +  "Padyakke Expanded One",
        +  "Palanquin",
        +  "Palanquin Dark",
        +  "Palette Mosaic",
        +  "Pangolin",
        +  "Paprika",
        +  "Parastoo",
        +  "Parisienne",
        +  "Parkinsans",
        +  "Passero One",
        +  "Passion One",
        +  "Passions Conflict",
        +  "Pathway Extreme",
        +  "Pathway Gothic One",
        +  "Patrick Hand",
        +  "Patrick Hand SC",
        +  "Pattaya",
        +  "Patua One",
        +  "Pavanam",
        +  "Paytone One",
        +  "Peddana",
        +  "Peralta",
        +  "Permanent Marker",
        +  "Petemoss",
        +  "Petit Formal Script",
        +  "Petrona",
        +  "Phetsarath",
        +  "Philosopher",
        +  "Phudu",
        +  "Piazzolla",
        +  "Piedra",
        +  "Pinyon Script",
        +  "Pirata One",
        +  "Pixelify Sans",
        +  "Plaster",
        +  "Platypi",
        +  "Play",
        +  "Playball",
        +  "Playfair",
        +  "Playfair Display",
        +  "Playfair Display SC",
        +  "Playpen Sans",
        +  "Playpen Sans Arabic",
        +  "Playpen Sans Deva",
        +  "Playpen Sans Hebrew",
        +  "Playpen Sans Thai",
        +  "Playwrite AR",
        +  "Playwrite AR Guides",
        +  "Playwrite AT",
        +  "Playwrite AT Guides",
        +  "Playwrite AU NSW",
        +  "Playwrite AU NSW Guides",
        +  "Playwrite AU QLD",
        +  "Playwrite AU QLD Guides",
        +  "Playwrite AU SA",
        +  "Playwrite AU SA Guides",
        +  "Playwrite AU TAS",
        +  "Playwrite AU TAS Guides",
        +  "Playwrite AU VIC",
        +  "Playwrite AU VIC Guides",
        +  "Playwrite BE VLG",
        +  "Playwrite BE VLG Guides",
        +  "Playwrite BE WAL",
        +  "Playwrite BE WAL Guides",
        +  "Playwrite BR",
        +  "Playwrite BR Guides",
        +  "Playwrite CA",
        +  "Playwrite CA Guides",
        +  "Playwrite CL",
        +  "Playwrite CL Guides",
        +  "Playwrite CO",
        +  "Playwrite CO Guides",
        +  "Playwrite CU",
        +  "Playwrite CU Guides",
        +  "Playwrite CZ",
        +  "Playwrite CZ Guides",
        +  "Playwrite DE Grund",
        +  "Playwrite DE Grund Guides",
        +  "Playwrite DE LA",
        +  "Playwrite DE LA Guides",
        +  "Playwrite DE SAS",
        +  "Playwrite DE SAS Guides",
        +  "Playwrite DE VA",
        +  "Playwrite DE VA Guides",
        +  "Playwrite DK Loopet",
        +  "Playwrite DK Loopet Guides",
        +  "Playwrite DK Uloopet",
        +  "Playwrite DK Uloopet Guides",
        +  "Playwrite ES",
        +  "Playwrite ES Deco",
        +  "Playwrite ES Deco Guides",
        +  "Playwrite ES Guides",
        +  "Playwrite FR Moderne",
        +  "Playwrite FR Moderne Guides",
        +  "Playwrite FR Trad",
        +  "Playwrite FR Trad Guides",
        +  "Playwrite GB J",
        +  "Playwrite GB J Guides",
        +  "Playwrite GB S",
        +  "Playwrite GB S Guides",
        +  "Playwrite HR",
        +  "Playwrite HR Guides",
        +  "Playwrite HR Lijeva",
        +  "Playwrite HR Lijeva Guides",
        +  "Playwrite HU",
        +  "Playwrite HU Guides",
        +  "Playwrite ID",
        +  "Playwrite ID Guides",
        +  "Playwrite IE",
        +  "Playwrite IE Guides",
        +  "Playwrite IN",
        +  "Playwrite IN Guides",
        +  "Playwrite IS",
        +  "Playwrite IS Guides",
        +  "Playwrite IT Moderna",
        +  "Playwrite IT Moderna Guides",
        +  "Playwrite IT Trad",
        +  "Playwrite IT Trad Guides",
        +  "Playwrite MX",
        +  "Playwrite MX Guides",
        +  "Playwrite NG Modern",
        +  "Playwrite NG Modern Guides",
        +  "Playwrite NL",
        +  "Playwrite NL Guides",
        +  "Playwrite NO",
        +  "Playwrite NO Guides",
        +  "Playwrite NZ",
        +  "Playwrite NZ Basic",
        +  "Playwrite NZ Basic Guides",
        +  "Playwrite NZ Guides",
        +  "Playwrite PE",
        +  "Playwrite PE Guides",
        +  "Playwrite PL",
        +  "Playwrite PL Guides",
        +  "Playwrite PT",
        +  "Playwrite PT Guides",
        +  "Playwrite RO",
        +  "Playwrite RO Guides",
        +  "Playwrite SK",
        +  "Playwrite SK Guides",
        +  "Playwrite TZ",
        +  "Playwrite TZ Guides",
        +  "Playwrite US Modern",
        +  "Playwrite US Modern Guides",
        +  "Playwrite US Trad",
        +  "Playwrite US Trad Guides",
        +  "Playwrite VN",
        +  "Playwrite VN Guides",
        +  "Playwrite ZA",
        +  "Playwrite ZA Guides",
        +  "Pliant",
        +  "Plus Jakarta Sans",
        +  "Pochaevsk",
        +  "Podkova",
        +  "Poetsen One",
        +  "Poiret One",
        +  "Poller One",
        +  "Poltawski Nowy",
        +  "Poly",
        +  "Pompiere",
        +  "Ponnala",
        +  "Ponomar",
        +  "Pontano Sans",
        +  "Poor Story",
        +  "Poppins",
        +  "Port Lligat Sans",
        +  "Port Lligat Slab",
        +  "Potta One",
        +  "Pragati Narrow",
        +  "Praise",
        +  "Prata",
        +  "Preahvihear",
        +  "Press Start 2P",
        +  "Pridi",
        +  "Princess Sofia",
        +  "Prociono",
        +  "Prompt",
        +  "Prosto One",
        +  "Protest Guerrilla",
        +  "Protest Revolution",
        +  "Protest Riot",
        +  "Protest Strike",
        +  "Proza Libre",
        +  "Public Sans",
        +  "Puppies Play",
        +  "Puritan",
        +  "Purple Purse",
        +  "Qahiri",
        +  "Quando",
        +  "Quantico",
        +  "Quattrocento",
        +  "Quattrocento Sans",
        +  "Questrial",
        +  "Quicksand",
        +  "Quintessential",
        +  "Qwigley",
        +  "Qwitcher Grypen",
        +  "REM",
        +  "Racing Sans One",
        +  "Radio Canada",
        +  "Radio Canada Big",
        +  "Radley",
        +  "Rajdhani",
        +  "Rakkas",
        +  "Raleway",
        +  "Raleway Dots",
        +  "Ramabhadra",
        +  "Ramaraja",
        +  "Rambla",
        +  "Rammetto One",
        +  "Rampart One",
        +  "Ramsina",
        +  "Ranchers",
        +  "Rancho",
        +  "Ranga",
        +  "Rasa",
        +  "Rationale",
        +  "Ravi Prakash",
        +  "Readex Pro",
        +  "Recursive",
        +  "Red Hat Display",
        +  "Red Hat Mono",
        +  "Red Hat Text",
        +  "Red Rose",
        +  "Redacted",
        +  "Redacted Script",
        +  "Reddit Mono",
        +  "Reddit Sans",
        +  "Reddit Sans Condensed",
        +  "Redressed",
        +  "Reem Kufi",
        +  "Reem Kufi Fun",
        +  "Reem Kufi Ink",
        +  "Reenie Beanie",
        +  "Reggae One",
        +  "Rethink Sans",
        +  "Revalia",
        +  "Rhodium Libre",
        +  "Ribeye",
        +  "Ribeye Marrow",
        +  "Righteous",
        +  "Risque",
        +  "Road Rage",
        +  "Roboto",
        +  "Roboto Condensed",
        +  "Roboto Flex",
        +  "Roboto Mono",
        +  "Roboto Serif",
        +  "Roboto Slab",
        +  "Rochester",
        +  "Rock 3D",
        +  "Rock Salt",
        +  "RocknRoll One",
        +  "Rokkitt",
        +  "Romanesco",
        +  "Ropa Sans",
        +  "Rosario",
        +  "Rosarivo",
        +  "Rouge Script",
        +  "Rowdies",
        +  "Rozha One",
        +  "Rubik",
        +  "Rubik 80s Fade",
        +  "Rubik Beastly",
        +  "Rubik Broken Fax",
        +  "Rubik Bubbles",
        +  "Rubik Burned",
        +  "Rubik Dirt",
        +  "Rubik Distressed",
        +  "Rubik Doodle Shadow",
        +  "Rubik Doodle Triangles",
        +  "Rubik Gemstones",
        +  "Rubik Glitch",
        +  "Rubik Glitch Pop",
        +  "Rubik Iso",
        +  "Rubik Lines",
        +  "Rubik Maps",
        +  "Rubik Marker Hatch",
        +  "Rubik Maze",
        +  "Rubik Microbe",
        +  "Rubik Mono One",
        +  "Rubik Moonrocks",
        +  "Rubik Pixels",
        +  "Rubik Puddles",
        +  "Rubik Scribble",
        +  "Rubik Spray Paint",
        +  "Rubik Storm",
        +  "Rubik Vinyl",
        +  "Rubik Wet Paint",
        +  "Ruda",
        +  "Rufina",
        +  "Ruge Boogie",
        +  "Ruluko",
        +  "Rum Raisin",
        +  "Ruslan Display",
        +  "Russo One",
        +  "Ruthie",
        +  "Ruwudu",
        +  "Rye",
        +  "SN Pro",
        +  "STIX Two Math",
        +  "STIX Two Text",
        +  "SUSE",
        +  "SUSE Mono",
        +  "Sacramento",
        +  "Sahitya",
        +  "Sail",
        +  "Saira",
        +  "Saira Condensed",
        +  "Saira Extra Condensed",
        +  "Saira Semi Condensed",
        +  "Saira Stencil",
        +  "Salsa",
        +  "Sanchez",
        +  "Sancreek",
        +  "Sankofa Display",
        +  "Sansation",
        +  "Sansita",
        +  "Sansita Swashed",
        +  "Sarabun",
        +  "Sarala",
        +  "Sarina",
        +  "Sarpanch",
        +  "Sassy Frass",
        +  "Satisfy",
        +  "Savate",
        +  "Sawarabi Gothic",
        +  "Sawarabi Mincho",
        +  "Scada",
        +  "Scheherazade New",
        +  "Schibsted Grotesk",
        +  "Schoolbell",
        +  "Science Gothic",
        +  "Scope One",
        +  "Seaweed Script",
        +  "Secular One",
        +  "Sedan",
        +  "Sedan SC",
        +  "Sedgwick Ave",
        +  "Sedgwick Ave Display",
        +  "Sekuya",
        +  "Sen",
        +  "Send Flowers",
        +  "Sevillana",
        +  "Seymour One",
        +  "Shadows Into Light",
        +  "Shadows Into Light Two",
        +  "Shafarik",
        +  "Shalimar",
        +  "Shantell Sans",
        +  "Shanti",
        +  "Share",
        +  "Share Tech",
        +  "Share Tech Mono",
        +  "Shippori Antique",
        +  "Shippori Antique B1",
        +  "Shippori Mincho",
        +  "Shippori Mincho B1",
        +  "Shizuru",
        +  "Shojumaru",
        +  "Short Stack",
        +  "Shrikhand",
        +  "Siemreap",
        +  "Sigmar",
        +  "Sigmar One",
        +  "Signika",
        +  "Signika Negative",
        +  "Silkscreen",
        +  "Simonetta",
        +  "Single Day",
        +  "Sintony",
        +  "Sirin Stencil",
        +  "Sirivennela",
        +  "Six Caps",
        +  "Sixtyfour",
        +  "Sixtyfour Convergence",
        +  "Skranji",
        +  "Slabo 13px",
        +  "Slabo 27px",
        +  "Slackey",
        +  "Slackside One",
        +  "Smokum",
        +  "Smooch",
        +  "Smooch Sans",
        +  "Smythe",
        +  "Sniglet",
        +  "Snippet",
        +  "Snowburst One",
        +  "Sofadi One",
        +  "Sofia",
        +  "Sofia Sans",
        +  "Sofia Sans Condensed",
        +  "Sofia Sans Extra Condensed",
        +  "Sofia Sans Semi Condensed",
        +  "Solitreo",
        +  "Solway",
        +  "Sometype Mono",
        +  "Song Myung",
        +  "Sono",
        +  "Sonsie One",
        +  "Sora",
        +  "Sorts Mill Goudy",
        +  "Sour Gummy",
        +  "Source Code Pro",
        +  "Source Sans 3",
        +  "Source Serif 4",
        +  "Space Grotesk",
        +  "Space Mono",
        +  "Special Elite",
        +  "Special Gothic",
        +  "Special Gothic Condensed One",
        +  "Special Gothic Expanded One",
        +  "Spectral",
        +  "Spectral SC",
        +  "Spicy Rice",
        +  "Spinnaker",
        +  "Spirax",
        +  "Splash",
        +  "Spline Sans",
        +  "Spline Sans Mono",
        +  "Squada One",
        +  "Square Peg",
        +  "Sree Krushnadevaraya",
        +  "Sriracha",
        +  "Srisakdi",
        +  "Staatliches",
        +  "Stack Sans Headline",
        +  "Stack Sans Notch",
        +  "Stack Sans Text",
        +  "Stalemate",
        +  "Stalinist One",
        +  "Stardos Stencil",
        +  "Stick",
        +  "Stick No Bills",
        +  "Stint Ultra Condensed",
        +  "Stint Ultra Expanded",
        +  "Stoke",
        +  "Story Script",
        +  "Strait",
        +  "Strichpunkt Sans",
        +  "Style Script",
        +  "Stylish",
        +  "Sue Ellen Francisco",
        +  "Suez One",
        +  "Sulphur Point",
        +  "Sumana",
        +  "Sunflower",
        +  "Sunshiney",
        +  "Supermercado One",
        +  "Sura",
        +  "Suranna",
        +  "Suravaram",
        +  "Suwannaphum",
        +  "Swanky and Moo Moo",
        +  "Syncopate",
        +  "Syne",
        +  "Syne Mono",
        +  "Syne Tactile",
        +  "TASA Explorer",
        +  "TASA Orbiter",
        +  "Tac One",
        +  "Tagesschrift",
        +  "Tai Heritage Pro",
        +  "Tajawal",
        +  "Tangerine",
        +  "Tapestry",
        +  "Taprom",
        +  "Tauri",
        +  "Taviraj",
        +  "Teachers",
        +  "Teko",
        +  "Tektur",
        +  "Telex",
        +  "Tenali Ramakrishna",
        +  "Tenor Sans",
        +  "Text Me One",
        +  "Texturina",
        +  "Thasadith",
        +  "The Girl Next Door",
        +  "The Nautigal",
        +  "Tienne",
        +  "TikTok Sans",
        +  "Tillana",
        +  "Tilt Neon",
        +  "Tilt Prism",
        +  "Tilt Warp",
        +  "Timmana",
        +  "Tinos",
        +  "Tiny5",
        +  "Tiro Bangla",
        +  "Tiro Devanagari Hindi",
        +  "Tiro Devanagari Marathi",
        +  "Tiro Devanagari Sanskrit",
        +  "Tiro Gurmukhi",
        +  "Tiro Kannada",
        +  "Tiro Tamil",
        +  "Tiro Telugu",
        +  "Tirra",
        +  "Titan One",
        +  "Titillium Web",
        +  "Tomorrow",
        +  "Tourney",
        +  "Trade Winds",
        +  "Train One",
        +  "Triodion",
        +  "Trirong",
        +  "Trispace",
        +  "Trocchi",
        +  "Trochut",
        +  "Truculenta",
        +  "Trykker",
        +  "Tsukimi Rounded",
        +  "Tuffy",
        +  "Tulpen One",
        +  "Turret Road",
        +  "Twinkle Star",
        +  "Ubuntu",
        +  "Ubuntu Condensed",
        +  "Ubuntu Mono",
        +  "Ubuntu Sans",
        +  "Ubuntu Sans Mono",
        +  "Uchen",
        +  "Ultra",
        +  "Unbounded",
        +  "Uncial Antiqua",
        +  "Underdog",
        +  "Unica One",
        +  "UnifrakturCook",
        +  "UnifrakturMaguntia",
        +  "Unkempt",
        +  "Unlock",
        +  "Unna",
        +  "UoqMunThenKhung",
        +  "Updock",
        +  "Urbanist",
        +  "VT323",
        +  "Vampiro One",
        +  "Varela",
        +  "Varela Round",
        +  "Varta",
        +  "Vast Shadow",
        +  "Vazirmatn",
        +  "Vend Sans",
        +  "Vesper Libre",
        +  "Viaoda Libre",
        +  "Vibes",
        +  "Vibur",
        +  "Victor Mono",
        +  "Vidaloka",
        +  "Viga",
        +  "Vina Sans",
        +  "Voces",
        +  "Volkhov",
        +  "Vollkorn",
        +  "Vollkorn SC",
        +  "Voltaire",
        +  "Vujahday Script",
        +  "WDXL Lubrifont JP N",
        +  "WDXL Lubrifont SC",
        +  "WDXL Lubrifont TC",
        +  "Waiting for the Sunrise",
        +  "Wallpoet",
        +  "Walter Turncoat",
        +  "Warnes",
        +  "Water Brush",
        +  "Waterfall",
        +  "Wavefont",
        +  "Wellfleet",
        +  "Wendy One",
        +  "Whisper",
        +  "WindSong",
        +  "Winky Rough",
        +  "Winky Sans",
        +  "Wire One",
        +  "Wittgenstein",
        +  "Wix Madefor Display",
        +  "Wix Madefor Text",
        +  "Work Sans",
        +  "Workbench",
        +  "Xanh Mono",
        +  "Yaldevi",
        +  "Yanone Kaffeesatz",
        +  "Yantramanav",
        +  "Yarndings 12",
        +  "Yarndings 12 Charted",
        +  "Yarndings 20",
        +  "Yarndings 20 Charted",
        +  "Yatra One",
        +  "Yellowtail",
        +  "Yeon Sung",
        +  "Yeseva One",
        +  "Yesteryear",
        +  "Yomogi",
        +  "Young Serif",
        +  "Yrsa",
        +  "Ysabeau",
        +  "Ysabeau Infant",
        +  "Ysabeau Office",
        +  "Ysabeau SC",
        +  "Yuji Boku",
        +  "Yuji Hentaigana Akari",
        +  "Yuji Hentaigana Akebono",
        +  "Yuji Mai",
        +  "Yuji Syuku",
        +  "Yusei Magic",
        +  "Yuyu",
        +  "Yuyu Short",
        +  "ZCOOL KuaiLe",
        +  "ZCOOL QingKe HuangYou",
        +  "ZCOOL XiaoWei",
        +  "Zain",
        +  "Zalando Sans",
        +  "Zalando Sans Expanded",
        +  "Zalando Sans SemiExpanded",
        +  "Zen Antique",
        +  "Zen Antique Soft",
        +  "Zen Dots",
        +  "Zen Kaku Gothic Antique",
        +  "Zen Kaku Gothic New",
        +  "Zen Kurenaido",
        +  "Zen Loop",
        +  "Zen Maru Gothic",
        +  "Zen Old Mincho",
        +  "Zen Tokyo Zoo",
        +  "Zeyada",
        +  "Zhi Mang Xing",
        +  "Zilla Slab",
        +  "Zilla Slab Highlight"
        +]
  2. 6 tool updates
    • Changedget_chart_config2 fields changed
      • changedOutput schema / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedget_examples2 fields changed
      • changedOutput schema / properties / examples / items / properties / config / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / examples / items / properties / config / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedrender_chart3 fields changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."New value: +"Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate."
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedsave_chart3 fields changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."New value: +"Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate."
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedupdate_chart3 fields changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."New value: +"Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate."
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / validation / properties / suggestedConfig / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
    • Changedvalidate_chart3 fields changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."New value: +"Complete chart config JSON. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Bar and area value axes stay linear and include zero. Explicit base-10 log scales require positive finite values and domains; use line or dot. Configure scales with top-level x/y; hide with display: false. Put shared data at chart level; use mark data for distinct rows. When rows share a bar position, map a series field to fill or stroke before setting group or aggregate."
      • changedOutput schema / properties / suggestedConfig / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / suggestedConfig / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "utc",
        -  "band"
        -]New value: +[
        +  "linear",
        +  "log",
        +  "utc",
        +  "band"
        +]
  3. 6 tool updates
    • Changedget_chart_config2 fields changed
      • removedOutput schema / $id
        Removed value: -"https://szum.io/schema.json"
      • changedOutput schema / description
        Previous value: -"Schema version 2026-03-20. Send this JSON to POST https://szum.io/chart to render a chart image."New value: +"Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image."
    • Changedget_examples6 fields changed
      • addedOutput schema / properties / examples / items / properties / config / additionalProperties
        Added value: +{}
      • addedOutput schema / properties / examples / items / properties / config / description
        Added value: +"Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image."
      • addedOutput schema / properties / examples / items / properties / config / properties
        Added value: +{
        +  "attribution": {
        +    "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +    "type": "boolean"
        +  },
        +  "color": {
        +    "anyOf": [
        +      {
        +        "additionalProperties": {},
        +        "properties": {
        +          "domain": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "label": {
        +            "type": "string"
        +          },
        +          "range": {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          },
        +          "type": {
        +            "const": "categorical",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": {},
        +        "properties": {
        +          "domain": {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          "label": {
        +            "type": "string"
        +          },
        +          "range": {
        +            "items": [
        +              {
        +                "type": "string"
        +              },
        +              {
        +                "type": "string"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          "type": {
        +            "const": "sequential",
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "type"
        +        ],
        +        "type": "object"
        +      },
        +      {
        +        "additionalProperties": false,
        +        "properties": {
        +          "label": {
        +            "type": "string"
        +          }
        +        },
        +        "type": "object"
        +      }
        +    ]
        +  },
        +  "data": {
        +    "items": {
        +      "additionalProperties": {
        +        "anyOf": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "number"
        +          }
        +        ]
        +      },
        +      "propertyNames": {
        +        "type": "string"
        +      },
        +      "type": "object"
        +    },
        +    "type": "array"
        +  },
        +  "footer": {
        +    "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +    "type": "string"
        +  },
        +  "format": {
        +    "enum": [
        +      "svg",
        +      "png"
        +    ],
        +    "type": "string"
        +  },
        +  "headerAlign": {
        +    "enum": [
        +      "left",
        +      "center",
        +      "right"
        +    ],
        +    "type": "string"
        +  },
        +  "height": {
        +    "maximum": 4096,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "locale": {
        +    "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +    "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +    "type": "string"
        +  },
        +  "margin": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "bottom": {
        +        "type": "number"
        +      },
        +      "left": {
        +        "type": "number"
        +      },
        +      "right": {
        +        "type": "number"
        +      },
        +      "top": {
        +        "type": "number"
        +      }
        +    },
        +    "type": "object"
        +  },
        +  "marks": {
        +    "items": {
        +      "oneOf": [
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "label": {
        +              "additionalProperties": {},
        +              "properties": {
        +                "field": {
        +                  "type": "string"
        +                },
        +                "format": {
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "field"
        +              ],
        +              "type": "object"
        +            },
        +            "r": {
        +              "type": "number"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "dot",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "end": {
        +                      "anyOf": [
        +                        {
        +                          "type": "boolean"
        +                        },
        +                        {
        +                          "items": {
        +                            "enum": [
        +                              "category",
        +                              "value"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "type": "array"
        +                        }
        +                      ],
        +                      "default": [
        +                        "category"
        +                      ]
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "points": {
        +                      "anyOf": [
        +                        {
        +                          "enum": [
        +                            "extrema",
        +                            "all",
        +                            "ends"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        {
        +                          "const": false,
        +                          "type": "boolean"
        +                        },
        +                        {
        +                          "additionalProperties": {},
        +                          "properties": {
        +                            "at": {
        +                              "enum": [
        +                                "extrema",
        +                                "all",
        +                                "ends"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "show": {
        +                              "default": [
        +                                "value"
        +                              ],
        +                              "items": {
        +                                "enum": [
        +                                  "value",
        +                                  "category"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              "type": "array"
        +                            }
        +                          },
        +                          "required": [
        +                            "at"
        +                          ],
        +                          "type": "object"
        +                        }
        +                      ],
        +                      "default": false
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "line",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "cornerRadius": {
        +              "type": "number"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "group": {
        +              "default": "stack",
        +              "enum": [
        +                "stack",
        +                "dodge"
        +              ],
        +              "type": "string"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "position": {
        +                      "default": "outside",
        +                      "enum": [
        +                        "auto",
        +                        "outside",
        +                        "inside"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "show": {
        +                      "default": [
        +                        "value"
        +                      ],
        +                      "items": {
        +                        "enum": [
        +                          "value",
        +                          "percent",
        +                          "category",
        +                          "total"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "barY",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "cornerRadius": {
        +              "type": "number"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "group": {
        +              "default": "stack",
        +              "enum": [
        +                "stack",
        +                "dodge"
        +              ],
        +              "type": "string"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "position": {
        +                      "default": "outside",
        +                      "enum": [
        +                        "auto",
        +                        "outside",
        +                        "inside"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "show": {
        +                      "default": [
        +                        "value"
        +                      ],
        +                      "items": {
        +                        "enum": [
        +                          "value",
        +                          "percent",
        +                          "category",
        +                          "total"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "barX",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "end": {
        +                      "anyOf": [
        +                        {
        +                          "type": "boolean"
        +                        },
        +                        {
        +                          "items": {
        +                            "enum": [
        +                              "category",
        +                              "value",
        +                              "percent"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "type": "array"
        +                        }
        +                      ],
        +                      "default": [
        +                        "category"
        +                      ]
        +                    },
        +                    "format": {
        +                      "type": "string"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 0,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "areaY",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 0,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "areaX",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "cornerRadius": {
        +              "type": "number"
        +            },
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "innerRadius": {
        +              "default": 0,
        +              "maximum": 1,
        +              "minimum": 0,
        +              "type": "number"
        +            },
        +            "label": {
        +              "anyOf": [
        +                {
        +                  "type": "boolean"
        +                },
        +                {
        +                  "additionalProperties": {},
        +                  "properties": {
        +                    "format": {
        +                      "type": "string"
        +                    },
        +                    "position": {
        +                      "default": "auto",
        +                      "enum": [
        +                        "auto",
        +                        "inside",
        +                        "outside"
        +                      ],
        +                      "type": "string"
        +                    },
        +                    "show": {
        +                      "default": [
        +                        "category",
        +                        "percent"
        +                      ],
        +                      "items": {
        +                        "enum": [
        +                          "value",
        +                          "percent",
        +                          "category"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "type": "array"
        +                    }
        +                  },
        +                  "type": "object"
        +                }
        +              ]
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "pie",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "dx": {
        +              "default": 0,
        +              "type": "number"
        +            },
        +            "dy": {
        +              "default": 0,
        +              "type": "number"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "fontSize": {
        +              "type": "number"
        +            },
        +            "fontWeight": {
        +              "type": "string"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "text": {
        +              "default": "text",
        +              "type": "string"
        +            },
        +            "textAnchor": {
        +              "default": "center",
        +              "enum": [
        +                "start",
        +                "center",
        +                "end"
        +              ],
        +              "type": "string"
        +            },
        +            "type": {
        +              "const": "text",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "ruleX",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "data": {
        +              "items": {
        +                "additionalProperties": {
        +                  "anyOf": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ]
        +                },
        +                "propertyNames": {
        +                  "type": "string"
        +                },
        +                "type": "object"
        +              },
        +              "type": "array"
        +            },
        +            "fill": {
        +              "type": "string"
        +            },
        +            "stroke": {
        +              "type": "string"
        +            },
        +            "strokeWidth": {
        +              "default": 1,
        +              "type": "number"
        +            },
        +            "type": {
        +              "const": "ruleY",
        +              "type": "string"
        +            },
        +            "x": {
        +              "default": "x",
        +              "type": "string"
        +            },
        +            "y": {
        +              "default": "y",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "minItems": 1,
        +    "type": "array"
        +  },
        +  "plotHeight": {
        +    "maximum": 4096,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "plotWidth": {
        +    "maximum": 4096,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "scale": {
        +    "maximum": 4,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "subtitle": {
        +    "type": "string"
        +  },
        +  "theme": {
        +    "default": "editorial",
        +    "enum": [
        +      "editorial",
        +      "clean",
        +      "noir",
        +      "loud",
        +      "soft",
        +      "technical"
        +    ],
        +    "type": "string"
        +  },
        +  "themeOverrides": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "axisColor": {
        +        "type": "string"
        +      },
        +      "axisFrame": {
        +        "enum": [
        +          "none",
        +          "baseline",
        +          "lShape",
        +          "full"
        +        ],
        +        "type": "string"
        +      },
        +      "axisLabelColor": {
        +        "type": "string"
        +      },
        +      "axisLabelFontWeight": {
        +        "type": "string"
        +      },
        +      "axisLineWidth": {
        +        "type": "number"
        +      },
        +      "backgroundColor": {
        +        "type": "string"
        +      },
        +      "barCornerRadius": {
        +        "type": "number"
        +      },
        +      "barPadding": {
        +        "type": "number"
        +      },
        +      "colors": {
        +        "items": {
        +          "type": "string"
        +        },
        +        "type": "array"
        +      },
        +      "curve": {
        +        "enum": [
        +          "linear",
        +          "monotone",
        +          "step"
        +        ],
        +        "type": "string"
        +      },
        +      "dotRadius": {
        +        "type": "number"
        +      },
        +      "fontFamily": {
        +        "enum": [
        +          "ABeeZee",
        +          "ADLaM Display",
        +          "AR One Sans",
        +          "Abel",
        +          "Abhaya Libre",
        +          "Aboreto",
        +          "Abril Fatface",
        +          "Abyssinica SIL",
        +          "Aclonica",
        +          "Acme",
        +          "Actor",
        +          "Adamina",
        +          "Advent Pro",
        +          "Afacad",
        +          "Afacad Flux",
        +          "Agbalumo",
        +          "Agdasima",
        +          "Agu Display",
        +          "Aguafina Script",
        +          "Akatab",
        +          "Akaya Kanadaka",
        +          "Akaya Telivigala",
        +          "Akronim",
        +          "Akshar",
        +          "Akt",
        +          "Aladin",
        +          "Alan Sans",
        +          "Alata",
        +          "Alatsi",
        +          "Albert Sans",
        +          "Aldrich",
        +          "Alef",
        +          "Alegreya",
        +          "Alegreya SC",
        +          "Alegreya Sans",
        +          "Alegreya Sans SC",
        +          "Aleo",
        +          "Alex Brush",
        +          "Alexandria",
        +          "Alfa Slab One",
        +          "Alice",
        +          "Alien Block",
        +          "Alike",
        +          "Alike Angular",
        +          "Alkalami",
        +          "Alkatra",
        +          "Allan",
        +          "Allerta",
        +          "Allerta Stencil",
        +          "Allison",
        +          "Allkin",
        +          "Allura",
        +          "Almarai",
        +          "Almendra",
        +          "Almendra Display",
        +          "Almendra SC",
        +          "Alumni Sans",
        +          "Alumni Sans Collegiate One",
        +          "Alumni Sans Inline One",
        +          "Alumni Sans Pinstripe",
        +          "Alumni Sans SC",
        +          "Alyamama",
        +          "Amarante",
        +          "Amaranth",
        +          "Amarna",
        +          "Amatic SC",
        +          "Amethysta",
        +          "Amiko",
        +          "Amiri",
        +          "Amiri Quran",
        +          "Amita",
        +          "Anaheim",
        +          "Ancizar Sans",
        +          "Ancizar Serif",
        +          "Andada Pro",
        +          "Andika",
        +          "Anek Bangla",
        +          "Anek Devanagari",
        +          "Anek Gujarati",
        +          "Anek Gurmukhi",
        +          "Anek Kannada",
        +          "Anek Latin",
        +          "Anek Malayalam",
        +          "Anek Odia",
        +          "Anek Tamil",
        +          "Anek Telugu",
        +          "Angkor",
        +          "Annapurna SIL",
        +          "Annie Use Your Telescope",
        +          "Anonymous Pro",
        +          "Anta",
        +          "Antic",
        +          "Antic Didone",
        +          "Antic Slab",
        +          "Anton",
        +          "Anton SC",
        +          "Antonio",
        +          "Anuphan",
        +          "Anybody",
        +          "Aoboshi One",
        +          "Arapey",
        +          "Arbutus",
        +          "Arbutus Slab",
        +          "Architects Daughter",
        +          "Archivo",
        +          "Archivo Black",
        +          "Archivo Narrow",
        +          "Are You Serious",
        +          "Aref Ruqaa",
        +          "Aref Ruqaa Ink",
        +          "Arima",
        +          "Arimo",
        +          "Arizonia",
        +          "Armata",
        +          "Arsenal",
        +          "Arsenal SC",
        +          "Artifika",
        +          "Arvo",
        +          "Arya",
        +          "Asap",
        +          "Asap Condensed",
        +          "Asar",
        +          "Asimovian",
        +          "Asset",
        +          "Assistant",
        +          "Asta Sans",
        +          "Astloch",
        +          "Asul",
        +          "Athiti",
        +          "Atkinson Hyperlegible",
        +          "Atkinson Hyperlegible Mono",
        +          "Atkinson Hyperlegible Next",
        +          "Atma",
        +          "Atomic Age",
        +          "Aubrey",
        +          "Audiowide",
        +          "Autour One",
        +          "Average",
        +          "Average Sans",
        +          "Averia Gruesa Libre",
        +          "Averia Libre",
        +          "Averia Sans Libre",
        +          "Averia Serif Libre",
        +          "Azeret Mono",
        +          "B612",
        +          "B612 Mono",
        +          "BBH Bartle",
        +          "BBH Bogle",
        +          "BBH Hegarty",
        +          "BIZ UDGothic",
        +          "BIZ UDMincho",
        +          "BIZ UDPGothic",
        +          "BIZ UDPMincho",
        +          "BJCree",
        +          "Babylonica",
        +          "Bacasime Antique",
        +          "Bad Script",
        +          "Badeen Display",
        +          "Bagel Fat One",
        +          "Bahiana",
        +          "Bahianita",
        +          "Bai Jamjuree",
        +          "Bakbak One",
        +          "Ballet",
        +          "Baloo 2",
        +          "Baloo Bhai 2",
        +          "Baloo Bhaijaan 2",
        +          "Baloo Bhaina 2",
        +          "Baloo Chettan 2",
        +          "Baloo Da 2",
        +          "Baloo Paaji 2",
        +          "Baloo Tamma 2",
        +          "Baloo Tammudu 2",
        +          "Baloo Thambi 2",
        +          "Balsamiq Sans",
        +          "Balthazar",
        +          "Bangers",
        +          "Barlow",
        +          "Barlow Condensed",
        +          "Barlow Semi Condensed",
        +          "Barriecito",
        +          "Barrio",
        +          "Basic",
        +          "Baskervville",
        +          "Baskervville SC",
        +          "Battambang",
        +          "Baumans",
        +          "Bayon",
        +          "Be Vietnam Pro",
        +          "Beau Rivage",
        +          "Bebas Neue",
        +          "Beiruti",
        +          "Belanosima",
        +          "Belgrano",
        +          "Bellefair",
        +          "Belleza",
        +          "Bellota",
        +          "Bellota Text",
        +          "BenchNine",
        +          "Benne",
        +          "Bentham",
        +          "Berkshire Swash",
        +          "Besley",
        +          "Betania Patmos",
        +          "Betania Patmos GDL",
        +          "Betania Patmos In",
        +          "Betania Patmos In GDL",
        +          "Beth Ellen",
        +          "Bevan",
        +          "BhuTuka Expanded One",
        +          "Big Shoulders",
        +          "Big Shoulders Inline",
        +          "Big Shoulders Stencil",
        +          "Bigelow Rules",
        +          "Bigshot One",
        +          "Bilbo",
        +          "Bilbo Swash Caps",
        +          "BioRhyme",
        +          "BioRhyme Expanded",
        +          "Birthstone",
        +          "Birthstone Bounce",
        +          "Biryani",
        +          "Bitcount",
        +          "Bitcount Grid Double",
        +          "Bitcount Grid Double Ink",
        +          "Bitcount Grid Single",
        +          "Bitcount Grid Single Ink",
        +          "Bitcount Ink",
        +          "Bitcount Prop Double",
        +          "Bitcount Prop Double Ink",
        +          "Bitcount Prop Single",
        +          "Bitcount Prop Single Ink",
        +          "Bitcount Single",
        +          "Bitcount Single Ink",
        +          "Bitter",
        +          "Black And White Picture",
        +          "Black Han Sans",
        +          "Black Ops One",
        +          "Blaka",
        +          "Blaka Hollow",
        +          "Blaka Ink",
        +          "Blinker",
        +          "Bodoni Moda",
        +          "Bodoni Moda SC",
        +          "Bokor",
        +          "Boldonse",
        +          "Bona Nova",
        +          "Bona Nova SC",
        +          "Bonbon",
        +          "Bonheur Royale",
        +          "Boogaloo",
        +          "Borel",
        +          "Bowlby One",
        +          "Bowlby One SC",
        +          "Bpmf Huninn",
        +          "Bpmf Iansui",
        +          "Bpmf Zihi Kai Std",
        +          "Braah One",
        +          "Brawler",
        +          "Bree Serif",
        +          "Bricolage Grotesque",
        +          "Bruno Ace",
        +          "Bruno Ace SC",
        +          "Brygada 1918",
        +          "Bubblegum Sans",
        +          "Bubbler One",
        +          "Buda",
        +          "Buenard",
        +          "Bungee",
        +          "Bungee Hairline",
        +          "Bungee Inline",
        +          "Bungee Outline",
        +          "Bungee Shade",
        +          "Bungee Spice",
        +          "Bungee Tint",
        +          "Butcherman",
        +          "Butterfly Kids",
        +          "Bytesized",
        +          "Cabin",
        +          "Cabin Condensed",
        +          "Cabin Sketch",
        +          "Cactus Classical Serif",
        +          "Caesar Dressing",
        +          "Cagliostro",
        +          "Cairo",
        +          "Cairo Play",
        +          "Cal Sans",
        +          "Caladea",
        +          "Calistoga",
        +          "Calligraffitti",
        +          "Cambay",
        +          "Cambo",
        +          "Candal",
        +          "Cantarell",
        +          "Cantata One",
        +          "Cantora One",
        +          "Caprasimo",
        +          "Capriola",
        +          "Caramel",
        +          "Carattere",
        +          "Cardo",
        +          "Carlito",
        +          "Carme",
        +          "Carrois Gothic",
        +          "Carrois Gothic SC",
        +          "Carter One",
        +          "Cascadia Code",
        +          "Cascadia Mono",
        +          "Castoro",
        +          "Castoro Titling",
        +          "Catamaran",
        +          "Caudex",
        +          "Cause",
        +          "Caveat",
        +          "Caveat Brush",
        +          "Cedarville Cursive",
        +          "Ceviche One",
        +          "Chakra Petch",
        +          "Changa",
        +          "Changa One",
        +          "Chango",
        +          "Charis SIL",
        +          "Charm",
        +          "Charmonman",
        +          "Chathura",
        +          "Chau Philomene One",
        +          "Chela One",
        +          "Chelsea Market",
        +          "Chenla",
        +          "Cherish",
        +          "Cherry Bomb One",
        +          "Cherry Cream Soda",
        +          "Cherry Swash",
        +          "Chewy",
        +          "Chicle",
        +          "Chilanka",
        +          "Chiron GoRound TC",
        +          "Chiron Hei HK",
        +          "Chiron Sung HK",
        +          "Chivo",
        +          "Chivo Mono",
        +          "Chocolate Classical Sans",
        +          "Chokokutai",
        +          "Chonburi",
        +          "Cinzel",
        +          "Cinzel Decorative",
        +          "Clicker Script",
        +          "Climate Crisis",
        +          "Coda",
        +          "Codystar",
        +          "Coiny",
        +          "Combo",
        +          "Comfortaa",
        +          "Comforter",
        +          "Comforter Brush",
        +          "Comic Neue",
        +          "Comic Relief",
        +          "Coming Soon",
        +          "Comme",
        +          "Commissioner",
        +          "Concert One",
        +          "Condiment",
        +          "Content",
        +          "Contrail One",
        +          "Convergence",
        +          "Cookie",
        +          "Copse",
        +          "Coral Pixels",
        +          "Corben",
        +          "Corinthia",
        +          "Cormorant",
        +          "Cormorant Garamond",
        +          "Cormorant Infant",
        +          "Cormorant SC",
        +          "Cormorant Unicase",
        +          "Cormorant Upright",
        +          "Cossette Texte",
        +          "Cossette Titre",
        +          "Courgette",
        +          "Courier Prime",
        +          "Cousine",
        +          "Coustard",
        +          "Covered By Your Grace",
        +          "Crafty Girls",
        +          "Creepster",
        +          "Crete Round",
        +          "Crimson Pro",
        +          "Crimson Text",
        +          "Croissant One",
        +          "Crushed",
        +          "Cuprum",
        +          "Cute Font",
        +          "Cutive",
        +          "Cutive Mono",
        +          "DM Mono",
        +          "DM Sans",
        +          "DM Serif Display",
        +          "DM Serif Text",
        +          "Dai Banna SIL",
        +          "Damion",
        +          "Dancing Script",
        +          "Danfo",
        +          "Dangrek",
        +          "Darker Grotesque",
        +          "Darumadrop One",
        +          "Datatype",
        +          "David Libre",
        +          "Dawning of a New Day",
        +          "Days One",
        +          "Dekko",
        +          "Dela Gothic One",
        +          "Delicious Handrawn",
        +          "Delius",
        +          "Delius Swash Caps",
        +          "Delius Unicase",
        +          "Della Respira",
        +          "Denk One",
        +          "Devonshire",
        +          "Dhurjati",
        +          "Didact Gothic",
        +          "Diphylleia",
        +          "Diplomata",
        +          "Diplomata SC",
        +          "Do Hyeon",
        +          "Dokdo",
        +          "Domine",
        +          "Donegal One",
        +          "Dongle",
        +          "Doppio One",
        +          "Dorsa",
        +          "Dosis",
        +          "DotGothic16",
        +          "Doto",
        +          "Dr Sugiyama",
        +          "Duru Sans",
        +          "DynaPuff",
        +          "Dynalight",
        +          "EB Garamond",
        +          "Eagle Lake",
        +          "East Sea Dokdo",
        +          "Eater",
        +          "Economica",
        +          "Eczar",
        +          "Edu AU VIC WA NT Arrows",
        +          "Edu AU VIC WA NT Dots",
        +          "Edu AU VIC WA NT Guides",
        +          "Edu AU VIC WA NT Hand",
        +          "Edu AU VIC WA NT Pre",
        +          "Edu NSW ACT Cursive",
        +          "Edu NSW ACT Foundation",
        +          "Edu NSW ACT Hand Pre",
        +          "Edu QLD Beginner",
        +          "Edu QLD Hand",
        +          "Edu SA Beginner",
        +          "Edu SA Hand",
        +          "Edu TAS Beginner",
        +          "Edu VIC WA NT Beginner",
        +          "Edu VIC WA NT Hand",
        +          "Edu VIC WA NT Hand Pre",
        +          "El Messiri",
        +          "Electrolize",
        +          "Elms Sans",
        +          "Elsie",
        +          "Elsie Swash Caps",
        +          "Emblema One",
        +          "Emilys Candy",
        +          "Encode Sans",
        +          "Encode Sans Condensed",
        +          "Encode Sans Expanded",
        +          "Encode Sans SC",
        +          "Encode Sans Semi Condensed",
        +          "Encode Sans Semi Expanded",
        +          "Engagement",
        +          "Englebert",
        +          "Enriqueta",
        +          "Ephesis",
        +          "Epilogue",
        +          "Epunda Sans",
        +          "Epunda Slab",
        +          "Erica One",
        +          "Esteban",
        +          "Estedad",
        +          "Estonia",
        +          "Euphoria Script",
        +          "Ewert",
        +          "Exile",
        +          "Exo",
        +          "Exo 2",
        +          "Expletus Sans",
        +          "Explora",
        +          "Faculty Glyphic",
        +          "Fahkwang",
        +          "Familjen Grotesk",
        +          "Fanwood Text",
        +          "Farro",
        +          "Farsan",
        +          "Fascinate",
        +          "Fascinate Inline",
        +          "Faster One",
        +          "Fasthand",
        +          "Fauna One",
        +          "Faustina",
        +          "Federant",
        +          "Federo",
        +          "Felipa",
        +          "Fenix",
        +          "Festive",
        +          "Figtree",
        +          "Finger Paint",
        +          "Finlandica Headline",
        +          "Finlandica Text",
        +          "Fira Code",
        +          "Fira Mono",
        +          "Fira Sans",
        +          "Fira Sans Condensed",
        +          "Fira Sans Extra Condensed",
        +          "Fjalla One",
        +          "Fjord One",
        +          "Flamenco",
        +          "Flavors",
        +          "Fleur De Leah",
        +          "Flow Block",
        +          "Flow Circular",
        +          "Flow Rounded",
        +          "Foldit",
        +          "Fondamento",
        +          "Fontdiner Swanky",
        +          "Forum",
        +          "Fragment Mono",
        +          "Francois One",
        +          "Frank Ruhl Libre",
        +          "Fraunces",
        +          "Freckle Face",
        +          "Fredericka the Great",
        +          "Fredoka",
        +          "Freehand",
        +          "Freeman",
        +          "Fresca",
        +          "Frijole",
        +          "Fruktur",
        +          "Fugaz One",
        +          "Fuggles",
        +          "Funnel Display",
        +          "Funnel Sans",
        +          "Fustat",
        +          "Fuzzy Bubbles",
        +          "GFS Didot",
        +          "GFS Neohellenic",
        +          "Ga Maamli",
        +          "Gabarito",
        +          "Gabriela",
        +          "Gaegu",
        +          "Gafata",
        +          "Gajraj One",
        +          "Galada",
        +          "Galdeano",
        +          "Galindo",
        +          "Gamja Flower",
        +          "Gantari",
        +          "Gasoek One",
        +          "Gayathri",
        +          "Geist",
        +          "Geist Mono",
        +          "Geist Pixel",
        +          "Gelasio",
        +          "Gemunu Libre",
        +          "Genos",
        +          "Gentium Book Plus",
        +          "Gentium Plus",
        +          "Geo",
        +          "Geologica",
        +          "Geom",
        +          "Geomini",
        +          "Georama",
        +          "Geostar",
        +          "Geostar Fill",
        +          "Germania One",
        +          "Gideon Roman",
        +          "Gidole",
        +          "Gidugu",
        +          "Gilda Display",
        +          "Girassol",
        +          "Give You Glory",
        +          "Glass Antiqua",
        +          "Glegoo",
        +          "Gloock",
        +          "Gloria Hallelujah",
        +          "Glory",
        +          "Gluten",
        +          "Goblin One",
        +          "Gochi Hand",
        +          "Goldman",
        +          "Golos Text",
        +          "Google Sans",
        +          "Google Sans Code",
        +          "Google Sans Flex",
        +          "Gorditas",
        +          "Gothic A1",
        +          "Gotu",
        +          "Goudy Bookletter 1911",
        +          "Gowun Batang",
        +          "Gowun Dodum",
        +          "Graduate",
        +          "Grand Hotel",
        +          "Grandiflora One",
        +          "Grandstander",
        +          "Grape Nuts",
        +          "Gravitas One",
        +          "Great Vibes",
        +          "Grechen Fuemen",
        +          "Grenze",
        +          "Grenze Gotisch",
        +          "Grey Qo",
        +          "Griffy",
        +          "Gruppo",
        +          "Gudea",
        +          "Gugi",
        +          "Gulzar",
        +          "Gupter",
        +          "Gurajada",
        +          "Gveret Levin",
        +          "Gwendolyn",
        +          "Habibi",
        +          "Hachi Maru Pop",
        +          "Hahmlet",
        +          "Halant",
        +          "Hammersmith One",
        +          "Hanalei",
        +          "Hanalei Fill",
        +          "Handjet",
        +          "Handlee",
        +          "Hanken Grotesk",
        +          "Hanuman",
        +          "Happy Monkey",
        +          "Harmattan",
        +          "Headland One",
        +          "Hedvig Letters Sans",
        +          "Hedvig Letters Serif",
        +          "Heebo",
        +          "Henny Penny",
        +          "Hepta Slab",
        +          "Herr Von Muellerhoff",
        +          "Hi Melody",
        +          "Hibur Mono",
        +          "Hina Mincho",
        +          "Hind",
        +          "Hind Guntur",
        +          "Hind Madurai",
        +          "Hind Mysuru",
        +          "Hind Siliguri",
        +          "Hind Vadodara",
        +          "Holtwood One SC",
        +          "Homemade Apple",
        +          "Homenaje",
        +          "Honk",
        +          "Host Grotesk",
        +          "Hubballi",
        +          "Hubot Sans",
        +          "Huninn",
        +          "Hurricane",
        +          "IBM Plex Mono",
        +          "IBM Plex Sans",
        +          "IBM Plex Sans Arabic",
        +          "IBM Plex Sans Condensed",
        +          "IBM Plex Sans Devanagari",
        +          "IBM Plex Sans Hebrew",
        +          "IBM Plex Sans JP",
        +          "IBM Plex Sans KR",
        +          "IBM Plex Sans Thai",
        +          "IBM Plex Sans Thai Looped",
        +          "IBM Plex Serif",
        +          "IM Fell DW Pica",
        +          "IM Fell DW Pica SC",
        +          "IM Fell Double Pica",
        +          "IM Fell Double Pica SC",
        +          "IM Fell English",
        +          "IM Fell English SC",
        +          "IM Fell French Canon",
        +          "IM Fell French Canon SC",
        +          "IM Fell Great Primer",
        +          "IM Fell Great Primer SC",
        +          "Iansui",
        +          "Ibarra Real Nova",
        +          "Iceberg",
        +          "Iceland",
        +          "Idiqlat",
        +          "Imbue",
        +          "Imperial Script",
        +          "Imprima",
        +          "Inclusive Sans",
        +          "Inconsolata",
        +          "Inder",
        +          "Indie Flower",
        +          "Ingrid Darling",
        +          "Inika",
        +          "Inknut Antiqua",
        +          "Inria Sans",
        +          "Inria Serif",
        +          "Inspiration",
        +          "Instrument Sans",
        +          "Instrument Serif",
        +          "Intel One Mono",
        +          "Inter",
        +          "Inter Tight",
        +          "Iosevka Charon",
        +          "Iosevka Charon Mono",
        +          "Irish Grover",
        +          "Island Moments",
        +          "Istok Web",
        +          "Italiana",
        +          "Italianno",
        +          "Itim",
        +          "Jacquard 12",
        +          "Jacquard 12 Charted",
        +          "Jacquard 24",
        +          "Jacquard 24 Charted",
        +          "Jacquarda Bastarda 9",
        +          "Jacquarda Bastarda 9 Charted",
        +          "Jacques Francois",
        +          "Jacques Francois Shadow",
        +          "Jaini",
        +          "Jaini Purva",
        +          "Jaldi",
        +          "Jaro",
        +          "Jersey 10",
        +          "Jersey 10 Charted",
        +          "Jersey 15",
        +          "Jersey 15 Charted",
        +          "Jersey 20",
        +          "Jersey 20 Charted",
        +          "Jersey 25",
        +          "Jersey 25 Charted",
        +          "JetBrains Mono",
        +          "Jim Nightshade",
        +          "Joan",
        +          "Jockey One",
        +          "Jolly Lodger",
        +          "Jomhuria",
        +          "Jomolhari",
        +          "Josefin Sans",
        +          "Josefin Slab",
        +          "Jost",
        +          "Joti One",
        +          "Jua",
        +          "Judson",
        +          "Julee",
        +          "Julius Sans One",
        +          "Junge",
        +          "Jura",
        +          "Just Another Hand",
        +          "Just Me Again Down Here",
        +          "K2D",
        +          "Kablammo",
        +          "Kadwa",
        +          "Kaisei Decol",
        +          "Kaisei HarunoUmi",
        +          "Kaisei Opti",
        +          "Kaisei Tokumin",
        +          "Kalam",
        +          "Kalnia",
        +          "Kalnia Glaze",
        +          "Kameron",
        +          "Kanchenjunga",
        +          "Kanit",
        +          "Kantumruy Pro",
        +          "Kapakana",
        +          "Karantina",
        +          "Karla",
        +          "Karla Tamil Inclined",
        +          "Karla Tamil Upright",
        +          "Karma",
        +          "Katibeh",
        +          "Kaushan Script",
        +          "Kavivanar",
        +          "Kavoon",
        +          "Kay Pho Du",
        +          "Kdam Thmor Pro",
        +          "Keania One",
        +          "Kedebideri",
        +          "Kelly Slab",
        +          "Kenia",
        +          "Khand",
        +          "Khmer",
        +          "Khula",
        +          "Kings",
        +          "Kirang Haerang",
        +          "Kite One",
        +          "Kiwi Maru",
        +          "Klee One",
        +          "Knewave",
        +          "KoHo",
        +          "Kodchasan",
        +          "Kode Mono",
        +          "Koh Santepheap",
        +          "Kolker Brush",
        +          "Konkhmer Sleokchher",
        +          "Kosugi",
        +          "Kosugi Maru",
        +          "Kotta One",
        +          "Koulen",
        +          "Kranky",
        +          "Kreon",
        +          "Kristi",
        +          "Krona One",
        +          "Krub",
        +          "Kufam",
        +          "Kulim Park",
        +          "Kumar One",
        +          "Kumar One Outline",
        +          "Kumbh Sans",
        +          "Kurale",
        +          "LINE Seed JP",
        +          "LXGW Marker Gothic",
        +          "LXGW WenKai Mono TC",
        +          "LXGW WenKai TC",
        +          "La Belle Aurore",
        +          "Labrada",
        +          "Lacquer",
        +          "Laila",
        +          "Lakki Reddy",
        +          "Lalezar",
        +          "Lancelot",
        +          "Langar",
        +          "Lateef",
        +          "Lato",
        +          "Lavishly Yours",
        +          "League Gothic",
        +          "League Script",
        +          "League Spartan",
        +          "Leckerli One",
        +          "Ledger",
        +          "Lekton",
        +          "Lemon",
        +          "Lemonada",
        +          "Lexend",
        +          "Lexend Deca",
        +          "Lexend Exa",
        +          "Lexend Giga",
        +          "Lexend Mega",
        +          "Lexend Peta",
        +          "Lexend Tera",
        +          "Lexend Zetta",
        +          "Libertinus Keyboard",
        +          "Libertinus Math",
        +          "Libertinus Mono",
        +          "Libertinus Sans",
        +          "Libertinus Serif",
        +          "Libertinus Serif Display",
        +          "Libre Barcode 128",
        +          "Libre Barcode 128 Text",
        +          "Libre Barcode 39",
        +          "Libre Barcode 39 Extended",
        +          "Libre Barcode 39 Extended Text",
        +          "Libre Barcode 39 Text",
        +          "Libre Barcode EAN13 Text",
        +          "Libre Baskerville",
        +          "Libre Bodoni",
        +          "Libre Caslon Display",
        +          "Libre Caslon Text",
        +          "Libre Franklin",
        +          "Licorice",
        +          "Life Savers",
        +          "Lilex",
        +          "Lilita One",
        +          "Lily Script One",
        +          "Limelight",
        +          "Linden Hill",
        +          "Linefont",
        +          "Lisu Bosa",
        +          "Liter",
        +          "Literata",
        +          "Liu Jian Mao Cao",
        +          "Livvic",
        +          "Lobster",
        +          "Lobster Two",
        +          "Londrina Outline",
        +          "Londrina Shadow",
        +          "Londrina Sketch",
        +          "Londrina Solid",
        +          "Long Cang",
        +          "Lora",
        +          "Love Light",
        +          "Love Ya Like A Sister",
        +          "Loved by the King",
        +          "Lovers Quarrel",
        +          "Luckiest Guy",
        +          "Lugrasimo",
        +          "Lumanosimo",
        +          "Lunasima",
        +          "Lusitana",
        +          "Lustria",
        +          "Luxurious Roman",
        +          "Luxurious Script",
        +          "M PLUS 1",
        +          "M PLUS 1 Code",
        +          "M PLUS 1p",
        +          "M PLUS 2",
        +          "M PLUS Code Latin",
        +          "M PLUS Rounded 1c",
        +          "M PLUS U",
        +          "Ma Shan Zheng",
        +          "Macondo",
        +          "Macondo Swash Caps",
        +          "Mada",
        +          "Madimi One",
        +          "Magra",
        +          "Maiden Orange",
        +          "Maitree",
        +          "Major Mono Display",
        +          "Mako",
        +          "Mali",
        +          "Mallanna",
        +          "Maname",
        +          "Mandali",
        +          "Manjari",
        +          "Manrope",
        +          "Mansalva",
        +          "Manuale",
        +          "Manufacturing Consent",
        +          "Marcellus",
        +          "Marcellus SC",
        +          "Marck Script",
        +          "Margarine",
        +          "Marhey",
        +          "Markazi Text",
        +          "Marko One",
        +          "Marmelad",
        +          "Martel",
        +          "Martel Sans",
        +          "Martian Mono",
        +          "Marvel",
        +          "Matangi",
        +          "Mate",
        +          "Mate SC",
        +          "Matemasie",
        +          "Material Icons",
        +          "Material Icons Outlined",
        +          "Material Icons Round",
        +          "Material Icons Sharp",
        +          "Material Icons Two Tone",
        +          "Material Symbols",
        +          "Material Symbols Outlined",
        +          "Material Symbols Rounded",
        +          "Material Symbols Sharp",
        +          "Maven Pro",
        +          "McLaren",
        +          "Mea Culpa",
        +          "Meddon",
        +          "MedievalSharp",
        +          "Medula One",
        +          "Meera Inimai",
        +          "Megrim",
        +          "Meie Script",
        +          "Menbere",
        +          "Meow Script",
        +          "Merienda",
        +          "Merriweather",
        +          "Merriweather Sans",
        +          "Metal",
        +          "Metal Mania",
        +          "Metamorphous",
        +          "Metrophobic",
        +          "Michroma",
        +          "Micro 5",
        +          "Micro 5 Charted",
        +          "Milonga",
        +          "Miltonian",
        +          "Miltonian Tattoo",
        +          "Mina",
        +          "Mingzat",
        +          "Miniver",
        +          "Miranda Sans",
        +          "Miriam Libre",
        +          "Mirza",
        +          "Miss Fajardose",
        +          "Mitr",
        +          "Mochiy Pop One",
        +          "Mochiy Pop P One",
        +          "Modak",
        +          "Modern Antiqua",
        +          "Moderustic",
        +          "Mogra",
        +          "Mohave",
        +          "Moirai One",
        +          "Molengo",
        +          "Molle",
        +          "Momo Signature",
        +          "Momo Trust Display",
        +          "Momo Trust Sans",
        +          "Mona Sans",
        +          "Monda",
        +          "Monofett",
        +          "Monomakh",
        +          "Monomaniac One",
        +          "Monoton",
        +          "Monsieur La Doulaise",
        +          "Montaga",
        +          "Montagu Slab",
        +          "MonteCarlo",
        +          "Montenegrin Gothic One",
        +          "Montez",
        +          "Montserrat",
        +          "Montserrat Alternates",
        +          "Montserrat Underline",
        +          "Moo Lah Lah",
        +          "Mooli",
        +          "Moon Dance",
        +          "Moul",
        +          "Moulpali",
        +          "Mountains of Christmas",
        +          "Mouse Memoirs",
        +          "Mozilla Headline",
        +          "Mozilla Text",
        +          "Mr Bedfort",
        +          "Mr Dafoe",
        +          "Mr De Haviland",
        +          "Mrs Saint Delafield",
        +          "Mrs Sheppards",
        +          "Ms Madi",
        +          "Mukta",
        +          "Mukta Mahee",
        +          "Mukta Malar",
        +          "Mukta Vaani",
        +          "Mulish",
        +          "Murecho",
        +          "MuseoModerno",
        +          "My Soul",
        +          "Mynerve",
        +          "Mystery Quest",
        +          "NTR",
        +          "Nabla",
        +          "Namdhinggo",
        +          "Nanum Brush Script",
        +          "Nanum Gothic",
        +          "Nanum Gothic Coding",
        +          "Nanum Myeongjo",
        +          "Nanum Pen Script",
        +          "Narnoor",
        +          "Nata Sans",
        +          "National Park",
        +          "Neonderthaw",
        +          "Nerko One",
        +          "Neucha",
        +          "Neuton",
        +          "New Amsterdam",
        +          "New Rocker",
        +          "New Tegomin",
        +          "News Cycle",
        +          "Newsreader",
        +          "Niconne",
        +          "Niramit",
        +          "Nixie One",
        +          "Nobile",
        +          "Nokora",
        +          "Norican",
        +          "Nosifer",
        +          "Notable",
        +          "Nothing You Could Do",
        +          "Noticia Text",
        +          "Noto Color Emoji",
        +          "Noto Emoji",
        +          "Noto Kufi Arabic",
        +          "Noto Music",
        +          "Noto Naskh Arabic",
        +          "Noto Nastaliq Urdu",
        +          "Noto Rashi Hebrew",
        +          "Noto Sans",
        +          "Noto Sans Adlam",
        +          "Noto Sans Adlam Unjoined",
        +          "Noto Sans Anatolian Hieroglyphs",
        +          "Noto Sans Arabic",
        +          "Noto Sans Armenian",
        +          "Noto Sans Avestan",
        +          "Noto Sans Balinese",
        +          "Noto Sans Bamum",
        +          "Noto Sans Bassa Vah",
        +          "Noto Sans Batak",
        +          "Noto Sans Bengali",
        +          "Noto Sans Bhaiksuki",
        +          "Noto Sans Brahmi",
        +          "Noto Sans Buginese",
        +          "Noto Sans Buhid",
        +          "Noto Sans Canadian Aboriginal",
        +          "Noto Sans Carian",
        +          "Noto Sans Caucasian Albanian",
        +          "Noto Sans Chakma",
        +          "Noto Sans Cham",
        +          "Noto Sans Cherokee",
        +          "Noto Sans Chorasmian",
        +          "Noto Sans Coptic",
        +          "Noto Sans Cuneiform",
        +          "Noto Sans Cypriot",
        +          "Noto Sans Cypro Minoan",
        +          "Noto Sans Deseret",
        +          "Noto Sans Devanagari",
        +          "Noto Sans Display",
        +          "Noto Sans Duployan",
        +          "Noto Sans Egyptian Hieroglyphs",
        +          "Noto Sans Elbasan",
        +          "Noto Sans Elymaic",
        +          "Noto Sans Ethiopic",
        +          "Noto Sans Georgian",
        +          "Noto Sans Glagolitic",
        +          "Noto Sans Gothic",
        +          "Noto Sans Grantha",
        +          "Noto Sans Gujarati",
        +          "Noto Sans Gunjala Gondi",
        +          "Noto Sans Gurmukhi",
        +          "Noto Sans HK",
        +          "Noto Sans Hanifi Rohingya",
        +          "Noto Sans Hanunoo",
        +          "Noto Sans Hatran",
        +          "Noto Sans Hebrew",
        +          "Noto Sans Imperial Aramaic",
        +          "Noto Sans Indic Siyaq Numbers",
        +          "Noto Sans Inscriptional Pahlavi",
        +          "Noto Sans Inscriptional Parthian",
        +          "Noto Sans JP",
        +          "Noto Sans Javanese",
        +          "Noto Sans KR",
        +          "Noto Sans Kaithi",
        +          "Noto Sans Kannada",
        +          "Noto Sans Kawi",
        +          "Noto Sans Kayah Li",
        +          "Noto Sans Kharoshthi",
        +          "Noto Sans Khmer",
        +          "Noto Sans Khojki",
        +          "Noto Sans Khudawadi",
        +          "Noto Sans Lao",
        +          "Noto Sans Lao Looped",
        +          "Noto Sans Lepcha",
        +          "Noto Sans Limbu",
        +          "Noto Sans Linear A",
        +          "Noto Sans Linear B",
        +          "Noto Sans Lisu",
        +          "Noto Sans Lycian",
        +          "Noto Sans Lydian",
        +          "Noto Sans Mahajani",
        +          "Noto Sans Malayalam",
        +          "Noto Sans Mandaic",
        +          "Noto Sans Manichaean",
        +          "Noto Sans Marchen",
        +          "Noto Sans Masaram Gondi",
        +          "Noto Sans Math",
        +          "Noto Sans Mayan Numerals",
        +          "Noto Sans Medefaidrin",
        +          "Noto Sans Meetei Mayek",
        +          "Noto Sans Mende Kikakui",
        +          "Noto Sans Meroitic",
        +          "Noto Sans Miao",
        +          "Noto Sans Modi",
        +          "Noto Sans Mongolian",
        +          "Noto Sans Mono",
        +          "Noto Sans Mro",
        +          "Noto Sans Multani",
        +          "Noto Sans Myanmar",
        +          "Noto Sans NKo",
        +          "Noto Sans NKo Unjoined",
        +          "Noto Sans Nabataean",
        +          "Noto Sans Nag Mundari",
        +          "Noto Sans Nandinagari",
        +          "Noto Sans New Tai Lue",
        +          "Noto Sans Newa",
        +          "Noto Sans Nushu",
        +          "Noto Sans Ogham",
        +          "Noto Sans Ol Chiki",
        +          "Noto Sans Old Hungarian",
        +          "Noto Sans Old Italic",
        +          "Noto Sans Old North Arabian",
        +          "Noto Sans Old Permic",
        +          "Noto Sans Old Persian",
        +          "Noto Sans Old Sogdian",
        +          "Noto Sans Old South Arabian",
        +          "Noto Sans Old Turkic",
        +          "Noto Sans Oriya",
        +          "Noto Sans Osage",
        +          "Noto Sans Osmanya",
        +          "Noto Sans Pahawh Hmong",
        +          "Noto Sans Palmyrene",
        +          "Noto Sans Pau Cin Hau",
        +          "Noto Sans PhagsPa",
        +          "Noto Sans Phoenician",
        +          "Noto Sans Psalter Pahlavi",
        +          "Noto Sans Rejang",
        +          "Noto Sans Runic",
        +          "Noto Sans SC",
        +          "Noto Sans Samaritan",
        +          "Noto Sans Saurashtra",
        +          "Noto Sans Sharada",
        +          "Noto Sans Shavian",
        +          "Noto Sans Siddham",
        +          "Noto Sans SignWriting",
        +          "Noto Sans Sinhala",
        +          "Noto Sans Sogdian",
        +          "Noto Sans Sora Sompeng",
        +          "Noto Sans Soyombo",
        +          "Noto Sans Sundanese",
        +          "Noto Sans Sunuwar",
        +          "Noto Sans Syloti Nagri",
        +          "Noto Sans Symbols",
        +          "Noto Sans Symbols 2",
        +          "Noto Sans Syriac",
        +          "Noto Sans Syriac Eastern",
        +          "Noto Sans Syriac Western",
        +          "Noto Sans TC",
        +          "Noto Sans Tagalog",
        +          "Noto Sans Tagbanwa",
        +          "Noto Sans Tai Le",
        +          "Noto Sans Tai Tham",
        +          "Noto Sans Tai Viet",
        +          "Noto Sans Takri",
        +          "Noto Sans Tamil",
        +          "Noto Sans Tamil Supplement",
        +          "Noto Sans Tangsa",
        +          "Noto Sans Telugu",
        +          "Noto Sans Thaana",
        +          "Noto Sans Thai",
        +          "Noto Sans Thai Looped",
        +          "Noto Sans Tifinagh",
        +          "Noto Sans Tirhuta",
        +          "Noto Sans Ugaritic",
        +          "Noto Sans Vai",
        +          "Noto Sans Vithkuqi",
        +          "Noto Sans Wancho",
        +          "Noto Sans Warang Citi",
        +          "Noto Sans Yi",
        +          "Noto Sans Zanabazar Square",
        +          "Noto Serif",
        +          "Noto Serif Ahom",
        +          "Noto Serif Armenian",
        +          "Noto Serif Balinese",
        +          "Noto Serif Bengali",
        +          "Noto Serif Devanagari",
        +          "Noto Serif Display",
        +          "Noto Serif Dives Akuru",
        +          "Noto Serif Dogra",
        +          "Noto Serif Ethiopic",
        +          "Noto Serif Georgian",
        +          "Noto Serif Grantha",
        +          "Noto Serif Gujarati",
        +          "Noto Serif Gurmukhi",
        +          "Noto Serif HK",
        +          "Noto Serif Hebrew",
        +          "Noto Serif Hentaigana",
        +          "Noto Serif JP",
        +          "Noto Serif KR",
        +          "Noto Serif Kannada",
        +          "Noto Serif Khitan Small Script",
        +          "Noto Serif Khmer",
        +          "Noto Serif Khojki",
        +          "Noto Serif Lao",
        +          "Noto Serif Makasar",
        +          "Noto Serif Malayalam",
        +          "Noto Serif Myanmar",
        +          "Noto Serif NP Hmong",
        +          "Noto Serif Old Uyghur",
        +          "Noto Serif Oriya",
        +          "Noto Serif Ottoman Siyaq",
        +          "Noto Serif SC",
        +          "Noto Serif Sinhala",
        +          "Noto Serif TC",
        +          "Noto Serif Tamil",
        +          "Noto Serif Tangut",
        +          "Noto Serif Telugu",
        +          "Noto Serif Thai",
        +          "Noto Serif Tibetan",
        +          "Noto Serif Todhri",
        +          "Noto Serif Toto",
        +          "Noto Serif Vithkuqi",
        +          "Noto Serif Yezidi",
        +          "Noto Traditional Nushu",
        +          "Noto Znamenny Musical Notation",
        +          "Nova Cut",
        +          "Nova Flat",
        +          "Nova Mono",
        +          "Nova Oval",
        +          "Nova Round",
        +          "Nova Script",
        +          "Nova Slim",
        +          "Nova Square",
        +          "Numans",
        +          "Nunito",
        +          "Nunito Sans",
        +          "Nuosu SIL",
        +          "Odibee Sans",
        +          "Odor Mean Chey",
        +          "Offside",
        +          "Oi",
        +          "Ojuju",
        +          "Old Standard TT",
        +          "Oldenburg",
        +          "Ole",
        +          "Oleo Script",
        +          "Oleo Script Swash Caps",
        +          "Onest",
        +          "Oooh Baby",
        +          "Open Sans",
        +          "Oranienbaum",
        +          "Orbit",
        +          "Orbitron",
        +          "Oregano",
        +          "Orelega One",
        +          "Orienta",
        +          "Original Surfer",
        +          "Oswald",
        +          "Outfit",
        +          "Over the Rainbow",
        +          "Overlock",
        +          "Overlock SC",
        +          "Overpass",
        +          "Overpass Mono",
        +          "Ovo",
        +          "Oxanium",
        +          "Oxygen",
        +          "Oxygen Mono",
        +          "PT Mono",
        +          "PT Sans",
        +          "PT Sans Caption",
        +          "PT Sans Narrow",
        +          "PT Serif",
        +          "PT Serif Caption",
        +          "Pacifico",
        +          "Padauk",
        +          "Padyakke Expanded One",
        +          "Palanquin",
        +          "Palanquin Dark",
        +          "Palette Mosaic",
        +          "Pangolin",
        +          "Paprika",
        +          "Parastoo",
        +          "Parisienne",
        +          "Parkinsans",
        +          "Passero One",
        +          "Passion One",
        +          "Passions Conflict",
        +          "Pathway Extreme",
        +          "Pathway Gothic One",
        +          "Patrick Hand",
        +          "Patrick Hand SC",
        +          "Pattaya",
        +          "Patua One",
        +          "Pavanam",
        +          "Paytone One",
        +          "Peddana",
        +          "Peralta",
        +          "Permanent Marker",
        +          "Petemoss",
        +          "Petit Formal Script",
        +          "Petrona",
        +          "Phetsarath",
        +          "Philosopher",
        +          "Phudu",
        +          "Piazzolla",
        +          "Piedra",
        +          "Pinyon Script",
        +          "Pirata One",
        +          "Pixelify Sans",
        +          "Plaster",
        +          "Platypi",
        +          "Play",
        +          "Playball",
        +          "Playfair",
        +          "Playfair Display",
        +          "Playfair Display SC",
        +          "Playpen Sans",
        +          "Playpen Sans Arabic",
        +          "Playpen Sans Deva",
        +          "Playpen Sans Hebrew",
        +          "Playpen Sans Thai",
        +          "Playwrite AR",
        +          "Playwrite AR Guides",
        +          "Playwrite AT",
        +          "Playwrite AT Guides",
        +          "Playwrite AU NSW",
        +          "Playwrite AU NSW Guides",
        +          "Playwrite AU QLD",
        +          "Playwrite AU QLD Guides",
        +          "Playwrite AU SA",
        +          "Playwrite AU SA Guides",
        +          "Playwrite AU TAS",
        +          "Playwrite AU TAS Guides",
        +          "Playwrite AU VIC",
        +          "Playwrite AU VIC Guides",
        +          "Playwrite BE VLG",
        +          "Playwrite BE VLG Guides",
        +          "Playwrite BE WAL",
        +          "Playwrite BE WAL Guides",
        +          "Playwrite BR",
        +          "Playwrite BR Guides",
        +          "Playwrite CA",
        +          "Playwrite CA Guides",
        +          "Playwrite CL",
        +          "Playwrite CL Guides",
        +          "Playwrite CO",
        +          "Playwrite CO Guides",
        +          "Playwrite CU",
        +          "Playwrite CU Guides",
        +          "Playwrite CZ",
        +          "Playwrite CZ Guides",
        +          "Playwrite DE Grund",
        +          "Playwrite DE Grund Guides",
        +          "Playwrite DE LA",
        +          "Playwrite DE LA Guides",
        +          "Playwrite DE SAS",
        +          "Playwrite DE SAS Guides",
        +          "Playwrite DE VA",
        +          "Playwrite DE VA Guides",
        +          "Playwrite DK Loopet",
        +          "Playwrite DK Loopet Guides",
        +          "Playwrite DK Uloopet",
        +          "Playwrite DK Uloopet Guides",
        +          "Playwrite ES",
        +          "Playwrite ES Deco",
        +          "Playwrite ES Deco Guides",
        +          "Playwrite ES Guides",
        +          "Playwrite FR Moderne",
        +          "Playwrite FR Moderne Guides",
        +          "Playwrite FR Trad",
        +          "Playwrite FR Trad Guides",
        +          "Playwrite GB J",
        +          "Playwrite GB J Guides",
        +          "Playwrite GB S",
        +          "Playwrite GB S Guides",
        +          "Playwrite HR",
        +          "Playwrite HR Guides",
        +          "Playwrite HR Lijeva",
        +          "Playwrite HR Lijeva Guides",
        +          "Playwrite HU",
        +          "Playwrite HU Guides",
        +          "Playwrite ID",
        +          "Playwrite ID Guides",
        +          "Playwrite IE",
        +          "Playwrite IE Guides",
        +          "Playwrite IN",
        +          "Playwrite IN Guides",
        +          "Playwrite IS",
        +          "Playwrite IS Guides",
        +          "Playwrite IT Moderna",
        +          "Playwrite IT Moderna Guides",
        +          "Playwrite IT Trad",
        +          "Playwrite IT Trad Guides",
        +          "Playwrite MX",
        +          "Playwrite MX Guides",
        +          "Playwrite NG Modern",
        +          "Playwrite NG Modern Guides",
        +          "Playwrite NL",
        +          "Playwrite NL Guides",
        +          "Playwrite NO",
        +          "Playwrite NO Guides",
        +          "Playwrite NZ",
        +          "Playwrite NZ Basic",
        +          "Playwrite NZ Basic Guides",
        +          "Playwrite NZ Guides",
        +          "Playwrite PE",
        +          "Playwrite PE Guides",
        +          "Playwrite PL",
        +          "Playwrite PL Guides",
        +          "Playwrite PT",
        +          "Playwrite PT Guides",
        +          "Playwrite RO",
        +          "Playwrite RO Guides",
        +          "Playwrite SK",
        +          "Playwrite SK Guides",
        +          "Playwrite TZ",
        +          "Playwrite TZ Guides",
        +          "Playwrite US Modern",
        +          "Playwrite US Modern Guides",
        +          "Playwrite US Trad",
        +          "Playwrite US Trad Guides",
        +          "Playwrite VN",
        +          "Playwrite VN Guides",
        +          "Playwrite ZA",
        +          "Playwrite ZA Guides",
        +          "Pliant",
        +          "Plus Jakarta Sans",
        +          "Pochaevsk",
        +          "Podkova",
        +          "Poetsen One",
        +          "Poiret One",
        +          "Poller One",
        +          "Poltawski Nowy",
        +          "Poly",
        +          "Pompiere",
        +          "Ponnala",
        +          "Ponomar",
        +          "Pontano Sans",
        +          "Poor Story",
        +          "Poppins",
        +          "Port Lligat Sans",
        +          "Port Lligat Slab",
        +          "Potta One",
        +          "Pragati Narrow",
        +          "Praise",
        +          "Prata",
        +          "Preahvihear",
        +          "Press Start 2P",
        +          "Pridi",
        +          "Princess Sofia",
        +          "Prociono",
        +          "Prompt",
        +          "Prosto One",
        +          "Protest Guerrilla",
        +          "Protest Revolution",
        +          "Protest Riot",
        +          "Protest Strike",
        +          "Proza Libre",
        +          "Public Sans",
        +          "Puppies Play",
        +          "Puritan",
        +          "Purple Purse",
        +          "Qahiri",
        +          "Quando",
        +          "Quantico",
        +          "Quattrocento",
        +          "Quattrocento Sans",
        +          "Questrial",
        +          "Quicksand",
        +          "Quintessential",
        +          "Qwigley",
        +          "Qwitcher Grypen",
        +          "REM",
        +          "Racing Sans One",
        +          "Radio Canada",
        +          "Radio Canada Big",
        +          "Radley",
        +          "Rajdhani",
        +          "Rakkas",
        +          "Raleway",
        +          "Raleway Dots",
        +          "Ramabhadra",
        +          "Ramaraja",
        +          "Rambla",
        +          "Rammetto One",
        +          "Rampart One",
        +          "Ramsina",
        +          "Ranchers",
        +          "Rancho",
        +          "Ranga",
        +          "Rasa",
        +          "Rationale",
        +          "Ravi Prakash",
        +          "Readex Pro",
        +          "Recursive",
        +          "Red Hat Display",
        +          "Red Hat Mono",
        +          "Red Hat Text",
        +          "Red Rose",
        +          "Redacted",
        +          "Redacted Script",
        +          "Reddit Mono",
        +          "Reddit Sans",
        +          "Reddit Sans Condensed",
        +          "Redressed",
        +          "Reem Kufi",
        +          "Reem Kufi Fun",
        +          "Reem Kufi Ink",
        +          "Reenie Beanie",
        +          "Reggae One",
        +          "Rethink Sans",
        +          "Revalia",
        +          "Rhodium Libre",
        +          "Ribeye",
        +          "Ribeye Marrow",
        +          "Righteous",
        +          "Risque",
        +          "Road Rage",
        +          "Roboto",
        +          "Roboto Condensed",
        +          "Roboto Flex",
        +          "Roboto Mono",
        +          "Roboto Serif",
        +          "Roboto Slab",
        +          "Rochester",
        +          "Rock 3D",
        +          "Rock Salt",
        +          "RocknRoll One",
        +          "Rokkitt",
        +          "Romanesco",
        +          "Ropa Sans",
        +          "Rosario",
        +          "Rosarivo",
        +          "Rouge Script",
        +          "Rowdies",
        +          "Rozha One",
        +          "Rubik",
        +          "Rubik 80s Fade",
        +          "Rubik Beastly",
        +          "Rubik Broken Fax",
        +          "Rubik Bubbles",
        +          "Rubik Burned",
        +          "Rubik Dirt",
        +          "Rubik Distressed",
        +          "Rubik Doodle Shadow",
        +          "Rubik Doodle Triangles",
        +          "Rubik Gemstones",
        +          "Rubik Glitch",
        +          "Rubik Glitch Pop",
        +          "Rubik Iso",
        +          "Rubik Lines",
        +          "Rubik Maps",
        +          "Rubik Marker Hatch",
        +          "Rubik Maze",
        +          "Rubik Microbe",
        +          "Rubik Mono One",
        +          "Rubik Moonrocks",
        +          "Rubik Pixels",
        +          "Rubik Puddles",
        +          "Rubik Scribble",
        +          "Rubik Spray Paint",
        +          "Rubik Storm",
        +          "Rubik Vinyl",
        +          "Rubik Wet Paint",
        +          "Ruda",
        +          "Rufina",
        +          "Ruge Boogie",
        +          "Ruluko",
        +          "Rum Raisin",
        +          "Ruslan Display",
        +          "Russo One",
        +          "Ruthie",
        +          "Ruwudu",
        +          "Rye",
        +          "SN Pro",
        +          "STIX Two Math",
        +          "STIX Two Text",
        +          "SUSE",
        +          "SUSE Mono",
        +          "Sacramento",
        +          "Sahitya",
        +          "Sail",
        +          "Saira",
        +          "Saira Condensed",
        +          "Saira Extra Condensed",
        +          "Saira Semi Condensed",
        +          "Saira Stencil",
        +          "Salsa",
        +          "Sanchez",
        +          "Sancreek",
        +          "Sankofa Display",
        +          "Sansation",
        +          "Sansita",
        +          "Sansita Swashed",
        +          "Sarabun",
        +          "Sarala",
        +          "Sarina",
        +          "Sarpanch",
        +          "Sassy Frass",
        +          "Satisfy",
        +          "Savate",
        +          "Sawarabi Gothic",
        +          "Sawarabi Mincho",
        +          "Scada",
        +          "Scheherazade New",
        +          "Schibsted Grotesk",
        +          "Schoolbell",
        +          "Science Gothic",
        +          "Scope One",
        +          "Seaweed Script",
        +          "Secular One",
        +          "Sedan",
        +          "Sedan SC",
        +          "Sedgwick Ave",
        +          "Sedgwick Ave Display",
        +          "Sekuya",
        +          "Sen",
        +          "Send Flowers",
        +          "Sevillana",
        +          "Seymour One",
        +          "Shadows Into Light",
        +          "Shadows Into Light Two",
        +          "Shafarik",
        +          "Shalimar",
        +          "Shantell Sans",
        +          "Shanti",
        +          "Share",
        +          "Share Tech",
        +          "Share Tech Mono",
        +          "Shippori Antique",
        +          "Shippori Antique B1",
        +          "Shippori Mincho",
        +          "Shippori Mincho B1",
        +          "Shizuru",
        +          "Shojumaru",
        +          "Short Stack",
        +          "Shrikhand",
        +          "Siemreap",
        +          "Sigmar",
        +          "Sigmar One",
        +          "Signika",
        +          "Signika Negative",
        +          "Silkscreen",
        +          "Simonetta",
        +          "Single Day",
        +          "Sintony",
        +          "Sirin Stencil",
        +          "Sirivennela",
        +          "Six Caps",
        +          "Sixtyfour",
        +          "Sixtyfour Convergence",
        +          "Skranji",
        +          "Slabo 13px",
        +          "Slabo 27px",
        +          "Slackey",
        +          "Slackside One",
        +          "Smokum",
        +          "Smooch",
        +          "Smooch Sans",
        +          "Smythe",
        +          "Sniglet",
        +          "Snippet",
        +          "Snowburst One",
        +          "Sofadi One",
        +          "Sofia",
        +          "Sofia Sans",
        +          "Sofia Sans Condensed",
        +          "Sofia Sans Extra Condensed",
        +          "Sofia Sans Semi Condensed",
        +          "Solitreo",
        +          "Solway",
        +          "Sometype Mono",
        +          "Song Myung",
        +          "Sono",
        +          "Sonsie One",
        +          "Sora",
        +          "Sorts Mill Goudy",
        +          "Sour Gummy",
        +          "Source Code Pro",
        +          "Source Sans 3",
        +          "Source Serif 4",
        +          "Space Grotesk",
        +          "Space Mono",
        +          "Special Elite",
        +          "Special Gothic",
        +          "Special Gothic Condensed One",
        +          "Special Gothic Expanded One",
        +          "Spectral",
        +          "Spectral SC",
        +          "Spicy Rice",
        +          "Spinnaker",
        +          "Spirax",
        +          "Splash",
        +          "Spline Sans",
        +          "Spline Sans Mono",
        +          "Squada One",
        +          "Square Peg",
        +          "Sree Krushnadevaraya",
        +          "Sriracha",
        +          "Srisakdi",
        +          "Staatliches",
        +          "Stack Sans Headline",
        +          "Stack Sans Notch",
        +          "Stack Sans Text",
        +          "Stalemate",
        +          "Stalinist One",
        +          "Stardos Stencil",
        +          "Stick",
        +          "Stick No Bills",
        +          "Stint Ultra Condensed",
        +          "Stint Ultra Expanded",
        +          "Stoke",
        +          "Story Script",
        +          "Strait",
        +          "Strichpunkt Sans",
        +          "Style Script",
        +          "Stylish",
        +          "Sue Ellen Francisco",
        +          "Suez One",
        +          "Sulphur Point",
        +          "Sumana",
        +          "Sunflower",
        +          "Sunshiney",
        +          "Supermercado One",
        +          "Sura",
        +          "Suranna",
        +          "Suravaram",
        +          "Suwannaphum",
        +          "Swanky and Moo Moo",
        +          "Syncopate",
        +          "Syne",
        +          "Syne Mono",
        +          "Syne Tactile",
        +          "TASA Explorer",
        +          "TASA Orbiter",
        +          "Tac One",
        +          "Tagesschrift",
        +          "Tai Heritage Pro",
        +          "Tajawal",
        +          "Tangerine",
        +          "Tapestry",
        +          "Taprom",
        +          "Tauri",
        +          "Taviraj",
        +          "Teachers",
        +          "Teko",
        +          "Tektur",
        +          "Telex",
        +          "Tenali Ramakrishna",
        +          "Tenor Sans",
        +          "Text Me One",
        +          "Texturina",
        +          "Thasadith",
        +          "The Girl Next Door",
        +          "The Nautigal",
        +          "Tienne",
        +          "TikTok Sans",
        +          "Tillana",
        +          "Tilt Neon",
        +          "Tilt Prism",
        +          "Tilt Warp",
        +          "Timmana",
        +          "Tinos",
        +          "Tiny5",
        +          "Tiro Bangla",
        +          "Tiro Devanagari Hindi",
        +          "Tiro Devanagari Marathi",
        +          "Tiro Devanagari Sanskrit",
        +          "Tiro Gurmukhi",
        +          "Tiro Kannada",
        +          "Tiro Tamil",
        +          "Tiro Telugu",
        +          "Tirra",
        +          "Titan One",
        +          "Titillium Web",
        +          "Tomorrow",
        +          "Tourney",
        +          "Trade Winds",
        +          "Train One",
        +          "Triodion",
        +          "Trirong",
        +          "Trispace",
        +          "Trocchi",
        +          "Trochut",
        +          "Truculenta",
        +          "Trykker",
        +          "Tsukimi Rounded",
        +          "Tuffy",
        +          "Tulpen One",
        +          "Turret Road",
        +          "Twinkle Star",
        +          "Ubuntu",
        +          "Ubuntu Condensed",
        +          "Ubuntu Mono",
        +          "Ubuntu Sans",
        +          "Ubuntu Sans Mono",
        +          "Uchen",
        +          "Ultra",
        +          "Unbounded",
        +          "Uncial Antiqua",
        +          "Underdog",
        +          "Unica One",
        +          "UnifrakturCook",
        +          "UnifrakturMaguntia",
        +          "Unkempt",
        +          "Unlock",
        +          "Unna",
        +          "UoqMunThenKhung",
        +          "Updock",
        +          "Urbanist",
        +          "VT323",
        +          "Vampiro One",
        +          "Varela",
        +          "Varela Round",
        +          "Varta",
        +          "Vast Shadow",
        +          "Vazirmatn",
        +          "Vend Sans",
        +          "Vesper Libre",
        +          "Viaoda Libre",
        +          "Vibes",
        +          "Vibur",
        +          "Victor Mono",
        +          "Vidaloka",
        +          "Viga",
        +          "Vina Sans",
        +          "Voces",
        +          "Volkhov",
        +          "Vollkorn",
        +          "Vollkorn SC",
        +          "Voltaire",
        +          "Vujahday Script",
        +          "WDXL Lubrifont JP N",
        +          "WDXL Lubrifont SC",
        +          "WDXL Lubrifont TC",
        +          "Waiting for the Sunrise",
        +          "Wallpoet",
        +          "Walter Turncoat",
        +          "Warnes",
        +          "Water Brush",
        +          "Waterfall",
        +          "Wavefont",
        +          "Wellfleet",
        +          "Wendy One",
        +          "Whisper",
        +          "WindSong",
        +          "Winky Rough",
        +          "Winky Sans",
        +          "Wire One",
        +          "Wittgenstein",
        +          "Wix Madefor Display",
        +          "Wix Madefor Text",
        +          "Work Sans",
        +          "Workbench",
        +          "Xanh Mono",
        +          "Yaldevi",
        +          "Yanone Kaffeesatz",
        +          "Yantramanav",
        +          "Yarndings 12",
        +          "Yarndings 12 Charted",
        +          "Yarndings 20",
        +          "Yarndings 20 Charted",
        +          "Yatra One",
        +          "Yellowtail",
        +          "Yeon Sung",
        +          "Yeseva One",
        +          "Yesteryear",
        +          "Yomogi",
        +          "Young Serif",
        +          "Yrsa",
        +          "Ysabeau",
        +          "Ysabeau Infant",
        +          "Ysabeau Office",
        +          "Ysabeau SC",
        +          "Yuji Boku",
        +          "Yuji Hentaigana Akari",
        +          "Yuji Hentaigana Akebono",
        +          "Yuji Mai",
        +          "Yuji Syuku",
        +          "Yusei Magic",
        +          "Yuyu",
        +          "Yuyu Short",
        +          "ZCOOL KuaiLe",
        +          "ZCOOL QingKe HuangYou",
        +          "ZCOOL XiaoWei",
        +          "Zain",
        +          "Zalando Sans",
        +          "Zalando Sans Expanded",
        +          "Zalando Sans SemiExpanded",
        +          "Zen Antique",
        +          "Zen Antique Soft",
        +          "Zen Dots",
        +          "Zen Kaku Gothic Antique",
        +          "Zen Kaku Gothic New",
        +          "Zen Kurenaido",
        +          "Zen Loop",
        +          "Zen Maru Gothic",
        +          "Zen Old Mincho",
        +          "Zen Tokyo Zoo",
        +          "Zeyada",
        +          "Zhi Mang Xing",
        +          "Zilla Slab",
        +          "Zilla Slab Highlight"
        +        ],
        +        "type": "string"
        +      },
        +      "fontSize": {
        +        "type": "number"
        +      },
        +      "footerColor": {
        +        "type": "string"
        +      },
        +      "footerFontSize": {
        +        "type": "number"
        +      },
        +      "footerGap": {
        +        "type": "number"
        +      },
        +      "footerLinkColor": {
        +        "type": "string"
        +      },
        +      "gridColor": {
        +        "type": "string"
        +      },
        +      "gridLineWidth": {
        +        "type": "number"
        +      },
        +      "gridLines": {
        +        "enum": [
        +          "none",
        +          "value",
        +          "both"
        +        ],
        +        "type": "string"
        +      },
        +      "headerGap": {
        +        "type": "number"
        +      },
        +      "labelColor": {
        +        "type": "string"
        +      },
        +      "labelFontSize": {
        +        "type": "number"
        +      },
        +      "labelFontWeight": {
        +        "type": "string"
        +      },
        +      "labelHaloWidth": {
        +        "type": "number"
        +      },
        +      "labelMutedFontWeight": {
        +        "type": "string"
        +      },
        +      "labelMutedOpacity": {
        +        "type": "number"
        +      },
        +      "lineStrokeWidth": {
        +        "type": "number"
        +      },
        +      "numericFontFamily": {
        +        "type": "string"
        +      },
        +      "pieCornerRadius": {
        +        "type": "number"
        +      },
        +      "sequentialRange": {
        +        "items": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "string"
        +          }
        +        ],
        +        "maxItems": 2,
        +        "minItems": 2,
        +        "type": "array"
        +      },
        +      "subtitleColor": {
        +        "type": "string"
        +      },
        +      "subtitleFontSize": {
        +        "type": "number"
        +      },
        +      "tickDensity": {
        +        "type": "number"
        +      },
        +      "tickLabelColor": {
        +        "type": "string"
        +      },
        +      "tickLabelFontWeight": {
        +        "type": "string"
        +      },
        +      "tickPadding": {
        +        "type": "number"
        +      },
        +      "tickSize": {
        +        "type": "number"
        +      },
        +      "titleColor": {
        +        "type": "string"
        +      },
        +      "titleFontFamily": {
        +        "type": "string"
        +      },
        +      "titleFontSize": {
        +        "type": "number"
        +      },
        +      "titleFontWeight": {
        +        "type": "string"
        +      },
        +      "titleSubtitleGap": {
        +        "type": "number"
        +      }
        +    },
        +    "type": "object"
        +  },
        +  "title": {
        +    "type": "string"
        +  },
        +  "version": {
        +    "const": "2026-03-20",
        +    "type": "string"
        +  },
        +  "width": {
        +    "maximum": 4096,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  "x": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "display": {
        +        "default": true,
        +        "type": "boolean"
        +      },
        +      "domain": {
        +        "anyOf": [
        +          {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          }
        +        ]
        +      },
        +      "label": {
        +        "type": "string"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "tickFormat": {
        +        "type": "string"
        +      },
        +      "type": {
        +        "enum": [
        +          "linear",
        +          "utc",
        +          "band"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "type": "object"
        +  },
        +  "y": {
        +    "additionalProperties": {},
        +    "properties": {
        +      "display": {
        +        "default": true,
        +        "type": "boolean"
        +      },
        +      "domain": {
        +        "anyOf": [
        +          {
        +            "items": [
        +              {
        +                "type": "number"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ],
        +            "maxItems": 2,
        +            "minItems": 2,
        +            "type": "array"
        +          },
        +          {
        +            "items": {
        +              "type": "string"
        +            },
        +            "type": "array"
        +          }
        +        ]
        +      },
        +      "label": {
        +        "type": "string"
        +      },
        +      "nice": {
        +        "type": "boolean"
        +      },
        +      "tickFormat": {
        +        "type": "string"
        +      },
        +      "type": {
        +        "enum": [
        +          "linear",
        +          "utc",
        +          "band"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "type": "object"
        +  }
        +}
      • addedOutput schema / properties / examples / items / properties / config / required
        Added value: +[
        +  "version",
        +  "format",
        +  "marks"
        +]
      • addedOutput schema / properties / examples / items / properties / config / title
        Added value: +"Szum Chart Configuration"
      • addedOutput schema / properties / examples / items / properties / config / type
        Added value: +"object"
    • Changedrender_chart5 fields changed
      • addedInput schema / properties / acknowledgeWarnings
        Added value: +{
        +  "description": "Set true only after the user explicitly approves every warning returned for this exact config",
        +  "type": "boolean"
        +}
      • changedOutput schema / properties / format / enum
        Previous value: -[
        -  "png",
        -  "svg"
        -]New value: +[
        +  "svg",
        +  "png"
        +]
      • changedOutput schema / properties / mimeType / enum
        Previous value: -[
        -  "image/png",
        -  "image/svg+xml"
        -]New value: +[
        +  "image/svg+xml",
        +  "image/png"
        +]
      • addedOutput schema / properties / validation
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "diagnostics": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "errors": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "message": {
        +      "type": "string"
        +    },
        +    "suggestedConfig": {
        +      "additionalProperties": {},
        +      "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        +      "properties": {
        +        "attribution": {
        +          "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +          "type": "boolean"
        +        },
        +        "color": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "categorical",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "string"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "sequential",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "label": {
        +                  "type": "string"
        +                }
        +              },
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "data": {
        +          "items": {
        +            "additionalProperties": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "type": "array"
        +        },
        +        "footer": {
        +          "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +          "type": "string"
        +        },
        +        "format": {
        +          "enum": [
        +            "svg",
        +            "png"
        +          ],
        +          "type": "string"
        +        },
        +        "headerAlign": {
        +          "enum": [
        +            "left",
        +            "center",
        +            "right"
        +          ],
        +          "type": "string"
        +        },
        +        "height": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "locale": {
        +          "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +          "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +          "type": "string"
        +        },
        +        "margin": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "bottom": {
        +              "type": "number"
        +            },
        +            "left": {
        +              "type": "number"
        +            },
        +            "right": {
        +              "type": "number"
        +            },
        +            "top": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "marks": {
        +          "items": {
        +            "oneOf": [
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "field": {
        +                        "type": "string"
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "field"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "r": {
        +                    "type": "number"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "dot",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "points": {
        +                            "anyOf": [
        +                              {
        +                                "enum": [
        +                                  "extrema",
        +                                  "all",
        +                                  "ends"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              {
        +                                "const": false,
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "additionalProperties": {},
        +                                "properties": {
        +                                  "at": {
        +                                    "enum": [
        +                                      "extrema",
        +                                      "all",
        +                                      "ends"
        +                                    ],
        +                                    "type": "string"
        +                                  },
        +                                  "show": {
        +                                    "default": [
        +                                      "value"
        +                                    ],
        +                                    "items": {
        +                                      "enum": [
        +                                        "value",
        +                                        "category"
        +                                      ],
        +                                      "type": "string"
        +                                    },
        +                                    "type": "array"
        +                                  }
        +                                },
        +                                "required": [
        +                                  "at"
        +                                ],
        +                                "type": "object"
        +                              }
        +                            ],
        +                            "default": false
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "line",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value",
        +                                    "percent"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "innerRadius": {
        +                    "default": 0,
        +                    "maximum": 1,
        +                    "minimum": 0,
        +                    "type": "number"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "auto",
        +                            "enum": [
        +                              "auto",
        +                              "inside",
        +                              "outside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "category",
        +                              "percent"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "pie",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "dx": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "dy": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "fontSize": {
        +                    "type": "number"
        +                  },
        +                  "fontWeight": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "text": {
        +                    "default": "text",
        +                    "type": "string"
        +                  },
        +                  "textAnchor": {
        +                    "default": "center",
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "type": {
        +                    "const": "text",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              }
        +            ]
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        },
        +        "plotHeight": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "plotWidth": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "scale": {
        +          "maximum": 4,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "subtitle": {
        +          "type": "string"
        +        },
        +        "theme": {
        +          "default": "editorial",
        +          "enum": [
        +            "editorial",
        +            "clean",
        +            "noir",
        +            "loud",
        +            "soft",
        +            "technical"
        +          ],
        +          "type": "string"
        +        },
        +        "themeOverrides": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "axisColor": {
        +              "type": "string"
        +            },
        +            "axisFrame": {
        +              "enum": [
        +                "none",
        +                "baseline",
        +                "lShape",
        +                "full"
        +              ],
        +              "type": "string"
        +            },
        +            "axisLabelColor": {
        +              "type": "string"
        +            },
        +            "axisLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "axisLineWidth": {
        +              "type": "number"
        +            },
        +            "backgroundColor": {
        +              "type": "string"
        +            },
        +            "barCornerRadius": {
        +              "type": "number"
        +            },
        +            "barPadding": {
        +              "type": "number"
        +            },
        +            "colors": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "dotRadius": {
        +              "type": "number"
        +            },
        +            "fontFamily": {
        +              "enum": [
        +                "ABeeZee",
        +                "ADLaM Display",
        +                "AR One Sans",
        +                "Abel",
        +                "Abhaya Libre",
        +                "Aboreto",
        +                "Abril Fatface",
        +                "Abyssinica SIL",
        +                "Aclonica",
        +                "Acme",
        +                "Actor",
        +                "Adamina",
        +                "Advent Pro",
        +                "Afacad",
        +                "Afacad Flux",
        +                "Agbalumo",
        +                "Agdasima",
        +                "Agu Display",
        +                "Aguafina Script",
        +                "Akatab",
        +                "Akaya Kanadaka",
        +                "Akaya Telivigala",
        +                "Akronim",
        +                "Akshar",
        +                "Akt",
        +                "Aladin",
        +                "Alan Sans",
        +                "Alata",
        +                "Alatsi",
        +                "Albert Sans",
        +                "Aldrich",
        +                "Alef",
        +                "Alegreya",
        +                "Alegreya SC",
        +                "Alegreya Sans",
        +                "Alegreya Sans SC",
        +                "Aleo",
        +                "Alex Brush",
        +                "Alexandria",
        +                "Alfa Slab One",
        +                "Alice",
        +                "Alien Block",
        +                "Alike",
        +                "Alike Angular",
        +                "Alkalami",
        +                "Alkatra",
        +                "Allan",
        +                "Allerta",
        +                "Allerta Stencil",
        +                "Allison",
        +                "Allkin",
        +                "Allura",
        +                "Almarai",
        +                "Almendra",
        +                "Almendra Display",
        +                "Almendra SC",
        +                "Alumni Sans",
        +                "Alumni Sans Collegiate One",
        +                "Alumni Sans Inline One",
        +                "Alumni Sans Pinstripe",
        +                "Alumni Sans SC",
        +                "Alyamama",
        +                "Amarante",
        +                "Amaranth",
        +                "Amarna",
        +                "Amatic SC",
        +                "Amethysta",
        +                "Amiko",
        +                "Amiri",
        +                "Amiri Quran",
        +                "Amita",
        +                "Anaheim",
        +                "Ancizar Sans",
        +                "Ancizar Serif",
        +                "Andada Pro",
        +                "Andika",
        +                "Anek Bangla",
        +                "Anek Devanagari",
        +                "Anek Gujarati",
        +                "Anek Gurmukhi",
        +                "Anek Kannada",
        +                "Anek Latin",
        +                "Anek Malayalam",
        +                "Anek Odia",
        +                "Anek Tamil",
        +                "Anek Telugu",
        +                "Angkor",
        +                "Annapurna SIL",
        +                "Annie Use Your Telescope",
        +                "Anonymous Pro",
        +                "Anta",
        +                "Antic",
        +                "Antic Didone",
        +                "Antic Slab",
        +                "Anton",
        +                "Anton SC",
        +                "Antonio",
        +                "Anuphan",
        +                "Anybody",
        +                "Aoboshi One",
        +                "Arapey",
        +                "Arbutus",
        +                "Arbutus Slab",
        +                "Architects Daughter",
        +                "Archivo",
        +                "Archivo Black",
        +                "Archivo Narrow",
        +                "Are You Serious",
        +                "Aref Ruqaa",
        +                "Aref Ruqaa Ink",
        +                "Arima",
        +                "Arimo",
        +                "Arizonia",
        +                "Armata",
        +                "Arsenal",
        +                "Arsenal SC",
        +                "Artifika",
        +                "Arvo",
        +                "Arya",
        +                "Asap",
        +                "Asap Condensed",
        +                "Asar",
        +                "Asimovian",
        +                "Asset",
        +                "Assistant",
        +                "Asta Sans",
        +                "Astloch",
        +                "Asul",
        +                "Athiti",
        +                "Atkinson Hyperlegible",
        +                "Atkinson Hyperlegible Mono",
        +                "Atkinson Hyperlegible Next",
        +                "Atma",
        +                "Atomic Age",
        +                "Aubrey",
        +                "Audiowide",
        +                "Autour One",
        +                "Average",
        +                "Average Sans",
        +                "Averia Gruesa Libre",
        +                "Averia Libre",
        +                "Averia Sans Libre",
        +                "Averia Serif Libre",
        +                "Azeret Mono",
        +                "B612",
        +                "B612 Mono",
        +                "BBH Bartle",
        +                "BBH Bogle",
        +                "BBH Hegarty",
        +                "BIZ UDGothic",
        +                "BIZ UDMincho",
        +                "BIZ UDPGothic",
        +                "BIZ UDPMincho",
        +                "BJCree",
        +                "Babylonica",
        +                "Bacasime Antique",
        +                "Bad Script",
        +                "Badeen Display",
        +                "Bagel Fat One",
        +                "Bahiana",
        +                "Bahianita",
        +                "Bai Jamjuree",
        +                "Bakbak One",
        +                "Ballet",
        +                "Baloo 2",
        +                "Baloo Bhai 2",
        +                "Baloo Bhaijaan 2",
        +                "Baloo Bhaina 2",
        +                "Baloo Chettan 2",
        +                "Baloo Da 2",
        +                "Baloo Paaji 2",
        +                "Baloo Tamma 2",
        +                "Baloo Tammudu 2",
        +                "Baloo Thambi 2",
        +                "Balsamiq Sans",
        +                "Balthazar",
        +                "Bangers",
        +                "Barlow",
        +                "Barlow Condensed",
        +                "Barlow Semi Condensed",
        +                "Barriecito",
        +                "Barrio",
        +                "Basic",
        +                "Baskervville",
        +                "Baskervville SC",
        +                "Battambang",
        +                "Baumans",
        +                "Bayon",
        +                "Be Vietnam Pro",
        +                "Beau Rivage",
        +                "Bebas Neue",
        +                "Beiruti",
        +                "Belanosima",
        +                "Belgrano",
        +                "Bellefair",
        +                "Belleza",
        +                "Bellota",
        +                "Bellota Text",
        +                "BenchNine",
        +                "Benne",
        +                "Bentham",
        +                "Berkshire Swash",
        +                "Besley",
        +                "Betania Patmos",
        +                "Betania Patmos GDL",
        +                "Betania Patmos In",
        +                "Betania Patmos In GDL",
        +                "Beth Ellen",
        +                "Bevan",
        +                "BhuTuka Expanded One",
        +                "Big Shoulders",
        +                "Big Shoulders Inline",
        +                "Big Shoulders Stencil",
        +                "Bigelow Rules",
        +                "Bigshot One",
        +                "Bilbo",
        +                "Bilbo Swash Caps",
        +                "BioRhyme",
        +                "BioRhyme Expanded",
        +                "Birthstone",
        +                "Birthstone Bounce",
        +                "Biryani",
        +                "Bitcount",
        +                "Bitcount Grid Double",
        +                "Bitcount Grid Double Ink",
        +                "Bitcount Grid Single",
        +                "Bitcount Grid Single Ink",
        +                "Bitcount Ink",
        +                "Bitcount Prop Double",
        +                "Bitcount Prop Double Ink",
        +                "Bitcount Prop Single",
        +                "Bitcount Prop Single Ink",
        +                "Bitcount Single",
        +                "Bitcount Single Ink",
        +                "Bitter",
        +                "Black And White Picture",
        +                "Black Han Sans",
        +                "Black Ops One",
        +                "Blaka",
        +                "Blaka Hollow",
        +                "Blaka Ink",
        +                "Blinker",
        +                "Bodoni Moda",
        +                "Bodoni Moda SC",
        +                "Bokor",
        +                "Boldonse",
        +                "Bona Nova",
        +                "Bona Nova SC",
        +                "Bonbon",
        +                "Bonheur Royale",
        +                "Boogaloo",
        +                "Borel",
        +                "Bowlby One",
        +                "Bowlby One SC",
        +                "Bpmf Huninn",
        +                "Bpmf Iansui",
        +                "Bpmf Zihi Kai Std",
        +                "Braah One",
        +                "Brawler",
        +                "Bree Serif",
        +                "Bricolage Grotesque",
        +                "Bruno Ace",
        +                "Bruno Ace SC",
        +                "Brygada 1918",
        +                "Bubblegum Sans",
        +                "Bubbler One",
        +                "Buda",
        +                "Buenard",
        +                "Bungee",
        +                "Bungee Hairline",
        +                "Bungee Inline",
        +                "Bungee Outline",
        +                "Bungee Shade",
        +                "Bungee Spice",
        +                "Bungee Tint",
        +                "Butcherman",
        +                "Butterfly Kids",
        +                "Bytesized",
        +                "Cabin",
        +                "Cabin Condensed",
        +                "Cabin Sketch",
        +                "Cactus Classical Serif",
        +                "Caesar Dressing",
        +                "Cagliostro",
        +                "Cairo",
        +                "Cairo Play",
        +                "Cal Sans",
        +                "Caladea",
        +                "Calistoga",
        +                "Calligraffitti",
        +                "Cambay",
        +                "Cambo",
        +                "Candal",
        +                "Cantarell",
        +                "Cantata One",
        +                "Cantora One",
        +                "Caprasimo",
        +                "Capriola",
        +                "Caramel",
        +                "Carattere",
        +                "Cardo",
        +                "Carlito",
        +                "Carme",
        +                "Carrois Gothic",
        +                "Carrois Gothic SC",
        +                "Carter One",
        +                "Cascadia Code",
        +                "Cascadia Mono",
        +                "Castoro",
        +                "Castoro Titling",
        +                "Catamaran",
        +                "Caudex",
        +                "Cause",
        +                "Caveat",
        +                "Caveat Brush",
        +                "Cedarville Cursive",
        +                "Ceviche One",
        +                "Chakra Petch",
        +                "Changa",
        +                "Changa One",
        +                "Chango",
        +                "Charis SIL",
        +                "Charm",
        +                "Charmonman",
        +                "Chathura",
        +                "Chau Philomene One",
        +                "Chela One",
        +                "Chelsea Market",
        +                "Chenla",
        +                "Cherish",
        +                "Cherry Bomb One",
        +                "Cherry Cream Soda",
        +                "Cherry Swash",
        +                "Chewy",
        +                "Chicle",
        +                "Chilanka",
        +                "Chiron GoRound TC",
        +                "Chiron Hei HK",
        +                "Chiron Sung HK",
        +                "Chivo",
        +                "Chivo Mono",
        +                "Chocolate Classical Sans",
        +                "Chokokutai",
        +                "Chonburi",
        +                "Cinzel",
        +                "Cinzel Decorative",
        +                "Clicker Script",
        +                "Climate Crisis",
        +                "Coda",
        +                "Codystar",
        +                "Coiny",
        +                "Combo",
        +                "Comfortaa",
        +                "Comforter",
        +                "Comforter Brush",
        +                "Comic Neue",
        +                "Comic Relief",
        +                "Coming Soon",
        +                "Comme",
        +                "Commissioner",
        +                "Concert One",
        +                "Condiment",
        +                "Content",
        +                "Contrail One",
        +                "Convergence",
        +                "Cookie",
        +                "Copse",
        +                "Coral Pixels",
        +                "Corben",
        +                "Corinthia",
        +                "Cormorant",
        +                "Cormorant Garamond",
        +                "Cormorant Infant",
        +                "Cormorant SC",
        +                "Cormorant Unicase",
        +                "Cormorant Upright",
        +                "Cossette Texte",
        +                "Cossette Titre",
        +                "Courgette",
        +                "Courier Prime",
        +                "Cousine",
        +                "Coustard",
        +                "Covered By Your Grace",
        +                "Crafty Girls",
        +                "Creepster",
        +                "Crete Round",
        +                "Crimson Pro",
        +                "Crimson Text",
        +                "Croissant One",
        +                "Crushed",
        +                "Cuprum",
        +                "Cute Font",
        +                "Cutive",
        +                "Cutive Mono",
        +                "DM Mono",
        +                "DM Sans",
        +                "DM Serif Display",
        +                "DM Serif Text",
        +                "Dai Banna SIL",
        +                "Damion",
        +                "Dancing Script",
        +                "Danfo",
        +                "Dangrek",
        +                "Darker Grotesque",
        +                "Darumadrop One",
        +                "Datatype",
        +                "David Libre",
        +                "Dawning of a New Day",
        +                "Days One",
        +                "Dekko",
        +                "Dela Gothic One",
        +                "Delicious Handrawn",
        +                "Delius",
        +                "Delius Swash Caps",
        +                "Delius Unicase",
        +                "Della Respira",
        +                "Denk One",
        +                "Devonshire",
        +                "Dhurjati",
        +                "Didact Gothic",
        +                "Diphylleia",
        +                "Diplomata",
        +                "Diplomata SC",
        +                "Do Hyeon",
        +                "Dokdo",
        +                "Domine",
        +                "Donegal One",
        +                "Dongle",
        +                "Doppio One",
        +                "Dorsa",
        +                "Dosis",
        +                "DotGothic16",
        +                "Doto",
        +                "Dr Sugiyama",
        +                "Duru Sans",
        +                "DynaPuff",
        +                "Dynalight",
        +                "EB Garamond",
        +                "Eagle Lake",
        +                "East Sea Dokdo",
        +                "Eater",
        +                "Economica",
        +                "Eczar",
        +                "Edu AU VIC WA NT Arrows",
        +                "Edu AU VIC WA NT Dots",
        +                "Edu AU VIC WA NT Guides",
        +                "Edu AU VIC WA NT Hand",
        +                "Edu AU VIC WA NT Pre",
        +                "Edu NSW ACT Cursive",
        +                "Edu NSW ACT Foundation",
        +                "Edu NSW ACT Hand Pre",
        +                "Edu QLD Beginner",
        +                "Edu QLD Hand",
        +                "Edu SA Beginner",
        +                "Edu SA Hand",
        +                "Edu TAS Beginner",
        +                "Edu VIC WA NT Beginner",
        +                "Edu VIC WA NT Hand",
        +                "Edu VIC WA NT Hand Pre",
        +                "El Messiri",
        +                "Electrolize",
        +                "Elms Sans",
        +                "Elsie",
        +                "Elsie Swash Caps",
        +                "Emblema One",
        +                "Emilys Candy",
        +                "Encode Sans",
        +                "Encode Sans Condensed",
        +                "Encode Sans Expanded",
        +                "Encode Sans SC",
        +                "Encode Sans Semi Condensed",
        +                "Encode Sans Semi Expanded",
        +                "Engagement",
        +                "Englebert",
        +                "Enriqueta",
        +                "Ephesis",
        +                "Epilogue",
        +                "Epunda Sans",
        +                "Epunda Slab",
        +                "Erica One",
        +                "Esteban",
        +                "Estedad",
        +                "Estonia",
        +                "Euphoria Script",
        +                "Ewert",
        +                "Exile",
        +                "Exo",
        +                "Exo 2",
        +                "Expletus Sans",
        +                "Explora",
        +                "Faculty Glyphic",
        +                "Fahkwang",
        +                "Familjen Grotesk",
        +                "Fanwood Text",
        +                "Farro",
        +                "Farsan",
        +                "Fascinate",
        +                "Fascinate Inline",
        +                "Faster One",
        +                "Fasthand",
        +                "Fauna One",
        +                "Faustina",
        +                "Federant",
        +                "Federo",
        +                "Felipa",
        +                "Fenix",
        +                "Festive",
        +                "Figtree",
        +                "Finger Paint",
        +                "Finlandica Headline",
        +                "Finlandica Text",
        +                "Fira Code",
        +                "Fira Mono",
        +                "Fira Sans",
        +                "Fira Sans Condensed",
        +                "Fira Sans Extra Condensed",
        +                "Fjalla One",
        +                "Fjord One",
        +                "Flamenco",
        +                "Flavors",
        +                "Fleur De Leah",
        +                "Flow Block",
        +                "Flow Circular",
        +                "Flow Rounded",
        +                "Foldit",
        +                "Fondamento",
        +                "Fontdiner Swanky",
        +                "Forum",
        +                "Fragment Mono",
        +                "Francois One",
        +                "Frank Ruhl Libre",
        +                "Fraunces",
        +                "Freckle Face",
        +                "Fredericka the Great",
        +                "Fredoka",
        +                "Freehand",
        +                "Freeman",
        +                "Fresca",
        +                "Frijole",
        +                "Fruktur",
        +                "Fugaz One",
        +                "Fuggles",
        +                "Funnel Display",
        +                "Funnel Sans",
        +                "Fustat",
        +                "Fuzzy Bubbles",
        +                "GFS Didot",
        +                "GFS Neohellenic",
        +                "Ga Maamli",
        +                "Gabarito",
        +                "Gabriela",
        +                "Gaegu",
        +                "Gafata",
        +                "Gajraj One",
        +                "Galada",
        +                "Galdeano",
        +                "Galindo",
        +                "Gamja Flower",
        +                "Gantari",
        +                "Gasoek One",
        +                "Gayathri",
        +                "Geist",
        +                "Geist Mono",
        +                "Geist Pixel",
        +                "Gelasio",
        +                "Gemunu Libre",
        +                "Genos",
        +                "Gentium Book Plus",
        +                "Gentium Plus",
        +                "Geo",
        +                "Geologica",
        +                "Geom",
        +                "Geomini",
        +                "Georama",
        +                "Geostar",
        +                "Geostar Fill",
        +                "Germania One",
        +                "Gideon Roman",
        +                "Gidole",
        +                "Gidugu",
        +                "Gilda Display",
        +                "Girassol",
        +                "Give You Glory",
        +                "Glass Antiqua",
        +                "Glegoo",
        +                "Gloock",
        +                "Gloria Hallelujah",
        +                "Glory",
        +                "Gluten",
        +                "Goblin One",
        +                "Gochi Hand",
        +                "Goldman",
        +                "Golos Text",
        +                "Google Sans",
        +                "Google Sans Code",
        +                "Google Sans Flex",
        +                "Gorditas",
        +                "Gothic A1",
        +                "Gotu",
        +                "Goudy Bookletter 1911",
        +                "Gowun Batang",
        +                "Gowun Dodum",
        +                "Graduate",
        +                "Grand Hotel",
        +                "Grandiflora One",
        +                "Grandstander",
        +                "Grape Nuts",
        +                "Gravitas One",
        +                "Great Vibes",
        +                "Grechen Fuemen",
        +                "Grenze",
        +                "Grenze Gotisch",
        +                "Grey Qo",
        +                "Griffy",
        +                "Gruppo",
        +                "Gudea",
        +                "Gugi",
        +                "Gulzar",
        +                "Gupter",
        +                "Gurajada",
        +                "Gveret Levin",
        +                "Gwendolyn",
        +                "Habibi",
        +                "Hachi Maru Pop",
        +                "Hahmlet",
        +                "Halant",
        +                "Hammersmith One",
        +                "Hanalei",
        +                "Hanalei Fill",
        +                "Handjet",
        +                "Handlee",
        +                "Hanken Grotesk",
        +                "Hanuman",
        +                "Happy Monkey",
        +                "Harmattan",
        +                "Headland One",
        +                "Hedvig Letters Sans",
        +                "Hedvig Letters Serif",
        +                "Heebo",
        +                "Henny Penny",
        +                "Hepta Slab",
        +                "Herr Von Muellerhoff",
        +                "Hi Melody",
        +                "Hibur Mono",
        +                "Hina Mincho",
        +                "Hind",
        +                "Hind Guntur",
        +                "Hind Madurai",
        +                "Hind Mysuru",
        +                "Hind Siliguri",
        +                "Hind Vadodara",
        +                "Holtwood One SC",
        +                "Homemade Apple",
        +                "Homenaje",
        +                "Honk",
        +                "Host Grotesk",
        +                "Hubballi",
        +                "Hubot Sans",
        +                "Huninn",
        +                "Hurricane",
        +                "IBM Plex Mono",
        +                "IBM Plex Sans",
        +                "IBM Plex Sans Arabic",
        +                "IBM Plex Sans Condensed",
        +                "IBM Plex Sans Devanagari",
        +                "IBM Plex Sans Hebrew",
        +                "IBM Plex Sans JP",
        +                "IBM Plex Sans KR",
        +                "IBM Plex Sans Thai",
        +                "IBM Plex Sans Thai Looped",
        +                "IBM Plex Serif",
        +                "IM Fell DW Pica",
        +                "IM Fell DW Pica SC",
        +                "IM Fell Double Pica",
        +                "IM Fell Double Pica SC",
        +                "IM Fell English",
        +                "IM Fell English SC",
        +                "IM Fell French Canon",
        +                "IM Fell French Canon SC",
        +                "IM Fell Great Primer",
        +                "IM Fell Great Primer SC",
        +                "Iansui",
        +                "Ibarra Real Nova",
        +                "Iceberg",
        +                "Iceland",
        +                "Idiqlat",
        +                "Imbue",
        +                "Imperial Script",
        +                "Imprima",
        +                "Inclusive Sans",
        +                "Inconsolata",
        +                "Inder",
        +                "Indie Flower",
        +                "Ingrid Darling",
        +                "Inika",
        +                "Inknut Antiqua",
        +                "Inria Sans",
        +                "Inria Serif",
        +                "Inspiration",
        +                "Instrument Sans",
        +                "Instrument Serif",
        +                "Intel One Mono",
        +                "Inter",
        +                "Inter Tight",
        +                "Iosevka Charon",
        +                "Iosevka Charon Mono",
        +                "Irish Grover",
        +                "Island Moments",
        +                "Istok Web",
        +                "Italiana",
        +                "Italianno",
        +                "Itim",
        +                "Jacquard 12",
        +                "Jacquard 12 Charted",
        +                "Jacquard 24",
        +                "Jacquard 24 Charted",
        +                "Jacquarda Bastarda 9",
        +                "Jacquarda Bastarda 9 Charted",
        +                "Jacques Francois",
        +                "Jacques Francois Shadow",
        +                "Jaini",
        +                "Jaini Purva",
        +                "Jaldi",
        +                "Jaro",
        +                "Jersey 10",
        +                "Jersey 10 Charted",
        +                "Jersey 15",
        +                "Jersey 15 Charted",
        +                "Jersey 20",
        +                "Jersey 20 Charted",
        +                "Jersey 25",
        +                "Jersey 25 Charted",
        +                "JetBrains Mono",
        +                "Jim Nightshade",
        +                "Joan",
        +                "Jockey One",
        +                "Jolly Lodger",
        +                "Jomhuria",
        +                "Jomolhari",
        +                "Josefin Sans",
        +                "Josefin Slab",
        +                "Jost",
        +                "Joti One",
        +                "Jua",
        +                "Judson",
        +                "Julee",
        +                "Julius Sans One",
        +                "Junge",
        +                "Jura",
        +                "Just Another Hand",
        +                "Just Me Again Down Here",
        +                "K2D",
        +                "Kablammo",
        +                "Kadwa",
        +                "Kaisei Decol",
        +                "Kaisei HarunoUmi",
        +                "Kaisei Opti",
        +                "Kaisei Tokumin",
        +                "Kalam",
        +                "Kalnia",
        +                "Kalnia Glaze",
        +                "Kameron",
        +                "Kanchenjunga",
        +                "Kanit",
        +                "Kantumruy Pro",
        +                "Kapakana",
        +                "Karantina",
        +                "Karla",
        +                "Karla Tamil Inclined",
        +                "Karla Tamil Upright",
        +                "Karma",
        +                "Katibeh",
        +                "Kaushan Script",
        +                "Kavivanar",
        +                "Kavoon",
        +                "Kay Pho Du",
        +                "Kdam Thmor Pro",
        +                "Keania One",
        +                "Kedebideri",
        +                "Kelly Slab",
        +                "Kenia",
        +                "Khand",
        +                "Khmer",
        +                "Khula",
        +                "Kings",
        +                "Kirang Haerang",
        +                "Kite One",
        +                "Kiwi Maru",
        +                "Klee One",
        +                "Knewave",
        +                "KoHo",
        +                "Kodchasan",
        +                "Kode Mono",
        +                "Koh Santepheap",
        +                "Kolker Brush",
        +                "Konkhmer Sleokchher",
        +                "Kosugi",
        +                "Kosugi Maru",
        +                "Kotta One",
        +                "Koulen",
        +                "Kranky",
        +                "Kreon",
        +                "Kristi",
        +                "Krona One",
        +                "Krub",
        +                "Kufam",
        +                "Kulim Park",
        +                "Kumar One",
        +                "Kumar One Outline",
        +                "Kumbh Sans",
        +                "Kurale",
        +                "LINE Seed JP",
        +                "LXGW Marker Gothic",
        +                "LXGW WenKai Mono TC",
        +                "LXGW WenKai TC",
        +                "La Belle Aurore",
        +                "Labrada",
        +                "Lacquer",
        +                "Laila",
        +                "Lakki Reddy",
        +                "Lalezar",
        +                "Lancelot",
        +                "Langar",
        +                "Lateef",
        +                "Lato",
        +                "Lavishly Yours",
        +                "League Gothic",
        +                "League Script",
        +                "League Spartan",
        +                "Leckerli One",
        +                "Ledger",
        +                "Lekton",
        +                "Lemon",
        +                "Lemonada",
        +                "Lexend",
        +                "Lexend Deca",
        +                "Lexend Exa",
        +                "Lexend Giga",
        +                "Lexend Mega",
        +                "Lexend Peta",
        +                "Lexend Tera",
        +                "Lexend Zetta",
        +                "Libertinus Keyboard",
        +                "Libertinus Math",
        +                "Libertinus Mono",
        +                "Libertinus Sans",
        +                "Libertinus Serif",
        +                "Libertinus Serif Display",
        +                "Libre Barcode 128",
        +                "Libre Barcode 128 Text",
        +                "Libre Barcode 39",
        +                "Libre Barcode 39 Extended",
        +                "Libre Barcode 39 Extended Text",
        +                "Libre Barcode 39 Text",
        +                "Libre Barcode EAN13 Text",
        +                "Libre Baskerville",
        +                "Libre Bodoni",
        +                "Libre Caslon Display",
        +                "Libre Caslon Text",
        +                "Libre Franklin",
        +                "Licorice",
        +                "Life Savers",
        +                "Lilex",
        +                "Lilita One",
        +                "Lily Script One",
        +                "Limelight",
        +                "Linden Hill",
        +                "Linefont",
        +                "Lisu Bosa",
        +                "Liter",
        +                "Literata",
        +                "Liu Jian Mao Cao",
        +                "Livvic",
        +                "Lobster",
        +                "Lobster Two",
        +                "Londrina Outline",
        +                "Londrina Shadow",
        +                "Londrina Sketch",
        +                "Londrina Solid",
        +                "Long Cang",
        +                "Lora",
        +                "Love Light",
        +                "Love Ya Like A Sister",
        +                "Loved by the King",
        +                "Lovers Quarrel",
        +                "Luckiest Guy",
        +                "Lugrasimo",
        +                "Lumanosimo",
        +                "Lunasima",
        +                "Lusitana",
        +                "Lustria",
        +                "Luxurious Roman",
        +                "Luxurious Script",
        +                "M PLUS 1",
        +                "M PLUS 1 Code",
        +                "M PLUS 1p",
        +                "M PLUS 2",
        +                "M PLUS Code Latin",
        +                "M PLUS Rounded 1c",
        +                "M PLUS U",
        +                "Ma Shan Zheng",
        +                "Macondo",
        +                "Macondo Swash Caps",
        +                "Mada",
        +                "Madimi One",
        +                "Magra",
        +                "Maiden Orange",
        +                "Maitree",
        +                "Major Mono Display",
        +                "Mako",
        +                "Mali",
        +                "Mallanna",
        +                "Maname",
        +                "Mandali",
        +                "Manjari",
        +                "Manrope",
        +                "Mansalva",
        +                "Manuale",
        +                "Manufacturing Consent",
        +                "Marcellus",
        +                "Marcellus SC",
        +                "Marck Script",
        +                "Margarine",
        +                "Marhey",
        +                "Markazi Text",
        +                "Marko One",
        +                "Marmelad",
        +                "Martel",
        +                "Martel Sans",
        +                "Martian Mono",
        +                "Marvel",
        +                "Matangi",
        +                "Mate",
        +                "Mate SC",
        +                "Matemasie",
        +                "Material Icons",
        +                "Material Icons Outlined",
        +                "Material Icons Round",
        +                "Material Icons Sharp",
        +                "Material Icons Two Tone",
        +                "Material Symbols",
        +                "Material Symbols Outlined",
        +                "Material Symbols Rounded",
        +                "Material Symbols Sharp",
        +                "Maven Pro",
        +                "McLaren",
        +                "Mea Culpa",
        +                "Meddon",
        +                "MedievalSharp",
        +                "Medula One",
        +                "Meera Inimai",
        +                "Megrim",
        +                "Meie Script",
        +                "Menbere",
        +                "Meow Script",
        +                "Merienda",
        +                "Merriweather",
        +                "Merriweather Sans",
        +                "Metal",
        +                "Metal Mania",
        +                "Metamorphous",
        +                "Metrophobic",
        +                "Michroma",
        +                "Micro 5",
        +                "Micro 5 Charted",
        +                "Milonga",
        +                "Miltonian",
        +                "Miltonian Tattoo",
        +                "Mina",
        +                "Mingzat",
        +                "Miniver",
        +                "Miranda Sans",
        +                "Miriam Libre",
        +                "Mirza",
        +                "Miss Fajardose",
        +                "Mitr",
        +                "Mochiy Pop One",
        +                "Mochiy Pop P One",
        +                "Modak",
        +                "Modern Antiqua",
        +                "Moderustic",
        +                "Mogra",
        +                "Mohave",
        +                "Moirai One",
        +                "Molengo",
        +                "Molle",
        +                "Momo Signature",
        +                "Momo Trust Display",
        +                "Momo Trust Sans",
        +                "Mona Sans",
        +                "Monda",
        +                "Monofett",
        +                "Monomakh",
        +                "Monomaniac One",
        +                "Monoton",
        +                "Monsieur La Doulaise",
        +                "Montaga",
        +                "Montagu Slab",
        +                "MonteCarlo",
        +                "Montenegrin Gothic One",
        +                "Montez",
        +                "Montserrat",
        +                "Montserrat Alternates",
        +                "Montserrat Underline",
        +                "Moo Lah Lah",
        +                "Mooli",
        +                "Moon Dance",
        +                "Moul",
        +                "Moulpali",
        +                "Mountains of Christmas",
        +                "Mouse Memoirs",
        +                "Mozilla Headline",
        +                "Mozilla Text",
        +                "Mr Bedfort",
        +                "Mr Dafoe",
        +                "Mr De Haviland",
        +                "Mrs Saint Delafield",
        +                "Mrs Sheppards",
        +                "Ms Madi",
        +                "Mukta",
        +                "Mukta Mahee",
        +                "Mukta Malar",
        +                "Mukta Vaani",
        +                "Mulish",
        +                "Murecho",
        +                "MuseoModerno",
        +                "My Soul",
        +                "Mynerve",
        +                "Mystery Quest",
        +                "NTR",
        +                "Nabla",
        +                "Namdhinggo",
        +                "Nanum Brush Script",
        +                "Nanum Gothic",
        +                "Nanum Gothic Coding",
        +                "Nanum Myeongjo",
        +                "Nanum Pen Script",
        +                "Narnoor",
        +                "Nata Sans",
        +                "National Park",
        +                "Neonderthaw",
        +                "Nerko One",
        +                "Neucha",
        +                "Neuton",
        +                "New Amsterdam",
        +                "New Rocker",
        +                "New Tegomin",
        +                "News Cycle",
        +                "Newsreader",
        +                "Niconne",
        +                "Niramit",
        +                "Nixie One",
        +                "Nobile",
        +                "Nokora",
        +                "Norican",
        +                "Nosifer",
        +                "Notable",
        +                "Nothing You Could Do",
        +                "Noticia Text",
        +                "Noto Color Emoji",
        +                "Noto Emoji",
        +                "Noto Kufi Arabic",
        +                "Noto Music",
        +                "Noto Naskh Arabic",
        +                "Noto Nastaliq Urdu",
        +                "Noto Rashi Hebrew",
        +                "Noto Sans",
        +                "Noto Sans Adlam",
        +                "Noto Sans Adlam Unjoined",
        +                "Noto Sans Anatolian Hieroglyphs",
        +                "Noto Sans Arabic",
        +                "Noto Sans Armenian",
        +                "Noto Sans Avestan",
        +                "Noto Sans Balinese",
        +                "Noto Sans Bamum",
        +                "Noto Sans Bassa Vah",
        +                "Noto Sans Batak",
        +                "Noto Sans Bengali",
        +                "Noto Sans Bhaiksuki",
        +                "Noto Sans Brahmi",
        +                "Noto Sans Buginese",
        +                "Noto Sans Buhid",
        +                "Noto Sans Canadian Aboriginal",
        +                "Noto Sans Carian",
        +                "Noto Sans Caucasian Albanian",
        +                "Noto Sans Chakma",
        +                "Noto Sans Cham",
        +                "Noto Sans Cherokee",
        +                "Noto Sans Chorasmian",
        +                "Noto Sans Coptic",
        +                "Noto Sans Cuneiform",
        +                "Noto Sans Cypriot",
        +                "Noto Sans Cypro Minoan",
        +                "Noto Sans Deseret",
        +                "Noto Sans Devanagari",
        +                "Noto Sans Display",
        +                "Noto Sans Duployan",
        +                "Noto Sans Egyptian Hieroglyphs",
        +                "Noto Sans Elbasan",
        +                "Noto Sans Elymaic",
        +                "Noto Sans Ethiopic",
        +                "Noto Sans Georgian",
        +                "Noto Sans Glagolitic",
        +                "Noto Sans Gothic",
        +                "Noto Sans Grantha",
        +                "Noto Sans Gujarati",
        +                "Noto Sans Gunjala Gondi",
        +                "Noto Sans Gurmukhi",
        +                "Noto Sans HK",
        +                "Noto Sans Hanifi Rohingya",
        +                "Noto Sans Hanunoo",
        +                "Noto Sans Hatran",
        +                "Noto Sans Hebrew",
        +                "Noto Sans Imperial Aramaic",
        +                "Noto Sans Indic Siyaq Numbers",
        +                "Noto Sans Inscriptional Pahlavi",
        +                "Noto Sans Inscriptional Parthian",
        +                "Noto Sans JP",
        +                "Noto Sans Javanese",
        +                "Noto Sans KR",
        +                "Noto Sans Kaithi",
        +                "Noto Sans Kannada",
        +                "Noto Sans Kawi",
        +                "Noto Sans Kayah Li",
        +                "Noto Sans Kharoshthi",
        +                "Noto Sans Khmer",
        +                "Noto Sans Khojki",
        +                "Noto Sans Khudawadi",
        +                "Noto Sans Lao",
        +                "Noto Sans Lao Looped",
        +                "Noto Sans Lepcha",
        +                "Noto Sans Limbu",
        +                "Noto Sans Linear A",
        +                "Noto Sans Linear B",
        +                "Noto Sans Lisu",
        +                "Noto Sans Lycian",
        +                "Noto Sans Lydian",
        +                "Noto Sans Mahajani",
        +                "Noto Sans Malayalam",
        +                "Noto Sans Mandaic",
        +                "Noto Sans Manichaean",
        +                "Noto Sans Marchen",
        +                "Noto Sans Masaram Gondi",
        +                "Noto Sans Math",
        +                "Noto Sans Mayan Numerals",
        +                "Noto Sans Medefaidrin",
        +                "Noto Sans Meetei Mayek",
        +                "Noto Sans Mende Kikakui",
        +                "Noto Sans Meroitic",
        +                "Noto Sans Miao",
        +                "Noto Sans Modi",
        +                "Noto Sans Mongolian",
        +                "Noto Sans Mono",
        +                "Noto Sans Mro",
        +                "Noto Sans Multani",
        +                "Noto Sans Myanmar",
        +                "Noto Sans NKo",
        +                "Noto Sans NKo Unjoined",
        +                "Noto Sans Nabataean",
        +                "Noto Sans Nag Mundari",
        +                "Noto Sans Nandinagari",
        +                "Noto Sans New Tai Lue",
        +                "Noto Sans Newa",
        +                "Noto Sans Nushu",
        +                "Noto Sans Ogham",
        +                "Noto Sans Ol Chiki",
        +                "Noto Sans Old Hungarian",
        +                "Noto Sans Old Italic",
        +                "Noto Sans Old North Arabian",
        +                "Noto Sans Old Permic",
        +                "Noto Sans Old Persian",
        +                "Noto Sans Old Sogdian",
        +                "Noto Sans Old South Arabian",
        +                "Noto Sans Old Turkic",
        +                "Noto Sans Oriya",
        +                "Noto Sans Osage",
        +                "Noto Sans Osmanya",
        +                "Noto Sans Pahawh Hmong",
        +                "Noto Sans Palmyrene",
        +                "Noto Sans Pau Cin Hau",
        +                "Noto Sans PhagsPa",
        +                "Noto Sans Phoenician",
        +                "Noto Sans Psalter Pahlavi",
        +                "Noto Sans Rejang",
        +                "Noto Sans Runic",
        +                "Noto Sans SC",
        +                "Noto Sans Samaritan",
        +                "Noto Sans Saurashtra",
        +                "Noto Sans Sharada",
        +                "Noto Sans Shavian",
        +                "Noto Sans Siddham",
        +                "Noto Sans SignWriting",
        +                "Noto Sans Sinhala",
        +                "Noto Sans Sogdian",
        +                "Noto Sans Sora Sompeng",
        +                "Noto Sans Soyombo",
        +                "Noto Sans Sundanese",
        +                "Noto Sans Sunuwar",
        +                "Noto Sans Syloti Nagri",
        +                "Noto Sans Symbols",
        +                "Noto Sans Symbols 2",
        +                "Noto Sans Syriac",
        +                "Noto Sans Syriac Eastern",
        +                "Noto Sans Syriac Western",
        +                "Noto Sans TC",
        +                "Noto Sans Tagalog",
        +                "Noto Sans Tagbanwa",
        +                "Noto Sans Tai Le",
        +                "Noto Sans Tai Tham",
        +                "Noto Sans Tai Viet",
        +                "Noto Sans Takri",
        +                "Noto Sans Tamil",
        +                "Noto Sans Tamil Supplement",
        +                "Noto Sans Tangsa",
        +                "Noto Sans Telugu",
        +                "Noto Sans Thaana",
        +                "Noto Sans Thai",
        +                "Noto Sans Thai Looped",
        +                "Noto Sans Tifinagh",
        +                "Noto Sans Tirhuta",
        +                "Noto Sans Ugaritic",
        +                "Noto Sans Vai",
        +                "Noto Sans Vithkuqi",
        +                "Noto Sans Wancho",
        +                "Noto Sans Warang Citi",
        +                "Noto Sans Yi",
        +                "Noto Sans Zanabazar Square",
        +                "Noto Serif",
        +                "Noto Serif Ahom",
        +                "Noto Serif Armenian",
        +                "Noto Serif Balinese",
        +                "Noto Serif Bengali",
        +                "Noto Serif Devanagari",
        +                "Noto Serif Display",
        +                "Noto Serif Dives Akuru",
        +                "Noto Serif Dogra",
        +                "Noto Serif Ethiopic",
        +                "Noto Serif Georgian",
        +                "Noto Serif Grantha",
        +                "Noto Serif Gujarati",
        +                "Noto Serif Gurmukhi",
        +                "Noto Serif HK",
        +                "Noto Serif Hebrew",
        +                "Noto Serif Hentaigana",
        +                "Noto Serif JP",
        +                "Noto Serif KR",
        +                "Noto Serif Kannada",
        +                "Noto Serif Khitan Small Script",
        +                "Noto Serif Khmer",
        +                "Noto Serif Khojki",
        +                "Noto Serif Lao",
        +                "Noto Serif Makasar",
        +                "Noto Serif Malayalam",
        +                "Noto Serif Myanmar",
        +                "Noto Serif NP Hmong",
        +                "Noto Serif Old Uyghur",
        +                "Noto Serif Oriya",
        +                "Noto Serif Ottoman Siyaq",
        +                "Noto Serif SC",
        +                "Noto Serif Sinhala",
        +                "Noto Serif TC",
        +                "Noto Serif Tamil",
        +                "Noto Serif Tangut",
        +                "Noto Serif Telugu",
        +                "Noto Serif Thai",
        +                "Noto Serif Tibetan",
        +                "Noto Serif Todhri",
        +                "Noto Serif Toto",
        +                "Noto Serif Vithkuqi",
        +                "Noto Serif Yezidi",
        +                "Noto Traditional Nushu",
        +                "Noto Znamenny Musical Notation",
        +                "Nova Cut",
        +                "Nova Flat",
        +                "Nova Mono",
        +                "Nova Oval",
        +                "Nova Round",
        +                "Nova Script",
        +                "Nova Slim",
        +                "Nova Square",
        +                "Numans",
        +                "Nunito",
        +                "Nunito Sans",
        +                "Nuosu SIL",
        +                "Odibee Sans",
        +                "Odor Mean Chey",
        +                "Offside",
        +                "Oi",
        +                "Ojuju",
        +                "Old Standard TT",
        +                "Oldenburg",
        +                "Ole",
        +                "Oleo Script",
        +                "Oleo Script Swash Caps",
        +                "Onest",
        +                "Oooh Baby",
        +                "Open Sans",
        +                "Oranienbaum",
        +                "Orbit",
        +                "Orbitron",
        +                "Oregano",
        +                "Orelega One",
        +                "Orienta",
        +                "Original Surfer",
        +                "Oswald",
        +                "Outfit",
        +                "Over the Rainbow",
        +                "Overlock",
        +                "Overlock SC",
        +                "Overpass",
        +                "Overpass Mono",
        +                "Ovo",
        +                "Oxanium",
        +                "Oxygen",
        +                "Oxygen Mono",
        +                "PT Mono",
        +                "PT Sans",
        +                "PT Sans Caption",
        +                "PT Sans Narrow",
        +                "PT Serif",
        +                "PT Serif Caption",
        +                "Pacifico",
        +                "Padauk",
        +                "Padyakke Expanded One",
        +                "Palanquin",
        +                "Palanquin Dark",
        +                "Palette Mosaic",
        +                "Pangolin",
        +                "Paprika",
        +                "Parastoo",
        +                "Parisienne",
        +                "Parkinsans",
        +                "Passero One",
        +                "Passion One",
        +                "Passions Conflict",
        +                "Pathway Extreme",
        +                "Pathway Gothic One",
        +                "Patrick Hand",
        +                "Patrick Hand SC",
        +                "Pattaya",
        +                "Patua One",
        +                "Pavanam",
        +                "Paytone One",
        +                "Peddana",
        +                "Peralta",
        +                "Permanent Marker",
        +                "Petemoss",
        +                "Petit Formal Script",
        +                "Petrona",
        +                "Phetsarath",
        +                "Philosopher",
        +                "Phudu",
        +                "Piazzolla",
        +                "Piedra",
        +                "Pinyon Script",
        +                "Pirata One",
        +                "Pixelify Sans",
        +                "Plaster",
        +                "Platypi",
        +                "Play",
        +                "Playball",
        +                "Playfair",
        +                "Playfair Display",
        +                "Playfair Display SC",
        +                "Playpen Sans",
        +                "Playpen Sans Arabic",
        +                "Playpen Sans Deva",
        +                "Playpen Sans Hebrew",
        +                "Playpen Sans Thai",
        +                "Playwrite AR",
        +                "Playwrite AR Guides",
        +                "Playwrite AT",
        +                "Playwrite AT Guides",
        +                "Playwrite AU NSW",
        +                "Playwrite AU NSW Guides",
        +                "Playwrite AU QLD",
        +                "Playwrite AU QLD Guides",
        +                "Playwrite AU SA",
        +                "Playwrite AU SA Guides",
        +                "Playwrite AU TAS",
        +                "Playwrite AU TAS Guides",
        +                "Playwrite AU VIC",
        +                "Playwrite AU VIC Guides",
        +                "Playwrite BE VLG",
        +                "Playwrite BE VLG Guides",
        +                "Playwrite BE WAL",
        +                "Playwrite BE WAL Guides",
        +                "Playwrite BR",
        +                "Playwrite BR Guides",
        +                "Playwrite CA",
        +                "Playwrite CA Guides",
        +                "Playwrite CL",
        +                "Playwrite CL Guides",
        +                "Playwrite CO",
        +                "Playwrite CO Guides",
        +                "Playwrite CU",
        +                "Playwrite CU Guides",
        +                "Playwrite CZ",
        +                "Playwrite CZ Guides",
        +                "Playwrite DE Grund",
        +                "Playwrite DE Grund Guides",
        +                "Playwrite DE LA",
        +                "Playwrite DE LA Guides",
        +                "Playwrite DE SAS",
        +                "Playwrite DE SAS Guides",
        +                "Playwrite DE VA",
        +                "Playwrite DE VA Guides",
        +                "Playwrite DK Loopet",
        +                "Playwrite DK Loopet Guides",
        +                "Playwrite DK Uloopet",
        +                "Playwrite DK Uloopet Guides",
        +                "Playwrite ES",
        +                "Playwrite ES Deco",
        +                "Playwrite ES Deco Guides",
        +                "Playwrite ES Guides",
        +                "Playwrite FR Moderne",
        +                "Playwrite FR Moderne Guides",
        +                "Playwrite FR Trad",
        +                "Playwrite FR Trad Guides",
        +                "Playwrite GB J",
        +                "Playwrite GB J Guides",
        +                "Playwrite GB S",
        +                "Playwrite GB S Guides",
        +                "Playwrite HR",
        +                "Playwrite HR Guides",
        +                "Playwrite HR Lijeva",
        +                "Playwrite HR Lijeva Guides",
        +                "Playwrite HU",
        +                "Playwrite HU Guides",
        +                "Playwrite ID",
        +                "Playwrite ID Guides",
        +                "Playwrite IE",
        +                "Playwrite IE Guides",
        +                "Playwrite IN",
        +                "Playwrite IN Guides",
        +                "Playwrite IS",
        +                "Playwrite IS Guides",
        +                "Playwrite IT Moderna",
        +                "Playwrite IT Moderna Guides",
        +                "Playwrite IT Trad",
        +                "Playwrite IT Trad Guides",
        +                "Playwrite MX",
        +                "Playwrite MX Guides",
        +                "Playwrite NG Modern",
        +                "Playwrite NG Modern Guides",
        +                "Playwrite NL",
        +                "Playwrite NL Guides",
        +                "Playwrite NO",
        +                "Playwrite NO Guides",
        +                "Playwrite NZ",
        +                "Playwrite NZ Basic",
        +                "Playwrite NZ Basic Guides",
        +                "Playwrite NZ Guides",
        +                "Playwrite PE",
        +                "Playwrite PE Guides",
        +                "Playwrite PL",
        +                "Playwrite PL Guides",
        +                "Playwrite PT",
        +                "Playwrite PT Guides",
        +                "Playwrite RO",
        +                "Playwrite RO Guides",
        +                "Playwrite SK",
        +                "Playwrite SK Guides",
        +                "Playwrite TZ",
        +                "Playwrite TZ Guides",
        +                "Playwrite US Modern",
        +                "Playwrite US Modern Guides",
        +                "Playwrite US Trad",
        +                "Playwrite US Trad Guides",
        +                "Playwrite VN",
        +                "Playwrite VN Guides",
        +                "Playwrite ZA",
        +                "Playwrite ZA Guides",
        +                "Pliant",
        +                "Plus Jakarta Sans",
        +                "Pochaevsk",
        +                "Podkova",
        +                "Poetsen One",
        +                "Poiret One",
        +                "Poller One",
        +                "Poltawski Nowy",
        +                "Poly",
        +                "Pompiere",
        +                "Ponnala",
        +                "Ponomar",
        +                "Pontano Sans",
        +                "Poor Story",
        +                "Poppins",
        +                "Port Lligat Sans",
        +                "Port Lligat Slab",
        +                "Potta One",
        +                "Pragati Narrow",
        +                "Praise",
        +                "Prata",
        +                "Preahvihear",
        +                "Press Start 2P",
        +                "Pridi",
        +                "Princess Sofia",
        +                "Prociono",
        +                "Prompt",
        +                "Prosto One",
        +                "Protest Guerrilla",
        +                "Protest Revolution",
        +                "Protest Riot",
        +                "Protest Strike",
        +                "Proza Libre",
        +                "Public Sans",
        +                "Puppies Play",
        +                "Puritan",
        +                "Purple Purse",
        +                "Qahiri",
        +                "Quando",
        +                "Quantico",
        +                "Quattrocento",
        +                "Quattrocento Sans",
        +                "Questrial",
        +                "Quicksand",
        +                "Quintessential",
        +                "Qwigley",
        +                "Qwitcher Grypen",
        +                "REM",
        +                "Racing Sans One",
        +                "Radio Canada",
        +                "Radio Canada Big",
        +                "Radley",
        +                "Rajdhani",
        +                "Rakkas",
        +                "Raleway",
        +                "Raleway Dots",
        +                "Ramabhadra",
        +                "Ramaraja",
        +                "Rambla",
        +                "Rammetto One",
        +                "Rampart One",
        +                "Ramsina",
        +                "Ranchers",
        +                "Rancho",
        +                "Ranga",
        +                "Rasa",
        +                "Rationale",
        +                "Ravi Prakash",
        +                "Readex Pro",
        +                "Recursive",
        +                "Red Hat Display",
        +                "Red Hat Mono",
        +                "Red Hat Text",
        +                "Red Rose",
        +                "Redacted",
        +                "Redacted Script",
        +                "Reddit Mono",
        +                "Reddit Sans",
        +                "Reddit Sans Condensed",
        +                "Redressed",
        +                "Reem Kufi",
        +                "Reem Kufi Fun",
        +                "Reem Kufi Ink",
        +                "Reenie Beanie",
        +                "Reggae One",
        +                "Rethink Sans",
        +                "Revalia",
        +                "Rhodium Libre",
        +                "Ribeye",
        +                "Ribeye Marrow",
        +                "Righteous",
        +                "Risque",
        +                "Road Rage",
        +                "Roboto",
        +                "Roboto Condensed",
        +                "Roboto Flex",
        +                "Roboto Mono",
        +                "Roboto Serif",
        +                "Roboto Slab",
        +                "Rochester",
        +                "Rock 3D",
        +                "Rock Salt",
        +                "RocknRoll One",
        +                "Rokkitt",
        +                "Romanesco",
        +                "Ropa Sans",
        +                "Rosario",
        +                "Rosarivo",
        +                "Rouge Script",
        +                "Rowdies",
        +                "Rozha One",
        +                "Rubik",
        +                "Rubik 80s Fade",
        +                "Rubik Beastly",
        +                "Rubik Broken Fax",
        +                "Rubik Bubbles",
        +                "Rubik Burned",
        +                "Rubik Dirt",
        +                "Rubik Distressed",
        +                "Rubik Doodle Shadow",
        +                "Rubik Doodle Triangles",
        +                "Rubik Gemstones",
        +                "Rubik Glitch",
        +                "Rubik Glitch Pop",
        +                "Rubik Iso",
        +                "Rubik Lines",
        +                "Rubik Maps",
        +                "Rubik Marker Hatch",
        +                "Rubik Maze",
        +                "Rubik Microbe",
        +                "Rubik Mono One",
        +                "Rubik Moonrocks",
        +                "Rubik Pixels",
        +                "Rubik Puddles",
        +                "Rubik Scribble",
        +                "Rubik Spray Paint",
        +                "Rubik Storm",
        +                "Rubik Vinyl",
        +                "Rubik Wet Paint",
        +                "Ruda",
        +                "Rufina",
        +                "Ruge Boogie",
        +                "Ruluko",
        +                "Rum Raisin",
        +                "Ruslan Display",
        +                "Russo One",
        +                "Ruthie",
        +                "Ruwudu",
        +                "Rye",
        +                "SN Pro",
        +                "STIX Two Math",
        +                "STIX Two Text",
        +                "SUSE",
        +                "SUSE Mono",
        +                "Sacramento",
        +                "Sahitya",
        +                "Sail",
        +                "Saira",
        +                "Saira Condensed",
        +                "Saira Extra Condensed",
        +                "Saira Semi Condensed",
        +                "Saira Stencil",
        +                "Salsa",
        +                "Sanchez",
        +                "Sancreek",
        +                "Sankofa Display",
        +                "Sansation",
        +                "Sansita",
        +                "Sansita Swashed",
        +                "Sarabun",
        +                "Sarala",
        +                "Sarina",
        +                "Sarpanch",
        +                "Sassy Frass",
        +                "Satisfy",
        +                "Savate",
        +                "Sawarabi Gothic",
        +                "Sawarabi Mincho",
        +                "Scada",
        +                "Scheherazade New",
        +                "Schibsted Grotesk",
        +                "Schoolbell",
        +                "Science Gothic",
        +                "Scope One",
        +                "Seaweed Script",
        +                "Secular One",
        +                "Sedan",
        +                "Sedan SC",
        +                "Sedgwick Ave",
        +                "Sedgwick Ave Display",
        +                "Sekuya",
        +                "Sen",
        +                "Send Flowers",
        +                "Sevillana",
        +                "Seymour One",
        +                "Shadows Into Light",
        +                "Shadows Into Light Two",
        +                "Shafarik",
        +                "Shalimar",
        +                "Shantell Sans",
        +                "Shanti",
        +                "Share",
        +                "Share Tech",
        +                "Share Tech Mono",
        +                "Shippori Antique",
        +                "Shippori Antique B1",
        +                "Shippori Mincho",
        +                "Shippori Mincho B1",
        +                "Shizuru",
        +                "Shojumaru",
        +                "Short Stack",
        +                "Shrikhand",
        +                "Siemreap",
        +                "Sigmar",
        +                "Sigmar One",
        +                "Signika",
        +                "Signika Negative",
        +                "Silkscreen",
        +                "Simonetta",
        +                "Single Day",
        +                "Sintony",
        +                "Sirin Stencil",
        +                "Sirivennela",
        +                "Six Caps",
        +                "Sixtyfour",
        +                "Sixtyfour Convergence",
        +                "Skranji",
        +                "Slabo 13px",
        +                "Slabo 27px",
        +                "Slackey",
        +                "Slackside One",
        +                "Smokum",
        +                "Smooch",
        +                "Smooch Sans",
        +                "Smythe",
        +                "Sniglet",
        +                "Snippet",
        +                "Snowburst One",
        +                "Sofadi One",
        +                "Sofia",
        +                "Sofia Sans",
        +                "Sofia Sans Condensed",
        +                "Sofia Sans Extra Condensed",
        +                "Sofia Sans Semi Condensed",
        +                "Solitreo",
        +                "Solway",
        +                "Sometype Mono",
        +                "Song Myung",
        +                "Sono",
        +                "Sonsie One",
        +                "Sora",
        +                "Sorts Mill Goudy",
        +                "Sour Gummy",
        +                "Source Code Pro",
        +                "Source Sans 3",
        +                "Source Serif 4",
        +                "Space Grotesk",
        +                "Space Mono",
        +                "Special Elite",
        +                "Special Gothic",
        +                "Special Gothic Condensed One",
        +                "Special Gothic Expanded One",
        +                "Spectral",
        +                "Spectral SC",
        +                "Spicy Rice",
        +                "Spinnaker",
        +                "Spirax",
        +                "Splash",
        +                "Spline Sans",
        +                "Spline Sans Mono",
        +                "Squada One",
        +                "Square Peg",
        +                "Sree Krushnadevaraya",
        +                "Sriracha",
        +                "Srisakdi",
        +                "Staatliches",
        +                "Stack Sans Headline",
        +                "Stack Sans Notch",
        +                "Stack Sans Text",
        +                "Stalemate",
        +                "Stalinist One",
        +                "Stardos Stencil",
        +                "Stick",
        +                "Stick No Bills",
        +                "Stint Ultra Condensed",
        +                "Stint Ultra Expanded",
        +                "Stoke",
        +                "Story Script",
        +                "Strait",
        +                "Strichpunkt Sans",
        +                "Style Script",
        +                "Stylish",
        +                "Sue Ellen Francisco",
        +                "Suez One",
        +                "Sulphur Point",
        +                "Sumana",
        +                "Sunflower",
        +                "Sunshiney",
        +                "Supermercado One",
        +                "Sura",
        +                "Suranna",
        +                "Suravaram",
        +                "Suwannaphum",
        +                "Swanky and Moo Moo",
        +                "Syncopate",
        +                "Syne",
        +                "Syne Mono",
        +                "Syne Tactile",
        +                "TASA Explorer",
        +                "TASA Orbiter",
        +                "Tac One",
        +                "Tagesschrift",
        +                "Tai Heritage Pro",
        +                "Tajawal",
        +                "Tangerine",
        +                "Tapestry",
        +                "Taprom",
        +                "Tauri",
        +                "Taviraj",
        +                "Teachers",
        +                "Teko",
        +                "Tektur",
        +                "Telex",
        +                "Tenali Ramakrishna",
        +                "Tenor Sans",
        +                "Text Me One",
        +                "Texturina",
        +                "Thasadith",
        +                "The Girl Next Door",
        +                "The Nautigal",
        +                "Tienne",
        +                "TikTok Sans",
        +                "Tillana",
        +                "Tilt Neon",
        +                "Tilt Prism",
        +                "Tilt Warp",
        +                "Timmana",
        +                "Tinos",
        +                "Tiny5",
        +                "Tiro Bangla",
        +                "Tiro Devanagari Hindi",
        +                "Tiro Devanagari Marathi",
        +                "Tiro Devanagari Sanskrit",
        +                "Tiro Gurmukhi",
        +                "Tiro Kannada",
        +                "Tiro Tamil",
        +                "Tiro Telugu",
        +                "Tirra",
        +                "Titan One",
        +                "Titillium Web",
        +                "Tomorrow",
        +                "Tourney",
        +                "Trade Winds",
        +                "Train One",
        +                "Triodion",
        +                "Trirong",
        +                "Trispace",
        +                "Trocchi",
        +                "Trochut",
        +                "Truculenta",
        +                "Trykker",
        +                "Tsukimi Rounded",
        +                "Tuffy",
        +                "Tulpen One",
        +                "Turret Road",
        +                "Twinkle Star",
        +                "Ubuntu",
        +                "Ubuntu Condensed",
        +                "Ubuntu Mono",
        +                "Ubuntu Sans",
        +                "Ubuntu Sans Mono",
        +                "Uchen",
        +                "Ultra",
        +                "Unbounded",
        +                "Uncial Antiqua",
        +                "Underdog",
        +                "Unica One",
        +                "UnifrakturCook",
        +                "UnifrakturMaguntia",
        +                "Unkempt",
        +                "Unlock",
        +                "Unna",
        +                "UoqMunThenKhung",
        +                "Updock",
        +                "Urbanist",
        +                "VT323",
        +                "Vampiro One",
        +                "Varela",
        +                "Varela Round",
        +                "Varta",
        +                "Vast Shadow",
        +                "Vazirmatn",
        +                "Vend Sans",
        +                "Vesper Libre",
        +                "Viaoda Libre",
        +                "Vibes",
        +                "Vibur",
        +                "Victor Mono",
        +                "Vidaloka",
        +                "Viga",
        +                "Vina Sans",
        +                "Voces",
        +                "Volkhov",
        +                "Vollkorn",
        +                "Vollkorn SC",
        +                "Voltaire",
        +                "Vujahday Script",
        +                "WDXL Lubrifont JP N",
        +                "WDXL Lubrifont SC",
        +                "WDXL Lubrifont TC",
        +                "Waiting for the Sunrise",
        +                "Wallpoet",
        +                "Walter Turncoat",
        +                "Warnes",
        +                "Water Brush",
        +                "Waterfall",
        +                "Wavefont",
        +                "Wellfleet",
        +                "Wendy One",
        +                "Whisper",
        +                "WindSong",
        +                "Winky Rough",
        +                "Winky Sans",
        +                "Wire One",
        +                "Wittgenstein",
        +                "Wix Madefor Display",
        +                "Wix Madefor Text",
        +                "Work Sans",
        +                "Workbench",
        +                "Xanh Mono",
        +                "Yaldevi",
        +                "Yanone Kaffeesatz",
        +                "Yantramanav",
        +                "Yarndings 12",
        +                "Yarndings 12 Charted",
        +                "Yarndings 20",
        +                "Yarndings 20 Charted",
        +                "Yatra One",
        +                "Yellowtail",
        +                "Yeon Sung",
        +                "Yeseva One",
        +                "Yesteryear",
        +                "Yomogi",
        +                "Young Serif",
        +                "Yrsa",
        +                "Ysabeau",
        +                "Ysabeau Infant",
        +                "Ysabeau Office",
        +                "Ysabeau SC",
        +                "Yuji Boku",
        +                "Yuji Hentaigana Akari",
        +                "Yuji Hentaigana Akebono",
        +                "Yuji Mai",
        +                "Yuji Syuku",
        +                "Yusei Magic",
        +                "Yuyu",
        +                "Yuyu Short",
        +                "ZCOOL KuaiLe",
        +                "ZCOOL QingKe HuangYou",
        +                "ZCOOL XiaoWei",
        +                "Zain",
        +                "Zalando Sans",
        +                "Zalando Sans Expanded",
        +                "Zalando Sans SemiExpanded",
        +                "Zen Antique",
        +                "Zen Antique Soft",
        +                "Zen Dots",
        +                "Zen Kaku Gothic Antique",
        +                "Zen Kaku Gothic New",
        +                "Zen Kurenaido",
        +                "Zen Loop",
        +                "Zen Maru Gothic",
        +                "Zen Old Mincho",
        +                "Zen Tokyo Zoo",
        +                "Zeyada",
        +                "Zhi Mang Xing",
        +                "Zilla Slab",
        +                "Zilla Slab Highlight"
        +              ],
        +              "type": "string"
        +            },
        +            "fontSize": {
        +              "type": "number"
        +            },
        +            "footerColor": {
        +              "type": "string"
        +            },
        +            "footerFontSize": {
        +              "type": "number"
        +            },
        +            "footerGap": {
        +              "type": "number"
        +            },
        +            "footerLinkColor": {
        +              "type": "string"
        +            },
        +            "gridColor": {
        +              "type": "string"
        +            },
        +            "gridLineWidth": {
        +              "type": "number"
        +            },
        +            "gridLines": {
        +              "enum": [
        +                "none",
        +                "value",
        +                "both"
        +              ],
        +              "type": "string"
        +            },
        +            "headerGap": {
        +              "type": "number"
        +            },
        +            "labelColor": {
        +              "type": "string"
        +            },
        +            "labelFontSize": {
        +              "type": "number"
        +            },
        +            "labelFontWeight": {
        +              "type": "string"
        +            },
        +            "labelHaloWidth": {
        +              "type": "number"
        +            },
        +            "labelMutedFontWeight": {
        +              "type": "string"
        +            },
        +            "labelMutedOpacity": {
        +              "type": "number"
        +            },
        +            "lineStrokeWidth": {
        +              "type": "number"
        +            },
        +            "numericFontFamily": {
        +              "type": "string"
        +            },
        +            "pieCornerRadius": {
        +              "type": "number"
        +            },
        +            "sequentialRange": {
        +              "items": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "string"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "subtitleColor": {
        +              "type": "string"
        +            },
        +            "subtitleFontSize": {
        +              "type": "number"
        +            },
        +            "tickDensity": {
        +              "type": "number"
        +            },
        +            "tickLabelColor": {
        +              "type": "string"
        +            },
        +            "tickLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "tickPadding": {
        +              "type": "number"
        +            },
        +            "tickSize": {
        +              "type": "number"
        +            },
        +            "titleColor": {
        +              "type": "string"
        +            },
        +            "titleFontFamily": {
        +              "type": "string"
        +            },
        +            "titleFontSize": {
        +              "type": "number"
        +            },
        +            "titleFontWeight": {
        +              "type": "string"
        +            },
        +            "titleSubtitleGap": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "title": {
        +          "type": "string"
        +        },
        +        "version": {
        +          "const": "2026-03-20",
        +          "type": "string"
        +        },
        +        "width": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "x": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "y": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        }
        +      },
        +      "required": [
        +        "version",
        +        "format",
        +        "marks"
        +      ],
        +      "title": "Szum Chart Configuration",
        +      "type": "object"
        +    },
        +    "valid": {
        +      "type": "boolean"
        +    }
        +  },
        +  "required": [
        +    "valid",
        +    "message",
        +    "errors",
        +    "diagnostics"
        +  ],
        +  "type": "object"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "title",
        -  "imageUrl",
        -  "format",
        -  "mimeType",
        -  "expiresAt"
        -]New value: +[
        +  "view",
        +  "title",
        +  "imageUrl",
        +  "format",
        +  "mimeType",
        +  "expiresAt",
        +  "validation"
        +]
    • Changedsave_chart6 fields changed
      • addedInput schema / properties / acknowledgeWarnings
        Added value: +{
        +  "description": "Set true only after the user explicitly approves every warning returned for this exact config",
        +  "type": "boolean"
        +}
      • addedInput schema / properties / idempotencyKey
        Added value: +{
        +  "description": "Stable retry key of at most 255 characters; reuse only for the exact same config",
        +  "maxLength": 255,
        +  "minLength": 1,
        +  "type": "string"
        +}
      • changedOutput schema / properties / format / enum
        Previous value: -[
        -  "png",
        -  "svg"
        -]New value: +[
        +  "svg",
        +  "png"
        +]
      • changedOutput schema / properties / mimeType / enum
        Previous value: -[
        -  "image/png",
        -  "image/svg+xml"
        -]New value: +[
        +  "image/svg+xml",
        +  "image/png"
        +]
      • addedOutput schema / properties / validation
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "diagnostics": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "errors": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "message": {
        +      "type": "string"
        +    },
        +    "suggestedConfig": {
        +      "additionalProperties": {},
        +      "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        +      "properties": {
        +        "attribution": {
        +          "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +          "type": "boolean"
        +        },
        +        "color": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "categorical",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "string"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "sequential",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "label": {
        +                  "type": "string"
        +                }
        +              },
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "data": {
        +          "items": {
        +            "additionalProperties": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "type": "array"
        +        },
        +        "footer": {
        +          "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +          "type": "string"
        +        },
        +        "format": {
        +          "enum": [
        +            "svg",
        +            "png"
        +          ],
        +          "type": "string"
        +        },
        +        "headerAlign": {
        +          "enum": [
        +            "left",
        +            "center",
        +            "right"
        +          ],
        +          "type": "string"
        +        },
        +        "height": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "locale": {
        +          "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +          "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +          "type": "string"
        +        },
        +        "margin": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "bottom": {
        +              "type": "number"
        +            },
        +            "left": {
        +              "type": "number"
        +            },
        +            "right": {
        +              "type": "number"
        +            },
        +            "top": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "marks": {
        +          "items": {
        +            "oneOf": [
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "field": {
        +                        "type": "string"
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "field"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "r": {
        +                    "type": "number"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "dot",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "points": {
        +                            "anyOf": [
        +                              {
        +                                "enum": [
        +                                  "extrema",
        +                                  "all",
        +                                  "ends"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              {
        +                                "const": false,
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "additionalProperties": {},
        +                                "properties": {
        +                                  "at": {
        +                                    "enum": [
        +                                      "extrema",
        +                                      "all",
        +                                      "ends"
        +                                    ],
        +                                    "type": "string"
        +                                  },
        +                                  "show": {
        +                                    "default": [
        +                                      "value"
        +                                    ],
        +                                    "items": {
        +                                      "enum": [
        +                                        "value",
        +                                        "category"
        +                                      ],
        +                                      "type": "string"
        +                                    },
        +                                    "type": "array"
        +                                  }
        +                                },
        +                                "required": [
        +                                  "at"
        +                                ],
        +                                "type": "object"
        +                              }
        +                            ],
        +                            "default": false
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "line",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value",
        +                                    "percent"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "innerRadius": {
        +                    "default": 0,
        +                    "maximum": 1,
        +                    "minimum": 0,
        +                    "type": "number"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "auto",
        +                            "enum": [
        +                              "auto",
        +                              "inside",
        +                              "outside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "category",
        +                              "percent"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "pie",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "dx": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "dy": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "fontSize": {
        +                    "type": "number"
        +                  },
        +                  "fontWeight": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "text": {
        +                    "default": "text",
        +                    "type": "string"
        +                  },
        +                  "textAnchor": {
        +                    "default": "center",
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "type": {
        +                    "const": "text",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              }
        +            ]
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        },
        +        "plotHeight": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "plotWidth": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "scale": {
        +          "maximum": 4,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "subtitle": {
        +          "type": "string"
        +        },
        +        "theme": {
        +          "default": "editorial",
        +          "enum": [
        +            "editorial",
        +            "clean",
        +            "noir",
        +            "loud",
        +            "soft",
        +            "technical"
        +          ],
        +          "type": "string"
        +        },
        +        "themeOverrides": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "axisColor": {
        +              "type": "string"
        +            },
        +            "axisFrame": {
        +              "enum": [
        +                "none",
        +                "baseline",
        +                "lShape",
        +                "full"
        +              ],
        +              "type": "string"
        +            },
        +            "axisLabelColor": {
        +              "type": "string"
        +            },
        +            "axisLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "axisLineWidth": {
        +              "type": "number"
        +            },
        +            "backgroundColor": {
        +              "type": "string"
        +            },
        +            "barCornerRadius": {
        +              "type": "number"
        +            },
        +            "barPadding": {
        +              "type": "number"
        +            },
        +            "colors": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "dotRadius": {
        +              "type": "number"
        +            },
        +            "fontFamily": {
        +              "enum": [
        +                "ABeeZee",
        +                "ADLaM Display",
        +                "AR One Sans",
        +                "Abel",
        +                "Abhaya Libre",
        +                "Aboreto",
        +                "Abril Fatface",
        +                "Abyssinica SIL",
        +                "Aclonica",
        +                "Acme",
        +                "Actor",
        +                "Adamina",
        +                "Advent Pro",
        +                "Afacad",
        +                "Afacad Flux",
        +                "Agbalumo",
        +                "Agdasima",
        +                "Agu Display",
        +                "Aguafina Script",
        +                "Akatab",
        +                "Akaya Kanadaka",
        +                "Akaya Telivigala",
        +                "Akronim",
        +                "Akshar",
        +                "Akt",
        +                "Aladin",
        +                "Alan Sans",
        +                "Alata",
        +                "Alatsi",
        +                "Albert Sans",
        +                "Aldrich",
        +                "Alef",
        +                "Alegreya",
        +                "Alegreya SC",
        +                "Alegreya Sans",
        +                "Alegreya Sans SC",
        +                "Aleo",
        +                "Alex Brush",
        +                "Alexandria",
        +                "Alfa Slab One",
        +                "Alice",
        +                "Alien Block",
        +                "Alike",
        +                "Alike Angular",
        +                "Alkalami",
        +                "Alkatra",
        +                "Allan",
        +                "Allerta",
        +                "Allerta Stencil",
        +                "Allison",
        +                "Allkin",
        +                "Allura",
        +                "Almarai",
        +                "Almendra",
        +                "Almendra Display",
        +                "Almendra SC",
        +                "Alumni Sans",
        +                "Alumni Sans Collegiate One",
        +                "Alumni Sans Inline One",
        +                "Alumni Sans Pinstripe",
        +                "Alumni Sans SC",
        +                "Alyamama",
        +                "Amarante",
        +                "Amaranth",
        +                "Amarna",
        +                "Amatic SC",
        +                "Amethysta",
        +                "Amiko",
        +                "Amiri",
        +                "Amiri Quran",
        +                "Amita",
        +                "Anaheim",
        +                "Ancizar Sans",
        +                "Ancizar Serif",
        +                "Andada Pro",
        +                "Andika",
        +                "Anek Bangla",
        +                "Anek Devanagari",
        +                "Anek Gujarati",
        +                "Anek Gurmukhi",
        +                "Anek Kannada",
        +                "Anek Latin",
        +                "Anek Malayalam",
        +                "Anek Odia",
        +                "Anek Tamil",
        +                "Anek Telugu",
        +                "Angkor",
        +                "Annapurna SIL",
        +                "Annie Use Your Telescope",
        +                "Anonymous Pro",
        +                "Anta",
        +                "Antic",
        +                "Antic Didone",
        +                "Antic Slab",
        +                "Anton",
        +                "Anton SC",
        +                "Antonio",
        +                "Anuphan",
        +                "Anybody",
        +                "Aoboshi One",
        +                "Arapey",
        +                "Arbutus",
        +                "Arbutus Slab",
        +                "Architects Daughter",
        +                "Archivo",
        +                "Archivo Black",
        +                "Archivo Narrow",
        +                "Are You Serious",
        +                "Aref Ruqaa",
        +                "Aref Ruqaa Ink",
        +                "Arima",
        +                "Arimo",
        +                "Arizonia",
        +                "Armata",
        +                "Arsenal",
        +                "Arsenal SC",
        +                "Artifika",
        +                "Arvo",
        +                "Arya",
        +                "Asap",
        +                "Asap Condensed",
        +                "Asar",
        +                "Asimovian",
        +                "Asset",
        +                "Assistant",
        +                "Asta Sans",
        +                "Astloch",
        +                "Asul",
        +                "Athiti",
        +                "Atkinson Hyperlegible",
        +                "Atkinson Hyperlegible Mono",
        +                "Atkinson Hyperlegible Next",
        +                "Atma",
        +                "Atomic Age",
        +                "Aubrey",
        +                "Audiowide",
        +                "Autour One",
        +                "Average",
        +                "Average Sans",
        +                "Averia Gruesa Libre",
        +                "Averia Libre",
        +                "Averia Sans Libre",
        +                "Averia Serif Libre",
        +                "Azeret Mono",
        +                "B612",
        +                "B612 Mono",
        +                "BBH Bartle",
        +                "BBH Bogle",
        +                "BBH Hegarty",
        +                "BIZ UDGothic",
        +                "BIZ UDMincho",
        +                "BIZ UDPGothic",
        +                "BIZ UDPMincho",
        +                "BJCree",
        +                "Babylonica",
        +                "Bacasime Antique",
        +                "Bad Script",
        +                "Badeen Display",
        +                "Bagel Fat One",
        +                "Bahiana",
        +                "Bahianita",
        +                "Bai Jamjuree",
        +                "Bakbak One",
        +                "Ballet",
        +                "Baloo 2",
        +                "Baloo Bhai 2",
        +                "Baloo Bhaijaan 2",
        +                "Baloo Bhaina 2",
        +                "Baloo Chettan 2",
        +                "Baloo Da 2",
        +                "Baloo Paaji 2",
        +                "Baloo Tamma 2",
        +                "Baloo Tammudu 2",
        +                "Baloo Thambi 2",
        +                "Balsamiq Sans",
        +                "Balthazar",
        +                "Bangers",
        +                "Barlow",
        +                "Barlow Condensed",
        +                "Barlow Semi Condensed",
        +                "Barriecito",
        +                "Barrio",
        +                "Basic",
        +                "Baskervville",
        +                "Baskervville SC",
        +                "Battambang",
        +                "Baumans",
        +                "Bayon",
        +                "Be Vietnam Pro",
        +                "Beau Rivage",
        +                "Bebas Neue",
        +                "Beiruti",
        +                "Belanosima",
        +                "Belgrano",
        +                "Bellefair",
        +                "Belleza",
        +                "Bellota",
        +                "Bellota Text",
        +                "BenchNine",
        +                "Benne",
        +                "Bentham",
        +                "Berkshire Swash",
        +                "Besley",
        +                "Betania Patmos",
        +                "Betania Patmos GDL",
        +                "Betania Patmos In",
        +                "Betania Patmos In GDL",
        +                "Beth Ellen",
        +                "Bevan",
        +                "BhuTuka Expanded One",
        +                "Big Shoulders",
        +                "Big Shoulders Inline",
        +                "Big Shoulders Stencil",
        +                "Bigelow Rules",
        +                "Bigshot One",
        +                "Bilbo",
        +                "Bilbo Swash Caps",
        +                "BioRhyme",
        +                "BioRhyme Expanded",
        +                "Birthstone",
        +                "Birthstone Bounce",
        +                "Biryani",
        +                "Bitcount",
        +                "Bitcount Grid Double",
        +                "Bitcount Grid Double Ink",
        +                "Bitcount Grid Single",
        +                "Bitcount Grid Single Ink",
        +                "Bitcount Ink",
        +                "Bitcount Prop Double",
        +                "Bitcount Prop Double Ink",
        +                "Bitcount Prop Single",
        +                "Bitcount Prop Single Ink",
        +                "Bitcount Single",
        +                "Bitcount Single Ink",
        +                "Bitter",
        +                "Black And White Picture",
        +                "Black Han Sans",
        +                "Black Ops One",
        +                "Blaka",
        +                "Blaka Hollow",
        +                "Blaka Ink",
        +                "Blinker",
        +                "Bodoni Moda",
        +                "Bodoni Moda SC",
        +                "Bokor",
        +                "Boldonse",
        +                "Bona Nova",
        +                "Bona Nova SC",
        +                "Bonbon",
        +                "Bonheur Royale",
        +                "Boogaloo",
        +                "Borel",
        +                "Bowlby One",
        +                "Bowlby One SC",
        +                "Bpmf Huninn",
        +                "Bpmf Iansui",
        +                "Bpmf Zihi Kai Std",
        +                "Braah One",
        +                "Brawler",
        +                "Bree Serif",
        +                "Bricolage Grotesque",
        +                "Bruno Ace",
        +                "Bruno Ace SC",
        +                "Brygada 1918",
        +                "Bubblegum Sans",
        +                "Bubbler One",
        +                "Buda",
        +                "Buenard",
        +                "Bungee",
        +                "Bungee Hairline",
        +                "Bungee Inline",
        +                "Bungee Outline",
        +                "Bungee Shade",
        +                "Bungee Spice",
        +                "Bungee Tint",
        +                "Butcherman",
        +                "Butterfly Kids",
        +                "Bytesized",
        +                "Cabin",
        +                "Cabin Condensed",
        +                "Cabin Sketch",
        +                "Cactus Classical Serif",
        +                "Caesar Dressing",
        +                "Cagliostro",
        +                "Cairo",
        +                "Cairo Play",
        +                "Cal Sans",
        +                "Caladea",
        +                "Calistoga",
        +                "Calligraffitti",
        +                "Cambay",
        +                "Cambo",
        +                "Candal",
        +                "Cantarell",
        +                "Cantata One",
        +                "Cantora One",
        +                "Caprasimo",
        +                "Capriola",
        +                "Caramel",
        +                "Carattere",
        +                "Cardo",
        +                "Carlito",
        +                "Carme",
        +                "Carrois Gothic",
        +                "Carrois Gothic SC",
        +                "Carter One",
        +                "Cascadia Code",
        +                "Cascadia Mono",
        +                "Castoro",
        +                "Castoro Titling",
        +                "Catamaran",
        +                "Caudex",
        +                "Cause",
        +                "Caveat",
        +                "Caveat Brush",
        +                "Cedarville Cursive",
        +                "Ceviche One",
        +                "Chakra Petch",
        +                "Changa",
        +                "Changa One",
        +                "Chango",
        +                "Charis SIL",
        +                "Charm",
        +                "Charmonman",
        +                "Chathura",
        +                "Chau Philomene One",
        +                "Chela One",
        +                "Chelsea Market",
        +                "Chenla",
        +                "Cherish",
        +                "Cherry Bomb One",
        +                "Cherry Cream Soda",
        +                "Cherry Swash",
        +                "Chewy",
        +                "Chicle",
        +                "Chilanka",
        +                "Chiron GoRound TC",
        +                "Chiron Hei HK",
        +                "Chiron Sung HK",
        +                "Chivo",
        +                "Chivo Mono",
        +                "Chocolate Classical Sans",
        +                "Chokokutai",
        +                "Chonburi",
        +                "Cinzel",
        +                "Cinzel Decorative",
        +                "Clicker Script",
        +                "Climate Crisis",
        +                "Coda",
        +                "Codystar",
        +                "Coiny",
        +                "Combo",
        +                "Comfortaa",
        +                "Comforter",
        +                "Comforter Brush",
        +                "Comic Neue",
        +                "Comic Relief",
        +                "Coming Soon",
        +                "Comme",
        +                "Commissioner",
        +                "Concert One",
        +                "Condiment",
        +                "Content",
        +                "Contrail One",
        +                "Convergence",
        +                "Cookie",
        +                "Copse",
        +                "Coral Pixels",
        +                "Corben",
        +                "Corinthia",
        +                "Cormorant",
        +                "Cormorant Garamond",
        +                "Cormorant Infant",
        +                "Cormorant SC",
        +                "Cormorant Unicase",
        +                "Cormorant Upright",
        +                "Cossette Texte",
        +                "Cossette Titre",
        +                "Courgette",
        +                "Courier Prime",
        +                "Cousine",
        +                "Coustard",
        +                "Covered By Your Grace",
        +                "Crafty Girls",
        +                "Creepster",
        +                "Crete Round",
        +                "Crimson Pro",
        +                "Crimson Text",
        +                "Croissant One",
        +                "Crushed",
        +                "Cuprum",
        +                "Cute Font",
        +                "Cutive",
        +                "Cutive Mono",
        +                "DM Mono",
        +                "DM Sans",
        +                "DM Serif Display",
        +                "DM Serif Text",
        +                "Dai Banna SIL",
        +                "Damion",
        +                "Dancing Script",
        +                "Danfo",
        +                "Dangrek",
        +                "Darker Grotesque",
        +                "Darumadrop One",
        +                "Datatype",
        +                "David Libre",
        +                "Dawning of a New Day",
        +                "Days One",
        +                "Dekko",
        +                "Dela Gothic One",
        +                "Delicious Handrawn",
        +                "Delius",
        +                "Delius Swash Caps",
        +                "Delius Unicase",
        +                "Della Respira",
        +                "Denk One",
        +                "Devonshire",
        +                "Dhurjati",
        +                "Didact Gothic",
        +                "Diphylleia",
        +                "Diplomata",
        +                "Diplomata SC",
        +                "Do Hyeon",
        +                "Dokdo",
        +                "Domine",
        +                "Donegal One",
        +                "Dongle",
        +                "Doppio One",
        +                "Dorsa",
        +                "Dosis",
        +                "DotGothic16",
        +                "Doto",
        +                "Dr Sugiyama",
        +                "Duru Sans",
        +                "DynaPuff",
        +                "Dynalight",
        +                "EB Garamond",
        +                "Eagle Lake",
        +                "East Sea Dokdo",
        +                "Eater",
        +                "Economica",
        +                "Eczar",
        +                "Edu AU VIC WA NT Arrows",
        +                "Edu AU VIC WA NT Dots",
        +                "Edu AU VIC WA NT Guides",
        +                "Edu AU VIC WA NT Hand",
        +                "Edu AU VIC WA NT Pre",
        +                "Edu NSW ACT Cursive",
        +                "Edu NSW ACT Foundation",
        +                "Edu NSW ACT Hand Pre",
        +                "Edu QLD Beginner",
        +                "Edu QLD Hand",
        +                "Edu SA Beginner",
        +                "Edu SA Hand",
        +                "Edu TAS Beginner",
        +                "Edu VIC WA NT Beginner",
        +                "Edu VIC WA NT Hand",
        +                "Edu VIC WA NT Hand Pre",
        +                "El Messiri",
        +                "Electrolize",
        +                "Elms Sans",
        +                "Elsie",
        +                "Elsie Swash Caps",
        +                "Emblema One",
        +                "Emilys Candy",
        +                "Encode Sans",
        +                "Encode Sans Condensed",
        +                "Encode Sans Expanded",
        +                "Encode Sans SC",
        +                "Encode Sans Semi Condensed",
        +                "Encode Sans Semi Expanded",
        +                "Engagement",
        +                "Englebert",
        +                "Enriqueta",
        +                "Ephesis",
        +                "Epilogue",
        +                "Epunda Sans",
        +                "Epunda Slab",
        +                "Erica One",
        +                "Esteban",
        +                "Estedad",
        +                "Estonia",
        +                "Euphoria Script",
        +                "Ewert",
        +                "Exile",
        +                "Exo",
        +                "Exo 2",
        +                "Expletus Sans",
        +                "Explora",
        +                "Faculty Glyphic",
        +                "Fahkwang",
        +                "Familjen Grotesk",
        +                "Fanwood Text",
        +                "Farro",
        +                "Farsan",
        +                "Fascinate",
        +                "Fascinate Inline",
        +                "Faster One",
        +                "Fasthand",
        +                "Fauna One",
        +                "Faustina",
        +                "Federant",
        +                "Federo",
        +                "Felipa",
        +                "Fenix",
        +                "Festive",
        +                "Figtree",
        +                "Finger Paint",
        +                "Finlandica Headline",
        +                "Finlandica Text",
        +                "Fira Code",
        +                "Fira Mono",
        +                "Fira Sans",
        +                "Fira Sans Condensed",
        +                "Fira Sans Extra Condensed",
        +                "Fjalla One",
        +                "Fjord One",
        +                "Flamenco",
        +                "Flavors",
        +                "Fleur De Leah",
        +                "Flow Block",
        +                "Flow Circular",
        +                "Flow Rounded",
        +                "Foldit",
        +                "Fondamento",
        +                "Fontdiner Swanky",
        +                "Forum",
        +                "Fragment Mono",
        +                "Francois One",
        +                "Frank Ruhl Libre",
        +                "Fraunces",
        +                "Freckle Face",
        +                "Fredericka the Great",
        +                "Fredoka",
        +                "Freehand",
        +                "Freeman",
        +                "Fresca",
        +                "Frijole",
        +                "Fruktur",
        +                "Fugaz One",
        +                "Fuggles",
        +                "Funnel Display",
        +                "Funnel Sans",
        +                "Fustat",
        +                "Fuzzy Bubbles",
        +                "GFS Didot",
        +                "GFS Neohellenic",
        +                "Ga Maamli",
        +                "Gabarito",
        +                "Gabriela",
        +                "Gaegu",
        +                "Gafata",
        +                "Gajraj One",
        +                "Galada",
        +                "Galdeano",
        +                "Galindo",
        +                "Gamja Flower",
        +                "Gantari",
        +                "Gasoek One",
        +                "Gayathri",
        +                "Geist",
        +                "Geist Mono",
        +                "Geist Pixel",
        +                "Gelasio",
        +                "Gemunu Libre",
        +                "Genos",
        +                "Gentium Book Plus",
        +                "Gentium Plus",
        +                "Geo",
        +                "Geologica",
        +                "Geom",
        +                "Geomini",
        +                "Georama",
        +                "Geostar",
        +                "Geostar Fill",
        +                "Germania One",
        +                "Gideon Roman",
        +                "Gidole",
        +                "Gidugu",
        +                "Gilda Display",
        +                "Girassol",
        +                "Give You Glory",
        +                "Glass Antiqua",
        +                "Glegoo",
        +                "Gloock",
        +                "Gloria Hallelujah",
        +                "Glory",
        +                "Gluten",
        +                "Goblin One",
        +                "Gochi Hand",
        +                "Goldman",
        +                "Golos Text",
        +                "Google Sans",
        +                "Google Sans Code",
        +                "Google Sans Flex",
        +                "Gorditas",
        +                "Gothic A1",
        +                "Gotu",
        +                "Goudy Bookletter 1911",
        +                "Gowun Batang",
        +                "Gowun Dodum",
        +                "Graduate",
        +                "Grand Hotel",
        +                "Grandiflora One",
        +                "Grandstander",
        +                "Grape Nuts",
        +                "Gravitas One",
        +                "Great Vibes",
        +                "Grechen Fuemen",
        +                "Grenze",
        +                "Grenze Gotisch",
        +                "Grey Qo",
        +                "Griffy",
        +                "Gruppo",
        +                "Gudea",
        +                "Gugi",
        +                "Gulzar",
        +                "Gupter",
        +                "Gurajada",
        +                "Gveret Levin",
        +                "Gwendolyn",
        +                "Habibi",
        +                "Hachi Maru Pop",
        +                "Hahmlet",
        +                "Halant",
        +                "Hammersmith One",
        +                "Hanalei",
        +                "Hanalei Fill",
        +                "Handjet",
        +                "Handlee",
        +                "Hanken Grotesk",
        +                "Hanuman",
        +                "Happy Monkey",
        +                "Harmattan",
        +                "Headland One",
        +                "Hedvig Letters Sans",
        +                "Hedvig Letters Serif",
        +                "Heebo",
        +                "Henny Penny",
        +                "Hepta Slab",
        +                "Herr Von Muellerhoff",
        +                "Hi Melody",
        +                "Hibur Mono",
        +                "Hina Mincho",
        +                "Hind",
        +                "Hind Guntur",
        +                "Hind Madurai",
        +                "Hind Mysuru",
        +                "Hind Siliguri",
        +                "Hind Vadodara",
        +                "Holtwood One SC",
        +                "Homemade Apple",
        +                "Homenaje",
        +                "Honk",
        +                "Host Grotesk",
        +                "Hubballi",
        +                "Hubot Sans",
        +                "Huninn",
        +                "Hurricane",
        +                "IBM Plex Mono",
        +                "IBM Plex Sans",
        +                "IBM Plex Sans Arabic",
        +                "IBM Plex Sans Condensed",
        +                "IBM Plex Sans Devanagari",
        +                "IBM Plex Sans Hebrew",
        +                "IBM Plex Sans JP",
        +                "IBM Plex Sans KR",
        +                "IBM Plex Sans Thai",
        +                "IBM Plex Sans Thai Looped",
        +                "IBM Plex Serif",
        +                "IM Fell DW Pica",
        +                "IM Fell DW Pica SC",
        +                "IM Fell Double Pica",
        +                "IM Fell Double Pica SC",
        +                "IM Fell English",
        +                "IM Fell English SC",
        +                "IM Fell French Canon",
        +                "IM Fell French Canon SC",
        +                "IM Fell Great Primer",
        +                "IM Fell Great Primer SC",
        +                "Iansui",
        +                "Ibarra Real Nova",
        +                "Iceberg",
        +                "Iceland",
        +                "Idiqlat",
        +                "Imbue",
        +                "Imperial Script",
        +                "Imprima",
        +                "Inclusive Sans",
        +                "Inconsolata",
        +                "Inder",
        +                "Indie Flower",
        +                "Ingrid Darling",
        +                "Inika",
        +                "Inknut Antiqua",
        +                "Inria Sans",
        +                "Inria Serif",
        +                "Inspiration",
        +                "Instrument Sans",
        +                "Instrument Serif",
        +                "Intel One Mono",
        +                "Inter",
        +                "Inter Tight",
        +                "Iosevka Charon",
        +                "Iosevka Charon Mono",
        +                "Irish Grover",
        +                "Island Moments",
        +                "Istok Web",
        +                "Italiana",
        +                "Italianno",
        +                "Itim",
        +                "Jacquard 12",
        +                "Jacquard 12 Charted",
        +                "Jacquard 24",
        +                "Jacquard 24 Charted",
        +                "Jacquarda Bastarda 9",
        +                "Jacquarda Bastarda 9 Charted",
        +                "Jacques Francois",
        +                "Jacques Francois Shadow",
        +                "Jaini",
        +                "Jaini Purva",
        +                "Jaldi",
        +                "Jaro",
        +                "Jersey 10",
        +                "Jersey 10 Charted",
        +                "Jersey 15",
        +                "Jersey 15 Charted",
        +                "Jersey 20",
        +                "Jersey 20 Charted",
        +                "Jersey 25",
        +                "Jersey 25 Charted",
        +                "JetBrains Mono",
        +                "Jim Nightshade",
        +                "Joan",
        +                "Jockey One",
        +                "Jolly Lodger",
        +                "Jomhuria",
        +                "Jomolhari",
        +                "Josefin Sans",
        +                "Josefin Slab",
        +                "Jost",
        +                "Joti One",
        +                "Jua",
        +                "Judson",
        +                "Julee",
        +                "Julius Sans One",
        +                "Junge",
        +                "Jura",
        +                "Just Another Hand",
        +                "Just Me Again Down Here",
        +                "K2D",
        +                "Kablammo",
        +                "Kadwa",
        +                "Kaisei Decol",
        +                "Kaisei HarunoUmi",
        +                "Kaisei Opti",
        +                "Kaisei Tokumin",
        +                "Kalam",
        +                "Kalnia",
        +                "Kalnia Glaze",
        +                "Kameron",
        +                "Kanchenjunga",
        +                "Kanit",
        +                "Kantumruy Pro",
        +                "Kapakana",
        +                "Karantina",
        +                "Karla",
        +                "Karla Tamil Inclined",
        +                "Karla Tamil Upright",
        +                "Karma",
        +                "Katibeh",
        +                "Kaushan Script",
        +                "Kavivanar",
        +                "Kavoon",
        +                "Kay Pho Du",
        +                "Kdam Thmor Pro",
        +                "Keania One",
        +                "Kedebideri",
        +                "Kelly Slab",
        +                "Kenia",
        +                "Khand",
        +                "Khmer",
        +                "Khula",
        +                "Kings",
        +                "Kirang Haerang",
        +                "Kite One",
        +                "Kiwi Maru",
        +                "Klee One",
        +                "Knewave",
        +                "KoHo",
        +                "Kodchasan",
        +                "Kode Mono",
        +                "Koh Santepheap",
        +                "Kolker Brush",
        +                "Konkhmer Sleokchher",
        +                "Kosugi",
        +                "Kosugi Maru",
        +                "Kotta One",
        +                "Koulen",
        +                "Kranky",
        +                "Kreon",
        +                "Kristi",
        +                "Krona One",
        +                "Krub",
        +                "Kufam",
        +                "Kulim Park",
        +                "Kumar One",
        +                "Kumar One Outline",
        +                "Kumbh Sans",
        +                "Kurale",
        +                "LINE Seed JP",
        +                "LXGW Marker Gothic",
        +                "LXGW WenKai Mono TC",
        +                "LXGW WenKai TC",
        +                "La Belle Aurore",
        +                "Labrada",
        +                "Lacquer",
        +                "Laila",
        +                "Lakki Reddy",
        +                "Lalezar",
        +                "Lancelot",
        +                "Langar",
        +                "Lateef",
        +                "Lato",
        +                "Lavishly Yours",
        +                "League Gothic",
        +                "League Script",
        +                "League Spartan",
        +                "Leckerli One",
        +                "Ledger",
        +                "Lekton",
        +                "Lemon",
        +                "Lemonada",
        +                "Lexend",
        +                "Lexend Deca",
        +                "Lexend Exa",
        +                "Lexend Giga",
        +                "Lexend Mega",
        +                "Lexend Peta",
        +                "Lexend Tera",
        +                "Lexend Zetta",
        +                "Libertinus Keyboard",
        +                "Libertinus Math",
        +                "Libertinus Mono",
        +                "Libertinus Sans",
        +                "Libertinus Serif",
        +                "Libertinus Serif Display",
        +                "Libre Barcode 128",
        +                "Libre Barcode 128 Text",
        +                "Libre Barcode 39",
        +                "Libre Barcode 39 Extended",
        +                "Libre Barcode 39 Extended Text",
        +                "Libre Barcode 39 Text",
        +                "Libre Barcode EAN13 Text",
        +                "Libre Baskerville",
        +                "Libre Bodoni",
        +                "Libre Caslon Display",
        +                "Libre Caslon Text",
        +                "Libre Franklin",
        +                "Licorice",
        +                "Life Savers",
        +                "Lilex",
        +                "Lilita One",
        +                "Lily Script One",
        +                "Limelight",
        +                "Linden Hill",
        +                "Linefont",
        +                "Lisu Bosa",
        +                "Liter",
        +                "Literata",
        +                "Liu Jian Mao Cao",
        +                "Livvic",
        +                "Lobster",
        +                "Lobster Two",
        +                "Londrina Outline",
        +                "Londrina Shadow",
        +                "Londrina Sketch",
        +                "Londrina Solid",
        +                "Long Cang",
        +                "Lora",
        +                "Love Light",
        +                "Love Ya Like A Sister",
        +                "Loved by the King",
        +                "Lovers Quarrel",
        +                "Luckiest Guy",
        +                "Lugrasimo",
        +                "Lumanosimo",
        +                "Lunasima",
        +                "Lusitana",
        +                "Lustria",
        +                "Luxurious Roman",
        +                "Luxurious Script",
        +                "M PLUS 1",
        +                "M PLUS 1 Code",
        +                "M PLUS 1p",
        +                "M PLUS 2",
        +                "M PLUS Code Latin",
        +                "M PLUS Rounded 1c",
        +                "M PLUS U",
        +                "Ma Shan Zheng",
        +                "Macondo",
        +                "Macondo Swash Caps",
        +                "Mada",
        +                "Madimi One",
        +                "Magra",
        +                "Maiden Orange",
        +                "Maitree",
        +                "Major Mono Display",
        +                "Mako",
        +                "Mali",
        +                "Mallanna",
        +                "Maname",
        +                "Mandali",
        +                "Manjari",
        +                "Manrope",
        +                "Mansalva",
        +                "Manuale",
        +                "Manufacturing Consent",
        +                "Marcellus",
        +                "Marcellus SC",
        +                "Marck Script",
        +                "Margarine",
        +                "Marhey",
        +                "Markazi Text",
        +                "Marko One",
        +                "Marmelad",
        +                "Martel",
        +                "Martel Sans",
        +                "Martian Mono",
        +                "Marvel",
        +                "Matangi",
        +                "Mate",
        +                "Mate SC",
        +                "Matemasie",
        +                "Material Icons",
        +                "Material Icons Outlined",
        +                "Material Icons Round",
        +                "Material Icons Sharp",
        +                "Material Icons Two Tone",
        +                "Material Symbols",
        +                "Material Symbols Outlined",
        +                "Material Symbols Rounded",
        +                "Material Symbols Sharp",
        +                "Maven Pro",
        +                "McLaren",
        +                "Mea Culpa",
        +                "Meddon",
        +                "MedievalSharp",
        +                "Medula One",
        +                "Meera Inimai",
        +                "Megrim",
        +                "Meie Script",
        +                "Menbere",
        +                "Meow Script",
        +                "Merienda",
        +                "Merriweather",
        +                "Merriweather Sans",
        +                "Metal",
        +                "Metal Mania",
        +                "Metamorphous",
        +                "Metrophobic",
        +                "Michroma",
        +                "Micro 5",
        +                "Micro 5 Charted",
        +                "Milonga",
        +                "Miltonian",
        +                "Miltonian Tattoo",
        +                "Mina",
        +                "Mingzat",
        +                "Miniver",
        +                "Miranda Sans",
        +                "Miriam Libre",
        +                "Mirza",
        +                "Miss Fajardose",
        +                "Mitr",
        +                "Mochiy Pop One",
        +                "Mochiy Pop P One",
        +                "Modak",
        +                "Modern Antiqua",
        +                "Moderustic",
        +                "Mogra",
        +                "Mohave",
        +                "Moirai One",
        +                "Molengo",
        +                "Molle",
        +                "Momo Signature",
        +                "Momo Trust Display",
        +                "Momo Trust Sans",
        +                "Mona Sans",
        +                "Monda",
        +                "Monofett",
        +                "Monomakh",
        +                "Monomaniac One",
        +                "Monoton",
        +                "Monsieur La Doulaise",
        +                "Montaga",
        +                "Montagu Slab",
        +                "MonteCarlo",
        +                "Montenegrin Gothic One",
        +                "Montez",
        +                "Montserrat",
        +                "Montserrat Alternates",
        +                "Montserrat Underline",
        +                "Moo Lah Lah",
        +                "Mooli",
        +                "Moon Dance",
        +                "Moul",
        +                "Moulpali",
        +                "Mountains of Christmas",
        +                "Mouse Memoirs",
        +                "Mozilla Headline",
        +                "Mozilla Text",
        +                "Mr Bedfort",
        +                "Mr Dafoe",
        +                "Mr De Haviland",
        +                "Mrs Saint Delafield",
        +                "Mrs Sheppards",
        +                "Ms Madi",
        +                "Mukta",
        +                "Mukta Mahee",
        +                "Mukta Malar",
        +                "Mukta Vaani",
        +                "Mulish",
        +                "Murecho",
        +                "MuseoModerno",
        +                "My Soul",
        +                "Mynerve",
        +                "Mystery Quest",
        +                "NTR",
        +                "Nabla",
        +                "Namdhinggo",
        +                "Nanum Brush Script",
        +                "Nanum Gothic",
        +                "Nanum Gothic Coding",
        +                "Nanum Myeongjo",
        +                "Nanum Pen Script",
        +                "Narnoor",
        +                "Nata Sans",
        +                "National Park",
        +                "Neonderthaw",
        +                "Nerko One",
        +                "Neucha",
        +                "Neuton",
        +                "New Amsterdam",
        +                "New Rocker",
        +                "New Tegomin",
        +                "News Cycle",
        +                "Newsreader",
        +                "Niconne",
        +                "Niramit",
        +                "Nixie One",
        +                "Nobile",
        +                "Nokora",
        +                "Norican",
        +                "Nosifer",
        +                "Notable",
        +                "Nothing You Could Do",
        +                "Noticia Text",
        +                "Noto Color Emoji",
        +                "Noto Emoji",
        +                "Noto Kufi Arabic",
        +                "Noto Music",
        +                "Noto Naskh Arabic",
        +                "Noto Nastaliq Urdu",
        +                "Noto Rashi Hebrew",
        +                "Noto Sans",
        +                "Noto Sans Adlam",
        +                "Noto Sans Adlam Unjoined",
        +                "Noto Sans Anatolian Hieroglyphs",
        +                "Noto Sans Arabic",
        +                "Noto Sans Armenian",
        +                "Noto Sans Avestan",
        +                "Noto Sans Balinese",
        +                "Noto Sans Bamum",
        +                "Noto Sans Bassa Vah",
        +                "Noto Sans Batak",
        +                "Noto Sans Bengali",
        +                "Noto Sans Bhaiksuki",
        +                "Noto Sans Brahmi",
        +                "Noto Sans Buginese",
        +                "Noto Sans Buhid",
        +                "Noto Sans Canadian Aboriginal",
        +                "Noto Sans Carian",
        +                "Noto Sans Caucasian Albanian",
        +                "Noto Sans Chakma",
        +                "Noto Sans Cham",
        +                "Noto Sans Cherokee",
        +                "Noto Sans Chorasmian",
        +                "Noto Sans Coptic",
        +                "Noto Sans Cuneiform",
        +                "Noto Sans Cypriot",
        +                "Noto Sans Cypro Minoan",
        +                "Noto Sans Deseret",
        +                "Noto Sans Devanagari",
        +                "Noto Sans Display",
        +                "Noto Sans Duployan",
        +                "Noto Sans Egyptian Hieroglyphs",
        +                "Noto Sans Elbasan",
        +                "Noto Sans Elymaic",
        +                "Noto Sans Ethiopic",
        +                "Noto Sans Georgian",
        +                "Noto Sans Glagolitic",
        +                "Noto Sans Gothic",
        +                "Noto Sans Grantha",
        +                "Noto Sans Gujarati",
        +                "Noto Sans Gunjala Gondi",
        +                "Noto Sans Gurmukhi",
        +                "Noto Sans HK",
        +                "Noto Sans Hanifi Rohingya",
        +                "Noto Sans Hanunoo",
        +                "Noto Sans Hatran",
        +                "Noto Sans Hebrew",
        +                "Noto Sans Imperial Aramaic",
        +                "Noto Sans Indic Siyaq Numbers",
        +                "Noto Sans Inscriptional Pahlavi",
        +                "Noto Sans Inscriptional Parthian",
        +                "Noto Sans JP",
        +                "Noto Sans Javanese",
        +                "Noto Sans KR",
        +                "Noto Sans Kaithi",
        +                "Noto Sans Kannada",
        +                "Noto Sans Kawi",
        +                "Noto Sans Kayah Li",
        +                "Noto Sans Kharoshthi",
        +                "Noto Sans Khmer",
        +                "Noto Sans Khojki",
        +                "Noto Sans Khudawadi",
        +                "Noto Sans Lao",
        +                "Noto Sans Lao Looped",
        +                "Noto Sans Lepcha",
        +                "Noto Sans Limbu",
        +                "Noto Sans Linear A",
        +                "Noto Sans Linear B",
        +                "Noto Sans Lisu",
        +                "Noto Sans Lycian",
        +                "Noto Sans Lydian",
        +                "Noto Sans Mahajani",
        +                "Noto Sans Malayalam",
        +                "Noto Sans Mandaic",
        +                "Noto Sans Manichaean",
        +                "Noto Sans Marchen",
        +                "Noto Sans Masaram Gondi",
        +                "Noto Sans Math",
        +                "Noto Sans Mayan Numerals",
        +                "Noto Sans Medefaidrin",
        +                "Noto Sans Meetei Mayek",
        +                "Noto Sans Mende Kikakui",
        +                "Noto Sans Meroitic",
        +                "Noto Sans Miao",
        +                "Noto Sans Modi",
        +                "Noto Sans Mongolian",
        +                "Noto Sans Mono",
        +                "Noto Sans Mro",
        +                "Noto Sans Multani",
        +                "Noto Sans Myanmar",
        +                "Noto Sans NKo",
        +                "Noto Sans NKo Unjoined",
        +                "Noto Sans Nabataean",
        +                "Noto Sans Nag Mundari",
        +                "Noto Sans Nandinagari",
        +                "Noto Sans New Tai Lue",
        +                "Noto Sans Newa",
        +                "Noto Sans Nushu",
        +                "Noto Sans Ogham",
        +                "Noto Sans Ol Chiki",
        +                "Noto Sans Old Hungarian",
        +                "Noto Sans Old Italic",
        +                "Noto Sans Old North Arabian",
        +                "Noto Sans Old Permic",
        +                "Noto Sans Old Persian",
        +                "Noto Sans Old Sogdian",
        +                "Noto Sans Old South Arabian",
        +                "Noto Sans Old Turkic",
        +                "Noto Sans Oriya",
        +                "Noto Sans Osage",
        +                "Noto Sans Osmanya",
        +                "Noto Sans Pahawh Hmong",
        +                "Noto Sans Palmyrene",
        +                "Noto Sans Pau Cin Hau",
        +                "Noto Sans PhagsPa",
        +                "Noto Sans Phoenician",
        +                "Noto Sans Psalter Pahlavi",
        +                "Noto Sans Rejang",
        +                "Noto Sans Runic",
        +                "Noto Sans SC",
        +                "Noto Sans Samaritan",
        +                "Noto Sans Saurashtra",
        +                "Noto Sans Sharada",
        +                "Noto Sans Shavian",
        +                "Noto Sans Siddham",
        +                "Noto Sans SignWriting",
        +                "Noto Sans Sinhala",
        +                "Noto Sans Sogdian",
        +                "Noto Sans Sora Sompeng",
        +                "Noto Sans Soyombo",
        +                "Noto Sans Sundanese",
        +                "Noto Sans Sunuwar",
        +                "Noto Sans Syloti Nagri",
        +                "Noto Sans Symbols",
        +                "Noto Sans Symbols 2",
        +                "Noto Sans Syriac",
        +                "Noto Sans Syriac Eastern",
        +                "Noto Sans Syriac Western",
        +                "Noto Sans TC",
        +                "Noto Sans Tagalog",
        +                "Noto Sans Tagbanwa",
        +                "Noto Sans Tai Le",
        +                "Noto Sans Tai Tham",
        +                "Noto Sans Tai Viet",
        +                "Noto Sans Takri",
        +                "Noto Sans Tamil",
        +                "Noto Sans Tamil Supplement",
        +                "Noto Sans Tangsa",
        +                "Noto Sans Telugu",
        +                "Noto Sans Thaana",
        +                "Noto Sans Thai",
        +                "Noto Sans Thai Looped",
        +                "Noto Sans Tifinagh",
        +                "Noto Sans Tirhuta",
        +                "Noto Sans Ugaritic",
        +                "Noto Sans Vai",
        +                "Noto Sans Vithkuqi",
        +                "Noto Sans Wancho",
        +                "Noto Sans Warang Citi",
        +                "Noto Sans Yi",
        +                "Noto Sans Zanabazar Square",
        +                "Noto Serif",
        +                "Noto Serif Ahom",
        +                "Noto Serif Armenian",
        +                "Noto Serif Balinese",
        +                "Noto Serif Bengali",
        +                "Noto Serif Devanagari",
        +                "Noto Serif Display",
        +                "Noto Serif Dives Akuru",
        +                "Noto Serif Dogra",
        +                "Noto Serif Ethiopic",
        +                "Noto Serif Georgian",
        +                "Noto Serif Grantha",
        +                "Noto Serif Gujarati",
        +                "Noto Serif Gurmukhi",
        +                "Noto Serif HK",
        +                "Noto Serif Hebrew",
        +                "Noto Serif Hentaigana",
        +                "Noto Serif JP",
        +                "Noto Serif KR",
        +                "Noto Serif Kannada",
        +                "Noto Serif Khitan Small Script",
        +                "Noto Serif Khmer",
        +                "Noto Serif Khojki",
        +                "Noto Serif Lao",
        +                "Noto Serif Makasar",
        +                "Noto Serif Malayalam",
        +                "Noto Serif Myanmar",
        +                "Noto Serif NP Hmong",
        +                "Noto Serif Old Uyghur",
        +                "Noto Serif Oriya",
        +                "Noto Serif Ottoman Siyaq",
        +                "Noto Serif SC",
        +                "Noto Serif Sinhala",
        +                "Noto Serif TC",
        +                "Noto Serif Tamil",
        +                "Noto Serif Tangut",
        +                "Noto Serif Telugu",
        +                "Noto Serif Thai",
        +                "Noto Serif Tibetan",
        +                "Noto Serif Todhri",
        +                "Noto Serif Toto",
        +                "Noto Serif Vithkuqi",
        +                "Noto Serif Yezidi",
        +                "Noto Traditional Nushu",
        +                "Noto Znamenny Musical Notation",
        +                "Nova Cut",
        +                "Nova Flat",
        +                "Nova Mono",
        +                "Nova Oval",
        +                "Nova Round",
        +                "Nova Script",
        +                "Nova Slim",
        +                "Nova Square",
        +                "Numans",
        +                "Nunito",
        +                "Nunito Sans",
        +                "Nuosu SIL",
        +                "Odibee Sans",
        +                "Odor Mean Chey",
        +                "Offside",
        +                "Oi",
        +                "Ojuju",
        +                "Old Standard TT",
        +                "Oldenburg",
        +                "Ole",
        +                "Oleo Script",
        +                "Oleo Script Swash Caps",
        +                "Onest",
        +                "Oooh Baby",
        +                "Open Sans",
        +                "Oranienbaum",
        +                "Orbit",
        +                "Orbitron",
        +                "Oregano",
        +                "Orelega One",
        +                "Orienta",
        +                "Original Surfer",
        +                "Oswald",
        +                "Outfit",
        +                "Over the Rainbow",
        +                "Overlock",
        +                "Overlock SC",
        +                "Overpass",
        +                "Overpass Mono",
        +                "Ovo",
        +                "Oxanium",
        +                "Oxygen",
        +                "Oxygen Mono",
        +                "PT Mono",
        +                "PT Sans",
        +                "PT Sans Caption",
        +                "PT Sans Narrow",
        +                "PT Serif",
        +                "PT Serif Caption",
        +                "Pacifico",
        +                "Padauk",
        +                "Padyakke Expanded One",
        +                "Palanquin",
        +                "Palanquin Dark",
        +                "Palette Mosaic",
        +                "Pangolin",
        +                "Paprika",
        +                "Parastoo",
        +                "Parisienne",
        +                "Parkinsans",
        +                "Passero One",
        +                "Passion One",
        +                "Passions Conflict",
        +                "Pathway Extreme",
        +                "Pathway Gothic One",
        +                "Patrick Hand",
        +                "Patrick Hand SC",
        +                "Pattaya",
        +                "Patua One",
        +                "Pavanam",
        +                "Paytone One",
        +                "Peddana",
        +                "Peralta",
        +                "Permanent Marker",
        +                "Petemoss",
        +                "Petit Formal Script",
        +                "Petrona",
        +                "Phetsarath",
        +                "Philosopher",
        +                "Phudu",
        +                "Piazzolla",
        +                "Piedra",
        +                "Pinyon Script",
        +                "Pirata One",
        +                "Pixelify Sans",
        +                "Plaster",
        +                "Platypi",
        +                "Play",
        +                "Playball",
        +                "Playfair",
        +                "Playfair Display",
        +                "Playfair Display SC",
        +                "Playpen Sans",
        +                "Playpen Sans Arabic",
        +                "Playpen Sans Deva",
        +                "Playpen Sans Hebrew",
        +                "Playpen Sans Thai",
        +                "Playwrite AR",
        +                "Playwrite AR Guides",
        +                "Playwrite AT",
        +                "Playwrite AT Guides",
        +                "Playwrite AU NSW",
        +                "Playwrite AU NSW Guides",
        +                "Playwrite AU QLD",
        +                "Playwrite AU QLD Guides",
        +                "Playwrite AU SA",
        +                "Playwrite AU SA Guides",
        +                "Playwrite AU TAS",
        +                "Playwrite AU TAS Guides",
        +                "Playwrite AU VIC",
        +                "Playwrite AU VIC Guides",
        +                "Playwrite BE VLG",
        +                "Playwrite BE VLG Guides",
        +                "Playwrite BE WAL",
        +                "Playwrite BE WAL Guides",
        +                "Playwrite BR",
        +                "Playwrite BR Guides",
        +                "Playwrite CA",
        +                "Playwrite CA Guides",
        +                "Playwrite CL",
        +                "Playwrite CL Guides",
        +                "Playwrite CO",
        +                "Playwrite CO Guides",
        +                "Playwrite CU",
        +                "Playwrite CU Guides",
        +                "Playwrite CZ",
        +                "Playwrite CZ Guides",
        +                "Playwrite DE Grund",
        +                "Playwrite DE Grund Guides",
        +                "Playwrite DE LA",
        +                "Playwrite DE LA Guides",
        +                "Playwrite DE SAS",
        +                "Playwrite DE SAS Guides",
        +                "Playwrite DE VA",
        +                "Playwrite DE VA Guides",
        +                "Playwrite DK Loopet",
        +                "Playwrite DK Loopet Guides",
        +                "Playwrite DK Uloopet",
        +                "Playwrite DK Uloopet Guides",
        +                "Playwrite ES",
        +                "Playwrite ES Deco",
        +                "Playwrite ES Deco Guides",
        +                "Playwrite ES Guides",
        +                "Playwrite FR Moderne",
        +                "Playwrite FR Moderne Guides",
        +                "Playwrite FR Trad",
        +                "Playwrite FR Trad Guides",
        +                "Playwrite GB J",
        +                "Playwrite GB J Guides",
        +                "Playwrite GB S",
        +                "Playwrite GB S Guides",
        +                "Playwrite HR",
        +                "Playwrite HR Guides",
        +                "Playwrite HR Lijeva",
        +                "Playwrite HR Lijeva Guides",
        +                "Playwrite HU",
        +                "Playwrite HU Guides",
        +                "Playwrite ID",
        +                "Playwrite ID Guides",
        +                "Playwrite IE",
        +                "Playwrite IE Guides",
        +                "Playwrite IN",
        +                "Playwrite IN Guides",
        +                "Playwrite IS",
        +                "Playwrite IS Guides",
        +                "Playwrite IT Moderna",
        +                "Playwrite IT Moderna Guides",
        +                "Playwrite IT Trad",
        +                "Playwrite IT Trad Guides",
        +                "Playwrite MX",
        +                "Playwrite MX Guides",
        +                "Playwrite NG Modern",
        +                "Playwrite NG Modern Guides",
        +                "Playwrite NL",
        +                "Playwrite NL Guides",
        +                "Playwrite NO",
        +                "Playwrite NO Guides",
        +                "Playwrite NZ",
        +                "Playwrite NZ Basic",
        +                "Playwrite NZ Basic Guides",
        +                "Playwrite NZ Guides",
        +                "Playwrite PE",
        +                "Playwrite PE Guides",
        +                "Playwrite PL",
        +                "Playwrite PL Guides",
        +                "Playwrite PT",
        +                "Playwrite PT Guides",
        +                "Playwrite RO",
        +                "Playwrite RO Guides",
        +                "Playwrite SK",
        +                "Playwrite SK Guides",
        +                "Playwrite TZ",
        +                "Playwrite TZ Guides",
        +                "Playwrite US Modern",
        +                "Playwrite US Modern Guides",
        +                "Playwrite US Trad",
        +                "Playwrite US Trad Guides",
        +                "Playwrite VN",
        +                "Playwrite VN Guides",
        +                "Playwrite ZA",
        +                "Playwrite ZA Guides",
        +                "Pliant",
        +                "Plus Jakarta Sans",
        +                "Pochaevsk",
        +                "Podkova",
        +                "Poetsen One",
        +                "Poiret One",
        +                "Poller One",
        +                "Poltawski Nowy",
        +                "Poly",
        +                "Pompiere",
        +                "Ponnala",
        +                "Ponomar",
        +                "Pontano Sans",
        +                "Poor Story",
        +                "Poppins",
        +                "Port Lligat Sans",
        +                "Port Lligat Slab",
        +                "Potta One",
        +                "Pragati Narrow",
        +                "Praise",
        +                "Prata",
        +                "Preahvihear",
        +                "Press Start 2P",
        +                "Pridi",
        +                "Princess Sofia",
        +                "Prociono",
        +                "Prompt",
        +                "Prosto One",
        +                "Protest Guerrilla",
        +                "Protest Revolution",
        +                "Protest Riot",
        +                "Protest Strike",
        +                "Proza Libre",
        +                "Public Sans",
        +                "Puppies Play",
        +                "Puritan",
        +                "Purple Purse",
        +                "Qahiri",
        +                "Quando",
        +                "Quantico",
        +                "Quattrocento",
        +                "Quattrocento Sans",
        +                "Questrial",
        +                "Quicksand",
        +                "Quintessential",
        +                "Qwigley",
        +                "Qwitcher Grypen",
        +                "REM",
        +                "Racing Sans One",
        +                "Radio Canada",
        +                "Radio Canada Big",
        +                "Radley",
        +                "Rajdhani",
        +                "Rakkas",
        +                "Raleway",
        +                "Raleway Dots",
        +                "Ramabhadra",
        +                "Ramaraja",
        +                "Rambla",
        +                "Rammetto One",
        +                "Rampart One",
        +                "Ramsina",
        +                "Ranchers",
        +                "Rancho",
        +                "Ranga",
        +                "Rasa",
        +                "Rationale",
        +                "Ravi Prakash",
        +                "Readex Pro",
        +                "Recursive",
        +                "Red Hat Display",
        +                "Red Hat Mono",
        +                "Red Hat Text",
        +                "Red Rose",
        +                "Redacted",
        +                "Redacted Script",
        +                "Reddit Mono",
        +                "Reddit Sans",
        +                "Reddit Sans Condensed",
        +                "Redressed",
        +                "Reem Kufi",
        +                "Reem Kufi Fun",
        +                "Reem Kufi Ink",
        +                "Reenie Beanie",
        +                "Reggae One",
        +                "Rethink Sans",
        +                "Revalia",
        +                "Rhodium Libre",
        +                "Ribeye",
        +                "Ribeye Marrow",
        +                "Righteous",
        +                "Risque",
        +                "Road Rage",
        +                "Roboto",
        +                "Roboto Condensed",
        +                "Roboto Flex",
        +                "Roboto Mono",
        +                "Roboto Serif",
        +                "Roboto Slab",
        +                "Rochester",
        +                "Rock 3D",
        +                "Rock Salt",
        +                "RocknRoll One",
        +                "Rokkitt",
        +                "Romanesco",
        +                "Ropa Sans",
        +                "Rosario",
        +                "Rosarivo",
        +                "Rouge Script",
        +                "Rowdies",
        +                "Rozha One",
        +                "Rubik",
        +                "Rubik 80s Fade",
        +                "Rubik Beastly",
        +                "Rubik Broken Fax",
        +                "Rubik Bubbles",
        +                "Rubik Burned",
        +                "Rubik Dirt",
        +                "Rubik Distressed",
        +                "Rubik Doodle Shadow",
        +                "Rubik Doodle Triangles",
        +                "Rubik Gemstones",
        +                "Rubik Glitch",
        +                "Rubik Glitch Pop",
        +                "Rubik Iso",
        +                "Rubik Lines",
        +                "Rubik Maps",
        +                "Rubik Marker Hatch",
        +                "Rubik Maze",
        +                "Rubik Microbe",
        +                "Rubik Mono One",
        +                "Rubik Moonrocks",
        +                "Rubik Pixels",
        +                "Rubik Puddles",
        +                "Rubik Scribble",
        +                "Rubik Spray Paint",
        +                "Rubik Storm",
        +                "Rubik Vinyl",
        +                "Rubik Wet Paint",
        +                "Ruda",
        +                "Rufina",
        +                "Ruge Boogie",
        +                "Ruluko",
        +                "Rum Raisin",
        +                "Ruslan Display",
        +                "Russo One",
        +                "Ruthie",
        +                "Ruwudu",
        +                "Rye",
        +                "SN Pro",
        +                "STIX Two Math",
        +                "STIX Two Text",
        +                "SUSE",
        +                "SUSE Mono",
        +                "Sacramento",
        +                "Sahitya",
        +                "Sail",
        +                "Saira",
        +                "Saira Condensed",
        +                "Saira Extra Condensed",
        +                "Saira Semi Condensed",
        +                "Saira Stencil",
        +                "Salsa",
        +                "Sanchez",
        +                "Sancreek",
        +                "Sankofa Display",
        +                "Sansation",
        +                "Sansita",
        +                "Sansita Swashed",
        +                "Sarabun",
        +                "Sarala",
        +                "Sarina",
        +                "Sarpanch",
        +                "Sassy Frass",
        +                "Satisfy",
        +                "Savate",
        +                "Sawarabi Gothic",
        +                "Sawarabi Mincho",
        +                "Scada",
        +                "Scheherazade New",
        +                "Schibsted Grotesk",
        +                "Schoolbell",
        +                "Science Gothic",
        +                "Scope One",
        +                "Seaweed Script",
        +                "Secular One",
        +                "Sedan",
        +                "Sedan SC",
        +                "Sedgwick Ave",
        +                "Sedgwick Ave Display",
        +                "Sekuya",
        +                "Sen",
        +                "Send Flowers",
        +                "Sevillana",
        +                "Seymour One",
        +                "Shadows Into Light",
        +                "Shadows Into Light Two",
        +                "Shafarik",
        +                "Shalimar",
        +                "Shantell Sans",
        +                "Shanti",
        +                "Share",
        +                "Share Tech",
        +                "Share Tech Mono",
        +                "Shippori Antique",
        +                "Shippori Antique B1",
        +                "Shippori Mincho",
        +                "Shippori Mincho B1",
        +                "Shizuru",
        +                "Shojumaru",
        +                "Short Stack",
        +                "Shrikhand",
        +                "Siemreap",
        +                "Sigmar",
        +                "Sigmar One",
        +                "Signika",
        +                "Signika Negative",
        +                "Silkscreen",
        +                "Simonetta",
        +                "Single Day",
        +                "Sintony",
        +                "Sirin Stencil",
        +                "Sirivennela",
        +                "Six Caps",
        +                "Sixtyfour",
        +                "Sixtyfour Convergence",
        +                "Skranji",
        +                "Slabo 13px",
        +                "Slabo 27px",
        +                "Slackey",
        +                "Slackside One",
        +                "Smokum",
        +                "Smooch",
        +                "Smooch Sans",
        +                "Smythe",
        +                "Sniglet",
        +                "Snippet",
        +                "Snowburst One",
        +                "Sofadi One",
        +                "Sofia",
        +                "Sofia Sans",
        +                "Sofia Sans Condensed",
        +                "Sofia Sans Extra Condensed",
        +                "Sofia Sans Semi Condensed",
        +                "Solitreo",
        +                "Solway",
        +                "Sometype Mono",
        +                "Song Myung",
        +                "Sono",
        +                "Sonsie One",
        +                "Sora",
        +                "Sorts Mill Goudy",
        +                "Sour Gummy",
        +                "Source Code Pro",
        +                "Source Sans 3",
        +                "Source Serif 4",
        +                "Space Grotesk",
        +                "Space Mono",
        +                "Special Elite",
        +                "Special Gothic",
        +                "Special Gothic Condensed One",
        +                "Special Gothic Expanded One",
        +                "Spectral",
        +                "Spectral SC",
        +                "Spicy Rice",
        +                "Spinnaker",
        +                "Spirax",
        +                "Splash",
        +                "Spline Sans",
        +                "Spline Sans Mono",
        +                "Squada One",
        +                "Square Peg",
        +                "Sree Krushnadevaraya",
        +                "Sriracha",
        +                "Srisakdi",
        +                "Staatliches",
        +                "Stack Sans Headline",
        +                "Stack Sans Notch",
        +                "Stack Sans Text",
        +                "Stalemate",
        +                "Stalinist One",
        +                "Stardos Stencil",
        +                "Stick",
        +                "Stick No Bills",
        +                "Stint Ultra Condensed",
        +                "Stint Ultra Expanded",
        +                "Stoke",
        +                "Story Script",
        +                "Strait",
        +                "Strichpunkt Sans",
        +                "Style Script",
        +                "Stylish",
        +                "Sue Ellen Francisco",
        +                "Suez One",
        +                "Sulphur Point",
        +                "Sumana",
        +                "Sunflower",
        +                "Sunshiney",
        +                "Supermercado One",
        +                "Sura",
        +                "Suranna",
        +                "Suravaram",
        +                "Suwannaphum",
        +                "Swanky and Moo Moo",
        +                "Syncopate",
        +                "Syne",
        +                "Syne Mono",
        +                "Syne Tactile",
        +                "TASA Explorer",
        +                "TASA Orbiter",
        +                "Tac One",
        +                "Tagesschrift",
        +                "Tai Heritage Pro",
        +                "Tajawal",
        +                "Tangerine",
        +                "Tapestry",
        +                "Taprom",
        +                "Tauri",
        +                "Taviraj",
        +                "Teachers",
        +                "Teko",
        +                "Tektur",
        +                "Telex",
        +                "Tenali Ramakrishna",
        +                "Tenor Sans",
        +                "Text Me One",
        +                "Texturina",
        +                "Thasadith",
        +                "The Girl Next Door",
        +                "The Nautigal",
        +                "Tienne",
        +                "TikTok Sans",
        +                "Tillana",
        +                "Tilt Neon",
        +                "Tilt Prism",
        +                "Tilt Warp",
        +                "Timmana",
        +                "Tinos",
        +                "Tiny5",
        +                "Tiro Bangla",
        +                "Tiro Devanagari Hindi",
        +                "Tiro Devanagari Marathi",
        +                "Tiro Devanagari Sanskrit",
        +                "Tiro Gurmukhi",
        +                "Tiro Kannada",
        +                "Tiro Tamil",
        +                "Tiro Telugu",
        +                "Tirra",
        +                "Titan One",
        +                "Titillium Web",
        +                "Tomorrow",
        +                "Tourney",
        +                "Trade Winds",
        +                "Train One",
        +                "Triodion",
        +                "Trirong",
        +                "Trispace",
        +                "Trocchi",
        +                "Trochut",
        +                "Truculenta",
        +                "Trykker",
        +                "Tsukimi Rounded",
        +                "Tuffy",
        +                "Tulpen One",
        +                "Turret Road",
        +                "Twinkle Star",
        +                "Ubuntu",
        +                "Ubuntu Condensed",
        +                "Ubuntu Mono",
        +                "Ubuntu Sans",
        +                "Ubuntu Sans Mono",
        +                "Uchen",
        +                "Ultra",
        +                "Unbounded",
        +                "Uncial Antiqua",
        +                "Underdog",
        +                "Unica One",
        +                "UnifrakturCook",
        +                "UnifrakturMaguntia",
        +                "Unkempt",
        +                "Unlock",
        +                "Unna",
        +                "UoqMunThenKhung",
        +                "Updock",
        +                "Urbanist",
        +                "VT323",
        +                "Vampiro One",
        +                "Varela",
        +                "Varela Round",
        +                "Varta",
        +                "Vast Shadow",
        +                "Vazirmatn",
        +                "Vend Sans",
        +                "Vesper Libre",
        +                "Viaoda Libre",
        +                "Vibes",
        +                "Vibur",
        +                "Victor Mono",
        +                "Vidaloka",
        +                "Viga",
        +                "Vina Sans",
        +                "Voces",
        +                "Volkhov",
        +                "Vollkorn",
        +                "Vollkorn SC",
        +                "Voltaire",
        +                "Vujahday Script",
        +                "WDXL Lubrifont JP N",
        +                "WDXL Lubrifont SC",
        +                "WDXL Lubrifont TC",
        +                "Waiting for the Sunrise",
        +                "Wallpoet",
        +                "Walter Turncoat",
        +                "Warnes",
        +                "Water Brush",
        +                "Waterfall",
        +                "Wavefont",
        +                "Wellfleet",
        +                "Wendy One",
        +                "Whisper",
        +                "WindSong",
        +                "Winky Rough",
        +                "Winky Sans",
        +                "Wire One",
        +                "Wittgenstein",
        +                "Wix Madefor Display",
        +                "Wix Madefor Text",
        +                "Work Sans",
        +                "Workbench",
        +                "Xanh Mono",
        +                "Yaldevi",
        +                "Yanone Kaffeesatz",
        +                "Yantramanav",
        +                "Yarndings 12",
        +                "Yarndings 12 Charted",
        +                "Yarndings 20",
        +                "Yarndings 20 Charted",
        +                "Yatra One",
        +                "Yellowtail",
        +                "Yeon Sung",
        +                "Yeseva One",
        +                "Yesteryear",
        +                "Yomogi",
        +                "Young Serif",
        +                "Yrsa",
        +                "Ysabeau",
        +                "Ysabeau Infant",
        +                "Ysabeau Office",
        +                "Ysabeau SC",
        +                "Yuji Boku",
        +                "Yuji Hentaigana Akari",
        +                "Yuji Hentaigana Akebono",
        +                "Yuji Mai",
        +                "Yuji Syuku",
        +                "Yusei Magic",
        +                "Yuyu",
        +                "Yuyu Short",
        +                "ZCOOL KuaiLe",
        +                "ZCOOL QingKe HuangYou",
        +                "ZCOOL XiaoWei",
        +                "Zain",
        +                "Zalando Sans",
        +                "Zalando Sans Expanded",
        +                "Zalando Sans SemiExpanded",
        +                "Zen Antique",
        +                "Zen Antique Soft",
        +                "Zen Dots",
        +                "Zen Kaku Gothic Antique",
        +                "Zen Kaku Gothic New",
        +                "Zen Kurenaido",
        +                "Zen Loop",
        +                "Zen Maru Gothic",
        +                "Zen Old Mincho",
        +                "Zen Tokyo Zoo",
        +                "Zeyada",
        +                "Zhi Mang Xing",
        +                "Zilla Slab",
        +                "Zilla Slab Highlight"
        +              ],
        +              "type": "string"
        +            },
        +            "fontSize": {
        +              "type": "number"
        +            },
        +            "footerColor": {
        +              "type": "string"
        +            },
        +            "footerFontSize": {
        +              "type": "number"
        +            },
        +            "footerGap": {
        +              "type": "number"
        +            },
        +            "footerLinkColor": {
        +              "type": "string"
        +            },
        +            "gridColor": {
        +              "type": "string"
        +            },
        +            "gridLineWidth": {
        +              "type": "number"
        +            },
        +            "gridLines": {
        +              "enum": [
        +                "none",
        +                "value",
        +                "both"
        +              ],
        +              "type": "string"
        +            },
        +            "headerGap": {
        +              "type": "number"
        +            },
        +            "labelColor": {
        +              "type": "string"
        +            },
        +            "labelFontSize": {
        +              "type": "number"
        +            },
        +            "labelFontWeight": {
        +              "type": "string"
        +            },
        +            "labelHaloWidth": {
        +              "type": "number"
        +            },
        +            "labelMutedFontWeight": {
        +              "type": "string"
        +            },
        +            "labelMutedOpacity": {
        +              "type": "number"
        +            },
        +            "lineStrokeWidth": {
        +              "type": "number"
        +            },
        +            "numericFontFamily": {
        +              "type": "string"
        +            },
        +            "pieCornerRadius": {
        +              "type": "number"
        +            },
        +            "sequentialRange": {
        +              "items": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "string"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "subtitleColor": {
        +              "type": "string"
        +            },
        +            "subtitleFontSize": {
        +              "type": "number"
        +            },
        +            "tickDensity": {
        +              "type": "number"
        +            },
        +            "tickLabelColor": {
        +              "type": "string"
        +            },
        +            "tickLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "tickPadding": {
        +              "type": "number"
        +            },
        +            "tickSize": {
        +              "type": "number"
        +            },
        +            "titleColor": {
        +              "type": "string"
        +            },
        +            "titleFontFamily": {
        +              "type": "string"
        +            },
        +            "titleFontSize": {
        +              "type": "number"
        +            },
        +            "titleFontWeight": {
        +              "type": "string"
        +            },
        +            "titleSubtitleGap": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "title": {
        +          "type": "string"
        +        },
        +        "version": {
        +          "const": "2026-03-20",
        +          "type": "string"
        +        },
        +        "width": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "x": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "y": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        }
        +      },
        +      "required": [
        +        "version",
        +        "format",
        +        "marks"
        +      ],
        +      "title": "Szum Chart Configuration",
        +      "type": "object"
        +    },
        +    "valid": {
        +      "type": "boolean"
        +    }
        +  },
        +  "required": [
        +    "valid",
        +    "message",
        +    "errors",
        +    "diagnostics"
        +  ],
        +  "type": "object"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "id",
        -  "title",
        -  "imageUrl",
        -  "embedUrl",
        -  "editUrl",
        -  "manageUrl",
        -  "format",
        -  "mimeType"
        -]New value: +[
        +  "view",
        +  "id",
        +  "title",
        +  "imageUrl",
        +  "embedUrl",
        +  "editUrl",
        +  "manageUrl",
        +  "format",
        +  "mimeType",
        +  "validation"
        +]
    • Changedupdate_chart3 fields changed
      • addedInput schema / properties / acknowledgeWarnings
        Added value: +{
        +  "description": "Set true only after the user explicitly approves every warning returned for this exact config",
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / validation
        Added value: +{
        +  "additionalProperties": false,
        +  "properties": {
        +    "diagnostics": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "errors": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "code": {
        +            "type": "string"
        +          },
        +          "details": {
        +            "additionalProperties": {},
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "message": {
        +            "type": "string"
        +          },
        +          "path": {
        +            "items": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "type": "array"
        +          },
        +          "relatedPaths": {
        +            "items": {
        +              "items": {
        +                "anyOf": [
        +                  {
        +                    "type": "string"
        +                  },
        +                  {
        +                    "type": "number"
        +                  }
        +                ]
        +              },
        +              "type": "array"
        +            },
        +            "type": "array"
        +          },
        +          "severity": {
        +            "enum": [
        +              "error",
        +              "warning",
        +              "suggestion"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "code",
        +          "severity",
        +          "path",
        +          "message",
        +          "details"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "message": {
        +      "type": "string"
        +    },
        +    "suggestedConfig": {
        +      "additionalProperties": {},
        +      "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        +      "properties": {
        +        "attribution": {
        +          "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +          "type": "boolean"
        +        },
        +        "color": {
        +          "anyOf": [
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "categorical",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": {},
        +              "properties": {
        +                "domain": {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "label": {
        +                  "type": "string"
        +                },
        +                "range": {
        +                  "items": [
        +                    {
        +                      "type": "string"
        +                    },
        +                    {
        +                      "type": "string"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                "type": {
        +                  "const": "sequential",
        +                  "type": "string"
        +                }
        +              },
        +              "required": [
        +                "type"
        +              ],
        +              "type": "object"
        +            },
        +            {
        +              "additionalProperties": false,
        +              "properties": {
        +                "label": {
        +                  "type": "string"
        +                }
        +              },
        +              "type": "object"
        +            }
        +          ]
        +        },
        +        "data": {
        +          "items": {
        +            "additionalProperties": {
        +              "anyOf": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ]
        +            },
        +            "propertyNames": {
        +              "type": "string"
        +            },
        +            "type": "object"
        +          },
        +          "type": "array"
        +        },
        +        "footer": {
        +          "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +          "type": "string"
        +        },
        +        "format": {
        +          "enum": [
        +            "svg",
        +            "png"
        +          ],
        +          "type": "string"
        +        },
        +        "headerAlign": {
        +          "enum": [
        +            "left",
        +            "center",
        +            "right"
        +          ],
        +          "type": "string"
        +        },
        +        "height": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "locale": {
        +          "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +          "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +          "type": "string"
        +        },
        +        "margin": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "bottom": {
        +              "type": "number"
        +            },
        +            "left": {
        +              "type": "number"
        +            },
        +            "right": {
        +              "type": "number"
        +            },
        +            "top": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "marks": {
        +          "items": {
        +            "oneOf": [
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "field": {
        +                        "type": "string"
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      }
        +                    },
        +                    "required": [
        +                      "field"
        +                    ],
        +                    "type": "object"
        +                  },
        +                  "r": {
        +                    "type": "number"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "dot",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "points": {
        +                            "anyOf": [
        +                              {
        +                                "enum": [
        +                                  "extrema",
        +                                  "all",
        +                                  "ends"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              {
        +                                "const": false,
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "additionalProperties": {},
        +                                "properties": {
        +                                  "at": {
        +                                    "enum": [
        +                                      "extrema",
        +                                      "all",
        +                                      "ends"
        +                                    ],
        +                                    "type": "string"
        +                                  },
        +                                  "show": {
        +                                    "default": [
        +                                      "value"
        +                                    ],
        +                                    "items": {
        +                                      "enum": [
        +                                        "value",
        +                                        "category"
        +                                      ],
        +                                      "type": "string"
        +                                    },
        +                                    "type": "array"
        +                                  }
        +                                },
        +                                "required": [
        +                                  "at"
        +                                ],
        +                                "type": "object"
        +                              }
        +                            ],
        +                            "default": false
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "line",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "group": {
        +                    "default": "stack",
        +                    "enum": [
        +                      "stack",
        +                      "dodge"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "outside",
        +                            "enum": [
        +                              "auto",
        +                              "outside",
        +                              "inside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "value"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category",
        +                                "total"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "barX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "end": {
        +                            "anyOf": [
        +                              {
        +                                "type": "boolean"
        +                              },
        +                              {
        +                                "items": {
        +                                  "enum": [
        +                                    "category",
        +                                    "value",
        +                                    "percent"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            ],
        +                            "default": [
        +                              "category"
        +                            ]
        +                          },
        +                          "format": {
        +                            "type": "string"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "curve": {
        +                    "enum": [
        +                      "linear",
        +                      "monotone",
        +                      "step"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "areaX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "cornerRadius": {
        +                    "type": "number"
        +                  },
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "innerRadius": {
        +                    "default": 0,
        +                    "maximum": 1,
        +                    "minimum": 0,
        +                    "type": "number"
        +                  },
        +                  "label": {
        +                    "anyOf": [
        +                      {
        +                        "type": "boolean"
        +                      },
        +                      {
        +                        "additionalProperties": {},
        +                        "properties": {
        +                          "format": {
        +                            "type": "string"
        +                          },
        +                          "position": {
        +                            "default": "auto",
        +                            "enum": [
        +                              "auto",
        +                              "inside",
        +                              "outside"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          "show": {
        +                            "default": [
        +                              "category",
        +                              "percent"
        +                            ],
        +                            "items": {
        +                              "enum": [
        +                                "value",
        +                                "percent",
        +                                "category"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        },
        +                        "type": "object"
        +                      }
        +                    ]
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "pie",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "dx": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "dy": {
        +                    "default": 0,
        +                    "type": "number"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "fontSize": {
        +                    "type": "number"
        +                  },
        +                  "fontWeight": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "text": {
        +                    "default": "text",
        +                    "type": "string"
        +                  },
        +                  "textAnchor": {
        +                    "default": "center",
        +                    "enum": [
        +                      "start",
        +                      "center",
        +                      "end"
        +                    ],
        +                    "type": "string"
        +                  },
        +                  "type": {
        +                    "const": "text",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleX",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              },
        +              {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "data": {
        +                    "items": {
        +                      "additionalProperties": {
        +                        "anyOf": [
        +                          {
        +                            "type": "string"
        +                          },
        +                          {
        +                            "type": "number"
        +                          }
        +                        ]
        +                      },
        +                      "propertyNames": {
        +                        "type": "string"
        +                      },
        +                      "type": "object"
        +                    },
        +                    "type": "array"
        +                  },
        +                  "fill": {
        +                    "type": "string"
        +                  },
        +                  "stroke": {
        +                    "type": "string"
        +                  },
        +                  "strokeWidth": {
        +                    "default": 1,
        +                    "type": "number"
        +                  },
        +                  "type": {
        +                    "const": "ruleY",
        +                    "type": "string"
        +                  },
        +                  "x": {
        +                    "default": "x",
        +                    "type": "string"
        +                  },
        +                  "y": {
        +                    "default": "y",
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "type"
        +                ],
        +                "type": "object"
        +              }
        +            ]
        +          },
        +          "minItems": 1,
        +          "type": "array"
        +        },
        +        "plotHeight": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "plotWidth": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "scale": {
        +          "maximum": 4,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "subtitle": {
        +          "type": "string"
        +        },
        +        "theme": {
        +          "default": "editorial",
        +          "enum": [
        +            "editorial",
        +            "clean",
        +            "noir",
        +            "loud",
        +            "soft",
        +            "technical"
        +          ],
        +          "type": "string"
        +        },
        +        "themeOverrides": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "axisColor": {
        +              "type": "string"
        +            },
        +            "axisFrame": {
        +              "enum": [
        +                "none",
        +                "baseline",
        +                "lShape",
        +                "full"
        +              ],
        +              "type": "string"
        +            },
        +            "axisLabelColor": {
        +              "type": "string"
        +            },
        +            "axisLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "axisLineWidth": {
        +              "type": "number"
        +            },
        +            "backgroundColor": {
        +              "type": "string"
        +            },
        +            "barCornerRadius": {
        +              "type": "number"
        +            },
        +            "barPadding": {
        +              "type": "number"
        +            },
        +            "colors": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "curve": {
        +              "enum": [
        +                "linear",
        +                "monotone",
        +                "step"
        +              ],
        +              "type": "string"
        +            },
        +            "dotRadius": {
        +              "type": "number"
        +            },
        +            "fontFamily": {
        +              "enum": [
        +                "ABeeZee",
        +                "ADLaM Display",
        +                "AR One Sans",
        +                "Abel",
        +                "Abhaya Libre",
        +                "Aboreto",
        +                "Abril Fatface",
        +                "Abyssinica SIL",
        +                "Aclonica",
        +                "Acme",
        +                "Actor",
        +                "Adamina",
        +                "Advent Pro",
        +                "Afacad",
        +                "Afacad Flux",
        +                "Agbalumo",
        +                "Agdasima",
        +                "Agu Display",
        +                "Aguafina Script",
        +                "Akatab",
        +                "Akaya Kanadaka",
        +                "Akaya Telivigala",
        +                "Akronim",
        +                "Akshar",
        +                "Akt",
        +                "Aladin",
        +                "Alan Sans",
        +                "Alata",
        +                "Alatsi",
        +                "Albert Sans",
        +                "Aldrich",
        +                "Alef",
        +                "Alegreya",
        +                "Alegreya SC",
        +                "Alegreya Sans",
        +                "Alegreya Sans SC",
        +                "Aleo",
        +                "Alex Brush",
        +                "Alexandria",
        +                "Alfa Slab One",
        +                "Alice",
        +                "Alien Block",
        +                "Alike",
        +                "Alike Angular",
        +                "Alkalami",
        +                "Alkatra",
        +                "Allan",
        +                "Allerta",
        +                "Allerta Stencil",
        +                "Allison",
        +                "Allkin",
        +                "Allura",
        +                "Almarai",
        +                "Almendra",
        +                "Almendra Display",
        +                "Almendra SC",
        +                "Alumni Sans",
        +                "Alumni Sans Collegiate One",
        +                "Alumni Sans Inline One",
        +                "Alumni Sans Pinstripe",
        +                "Alumni Sans SC",
        +                "Alyamama",
        +                "Amarante",
        +                "Amaranth",
        +                "Amarna",
        +                "Amatic SC",
        +                "Amethysta",
        +                "Amiko",
        +                "Amiri",
        +                "Amiri Quran",
        +                "Amita",
        +                "Anaheim",
        +                "Ancizar Sans",
        +                "Ancizar Serif",
        +                "Andada Pro",
        +                "Andika",
        +                "Anek Bangla",
        +                "Anek Devanagari",
        +                "Anek Gujarati",
        +                "Anek Gurmukhi",
        +                "Anek Kannada",
        +                "Anek Latin",
        +                "Anek Malayalam",
        +                "Anek Odia",
        +                "Anek Tamil",
        +                "Anek Telugu",
        +                "Angkor",
        +                "Annapurna SIL",
        +                "Annie Use Your Telescope",
        +                "Anonymous Pro",
        +                "Anta",
        +                "Antic",
        +                "Antic Didone",
        +                "Antic Slab",
        +                "Anton",
        +                "Anton SC",
        +                "Antonio",
        +                "Anuphan",
        +                "Anybody",
        +                "Aoboshi One",
        +                "Arapey",
        +                "Arbutus",
        +                "Arbutus Slab",
        +                "Architects Daughter",
        +                "Archivo",
        +                "Archivo Black",
        +                "Archivo Narrow",
        +                "Are You Serious",
        +                "Aref Ruqaa",
        +                "Aref Ruqaa Ink",
        +                "Arima",
        +                "Arimo",
        +                "Arizonia",
        +                "Armata",
        +                "Arsenal",
        +                "Arsenal SC",
        +                "Artifika",
        +                "Arvo",
        +                "Arya",
        +                "Asap",
        +                "Asap Condensed",
        +                "Asar",
        +                "Asimovian",
        +                "Asset",
        +                "Assistant",
        +                "Asta Sans",
        +                "Astloch",
        +                "Asul",
        +                "Athiti",
        +                "Atkinson Hyperlegible",
        +                "Atkinson Hyperlegible Mono",
        +                "Atkinson Hyperlegible Next",
        +                "Atma",
        +                "Atomic Age",
        +                "Aubrey",
        +                "Audiowide",
        +                "Autour One",
        +                "Average",
        +                "Average Sans",
        +                "Averia Gruesa Libre",
        +                "Averia Libre",
        +                "Averia Sans Libre",
        +                "Averia Serif Libre",
        +                "Azeret Mono",
        +                "B612",
        +                "B612 Mono",
        +                "BBH Bartle",
        +                "BBH Bogle",
        +                "BBH Hegarty",
        +                "BIZ UDGothic",
        +                "BIZ UDMincho",
        +                "BIZ UDPGothic",
        +                "BIZ UDPMincho",
        +                "BJCree",
        +                "Babylonica",
        +                "Bacasime Antique",
        +                "Bad Script",
        +                "Badeen Display",
        +                "Bagel Fat One",
        +                "Bahiana",
        +                "Bahianita",
        +                "Bai Jamjuree",
        +                "Bakbak One",
        +                "Ballet",
        +                "Baloo 2",
        +                "Baloo Bhai 2",
        +                "Baloo Bhaijaan 2",
        +                "Baloo Bhaina 2",
        +                "Baloo Chettan 2",
        +                "Baloo Da 2",
        +                "Baloo Paaji 2",
        +                "Baloo Tamma 2",
        +                "Baloo Tammudu 2",
        +                "Baloo Thambi 2",
        +                "Balsamiq Sans",
        +                "Balthazar",
        +                "Bangers",
        +                "Barlow",
        +                "Barlow Condensed",
        +                "Barlow Semi Condensed",
        +                "Barriecito",
        +                "Barrio",
        +                "Basic",
        +                "Baskervville",
        +                "Baskervville SC",
        +                "Battambang",
        +                "Baumans",
        +                "Bayon",
        +                "Be Vietnam Pro",
        +                "Beau Rivage",
        +                "Bebas Neue",
        +                "Beiruti",
        +                "Belanosima",
        +                "Belgrano",
        +                "Bellefair",
        +                "Belleza",
        +                "Bellota",
        +                "Bellota Text",
        +                "BenchNine",
        +                "Benne",
        +                "Bentham",
        +                "Berkshire Swash",
        +                "Besley",
        +                "Betania Patmos",
        +                "Betania Patmos GDL",
        +                "Betania Patmos In",
        +                "Betania Patmos In GDL",
        +                "Beth Ellen",
        +                "Bevan",
        +                "BhuTuka Expanded One",
        +                "Big Shoulders",
        +                "Big Shoulders Inline",
        +                "Big Shoulders Stencil",
        +                "Bigelow Rules",
        +                "Bigshot One",
        +                "Bilbo",
        +                "Bilbo Swash Caps",
        +                "BioRhyme",
        +                "BioRhyme Expanded",
        +                "Birthstone",
        +                "Birthstone Bounce",
        +                "Biryani",
        +                "Bitcount",
        +                "Bitcount Grid Double",
        +                "Bitcount Grid Double Ink",
        +                "Bitcount Grid Single",
        +                "Bitcount Grid Single Ink",
        +                "Bitcount Ink",
        +                "Bitcount Prop Double",
        +                "Bitcount Prop Double Ink",
        +                "Bitcount Prop Single",
        +                "Bitcount Prop Single Ink",
        +                "Bitcount Single",
        +                "Bitcount Single Ink",
        +                "Bitter",
        +                "Black And White Picture",
        +                "Black Han Sans",
        +                "Black Ops One",
        +                "Blaka",
        +                "Blaka Hollow",
        +                "Blaka Ink",
        +                "Blinker",
        +                "Bodoni Moda",
        +                "Bodoni Moda SC",
        +                "Bokor",
        +                "Boldonse",
        +                "Bona Nova",
        +                "Bona Nova SC",
        +                "Bonbon",
        +                "Bonheur Royale",
        +                "Boogaloo",
        +                "Borel",
        +                "Bowlby One",
        +                "Bowlby One SC",
        +                "Bpmf Huninn",
        +                "Bpmf Iansui",
        +                "Bpmf Zihi Kai Std",
        +                "Braah One",
        +                "Brawler",
        +                "Bree Serif",
        +                "Bricolage Grotesque",
        +                "Bruno Ace",
        +                "Bruno Ace SC",
        +                "Brygada 1918",
        +                "Bubblegum Sans",
        +                "Bubbler One",
        +                "Buda",
        +                "Buenard",
        +                "Bungee",
        +                "Bungee Hairline",
        +                "Bungee Inline",
        +                "Bungee Outline",
        +                "Bungee Shade",
        +                "Bungee Spice",
        +                "Bungee Tint",
        +                "Butcherman",
        +                "Butterfly Kids",
        +                "Bytesized",
        +                "Cabin",
        +                "Cabin Condensed",
        +                "Cabin Sketch",
        +                "Cactus Classical Serif",
        +                "Caesar Dressing",
        +                "Cagliostro",
        +                "Cairo",
        +                "Cairo Play",
        +                "Cal Sans",
        +                "Caladea",
        +                "Calistoga",
        +                "Calligraffitti",
        +                "Cambay",
        +                "Cambo",
        +                "Candal",
        +                "Cantarell",
        +                "Cantata One",
        +                "Cantora One",
        +                "Caprasimo",
        +                "Capriola",
        +                "Caramel",
        +                "Carattere",
        +                "Cardo",
        +                "Carlito",
        +                "Carme",
        +                "Carrois Gothic",
        +                "Carrois Gothic SC",
        +                "Carter One",
        +                "Cascadia Code",
        +                "Cascadia Mono",
        +                "Castoro",
        +                "Castoro Titling",
        +                "Catamaran",
        +                "Caudex",
        +                "Cause",
        +                "Caveat",
        +                "Caveat Brush",
        +                "Cedarville Cursive",
        +                "Ceviche One",
        +                "Chakra Petch",
        +                "Changa",
        +                "Changa One",
        +                "Chango",
        +                "Charis SIL",
        +                "Charm",
        +                "Charmonman",
        +                "Chathura",
        +                "Chau Philomene One",
        +                "Chela One",
        +                "Chelsea Market",
        +                "Chenla",
        +                "Cherish",
        +                "Cherry Bomb One",
        +                "Cherry Cream Soda",
        +                "Cherry Swash",
        +                "Chewy",
        +                "Chicle",
        +                "Chilanka",
        +                "Chiron GoRound TC",
        +                "Chiron Hei HK",
        +                "Chiron Sung HK",
        +                "Chivo",
        +                "Chivo Mono",
        +                "Chocolate Classical Sans",
        +                "Chokokutai",
        +                "Chonburi",
        +                "Cinzel",
        +                "Cinzel Decorative",
        +                "Clicker Script",
        +                "Climate Crisis",
        +                "Coda",
        +                "Codystar",
        +                "Coiny",
        +                "Combo",
        +                "Comfortaa",
        +                "Comforter",
        +                "Comforter Brush",
        +                "Comic Neue",
        +                "Comic Relief",
        +                "Coming Soon",
        +                "Comme",
        +                "Commissioner",
        +                "Concert One",
        +                "Condiment",
        +                "Content",
        +                "Contrail One",
        +                "Convergence",
        +                "Cookie",
        +                "Copse",
        +                "Coral Pixels",
        +                "Corben",
        +                "Corinthia",
        +                "Cormorant",
        +                "Cormorant Garamond",
        +                "Cormorant Infant",
        +                "Cormorant SC",
        +                "Cormorant Unicase",
        +                "Cormorant Upright",
        +                "Cossette Texte",
        +                "Cossette Titre",
        +                "Courgette",
        +                "Courier Prime",
        +                "Cousine",
        +                "Coustard",
        +                "Covered By Your Grace",
        +                "Crafty Girls",
        +                "Creepster",
        +                "Crete Round",
        +                "Crimson Pro",
        +                "Crimson Text",
        +                "Croissant One",
        +                "Crushed",
        +                "Cuprum",
        +                "Cute Font",
        +                "Cutive",
        +                "Cutive Mono",
        +                "DM Mono",
        +                "DM Sans",
        +                "DM Serif Display",
        +                "DM Serif Text",
        +                "Dai Banna SIL",
        +                "Damion",
        +                "Dancing Script",
        +                "Danfo",
        +                "Dangrek",
        +                "Darker Grotesque",
        +                "Darumadrop One",
        +                "Datatype",
        +                "David Libre",
        +                "Dawning of a New Day",
        +                "Days One",
        +                "Dekko",
        +                "Dela Gothic One",
        +                "Delicious Handrawn",
        +                "Delius",
        +                "Delius Swash Caps",
        +                "Delius Unicase",
        +                "Della Respira",
        +                "Denk One",
        +                "Devonshire",
        +                "Dhurjati",
        +                "Didact Gothic",
        +                "Diphylleia",
        +                "Diplomata",
        +                "Diplomata SC",
        +                "Do Hyeon",
        +                "Dokdo",
        +                "Domine",
        +                "Donegal One",
        +                "Dongle",
        +                "Doppio One",
        +                "Dorsa",
        +                "Dosis",
        +                "DotGothic16",
        +                "Doto",
        +                "Dr Sugiyama",
        +                "Duru Sans",
        +                "DynaPuff",
        +                "Dynalight",
        +                "EB Garamond",
        +                "Eagle Lake",
        +                "East Sea Dokdo",
        +                "Eater",
        +                "Economica",
        +                "Eczar",
        +                "Edu AU VIC WA NT Arrows",
        +                "Edu AU VIC WA NT Dots",
        +                "Edu AU VIC WA NT Guides",
        +                "Edu AU VIC WA NT Hand",
        +                "Edu AU VIC WA NT Pre",
        +                "Edu NSW ACT Cursive",
        +                "Edu NSW ACT Foundation",
        +                "Edu NSW ACT Hand Pre",
        +                "Edu QLD Beginner",
        +                "Edu QLD Hand",
        +                "Edu SA Beginner",
        +                "Edu SA Hand",
        +                "Edu TAS Beginner",
        +                "Edu VIC WA NT Beginner",
        +                "Edu VIC WA NT Hand",
        +                "Edu VIC WA NT Hand Pre",
        +                "El Messiri",
        +                "Electrolize",
        +                "Elms Sans",
        +                "Elsie",
        +                "Elsie Swash Caps",
        +                "Emblema One",
        +                "Emilys Candy",
        +                "Encode Sans",
        +                "Encode Sans Condensed",
        +                "Encode Sans Expanded",
        +                "Encode Sans SC",
        +                "Encode Sans Semi Condensed",
        +                "Encode Sans Semi Expanded",
        +                "Engagement",
        +                "Englebert",
        +                "Enriqueta",
        +                "Ephesis",
        +                "Epilogue",
        +                "Epunda Sans",
        +                "Epunda Slab",
        +                "Erica One",
        +                "Esteban",
        +                "Estedad",
        +                "Estonia",
        +                "Euphoria Script",
        +                "Ewert",
        +                "Exile",
        +                "Exo",
        +                "Exo 2",
        +                "Expletus Sans",
        +                "Explora",
        +                "Faculty Glyphic",
        +                "Fahkwang",
        +                "Familjen Grotesk",
        +                "Fanwood Text",
        +                "Farro",
        +                "Farsan",
        +                "Fascinate",
        +                "Fascinate Inline",
        +                "Faster One",
        +                "Fasthand",
        +                "Fauna One",
        +                "Faustina",
        +                "Federant",
        +                "Federo",
        +                "Felipa",
        +                "Fenix",
        +                "Festive",
        +                "Figtree",
        +                "Finger Paint",
        +                "Finlandica Headline",
        +                "Finlandica Text",
        +                "Fira Code",
        +                "Fira Mono",
        +                "Fira Sans",
        +                "Fira Sans Condensed",
        +                "Fira Sans Extra Condensed",
        +                "Fjalla One",
        +                "Fjord One",
        +                "Flamenco",
        +                "Flavors",
        +                "Fleur De Leah",
        +                "Flow Block",
        +                "Flow Circular",
        +                "Flow Rounded",
        +                "Foldit",
        +                "Fondamento",
        +                "Fontdiner Swanky",
        +                "Forum",
        +                "Fragment Mono",
        +                "Francois One",
        +                "Frank Ruhl Libre",
        +                "Fraunces",
        +                "Freckle Face",
        +                "Fredericka the Great",
        +                "Fredoka",
        +                "Freehand",
        +                "Freeman",
        +                "Fresca",
        +                "Frijole",
        +                "Fruktur",
        +                "Fugaz One",
        +                "Fuggles",
        +                "Funnel Display",
        +                "Funnel Sans",
        +                "Fustat",
        +                "Fuzzy Bubbles",
        +                "GFS Didot",
        +                "GFS Neohellenic",
        +                "Ga Maamli",
        +                "Gabarito",
        +                "Gabriela",
        +                "Gaegu",
        +                "Gafata",
        +                "Gajraj One",
        +                "Galada",
        +                "Galdeano",
        +                "Galindo",
        +                "Gamja Flower",
        +                "Gantari",
        +                "Gasoek One",
        +                "Gayathri",
        +                "Geist",
        +                "Geist Mono",
        +                "Geist Pixel",
        +                "Gelasio",
        +                "Gemunu Libre",
        +                "Genos",
        +                "Gentium Book Plus",
        +                "Gentium Plus",
        +                "Geo",
        +                "Geologica",
        +                "Geom",
        +                "Geomini",
        +                "Georama",
        +                "Geostar",
        +                "Geostar Fill",
        +                "Germania One",
        +                "Gideon Roman",
        +                "Gidole",
        +                "Gidugu",
        +                "Gilda Display",
        +                "Girassol",
        +                "Give You Glory",
        +                "Glass Antiqua",
        +                "Glegoo",
        +                "Gloock",
        +                "Gloria Hallelujah",
        +                "Glory",
        +                "Gluten",
        +                "Goblin One",
        +                "Gochi Hand",
        +                "Goldman",
        +                "Golos Text",
        +                "Google Sans",
        +                "Google Sans Code",
        +                "Google Sans Flex",
        +                "Gorditas",
        +                "Gothic A1",
        +                "Gotu",
        +                "Goudy Bookletter 1911",
        +                "Gowun Batang",
        +                "Gowun Dodum",
        +                "Graduate",
        +                "Grand Hotel",
        +                "Grandiflora One",
        +                "Grandstander",
        +                "Grape Nuts",
        +                "Gravitas One",
        +                "Great Vibes",
        +                "Grechen Fuemen",
        +                "Grenze",
        +                "Grenze Gotisch",
        +                "Grey Qo",
        +                "Griffy",
        +                "Gruppo",
        +                "Gudea",
        +                "Gugi",
        +                "Gulzar",
        +                "Gupter",
        +                "Gurajada",
        +                "Gveret Levin",
        +                "Gwendolyn",
        +                "Habibi",
        +                "Hachi Maru Pop",
        +                "Hahmlet",
        +                "Halant",
        +                "Hammersmith One",
        +                "Hanalei",
        +                "Hanalei Fill",
        +                "Handjet",
        +                "Handlee",
        +                "Hanken Grotesk",
        +                "Hanuman",
        +                "Happy Monkey",
        +                "Harmattan",
        +                "Headland One",
        +                "Hedvig Letters Sans",
        +                "Hedvig Letters Serif",
        +                "Heebo",
        +                "Henny Penny",
        +                "Hepta Slab",
        +                "Herr Von Muellerhoff",
        +                "Hi Melody",
        +                "Hibur Mono",
        +                "Hina Mincho",
        +                "Hind",
        +                "Hind Guntur",
        +                "Hind Madurai",
        +                "Hind Mysuru",
        +                "Hind Siliguri",
        +                "Hind Vadodara",
        +                "Holtwood One SC",
        +                "Homemade Apple",
        +                "Homenaje",
        +                "Honk",
        +                "Host Grotesk",
        +                "Hubballi",
        +                "Hubot Sans",
        +                "Huninn",
        +                "Hurricane",
        +                "IBM Plex Mono",
        +                "IBM Plex Sans",
        +                "IBM Plex Sans Arabic",
        +                "IBM Plex Sans Condensed",
        +                "IBM Plex Sans Devanagari",
        +                "IBM Plex Sans Hebrew",
        +                "IBM Plex Sans JP",
        +                "IBM Plex Sans KR",
        +                "IBM Plex Sans Thai",
        +                "IBM Plex Sans Thai Looped",
        +                "IBM Plex Serif",
        +                "IM Fell DW Pica",
        +                "IM Fell DW Pica SC",
        +                "IM Fell Double Pica",
        +                "IM Fell Double Pica SC",
        +                "IM Fell English",
        +                "IM Fell English SC",
        +                "IM Fell French Canon",
        +                "IM Fell French Canon SC",
        +                "IM Fell Great Primer",
        +                "IM Fell Great Primer SC",
        +                "Iansui",
        +                "Ibarra Real Nova",
        +                "Iceberg",
        +                "Iceland",
        +                "Idiqlat",
        +                "Imbue",
        +                "Imperial Script",
        +                "Imprima",
        +                "Inclusive Sans",
        +                "Inconsolata",
        +                "Inder",
        +                "Indie Flower",
        +                "Ingrid Darling",
        +                "Inika",
        +                "Inknut Antiqua",
        +                "Inria Sans",
        +                "Inria Serif",
        +                "Inspiration",
        +                "Instrument Sans",
        +                "Instrument Serif",
        +                "Intel One Mono",
        +                "Inter",
        +                "Inter Tight",
        +                "Iosevka Charon",
        +                "Iosevka Charon Mono",
        +                "Irish Grover",
        +                "Island Moments",
        +                "Istok Web",
        +                "Italiana",
        +                "Italianno",
        +                "Itim",
        +                "Jacquard 12",
        +                "Jacquard 12 Charted",
        +                "Jacquard 24",
        +                "Jacquard 24 Charted",
        +                "Jacquarda Bastarda 9",
        +                "Jacquarda Bastarda 9 Charted",
        +                "Jacques Francois",
        +                "Jacques Francois Shadow",
        +                "Jaini",
        +                "Jaini Purva",
        +                "Jaldi",
        +                "Jaro",
        +                "Jersey 10",
        +                "Jersey 10 Charted",
        +                "Jersey 15",
        +                "Jersey 15 Charted",
        +                "Jersey 20",
        +                "Jersey 20 Charted",
        +                "Jersey 25",
        +                "Jersey 25 Charted",
        +                "JetBrains Mono",
        +                "Jim Nightshade",
        +                "Joan",
        +                "Jockey One",
        +                "Jolly Lodger",
        +                "Jomhuria",
        +                "Jomolhari",
        +                "Josefin Sans",
        +                "Josefin Slab",
        +                "Jost",
        +                "Joti One",
        +                "Jua",
        +                "Judson",
        +                "Julee",
        +                "Julius Sans One",
        +                "Junge",
        +                "Jura",
        +                "Just Another Hand",
        +                "Just Me Again Down Here",
        +                "K2D",
        +                "Kablammo",
        +                "Kadwa",
        +                "Kaisei Decol",
        +                "Kaisei HarunoUmi",
        +                "Kaisei Opti",
        +                "Kaisei Tokumin",
        +                "Kalam",
        +                "Kalnia",
        +                "Kalnia Glaze",
        +                "Kameron",
        +                "Kanchenjunga",
        +                "Kanit",
        +                "Kantumruy Pro",
        +                "Kapakana",
        +                "Karantina",
        +                "Karla",
        +                "Karla Tamil Inclined",
        +                "Karla Tamil Upright",
        +                "Karma",
        +                "Katibeh",
        +                "Kaushan Script",
        +                "Kavivanar",
        +                "Kavoon",
        +                "Kay Pho Du",
        +                "Kdam Thmor Pro",
        +                "Keania One",
        +                "Kedebideri",
        +                "Kelly Slab",
        +                "Kenia",
        +                "Khand",
        +                "Khmer",
        +                "Khula",
        +                "Kings",
        +                "Kirang Haerang",
        +                "Kite One",
        +                "Kiwi Maru",
        +                "Klee One",
        +                "Knewave",
        +                "KoHo",
        +                "Kodchasan",
        +                "Kode Mono",
        +                "Koh Santepheap",
        +                "Kolker Brush",
        +                "Konkhmer Sleokchher",
        +                "Kosugi",
        +                "Kosugi Maru",
        +                "Kotta One",
        +                "Koulen",
        +                "Kranky",
        +                "Kreon",
        +                "Kristi",
        +                "Krona One",
        +                "Krub",
        +                "Kufam",
        +                "Kulim Park",
        +                "Kumar One",
        +                "Kumar One Outline",
        +                "Kumbh Sans",
        +                "Kurale",
        +                "LINE Seed JP",
        +                "LXGW Marker Gothic",
        +                "LXGW WenKai Mono TC",
        +                "LXGW WenKai TC",
        +                "La Belle Aurore",
        +                "Labrada",
        +                "Lacquer",
        +                "Laila",
        +                "Lakki Reddy",
        +                "Lalezar",
        +                "Lancelot",
        +                "Langar",
        +                "Lateef",
        +                "Lato",
        +                "Lavishly Yours",
        +                "League Gothic",
        +                "League Script",
        +                "League Spartan",
        +                "Leckerli One",
        +                "Ledger",
        +                "Lekton",
        +                "Lemon",
        +                "Lemonada",
        +                "Lexend",
        +                "Lexend Deca",
        +                "Lexend Exa",
        +                "Lexend Giga",
        +                "Lexend Mega",
        +                "Lexend Peta",
        +                "Lexend Tera",
        +                "Lexend Zetta",
        +                "Libertinus Keyboard",
        +                "Libertinus Math",
        +                "Libertinus Mono",
        +                "Libertinus Sans",
        +                "Libertinus Serif",
        +                "Libertinus Serif Display",
        +                "Libre Barcode 128",
        +                "Libre Barcode 128 Text",
        +                "Libre Barcode 39",
        +                "Libre Barcode 39 Extended",
        +                "Libre Barcode 39 Extended Text",
        +                "Libre Barcode 39 Text",
        +                "Libre Barcode EAN13 Text",
        +                "Libre Baskerville",
        +                "Libre Bodoni",
        +                "Libre Caslon Display",
        +                "Libre Caslon Text",
        +                "Libre Franklin",
        +                "Licorice",
        +                "Life Savers",
        +                "Lilex",
        +                "Lilita One",
        +                "Lily Script One",
        +                "Limelight",
        +                "Linden Hill",
        +                "Linefont",
        +                "Lisu Bosa",
        +                "Liter",
        +                "Literata",
        +                "Liu Jian Mao Cao",
        +                "Livvic",
        +                "Lobster",
        +                "Lobster Two",
        +                "Londrina Outline",
        +                "Londrina Shadow",
        +                "Londrina Sketch",
        +                "Londrina Solid",
        +                "Long Cang",
        +                "Lora",
        +                "Love Light",
        +                "Love Ya Like A Sister",
        +                "Loved by the King",
        +                "Lovers Quarrel",
        +                "Luckiest Guy",
        +                "Lugrasimo",
        +                "Lumanosimo",
        +                "Lunasima",
        +                "Lusitana",
        +                "Lustria",
        +                "Luxurious Roman",
        +                "Luxurious Script",
        +                "M PLUS 1",
        +                "M PLUS 1 Code",
        +                "M PLUS 1p",
        +                "M PLUS 2",
        +                "M PLUS Code Latin",
        +                "M PLUS Rounded 1c",
        +                "M PLUS U",
        +                "Ma Shan Zheng",
        +                "Macondo",
        +                "Macondo Swash Caps",
        +                "Mada",
        +                "Madimi One",
        +                "Magra",
        +                "Maiden Orange",
        +                "Maitree",
        +                "Major Mono Display",
        +                "Mako",
        +                "Mali",
        +                "Mallanna",
        +                "Maname",
        +                "Mandali",
        +                "Manjari",
        +                "Manrope",
        +                "Mansalva",
        +                "Manuale",
        +                "Manufacturing Consent",
        +                "Marcellus",
        +                "Marcellus SC",
        +                "Marck Script",
        +                "Margarine",
        +                "Marhey",
        +                "Markazi Text",
        +                "Marko One",
        +                "Marmelad",
        +                "Martel",
        +                "Martel Sans",
        +                "Martian Mono",
        +                "Marvel",
        +                "Matangi",
        +                "Mate",
        +                "Mate SC",
        +                "Matemasie",
        +                "Material Icons",
        +                "Material Icons Outlined",
        +                "Material Icons Round",
        +                "Material Icons Sharp",
        +                "Material Icons Two Tone",
        +                "Material Symbols",
        +                "Material Symbols Outlined",
        +                "Material Symbols Rounded",
        +                "Material Symbols Sharp",
        +                "Maven Pro",
        +                "McLaren",
        +                "Mea Culpa",
        +                "Meddon",
        +                "MedievalSharp",
        +                "Medula One",
        +                "Meera Inimai",
        +                "Megrim",
        +                "Meie Script",
        +                "Menbere",
        +                "Meow Script",
        +                "Merienda",
        +                "Merriweather",
        +                "Merriweather Sans",
        +                "Metal",
        +                "Metal Mania",
        +                "Metamorphous",
        +                "Metrophobic",
        +                "Michroma",
        +                "Micro 5",
        +                "Micro 5 Charted",
        +                "Milonga",
        +                "Miltonian",
        +                "Miltonian Tattoo",
        +                "Mina",
        +                "Mingzat",
        +                "Miniver",
        +                "Miranda Sans",
        +                "Miriam Libre",
        +                "Mirza",
        +                "Miss Fajardose",
        +                "Mitr",
        +                "Mochiy Pop One",
        +                "Mochiy Pop P One",
        +                "Modak",
        +                "Modern Antiqua",
        +                "Moderustic",
        +                "Mogra",
        +                "Mohave",
        +                "Moirai One",
        +                "Molengo",
        +                "Molle",
        +                "Momo Signature",
        +                "Momo Trust Display",
        +                "Momo Trust Sans",
        +                "Mona Sans",
        +                "Monda",
        +                "Monofett",
        +                "Monomakh",
        +                "Monomaniac One",
        +                "Monoton",
        +                "Monsieur La Doulaise",
        +                "Montaga",
        +                "Montagu Slab",
        +                "MonteCarlo",
        +                "Montenegrin Gothic One",
        +                "Montez",
        +                "Montserrat",
        +                "Montserrat Alternates",
        +                "Montserrat Underline",
        +                "Moo Lah Lah",
        +                "Mooli",
        +                "Moon Dance",
        +                "Moul",
        +                "Moulpali",
        +                "Mountains of Christmas",
        +                "Mouse Memoirs",
        +                "Mozilla Headline",
        +                "Mozilla Text",
        +                "Mr Bedfort",
        +                "Mr Dafoe",
        +                "Mr De Haviland",
        +                "Mrs Saint Delafield",
        +                "Mrs Sheppards",
        +                "Ms Madi",
        +                "Mukta",
        +                "Mukta Mahee",
        +                "Mukta Malar",
        +                "Mukta Vaani",
        +                "Mulish",
        +                "Murecho",
        +                "MuseoModerno",
        +                "My Soul",
        +                "Mynerve",
        +                "Mystery Quest",
        +                "NTR",
        +                "Nabla",
        +                "Namdhinggo",
        +                "Nanum Brush Script",
        +                "Nanum Gothic",
        +                "Nanum Gothic Coding",
        +                "Nanum Myeongjo",
        +                "Nanum Pen Script",
        +                "Narnoor",
        +                "Nata Sans",
        +                "National Park",
        +                "Neonderthaw",
        +                "Nerko One",
        +                "Neucha",
        +                "Neuton",
        +                "New Amsterdam",
        +                "New Rocker",
        +                "New Tegomin",
        +                "News Cycle",
        +                "Newsreader",
        +                "Niconne",
        +                "Niramit",
        +                "Nixie One",
        +                "Nobile",
        +                "Nokora",
        +                "Norican",
        +                "Nosifer",
        +                "Notable",
        +                "Nothing You Could Do",
        +                "Noticia Text",
        +                "Noto Color Emoji",
        +                "Noto Emoji",
        +                "Noto Kufi Arabic",
        +                "Noto Music",
        +                "Noto Naskh Arabic",
        +                "Noto Nastaliq Urdu",
        +                "Noto Rashi Hebrew",
        +                "Noto Sans",
        +                "Noto Sans Adlam",
        +                "Noto Sans Adlam Unjoined",
        +                "Noto Sans Anatolian Hieroglyphs",
        +                "Noto Sans Arabic",
        +                "Noto Sans Armenian",
        +                "Noto Sans Avestan",
        +                "Noto Sans Balinese",
        +                "Noto Sans Bamum",
        +                "Noto Sans Bassa Vah",
        +                "Noto Sans Batak",
        +                "Noto Sans Bengali",
        +                "Noto Sans Bhaiksuki",
        +                "Noto Sans Brahmi",
        +                "Noto Sans Buginese",
        +                "Noto Sans Buhid",
        +                "Noto Sans Canadian Aboriginal",
        +                "Noto Sans Carian",
        +                "Noto Sans Caucasian Albanian",
        +                "Noto Sans Chakma",
        +                "Noto Sans Cham",
        +                "Noto Sans Cherokee",
        +                "Noto Sans Chorasmian",
        +                "Noto Sans Coptic",
        +                "Noto Sans Cuneiform",
        +                "Noto Sans Cypriot",
        +                "Noto Sans Cypro Minoan",
        +                "Noto Sans Deseret",
        +                "Noto Sans Devanagari",
        +                "Noto Sans Display",
        +                "Noto Sans Duployan",
        +                "Noto Sans Egyptian Hieroglyphs",
        +                "Noto Sans Elbasan",
        +                "Noto Sans Elymaic",
        +                "Noto Sans Ethiopic",
        +                "Noto Sans Georgian",
        +                "Noto Sans Glagolitic",
        +                "Noto Sans Gothic",
        +                "Noto Sans Grantha",
        +                "Noto Sans Gujarati",
        +                "Noto Sans Gunjala Gondi",
        +                "Noto Sans Gurmukhi",
        +                "Noto Sans HK",
        +                "Noto Sans Hanifi Rohingya",
        +                "Noto Sans Hanunoo",
        +                "Noto Sans Hatran",
        +                "Noto Sans Hebrew",
        +                "Noto Sans Imperial Aramaic",
        +                "Noto Sans Indic Siyaq Numbers",
        +                "Noto Sans Inscriptional Pahlavi",
        +                "Noto Sans Inscriptional Parthian",
        +                "Noto Sans JP",
        +                "Noto Sans Javanese",
        +                "Noto Sans KR",
        +                "Noto Sans Kaithi",
        +                "Noto Sans Kannada",
        +                "Noto Sans Kawi",
        +                "Noto Sans Kayah Li",
        +                "Noto Sans Kharoshthi",
        +                "Noto Sans Khmer",
        +                "Noto Sans Khojki",
        +                "Noto Sans Khudawadi",
        +                "Noto Sans Lao",
        +                "Noto Sans Lao Looped",
        +                "Noto Sans Lepcha",
        +                "Noto Sans Limbu",
        +                "Noto Sans Linear A",
        +                "Noto Sans Linear B",
        +                "Noto Sans Lisu",
        +                "Noto Sans Lycian",
        +                "Noto Sans Lydian",
        +                "Noto Sans Mahajani",
        +                "Noto Sans Malayalam",
        +                "Noto Sans Mandaic",
        +                "Noto Sans Manichaean",
        +                "Noto Sans Marchen",
        +                "Noto Sans Masaram Gondi",
        +                "Noto Sans Math",
        +                "Noto Sans Mayan Numerals",
        +                "Noto Sans Medefaidrin",
        +                "Noto Sans Meetei Mayek",
        +                "Noto Sans Mende Kikakui",
        +                "Noto Sans Meroitic",
        +                "Noto Sans Miao",
        +                "Noto Sans Modi",
        +                "Noto Sans Mongolian",
        +                "Noto Sans Mono",
        +                "Noto Sans Mro",
        +                "Noto Sans Multani",
        +                "Noto Sans Myanmar",
        +                "Noto Sans NKo",
        +                "Noto Sans NKo Unjoined",
        +                "Noto Sans Nabataean",
        +                "Noto Sans Nag Mundari",
        +                "Noto Sans Nandinagari",
        +                "Noto Sans New Tai Lue",
        +                "Noto Sans Newa",
        +                "Noto Sans Nushu",
        +                "Noto Sans Ogham",
        +                "Noto Sans Ol Chiki",
        +                "Noto Sans Old Hungarian",
        +                "Noto Sans Old Italic",
        +                "Noto Sans Old North Arabian",
        +                "Noto Sans Old Permic",
        +                "Noto Sans Old Persian",
        +                "Noto Sans Old Sogdian",
        +                "Noto Sans Old South Arabian",
        +                "Noto Sans Old Turkic",
        +                "Noto Sans Oriya",
        +                "Noto Sans Osage",
        +                "Noto Sans Osmanya",
        +                "Noto Sans Pahawh Hmong",
        +                "Noto Sans Palmyrene",
        +                "Noto Sans Pau Cin Hau",
        +                "Noto Sans PhagsPa",
        +                "Noto Sans Phoenician",
        +                "Noto Sans Psalter Pahlavi",
        +                "Noto Sans Rejang",
        +                "Noto Sans Runic",
        +                "Noto Sans SC",
        +                "Noto Sans Samaritan",
        +                "Noto Sans Saurashtra",
        +                "Noto Sans Sharada",
        +                "Noto Sans Shavian",
        +                "Noto Sans Siddham",
        +                "Noto Sans SignWriting",
        +                "Noto Sans Sinhala",
        +                "Noto Sans Sogdian",
        +                "Noto Sans Sora Sompeng",
        +                "Noto Sans Soyombo",
        +                "Noto Sans Sundanese",
        +                "Noto Sans Sunuwar",
        +                "Noto Sans Syloti Nagri",
        +                "Noto Sans Symbols",
        +                "Noto Sans Symbols 2",
        +                "Noto Sans Syriac",
        +                "Noto Sans Syriac Eastern",
        +                "Noto Sans Syriac Western",
        +                "Noto Sans TC",
        +                "Noto Sans Tagalog",
        +                "Noto Sans Tagbanwa",
        +                "Noto Sans Tai Le",
        +                "Noto Sans Tai Tham",
        +                "Noto Sans Tai Viet",
        +                "Noto Sans Takri",
        +                "Noto Sans Tamil",
        +                "Noto Sans Tamil Supplement",
        +                "Noto Sans Tangsa",
        +                "Noto Sans Telugu",
        +                "Noto Sans Thaana",
        +                "Noto Sans Thai",
        +                "Noto Sans Thai Looped",
        +                "Noto Sans Tifinagh",
        +                "Noto Sans Tirhuta",
        +                "Noto Sans Ugaritic",
        +                "Noto Sans Vai",
        +                "Noto Sans Vithkuqi",
        +                "Noto Sans Wancho",
        +                "Noto Sans Warang Citi",
        +                "Noto Sans Yi",
        +                "Noto Sans Zanabazar Square",
        +                "Noto Serif",
        +                "Noto Serif Ahom",
        +                "Noto Serif Armenian",
        +                "Noto Serif Balinese",
        +                "Noto Serif Bengali",
        +                "Noto Serif Devanagari",
        +                "Noto Serif Display",
        +                "Noto Serif Dives Akuru",
        +                "Noto Serif Dogra",
        +                "Noto Serif Ethiopic",
        +                "Noto Serif Georgian",
        +                "Noto Serif Grantha",
        +                "Noto Serif Gujarati",
        +                "Noto Serif Gurmukhi",
        +                "Noto Serif HK",
        +                "Noto Serif Hebrew",
        +                "Noto Serif Hentaigana",
        +                "Noto Serif JP",
        +                "Noto Serif KR",
        +                "Noto Serif Kannada",
        +                "Noto Serif Khitan Small Script",
        +                "Noto Serif Khmer",
        +                "Noto Serif Khojki",
        +                "Noto Serif Lao",
        +                "Noto Serif Makasar",
        +                "Noto Serif Malayalam",
        +                "Noto Serif Myanmar",
        +                "Noto Serif NP Hmong",
        +                "Noto Serif Old Uyghur",
        +                "Noto Serif Oriya",
        +                "Noto Serif Ottoman Siyaq",
        +                "Noto Serif SC",
        +                "Noto Serif Sinhala",
        +                "Noto Serif TC",
        +                "Noto Serif Tamil",
        +                "Noto Serif Tangut",
        +                "Noto Serif Telugu",
        +                "Noto Serif Thai",
        +                "Noto Serif Tibetan",
        +                "Noto Serif Todhri",
        +                "Noto Serif Toto",
        +                "Noto Serif Vithkuqi",
        +                "Noto Serif Yezidi",
        +                "Noto Traditional Nushu",
        +                "Noto Znamenny Musical Notation",
        +                "Nova Cut",
        +                "Nova Flat",
        +                "Nova Mono",
        +                "Nova Oval",
        +                "Nova Round",
        +                "Nova Script",
        +                "Nova Slim",
        +                "Nova Square",
        +                "Numans",
        +                "Nunito",
        +                "Nunito Sans",
        +                "Nuosu SIL",
        +                "Odibee Sans",
        +                "Odor Mean Chey",
        +                "Offside",
        +                "Oi",
        +                "Ojuju",
        +                "Old Standard TT",
        +                "Oldenburg",
        +                "Ole",
        +                "Oleo Script",
        +                "Oleo Script Swash Caps",
        +                "Onest",
        +                "Oooh Baby",
        +                "Open Sans",
        +                "Oranienbaum",
        +                "Orbit",
        +                "Orbitron",
        +                "Oregano",
        +                "Orelega One",
        +                "Orienta",
        +                "Original Surfer",
        +                "Oswald",
        +                "Outfit",
        +                "Over the Rainbow",
        +                "Overlock",
        +                "Overlock SC",
        +                "Overpass",
        +                "Overpass Mono",
        +                "Ovo",
        +                "Oxanium",
        +                "Oxygen",
        +                "Oxygen Mono",
        +                "PT Mono",
        +                "PT Sans",
        +                "PT Sans Caption",
        +                "PT Sans Narrow",
        +                "PT Serif",
        +                "PT Serif Caption",
        +                "Pacifico",
        +                "Padauk",
        +                "Padyakke Expanded One",
        +                "Palanquin",
        +                "Palanquin Dark",
        +                "Palette Mosaic",
        +                "Pangolin",
        +                "Paprika",
        +                "Parastoo",
        +                "Parisienne",
        +                "Parkinsans",
        +                "Passero One",
        +                "Passion One",
        +                "Passions Conflict",
        +                "Pathway Extreme",
        +                "Pathway Gothic One",
        +                "Patrick Hand",
        +                "Patrick Hand SC",
        +                "Pattaya",
        +                "Patua One",
        +                "Pavanam",
        +                "Paytone One",
        +                "Peddana",
        +                "Peralta",
        +                "Permanent Marker",
        +                "Petemoss",
        +                "Petit Formal Script",
        +                "Petrona",
        +                "Phetsarath",
        +                "Philosopher",
        +                "Phudu",
        +                "Piazzolla",
        +                "Piedra",
        +                "Pinyon Script",
        +                "Pirata One",
        +                "Pixelify Sans",
        +                "Plaster",
        +                "Platypi",
        +                "Play",
        +                "Playball",
        +                "Playfair",
        +                "Playfair Display",
        +                "Playfair Display SC",
        +                "Playpen Sans",
        +                "Playpen Sans Arabic",
        +                "Playpen Sans Deva",
        +                "Playpen Sans Hebrew",
        +                "Playpen Sans Thai",
        +                "Playwrite AR",
        +                "Playwrite AR Guides",
        +                "Playwrite AT",
        +                "Playwrite AT Guides",
        +                "Playwrite AU NSW",
        +                "Playwrite AU NSW Guides",
        +                "Playwrite AU QLD",
        +                "Playwrite AU QLD Guides",
        +                "Playwrite AU SA",
        +                "Playwrite AU SA Guides",
        +                "Playwrite AU TAS",
        +                "Playwrite AU TAS Guides",
        +                "Playwrite AU VIC",
        +                "Playwrite AU VIC Guides",
        +                "Playwrite BE VLG",
        +                "Playwrite BE VLG Guides",
        +                "Playwrite BE WAL",
        +                "Playwrite BE WAL Guides",
        +                "Playwrite BR",
        +                "Playwrite BR Guides",
        +                "Playwrite CA",
        +                "Playwrite CA Guides",
        +                "Playwrite CL",
        +                "Playwrite CL Guides",
        +                "Playwrite CO",
        +                "Playwrite CO Guides",
        +                "Playwrite CU",
        +                "Playwrite CU Guides",
        +                "Playwrite CZ",
        +                "Playwrite CZ Guides",
        +                "Playwrite DE Grund",
        +                "Playwrite DE Grund Guides",
        +                "Playwrite DE LA",
        +                "Playwrite DE LA Guides",
        +                "Playwrite DE SAS",
        +                "Playwrite DE SAS Guides",
        +                "Playwrite DE VA",
        +                "Playwrite DE VA Guides",
        +                "Playwrite DK Loopet",
        +                "Playwrite DK Loopet Guides",
        +                "Playwrite DK Uloopet",
        +                "Playwrite DK Uloopet Guides",
        +                "Playwrite ES",
        +                "Playwrite ES Deco",
        +                "Playwrite ES Deco Guides",
        +                "Playwrite ES Guides",
        +                "Playwrite FR Moderne",
        +                "Playwrite FR Moderne Guides",
        +                "Playwrite FR Trad",
        +                "Playwrite FR Trad Guides",
        +                "Playwrite GB J",
        +                "Playwrite GB J Guides",
        +                "Playwrite GB S",
        +                "Playwrite GB S Guides",
        +                "Playwrite HR",
        +                "Playwrite HR Guides",
        +                "Playwrite HR Lijeva",
        +                "Playwrite HR Lijeva Guides",
        +                "Playwrite HU",
        +                "Playwrite HU Guides",
        +                "Playwrite ID",
        +                "Playwrite ID Guides",
        +                "Playwrite IE",
        +                "Playwrite IE Guides",
        +                "Playwrite IN",
        +                "Playwrite IN Guides",
        +                "Playwrite IS",
        +                "Playwrite IS Guides",
        +                "Playwrite IT Moderna",
        +                "Playwrite IT Moderna Guides",
        +                "Playwrite IT Trad",
        +                "Playwrite IT Trad Guides",
        +                "Playwrite MX",
        +                "Playwrite MX Guides",
        +                "Playwrite NG Modern",
        +                "Playwrite NG Modern Guides",
        +                "Playwrite NL",
        +                "Playwrite NL Guides",
        +                "Playwrite NO",
        +                "Playwrite NO Guides",
        +                "Playwrite NZ",
        +                "Playwrite NZ Basic",
        +                "Playwrite NZ Basic Guides",
        +                "Playwrite NZ Guides",
        +                "Playwrite PE",
        +                "Playwrite PE Guides",
        +                "Playwrite PL",
        +                "Playwrite PL Guides",
        +                "Playwrite PT",
        +                "Playwrite PT Guides",
        +                "Playwrite RO",
        +                "Playwrite RO Guides",
        +                "Playwrite SK",
        +                "Playwrite SK Guides",
        +                "Playwrite TZ",
        +                "Playwrite TZ Guides",
        +                "Playwrite US Modern",
        +                "Playwrite US Modern Guides",
        +                "Playwrite US Trad",
        +                "Playwrite US Trad Guides",
        +                "Playwrite VN",
        +                "Playwrite VN Guides",
        +                "Playwrite ZA",
        +                "Playwrite ZA Guides",
        +                "Pliant",
        +                "Plus Jakarta Sans",
        +                "Pochaevsk",
        +                "Podkova",
        +                "Poetsen One",
        +                "Poiret One",
        +                "Poller One",
        +                "Poltawski Nowy",
        +                "Poly",
        +                "Pompiere",
        +                "Ponnala",
        +                "Ponomar",
        +                "Pontano Sans",
        +                "Poor Story",
        +                "Poppins",
        +                "Port Lligat Sans",
        +                "Port Lligat Slab",
        +                "Potta One",
        +                "Pragati Narrow",
        +                "Praise",
        +                "Prata",
        +                "Preahvihear",
        +                "Press Start 2P",
        +                "Pridi",
        +                "Princess Sofia",
        +                "Prociono",
        +                "Prompt",
        +                "Prosto One",
        +                "Protest Guerrilla",
        +                "Protest Revolution",
        +                "Protest Riot",
        +                "Protest Strike",
        +                "Proza Libre",
        +                "Public Sans",
        +                "Puppies Play",
        +                "Puritan",
        +                "Purple Purse",
        +                "Qahiri",
        +                "Quando",
        +                "Quantico",
        +                "Quattrocento",
        +                "Quattrocento Sans",
        +                "Questrial",
        +                "Quicksand",
        +                "Quintessential",
        +                "Qwigley",
        +                "Qwitcher Grypen",
        +                "REM",
        +                "Racing Sans One",
        +                "Radio Canada",
        +                "Radio Canada Big",
        +                "Radley",
        +                "Rajdhani",
        +                "Rakkas",
        +                "Raleway",
        +                "Raleway Dots",
        +                "Ramabhadra",
        +                "Ramaraja",
        +                "Rambla",
        +                "Rammetto One",
        +                "Rampart One",
        +                "Ramsina",
        +                "Ranchers",
        +                "Rancho",
        +                "Ranga",
        +                "Rasa",
        +                "Rationale",
        +                "Ravi Prakash",
        +                "Readex Pro",
        +                "Recursive",
        +                "Red Hat Display",
        +                "Red Hat Mono",
        +                "Red Hat Text",
        +                "Red Rose",
        +                "Redacted",
        +                "Redacted Script",
        +                "Reddit Mono",
        +                "Reddit Sans",
        +                "Reddit Sans Condensed",
        +                "Redressed",
        +                "Reem Kufi",
        +                "Reem Kufi Fun",
        +                "Reem Kufi Ink",
        +                "Reenie Beanie",
        +                "Reggae One",
        +                "Rethink Sans",
        +                "Revalia",
        +                "Rhodium Libre",
        +                "Ribeye",
        +                "Ribeye Marrow",
        +                "Righteous",
        +                "Risque",
        +                "Road Rage",
        +                "Roboto",
        +                "Roboto Condensed",
        +                "Roboto Flex",
        +                "Roboto Mono",
        +                "Roboto Serif",
        +                "Roboto Slab",
        +                "Rochester",
        +                "Rock 3D",
        +                "Rock Salt",
        +                "RocknRoll One",
        +                "Rokkitt",
        +                "Romanesco",
        +                "Ropa Sans",
        +                "Rosario",
        +                "Rosarivo",
        +                "Rouge Script",
        +                "Rowdies",
        +                "Rozha One",
        +                "Rubik",
        +                "Rubik 80s Fade",
        +                "Rubik Beastly",
        +                "Rubik Broken Fax",
        +                "Rubik Bubbles",
        +                "Rubik Burned",
        +                "Rubik Dirt",
        +                "Rubik Distressed",
        +                "Rubik Doodle Shadow",
        +                "Rubik Doodle Triangles",
        +                "Rubik Gemstones",
        +                "Rubik Glitch",
        +                "Rubik Glitch Pop",
        +                "Rubik Iso",
        +                "Rubik Lines",
        +                "Rubik Maps",
        +                "Rubik Marker Hatch",
        +                "Rubik Maze",
        +                "Rubik Microbe",
        +                "Rubik Mono One",
        +                "Rubik Moonrocks",
        +                "Rubik Pixels",
        +                "Rubik Puddles",
        +                "Rubik Scribble",
        +                "Rubik Spray Paint",
        +                "Rubik Storm",
        +                "Rubik Vinyl",
        +                "Rubik Wet Paint",
        +                "Ruda",
        +                "Rufina",
        +                "Ruge Boogie",
        +                "Ruluko",
        +                "Rum Raisin",
        +                "Ruslan Display",
        +                "Russo One",
        +                "Ruthie",
        +                "Ruwudu",
        +                "Rye",
        +                "SN Pro",
        +                "STIX Two Math",
        +                "STIX Two Text",
        +                "SUSE",
        +                "SUSE Mono",
        +                "Sacramento",
        +                "Sahitya",
        +                "Sail",
        +                "Saira",
        +                "Saira Condensed",
        +                "Saira Extra Condensed",
        +                "Saira Semi Condensed",
        +                "Saira Stencil",
        +                "Salsa",
        +                "Sanchez",
        +                "Sancreek",
        +                "Sankofa Display",
        +                "Sansation",
        +                "Sansita",
        +                "Sansita Swashed",
        +                "Sarabun",
        +                "Sarala",
        +                "Sarina",
        +                "Sarpanch",
        +                "Sassy Frass",
        +                "Satisfy",
        +                "Savate",
        +                "Sawarabi Gothic",
        +                "Sawarabi Mincho",
        +                "Scada",
        +                "Scheherazade New",
        +                "Schibsted Grotesk",
        +                "Schoolbell",
        +                "Science Gothic",
        +                "Scope One",
        +                "Seaweed Script",
        +                "Secular One",
        +                "Sedan",
        +                "Sedan SC",
        +                "Sedgwick Ave",
        +                "Sedgwick Ave Display",
        +                "Sekuya",
        +                "Sen",
        +                "Send Flowers",
        +                "Sevillana",
        +                "Seymour One",
        +                "Shadows Into Light",
        +                "Shadows Into Light Two",
        +                "Shafarik",
        +                "Shalimar",
        +                "Shantell Sans",
        +                "Shanti",
        +                "Share",
        +                "Share Tech",
        +                "Share Tech Mono",
        +                "Shippori Antique",
        +                "Shippori Antique B1",
        +                "Shippori Mincho",
        +                "Shippori Mincho B1",
        +                "Shizuru",
        +                "Shojumaru",
        +                "Short Stack",
        +                "Shrikhand",
        +                "Siemreap",
        +                "Sigmar",
        +                "Sigmar One",
        +                "Signika",
        +                "Signika Negative",
        +                "Silkscreen",
        +                "Simonetta",
        +                "Single Day",
        +                "Sintony",
        +                "Sirin Stencil",
        +                "Sirivennela",
        +                "Six Caps",
        +                "Sixtyfour",
        +                "Sixtyfour Convergence",
        +                "Skranji",
        +                "Slabo 13px",
        +                "Slabo 27px",
        +                "Slackey",
        +                "Slackside One",
        +                "Smokum",
        +                "Smooch",
        +                "Smooch Sans",
        +                "Smythe",
        +                "Sniglet",
        +                "Snippet",
        +                "Snowburst One",
        +                "Sofadi One",
        +                "Sofia",
        +                "Sofia Sans",
        +                "Sofia Sans Condensed",
        +                "Sofia Sans Extra Condensed",
        +                "Sofia Sans Semi Condensed",
        +                "Solitreo",
        +                "Solway",
        +                "Sometype Mono",
        +                "Song Myung",
        +                "Sono",
        +                "Sonsie One",
        +                "Sora",
        +                "Sorts Mill Goudy",
        +                "Sour Gummy",
        +                "Source Code Pro",
        +                "Source Sans 3",
        +                "Source Serif 4",
        +                "Space Grotesk",
        +                "Space Mono",
        +                "Special Elite",
        +                "Special Gothic",
        +                "Special Gothic Condensed One",
        +                "Special Gothic Expanded One",
        +                "Spectral",
        +                "Spectral SC",
        +                "Spicy Rice",
        +                "Spinnaker",
        +                "Spirax",
        +                "Splash",
        +                "Spline Sans",
        +                "Spline Sans Mono",
        +                "Squada One",
        +                "Square Peg",
        +                "Sree Krushnadevaraya",
        +                "Sriracha",
        +                "Srisakdi",
        +                "Staatliches",
        +                "Stack Sans Headline",
        +                "Stack Sans Notch",
        +                "Stack Sans Text",
        +                "Stalemate",
        +                "Stalinist One",
        +                "Stardos Stencil",
        +                "Stick",
        +                "Stick No Bills",
        +                "Stint Ultra Condensed",
        +                "Stint Ultra Expanded",
        +                "Stoke",
        +                "Story Script",
        +                "Strait",
        +                "Strichpunkt Sans",
        +                "Style Script",
        +                "Stylish",
        +                "Sue Ellen Francisco",
        +                "Suez One",
        +                "Sulphur Point",
        +                "Sumana",
        +                "Sunflower",
        +                "Sunshiney",
        +                "Supermercado One",
        +                "Sura",
        +                "Suranna",
        +                "Suravaram",
        +                "Suwannaphum",
        +                "Swanky and Moo Moo",
        +                "Syncopate",
        +                "Syne",
        +                "Syne Mono",
        +                "Syne Tactile",
        +                "TASA Explorer",
        +                "TASA Orbiter",
        +                "Tac One",
        +                "Tagesschrift",
        +                "Tai Heritage Pro",
        +                "Tajawal",
        +                "Tangerine",
        +                "Tapestry",
        +                "Taprom",
        +                "Tauri",
        +                "Taviraj",
        +                "Teachers",
        +                "Teko",
        +                "Tektur",
        +                "Telex",
        +                "Tenali Ramakrishna",
        +                "Tenor Sans",
        +                "Text Me One",
        +                "Texturina",
        +                "Thasadith",
        +                "The Girl Next Door",
        +                "The Nautigal",
        +                "Tienne",
        +                "TikTok Sans",
        +                "Tillana",
        +                "Tilt Neon",
        +                "Tilt Prism",
        +                "Tilt Warp",
        +                "Timmana",
        +                "Tinos",
        +                "Tiny5",
        +                "Tiro Bangla",
        +                "Tiro Devanagari Hindi",
        +                "Tiro Devanagari Marathi",
        +                "Tiro Devanagari Sanskrit",
        +                "Tiro Gurmukhi",
        +                "Tiro Kannada",
        +                "Tiro Tamil",
        +                "Tiro Telugu",
        +                "Tirra",
        +                "Titan One",
        +                "Titillium Web",
        +                "Tomorrow",
        +                "Tourney",
        +                "Trade Winds",
        +                "Train One",
        +                "Triodion",
        +                "Trirong",
        +                "Trispace",
        +                "Trocchi",
        +                "Trochut",
        +                "Truculenta",
        +                "Trykker",
        +                "Tsukimi Rounded",
        +                "Tuffy",
        +                "Tulpen One",
        +                "Turret Road",
        +                "Twinkle Star",
        +                "Ubuntu",
        +                "Ubuntu Condensed",
        +                "Ubuntu Mono",
        +                "Ubuntu Sans",
        +                "Ubuntu Sans Mono",
        +                "Uchen",
        +                "Ultra",
        +                "Unbounded",
        +                "Uncial Antiqua",
        +                "Underdog",
        +                "Unica One",
        +                "UnifrakturCook",
        +                "UnifrakturMaguntia",
        +                "Unkempt",
        +                "Unlock",
        +                "Unna",
        +                "UoqMunThenKhung",
        +                "Updock",
        +                "Urbanist",
        +                "VT323",
        +                "Vampiro One",
        +                "Varela",
        +                "Varela Round",
        +                "Varta",
        +                "Vast Shadow",
        +                "Vazirmatn",
        +                "Vend Sans",
        +                "Vesper Libre",
        +                "Viaoda Libre",
        +                "Vibes",
        +                "Vibur",
        +                "Victor Mono",
        +                "Vidaloka",
        +                "Viga",
        +                "Vina Sans",
        +                "Voces",
        +                "Volkhov",
        +                "Vollkorn",
        +                "Vollkorn SC",
        +                "Voltaire",
        +                "Vujahday Script",
        +                "WDXL Lubrifont JP N",
        +                "WDXL Lubrifont SC",
        +                "WDXL Lubrifont TC",
        +                "Waiting for the Sunrise",
        +                "Wallpoet",
        +                "Walter Turncoat",
        +                "Warnes",
        +                "Water Brush",
        +                "Waterfall",
        +                "Wavefont",
        +                "Wellfleet",
        +                "Wendy One",
        +                "Whisper",
        +                "WindSong",
        +                "Winky Rough",
        +                "Winky Sans",
        +                "Wire One",
        +                "Wittgenstein",
        +                "Wix Madefor Display",
        +                "Wix Madefor Text",
        +                "Work Sans",
        +                "Workbench",
        +                "Xanh Mono",
        +                "Yaldevi",
        +                "Yanone Kaffeesatz",
        +                "Yantramanav",
        +                "Yarndings 12",
        +                "Yarndings 12 Charted",
        +                "Yarndings 20",
        +                "Yarndings 20 Charted",
        +                "Yatra One",
        +                "Yellowtail",
        +                "Yeon Sung",
        +                "Yeseva One",
        +                "Yesteryear",
        +                "Yomogi",
        +                "Young Serif",
        +                "Yrsa",
        +                "Ysabeau",
        +                "Ysabeau Infant",
        +                "Ysabeau Office",
        +                "Ysabeau SC",
        +                "Yuji Boku",
        +                "Yuji Hentaigana Akari",
        +                "Yuji Hentaigana Akebono",
        +                "Yuji Mai",
        +                "Yuji Syuku",
        +                "Yusei Magic",
        +                "Yuyu",
        +                "Yuyu Short",
        +                "ZCOOL KuaiLe",
        +                "ZCOOL QingKe HuangYou",
        +                "ZCOOL XiaoWei",
        +                "Zain",
        +                "Zalando Sans",
        +                "Zalando Sans Expanded",
        +                "Zalando Sans SemiExpanded",
        +                "Zen Antique",
        +                "Zen Antique Soft",
        +                "Zen Dots",
        +                "Zen Kaku Gothic Antique",
        +                "Zen Kaku Gothic New",
        +                "Zen Kurenaido",
        +                "Zen Loop",
        +                "Zen Maru Gothic",
        +                "Zen Old Mincho",
        +                "Zen Tokyo Zoo",
        +                "Zeyada",
        +                "Zhi Mang Xing",
        +                "Zilla Slab",
        +                "Zilla Slab Highlight"
        +              ],
        +              "type": "string"
        +            },
        +            "fontSize": {
        +              "type": "number"
        +            },
        +            "footerColor": {
        +              "type": "string"
        +            },
        +            "footerFontSize": {
        +              "type": "number"
        +            },
        +            "footerGap": {
        +              "type": "number"
        +            },
        +            "footerLinkColor": {
        +              "type": "string"
        +            },
        +            "gridColor": {
        +              "type": "string"
        +            },
        +            "gridLineWidth": {
        +              "type": "number"
        +            },
        +            "gridLines": {
        +              "enum": [
        +                "none",
        +                "value",
        +                "both"
        +              ],
        +              "type": "string"
        +            },
        +            "headerGap": {
        +              "type": "number"
        +            },
        +            "labelColor": {
        +              "type": "string"
        +            },
        +            "labelFontSize": {
        +              "type": "number"
        +            },
        +            "labelFontWeight": {
        +              "type": "string"
        +            },
        +            "labelHaloWidth": {
        +              "type": "number"
        +            },
        +            "labelMutedFontWeight": {
        +              "type": "string"
        +            },
        +            "labelMutedOpacity": {
        +              "type": "number"
        +            },
        +            "lineStrokeWidth": {
        +              "type": "number"
        +            },
        +            "numericFontFamily": {
        +              "type": "string"
        +            },
        +            "pieCornerRadius": {
        +              "type": "number"
        +            },
        +            "sequentialRange": {
        +              "items": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "string"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "subtitleColor": {
        +              "type": "string"
        +            },
        +            "subtitleFontSize": {
        +              "type": "number"
        +            },
        +            "tickDensity": {
        +              "type": "number"
        +            },
        +            "tickLabelColor": {
        +              "type": "string"
        +            },
        +            "tickLabelFontWeight": {
        +              "type": "string"
        +            },
        +            "tickPadding": {
        +              "type": "number"
        +            },
        +            "tickSize": {
        +              "type": "number"
        +            },
        +            "titleColor": {
        +              "type": "string"
        +            },
        +            "titleFontFamily": {
        +              "type": "string"
        +            },
        +            "titleFontSize": {
        +              "type": "number"
        +            },
        +            "titleFontWeight": {
        +              "type": "string"
        +            },
        +            "titleSubtitleGap": {
        +              "type": "number"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "title": {
        +          "type": "string"
        +        },
        +        "version": {
        +          "const": "2026-03-20",
        +          "type": "string"
        +        },
        +        "width": {
        +          "maximum": 4096,
        +          "minimum": 1,
        +          "type": "integer"
        +        },
        +        "x": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        },
        +        "y": {
        +          "additionalProperties": {},
        +          "properties": {
        +            "display": {
        +              "default": true,
        +              "type": "boolean"
        +            },
        +            "domain": {
        +              "anyOf": [
        +                {
        +                  "items": [
        +                    {
        +                      "type": "number"
        +                    },
        +                    {
        +                      "type": "number"
        +                    }
        +                  ],
        +                  "maxItems": 2,
        +                  "minItems": 2,
        +                  "type": "array"
        +                },
        +                {
        +                  "items": {
        +                    "type": "string"
        +                  },
        +                  "type": "array"
        +                }
        +              ]
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "nice": {
        +              "type": "boolean"
        +            },
        +            "tickFormat": {
        +              "type": "string"
        +            },
        +            "type": {
        +              "enum": [
        +                "linear",
        +                "utc",
        +                "band"
        +              ],
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        }
        +      },
        +      "required": [
        +        "version",
        +        "format",
        +        "marks"
        +      ],
        +      "title": "Szum Chart Configuration",
        +      "type": "object"
        +    },
        +    "valid": {
        +      "type": "boolean"
        +    }
        +  },
        +  "required": [
        +    "valid",
        +    "message",
        +    "errors",
        +    "diagnostics"
        +  ],
        +  "type": "object"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "view",
        -  "id",
        -  "source",
        -  "title",
        -  "createdAt",
        -  "updatedAt",
        -  "sizeBytes",
        -  "publishedAt",
        -  "imageUrl",
        -  "embedUrl",
        -  "configUrl",
        -  "editUrl",
        -  "manageUrl"
        -]New value: +[
        +  "view",
        +  "id",
        +  "source",
        +  "title",
        +  "createdAt",
        +  "updatedAt",
        +  "sizeBytes",
        +  "publishedAt",
        +  "imageUrl",
        +  "embedUrl",
        +  "configUrl",
        +  "editUrl",
        +  "manageUrl",
        +  "validation"
        +]
    • Changedvalidate_chart8 fields changed
      • addedOutput schema / properties / diagnostics
        Added value: +{
        +  "items": {
        +    "additionalProperties": false,
        +    "properties": {
        +      "code": {
        +        "type": "string"
        +      },
        +      "details": {
        +        "additionalProperties": {},
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "message": {
        +        "type": "string"
        +      },
        +      "path": {
        +        "items": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "number"
        +            }
        +          ]
        +        },
        +        "type": "array"
        +      },
        +      "relatedPaths": {
        +        "items": {
        +          "items": {
        +            "anyOf": [
        +              {
        +                "type": "string"
        +              },
        +              {
        +                "type": "number"
        +              }
        +            ]
        +          },
        +          "type": "array"
        +        },
        +        "type": "array"
        +      },
        +      "severity": {
        +        "enum": [
        +          "error",
        +          "warning",
        +          "suggestion"
        +        ],
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "code",
        +      "severity",
        +      "path",
        +      "message",
        +      "details"
        +    ],
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
      • addedOutput schema / properties / errors / items / properties / code
        Added value: +{
        +  "type": "string"
        +}
      • addedOutput schema / properties / errors / items / properties / details
        Added value: +{
        +  "additionalProperties": {},
        +  "propertyNames": {
        +    "type": "string"
        +  },
        +  "type": "object"
        +}
      • addedOutput schema / properties / errors / items / properties / relatedPaths
        Added value: +{
        +  "items": {
        +    "items": {
        +      "anyOf": [
        +        {
        +          "type": "string"
        +        },
        +        {
        +          "type": "number"
        +        }
        +      ]
        +    },
        +    "type": "array"
        +  },
        +  "type": "array"
        +}
      • addedOutput schema / properties / errors / items / properties / severity
        Added value: +{
        +  "enum": [
        +    "error",
        +    "warning",
        +    "suggestion"
        +  ],
        +  "type": "string"
        +}
      • changedOutput schema / properties / errors / items / required
        Previous value: -[
        -  "path",
        -  "message"
        -]New value: +[
        +  "code",
        +  "severity",
        +  "path",
        +  "message",
        +  "details"
        +]
      • addedOutput schema / properties / suggestedConfig
        Added value: +{
        +  "additionalProperties": {},
        +  "description": "Schema version 2026-03-20. Send this JSON to POST https://szum.io/validate to validate it or POST https://szum.io/chart to render a chart image.",
        +  "properties": {
        +    "attribution": {
        +      "description": "Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in.",
        +      "type": "boolean"
        +    },
        +    "color": {
        +      "anyOf": [
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "domain": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "range": {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            },
        +            "type": {
        +              "const": "categorical",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": {},
        +          "properties": {
        +            "domain": {
        +              "items": [
        +                {
        +                  "type": "number"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "label": {
        +              "type": "string"
        +            },
        +            "range": {
        +              "items": [
        +                {
        +                  "type": "string"
        +                },
        +                {
        +                  "type": "string"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            "type": {
        +              "const": "sequential",
        +              "type": "string"
        +            }
        +          },
        +          "required": [
        +            "type"
        +          ],
        +          "type": "object"
        +        },
        +        {
        +          "additionalProperties": false,
        +          "properties": {
        +            "label": {
        +              "type": "string"
        +            }
        +          },
        +          "type": "object"
        +        }
        +      ]
        +    },
        +    "data": {
        +      "items": {
        +        "additionalProperties": {
        +          "anyOf": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "number"
        +            }
        +          ]
        +        },
        +        "propertyNames": {
        +          "type": "string"
        +        },
        +        "type": "object"
        +      },
        +      "type": "array"
        +    },
        +    "footer": {
        +      "description": "Caption below the chart (a source line, methodology note, date). URLs, bare domains, and [label](url) links in it are auto-detected and rendered as inline links on every surface.",
        +      "type": "string"
        +    },
        +    "format": {
        +      "enum": [
        +        "svg",
        +        "png"
        +      ],
        +      "type": "string"
        +    },
        +    "headerAlign": {
        +      "enum": [
        +        "left",
        +        "center",
        +        "right"
        +      ],
        +      "type": "string"
        +    },
        +    "height": {
        +      "maximum": 4096,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "locale": {
        +      "description": "Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant.",
        +      "pattern": "^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$",
        +      "type": "string"
        +    },
        +    "margin": {
        +      "additionalProperties": {},
        +      "properties": {
        +        "bottom": {
        +          "type": "number"
        +        },
        +        "left": {
        +          "type": "number"
        +        },
        +        "right": {
        +          "type": "number"
        +        },
        +        "top": {
        +          "type": "number"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "marks": {
        +      "items": {
        +        "oneOf": [
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "label": {
        +                "additionalProperties": {},
        +                "properties": {
        +                  "field": {
        +                    "type": "string"
        +                  },
        +                  "format": {
        +                    "type": "string"
        +                  }
        +                },
        +                "required": [
        +                  "field"
        +                ],
        +                "type": "object"
        +              },
        +              "r": {
        +                "type": "number"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "dot",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "curve": {
        +                "enum": [
        +                  "linear",
        +                  "monotone",
        +                  "step"
        +                ],
        +                "type": "string"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "end": {
        +                        "anyOf": [
        +                          {
        +                            "type": "boolean"
        +                          },
        +                          {
        +                            "items": {
        +                              "enum": [
        +                                "category",
        +                                "value"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        ],
        +                        "default": [
        +                          "category"
        +                        ]
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "points": {
        +                        "anyOf": [
        +                          {
        +                            "enum": [
        +                              "extrema",
        +                              "all",
        +                              "ends"
        +                            ],
        +                            "type": "string"
        +                          },
        +                          {
        +                            "const": false,
        +                            "type": "boolean"
        +                          },
        +                          {
        +                            "additionalProperties": {},
        +                            "properties": {
        +                              "at": {
        +                                "enum": [
        +                                  "extrema",
        +                                  "all",
        +                                  "ends"
        +                                ],
        +                                "type": "string"
        +                              },
        +                              "show": {
        +                                "default": [
        +                                  "value"
        +                                ],
        +                                "items": {
        +                                  "enum": [
        +                                    "value",
        +                                    "category"
        +                                  ],
        +                                  "type": "string"
        +                                },
        +                                "type": "array"
        +                              }
        +                            },
        +                            "required": [
        +                              "at"
        +                            ],
        +                            "type": "object"
        +                          }
        +                        ],
        +                        "default": false
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "line",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "cornerRadius": {
        +                "type": "number"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "group": {
        +                "default": "stack",
        +                "enum": [
        +                  "stack",
        +                  "dodge"
        +                ],
        +                "type": "string"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "position": {
        +                        "default": "outside",
        +                        "enum": [
        +                          "auto",
        +                          "outside",
        +                          "inside"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "show": {
        +                        "default": [
        +                          "value"
        +                        ],
        +                        "items": {
        +                          "enum": [
        +                            "value",
        +                            "percent",
        +                            "category",
        +                            "total"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "type": "array"
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "barY",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "cornerRadius": {
        +                "type": "number"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "group": {
        +                "default": "stack",
        +                "enum": [
        +                  "stack",
        +                  "dodge"
        +                ],
        +                "type": "string"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "position": {
        +                        "default": "outside",
        +                        "enum": [
        +                          "auto",
        +                          "outside",
        +                          "inside"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "show": {
        +                        "default": [
        +                          "value"
        +                        ],
        +                        "items": {
        +                          "enum": [
        +                            "value",
        +                            "percent",
        +                            "category",
        +                            "total"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "type": "array"
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "barX",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "curve": {
        +                "enum": [
        +                  "linear",
        +                  "monotone",
        +                  "step"
        +                ],
        +                "type": "string"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "end": {
        +                        "anyOf": [
        +                          {
        +                            "type": "boolean"
        +                          },
        +                          {
        +                            "items": {
        +                              "enum": [
        +                                "category",
        +                                "value",
        +                                "percent"
        +                              ],
        +                              "type": "string"
        +                            },
        +                            "type": "array"
        +                          }
        +                        ],
        +                        "default": [
        +                          "category"
        +                        ]
        +                      },
        +                      "format": {
        +                        "type": "string"
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 0,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "areaY",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "curve": {
        +                "enum": [
        +                  "linear",
        +                  "monotone",
        +                  "step"
        +                ],
        +                "type": "string"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 0,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "areaX",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "cornerRadius": {
        +                "type": "number"
        +              },
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "innerRadius": {
        +                "default": 0,
        +                "maximum": 1,
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "label": {
        +                "anyOf": [
        +                  {
        +                    "type": "boolean"
        +                  },
        +                  {
        +                    "additionalProperties": {},
        +                    "properties": {
        +                      "format": {
        +                        "type": "string"
        +                      },
        +                      "position": {
        +                        "default": "auto",
        +                        "enum": [
        +                          "auto",
        +                          "inside",
        +                          "outside"
        +                        ],
        +                        "type": "string"
        +                      },
        +                      "show": {
        +                        "default": [
        +                          "category",
        +                          "percent"
        +                        ],
        +                        "items": {
        +                          "enum": [
        +                            "value",
        +                            "percent",
        +                            "category"
        +                          ],
        +                          "type": "string"
        +                        },
        +                        "type": "array"
        +                      }
        +                    },
        +                    "type": "object"
        +                  }
        +                ]
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "pie",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "dx": {
        +                "default": 0,
        +                "type": "number"
        +              },
        +              "dy": {
        +                "default": 0,
        +                "type": "number"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "fontSize": {
        +                "type": "number"
        +              },
        +              "fontWeight": {
        +                "type": "string"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "text": {
        +                "default": "text",
        +                "type": "string"
        +              },
        +              "textAnchor": {
        +                "default": "center",
        +                "enum": [
        +                  "start",
        +                  "center",
        +                  "end"
        +                ],
        +                "type": "string"
        +              },
        +              "type": {
        +                "const": "text",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "ruleX",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          },
        +          {
        +            "additionalProperties": {},
        +            "properties": {
        +              "data": {
        +                "items": {
        +                  "additionalProperties": {
        +                    "anyOf": [
        +                      {
        +                        "type": "string"
        +                      },
        +                      {
        +                        "type": "number"
        +                      }
        +                    ]
        +                  },
        +                  "propertyNames": {
        +                    "type": "string"
        +                  },
        +                  "type": "object"
        +                },
        +                "type": "array"
        +              },
        +              "fill": {
        +                "type": "string"
        +              },
        +              "stroke": {
        +                "type": "string"
        +              },
        +              "strokeWidth": {
        +                "default": 1,
        +                "type": "number"
        +              },
        +              "type": {
        +                "const": "ruleY",
        +                "type": "string"
        +              },
        +              "x": {
        +                "default": "x",
        +                "type": "string"
        +              },
        +              "y": {
        +                "default": "y",
        +                "type": "string"
        +              }
        +            },
        +            "required": [
        +              "type"
        +            ],
        +            "type": "object"
        +          }
        +        ]
        +      },
        +      "minItems": 1,
        +      "type": "array"
        +    },
        +    "plotHeight": {
        +      "maximum": 4096,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "plotWidth": {
        +      "maximum": 4096,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "scale": {
        +      "maximum": 4,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "subtitle": {
        +      "type": "string"
        +    },
        +    "theme": {
        +      "default": "editorial",
        +      "enum": [
        +        "editorial",
        +        "clean",
        +        "noir",
        +        "loud",
        +        "soft",
        +        "technical"
        +      ],
        +      "type": "string"
        +    },
        +    "themeOverrides": {
        +      "additionalProperties": {},
        +      "properties": {
        +        "axisColor": {
        +          "type": "string"
        +        },
        +        "axisFrame": {
        +          "enum": [
        +            "none",
        +            "baseline",
        +            "lShape",
        +            "full"
        +          ],
        +          "type": "string"
        +        },
        +        "axisLabelColor": {
        +          "type": "string"
        +        },
        +        "axisLabelFontWeight": {
        +          "type": "string"
        +        },
        +        "axisLineWidth": {
        +          "type": "number"
        +        },
        +        "backgroundColor": {
        +          "type": "string"
        +        },
        +        "barCornerRadius": {
        +          "type": "number"
        +        },
        +        "barPadding": {
        +          "type": "number"
        +        },
        +        "colors": {
        +          "items": {
        +            "type": "string"
        +          },
        +          "type": "array"
        +        },
        +        "curve": {
        +          "enum": [
        +            "linear",
        +            "monotone",
        +            "step"
        +          ],
        +          "type": "string"
        +        },
        +        "dotRadius": {
        +          "type": "number"
        +        },
        +        "fontFamily": {
        +          "enum": [
        +            "ABeeZee",
        +            "ADLaM Display",
        +            "AR One Sans",
        +            "Abel",
        +            "Abhaya Libre",
        +            "Aboreto",
        +            "Abril Fatface",
        +            "Abyssinica SIL",
        +            "Aclonica",
        +            "Acme",
        +            "Actor",
        +            "Adamina",
        +            "Advent Pro",
        +            "Afacad",
        +            "Afacad Flux",
        +            "Agbalumo",
        +            "Agdasima",
        +            "Agu Display",
        +            "Aguafina Script",
        +            "Akatab",
        +            "Akaya Kanadaka",
        +            "Akaya Telivigala",
        +            "Akronim",
        +            "Akshar",
        +            "Akt",
        +            "Aladin",
        +            "Alan Sans",
        +            "Alata",
        +            "Alatsi",
        +            "Albert Sans",
        +            "Aldrich",
        +            "Alef",
        +            "Alegreya",
        +            "Alegreya SC",
        +            "Alegreya Sans",
        +            "Alegreya Sans SC",
        +            "Aleo",
        +            "Alex Brush",
        +            "Alexandria",
        +            "Alfa Slab One",
        +            "Alice",
        +            "Alien Block",
        +            "Alike",
        +            "Alike Angular",
        +            "Alkalami",
        +            "Alkatra",
        +            "Allan",
        +            "Allerta",
        +            "Allerta Stencil",
        +            "Allison",
        +            "Allkin",
        +            "Allura",
        +            "Almarai",
        +            "Almendra",
        +            "Almendra Display",
        +            "Almendra SC",
        +            "Alumni Sans",
        +            "Alumni Sans Collegiate One",
        +            "Alumni Sans Inline One",
        +            "Alumni Sans Pinstripe",
        +            "Alumni Sans SC",
        +            "Alyamama",
        +            "Amarante",
        +            "Amaranth",
        +            "Amarna",
        +            "Amatic SC",
        +            "Amethysta",
        +            "Amiko",
        +            "Amiri",
        +            "Amiri Quran",
        +            "Amita",
        +            "Anaheim",
        +            "Ancizar Sans",
        +            "Ancizar Serif",
        +            "Andada Pro",
        +            "Andika",
        +            "Anek Bangla",
        +            "Anek Devanagari",
        +            "Anek Gujarati",
        +            "Anek Gurmukhi",
        +            "Anek Kannada",
        +            "Anek Latin",
        +            "Anek Malayalam",
        +            "Anek Odia",
        +            "Anek Tamil",
        +            "Anek Telugu",
        +            "Angkor",
        +            "Annapurna SIL",
        +            "Annie Use Your Telescope",
        +            "Anonymous Pro",
        +            "Anta",
        +            "Antic",
        +            "Antic Didone",
        +            "Antic Slab",
        +            "Anton",
        +            "Anton SC",
        +            "Antonio",
        +            "Anuphan",
        +            "Anybody",
        +            "Aoboshi One",
        +            "Arapey",
        +            "Arbutus",
        +            "Arbutus Slab",
        +            "Architects Daughter",
        +            "Archivo",
        +            "Archivo Black",
        +            "Archivo Narrow",
        +            "Are You Serious",
        +            "Aref Ruqaa",
        +            "Aref Ruqaa Ink",
        +            "Arima",
        +            "Arimo",
        +            "Arizonia",
        +            "Armata",
        +            "Arsenal",
        +            "Arsenal SC",
        +            "Artifika",
        +            "Arvo",
        +            "Arya",
        +            "Asap",
        +            "Asap Condensed",
        +            "Asar",
        +            "Asimovian",
        +            "Asset",
        +            "Assistant",
        +            "Asta Sans",
        +            "Astloch",
        +            "Asul",
        +            "Athiti",
        +            "Atkinson Hyperlegible",
        +            "Atkinson Hyperlegible Mono",
        +            "Atkinson Hyperlegible Next",
        +            "Atma",
        +            "Atomic Age",
        +            "Aubrey",
        +            "Audiowide",
        +            "Autour One",
        +            "Average",
        +            "Average Sans",
        +            "Averia Gruesa Libre",
        +            "Averia Libre",
        +            "Averia Sans Libre",
        +            "Averia Serif Libre",
        +            "Azeret Mono",
        +            "B612",
        +            "B612 Mono",
        +            "BBH Bartle",
        +            "BBH Bogle",
        +            "BBH Hegarty",
        +            "BIZ UDGothic",
        +            "BIZ UDMincho",
        +            "BIZ UDPGothic",
        +            "BIZ UDPMincho",
        +            "BJCree",
        +            "Babylonica",
        +            "Bacasime Antique",
        +            "Bad Script",
        +            "Badeen Display",
        +            "Bagel Fat One",
        +            "Bahiana",
        +            "Bahianita",
        +            "Bai Jamjuree",
        +            "Bakbak One",
        +            "Ballet",
        +            "Baloo 2",
        +            "Baloo Bhai 2",
        +            "Baloo Bhaijaan 2",
        +            "Baloo Bhaina 2",
        +            "Baloo Chettan 2",
        +            "Baloo Da 2",
        +            "Baloo Paaji 2",
        +            "Baloo Tamma 2",
        +            "Baloo Tammudu 2",
        +            "Baloo Thambi 2",
        +            "Balsamiq Sans",
        +            "Balthazar",
        +            "Bangers",
        +            "Barlow",
        +            "Barlow Condensed",
        +            "Barlow Semi Condensed",
        +            "Barriecito",
        +            "Barrio",
        +            "Basic",
        +            "Baskervville",
        +            "Baskervville SC",
        +            "Battambang",
        +            "Baumans",
        +            "Bayon",
        +            "Be Vietnam Pro",
        +            "Beau Rivage",
        +            "Bebas Neue",
        +            "Beiruti",
        +            "Belanosima",
        +            "Belgrano",
        +            "Bellefair",
        +            "Belleza",
        +            "Bellota",
        +            "Bellota Text",
        +            "BenchNine",
        +            "Benne",
        +            "Bentham",
        +            "Berkshire Swash",
        +            "Besley",
        +            "Betania Patmos",
        +            "Betania Patmos GDL",
        +            "Betania Patmos In",
        +            "Betania Patmos In GDL",
        +            "Beth Ellen",
        +            "Bevan",
        +            "BhuTuka Expanded One",
        +            "Big Shoulders",
        +            "Big Shoulders Inline",
        +            "Big Shoulders Stencil",
        +            "Bigelow Rules",
        +            "Bigshot One",
        +            "Bilbo",
        +            "Bilbo Swash Caps",
        +            "BioRhyme",
        +            "BioRhyme Expanded",
        +            "Birthstone",
        +            "Birthstone Bounce",
        +            "Biryani",
        +            "Bitcount",
        +            "Bitcount Grid Double",
        +            "Bitcount Grid Double Ink",
        +            "Bitcount Grid Single",
        +            "Bitcount Grid Single Ink",
        +            "Bitcount Ink",
        +            "Bitcount Prop Double",
        +            "Bitcount Prop Double Ink",
        +            "Bitcount Prop Single",
        +            "Bitcount Prop Single Ink",
        +            "Bitcount Single",
        +            "Bitcount Single Ink",
        +            "Bitter",
        +            "Black And White Picture",
        +            "Black Han Sans",
        +            "Black Ops One",
        +            "Blaka",
        +            "Blaka Hollow",
        +            "Blaka Ink",
        +            "Blinker",
        +            "Bodoni Moda",
        +            "Bodoni Moda SC",
        +            "Bokor",
        +            "Boldonse",
        +            "Bona Nova",
        +            "Bona Nova SC",
        +            "Bonbon",
        +            "Bonheur Royale",
        +            "Boogaloo",
        +            "Borel",
        +            "Bowlby One",
        +            "Bowlby One SC",
        +            "Bpmf Huninn",
        +            "Bpmf Iansui",
        +            "Bpmf Zihi Kai Std",
        +            "Braah One",
        +            "Brawler",
        +            "Bree Serif",
        +            "Bricolage Grotesque",
        +            "Bruno Ace",
        +            "Bruno Ace SC",
        +            "Brygada 1918",
        +            "Bubblegum Sans",
        +            "Bubbler One",
        +            "Buda",
        +            "Buenard",
        +            "Bungee",
        +            "Bungee Hairline",
        +            "Bungee Inline",
        +            "Bungee Outline",
        +            "Bungee Shade",
        +            "Bungee Spice",
        +            "Bungee Tint",
        +            "Butcherman",
        +            "Butterfly Kids",
        +            "Bytesized",
        +            "Cabin",
        +            "Cabin Condensed",
        +            "Cabin Sketch",
        +            "Cactus Classical Serif",
        +            "Caesar Dressing",
        +            "Cagliostro",
        +            "Cairo",
        +            "Cairo Play",
        +            "Cal Sans",
        +            "Caladea",
        +            "Calistoga",
        +            "Calligraffitti",
        +            "Cambay",
        +            "Cambo",
        +            "Candal",
        +            "Cantarell",
        +            "Cantata One",
        +            "Cantora One",
        +            "Caprasimo",
        +            "Capriola",
        +            "Caramel",
        +            "Carattere",
        +            "Cardo",
        +            "Carlito",
        +            "Carme",
        +            "Carrois Gothic",
        +            "Carrois Gothic SC",
        +            "Carter One",
        +            "Cascadia Code",
        +            "Cascadia Mono",
        +            "Castoro",
        +            "Castoro Titling",
        +            "Catamaran",
        +            "Caudex",
        +            "Cause",
        +            "Caveat",
        +            "Caveat Brush",
        +            "Cedarville Cursive",
        +            "Ceviche One",
        +            "Chakra Petch",
        +            "Changa",
        +            "Changa One",
        +            "Chango",
        +            "Charis SIL",
        +            "Charm",
        +            "Charmonman",
        +            "Chathura",
        +            "Chau Philomene One",
        +            "Chela One",
        +            "Chelsea Market",
        +            "Chenla",
        +            "Cherish",
        +            "Cherry Bomb One",
        +            "Cherry Cream Soda",
        +            "Cherry Swash",
        +            "Chewy",
        +            "Chicle",
        +            "Chilanka",
        +            "Chiron GoRound TC",
        +            "Chiron Hei HK",
        +            "Chiron Sung HK",
        +            "Chivo",
        +            "Chivo Mono",
        +            "Chocolate Classical Sans",
        +            "Chokokutai",
        +            "Chonburi",
        +            "Cinzel",
        +            "Cinzel Decorative",
        +            "Clicker Script",
        +            "Climate Crisis",
        +            "Coda",
        +            "Codystar",
        +            "Coiny",
        +            "Combo",
        +            "Comfortaa",
        +            "Comforter",
        +            "Comforter Brush",
        +            "Comic Neue",
        +            "Comic Relief",
        +            "Coming Soon",
        +            "Comme",
        +            "Commissioner",
        +            "Concert One",
        +            "Condiment",
        +            "Content",
        +            "Contrail One",
        +            "Convergence",
        +            "Cookie",
        +            "Copse",
        +            "Coral Pixels",
        +            "Corben",
        +            "Corinthia",
        +            "Cormorant",
        +            "Cormorant Garamond",
        +            "Cormorant Infant",
        +            "Cormorant SC",
        +            "Cormorant Unicase",
        +            "Cormorant Upright",
        +            "Cossette Texte",
        +            "Cossette Titre",
        +            "Courgette",
        +            "Courier Prime",
        +            "Cousine",
        +            "Coustard",
        +            "Covered By Your Grace",
        +            "Crafty Girls",
        +            "Creepster",
        +            "Crete Round",
        +            "Crimson Pro",
        +            "Crimson Text",
        +            "Croissant One",
        +            "Crushed",
        +            "Cuprum",
        +            "Cute Font",
        +            "Cutive",
        +            "Cutive Mono",
        +            "DM Mono",
        +            "DM Sans",
        +            "DM Serif Display",
        +            "DM Serif Text",
        +            "Dai Banna SIL",
        +            "Damion",
        +            "Dancing Script",
        +            "Danfo",
        +            "Dangrek",
        +            "Darker Grotesque",
        +            "Darumadrop One",
        +            "Datatype",
        +            "David Libre",
        +            "Dawning of a New Day",
        +            "Days One",
        +            "Dekko",
        +            "Dela Gothic One",
        +            "Delicious Handrawn",
        +            "Delius",
        +            "Delius Swash Caps",
        +            "Delius Unicase",
        +            "Della Respira",
        +            "Denk One",
        +            "Devonshire",
        +            "Dhurjati",
        +            "Didact Gothic",
        +            "Diphylleia",
        +            "Diplomata",
        +            "Diplomata SC",
        +            "Do Hyeon",
        +            "Dokdo",
        +            "Domine",
        +            "Donegal One",
        +            "Dongle",
        +            "Doppio One",
        +            "Dorsa",
        +            "Dosis",
        +            "DotGothic16",
        +            "Doto",
        +            "Dr Sugiyama",
        +            "Duru Sans",
        +            "DynaPuff",
        +            "Dynalight",
        +            "EB Garamond",
        +            "Eagle Lake",
        +            "East Sea Dokdo",
        +            "Eater",
        +            "Economica",
        +            "Eczar",
        +            "Edu AU VIC WA NT Arrows",
        +            "Edu AU VIC WA NT Dots",
        +            "Edu AU VIC WA NT Guides",
        +            "Edu AU VIC WA NT Hand",
        +            "Edu AU VIC WA NT Pre",
        +            "Edu NSW ACT Cursive",
        +            "Edu NSW ACT Foundation",
        +            "Edu NSW ACT Hand Pre",
        +            "Edu QLD Beginner",
        +            "Edu QLD Hand",
        +            "Edu SA Beginner",
        +            "Edu SA Hand",
        +            "Edu TAS Beginner",
        +            "Edu VIC WA NT Beginner",
        +            "Edu VIC WA NT Hand",
        +            "Edu VIC WA NT Hand Pre",
        +            "El Messiri",
        +            "Electrolize",
        +            "Elms Sans",
        +            "Elsie",
        +            "Elsie Swash Caps",
        +            "Emblema One",
        +            "Emilys Candy",
        +            "Encode Sans",
        +            "Encode Sans Condensed",
        +            "Encode Sans Expanded",
        +            "Encode Sans SC",
        +            "Encode Sans Semi Condensed",
        +            "Encode Sans Semi Expanded",
        +            "Engagement",
        +            "Englebert",
        +            "Enriqueta",
        +            "Ephesis",
        +            "Epilogue",
        +            "Epunda Sans",
        +            "Epunda Slab",
        +            "Erica One",
        +            "Esteban",
        +            "Estedad",
        +            "Estonia",
        +            "Euphoria Script",
        +            "Ewert",
        +            "Exile",
        +            "Exo",
        +            "Exo 2",
        +            "Expletus Sans",
        +            "Explora",
        +            "Faculty Glyphic",
        +            "Fahkwang",
        +            "Familjen Grotesk",
        +            "Fanwood Text",
        +            "Farro",
        +            "Farsan",
        +            "Fascinate",
        +            "Fascinate Inline",
        +            "Faster One",
        +            "Fasthand",
        +            "Fauna One",
        +            "Faustina",
        +            "Federant",
        +            "Federo",
        +            "Felipa",
        +            "Fenix",
        +            "Festive",
        +            "Figtree",
        +            "Finger Paint",
        +            "Finlandica Headline",
        +            "Finlandica Text",
        +            "Fira Code",
        +            "Fira Mono",
        +            "Fira Sans",
        +            "Fira Sans Condensed",
        +            "Fira Sans Extra Condensed",
        +            "Fjalla One",
        +            "Fjord One",
        +            "Flamenco",
        +            "Flavors",
        +            "Fleur De Leah",
        +            "Flow Block",
        +            "Flow Circular",
        +            "Flow Rounded",
        +            "Foldit",
        +            "Fondamento",
        +            "Fontdiner Swanky",
        +            "Forum",
        +            "Fragment Mono",
        +            "Francois One",
        +            "Frank Ruhl Libre",
        +            "Fraunces",
        +            "Freckle Face",
        +            "Fredericka the Great",
        +            "Fredoka",
        +            "Freehand",
        +            "Freeman",
        +            "Fresca",
        +            "Frijole",
        +            "Fruktur",
        +            "Fugaz One",
        +            "Fuggles",
        +            "Funnel Display",
        +            "Funnel Sans",
        +            "Fustat",
        +            "Fuzzy Bubbles",
        +            "GFS Didot",
        +            "GFS Neohellenic",
        +            "Ga Maamli",
        +            "Gabarito",
        +            "Gabriela",
        +            "Gaegu",
        +            "Gafata",
        +            "Gajraj One",
        +            "Galada",
        +            "Galdeano",
        +            "Galindo",
        +            "Gamja Flower",
        +            "Gantari",
        +            "Gasoek One",
        +            "Gayathri",
        +            "Geist",
        +            "Geist Mono",
        +            "Geist Pixel",
        +            "Gelasio",
        +            "Gemunu Libre",
        +            "Genos",
        +            "Gentium Book Plus",
        +            "Gentium Plus",
        +            "Geo",
        +            "Geologica",
        +            "Geom",
        +            "Geomini",
        +            "Georama",
        +            "Geostar",
        +            "Geostar Fill",
        +            "Germania One",
        +            "Gideon Roman",
        +            "Gidole",
        +            "Gidugu",
        +            "Gilda Display",
        +            "Girassol",
        +            "Give You Glory",
        +            "Glass Antiqua",
        +            "Glegoo",
        +            "Gloock",
        +            "Gloria Hallelujah",
        +            "Glory",
        +            "Gluten",
        +            "Goblin One",
        +            "Gochi Hand",
        +            "Goldman",
        +            "Golos Text",
        +            "Google Sans",
        +            "Google Sans Code",
        +            "Google Sans Flex",
        +            "Gorditas",
        +            "Gothic A1",
        +            "Gotu",
        +            "Goudy Bookletter 1911",
        +            "Gowun Batang",
        +            "Gowun Dodum",
        +            "Graduate",
        +            "Grand Hotel",
        +            "Grandiflora One",
        +            "Grandstander",
        +            "Grape Nuts",
        +            "Gravitas One",
        +            "Great Vibes",
        +            "Grechen Fuemen",
        +            "Grenze",
        +            "Grenze Gotisch",
        +            "Grey Qo",
        +            "Griffy",
        +            "Gruppo",
        +            "Gudea",
        +            "Gugi",
        +            "Gulzar",
        +            "Gupter",
        +            "Gurajada",
        +            "Gveret Levin",
        +            "Gwendolyn",
        +            "Habibi",
        +            "Hachi Maru Pop",
        +            "Hahmlet",
        +            "Halant",
        +            "Hammersmith One",
        +            "Hanalei",
        +            "Hanalei Fill",
        +            "Handjet",
        +            "Handlee",
        +            "Hanken Grotesk",
        +            "Hanuman",
        +            "Happy Monkey",
        +            "Harmattan",
        +            "Headland One",
        +            "Hedvig Letters Sans",
        +            "Hedvig Letters Serif",
        +            "Heebo",
        +            "Henny Penny",
        +            "Hepta Slab",
        +            "Herr Von Muellerhoff",
        +            "Hi Melody",
        +            "Hibur Mono",
        +            "Hina Mincho",
        +            "Hind",
        +            "Hind Guntur",
        +            "Hind Madurai",
        +            "Hind Mysuru",
        +            "Hind Siliguri",
        +            "Hind Vadodara",
        +            "Holtwood One SC",
        +            "Homemade Apple",
        +            "Homenaje",
        +            "Honk",
        +            "Host Grotesk",
        +            "Hubballi",
        +            "Hubot Sans",
        +            "Huninn",
        +            "Hurricane",
        +            "IBM Plex Mono",
        +            "IBM Plex Sans",
        +            "IBM Plex Sans Arabic",
        +            "IBM Plex Sans Condensed",
        +            "IBM Plex Sans Devanagari",
        +            "IBM Plex Sans Hebrew",
        +            "IBM Plex Sans JP",
        +            "IBM Plex Sans KR",
        +            "IBM Plex Sans Thai",
        +            "IBM Plex Sans Thai Looped",
        +            "IBM Plex Serif",
        +            "IM Fell DW Pica",
        +            "IM Fell DW Pica SC",
        +            "IM Fell Double Pica",
        +            "IM Fell Double Pica SC",
        +            "IM Fell English",
        +            "IM Fell English SC",
        +            "IM Fell French Canon",
        +            "IM Fell French Canon SC",
        +            "IM Fell Great Primer",
        +            "IM Fell Great Primer SC",
        +            "Iansui",
        +            "Ibarra Real Nova",
        +            "Iceberg",
        +            "Iceland",
        +            "Idiqlat",
        +            "Imbue",
        +            "Imperial Script",
        +            "Imprima",
        +            "Inclusive Sans",
        +            "Inconsolata",
        +            "Inder",
        +            "Indie Flower",
        +            "Ingrid Darling",
        +            "Inika",
        +            "Inknut Antiqua",
        +            "Inria Sans",
        +            "Inria Serif",
        +            "Inspiration",
        +            "Instrument Sans",
        +            "Instrument Serif",
        +            "Intel One Mono",
        +            "Inter",
        +            "Inter Tight",
        +            "Iosevka Charon",
        +            "Iosevka Charon Mono",
        +            "Irish Grover",
        +            "Island Moments",
        +            "Istok Web",
        +            "Italiana",
        +            "Italianno",
        +            "Itim",
        +            "Jacquard 12",
        +            "Jacquard 12 Charted",
        +            "Jacquard 24",
        +            "Jacquard 24 Charted",
        +            "Jacquarda Bastarda 9",
        +            "Jacquarda Bastarda 9 Charted",
        +            "Jacques Francois",
        +            "Jacques Francois Shadow",
        +            "Jaini",
        +            "Jaini Purva",
        +            "Jaldi",
        +            "Jaro",
        +            "Jersey 10",
        +            "Jersey 10 Charted",
        +            "Jersey 15",
        +            "Jersey 15 Charted",
        +            "Jersey 20",
        +            "Jersey 20 Charted",
        +            "Jersey 25",
        +            "Jersey 25 Charted",
        +            "JetBrains Mono",
        +            "Jim Nightshade",
        +            "Joan",
        +            "Jockey One",
        +            "Jolly Lodger",
        +            "Jomhuria",
        +            "Jomolhari",
        +            "Josefin Sans",
        +            "Josefin Slab",
        +            "Jost",
        +            "Joti One",
        +            "Jua",
        +            "Judson",
        +            "Julee",
        +            "Julius Sans One",
        +            "Junge",
        +            "Jura",
        +            "Just Another Hand",
        +            "Just Me Again Down Here",
        +            "K2D",
        +            "Kablammo",
        +            "Kadwa",
        +            "Kaisei Decol",
        +            "Kaisei HarunoUmi",
        +            "Kaisei Opti",
        +            "Kaisei Tokumin",
        +            "Kalam",
        +            "Kalnia",
        +            "Kalnia Glaze",
        +            "Kameron",
        +            "Kanchenjunga",
        +            "Kanit",
        +            "Kantumruy Pro",
        +            "Kapakana",
        +            "Karantina",
        +            "Karla",
        +            "Karla Tamil Inclined",
        +            "Karla Tamil Upright",
        +            "Karma",
        +            "Katibeh",
        +            "Kaushan Script",
        +            "Kavivanar",
        +            "Kavoon",
        +            "Kay Pho Du",
        +            "Kdam Thmor Pro",
        +            "Keania One",
        +            "Kedebideri",
        +            "Kelly Slab",
        +            "Kenia",
        +            "Khand",
        +            "Khmer",
        +            "Khula",
        +            "Kings",
        +            "Kirang Haerang",
        +            "Kite One",
        +            "Kiwi Maru",
        +            "Klee One",
        +            "Knewave",
        +            "KoHo",
        +            "Kodchasan",
        +            "Kode Mono",
        +            "Koh Santepheap",
        +            "Kolker Brush",
        +            "Konkhmer Sleokchher",
        +            "Kosugi",
        +            "Kosugi Maru",
        +            "Kotta One",
        +            "Koulen",
        +            "Kranky",
        +            "Kreon",
        +            "Kristi",
        +            "Krona One",
        +            "Krub",
        +            "Kufam",
        +            "Kulim Park",
        +            "Kumar One",
        +            "Kumar One Outline",
        +            "Kumbh Sans",
        +            "Kurale",
        +            "LINE Seed JP",
        +            "LXGW Marker Gothic",
        +            "LXGW WenKai Mono TC",
        +            "LXGW WenKai TC",
        +            "La Belle Aurore",
        +            "Labrada",
        +            "Lacquer",
        +            "Laila",
        +            "Lakki Reddy",
        +            "Lalezar",
        +            "Lancelot",
        +            "Langar",
        +            "Lateef",
        +            "Lato",
        +            "Lavishly Yours",
        +            "League Gothic",
        +            "League Script",
        +            "League Spartan",
        +            "Leckerli One",
        +            "Ledger",
        +            "Lekton",
        +            "Lemon",
        +            "Lemonada",
        +            "Lexend",
        +            "Lexend Deca",
        +            "Lexend Exa",
        +            "Lexend Giga",
        +            "Lexend Mega",
        +            "Lexend Peta",
        +            "Lexend Tera",
        +            "Lexend Zetta",
        +            "Libertinus Keyboard",
        +            "Libertinus Math",
        +            "Libertinus Mono",
        +            "Libertinus Sans",
        +            "Libertinus Serif",
        +            "Libertinus Serif Display",
        +            "Libre Barcode 128",
        +            "Libre Barcode 128 Text",
        +            "Libre Barcode 39",
        +            "Libre Barcode 39 Extended",
        +            "Libre Barcode 39 Extended Text",
        +            "Libre Barcode 39 Text",
        +            "Libre Barcode EAN13 Text",
        +            "Libre Baskerville",
        +            "Libre Bodoni",
        +            "Libre Caslon Display",
        +            "Libre Caslon Text",
        +            "Libre Franklin",
        +            "Licorice",
        +            "Life Savers",
        +            "Lilex",
        +            "Lilita One",
        +            "Lily Script One",
        +            "Limelight",
        +            "Linden Hill",
        +            "Linefont",
        +            "Lisu Bosa",
        +            "Liter",
        +            "Literata",
        +            "Liu Jian Mao Cao",
        +            "Livvic",
        +            "Lobster",
        +            "Lobster Two",
        +            "Londrina Outline",
        +            "Londrina Shadow",
        +            "Londrina Sketch",
        +            "Londrina Solid",
        +            "Long Cang",
        +            "Lora",
        +            "Love Light",
        +            "Love Ya Like A Sister",
        +            "Loved by the King",
        +            "Lovers Quarrel",
        +            "Luckiest Guy",
        +            "Lugrasimo",
        +            "Lumanosimo",
        +            "Lunasima",
        +            "Lusitana",
        +            "Lustria",
        +            "Luxurious Roman",
        +            "Luxurious Script",
        +            "M PLUS 1",
        +            "M PLUS 1 Code",
        +            "M PLUS 1p",
        +            "M PLUS 2",
        +            "M PLUS Code Latin",
        +            "M PLUS Rounded 1c",
        +            "M PLUS U",
        +            "Ma Shan Zheng",
        +            "Macondo",
        +            "Macondo Swash Caps",
        +            "Mada",
        +            "Madimi One",
        +            "Magra",
        +            "Maiden Orange",
        +            "Maitree",
        +            "Major Mono Display",
        +            "Mako",
        +            "Mali",
        +            "Mallanna",
        +            "Maname",
        +            "Mandali",
        +            "Manjari",
        +            "Manrope",
        +            "Mansalva",
        +            "Manuale",
        +            "Manufacturing Consent",
        +            "Marcellus",
        +            "Marcellus SC",
        +            "Marck Script",
        +            "Margarine",
        +            "Marhey",
        +            "Markazi Text",
        +            "Marko One",
        +            "Marmelad",
        +            "Martel",
        +            "Martel Sans",
        +            "Martian Mono",
        +            "Marvel",
        +            "Matangi",
        +            "Mate",
        +            "Mate SC",
        +            "Matemasie",
        +            "Material Icons",
        +            "Material Icons Outlined",
        +            "Material Icons Round",
        +            "Material Icons Sharp",
        +            "Material Icons Two Tone",
        +            "Material Symbols",
        +            "Material Symbols Outlined",
        +            "Material Symbols Rounded",
        +            "Material Symbols Sharp",
        +            "Maven Pro",
        +            "McLaren",
        +            "Mea Culpa",
        +            "Meddon",
        +            "MedievalSharp",
        +            "Medula One",
        +            "Meera Inimai",
        +            "Megrim",
        +            "Meie Script",
        +            "Menbere",
        +            "Meow Script",
        +            "Merienda",
        +            "Merriweather",
        +            "Merriweather Sans",
        +            "Metal",
        +            "Metal Mania",
        +            "Metamorphous",
        +            "Metrophobic",
        +            "Michroma",
        +            "Micro 5",
        +            "Micro 5 Charted",
        +            "Milonga",
        +            "Miltonian",
        +            "Miltonian Tattoo",
        +            "Mina",
        +            "Mingzat",
        +            "Miniver",
        +            "Miranda Sans",
        +            "Miriam Libre",
        +            "Mirza",
        +            "Miss Fajardose",
        +            "Mitr",
        +            "Mochiy Pop One",
        +            "Mochiy Pop P One",
        +            "Modak",
        +            "Modern Antiqua",
        +            "Moderustic",
        +            "Mogra",
        +            "Mohave",
        +            "Moirai One",
        +            "Molengo",
        +            "Molle",
        +            "Momo Signature",
        +            "Momo Trust Display",
        +            "Momo Trust Sans",
        +            "Mona Sans",
        +            "Monda",
        +            "Monofett",
        +            "Monomakh",
        +            "Monomaniac One",
        +            "Monoton",
        +            "Monsieur La Doulaise",
        +            "Montaga",
        +            "Montagu Slab",
        +            "MonteCarlo",
        +            "Montenegrin Gothic One",
        +            "Montez",
        +            "Montserrat",
        +            "Montserrat Alternates",
        +            "Montserrat Underline",
        +            "Moo Lah Lah",
        +            "Mooli",
        +            "Moon Dance",
        +            "Moul",
        +            "Moulpali",
        +            "Mountains of Christmas",
        +            "Mouse Memoirs",
        +            "Mozilla Headline",
        +            "Mozilla Text",
        +            "Mr Bedfort",
        +            "Mr Dafoe",
        +            "Mr De Haviland",
        +            "Mrs Saint Delafield",
        +            "Mrs Sheppards",
        +            "Ms Madi",
        +            "Mukta",
        +            "Mukta Mahee",
        +            "Mukta Malar",
        +            "Mukta Vaani",
        +            "Mulish",
        +            "Murecho",
        +            "MuseoModerno",
        +            "My Soul",
        +            "Mynerve",
        +            "Mystery Quest",
        +            "NTR",
        +            "Nabla",
        +            "Namdhinggo",
        +            "Nanum Brush Script",
        +            "Nanum Gothic",
        +            "Nanum Gothic Coding",
        +            "Nanum Myeongjo",
        +            "Nanum Pen Script",
        +            "Narnoor",
        +            "Nata Sans",
        +            "National Park",
        +            "Neonderthaw",
        +            "Nerko One",
        +            "Neucha",
        +            "Neuton",
        +            "New Amsterdam",
        +            "New Rocker",
        +            "New Tegomin",
        +            "News Cycle",
        +            "Newsreader",
        +            "Niconne",
        +            "Niramit",
        +            "Nixie One",
        +            "Nobile",
        +            "Nokora",
        +            "Norican",
        +            "Nosifer",
        +            "Notable",
        +            "Nothing You Could Do",
        +            "Noticia Text",
        +            "Noto Color Emoji",
        +            "Noto Emoji",
        +            "Noto Kufi Arabic",
        +            "Noto Music",
        +            "Noto Naskh Arabic",
        +            "Noto Nastaliq Urdu",
        +            "Noto Rashi Hebrew",
        +            "Noto Sans",
        +            "Noto Sans Adlam",
        +            "Noto Sans Adlam Unjoined",
        +            "Noto Sans Anatolian Hieroglyphs",
        +            "Noto Sans Arabic",
        +            "Noto Sans Armenian",
        +            "Noto Sans Avestan",
        +            "Noto Sans Balinese",
        +            "Noto Sans Bamum",
        +            "Noto Sans Bassa Vah",
        +            "Noto Sans Batak",
        +            "Noto Sans Bengali",
        +            "Noto Sans Bhaiksuki",
        +            "Noto Sans Brahmi",
        +            "Noto Sans Buginese",
        +            "Noto Sans Buhid",
        +            "Noto Sans Canadian Aboriginal",
        +            "Noto Sans Carian",
        +            "Noto Sans Caucasian Albanian",
        +            "Noto Sans Chakma",
        +            "Noto Sans Cham",
        +            "Noto Sans Cherokee",
        +            "Noto Sans Chorasmian",
        +            "Noto Sans Coptic",
        +            "Noto Sans Cuneiform",
        +            "Noto Sans Cypriot",
        +            "Noto Sans Cypro Minoan",
        +            "Noto Sans Deseret",
        +            "Noto Sans Devanagari",
        +            "Noto Sans Display",
        +            "Noto Sans Duployan",
        +            "Noto Sans Egyptian Hieroglyphs",
        +            "Noto Sans Elbasan",
        +            "Noto Sans Elymaic",
        +            "Noto Sans Ethiopic",
        +            "Noto Sans Georgian",
        +            "Noto Sans Glagolitic",
        +            "Noto Sans Gothic",
        +            "Noto Sans Grantha",
        +            "Noto Sans Gujarati",
        +            "Noto Sans Gunjala Gondi",
        +            "Noto Sans Gurmukhi",
        +            "Noto Sans HK",
        +            "Noto Sans Hanifi Rohingya",
        +            "Noto Sans Hanunoo",
        +            "Noto Sans Hatran",
        +            "Noto Sans Hebrew",
        +            "Noto Sans Imperial Aramaic",
        +            "Noto Sans Indic Siyaq Numbers",
        +            "Noto Sans Inscriptional Pahlavi",
        +            "Noto Sans Inscriptional Parthian",
        +            "Noto Sans JP",
        +            "Noto Sans Javanese",
        +            "Noto Sans KR",
        +            "Noto Sans Kaithi",
        +            "Noto Sans Kannada",
        +            "Noto Sans Kawi",
        +            "Noto Sans Kayah Li",
        +            "Noto Sans Kharoshthi",
        +            "Noto Sans Khmer",
        +            "Noto Sans Khojki",
        +            "Noto Sans Khudawadi",
        +            "Noto Sans Lao",
        +            "Noto Sans Lao Looped",
        +            "Noto Sans Lepcha",
        +            "Noto Sans Limbu",
        +            "Noto Sans Linear A",
        +            "Noto Sans Linear B",
        +            "Noto Sans Lisu",
        +            "Noto Sans Lycian",
        +            "Noto Sans Lydian",
        +            "Noto Sans Mahajani",
        +            "Noto Sans Malayalam",
        +            "Noto Sans Mandaic",
        +            "Noto Sans Manichaean",
        +            "Noto Sans Marchen",
        +            "Noto Sans Masaram Gondi",
        +            "Noto Sans Math",
        +            "Noto Sans Mayan Numerals",
        +            "Noto Sans Medefaidrin",
        +            "Noto Sans Meetei Mayek",
        +            "Noto Sans Mende Kikakui",
        +            "Noto Sans Meroitic",
        +            "Noto Sans Miao",
        +            "Noto Sans Modi",
        +            "Noto Sans Mongolian",
        +            "Noto Sans Mono",
        +            "Noto Sans Mro",
        +            "Noto Sans Multani",
        +            "Noto Sans Myanmar",
        +            "Noto Sans NKo",
        +            "Noto Sans NKo Unjoined",
        +            "Noto Sans Nabataean",
        +            "Noto Sans Nag Mundari",
        +            "Noto Sans Nandinagari",
        +            "Noto Sans New Tai Lue",
        +            "Noto Sans Newa",
        +            "Noto Sans Nushu",
        +            "Noto Sans Ogham",
        +            "Noto Sans Ol Chiki",
        +            "Noto Sans Old Hungarian",
        +            "Noto Sans Old Italic",
        +            "Noto Sans Old North Arabian",
        +            "Noto Sans Old Permic",
        +            "Noto Sans Old Persian",
        +            "Noto Sans Old Sogdian",
        +            "Noto Sans Old South Arabian",
        +            "Noto Sans Old Turkic",
        +            "Noto Sans Oriya",
        +            "Noto Sans Osage",
        +            "Noto Sans Osmanya",
        +            "Noto Sans Pahawh Hmong",
        +            "Noto Sans Palmyrene",
        +            "Noto Sans Pau Cin Hau",
        +            "Noto Sans PhagsPa",
        +            "Noto Sans Phoenician",
        +            "Noto Sans Psalter Pahlavi",
        +            "Noto Sans Rejang",
        +            "Noto Sans Runic",
        +            "Noto Sans SC",
        +            "Noto Sans Samaritan",
        +            "Noto Sans Saurashtra",
        +            "Noto Sans Sharada",
        +            "Noto Sans Shavian",
        +            "Noto Sans Siddham",
        +            "Noto Sans SignWriting",
        +            "Noto Sans Sinhala",
        +            "Noto Sans Sogdian",
        +            "Noto Sans Sora Sompeng",
        +            "Noto Sans Soyombo",
        +            "Noto Sans Sundanese",
        +            "Noto Sans Sunuwar",
        +            "Noto Sans Syloti Nagri",
        +            "Noto Sans Symbols",
        +            "Noto Sans Symbols 2",
        +            "Noto Sans Syriac",
        +            "Noto Sans Syriac Eastern",
        +            "Noto Sans Syriac Western",
        +            "Noto Sans TC",
        +            "Noto Sans Tagalog",
        +            "Noto Sans Tagbanwa",
        +            "Noto Sans Tai Le",
        +            "Noto Sans Tai Tham",
        +            "Noto Sans Tai Viet",
        +            "Noto Sans Takri",
        +            "Noto Sans Tamil",
        +            "Noto Sans Tamil Supplement",
        +            "Noto Sans Tangsa",
        +            "Noto Sans Telugu",
        +            "Noto Sans Thaana",
        +            "Noto Sans Thai",
        +            "Noto Sans Thai Looped",
        +            "Noto Sans Tifinagh",
        +            "Noto Sans Tirhuta",
        +            "Noto Sans Ugaritic",
        +            "Noto Sans Vai",
        +            "Noto Sans Vithkuqi",
        +            "Noto Sans Wancho",
        +            "Noto Sans Warang Citi",
        +            "Noto Sans Yi",
        +            "Noto Sans Zanabazar Square",
        +            "Noto Serif",
        +            "Noto Serif Ahom",
        +            "Noto Serif Armenian",
        +            "Noto Serif Balinese",
        +            "Noto Serif Bengali",
        +            "Noto Serif Devanagari",
        +            "Noto Serif Display",
        +            "Noto Serif Dives Akuru",
        +            "Noto Serif Dogra",
        +            "Noto Serif Ethiopic",
        +            "Noto Serif Georgian",
        +            "Noto Serif Grantha",
        +            "Noto Serif Gujarati",
        +            "Noto Serif Gurmukhi",
        +            "Noto Serif HK",
        +            "Noto Serif Hebrew",
        +            "Noto Serif Hentaigana",
        +            "Noto Serif JP",
        +            "Noto Serif KR",
        +            "Noto Serif Kannada",
        +            "Noto Serif Khitan Small Script",
        +            "Noto Serif Khmer",
        +            "Noto Serif Khojki",
        +            "Noto Serif Lao",
        +            "Noto Serif Makasar",
        +            "Noto Serif Malayalam",
        +            "Noto Serif Myanmar",
        +            "Noto Serif NP Hmong",
        +            "Noto Serif Old Uyghur",
        +            "Noto Serif Oriya",
        +            "Noto Serif Ottoman Siyaq",
        +            "Noto Serif SC",
        +            "Noto Serif Sinhala",
        +            "Noto Serif TC",
        +            "Noto Serif Tamil",
        +            "Noto Serif Tangut",
        +            "Noto Serif Telugu",
        +            "Noto Serif Thai",
        +            "Noto Serif Tibetan",
        +            "Noto Serif Todhri",
        +            "Noto Serif Toto",
        +            "Noto Serif Vithkuqi",
        +            "Noto Serif Yezidi",
        +            "Noto Traditional Nushu",
        +            "Noto Znamenny Musical Notation",
        +            "Nova Cut",
        +            "Nova Flat",
        +            "Nova Mono",
        +            "Nova Oval",
        +            "Nova Round",
        +            "Nova Script",
        +            "Nova Slim",
        +            "Nova Square",
        +            "Numans",
        +            "Nunito",
        +            "Nunito Sans",
        +            "Nuosu SIL",
        +            "Odibee Sans",
        +            "Odor Mean Chey",
        +            "Offside",
        +            "Oi",
        +            "Ojuju",
        +            "Old Standard TT",
        +            "Oldenburg",
        +            "Ole",
        +            "Oleo Script",
        +            "Oleo Script Swash Caps",
        +            "Onest",
        +            "Oooh Baby",
        +            "Open Sans",
        +            "Oranienbaum",
        +            "Orbit",
        +            "Orbitron",
        +            "Oregano",
        +            "Orelega One",
        +            "Orienta",
        +            "Original Surfer",
        +            "Oswald",
        +            "Outfit",
        +            "Over the Rainbow",
        +            "Overlock",
        +            "Overlock SC",
        +            "Overpass",
        +            "Overpass Mono",
        +            "Ovo",
        +            "Oxanium",
        +            "Oxygen",
        +            "Oxygen Mono",
        +            "PT Mono",
        +            "PT Sans",
        +            "PT Sans Caption",
        +            "PT Sans Narrow",
        +            "PT Serif",
        +            "PT Serif Caption",
        +            "Pacifico",
        +            "Padauk",
        +            "Padyakke Expanded One",
        +            "Palanquin",
        +            "Palanquin Dark",
        +            "Palette Mosaic",
        +            "Pangolin",
        +            "Paprika",
        +            "Parastoo",
        +            "Parisienne",
        +            "Parkinsans",
        +            "Passero One",
        +            "Passion One",
        +            "Passions Conflict",
        +            "Pathway Extreme",
        +            "Pathway Gothic One",
        +            "Patrick Hand",
        +            "Patrick Hand SC",
        +            "Pattaya",
        +            "Patua One",
        +            "Pavanam",
        +            "Paytone One",
        +            "Peddana",
        +            "Peralta",
        +            "Permanent Marker",
        +            "Petemoss",
        +            "Petit Formal Script",
        +            "Petrona",
        +            "Phetsarath",
        +            "Philosopher",
        +            "Phudu",
        +            "Piazzolla",
        +            "Piedra",
        +            "Pinyon Script",
        +            "Pirata One",
        +            "Pixelify Sans",
        +            "Plaster",
        +            "Platypi",
        +            "Play",
        +            "Playball",
        +            "Playfair",
        +            "Playfair Display",
        +            "Playfair Display SC",
        +            "Playpen Sans",
        +            "Playpen Sans Arabic",
        +            "Playpen Sans Deva",
        +            "Playpen Sans Hebrew",
        +            "Playpen Sans Thai",
        +            "Playwrite AR",
        +            "Playwrite AR Guides",
        +            "Playwrite AT",
        +            "Playwrite AT Guides",
        +            "Playwrite AU NSW",
        +            "Playwrite AU NSW Guides",
        +            "Playwrite AU QLD",
        +            "Playwrite AU QLD Guides",
        +            "Playwrite AU SA",
        +            "Playwrite AU SA Guides",
        +            "Playwrite AU TAS",
        +            "Playwrite AU TAS Guides",
        +            "Playwrite AU VIC",
        +            "Playwrite AU VIC Guides",
        +            "Playwrite BE VLG",
        +            "Playwrite BE VLG Guides",
        +            "Playwrite BE WAL",
        +            "Playwrite BE WAL Guides",
        +            "Playwrite BR",
        +            "Playwrite BR Guides",
        +            "Playwrite CA",
        +            "Playwrite CA Guides",
        +            "Playwrite CL",
        +            "Playwrite CL Guides",
        +            "Playwrite CO",
        +            "Playwrite CO Guides",
        +            "Playwrite CU",
        +            "Playwrite CU Guides",
        +            "Playwrite CZ",
        +            "Playwrite CZ Guides",
        +            "Playwrite DE Grund",
        +            "Playwrite DE Grund Guides",
        +            "Playwrite DE LA",
        +            "Playwrite DE LA Guides",
        +            "Playwrite DE SAS",
        +            "Playwrite DE SAS Guides",
        +            "Playwrite DE VA",
        +            "Playwrite DE VA Guides",
        +            "Playwrite DK Loopet",
        +            "Playwrite DK Loopet Guides",
        +            "Playwrite DK Uloopet",
        +            "Playwrite DK Uloopet Guides",
        +            "Playwrite ES",
        +            "Playwrite ES Deco",
        +            "Playwrite ES Deco Guides",
        +            "Playwrite ES Guides",
        +            "Playwrite FR Moderne",
        +            "Playwrite FR Moderne Guides",
        +            "Playwrite FR Trad",
        +            "Playwrite FR Trad Guides",
        +            "Playwrite GB J",
        +            "Playwrite GB J Guides",
        +            "Playwrite GB S",
        +            "Playwrite GB S Guides",
        +            "Playwrite HR",
        +            "Playwrite HR Guides",
        +            "Playwrite HR Lijeva",
        +            "Playwrite HR Lijeva Guides",
        +            "Playwrite HU",
        +            "Playwrite HU Guides",
        +            "Playwrite ID",
        +            "Playwrite ID Guides",
        +            "Playwrite IE",
        +            "Playwrite IE Guides",
        +            "Playwrite IN",
        +            "Playwrite IN Guides",
        +            "Playwrite IS",
        +            "Playwrite IS Guides",
        +            "Playwrite IT Moderna",
        +            "Playwrite IT Moderna Guides",
        +            "Playwrite IT Trad",
        +            "Playwrite IT Trad Guides",
        +            "Playwrite MX",
        +            "Playwrite MX Guides",
        +            "Playwrite NG Modern",
        +            "Playwrite NG Modern Guides",
        +            "Playwrite NL",
        +            "Playwrite NL Guides",
        +            "Playwrite NO",
        +            "Playwrite NO Guides",
        +            "Playwrite NZ",
        +            "Playwrite NZ Basic",
        +            "Playwrite NZ Basic Guides",
        +            "Playwrite NZ Guides",
        +            "Playwrite PE",
        +            "Playwrite PE Guides",
        +            "Playwrite PL",
        +            "Playwrite PL Guides",
        +            "Playwrite PT",
        +            "Playwrite PT Guides",
        +            "Playwrite RO",
        +            "Playwrite RO Guides",
        +            "Playwrite SK",
        +            "Playwrite SK Guides",
        +            "Playwrite TZ",
        +            "Playwrite TZ Guides",
        +            "Playwrite US Modern",
        +            "Playwrite US Modern Guides",
        +            "Playwrite US Trad",
        +            "Playwrite US Trad Guides",
        +            "Playwrite VN",
        +            "Playwrite VN Guides",
        +            "Playwrite ZA",
        +            "Playwrite ZA Guides",
        +            "Pliant",
        +            "Plus Jakarta Sans",
        +            "Pochaevsk",
        +            "Podkova",
        +            "Poetsen One",
        +            "Poiret One",
        +            "Poller One",
        +            "Poltawski Nowy",
        +            "Poly",
        +            "Pompiere",
        +            "Ponnala",
        +            "Ponomar",
        +            "Pontano Sans",
        +            "Poor Story",
        +            "Poppins",
        +            "Port Lligat Sans",
        +            "Port Lligat Slab",
        +            "Potta One",
        +            "Pragati Narrow",
        +            "Praise",
        +            "Prata",
        +            "Preahvihear",
        +            "Press Start 2P",
        +            "Pridi",
        +            "Princess Sofia",
        +            "Prociono",
        +            "Prompt",
        +            "Prosto One",
        +            "Protest Guerrilla",
        +            "Protest Revolution",
        +            "Protest Riot",
        +            "Protest Strike",
        +            "Proza Libre",
        +            "Public Sans",
        +            "Puppies Play",
        +            "Puritan",
        +            "Purple Purse",
        +            "Qahiri",
        +            "Quando",
        +            "Quantico",
        +            "Quattrocento",
        +            "Quattrocento Sans",
        +            "Questrial",
        +            "Quicksand",
        +            "Quintessential",
        +            "Qwigley",
        +            "Qwitcher Grypen",
        +            "REM",
        +            "Racing Sans One",
        +            "Radio Canada",
        +            "Radio Canada Big",
        +            "Radley",
        +            "Rajdhani",
        +            "Rakkas",
        +            "Raleway",
        +            "Raleway Dots",
        +            "Ramabhadra",
        +            "Ramaraja",
        +            "Rambla",
        +            "Rammetto One",
        +            "Rampart One",
        +            "Ramsina",
        +            "Ranchers",
        +            "Rancho",
        +            "Ranga",
        +            "Rasa",
        +            "Rationale",
        +            "Ravi Prakash",
        +            "Readex Pro",
        +            "Recursive",
        +            "Red Hat Display",
        +            "Red Hat Mono",
        +            "Red Hat Text",
        +            "Red Rose",
        +            "Redacted",
        +            "Redacted Script",
        +            "Reddit Mono",
        +            "Reddit Sans",
        +            "Reddit Sans Condensed",
        +            "Redressed",
        +            "Reem Kufi",
        +            "Reem Kufi Fun",
        +            "Reem Kufi Ink",
        +            "Reenie Beanie",
        +            "Reggae One",
        +            "Rethink Sans",
        +            "Revalia",
        +            "Rhodium Libre",
        +            "Ribeye",
        +            "Ribeye Marrow",
        +            "Righteous",
        +            "Risque",
        +            "Road Rage",
        +            "Roboto",
        +            "Roboto Condensed",
        +            "Roboto Flex",
        +            "Roboto Mono",
        +            "Roboto Serif",
        +            "Roboto Slab",
        +            "Rochester",
        +            "Rock 3D",
        +            "Rock Salt",
        +            "RocknRoll One",
        +            "Rokkitt",
        +            "Romanesco",
        +            "Ropa Sans",
        +            "Rosario",
        +            "Rosarivo",
        +            "Rouge Script",
        +            "Rowdies",
        +            "Rozha One",
        +            "Rubik",
        +            "Rubik 80s Fade",
        +            "Rubik Beastly",
        +            "Rubik Broken Fax",
        +            "Rubik Bubbles",
        +            "Rubik Burned",
        +            "Rubik Dirt",
        +            "Rubik Distressed",
        +            "Rubik Doodle Shadow",
        +            "Rubik Doodle Triangles",
        +            "Rubik Gemstones",
        +            "Rubik Glitch",
        +            "Rubik Glitch Pop",
        +            "Rubik Iso",
        +            "Rubik Lines",
        +            "Rubik Maps",
        +            "Rubik Marker Hatch",
        +            "Rubik Maze",
        +            "Rubik Microbe",
        +            "Rubik Mono One",
        +            "Rubik Moonrocks",
        +            "Rubik Pixels",
        +            "Rubik Puddles",
        +            "Rubik Scribble",
        +            "Rubik Spray Paint",
        +            "Rubik Storm",
        +            "Rubik Vinyl",
        +            "Rubik Wet Paint",
        +            "Ruda",
        +            "Rufina",
        +            "Ruge Boogie",
        +            "Ruluko",
        +            "Rum Raisin",
        +            "Ruslan Display",
        +            "Russo One",
        +            "Ruthie",
        +            "Ruwudu",
        +            "Rye",
        +            "SN Pro",
        +            "STIX Two Math",
        +            "STIX Two Text",
        +            "SUSE",
        +            "SUSE Mono",
        +            "Sacramento",
        +            "Sahitya",
        +            "Sail",
        +            "Saira",
        +            "Saira Condensed",
        +            "Saira Extra Condensed",
        +            "Saira Semi Condensed",
        +            "Saira Stencil",
        +            "Salsa",
        +            "Sanchez",
        +            "Sancreek",
        +            "Sankofa Display",
        +            "Sansation",
        +            "Sansita",
        +            "Sansita Swashed",
        +            "Sarabun",
        +            "Sarala",
        +            "Sarina",
        +            "Sarpanch",
        +            "Sassy Frass",
        +            "Satisfy",
        +            "Savate",
        +            "Sawarabi Gothic",
        +            "Sawarabi Mincho",
        +            "Scada",
        +            "Scheherazade New",
        +            "Schibsted Grotesk",
        +            "Schoolbell",
        +            "Science Gothic",
        +            "Scope One",
        +            "Seaweed Script",
        +            "Secular One",
        +            "Sedan",
        +            "Sedan SC",
        +            "Sedgwick Ave",
        +            "Sedgwick Ave Display",
        +            "Sekuya",
        +            "Sen",
        +            "Send Flowers",
        +            "Sevillana",
        +            "Seymour One",
        +            "Shadows Into Light",
        +            "Shadows Into Light Two",
        +            "Shafarik",
        +            "Shalimar",
        +            "Shantell Sans",
        +            "Shanti",
        +            "Share",
        +            "Share Tech",
        +            "Share Tech Mono",
        +            "Shippori Antique",
        +            "Shippori Antique B1",
        +            "Shippori Mincho",
        +            "Shippori Mincho B1",
        +            "Shizuru",
        +            "Shojumaru",
        +            "Short Stack",
        +            "Shrikhand",
        +            "Siemreap",
        +            "Sigmar",
        +            "Sigmar One",
        +            "Signika",
        +            "Signika Negative",
        +            "Silkscreen",
        +            "Simonetta",
        +            "Single Day",
        +            "Sintony",
        +            "Sirin Stencil",
        +            "Sirivennela",
        +            "Six Caps",
        +            "Sixtyfour",
        +            "Sixtyfour Convergence",
        +            "Skranji",
        +            "Slabo 13px",
        +            "Slabo 27px",
        +            "Slackey",
        +            "Slackside One",
        +            "Smokum",
        +            "Smooch",
        +            "Smooch Sans",
        +            "Smythe",
        +            "Sniglet",
        +            "Snippet",
        +            "Snowburst One",
        +            "Sofadi One",
        +            "Sofia",
        +            "Sofia Sans",
        +            "Sofia Sans Condensed",
        +            "Sofia Sans Extra Condensed",
        +            "Sofia Sans Semi Condensed",
        +            "Solitreo",
        +            "Solway",
        +            "Sometype Mono",
        +            "Song Myung",
        +            "Sono",
        +            "Sonsie One",
        +            "Sora",
        +            "Sorts Mill Goudy",
        +            "Sour Gummy",
        +            "Source Code Pro",
        +            "Source Sans 3",
        +            "Source Serif 4",
        +            "Space Grotesk",
        +            "Space Mono",
        +            "Special Elite",
        +            "Special Gothic",
        +            "Special Gothic Condensed One",
        +            "Special Gothic Expanded One",
        +            "Spectral",
        +            "Spectral SC",
        +            "Spicy Rice",
        +            "Spinnaker",
        +            "Spirax",
        +            "Splash",
        +            "Spline Sans",
        +            "Spline Sans Mono",
        +            "Squada One",
        +            "Square Peg",
        +            "Sree Krushnadevaraya",
        +            "Sriracha",
        +            "Srisakdi",
        +            "Staatliches",
        +            "Stack Sans Headline",
        +            "Stack Sans Notch",
        +            "Stack Sans Text",
        +            "Stalemate",
        +            "Stalinist One",
        +            "Stardos Stencil",
        +            "Stick",
        +            "Stick No Bills",
        +            "Stint Ultra Condensed",
        +            "Stint Ultra Expanded",
        +            "Stoke",
        +            "Story Script",
        +            "Strait",
        +            "Strichpunkt Sans",
        +            "Style Script",
        +            "Stylish",
        +            "Sue Ellen Francisco",
        +            "Suez One",
        +            "Sulphur Point",
        +            "Sumana",
        +            "Sunflower",
        +            "Sunshiney",
        +            "Supermercado One",
        +            "Sura",
        +            "Suranna",
        +            "Suravaram",
        +            "Suwannaphum",
        +            "Swanky and Moo Moo",
        +            "Syncopate",
        +            "Syne",
        +            "Syne Mono",
        +            "Syne Tactile",
        +            "TASA Explorer",
        +            "TASA Orbiter",
        +            "Tac One",
        +            "Tagesschrift",
        +            "Tai Heritage Pro",
        +            "Tajawal",
        +            "Tangerine",
        +            "Tapestry",
        +            "Taprom",
        +            "Tauri",
        +            "Taviraj",
        +            "Teachers",
        +            "Teko",
        +            "Tektur",
        +            "Telex",
        +            "Tenali Ramakrishna",
        +            "Tenor Sans",
        +            "Text Me One",
        +            "Texturina",
        +            "Thasadith",
        +            "The Girl Next Door",
        +            "The Nautigal",
        +            "Tienne",
        +            "TikTok Sans",
        +            "Tillana",
        +            "Tilt Neon",
        +            "Tilt Prism",
        +            "Tilt Warp",
        +            "Timmana",
        +            "Tinos",
        +            "Tiny5",
        +            "Tiro Bangla",
        +            "Tiro Devanagari Hindi",
        +            "Tiro Devanagari Marathi",
        +            "Tiro Devanagari Sanskrit",
        +            "Tiro Gurmukhi",
        +            "Tiro Kannada",
        +            "Tiro Tamil",
        +            "Tiro Telugu",
        +            "Tirra",
        +            "Titan One",
        +            "Titillium Web",
        +            "Tomorrow",
        +            "Tourney",
        +            "Trade Winds",
        +            "Train One",
        +            "Triodion",
        +            "Trirong",
        +            "Trispace",
        +            "Trocchi",
        +            "Trochut",
        +            "Truculenta",
        +            "Trykker",
        +            "Tsukimi Rounded",
        +            "Tuffy",
        +            "Tulpen One",
        +            "Turret Road",
        +            "Twinkle Star",
        +            "Ubuntu",
        +            "Ubuntu Condensed",
        +            "Ubuntu Mono",
        +            "Ubuntu Sans",
        +            "Ubuntu Sans Mono",
        +            "Uchen",
        +            "Ultra",
        +            "Unbounded",
        +            "Uncial Antiqua",
        +            "Underdog",
        +            "Unica One",
        +            "UnifrakturCook",
        +            "UnifrakturMaguntia",
        +            "Unkempt",
        +            "Unlock",
        +            "Unna",
        +            "UoqMunThenKhung",
        +            "Updock",
        +            "Urbanist",
        +            "VT323",
        +            "Vampiro One",
        +            "Varela",
        +            "Varela Round",
        +            "Varta",
        +            "Vast Shadow",
        +            "Vazirmatn",
        +            "Vend Sans",
        +            "Vesper Libre",
        +            "Viaoda Libre",
        +            "Vibes",
        +            "Vibur",
        +            "Victor Mono",
        +            "Vidaloka",
        +            "Viga",
        +            "Vina Sans",
        +            "Voces",
        +            "Volkhov",
        +            "Vollkorn",
        +            "Vollkorn SC",
        +            "Voltaire",
        +            "Vujahday Script",
        +            "WDXL Lubrifont JP N",
        +            "WDXL Lubrifont SC",
        +            "WDXL Lubrifont TC",
        +            "Waiting for the Sunrise",
        +            "Wallpoet",
        +            "Walter Turncoat",
        +            "Warnes",
        +            "Water Brush",
        +            "Waterfall",
        +            "Wavefont",
        +            "Wellfleet",
        +            "Wendy One",
        +            "Whisper",
        +            "WindSong",
        +            "Winky Rough",
        +            "Winky Sans",
        +            "Wire One",
        +            "Wittgenstein",
        +            "Wix Madefor Display",
        +            "Wix Madefor Text",
        +            "Work Sans",
        +            "Workbench",
        +            "Xanh Mono",
        +            "Yaldevi",
        +            "Yanone Kaffeesatz",
        +            "Yantramanav",
        +            "Yarndings 12",
        +            "Yarndings 12 Charted",
        +            "Yarndings 20",
        +            "Yarndings 20 Charted",
        +            "Yatra One",
        +            "Yellowtail",
        +            "Yeon Sung",
        +            "Yeseva One",
        +            "Yesteryear",
        +            "Yomogi",
        +            "Young Serif",
        +            "Yrsa",
        +            "Ysabeau",
        +            "Ysabeau Infant",
        +            "Ysabeau Office",
        +            "Ysabeau SC",
        +            "Yuji Boku",
        +            "Yuji Hentaigana Akari",
        +            "Yuji Hentaigana Akebono",
        +            "Yuji Mai",
        +            "Yuji Syuku",
        +            "Yusei Magic",
        +            "Yuyu",
        +            "Yuyu Short",
        +            "ZCOOL KuaiLe",
        +            "ZCOOL QingKe HuangYou",
        +            "ZCOOL XiaoWei",
        +            "Zain",
        +            "Zalando Sans",
        +            "Zalando Sans Expanded",
        +            "Zalando Sans SemiExpanded",
        +            "Zen Antique",
        +            "Zen Antique Soft",
        +            "Zen Dots",
        +            "Zen Kaku Gothic Antique",
        +            "Zen Kaku Gothic New",
        +            "Zen Kurenaido",
        +            "Zen Loop",
        +            "Zen Maru Gothic",
        +            "Zen Old Mincho",
        +            "Zen Tokyo Zoo",
        +            "Zeyada",
        +            "Zhi Mang Xing",
        +            "Zilla Slab",
        +            "Zilla Slab Highlight"
        +          ],
        +          "type": "string"
        +        },
        +        "fontSize": {
        +          "type": "number"
        +        },
        +        "footerColor": {
        +          "type": "string"
        +        },
        +        "footerFontSize": {
        +          "type": "number"
        +        },
        +        "footerGap": {
        +          "type": "number"
        +        },
        +        "footerLinkColor": {
        +          "type": "string"
        +        },
        +        "gridColor": {
        +          "type": "string"
        +        },
        +        "gridLineWidth": {
        +          "type": "number"
        +        },
        +        "gridLines": {
        +          "enum": [
        +            "none",
        +            "value",
        +            "both"
        +          ],
        +          "type": "string"
        +        },
        +        "headerGap": {
        +          "type": "number"
        +        },
        +        "labelColor": {
        +          "type": "string"
        +        },
        +        "labelFontSize": {
        +          "type": "number"
        +        },
        +        "labelFontWeight": {
        +          "type": "string"
        +        },
        +        "labelHaloWidth": {
        +          "type": "number"
        +        },
        +        "labelMutedFontWeight": {
        +          "type": "string"
        +        },
        +        "labelMutedOpacity": {
        +          "type": "number"
        +        },
        +        "lineStrokeWidth": {
        +          "type": "number"
        +        },
        +        "numericFontFamily": {
        +          "type": "string"
        +        },
        +        "pieCornerRadius": {
        +          "type": "number"
        +        },
        +        "sequentialRange": {
        +          "items": [
        +            {
        +              "type": "string"
        +            },
        +            {
        +              "type": "string"
        +            }
        +          ],
        +          "maxItems": 2,
        +          "minItems": 2,
        +          "type": "array"
        +        },
        +        "subtitleColor": {
        +          "type": "string"
        +        },
        +        "subtitleFontSize": {
        +          "type": "number"
        +        },
        +        "tickDensity": {
        +          "type": "number"
        +        },
        +        "tickLabelColor": {
        +          "type": "string"
        +        },
        +        "tickLabelFontWeight": {
        +          "type": "string"
        +        },
        +        "tickPadding": {
        +          "type": "number"
        +        },
        +        "tickSize": {
        +          "type": "number"
        +        },
        +        "titleColor": {
        +          "type": "string"
        +        },
        +        "titleFontFamily": {
        +          "type": "string"
        +        },
        +        "titleFontSize": {
        +          "type": "number"
        +        },
        +        "titleFontWeight": {
        +          "type": "string"
        +        },
        +        "titleSubtitleGap": {
        +          "type": "number"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "title": {
        +      "type": "string"
        +    },
        +    "version": {
        +      "const": "2026-03-20",
        +      "type": "string"
        +    },
        +    "width": {
        +      "maximum": 4096,
        +      "minimum": 1,
        +      "type": "integer"
        +    },
        +    "x": {
        +      "additionalProperties": {},
        +      "properties": {
        +        "display": {
        +          "default": true,
        +          "type": "boolean"
        +        },
        +        "domain": {
        +          "anyOf": [
        +            {
        +              "items": [
        +                {
        +                  "type": "number"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            }
        +          ]
        +        },
        +        "label": {
        +          "type": "string"
        +        },
        +        "nice": {
        +          "type": "boolean"
        +        },
        +        "tickFormat": {
        +          "type": "string"
        +        },
        +        "type": {
        +          "enum": [
        +            "linear",
        +            "utc",
        +            "band"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    },
        +    "y": {
        +      "additionalProperties": {},
        +      "properties": {
        +        "display": {
        +          "default": true,
        +          "type": "boolean"
        +        },
        +        "domain": {
        +          "anyOf": [
        +            {
        +              "items": [
        +                {
        +                  "type": "number"
        +                },
        +                {
        +                  "type": "number"
        +                }
        +              ],
        +              "maxItems": 2,
        +              "minItems": 2,
        +              "type": "array"
        +            },
        +            {
        +              "items": {
        +                "type": "string"
        +              },
        +              "type": "array"
        +            }
        +          ]
        +        },
        +        "label": {
        +          "type": "string"
        +        },
        +        "nice": {
        +          "type": "boolean"
        +        },
        +        "tickFormat": {
        +          "type": "string"
        +        },
        +        "type": {
        +          "enum": [
        +            "linear",
        +            "utc",
        +            "band"
        +          ],
        +          "type": "string"
        +        }
        +      },
        +      "type": "object"
        +    }
        +  },
        +  "required": [
        +    "version",
        +    "format",
        +    "marks"
        +  ],
        +  "title": "Szum Chart Configuration",
        +  "type": "object"
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "valid",
        -  "message",
        -  "errors"
        -]New value: +[
        +  "valid",
        +  "message",
        +  "errors",
        +  "diagnostics"
        +]
  4. 4 tool updates
    • Changedrender_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."
    • Changedsave_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."
    • Changedupdate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."
    • Changedvalidate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of a complete chart config. Mark field references must match row keys. Chronological annual values use \"YYYY\" strings on an explicit UTC scale. Configure axes with top-level x and y; hide one with display: false, never axes, scales, or axis. Put shared data at chart level and distinct layer data on its mark. When rows share a bar position, map a series field to fill or stroke before setting group, or aggregate the rows."
  5. 1 tool update
    • Changedget_chart_config2 fields changed
      • changedOutput schema / properties / x / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "band",
        -  "utc"
        -]New value: +[
        +  "linear",
        +  "utc",
        +  "band"
        +]
      • changedOutput schema / properties / y / properties / type / enum
        Previous value: -[
        -  "linear",
        -  "band",
        -  "utc"
        -]New value: +[
        +  "linear",
        +  "utc",
        +  "band"
        +]
  6. 4 tool updates
    • Changedrender_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedsave_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedupdate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedvalidate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. A categorical fill or stroke field creates color series; group only chooses stack or dodge after that field exists and never creates a series by itself. When multiple rows share a bar position, map their series field to fill or stroke, or aggregate to one row per position. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
  7. 1 tool update
    • Changedget_chart_config2 fields changed
      • addedOutput schema / properties / x / properties / nice
        Added value: +{
        +  "type": "boolean"
        +}
      • addedOutput schema / properties / y / properties / nice
        Added value: +{
        +  "type": "boolean"
        +}
  8. 6 tool updates
    • Changedget_chart_config2 fields changed
      • changedOutput schema / properties / attribution / description
        Previous value: -"Show a small \"made with szum\" credit in the bottom-right. Always on for free and keyless renders; Pro omits it by default and sets true to opt in."New value: +"Show a small \"Made with Szum\" credit in the bottom-right. Always on for free and keyless renders; Creator and Pro omit it by default and set true to opt in."
      • changedOutput schema / title
        Previous value: -"szum Chart Configuration"New value: +"Szum Chart Configuration"
    • Addedget_preview_state
    • Changedrender_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration"New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedsave_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration"New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedupdate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration"New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
    • Changedvalidate_chart1 field changed
      • changedInput schema / properties / config / description
        Previous value: -"JSON string of the chart configuration to validate"New value: +"JSON string of the chart configuration. Axes use top-level x and y; hide one with y.display false or x.display false, never axes, scales, or an axis flag. Put shared rows in top-level data when multiple marks use them; use mark-level data only for a layer with different rows. For annual time series, use ISO dates such as 1960-01-01 with x.type utc and tickFormat %Y; bare numeric years are linear values."
  9. 1 tool update
    • Changedget_chart_config2 fields changed
      • changedOutput schema / properties / locale / description
        Previous value: -"BCP 47 language tag associated with the chart content, such as en, pl, or zh-Hant."New value: +"Locale identifier accepted by JavaScript Intl and associated with the chart content, such as en, pl, or zh-Hant."
      • addedOutput schema / properties / locale / pattern
        Added value: +"^(?:[A-Za-z]{2,3}|[A-Za-z]{5,8})(?:-[A-Za-z]{4})?(?:-(?:[A-Za-z]{2}|[0-9]{3}))?(?:-(?:[A-Za-z0-9]{5,8}|[0-9][A-Za-z0-9]{3}))*(?:-[0-9A-WY-Za-wy-z](?:-[A-Za-z0-9]{2,8})+)*(?:-[xX](?:-[A-Za-z0-9]{1,8})+)?$"
  10. 1 tool update
    • Changedget_chart_config1 field changed
      • addedOutput schema / properties / locale
        Added value: +{
        +  "description": "BCP 47 language tag associated with the chart content, such as en, pl, or zh-Hant.",
        +  "type": "string"
        +}
  11. 3 tool updates
    • Changedget_examples1 field changed
      • changedInput schema / properties / mark_type / enum
        Previous value: -[
        -  "barY",
        -  "barX",
        -  "line",
        -  "dot",
        -  "areaY",
        -  "areaX",
        -  "text",
        -  "pie",
        -  "ruleX",
        -  "ruleY"
        -]New value: +[
        +  "dot",
        +  "line",
        +  "barY",
        +  "barX",
        +  "areaY",
        +  "areaX",
        +  "pie",
        +  "text",
        +  "ruleX",
        +  "ruleY"
        +]
    • Changedlist_marks1 field changed
      • addedOutput schema / properties / marks / items / properties / type / enum
        Added value: +[
        +  "dot",
        +  "line",
        +  "barY",
        +  "barX",
        +  "areaY",
        +  "areaX",
        +  "pie",
        +  "text",
        +  "ruleX",
        +  "ruleY"
        +]
    • Changedlist_themes1 field changed
      • addedOutput schema / properties / themes / items / properties / name / enum
        Added value: +[
        +  "editorial",
        +  "clean",
        +  "noir",
        +  "loud",
        +  "soft",
        +  "technical"
        +]
  12. 2 tool updates
    • Addeddelete_chart
    • Addedrename_chart
  13. 1 tool update
    • Addedupdate_chart

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Enables AI agents to create data visualizations like bar charts, line charts, pie charts, scatter plots, and histograms, returning inline SVG or PNG files.
    5
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Enables AI agents to render branded charts as inline images and persistent hosted URLs, supporting explicit chart types and automatic chart suggestion from data.
    2
    60
    MIT
  • A
    license
    Not graded
    quality
    Not graded
    maintenance
    Enables AI agents to generate beautiful, presentation-ready charts (SVG + PNG) with zero setup, supporting various chart types and styling options.
    25
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Renders word-sized charts — sparklines, bars, bullets and 100+ more types — to self-contained SVG with generated alt text, small enough to sit inline in a model's reply or a table cell. Three tools: find the right chart for a question, get its wiring, and render it.
    3
    1,740
    167
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.5/5.0
Disambiguation5/5

Each tool has a clear, unique purpose: get_chart retrieves metadata while get_chart_config retrieves the full config, and save_chart creates/publishes while update_chart modifies existing charts. The descriptions explicitly highlight differences between similar tools, eliminating ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (e.g., get_chart, list_charts, validate_chart) and use snake_case throughout. Verbs are action-oriented and nouns are domain-specific, making the set predictable and easy to reason about.

Tool Count5/5

With 13 tools, the server covers the chart lifecycle (CRUD), validation, rendering, and reference data without being bloated. The count is well within the ideal 3-15 range and every tool contributes meaningfully to the server's purpose.

Completeness5/5

The tool set provides complete coverage: create (save_chart), read (get_chart, get_chart_config, list_charts), update (update_chart, rename_chart), delete (delete_chart), plus validation, rendering, examples, and mark/theme references. No critical operations are missing; the only minor gap (draft retrieval) is explicitly out of scope.

Resources